Compare commits
56 Commits
condition-
...
experiment
Author | SHA1 | Date | |
---|---|---|---|
![]() |
17ba378913 | ||
![]() |
1a01c49ce7 | ||
![]() |
5d55014f84 | ||
![]() |
6f97336eea | ||
![]() |
5a1f5eef48 | ||
![]() |
4983eeca6b | ||
![]() |
fd3ecacade | ||
![]() |
3400fc6813 | ||
![]() |
4db570c17b | ||
![]() |
3584ee2aaf | ||
![]() |
19a762fb60 | ||
![]() |
8a6dd8b940 | ||
![]() |
2173b49b19 | ||
![]() |
caf2752acb | ||
![]() |
e3291b515d | ||
![]() |
c1627b5ab2 | ||
![]() |
7db5b97c45 | ||
![]() |
425a0e92ca | ||
![]() |
c2dfe579af | ||
![]() |
4ea6fb78bd | ||
![]() |
8e668db6ea | ||
![]() |
88063a4cad | ||
![]() |
b180f5032e | ||
![]() |
29e7f7d7a4 | ||
![]() |
547f1e4bce | ||
![]() |
9e176d91ec | ||
![]() |
cac59d4727 | ||
![]() |
4f98ffa9ab | ||
![]() |
7229406cfb | ||
![]() |
d39cfd16a2 | ||
![]() |
2965f374bb | ||
![]() |
2d5b2a49e7 | ||
![]() |
05df9cb599 | ||
![]() |
7b28d2525e | ||
![]() |
533e61cdbc | ||
![]() |
3a823113f1 | ||
![]() |
17bc8b584d | ||
![]() |
dbaf8a6569 | ||
![]() |
fcbc538c30 | ||
![]() |
decd96c52f | ||
![]() |
8dbf9c99ce | ||
![]() |
1318523804 | ||
![]() |
8ef5e2c1ed | ||
![]() |
d945426068 | ||
![]() |
8eb07a492f | ||
![]() |
37c9dd95ce | ||
![]() |
a6d837cbe6 | ||
![]() |
f6539626d3 | ||
![]() |
e0df9b0ff3 | ||
![]() |
0b50231027 | ||
![]() |
94c9924a88 | ||
![]() |
581cc5837a | ||
![]() |
ff77d107b2 | ||
![]() |
3a5198cb34 | ||
![]() |
c92025549d | ||
![]() |
600b307e7e |
@@ -16,6 +16,7 @@ jobs:
|
||||
build-macos:
|
||||
macos:
|
||||
xcode: 14.2.0
|
||||
# resource_class: macos.m1.medium.gen1
|
||||
steps:
|
||||
- checkout
|
||||
|
||||
@@ -35,7 +36,7 @@ jobs:
|
||||
# GDevelop.js dependencies
|
||||
- restore_cache:
|
||||
keys:
|
||||
- gd-macos-nodejs-dependencies-{{ checksum "newIDE/app/package.json" }}-{{ checksum "newIDE/electron-app/package.json" }}-{{ checksum "GDevelop.js/package.json" }}
|
||||
- gd-macos-nodejs-dependencies-{{ checksum "newIDE/app/package.json" }}-{{ checksum "newIDE/electron-app/package.json" }}-{{ checksum "newIDE/electron-app/app/package.json" }}-{{ checksum "GDevelop.js/package.json" }}
|
||||
# fallback to using the latest cache if no exact match is found
|
||||
- gd-macos-nodejs-dependencies---
|
||||
|
||||
@@ -51,14 +52,15 @@ jobs:
|
||||
# GDevelop IDE dependencies (after building GDevelop.js to avoid downloading a pre-built version)
|
||||
- run:
|
||||
name: Install GDevelop IDE dependencies
|
||||
command: cd newIDE/app && npm install && cd ../electron-app && npm install
|
||||
command: cd newIDE/app && npm install && cd ../electron-app && npm install && cd app && npm install --arch=arm64 --force @parcel/watcher-darwin-arm64
|
||||
|
||||
- save_cache:
|
||||
paths:
|
||||
- newIDE/electron-app/node_modules
|
||||
- newIDE/electron-app/app/node_modules
|
||||
- newIDE/app/node_modules
|
||||
- GDevelop.js/node_modules
|
||||
key: gd-macos-nodejs-dependencies-{{ checksum "newIDE/app/package.json" }}-{{ checksum "newIDE/electron-app/package.json" }}-{{ checksum "GDevelop.js/package.json" }}
|
||||
key: gd-macos-nodejs-dependencies-{{ checksum "newIDE/app/package.json" }}-{{ checksum "newIDE/electron-app/package.json" }}-{{ checksum "newIDE/electron-app/app/package.json" }}-{{ checksum "GDevelop.js/package.json" }}
|
||||
|
||||
# Build GDevelop IDE (seems like we need to allow Node.js to use more space than usual)
|
||||
# Note: Code signing is done using CSC_LINK (see https://www.electron.build/code-signing).
|
||||
@@ -116,7 +118,7 @@ jobs:
|
||||
# GDevelop.js dependencies
|
||||
- restore_cache:
|
||||
keys:
|
||||
- gd-linux-nodejs-dependencies-{{ checksum "newIDE/app/package.json" }}-{{ checksum "newIDE/electron-app/package.json" }}-{{ checksum "GDevelop.js/package.json" }}
|
||||
- gd-linux-nodejs-dependencies-{{ checksum "newIDE/app/package.json" }}-{{ checksum "newIDE/electron-app/package.json" }}-{{ checksum "newIDE/electron-app/app/package.json" }}-{{ checksum "GDevelop.js/package.json" }}
|
||||
# fallback to using the latest cache if no exact match is found
|
||||
- gd-linux-nodejs-dependencies---
|
||||
|
||||
@@ -137,9 +139,10 @@ jobs:
|
||||
- save_cache:
|
||||
paths:
|
||||
- newIDE/electron-app/node_modules
|
||||
- newIDE/electron-app/app/node_modules
|
||||
- newIDE/app/node_modules
|
||||
- GDevelop.js/node_modules
|
||||
key: gd-linux-nodejs-dependencies-{{ checksum "newIDE/app/package.json" }}-{{ checksum "newIDE/electron-app/package.json" }}-{{ checksum "GDevelop.js/package.json" }}
|
||||
key: gd-linux-nodejs-dependencies-{{ checksum "newIDE/app/package.json" }}-{{ checksum "newIDE/electron-app/package.json" }}-{{ checksum "newIDE/electron-app/app/package.json" }}-{{ checksum "GDevelop.js/package.json" }}
|
||||
|
||||
# Build GDevelop IDE (seems like we need to allow Node.js to use more space than usual)
|
||||
- run:
|
||||
|
37
.github/ISSUE_TEMPLATE/--automatic-crash.yml
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
name: 💥 Automatic crash report
|
||||
description: Do not use this template for bug reports. This template is only for automatic crash reports.
|
||||
body:
|
||||
- type: textarea
|
||||
id: description
|
||||
attributes:
|
||||
label: Describe what you were doing when the crash happened
|
||||
description: If applicable, add screenshots to help explain your problem.
|
||||
placeholder: |
|
||||
1. Went to '...'
|
||||
2. Clicked on '...'
|
||||
3. Scrolled down to '...'
|
||||
4. Saw error
|
||||
- type: input
|
||||
id: gdevelop_version
|
||||
attributes:
|
||||
label: GDevelop version
|
||||
description: |
|
||||
The version of GDevelop used. Leave the prefilled value.
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: platform_info
|
||||
attributes:
|
||||
label: Platform info
|
||||
description: |
|
||||
The platform you are using GDevelop on. Leave the prefilled value.
|
||||
- type: textarea
|
||||
id: error_stack
|
||||
attributes:
|
||||
label: Additional error context
|
||||
description: Additonal context about the problem. Leave the prefilled value.
|
||||
- type: textarea
|
||||
id: component_stack
|
||||
attributes:
|
||||
label: Additional component context
|
||||
description: Additonal context about the problem. Leave the prefilled value.
|
11
.github/ISSUE_TEMPLATE/--bug-report.yml
vendored
@@ -2,18 +2,21 @@ name: 🐛Bug report
|
||||
description: Create a bug report about GDevelop or the game engine
|
||||
body:
|
||||
- type: checkboxes
|
||||
id: searched_issues
|
||||
attributes:
|
||||
label: Is there an existing issue for this?
|
||||
options:
|
||||
- label: I have searched the [existing issues](https://github.com/4ian/GDevelop/issues)
|
||||
required: true
|
||||
- label: I have searched the [existing issues](https://github.com/4ian/GDevelop/issues)
|
||||
required: true
|
||||
- type: textarea
|
||||
id: description
|
||||
attributes:
|
||||
label: Describe the bug
|
||||
description: A clear and concise description of what the bug is.
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: reproduction_steps
|
||||
attributes:
|
||||
label: Steps to reproduce
|
||||
description: |
|
||||
@@ -27,6 +30,7 @@ body:
|
||||
validations:
|
||||
required: true
|
||||
- type: dropdown
|
||||
id: platform
|
||||
attributes:
|
||||
label: GDevelop platform
|
||||
description: Which platform of GDevelop are you using?
|
||||
@@ -38,6 +42,7 @@ body:
|
||||
validations:
|
||||
required: true
|
||||
- type: input
|
||||
id: gdevelop_version
|
||||
attributes:
|
||||
label: GDevelop version
|
||||
description: |
|
||||
@@ -47,6 +52,7 @@ body:
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: platform_info
|
||||
attributes:
|
||||
label: Platform info
|
||||
value: |
|
||||
@@ -66,6 +72,7 @@ body:
|
||||
|
||||
</details>
|
||||
- type: textarea
|
||||
id: additional_context
|
||||
attributes:
|
||||
label: Additional context
|
||||
description: Add any other context about the problem here.
|
||||
|
@@ -1624,7 +1624,7 @@ void GD_CORE_API BuiltinExtensionsImplementer::ImplementsBaseObjectExtension(
|
||||
_("Cast a ray from _PARAM1_;_PARAM2_, angle: _PARAM3_ and max "
|
||||
"distance: _PARAM4_px, against _PARAM0_, and save the "
|
||||
"result in _PARAM5_, _PARAM6_"),
|
||||
"",
|
||||
_("Collision"),
|
||||
"res/conditions/raycast24.png",
|
||||
"res/conditions/raycast.png")
|
||||
.AddParameter("objectList", _("Objects to test against the ray"))
|
||||
@@ -1655,7 +1655,7 @@ void GD_CORE_API BuiltinExtensionsImplementer::ImplementsBaseObjectExtension(
|
||||
_("Cast a ray from _PARAM1_;_PARAM2_ to _PARAM3_;_PARAM4_ "
|
||||
"against _PARAM0_, and save the "
|
||||
"result in _PARAM5_, _PARAM6_"),
|
||||
"",
|
||||
_("Collision"),
|
||||
"res/conditions/raycast24.png",
|
||||
"res/conditions/raycast.png")
|
||||
.AddParameter("objectList", _("Objects to test against the ray"))
|
||||
|
@@ -327,7 +327,6 @@ void GD_CORE_API BuiltinExtensionsImplementer::ImplementsCameraExtension(
|
||||
.AddParameter("expression", _("Camera number (default : 0)"), "", true)
|
||||
.SetDefaultValue("0");
|
||||
|
||||
// TODO Deprecated: hide this action in a future release.
|
||||
extension
|
||||
.AddAction(
|
||||
"FixCamera",
|
||||
@@ -339,6 +338,7 @@ void GD_CORE_API BuiltinExtensionsImplementer::ImplementsCameraExtension(
|
||||
"",
|
||||
"res/actions/camera24.png",
|
||||
"res/actions/camera.png")
|
||||
.SetHidden()
|
||||
.AddCodeOnlyParameter("currentScene", "")
|
||||
.AddParameter("objectPtr", _("Object"))
|
||||
.AddParameter("expression",
|
||||
@@ -386,7 +386,7 @@ void GD_CORE_API BuiltinExtensionsImplementer::ImplementsCameraExtension(
|
||||
_("Center the camera on an object"),
|
||||
_("Center the camera on the specified object."),
|
||||
_("Center camera on _PARAM1_ (layer: _PARAM3_)"),
|
||||
"",
|
||||
_("Layers and cameras"),
|
||||
"res/actions/camera24.png",
|
||||
"res/actions/camera.png")
|
||||
.AddCodeOnlyParameter("currentScene", "")
|
||||
|
@@ -39,16 +39,18 @@ module.exports = {
|
||||
.setIcon('res/conditions/3d_box.svg');
|
||||
|
||||
{
|
||||
const base3D = extension.addBehavior(
|
||||
"Base3DBehavior",
|
||||
_("3D capability"),
|
||||
"Object3D",
|
||||
_("Move the object in 3D space."),
|
||||
"",
|
||||
"res/conditions/3d_box.svg",
|
||||
"Base3DBehavior",
|
||||
const base3D = extension
|
||||
.addBehavior(
|
||||
'Base3DBehavior',
|
||||
_('3D capability'),
|
||||
'Object3D',
|
||||
_('Move the object in 3D space.'),
|
||||
'',
|
||||
'res/conditions/3d_box.svg',
|
||||
'Base3DBehavior',
|
||||
new gd.Behavior(),
|
||||
new gd.BehaviorsSharedData())
|
||||
new gd.BehaviorsSharedData()
|
||||
)
|
||||
.setHidden()
|
||||
.setIncludeFile('Extensions/3D/Base3DBehavior.js');
|
||||
|
||||
@@ -63,11 +65,11 @@ module.exports = {
|
||||
'res/conditions/3d_box.svg'
|
||||
)
|
||||
.addParameter('object', _('3D object'))
|
||||
.addParameter("behavior", _("Behavior"), "Base3DBehavior")
|
||||
.addParameter('behavior', _('Behavior'), 'Base3DBehavior')
|
||||
.useStandardParameters('number', gd.ParameterOptions.makeNewOptions())
|
||||
.setFunctionName('setZ')
|
||||
.setGetter('getZ');
|
||||
|
||||
|
||||
base3D
|
||||
.addExpressionAndConditionAndAction(
|
||||
'number',
|
||||
@@ -95,23 +97,23 @@ module.exports = {
|
||||
'res/conditions/3d_box.svg'
|
||||
)
|
||||
.addParameter('object', _('3D object'))
|
||||
.addParameter("behavior", _("Behavior"), "Base3DBehavior")
|
||||
.addParameter('behavior', _('Behavior'), 'Base3DBehavior')
|
||||
.useStandardParameters('number', gd.ParameterOptions.makeNewOptions())
|
||||
.setFunctionName('setDepth')
|
||||
.setGetter('getDepth');
|
||||
|
||||
base3D
|
||||
base3D
|
||||
.addExpressionAndConditionAndAction(
|
||||
'number',
|
||||
'ScaleZ',
|
||||
_('Scale on Z axis'),
|
||||
_("the scale on Z axis of an object (default scale is 1)"),
|
||||
_("the scale on Z axis scale"),
|
||||
_('the scale on Z axis of an object (default scale is 1)'),
|
||||
_('the scale on Z axis scale'),
|
||||
_('Size'),
|
||||
'res/conditions/3d_box.svg'
|
||||
)
|
||||
.addParameter('object', _('3D object'))
|
||||
.addParameter("behavior", _("Behavior"), "Base3DBehavior")
|
||||
.addParameter('behavior', _('Behavior'), 'Base3DBehavior')
|
||||
.useStandardParameters(
|
||||
'number',
|
||||
gd.ParameterOptions.makeNewOptions().setDescription(
|
||||
@@ -122,7 +124,7 @@ module.exports = {
|
||||
.setFunctionName('setScaleZ')
|
||||
.setGetter('getScaleZ');
|
||||
|
||||
base3D
|
||||
base3D
|
||||
.addScopedAction(
|
||||
'FlipZ',
|
||||
_('Flip the object on Z'),
|
||||
@@ -133,12 +135,12 @@ module.exports = {
|
||||
'res/conditions/3d_box.svg'
|
||||
)
|
||||
.addParameter('object', _('3D object'))
|
||||
.addParameter("behavior", _("Behavior"), "Base3DBehavior")
|
||||
.addParameter('behavior', _('Behavior'), 'Base3DBehavior')
|
||||
.addParameter('yesorno', _('Activate flipping'))
|
||||
.markAsSimple()
|
||||
.setFunctionName('flipZ');
|
||||
|
||||
base3D
|
||||
base3D
|
||||
.addScopedCondition(
|
||||
'FlippedZ',
|
||||
_('Flipped on Z'),
|
||||
@@ -149,10 +151,10 @@ module.exports = {
|
||||
'res/conditions/3d_box.svg'
|
||||
)
|
||||
.addParameter('object', _('3D object'))
|
||||
.addParameter("behavior", _("Behavior"), "Base3DBehavior")
|
||||
.addParameter('behavior', _('Behavior'), 'Base3DBehavior')
|
||||
.setFunctionName('isFlippedZ');
|
||||
|
||||
base3D
|
||||
base3D
|
||||
.addExpressionAndConditionAndAction(
|
||||
'number',
|
||||
'RotationX',
|
||||
@@ -163,12 +165,12 @@ module.exports = {
|
||||
'res/conditions/3d_box.svg'
|
||||
)
|
||||
.addParameter('object', _('3D object'))
|
||||
.addParameter("behavior", _("Behavior"), "Base3DBehavior")
|
||||
.addParameter('behavior', _('Behavior'), 'Base3DBehavior')
|
||||
.useStandardParameters('number', gd.ParameterOptions.makeNewOptions())
|
||||
.setFunctionName('setRotationX')
|
||||
.setGetter('getRotationX');
|
||||
|
||||
base3D
|
||||
base3D
|
||||
.addExpressionAndConditionAndAction(
|
||||
'number',
|
||||
'RotationY',
|
||||
@@ -179,12 +181,12 @@ module.exports = {
|
||||
'res/conditions/3d_box.svg'
|
||||
)
|
||||
.addParameter('object', _('3D object'))
|
||||
.addParameter("behavior", _("Behavior"), "Base3DBehavior")
|
||||
.addParameter('behavior', _('Behavior'), 'Base3DBehavior')
|
||||
.useStandardParameters('number', gd.ParameterOptions.makeNewOptions())
|
||||
.setFunctionName('setRotationY')
|
||||
.setGetter('getRotationY');
|
||||
|
||||
base3D
|
||||
base3D
|
||||
.addScopedAction(
|
||||
'TurnAroundX',
|
||||
_('Turn around X axis'),
|
||||
@@ -197,12 +199,12 @@ module.exports = {
|
||||
'res/conditions/3d_box.svg'
|
||||
)
|
||||
.addParameter('object', _('3D object'))
|
||||
.addParameter("behavior", _("Behavior"), "Base3DBehavior")
|
||||
.addParameter('behavior', _('Behavior'), 'Base3DBehavior')
|
||||
.addParameter('number', _('Rotation angle'), '', false)
|
||||
.markAsAdvanced()
|
||||
.setFunctionName('turnAroundX');
|
||||
|
||||
base3D
|
||||
base3D
|
||||
.addScopedAction(
|
||||
'TurnAroundY',
|
||||
_('Turn around Y axis'),
|
||||
@@ -215,12 +217,12 @@ module.exports = {
|
||||
'res/conditions/3d_box.svg'
|
||||
)
|
||||
.addParameter('object', _('3D object'))
|
||||
.addParameter("behavior", _("Behavior"), "Base3DBehavior")
|
||||
.addParameter('behavior', _('Behavior'), 'Base3DBehavior')
|
||||
.addParameter('number', _('Rotation angle'), '', false)
|
||||
.markAsAdvanced()
|
||||
.setFunctionName('turnAroundY');
|
||||
|
||||
base3D
|
||||
base3D
|
||||
.addScopedAction(
|
||||
'TurnAroundZ',
|
||||
_('Turn around Z axis'),
|
||||
@@ -233,7 +235,7 @@ module.exports = {
|
||||
'res/conditions/3d_box.svg'
|
||||
)
|
||||
.addParameter('object', _('3D object'))
|
||||
.addParameter("behavior", _("Behavior"), "Base3DBehavior")
|
||||
.addParameter('behavior', _('Behavior'), 'Base3DBehavior')
|
||||
.addParameter('number', _('Rotation angle'), '', false)
|
||||
.markAsAdvanced()
|
||||
.setFunctionName('turnAroundZ');
|
||||
@@ -249,7 +251,7 @@ module.exports = {
|
||||
new gd.Model3DObjectConfiguration()
|
||||
)
|
||||
.setCategoryFullName(_('General'))
|
||||
// Effects are unsupported because the object is not rendered with PIXI.
|
||||
// Effects are unsupported because the object is not rendered with PIXI.
|
||||
.addDefaultBehavior('ResizableCapability::ResizableBehavior')
|
||||
.addDefaultBehavior('ScalableCapability::ScalableBehavior')
|
||||
.addDefaultBehavior('FlippableCapability::FlippableBehavior')
|
||||
@@ -280,7 +282,6 @@ module.exports = {
|
||||
.setFunctionName('setZ')
|
||||
.setGetter('getZ');
|
||||
|
||||
|
||||
// Deprecated
|
||||
object
|
||||
.addExpressionAndConditionAndAction(
|
||||
@@ -1161,7 +1162,7 @@ module.exports = {
|
||||
.setFunctionName('setZ')
|
||||
.setGetter('getZ');
|
||||
|
||||
// Deprecated
|
||||
// Deprecated
|
||||
object
|
||||
.addExpressionAndConditionAndAction(
|
||||
'number',
|
||||
@@ -1306,7 +1307,7 @@ module.exports = {
|
||||
.setFunctionName('setScaleX')
|
||||
.setGetter('getScaleX');
|
||||
|
||||
// Deprecated
|
||||
// Deprecated
|
||||
object
|
||||
.addExpressionAndConditionAndAction(
|
||||
'number',
|
||||
@@ -1664,7 +1665,7 @@ module.exports = {
|
||||
'Change the camera rotation to look at an object. The camera top always face the screen.'
|
||||
),
|
||||
_('Change the camera rotation of _PARAM2_ to look at _PARAM1_'),
|
||||
'',
|
||||
_("Layers and cameras"),
|
||||
'res/conditions/3d_box.svg',
|
||||
'res/conditions/3d_box.svg'
|
||||
)
|
||||
@@ -2098,6 +2099,12 @@ module.exports = {
|
||||
this.updateTexture();
|
||||
}
|
||||
|
||||
onRemovedFromScene() {
|
||||
super.onRemovedFromScene();
|
||||
// Keep textures because they are shared by all sprites.
|
||||
this._pixiObject.destroy({ children: true });
|
||||
}
|
||||
|
||||
static _getResourceNameToDisplay(objectConfiguration) {
|
||||
return getFirstVisibleFaceResourceName(objectConfiguration);
|
||||
}
|
||||
@@ -2162,17 +2169,18 @@ module.exports = {
|
||||
updatePIXISprite() {
|
||||
const width = this.getWidth();
|
||||
const height = this.getHeight();
|
||||
const objectTextureFrame = this._pixiTexturedObject.texture.frame;
|
||||
// In case the texture is not loaded yet, we don't want to crash.
|
||||
if (!objectTextureFrame) return;
|
||||
|
||||
this._pixiTexturedObject.anchor.x =
|
||||
this._centerX / this._pixiTexturedObject.texture.frame.width;
|
||||
this._centerX / objectTextureFrame.width;
|
||||
this._pixiTexturedObject.anchor.y =
|
||||
this._centerY / this._pixiTexturedObject.texture.frame.height;
|
||||
this._centerY / objectTextureFrame.height;
|
||||
|
||||
this._pixiTexturedObject.angle = this._instance.getAngle();
|
||||
this._pixiTexturedObject.scale.x =
|
||||
width / this._pixiTexturedObject.texture.frame.width;
|
||||
this._pixiTexturedObject.scale.y =
|
||||
height / this._pixiTexturedObject.texture.frame.height;
|
||||
this._pixiTexturedObject.scale.x = width / objectTextureFrame.width;
|
||||
this._pixiTexturedObject.scale.y = height / objectTextureFrame.height;
|
||||
|
||||
this._pixiTexturedObject.position.x =
|
||||
this._instance.getX() +
|
||||
@@ -2681,6 +2689,11 @@ module.exports = {
|
||||
});
|
||||
}
|
||||
|
||||
onRemovedFromScene() {
|
||||
super.onRemovedFromScene();
|
||||
this._pixiObject.destroy({ children: true });
|
||||
}
|
||||
|
||||
static getThumbnail(project, resourcesLoader, objectConfiguration) {
|
||||
return 'JsPlatform/Extensions/3d_box.svg';
|
||||
}
|
||||
|
@@ -126,6 +126,10 @@ namespace gdjs {
|
||||
getHeight(): float {
|
||||
return this._pixiObject.height;
|
||||
}
|
||||
|
||||
destroy(): void {
|
||||
this._pixiObject.destroy(true);
|
||||
}
|
||||
}
|
||||
|
||||
export const BBTextRuntimeObjectRenderer = BBTextRuntimeObjectPixiRenderer;
|
||||
|
@@ -130,8 +130,9 @@ namespace gdjs {
|
||||
}
|
||||
}
|
||||
|
||||
onDestroyFromScene(instanceContainer: gdjs.RuntimeInstanceContainer): void {
|
||||
super.onDestroyFromScene(instanceContainer);
|
||||
onDestroyed(): void {
|
||||
super.onDestroyed();
|
||||
this._renderer.destroy();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@@ -141,8 +141,8 @@ namespace gdjs {
|
||||
}
|
||||
}
|
||||
|
||||
onDestroyFromScene(instanceContainer: gdjs.RuntimeInstanceContainer): void {
|
||||
super.onDestroyFromScene(instanceContainer);
|
||||
onDestroyed(): void {
|
||||
super.onDestroyed();
|
||||
this._renderer.onDestroy();
|
||||
}
|
||||
|
||||
|
@@ -497,89 +497,84 @@ module.exports = {
|
||||
|
||||
/**
|
||||
* Renderer for instances of DummyObject inside the IDE.
|
||||
*
|
||||
* @extends RenderedInstance
|
||||
* @class RenderedDummyObjectInstance
|
||||
* @constructor
|
||||
*/
|
||||
function RenderedDummyObjectInstance(
|
||||
project,
|
||||
layout,
|
||||
instance,
|
||||
associatedObjectConfiguration,
|
||||
pixiContainer,
|
||||
pixiResourcesLoader
|
||||
) {
|
||||
RenderedInstance.call(
|
||||
this,
|
||||
class RenderedDummyObjectInstance extends RenderedInstance {
|
||||
constructor(
|
||||
project,
|
||||
layout,
|
||||
instance,
|
||||
associatedObjectConfiguration,
|
||||
pixiContainer,
|
||||
pixiResourcesLoader
|
||||
);
|
||||
) {
|
||||
super(
|
||||
project,
|
||||
layout,
|
||||
instance,
|
||||
associatedObjectConfiguration,
|
||||
pixiContainer,
|
||||
pixiResourcesLoader
|
||||
);
|
||||
|
||||
//Setup the PIXI object:
|
||||
this._pixiObject = new PIXI.Text('This is a dummy object', {
|
||||
align: 'left',
|
||||
});
|
||||
this._pixiObject.anchor.x = 0.5;
|
||||
this._pixiObject.anchor.y = 0.5;
|
||||
this._pixiContainer.addChild(this._pixiObject);
|
||||
this.update();
|
||||
//Setup the PIXI object:
|
||||
this._pixiObject = new PIXI.Text('This is a dummy object', {
|
||||
align: 'left',
|
||||
});
|
||||
this._pixiObject.anchor.x = 0.5;
|
||||
this._pixiObject.anchor.y = 0.5;
|
||||
this._pixiContainer.addChild(this._pixiObject);
|
||||
this.update();
|
||||
}
|
||||
|
||||
onRemovedFromScene() {
|
||||
super.onRemovedFromScene();
|
||||
this._pixiObject.destroy(true);
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the path to the thumbnail of the specified object.
|
||||
*/
|
||||
static getThumbnail(project, resourcesLoader, objectConfiguration) {
|
||||
return 'CppPlatform/Extensions/texticon24.png';
|
||||
}
|
||||
|
||||
/**
|
||||
* This is called to update the PIXI object on the scene editor
|
||||
*/
|
||||
update() {
|
||||
// Read a property from the object
|
||||
const property1Value = this._associatedObjectConfiguration
|
||||
.getProperties()
|
||||
.get('My first property')
|
||||
.getValue();
|
||||
this._pixiObject.text = property1Value;
|
||||
|
||||
// Read position and angle from the instance
|
||||
this._pixiObject.position.x =
|
||||
this._instance.getX() + this._pixiObject.width / 2;
|
||||
this._pixiObject.position.y =
|
||||
this._instance.getY() + this._pixiObject.height / 2;
|
||||
this._pixiObject.rotation = RenderedInstance.toRad(
|
||||
this._instance.getAngle()
|
||||
);
|
||||
// Custom size can be read in this.getCustomWidth() and
|
||||
// this.getCustomHeight()
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the width of the instance, when it's not resized.
|
||||
*/
|
||||
getDefaultWidth() {
|
||||
return this._pixiObject.width;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the height of the instance, when it's not resized.
|
||||
*/
|
||||
getDefaultHeight() {
|
||||
return this._pixiObject.height;
|
||||
}
|
||||
}
|
||||
RenderedDummyObjectInstance.prototype = Object.create(
|
||||
RenderedInstance.prototype
|
||||
);
|
||||
|
||||
/**
|
||||
* Return the path to the thumbnail of the specified object.
|
||||
*/
|
||||
RenderedDummyObjectInstance.getThumbnail = function (
|
||||
project,
|
||||
resourcesLoader,
|
||||
objectConfiguration
|
||||
) {
|
||||
return 'CppPlatform/Extensions/texticon24.png';
|
||||
};
|
||||
|
||||
/**
|
||||
* This is called to update the PIXI object on the scene editor
|
||||
*/
|
||||
RenderedDummyObjectInstance.prototype.update = function () {
|
||||
// Read a property from the object
|
||||
const property1Value = this._associatedObjectConfiguration
|
||||
.getProperties()
|
||||
.get('My first property')
|
||||
.getValue();
|
||||
this._pixiObject.text = property1Value;
|
||||
|
||||
// Read position and angle from the instance
|
||||
this._pixiObject.position.x =
|
||||
this._instance.getX() + this._pixiObject.width / 2;
|
||||
this._pixiObject.position.y =
|
||||
this._instance.getY() + this._pixiObject.height / 2;
|
||||
this._pixiObject.rotation = RenderedInstance.toRad(
|
||||
this._instance.getAngle()
|
||||
);
|
||||
// Custom size can be read in this.getCustomWidth() and
|
||||
// this.getCustomHeight()
|
||||
};
|
||||
|
||||
/**
|
||||
* Return the width of the instance, when it's not resized.
|
||||
*/
|
||||
RenderedDummyObjectInstance.prototype.getDefaultWidth = function () {
|
||||
return this._pixiObject.width;
|
||||
};
|
||||
|
||||
/**
|
||||
* Return the height of the instance, when it's not resized.
|
||||
*/
|
||||
RenderedDummyObjectInstance.prototype.getDefaultHeight = function () {
|
||||
return this._pixiObject.height;
|
||||
};
|
||||
|
||||
objectsRenderingService.registerInstanceRenderer(
|
||||
'MyDummyExtension::DummyObject',
|
||||
|
@@ -263,107 +263,107 @@ module.exports = {
|
||||
|
||||
/**
|
||||
* Renderer for instances of LightObject inside the IDE.
|
||||
*
|
||||
* @extends RenderedInstance
|
||||
* @class RenderedLightObjectInstance
|
||||
* @constructor
|
||||
*/
|
||||
function RenderedLightObjectInstance(
|
||||
project,
|
||||
layout,
|
||||
instance,
|
||||
associatedObjectConfiguration,
|
||||
pixiContainer,
|
||||
pixiResourcesLoader
|
||||
) {
|
||||
RenderedInstance.call(
|
||||
this,
|
||||
class RenderedLightObjectInstance extends RenderedInstance {
|
||||
constructor(
|
||||
project,
|
||||
layout,
|
||||
instance,
|
||||
associatedObjectConfiguration,
|
||||
pixiContainer,
|
||||
pixiResourcesLoader
|
||||
);
|
||||
this._radius = parseFloat(
|
||||
this._associatedObjectConfiguration
|
||||
.getProperties(this.project)
|
||||
.get('radius')
|
||||
.getValue()
|
||||
);
|
||||
if (this._radius <= 0) this._radius = 1;
|
||||
const color = objectsRenderingService.rgbOrHexToHexNumber(
|
||||
this._associatedObjectConfiguration
|
||||
.getProperties(this.project)
|
||||
.get('color')
|
||||
.getValue()
|
||||
);
|
||||
) {
|
||||
super(
|
||||
project,
|
||||
layout,
|
||||
instance,
|
||||
associatedObjectConfiguration,
|
||||
pixiContainer,
|
||||
pixiResourcesLoader
|
||||
);
|
||||
this._radius = parseFloat(
|
||||
this._associatedObjectConfiguration
|
||||
.getProperties(this.project)
|
||||
.get('radius')
|
||||
.getValue()
|
||||
);
|
||||
if (this._radius <= 0) this._radius = 1;
|
||||
const color = objectsRenderingService.rgbOrHexToHexNumber(
|
||||
this._associatedObjectConfiguration
|
||||
.getProperties(this.project)
|
||||
.get('color')
|
||||
.getValue()
|
||||
);
|
||||
|
||||
// The icon in the middle.
|
||||
const lightIconSprite = new PIXI.Sprite(PIXI.Texture.from('CppPlatform/Extensions/lightIcon32.png'));
|
||||
lightIconSprite.anchor.x = 0.5;
|
||||
lightIconSprite.anchor.y = 0.5;
|
||||
// The icon in the middle.
|
||||
const lightIconSprite = new PIXI.Sprite(PIXI.Texture.from('CppPlatform/Extensions/lightIcon32.png'));
|
||||
lightIconSprite.anchor.x = 0.5;
|
||||
lightIconSprite.anchor.y = 0.5;
|
||||
|
||||
// The circle to show the radius of the light.
|
||||
const radiusBorderWidth = 2;
|
||||
const radiusGraphics = new PIXI.Graphics();
|
||||
radiusGraphics.lineStyle(
|
||||
radiusBorderWidth,
|
||||
color,
|
||||
0.8
|
||||
);
|
||||
radiusGraphics.drawCircle(0, 0, Math.max(1, this._radius - radiusBorderWidth));
|
||||
// The circle to show the radius of the light.
|
||||
const radiusBorderWidth = 2;
|
||||
const radiusGraphics = new PIXI.Graphics();
|
||||
radiusGraphics.lineStyle(
|
||||
radiusBorderWidth,
|
||||
color,
|
||||
0.8
|
||||
);
|
||||
radiusGraphics.drawCircle(0, 0, Math.max(1, this._radius - radiusBorderWidth));
|
||||
|
||||
this._pixiObject = new PIXI.Container();
|
||||
this._pixiObject.addChild(lightIconSprite);
|
||||
this._pixiObject.addChild(radiusGraphics);
|
||||
this._pixiContainer.addChild(this._pixiObject);
|
||||
this.update();
|
||||
this._pixiObject = new PIXI.Container();
|
||||
this._pixiObject.addChild(lightIconSprite);
|
||||
this._pixiObject.addChild(radiusGraphics);
|
||||
this._pixiContainer.addChild(this._pixiObject);
|
||||
this.update();
|
||||
}
|
||||
|
||||
onRemovedFromScene() {
|
||||
super.onRemovedFromScene();
|
||||
// Keep textures because they are shared by all sprites.
|
||||
this._pixiObject.destroy({ children: true });
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the path to the thumbnail of the specified object.
|
||||
*/
|
||||
static getThumbnail(
|
||||
project,
|
||||
resourcesLoader,
|
||||
objectConfiguration
|
||||
) {
|
||||
return 'CppPlatform/Extensions/lightIcon32.png';
|
||||
}
|
||||
|
||||
/**
|
||||
* This is called to update the PIXI object on the scene editor
|
||||
*/
|
||||
update() {
|
||||
this._pixiObject.position.x = this._instance.getX();
|
||||
this._pixiObject.position.y = this._instance.getY();
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the width of the instance, when it's not resized.
|
||||
*/
|
||||
getDefaultWidth() {
|
||||
return this._radius * 2;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the height of the instance, when it's not resized.
|
||||
*/
|
||||
getDefaultHeight() {
|
||||
return this._radius * 2;
|
||||
}
|
||||
|
||||
getOriginX() {
|
||||
return this._radius;
|
||||
}
|
||||
|
||||
getOriginY() {
|
||||
return this._radius;
|
||||
}
|
||||
}
|
||||
RenderedLightObjectInstance.prototype = Object.create(
|
||||
RenderedInstance.prototype
|
||||
);
|
||||
|
||||
/**
|
||||
* Return the path to the thumbnail of the specified object.
|
||||
*/
|
||||
RenderedLightObjectInstance.getThumbnail = function (
|
||||
project,
|
||||
resourcesLoader,
|
||||
objectConfiguration
|
||||
) {
|
||||
return 'CppPlatform/Extensions/lightIcon32.png';
|
||||
};
|
||||
|
||||
/**
|
||||
* This is called to update the PIXI object on the scene editor
|
||||
*/
|
||||
RenderedLightObjectInstance.prototype.update = function () {
|
||||
this._pixiObject.position.x = this._instance.getX();
|
||||
this._pixiObject.position.y = this._instance.getY();
|
||||
};
|
||||
|
||||
/**
|
||||
* Return the width of the instance, when it's not resized.
|
||||
*/
|
||||
RenderedLightObjectInstance.prototype.getDefaultWidth = function () {
|
||||
return this._radius * 2;
|
||||
};
|
||||
|
||||
/**
|
||||
* Return the height of the instance, when it's not resized.
|
||||
*/
|
||||
RenderedLightObjectInstance.prototype.getDefaultHeight = function () {
|
||||
return this._radius * 2;
|
||||
};
|
||||
|
||||
RenderedLightObjectInstance.prototype.getOriginX = function () {
|
||||
return this._radius;
|
||||
};
|
||||
|
||||
RenderedLightObjectInstance.prototype.getOriginY = function () {
|
||||
return this._radius;
|
||||
};
|
||||
|
||||
objectsRenderingService.registerInstanceRenderer(
|
||||
'Lighting::LightObject',
|
||||
|
@@ -34,7 +34,7 @@ void DeclareLinkedObjectsExtension(gd::PlatformExtension& extension) {
|
||||
_("Link two objects together, so as to be able to get one "
|
||||
"from the other."),
|
||||
_("Link _PARAM1_ and _PARAM2_"),
|
||||
"",
|
||||
_("Objects"),
|
||||
"CppPlatform/Extensions/LinkedObjectsicon24.png",
|
||||
"CppPlatform/Extensions/LinkedObjectsicon24.png")
|
||||
|
||||
@@ -49,7 +49,7 @@ void DeclareLinkedObjectsExtension(gd::PlatformExtension& extension) {
|
||||
_("Unlink two objects"),
|
||||
_("Unlink two objects."),
|
||||
_("Unlink _PARAM1_ and _PARAM2_"),
|
||||
"",
|
||||
_("Objects"),
|
||||
"CppPlatform/Extensions/LinkedObjectsicon24.png",
|
||||
"CppPlatform/Extensions/LinkedObjectsicon24.png")
|
||||
|
||||
@@ -64,7 +64,7 @@ void DeclareLinkedObjectsExtension(gd::PlatformExtension& extension) {
|
||||
_("Unlink all objects from an object"),
|
||||
_("Unlink all objects from an object."),
|
||||
_("Unlink all objects from _PARAM1_"),
|
||||
"",
|
||||
_("Objects"),
|
||||
"CppPlatform/Extensions/LinkedObjectsicon24.png",
|
||||
"CppPlatform/Extensions/LinkedObjectsicon24.png")
|
||||
|
||||
@@ -80,7 +80,7 @@ void DeclareLinkedObjectsExtension(gd::PlatformExtension& extension) {
|
||||
"next conditions and actions.\nThe condition will return "
|
||||
"false if no object was taken into account."),
|
||||
_("Take into account all \"_PARAM1_\" linked to _PARAM2_"),
|
||||
"",
|
||||
_("Objects"),
|
||||
"CppPlatform/Extensions/LinkedObjectsicon24.png",
|
||||
"CppPlatform/Extensions/LinkedObjectsicon24.png")
|
||||
|
||||
@@ -97,7 +97,7 @@ void DeclareLinkedObjectsExtension(gd::PlatformExtension& extension) {
|
||||
_("Take into account linked objects"),
|
||||
_("Take objects linked to the object into account for next actions."),
|
||||
_("Take into account all \"_PARAM1_\" linked to _PARAM2_"),
|
||||
"",
|
||||
_("Objects"),
|
||||
"CppPlatform/Extensions/LinkedObjectsicon24.png",
|
||||
"CppPlatform/Extensions/LinkedObjectsicon24.png")
|
||||
|
||||
|
@@ -393,6 +393,18 @@ namespace gdjs {
|
||||
getTextureHeight() {
|
||||
return this._textureHeight;
|
||||
}
|
||||
|
||||
destroy() {
|
||||
// Destroy textures because they are instantiated by this class.
|
||||
for (const borderSprite of this._borderSprites) {
|
||||
borderSprite.destroy({ texture: true });
|
||||
}
|
||||
this._centerSprite.destroy({ texture: true });
|
||||
// Destroy the containers without handling children because they are
|
||||
// already handled above.
|
||||
this._wrapperContainer.destroy(false);
|
||||
this._spritesContainer.destroy(false);
|
||||
}
|
||||
}
|
||||
|
||||
export const PanelSpriteRuntimeObjectRenderer = PanelSpriteRuntimeObjectPixiRenderer;
|
||||
|
@@ -114,13 +114,9 @@ namespace gdjs {
|
||||
return this._renderer.getRendererObject();
|
||||
}
|
||||
|
||||
onDestroyFromScene(instanceContainer: gdjs.RuntimeInstanceContainer): void {
|
||||
super.onDestroyFromScene(instanceContainer);
|
||||
// @ts-ignore
|
||||
if (this._renderer.onDestroy) {
|
||||
// @ts-ignore
|
||||
this._renderer.onDestroy();
|
||||
}
|
||||
onDestroyed(): void {
|
||||
super.onDestroyed();
|
||||
this._renderer.destroy();
|
||||
}
|
||||
|
||||
update(instanceContainer: gdjs.RuntimeInstanceContainer): void {
|
||||
|
@@ -405,9 +405,9 @@ namespace gdjs {
|
||||
}
|
||||
}
|
||||
|
||||
onDestroyFromScene(instanceContainer: gdjs.RuntimeInstanceContainer): void {
|
||||
onDestroyed(): void {
|
||||
this._renderer.destroy();
|
||||
super.onDestroyFromScene(instanceContainer);
|
||||
super.onDestroyed();
|
||||
}
|
||||
|
||||
getEmitterForceMin(): number {
|
||||
|
@@ -553,7 +553,7 @@ module.exports = {
|
||||
'While an object is needed, this will apply to all objects using the behavior.'
|
||||
),
|
||||
_('Set the world time scale of _PARAM0_ to _PARAM2_'),
|
||||
'',
|
||||
_('Global'),
|
||||
'res/physics32.png',
|
||||
'res/physics32.png'
|
||||
)
|
||||
|
@@ -379,7 +379,8 @@ namespace gdjs {
|
||||
|
||||
// Check origin of message.
|
||||
if (checkOrigin && !allowedOrigins.includes(event.origin)) {
|
||||
throw new Error(`Unexpected origin: ${event.origin}`);
|
||||
// Automatic authentication message ignored: wrong origin. Return silently.
|
||||
return;
|
||||
}
|
||||
// Check that message is not malformed.
|
||||
if (!event.data.id) {
|
||||
|
@@ -158,6 +158,25 @@ void DeclarePrimitiveDrawingExtension(gd::PlatformExtension& extension) {
|
||||
.AddParameter("expression", _("Bottom Y position"))
|
||||
.AddParameter("expression", _("Chamfer (in pixels)"))
|
||||
.SetFunctionName("DrawChamferRectangle");
|
||||
|
||||
obj.AddAction("RegularPolygon",
|
||||
_("Regular Polygon"),
|
||||
_("Draw a regular polygon on screen"),
|
||||
_("Draw at _PARAM1_;_PARAM2_ a regular polygon with _PARAM3_ sides and radius: "
|
||||
"_PARAM4_ (rotation: _PARAM5_) "
|
||||
"with _PARAM0_"),
|
||||
_("Drawing"),
|
||||
"res/actions/regularPolygon24.png",
|
||||
"res/actions/regularPolygon.png")
|
||||
|
||||
.AddParameter("object", _("Shape Painter object"), "Drawer")
|
||||
.AddParameter("expression", _("X position of center"))
|
||||
.AddParameter("expression", _("Y position of center"))
|
||||
.AddParameter("expression",
|
||||
_("Number of sides of the polygon (minimum: 3)"))
|
||||
.AddParameter("expression", _("Radius (in pixels)"))
|
||||
.AddParameter("expression", _("Rotation (in degrees)"))
|
||||
.SetFunctionName("DrawRegularPolygon");
|
||||
|
||||
obj.AddAction(
|
||||
"Star",
|
||||
|
@@ -52,6 +52,8 @@ class PrimitiveDrawingJsExtension : public gd::PlatformExtension {
|
||||
.SetFunctionName("drawRoundedRectangle");
|
||||
GetAllActionsForObject("PrimitiveDrawing::Drawer")["PrimitiveDrawing::ChamferRectangle"]
|
||||
.SetFunctionName("drawChamferRectangle");
|
||||
GetAllActionsForObject("PrimitiveDrawing::Drawer")["PrimitiveDrawing::RegularPolygon"]
|
||||
.SetFunctionName("drawRegularPolygon");
|
||||
GetAllActionsForObject("PrimitiveDrawing::Drawer")["PrimitiveDrawing::Star"]
|
||||
.SetFunctionName("drawStar");
|
||||
GetAllActionsForObject("PrimitiveDrawing::Drawer")["PrimitiveDrawing::Arc"]
|
||||
|
@@ -155,6 +155,31 @@ namespace gdjs {
|
||||
this.invalidateBounds();
|
||||
}
|
||||
|
||||
drawRegularPolygon(
|
||||
x1: float,
|
||||
y1: float,
|
||||
sides: float,
|
||||
radius: float,
|
||||
rotation: float
|
||||
) {
|
||||
this.updateOutline();
|
||||
this._graphics.beginFill(
|
||||
this._object._fillColor,
|
||||
this._object._fillOpacity / 255
|
||||
);
|
||||
//@ts-ignore from @pixi/graphics-extras
|
||||
this._graphics.drawRegularPolygon(
|
||||
x1,
|
||||
y1,
|
||||
radius,
|
||||
sides,
|
||||
rotation ? gdjs.toRad(rotation) : 0
|
||||
);
|
||||
this._graphics.closePath();
|
||||
this._graphics.endFill();
|
||||
this.invalidateBounds();
|
||||
}
|
||||
|
||||
drawStar(
|
||||
x1: float,
|
||||
y1: float,
|
||||
@@ -539,6 +564,10 @@ namespace gdjs {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
destroy(): void {
|
||||
this._graphics.destroy();
|
||||
}
|
||||
}
|
||||
|
||||
export const ShapePainterRuntimeObjectRenderer = ShapePainterRuntimeObjectPixiRenderer;
|
||||
|
@@ -174,6 +174,11 @@ namespace gdjs {
|
||||
super.stepBehaviorsPreEvents(instanceContainer);
|
||||
}
|
||||
|
||||
onDestroyed(): void {
|
||||
super.onDestroyed();
|
||||
this._renderer.destroy();
|
||||
}
|
||||
|
||||
/**
|
||||
* Clear the graphics.
|
||||
*/
|
||||
@@ -237,6 +242,22 @@ namespace gdjs {
|
||||
);
|
||||
}
|
||||
|
||||
drawRegularPolygon(
|
||||
centerX: float,
|
||||
centerY: float,
|
||||
sides: float,
|
||||
radius: float,
|
||||
rotation: float
|
||||
) {
|
||||
this._renderer.drawRegularPolygon(
|
||||
centerX,
|
||||
centerY,
|
||||
sides,
|
||||
radius,
|
||||
rotation
|
||||
);
|
||||
}
|
||||
|
||||
drawStar(
|
||||
centerX: float,
|
||||
centerY: float,
|
||||
|
@@ -31,11 +31,9 @@ namespace gdjs {
|
||||
return true;
|
||||
}
|
||||
|
||||
onDestroyFromScene(instanceContainer: gdjs.RuntimeInstanceContainer): void {
|
||||
super.onDestroyFromScene(instanceContainer);
|
||||
if (this._renderer.onDestroy) {
|
||||
this._renderer.onDestroy();
|
||||
}
|
||||
onDestroyed(): void {
|
||||
super.onDestroyed();
|
||||
this._renderer.onDestroy();
|
||||
}
|
||||
|
||||
update(instanceContainer: gdjs.RuntimeInstanceContainer): void {
|
||||
|
@@ -678,6 +678,12 @@ module.exports = {
|
||||
this.update();
|
||||
}
|
||||
|
||||
onRemovedFromScene() {
|
||||
super.onRemovedFromScene();
|
||||
this._pixiText.destroy(true);
|
||||
this._pixiObject.destroy({ children: true });
|
||||
}
|
||||
|
||||
static getThumbnail(project, resourcesLoader, objectConfiguration) {
|
||||
return 'JsPlatform/Extensions/text_input.svg';
|
||||
}
|
||||
|
@@ -147,6 +147,7 @@ describe('gdjs.TextInputRuntimeObject (using a PixiJS RuntimeGame with DOM eleme
|
||||
expect(gameDomElementContainer.querySelector('textarea')).to.be(null);
|
||||
|
||||
object.deleteFromScene(runtimeScene);
|
||||
runtimeScene.renderAndStep(1000 / 60);
|
||||
expect(gameDomElementContainer.querySelector('input')).to.be(null);
|
||||
expect(gameDomElementContainer.querySelector('textarea')).to.be(null);
|
||||
|
||||
|
@@ -199,8 +199,8 @@ namespace gdjs {
|
||||
this._renderer.onSceneResumed();
|
||||
}
|
||||
|
||||
onDestroyFromScene(instanceContainer: gdjs.RuntimeInstanceContainer): void {
|
||||
super.onDestroyFromScene(instanceContainer);
|
||||
onDestroyed(): void {
|
||||
super.onDestroyed();
|
||||
this._renderer.onDestroy();
|
||||
}
|
||||
|
||||
|
@@ -203,6 +203,10 @@ namespace gdjs {
|
||||
setScaleY(newScale: float): void {
|
||||
this._text.scale.y = newScale;
|
||||
}
|
||||
|
||||
destroy() {
|
||||
this._text.destroy(true);
|
||||
}
|
||||
}
|
||||
|
||||
// Register the class to let the engine use it.
|
||||
|
@@ -145,6 +145,11 @@ namespace gdjs {
|
||||
this._renderer.ensureUpToDate();
|
||||
}
|
||||
|
||||
onDestroyed(): void {
|
||||
super.onDestroyed();
|
||||
this._renderer.destroy();
|
||||
}
|
||||
|
||||
/**
|
||||
* Initialize the extra parameters that could be set for an instance.
|
||||
*/
|
||||
|
@@ -122,6 +122,11 @@ namespace gdjs {
|
||||
getScaleY(): float {
|
||||
return this._pixiObject.scale.y;
|
||||
}
|
||||
|
||||
destroy(): void {
|
||||
// Keep textures because they are shared by all tile maps.
|
||||
this._pixiObject.destroy(false);
|
||||
}
|
||||
}
|
||||
export const TileMapRuntimeObjectRenderer =
|
||||
gdjs.TileMapRuntimeObjectPixiRenderer;
|
||||
|
@@ -158,6 +158,11 @@ namespace gdjs {
|
||||
);
|
||||
}
|
||||
|
||||
onDestroyed(): void {
|
||||
super.onDestroyed();
|
||||
this._renderer.destroy();
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the Tilemap file to display.
|
||||
*/
|
||||
|
@@ -124,6 +124,11 @@ namespace gdjs {
|
||||
getTextureHeight() {
|
||||
return this._tiledSprite.texture.height;
|
||||
}
|
||||
|
||||
destroy(): void {
|
||||
// Keep textures because they are shared by all sprites.
|
||||
this._tiledSprite.destroy(false);
|
||||
}
|
||||
}
|
||||
|
||||
export const TiledSpriteRuntimeObjectRenderer = TiledSpriteRuntimeObjectPixiRenderer;
|
||||
|
@@ -71,11 +71,9 @@ namespace gdjs {
|
||||
return this._renderer.getRendererObject();
|
||||
}
|
||||
|
||||
onDestroyFromScene(instanceContainer: gdjs.RuntimeInstanceContainer): void {
|
||||
super.onDestroyFromScene(instanceContainer);
|
||||
if ((this._renderer as any).onDestroy) {
|
||||
(this._renderer as any).onDestroy();
|
||||
}
|
||||
onDestroyed(): void {
|
||||
super.onDestroyed();
|
||||
this._renderer.destroy();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@@ -1577,9 +1577,21 @@ namespace gdjs {
|
||||
* @param layoutTimeDelta the duration from the previous step ignoring layer time scale in seconds
|
||||
*/
|
||||
step(): void {
|
||||
for (const tween of this._activeTweens) {
|
||||
let writeIndex = 0;
|
||||
for (
|
||||
let readIndex = 0;
|
||||
readIndex < this._activeTweens.length;
|
||||
readIndex++
|
||||
) {
|
||||
const tween = this._activeTweens[readIndex];
|
||||
|
||||
tween.step();
|
||||
if (!tween.hasFinished()) {
|
||||
this._activeTweens[writeIndex] = tween;
|
||||
writeIndex++;
|
||||
}
|
||||
}
|
||||
this._activeTweens.length = writeIndex;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@@ -568,127 +568,127 @@ module.exports = {
|
||||
|
||||
/**
|
||||
* Renderer for instances of VideoObject inside the IDE.
|
||||
*
|
||||
* @extends RenderedInstance
|
||||
* @class RenderedVideoObjectInstance
|
||||
* @constructor
|
||||
*/
|
||||
function RenderedVideoObjectInstance(
|
||||
project,
|
||||
layout,
|
||||
instance,
|
||||
associatedObjectConfiguration,
|
||||
pixiContainer,
|
||||
pixiResourcesLoader
|
||||
) {
|
||||
RenderedInstance.call(
|
||||
this,
|
||||
class RenderedVideoObjectInstance extends RenderedInstance {
|
||||
constructor (
|
||||
project,
|
||||
layout,
|
||||
instance,
|
||||
associatedObjectConfiguration,
|
||||
pixiContainer,
|
||||
pixiResourcesLoader
|
||||
);
|
||||
) {
|
||||
super(
|
||||
project,
|
||||
layout,
|
||||
instance,
|
||||
associatedObjectConfiguration,
|
||||
pixiContainer,
|
||||
pixiResourcesLoader
|
||||
);
|
||||
|
||||
this._videoResource = undefined;
|
||||
this._videoResource = undefined;
|
||||
|
||||
//Setup the PIXI object:
|
||||
this._pixiObject = new PIXI.Sprite(this._getVideoTexture());
|
||||
this._pixiObject.anchor.x = 0.5;
|
||||
this._pixiObject.anchor.y = 0.5;
|
||||
this._pixiContainer.addChild(this._pixiObject);
|
||||
this.update();
|
||||
}
|
||||
RenderedVideoObjectInstance.prototype = Object.create(
|
||||
RenderedInstance.prototype
|
||||
);
|
||||
//Setup the PIXI object:
|
||||
this._pixiObject = new PIXI.Sprite(this._getVideoTexture());
|
||||
this._pixiObject.anchor.x = 0.5;
|
||||
this._pixiObject.anchor.y = 0.5;
|
||||
this._pixiContainer.addChild(this._pixiObject);
|
||||
this.update();
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the path to the thumbnail of the specified object.
|
||||
*/
|
||||
RenderedVideoObjectInstance.getThumbnail = function (
|
||||
project,
|
||||
resourcesLoader,
|
||||
objectConfiguration
|
||||
) {
|
||||
return 'JsPlatform/Extensions/videoicon24.png';
|
||||
};
|
||||
onRemovedFromScene() {
|
||||
super.onRemovedFromScene();
|
||||
// Keep textures because they are shared by all sprites.
|
||||
this._pixiObject.destroy(false);
|
||||
}
|
||||
|
||||
RenderedVideoObjectInstance.prototype._getVideoTexture = function () {
|
||||
// Get the video resource to use
|
||||
const videoResource = this._associatedObjectConfiguration
|
||||
.getProperties()
|
||||
.get('videoResource')
|
||||
.getValue();
|
||||
/**
|
||||
* Return the path to the thumbnail of the specified object.
|
||||
*/
|
||||
static getThumbnail(
|
||||
project,
|
||||
resourcesLoader,
|
||||
objectConfiguration
|
||||
) {
|
||||
return 'JsPlatform/Extensions/videoicon24.png';
|
||||
}
|
||||
|
||||
// This returns a VideoTexture with autoPlay set to false
|
||||
return this._pixiResourcesLoader.getPIXIVideoTexture(
|
||||
this._project,
|
||||
videoResource
|
||||
);
|
||||
};
|
||||
_getVideoTexture() {
|
||||
// Get the video resource to use
|
||||
const videoResource = this._associatedObjectConfiguration
|
||||
.getProperties()
|
||||
.get('videoResource')
|
||||
.getValue();
|
||||
|
||||
/**
|
||||
* This is called to update the PIXI object on the scene editor
|
||||
*/
|
||||
RenderedVideoObjectInstance.prototype.update = function () {
|
||||
// Check if the video resource has changed
|
||||
const videoResource = this._associatedObjectConfiguration
|
||||
.getProperties()
|
||||
.get('videoResource')
|
||||
.getValue();
|
||||
if (videoResource !== this._videoResource) {
|
||||
this._videoResource = videoResource;
|
||||
this._pixiObject.texture = this._getVideoTexture();
|
||||
// This returns a VideoTexture with autoPlay set to false
|
||||
return this._pixiResourcesLoader.getPIXIVideoTexture(
|
||||
this._project,
|
||||
videoResource
|
||||
);
|
||||
}
|
||||
|
||||
if (!this._pixiObject.texture.baseTexture.valid) {
|
||||
var that = this;
|
||||
/**
|
||||
* This is called to update the PIXI object on the scene editor
|
||||
*/
|
||||
update() {
|
||||
// Check if the video resource has changed
|
||||
const videoResource = this._associatedObjectConfiguration
|
||||
.getProperties()
|
||||
.get('videoResource')
|
||||
.getValue();
|
||||
if (videoResource !== this._videoResource) {
|
||||
this._videoResource = videoResource;
|
||||
this._pixiObject.texture = this._getVideoTexture();
|
||||
|
||||
that._pixiObject.texture.on('error', function () {
|
||||
that._pixiObject.texture.off('error', this);
|
||||
if (!this._pixiObject.texture.baseTexture.valid) {
|
||||
var that = this;
|
||||
|
||||
that._pixiObject.texture =
|
||||
that._pixiResourcesLoader.getInvalidPIXITexture();
|
||||
});
|
||||
that._pixiObject.texture.on('error', function () {
|
||||
that._pixiObject.texture.off('error', this);
|
||||
|
||||
that._pixiObject.texture =
|
||||
that._pixiResourcesLoader.getInvalidPIXITexture();
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
// Update opacity
|
||||
const opacity = this._associatedObjectConfiguration
|
||||
.getProperties()
|
||||
.get('Opacity')
|
||||
.getValue();
|
||||
this._pixiObject.alpha = opacity / 255;
|
||||
|
||||
// Read position and angle from the instance
|
||||
this._pixiObject.position.x =
|
||||
this._instance.getX() + this._pixiObject.width / 2;
|
||||
this._pixiObject.position.y =
|
||||
this._instance.getY() + this._pixiObject.height / 2;
|
||||
this._pixiObject.rotation = RenderedInstance.toRad(
|
||||
this._instance.getAngle()
|
||||
);
|
||||
|
||||
if (this._instance.hasCustomSize()) {
|
||||
this._pixiObject.width = this.getCustomWidth();
|
||||
this._pixiObject.height = this.getCustomHeight();
|
||||
}
|
||||
}
|
||||
|
||||
// Update opacity
|
||||
const opacity = this._associatedObjectConfiguration
|
||||
.getProperties()
|
||||
.get('Opacity')
|
||||
.getValue();
|
||||
this._pixiObject.alpha = opacity / 255;
|
||||
|
||||
// Read position and angle from the instance
|
||||
this._pixiObject.position.x =
|
||||
this._instance.getX() + this._pixiObject.width / 2;
|
||||
this._pixiObject.position.y =
|
||||
this._instance.getY() + this._pixiObject.height / 2;
|
||||
this._pixiObject.rotation = RenderedInstance.toRad(
|
||||
this._instance.getAngle()
|
||||
);
|
||||
|
||||
if (this._instance.hasCustomSize()) {
|
||||
this._pixiObject.width = this.getCustomWidth();
|
||||
this._pixiObject.height = this.getCustomHeight();
|
||||
/**
|
||||
* Return the width of the instance, when it's not resized.
|
||||
*/
|
||||
getDefaultWidth() {
|
||||
return this._pixiObject.width;
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Return the width of the instance, when it's not resized.
|
||||
*/
|
||||
RenderedVideoObjectInstance.prototype.getDefaultWidth = function () {
|
||||
return this._pixiObject.width;
|
||||
};
|
||||
|
||||
/**
|
||||
* Return the height of the instance, when it's not resized.
|
||||
*/
|
||||
RenderedVideoObjectInstance.prototype.getDefaultHeight = function () {
|
||||
return this._pixiObject.height;
|
||||
};
|
||||
/**
|
||||
* Return the height of the instance, when it's not resized.
|
||||
*/
|
||||
getDefaultHeight() {
|
||||
return this._pixiObject.height;
|
||||
}
|
||||
}
|
||||
|
||||
// We don't do anything special when instance is removed from the scene,
|
||||
// because the video is never really played.
|
||||
|
@@ -54,6 +54,7 @@ namespace gdjs {
|
||||
*/
|
||||
onDestroy() {
|
||||
this.stop();
|
||||
this._pixiObject.destroy(false);
|
||||
}
|
||||
|
||||
ensureUpToDate() {
|
||||
|
@@ -97,8 +97,8 @@ namespace gdjs {
|
||||
}
|
||||
}
|
||||
|
||||
onDestroyFromScene(instanceContainer: gdjs.RuntimeInstanceContainer): void {
|
||||
super.onDestroyFromScene(instanceContainer);
|
||||
onDestroyed(): void {
|
||||
super.onDestroyed();
|
||||
this._renderer.onDestroy();
|
||||
}
|
||||
|
||||
|
@@ -88,11 +88,11 @@ namespace gdjs {
|
||||
}
|
||||
}
|
||||
|
||||
onDestroyFromScene(parent: gdjs.RuntimeInstanceContainer): void {
|
||||
onDeletedFromScene(parent: gdjs.RuntimeInstanceContainer): void {
|
||||
// Let subclasses do something before the object is destroyed.
|
||||
this.onDestroy(parent);
|
||||
// Let behaviors do something before the object is destroyed.
|
||||
super.onDestroyFromScene(parent);
|
||||
super.onDeletedFromScene(parent);
|
||||
// Destroy the children.
|
||||
this._instanceContainer.onDestroyFromScene(parent);
|
||||
}
|
||||
|
@@ -177,7 +177,7 @@ namespace gdjs {
|
||||
const allInstancesList = this.getAdhocListOfAllInstances();
|
||||
for (let i = 0, len = allInstancesList.length; i < len; ++i) {
|
||||
const object = allInstancesList[i];
|
||||
object.onDestroyFromScene(this);
|
||||
object.onDeletedFromScene(this);
|
||||
}
|
||||
|
||||
this._destroy();
|
||||
|
@@ -425,16 +425,16 @@ namespace gdjs {
|
||||
*/
|
||||
_cacheOrClearRemovedInstances() {
|
||||
for (let k = 0, lenk = this._instancesRemoved.length; k < lenk; ++k) {
|
||||
const instance = this._instancesRemoved[k];
|
||||
// Cache the instance to recycle it into a new instance later.
|
||||
// If the object does not support recycling, the cache won't be defined.
|
||||
const cache = this._instancesCache.get(
|
||||
this._instancesRemoved[k].getName()
|
||||
);
|
||||
const cache = this._instancesCache.get(instance.getName());
|
||||
if (cache) {
|
||||
if (cache.length < 128) {
|
||||
cache.push(this._instancesRemoved[k]);
|
||||
cache.push(instance);
|
||||
}
|
||||
}
|
||||
instance.onDestroyed();
|
||||
}
|
||||
this._instancesRemoved.length = 0;
|
||||
}
|
||||
@@ -616,7 +616,7 @@ namespace gdjs {
|
||||
}
|
||||
|
||||
// Notify the object it was removed from the container
|
||||
obj.onDestroyFromScene(this);
|
||||
obj.onDeletedFromScene(this);
|
||||
|
||||
// Notify the global callbacks
|
||||
for (let j = 0; j < gdjs.callbacksObjectDeletedFromScene.length; ++j) {
|
||||
|
@@ -167,40 +167,42 @@ namespace gdjs {
|
||||
protected handleCommand(data: any) {
|
||||
const that = this;
|
||||
const runtimeGame = this._runtimegame;
|
||||
if (data && data.command) {
|
||||
if (data.command === 'play') {
|
||||
runtimeGame.pause(false);
|
||||
} else if (data.command === 'pause') {
|
||||
runtimeGame.pause(true);
|
||||
that.sendRuntimeGameDump();
|
||||
} else if (data.command === 'refresh') {
|
||||
that.sendRuntimeGameDump();
|
||||
} else if (data.command === 'set') {
|
||||
that.set(data.path, data.newValue);
|
||||
} else if (data.command === 'call') {
|
||||
that.call(data.path, data.args);
|
||||
} else if (data.command === 'profiler.start') {
|
||||
runtimeGame.startCurrentSceneProfiler(function (stoppedProfiler) {
|
||||
that.sendProfilerOutput(
|
||||
stoppedProfiler.getFramesAverageMeasures(),
|
||||
stoppedProfiler.getStats()
|
||||
);
|
||||
that.sendProfilerStopped();
|
||||
});
|
||||
that.sendProfilerStarted();
|
||||
} else if (data.command === 'profiler.stop') {
|
||||
runtimeGame.stopCurrentSceneProfiler();
|
||||
} else if (data.command === 'hotReload') {
|
||||
that._hotReloader.hotReload().then((logs) => {
|
||||
that.sendHotReloaderLogs(logs);
|
||||
});
|
||||
} else {
|
||||
logger.info(
|
||||
'Unknown command "' + data.command + '" received by the debugger.'
|
||||
if (!data || !data.command) {
|
||||
// Not a command that's meant to be handled by the debugger, return silently to
|
||||
// avoid polluting the console.
|
||||
return;
|
||||
}
|
||||
|
||||
if (data.command === 'play') {
|
||||
runtimeGame.pause(false);
|
||||
} else if (data.command === 'pause') {
|
||||
runtimeGame.pause(true);
|
||||
that.sendRuntimeGameDump();
|
||||
} else if (data.command === 'refresh') {
|
||||
that.sendRuntimeGameDump();
|
||||
} else if (data.command === 'set') {
|
||||
that.set(data.path, data.newValue);
|
||||
} else if (data.command === 'call') {
|
||||
that.call(data.path, data.args);
|
||||
} else if (data.command === 'profiler.start') {
|
||||
runtimeGame.startCurrentSceneProfiler(function (stoppedProfiler) {
|
||||
that.sendProfilerOutput(
|
||||
stoppedProfiler.getFramesAverageMeasures(),
|
||||
stoppedProfiler.getStats()
|
||||
);
|
||||
}
|
||||
that.sendProfilerStopped();
|
||||
});
|
||||
that.sendProfilerStarted();
|
||||
} else if (data.command === 'profiler.stop') {
|
||||
runtimeGame.stopCurrentSceneProfiler();
|
||||
} else if (data.command === 'hotReload') {
|
||||
that._hotReloader.hotReload().then((logs) => {
|
||||
that.sendHotReloaderLogs(logs);
|
||||
});
|
||||
} else {
|
||||
logger.info('Debugger received a message with badly formatted data.');
|
||||
logger.info(
|
||||
'Unknown command "' + data.command + '" received by the debugger.'
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -341,12 +341,32 @@ namespace gdjs {
|
||||
// onScreenPosition = floor(980.75 - 200)
|
||||
// onScreenPosition = floor(780.75)
|
||||
// onScreenPosition = 780
|
||||
this._pixiContainer.position.x = Math.ceil(
|
||||
this._pixiContainer.position.x
|
||||
);
|
||||
this._pixiContainer.position.y = Math.ceil(
|
||||
this._pixiContainer.position.y
|
||||
);
|
||||
|
||||
if (
|
||||
this._layer
|
||||
.getRuntimeScene()
|
||||
.getGame()
|
||||
.getRenderer()
|
||||
.getPIXIRenderer() instanceof PIXI.Renderer
|
||||
) {
|
||||
// TODO Revert from `round` to `ceil` when the issue is fixed in Pixi.
|
||||
// Since the upgrade to Pixi 7, sprites are rounded with `round`
|
||||
// instead of `floor`.
|
||||
// https://github.com/pixijs/pixijs/issues/9868
|
||||
this._pixiContainer.position.x = Math.round(
|
||||
this._pixiContainer.position.x
|
||||
);
|
||||
this._pixiContainer.position.y = Math.round(
|
||||
this._pixiContainer.position.y
|
||||
);
|
||||
} else {
|
||||
this._pixiContainer.position.x = Math.ceil(
|
||||
this._pixiContainer.position.x
|
||||
);
|
||||
this._pixiContainer.position.y = Math.ceil(
|
||||
this._pixiContainer.position.y
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
if (this._threeCamera) {
|
||||
|
@@ -52,7 +52,7 @@ namespace gdjs {
|
||||
}
|
||||
this._pixiRenderer.background.color = this._loadingScreenData.backgroundColor;
|
||||
|
||||
const backgroundTexture = imageManager.getPIXITexture(
|
||||
const backgroundTexture = imageManager.getOrLoadPIXITexture(
|
||||
loadingScreenData.backgroundImageResourceName
|
||||
);
|
||||
if (backgroundTexture !== imageManager.getInvalidPIXITexture()) {
|
||||
|
@@ -123,6 +123,72 @@ namespace gdjs {
|
||||
return this._invalidTexture;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the PIXI texture associated to the specified resource name.
|
||||
* If not found in the loaded textures, this method will try to load it.
|
||||
* Warning: this method should only be used in specific cases that cannot rely on
|
||||
* the initial resources loading of the game, such as the splashscreen.
|
||||
* @param resourceName The name of the resource
|
||||
* @returns The requested texture, or a placeholder if not valid.
|
||||
*/
|
||||
getOrLoadPIXITexture(resourceName: string): PIXI.Texture {
|
||||
if (this._loadedTextures.containsKey(resourceName)) {
|
||||
const texture = this._loadedTextures.get(resourceName);
|
||||
if (texture.valid) {
|
||||
return texture;
|
||||
} else {
|
||||
logger.error(
|
||||
'Texture for ' +
|
||||
resourceName +
|
||||
' is not valid anymore (or never was).'
|
||||
);
|
||||
return this._invalidTexture;
|
||||
}
|
||||
}
|
||||
|
||||
// Texture is not loaded, load it now from the resources list.
|
||||
const resource = findResourceWithNameAndKind(
|
||||
this._resources,
|
||||
resourceName,
|
||||
'image'
|
||||
);
|
||||
|
||||
if (!resource) {
|
||||
logger.warn(
|
||||
'Unable to find texture for resource "' + resourceName + '".'
|
||||
);
|
||||
return this._invalidTexture;
|
||||
}
|
||||
|
||||
logger.log('Loading texture for resource "' + resourceName + '"...');
|
||||
const file = resource.file;
|
||||
const url = this._resourcesLoader.getFullUrl(file);
|
||||
const texture = PIXI.Texture.from(url, {
|
||||
resourceOptions: {
|
||||
// Note that using `false`
|
||||
// to not having `crossorigin` at all would NOT work because the browser would taint the
|
||||
// loaded resource so that it can't be read/used in a canvas (it's only working for display `<img>` on screen).
|
||||
crossorigin: this._resourcesLoader.checkIfCredentialsRequired(file)
|
||||
? 'use-credentials'
|
||||
: 'anonymous',
|
||||
},
|
||||
}).on('error', (error) => {
|
||||
logFileLoadingError(file, error);
|
||||
});
|
||||
if (!texture) {
|
||||
throw new Error(
|
||||
'Texture loading by PIXI returned nothing for file ' +
|
||||
file +
|
||||
' behind url ' +
|
||||
url
|
||||
);
|
||||
}
|
||||
applyTextureSettings(texture, resource);
|
||||
|
||||
this._loadedTextures.put(resourceName, texture);
|
||||
return texture;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the three.js texture associated to the specified resource name.
|
||||
* Returns a placeholder texture if not found.
|
||||
@@ -249,7 +315,7 @@ namespace gdjs {
|
||||
this._resourcesLoader.getFullUrl(resource.file),
|
||||
{
|
||||
resourceOptions: {
|
||||
crossOrigin: this._resourcesLoader.checkIfCredentialsRequired(
|
||||
crossorigin: this._resourcesLoader.checkIfCredentialsRequired(
|
||||
resource.file
|
||||
)
|
||||
? 'use-credentials'
|
||||
@@ -285,7 +351,7 @@ namespace gdjs {
|
||||
{
|
||||
resourceOptions: {
|
||||
autoLoad: false,
|
||||
crossOrigin: this._resourcesLoader.checkIfCredentialsRequired(
|
||||
crossorigin: this._resourcesLoader.checkIfCredentialsRequired(
|
||||
resource.file
|
||||
)
|
||||
? 'use-credentials'
|
||||
|
@@ -467,7 +467,7 @@ namespace gdjs {
|
||||
*
|
||||
* @param instanceContainer The container owning the object.
|
||||
*/
|
||||
onDestroyFromScene(instanceContainer: gdjs.RuntimeInstanceContainer): void {
|
||||
onDeletedFromScene(instanceContainer: gdjs.RuntimeInstanceContainer): void {
|
||||
const theLayer = instanceContainer.getLayer(this.layer);
|
||||
const rendererObject = this.getRendererObject();
|
||||
if (rendererObject) {
|
||||
@@ -484,6 +484,8 @@ namespace gdjs {
|
||||
this.clearEffects();
|
||||
}
|
||||
|
||||
onDestroyed(): void {}
|
||||
|
||||
/**
|
||||
* Called whenever the scene owning the object is paused.
|
||||
* This should *not* impact objects, but some may need to inform their renderer.
|
||||
|
@@ -263,7 +263,8 @@ namespace gdjs {
|
||||
const allInstancesList = this.getAdhocListOfAllInstances();
|
||||
for (let i = 0, len = allInstancesList.length; i < len; ++i) {
|
||||
const object = allInstancesList[i];
|
||||
object.onDestroyFromScene(this);
|
||||
object.onDeletedFromScene(this);
|
||||
object.onDestroyed();
|
||||
}
|
||||
|
||||
// Notify the renderer
|
||||
|
2
GDJS/package-lock.json
generated
@@ -3489,4 +3489,4 @@
|
||||
"dev": true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -19,6 +19,8 @@ init:
|
||||
install:
|
||||
# Build GDevelop.js (and run tests to ensure it works).
|
||||
# (in a subshell to avoid Emscripten polluting the Node.js and npm version for the rest of the build)
|
||||
# Also install setuptools as our old version of Emscripten uses distutils which was removed in Python 3.12.
|
||||
# setuptools will make distutils available again (but we should migrate to a newer Emscripten version).
|
||||
- cmd: >-
|
||||
cd GDevelop.js
|
||||
|
||||
@@ -30,7 +32,9 @@ install:
|
||||
|
||||
emsdk install 1.39.6
|
||||
|
||||
CMD /C "emsdk activate 1.39.6 && cd .. && npm run build"
|
||||
CMD /C "emsdk activate 1.39.6 && pip install setuptools && cd .. && npm run build"
|
||||
|
||||
|
||||
|
||||
cd ..\..
|
||||
|
||||
|
41
newIDE/app/package-lock.json
generated
@@ -20,7 +20,6 @@
|
||||
"algoliasearch": "3.33.0",
|
||||
"axios": "^0.18.1",
|
||||
"blueimp-md5": "^2.10.0",
|
||||
"chokidar": "3.5.3",
|
||||
"classnames": "2.2.5",
|
||||
"date-fns": "2.16.1",
|
||||
"element-closest": "2.0.2",
|
||||
@@ -12160,6 +12159,7 @@
|
||||
},
|
||||
"node_modules/anymatch": {
|
||||
"version": "3.1.2",
|
||||
"dev": true,
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"normalize-path": "^3.0.0",
|
||||
@@ -13219,6 +13219,7 @@
|
||||
},
|
||||
"node_modules/binary-extensions": {
|
||||
"version": "2.1.0",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
@@ -13347,6 +13348,7 @@
|
||||
"version": "3.0.2",
|
||||
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
|
||||
"integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
|
||||
"dev": true,
|
||||
"dependencies": {
|
||||
"fill-range": "^7.0.1"
|
||||
},
|
||||
@@ -13750,6 +13752,7 @@
|
||||
},
|
||||
"node_modules/chokidar": {
|
||||
"version": "3.5.3",
|
||||
"dev": true,
|
||||
"funding": [
|
||||
{
|
||||
"type": "individual",
|
||||
@@ -17314,6 +17317,7 @@
|
||||
"version": "7.0.1",
|
||||
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
|
||||
"integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
|
||||
"dev": true,
|
||||
"dependencies": {
|
||||
"to-regex-range": "^5.0.1"
|
||||
},
|
||||
@@ -18214,6 +18218,7 @@
|
||||
"version": "2.3.3",
|
||||
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
||||
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
||||
"dev": true,
|
||||
"hasInstallScript": true,
|
||||
"optional": true,
|
||||
"os": [
|
||||
@@ -18408,6 +18413,7 @@
|
||||
},
|
||||
"node_modules/glob-parent": {
|
||||
"version": "5.1.2",
|
||||
"dev": true,
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"is-glob": "^4.0.1"
|
||||
@@ -19552,6 +19558,7 @@
|
||||
},
|
||||
"node_modules/is-binary-path": {
|
||||
"version": "2.1.0",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"binary-extensions": "^2.0.0"
|
||||
@@ -19680,6 +19687,7 @@
|
||||
},
|
||||
"node_modules/is-extglob": {
|
||||
"version": "2.1.1",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
@@ -19733,6 +19741,7 @@
|
||||
},
|
||||
"node_modules/is-glob": {
|
||||
"version": "4.0.3",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"is-extglob": "^2.1.1"
|
||||
@@ -19800,6 +19809,7 @@
|
||||
"version": "7.0.0",
|
||||
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
||||
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
|
||||
"dev": true,
|
||||
"engines": {
|
||||
"node": ">=0.12.0"
|
||||
}
|
||||
@@ -25848,6 +25858,7 @@
|
||||
},
|
||||
"node_modules/normalize-path": {
|
||||
"version": "3.0.0",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
@@ -26619,6 +26630,7 @@
|
||||
},
|
||||
"node_modules/picomatch": {
|
||||
"version": "2.3.1",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=8.6"
|
||||
@@ -30894,6 +30906,7 @@
|
||||
},
|
||||
"node_modules/readdirp": {
|
||||
"version": "3.6.0",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"picomatch": "^2.2.1"
|
||||
@@ -33779,6 +33792,7 @@
|
||||
"version": "5.0.1",
|
||||
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
||||
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
|
||||
"dev": true,
|
||||
"dependencies": {
|
||||
"is-number": "^7.0.0"
|
||||
},
|
||||
@@ -44468,6 +44482,7 @@
|
||||
},
|
||||
"anymatch": {
|
||||
"version": "3.1.2",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"normalize-path": "^3.0.0",
|
||||
"picomatch": "^2.0.4"
|
||||
@@ -45256,7 +45271,8 @@
|
||||
"dev": true
|
||||
},
|
||||
"binary-extensions": {
|
||||
"version": "2.1.0"
|
||||
"version": "2.1.0",
|
||||
"dev": true
|
||||
},
|
||||
"bl": {
|
||||
"version": "4.1.0",
|
||||
@@ -45364,6 +45380,7 @@
|
||||
"version": "3.0.2",
|
||||
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
|
||||
"integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"fill-range": "^7.0.1"
|
||||
}
|
||||
@@ -45610,6 +45627,7 @@
|
||||
},
|
||||
"chokidar": {
|
||||
"version": "3.5.3",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"anymatch": "~3.1.2",
|
||||
"braces": "~3.0.2",
|
||||
@@ -48165,6 +48183,7 @@
|
||||
"version": "7.0.1",
|
||||
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
|
||||
"integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"to-regex-range": "^5.0.1"
|
||||
}
|
||||
@@ -48814,6 +48833,7 @@
|
||||
"version": "2.3.3",
|
||||
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
||||
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
||||
"dev": true,
|
||||
"optional": true
|
||||
},
|
||||
"function-bind": {
|
||||
@@ -48935,6 +48955,7 @@
|
||||
},
|
||||
"glob-parent": {
|
||||
"version": "5.1.2",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"is-glob": "^4.0.1"
|
||||
}
|
||||
@@ -49702,6 +49723,7 @@
|
||||
},
|
||||
"is-binary-path": {
|
||||
"version": "2.1.0",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"binary-extensions": "^2.0.0"
|
||||
}
|
||||
@@ -49761,7 +49783,8 @@
|
||||
"version": "2.1.1"
|
||||
},
|
||||
"is-extglob": {
|
||||
"version": "2.1.1"
|
||||
"version": "2.1.1",
|
||||
"dev": true
|
||||
},
|
||||
"is-finite": {
|
||||
"version": "1.1.0",
|
||||
@@ -49791,6 +49814,7 @@
|
||||
},
|
||||
"is-glob": {
|
||||
"version": "4.0.3",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"is-extglob": "^2.1.1"
|
||||
}
|
||||
@@ -49833,7 +49857,8 @@
|
||||
"is-number": {
|
||||
"version": "7.0.0",
|
||||
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
||||
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="
|
||||
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
|
||||
"dev": true
|
||||
},
|
||||
"is-number-object": {
|
||||
"version": "1.0.7",
|
||||
@@ -54249,7 +54274,8 @@
|
||||
}
|
||||
},
|
||||
"normalize-path": {
|
||||
"version": "3.0.0"
|
||||
"version": "3.0.0",
|
||||
"dev": true
|
||||
},
|
||||
"normalize-range": {
|
||||
"version": "0.1.2",
|
||||
@@ -54777,7 +54803,8 @@
|
||||
"dev": true
|
||||
},
|
||||
"picomatch": {
|
||||
"version": "2.3.1"
|
||||
"version": "2.3.1",
|
||||
"dev": true
|
||||
},
|
||||
"pify": {
|
||||
"version": "4.0.1"
|
||||
@@ -57567,6 +57594,7 @@
|
||||
},
|
||||
"readdirp": {
|
||||
"version": "3.6.0",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"picomatch": "^2.2.1"
|
||||
}
|
||||
@@ -59637,6 +59665,7 @@
|
||||
"version": "5.0.1",
|
||||
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
||||
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"is-number": "^7.0.0"
|
||||
}
|
||||
|
@@ -50,7 +50,6 @@
|
||||
"algoliasearch": "3.33.0",
|
||||
"axios": "^0.18.1",
|
||||
"blueimp-md5": "^2.10.0",
|
||||
"chokidar": "3.5.3",
|
||||
"classnames": "2.2.5",
|
||||
"date-fns": "2.16.1",
|
||||
"element-closest": "2.0.2",
|
||||
|
BIN
newIDE/app/public/res/actions/regularPolygon.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
newIDE/app/public/res/actions/regularPolygon24.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
133
newIDE/app/public/res/plan-education.svg
Normal file
@@ -0,0 +1,133 @@
|
||||
<svg width="286" height="167" viewBox="0 0 286 167" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1911_1339)">
|
||||
<path d="M134.231 140.134C134.823 144.19 135.651 154.179 134.231 161.683H141.203" stroke="#CF0A80" stroke-width="2.37909" stroke-linecap="round"/>
|
||||
<path d="M144.751 138.627C146.483 142.515 150.075 151.683 150.582 157.261H158.948" stroke="#CF0A80" stroke-width="2.37909" stroke-linecap="round"/>
|
||||
<path d="M149.694 125.198C153.877 123.762 162.522 118.227 163.638 107.579" stroke="#CF0A80" stroke-width="2.37909" stroke-linecap="round"/>
|
||||
<path d="M133.851 106.415C145.892 103.88 150.963 120.992 150.963 126.062C152.61 126.062 155.779 128.217 156.286 130.626C156.793 133.034 155.399 136.39 152.23 137.724C150.766 138.34 145.005 140.259 140.315 141.273C135.625 142.287 129.668 142.16 126.372 142.16C123.076 142.16 119.654 140.006 119.527 136.203C119.426 133.161 122.189 131.048 123.583 130.372C121.302 120.485 121.809 108.95 133.851 106.415Z" fill="url(#paint0_linear_1911_1339)"/>
|
||||
<ellipse cx="145.842" cy="124.074" rx="1.64783" ry="1.77459" transform="rotate(-17.4862 145.842 124.074)" fill="#3B314F"/>
|
||||
<ellipse cx="136.969" cy="126.373" rx="1.64783" ry="1.77459" transform="rotate(-17.4862 136.969 126.373)" fill="#3B314F"/>
|
||||
<path d="M125.357 129.246C126.921 135.33 129.109 148.918 125.357 154.597" stroke="#CF0A80" stroke-width="2.37909" stroke-linecap="round"/>
|
||||
<g opacity="0.2" filter="url(#filter0_f_1911_1339)">
|
||||
<path d="M178.199 152.749L138.628 123.282C136.579 121.756 135.372 119.351 135.372 116.797L135.371 49.2822C135.371 46.7821 136.528 44.4227 138.504 42.8912L178.317 12.037C181.186 9.81309 185.187 9.77458 188.098 11.9428L227.266 41.1072C229.315 42.633 230.522 45.0375 230.522 47.5923V115.152C230.522 117.626 229.389 119.964 227.447 121.498L188.038 152.611C185.167 154.877 181.133 154.934 178.199 152.749Z" fill="#F9E05C"/>
|
||||
</g>
|
||||
<path d="M184.501 152.823L130.795 84.0192L184.257 65.4251L184.501 152.823Z" fill="#FFDAA4"/>
|
||||
<path d="M184.501 10.9517L238.208 84.0118L184.258 65.4166L184.501 10.9517Z" fill="#FFA827"/>
|
||||
<path d="M184.502 152.811L184.258 65.4144L238.208 84.0085L184.502 152.811Z" fill="#FFBC57"/>
|
||||
<path d="M184.502 10.9565L184.258 65.4202L130.796 84.0156L184.502 10.9565Z" fill="#FFBC57"/>
|
||||
<path d="M115.769 91.2361C115.983 91.1765 116.114 90.8954 116.062 90.6083C116.011 90.3212 115.796 90.1367 115.583 90.1963C115.369 90.2559 115.238 90.537 115.29 90.8241C115.341 91.1112 115.556 91.2957 115.769 91.2361Z" fill="#FEFAD1"/>
|
||||
<path d="M113.454 80.3386C113.855 80.2266 114.101 79.6988 114.004 79.1595C113.907 78.6203 113.504 78.2739 113.103 78.3858C112.703 78.4977 112.457 79.0255 112.553 79.5648C112.65 80.104 113.054 80.4505 113.454 80.3386Z" fill="#FEFAD1"/>
|
||||
<path d="M115.708 83.8918C116.004 83.8089 116.187 83.4182 116.115 83.019C116.043 82.6198 115.745 82.3634 115.448 82.4462C115.152 82.529 114.969 82.9198 115.041 83.319C115.113 83.7182 115.411 83.9746 115.708 83.8918Z" fill="#FEFAD1"/>
|
||||
<path d="M108.993 79.8038C109.147 79.761 109.241 79.5587 109.204 79.3521C109.167 79.1455 109.012 79.0128 108.859 79.0557C108.705 79.0985 108.611 79.3008 108.648 79.5074C108.685 79.714 108.84 79.8467 108.993 79.8038Z" fill="#FEFAD1"/>
|
||||
<path d="M108.567 71.9963C108.695 71.9607 108.773 71.7928 108.742 71.6212C108.711 71.4496 108.583 71.3394 108.455 71.375C108.328 71.4106 108.25 71.5785 108.28 71.7501C108.311 71.9217 108.44 72.0319 108.567 71.9963Z" fill="#FEFAD1"/>
|
||||
<path d="M122.659 71.3535C123.097 71.2312 123.366 70.6542 123.26 70.0647C123.154 69.4753 122.713 69.0966 122.275 69.219C121.837 69.3413 121.568 69.9183 121.674 70.5077C121.78 71.0971 122.221 71.4758 122.659 71.3535Z" fill="#FEFAD1"/>
|
||||
<path d="M121.554 75.1817C121.765 75.1226 121.895 74.8438 121.844 74.559C121.793 74.2742 121.58 74.0912 121.368 74.1503C121.157 74.2094 121.027 74.4882 121.078 74.773C121.129 75.0578 121.342 75.2408 121.554 75.1817Z" fill="#FEFAD1"/>
|
||||
<path d="M123.168 68.0046C123.313 67.9639 123.403 67.772 123.368 67.5759C123.332 67.3798 123.186 67.2538 123.04 67.2945C122.894 67.3352 122.805 67.5271 122.84 67.7232C122.875 67.9193 123.022 68.0453 123.168 68.0046Z" fill="#FEFAD1"/>
|
||||
<path d="M123.967 88.1961C124.55 88.0333 124.908 87.2655 124.767 86.4812C124.626 85.6968 124.039 85.1929 123.456 85.3557C122.874 85.5184 122.516 86.2862 122.657 87.0706C122.798 87.855 123.384 88.3589 123.967 88.1961Z" fill="#FEFAD1"/>
|
||||
<path d="M132.213 117.153C132.574 117.052 132.797 116.576 132.709 116.089C132.622 115.603 132.258 115.29 131.896 115.391C131.534 115.492 131.312 115.968 131.4 116.455C131.487 116.942 131.851 117.254 132.213 117.153Z" fill="#FEFAD1"/>
|
||||
<path d="M132.976 108.597C133.135 108.553 133.232 108.344 133.194 108.13C133.156 107.916 132.996 107.779 132.837 107.824C132.678 107.868 132.581 108.077 132.619 108.291C132.658 108.504 132.817 108.641 132.976 108.597Z" fill="#FEFAD1"/>
|
||||
<path d="M123.627 110.286C124.031 110.173 124.278 109.642 124.181 109.099C124.083 108.557 123.677 108.208 123.274 108.32C122.871 108.433 122.623 108.964 122.721 109.507C122.818 110.05 123.224 110.399 123.627 110.286Z" fill="#FEFAD1"/>
|
||||
<path d="M130.796 124.784C131.245 124.659 131.521 124.067 131.412 123.462C131.304 122.858 130.851 122.469 130.402 122.595C129.953 122.72 129.677 123.312 129.786 123.917C129.894 124.521 130.347 124.91 130.796 124.784Z" fill="#FEFAD1"/>
|
||||
<path d="M121.126 107.041C121.287 106.996 121.385 106.784 121.347 106.569C121.308 106.353 121.146 106.214 120.986 106.259C120.825 106.304 120.727 106.515 120.766 106.731C120.804 106.947 120.966 107.085 121.126 107.041Z" fill="#FEFAD1"/>
|
||||
<path d="M138.36 27.2343C138.935 27.0737 139.288 26.3162 139.149 25.5423C139.01 24.7685 138.431 24.2713 137.856 24.4319C137.281 24.5925 136.928 25.35 137.067 26.1238C137.206 26.8977 137.785 27.3949 138.36 27.2343Z" fill="#FEFAD1"/>
|
||||
<path d="M158.336 48.7161C158.661 48.6255 158.86 48.1982 158.781 47.7617C158.703 47.3251 158.376 47.0447 158.052 47.1353C157.728 47.2259 157.528 47.6532 157.607 48.0897C157.685 48.5263 158.012 48.8067 158.336 48.7161Z" fill="#FEFAD1"/>
|
||||
<path d="M156.664 41.1784C156.832 41.1316 156.935 40.9111 156.894 40.6859C156.854 40.4606 156.685 40.3159 156.518 40.3626C156.35 40.4094 156.248 40.6299 156.288 40.8552C156.329 41.0804 156.497 41.2251 156.664 41.1784Z" fill="#FEFAD1"/>
|
||||
<path d="M150.81 33.8825C151.006 33.8278 151.126 33.5696 151.079 33.3058C151.031 33.042 150.834 32.8725 150.638 32.9273C150.442 32.982 150.322 33.2402 150.369 33.504C150.416 33.7678 150.614 33.9373 150.81 33.8825Z" fill="#FEFAD1"/>
|
||||
<path d="M153.142 46.465C153.374 46.4001 153.517 46.0939 153.461 45.781C153.405 45.4682 153.171 45.2673 152.938 45.3322C152.706 45.3971 152.563 45.7033 152.619 46.0161C152.676 46.3289 152.91 46.5299 153.142 46.465Z" fill="#FEFAD1"/>
|
||||
<path d="M153.18 57.2773C153.396 57.217 153.528 56.9325 153.476 56.6418C153.424 56.3512 153.206 56.1645 152.991 56.2248C152.775 56.2851 152.642 56.5696 152.694 56.8602C152.746 57.1509 152.964 57.3376 153.18 57.2773Z" fill="#FEFAD1"/>
|
||||
<path d="M114.066 40.5473C114.188 40.5132 114.263 40.3521 114.234 40.1875C114.204 40.0229 114.081 39.9172 113.959 39.9513C113.836 39.9855 113.761 40.1466 113.791 40.3112C113.82 40.4758 113.944 40.5815 114.066 40.5473Z" fill="#FEFAD1"/>
|
||||
<path d="M119.067 53.4987C119.421 53.3999 119.638 52.9337 119.552 52.4575C119.467 51.9813 119.111 51.6754 118.757 51.7742C118.403 51.873 118.186 52.3392 118.271 52.8154C118.357 53.2916 118.713 53.5975 119.067 53.4987Z" fill="#FEFAD1"/>
|
||||
<path d="M115.925 60.556C116.249 60.4654 116.449 60.0381 116.37 59.6015C116.292 59.165 115.965 58.8846 115.641 58.9751C115.317 59.0657 115.117 59.493 115.196 59.9296C115.274 60.3661 115.601 60.6466 115.925 60.556Z" fill="#FEFAD1"/>
|
||||
<path d="M112.941 55.5937C113.067 55.5586 113.144 55.3929 113.114 55.2237C113.083 55.0544 112.957 54.9457 112.831 54.9808C112.705 55.016 112.628 55.1816 112.659 55.3509C112.689 55.5201 112.816 55.6288 112.941 55.5937Z" fill="#FEFAD1"/>
|
||||
<path d="M108.675 60.1843C108.929 60.1136 109.084 59.7799 109.023 59.4391C108.962 59.0983 108.707 58.8793 108.454 58.9501C108.2 59.0208 108.045 59.3544 108.106 59.6952C108.167 60.0361 108.422 60.255 108.675 60.1843Z" fill="#FEFAD1"/>
|
||||
<path d="M113.753 68.0824C114.22 67.9518 114.507 67.336 114.394 66.7069C114.281 66.0778 113.811 65.6736 113.343 65.8041C112.876 65.9347 112.589 66.5505 112.702 67.1797C112.815 67.8088 113.285 68.2129 113.753 68.0824Z" fill="#FEFAD1"/>
|
||||
<path d="M136.562 33.2029C136.779 33.1424 136.912 32.8567 136.86 32.5649C136.807 32.2731 136.589 32.0857 136.372 32.1462C136.155 32.2068 136.022 32.4924 136.074 32.7842C136.127 33.076 136.345 33.2635 136.562 33.2029Z" fill="#FEFAD1"/>
|
||||
<path d="M119.53 30.4801C119.885 30.381 120.103 29.9137 120.017 29.4363C119.931 28.9589 119.574 28.6522 119.219 28.7513C118.865 28.8504 118.647 29.3177 118.733 29.795C118.818 30.2724 119.175 30.5791 119.53 30.4801Z" fill="#FEFAD1"/>
|
||||
<path d="M136.363 18.9076C136.626 18.8342 136.787 18.488 136.724 18.1343C136.66 17.7807 136.396 17.5535 136.133 17.6269C135.87 17.7003 135.709 18.0465 135.772 18.4001C135.836 18.7538 136.1 18.981 136.363 18.9076Z" fill="#FEFAD1"/>
|
||||
<path d="M129.164 38.6144C129.608 38.4904 129.88 37.9054 129.773 37.3078C129.665 36.7102 129.219 36.3262 128.775 36.4503C128.331 36.5743 128.058 37.1593 128.165 37.7569C128.273 38.3545 128.72 38.7384 129.164 38.6144Z" fill="#FEFAD1"/>
|
||||
<path d="M139.144 51.6929C139.513 51.5897 139.74 51.103 139.651 50.6057C139.561 50.1085 139.19 49.7891 138.82 49.8923C138.451 49.9955 138.224 50.4822 138.313 50.9794C138.403 51.4766 138.774 51.7961 139.144 51.6929Z" fill="#FEFAD1"/>
|
||||
<path d="M143.069 51.9977C143.204 51.9599 143.287 51.7817 143.254 51.5996C143.221 51.4175 143.085 51.3005 142.95 51.3383C142.815 51.3761 142.732 51.5543 142.764 51.7364C142.797 51.9185 142.933 52.0355 143.069 51.9977Z" fill="#FEFAD1"/>
|
||||
<path d="M128.885 55.6215C129.094 55.5631 129.222 55.2877 129.172 55.0064C129.121 54.7251 128.911 54.5444 128.702 54.6028C128.493 54.6612 128.364 54.9365 128.415 55.2178C128.465 55.4991 128.676 55.6798 128.885 55.6215Z" fill="#FEFAD1"/>
|
||||
<path d="M125.998 48.7595C126.233 48.6939 126.377 48.3842 126.32 48.0679C126.263 47.7516 126.027 47.5484 125.792 47.6141C125.557 47.6797 125.412 47.9893 125.469 48.3056C125.526 48.622 125.763 48.8252 125.998 48.7595Z" fill="#FEFAD1"/>
|
||||
<path d="M137.951 36.9724C138.107 36.9288 138.203 36.7232 138.165 36.5131C138.127 36.303 137.97 36.168 137.814 36.2116C137.658 36.2552 137.562 36.4608 137.6 36.6709C137.637 36.881 137.795 37.016 137.951 36.9724Z" fill="#FEFAD1"/>
|
||||
<path d="M134.575 30.5547C134.765 30.5017 134.881 30.2515 134.835 29.9958C134.789 29.7402 134.598 29.576 134.408 29.6291C134.218 29.6821 134.102 29.9323 134.148 30.1879C134.194 30.4436 134.385 30.6078 134.575 30.5547Z" fill="#FEFAD1"/>
|
||||
<path d="M107.48 88.8908C107.651 88.8431 107.756 88.618 107.715 88.3881C107.674 88.1581 107.502 88.0104 107.331 88.0581C107.16 88.1058 107.055 88.3309 107.096 88.5609C107.138 88.7908 107.31 88.9385 107.48 88.8908Z" fill="#FEFAD1"/>
|
||||
<path d="M121.137 38.8984C121.41 38.8221 121.578 38.4622 121.512 38.0945C121.446 37.7268 121.171 37.4906 120.898 37.5669C120.625 37.6432 120.457 38.0031 120.523 38.3708C120.589 38.7385 120.864 38.9747 121.137 38.8984Z" fill="#FEFAD1"/>
|
||||
<path d="M109.741 90.1996C110.115 90.0952 110.345 89.6028 110.254 89.0997C110.164 88.5967 109.788 88.2735 109.414 88.3779C109.04 88.4823 108.811 88.9747 108.901 89.4778C108.991 89.9808 109.368 90.304 109.741 90.1996Z" fill="#FEFAD1"/>
|
||||
<path d="M143.505 39.2528C140.966 40.6469 129.25 51.088 116.87 37.7778" stroke="#CF0A80" stroke-width="2.37909" stroke-linecap="round"/>
|
||||
<path d="M143.741 14.2711C133.968 20.6252 138.628 34.0863 142.179 40.0226C137.616 44.1615 141.374 55.257 149.048 52.9794C156.722 50.7019 169.553 43.8454 173.245 39.9189C176.937 35.9923 176.807 32.0569 174.721 28.9492C173.052 26.4631 169.002 26.0265 167.185 26.1189C166.145 23.2912 155.956 6.32845 143.741 14.2711Z" fill="url(#paint1_linear_1911_1339)"/>
|
||||
<ellipse cx="148.358" cy="42.0134" rx="1.64783" ry="1.77459" transform="rotate(-32.9344 148.358 42.0134)" fill="#3B314F"/>
|
||||
<ellipse cx="160.173" cy="37.8059" rx="1.64783" ry="1.77459" transform="rotate(-32.9344 160.173 37.8059)" fill="#3B314F"/>
|
||||
<path d="M148.835 52.1007C145.752 54.4394 142.627 58.9475 143.713 63.5537C144.582 67.2386 151.458 68.5286 154.788 68.713L152.311 75.9595" stroke="#CF0A80" stroke-width="2.37909" stroke-linecap="round"/>
|
||||
<path d="M162.887 46.0129C160.573 48.4039 157.389 56.229 159.558 61.4936C161.294 65.7053 167.062 65.728 169.728 65.2129L169.43 73.9024" stroke="#CF0A80" stroke-width="2.37909" stroke-linecap="round"/>
|
||||
<path d="M165.316 26.559C171.781 23.6353 179.593 21.4716 174.25 3.27155" stroke="#CF0A80" stroke-width="2.37909" stroke-linecap="round"/>
|
||||
<path d="M203.415 130.275C204.555 133.444 209.879 142.19 207.598 157.781L200.626 160.443" stroke="#CF0A80" stroke-width="2.37909" stroke-linecap="round"/>
|
||||
<path d="M216.471 133.566C217.485 135.721 221.668 144.594 222.555 158.79L229.527 160.565" stroke="#CF0A80" stroke-width="2.37909" stroke-linecap="round"/>
|
||||
<path d="M197.331 124.572C196.739 127.699 195.911 136.361 197.331 145.994" stroke="#CF0A80" stroke-width="2.37909" stroke-linecap="round"/>
|
||||
<path d="M218.879 101.63C206.964 98.4614 201.007 113.165 200.88 116.08C192.007 116.08 192.664 123.971 194.542 126.601C195.81 128.376 198.979 131.418 206.077 133.826C213.175 136.235 220.907 137.249 223.062 136.995C225.217 136.742 228.006 136.995 230.034 132.179C231.656 128.325 228.851 125.249 227.499 124.193C229.02 117.095 230.794 104.799 218.879 101.63Z" fill="url(#paint2_linear_1911_1339)"/>
|
||||
<ellipse cx="205.767" cy="117.492" rx="1.64783" ry="1.77459" transform="rotate(23.8851 205.767 117.492)" fill="#3B314F"/>
|
||||
<ellipse cx="216.922" cy="120.783" rx="1.64783" ry="1.77459" transform="rotate(23.8851 216.922 120.783)" fill="#3B314F"/>
|
||||
<path d="M227.245 126.218C228.935 130.485 231.986 141.074 230.668 149.287" stroke="#CF0A80" stroke-width="2.37909" stroke-linecap="round"/>
|
||||
<path d="M90.6821 166.422C98.3502 167.357 99.2203 146.838 98.8383 144.172C94.4561 140.447 89.4915 142.421 87.4392 144.816C89.1667 154.982 83.0139 165.488 90.6821 166.422Z" fill="#DE493C"/>
|
||||
<path d="M117.852 103.479C123.176 108.906 105.071 121.796 102.668 122.914C96.4736 120.436 102.385 111.934 103.255 108.954C112.563 104.912 114.067 99.622 117.852 103.479Z" fill="url(#paint3_linear_1911_1339)"/>
|
||||
<path d="M102.079 82.0014C91.5801 65.314 76.5525 65.3135 66.8829 73.681C57.7205 83.4022 64.3075 94.5883 64.3075 104.047C64.3075 113.137 63.3164 117.103 61.9788 127.7C60.5944 138.667 65.0792 154.824 83.4734 153.381C101.868 151.938 105.64 128.975 106.535 121.811C107.43 114.646 110.755 95.7917 102.079 82.0014Z" fill="url(#paint4_linear_1911_1339)"/>
|
||||
<path d="M93.2403 99.7095C97.9784 98.4944 101.021 95.2052 102.052 93.042C100.763 90.3116 97.2859 84.2976 93.6904 82.084C89.1959 79.3171 83.2241 82.4192 80.6805 87.1803C78.6455 90.9891 78.138 95.1637 77.4766 98.1333C80.401 99.6753 86.8107 101.358 93.2403 99.7095Z" fill="#FEF9F5"/>
|
||||
<mask id="mask0_1911_1339" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="82" y="80" width="17" height="18">
|
||||
<path d="M98.4245 87.8646C98.886 92.5337 96.0032 96.6406 91.9856 97.0377C87.968 97.4347 83.1838 94.2459 82.7223 89.5768C82.2609 84.9078 86.2969 80.5265 90.3145 80.1294C94.3321 79.7323 97.9631 83.1955 98.4245 87.8646Z" fill="black"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_1911_1339)">
|
||||
<path d="M93.4611 101.639C98.0371 99.9107 101.242 95.1521 102.272 92.9889C100.984 90.2585 97.5068 84.2444 93.9112 82.0309C89.4167 79.264 83.4449 82.3661 80.9013 87.1272C78.8664 90.936 77.5519 96.5791 76.7063 99.0713C79.6306 100.613 87.7412 103.799 93.4611 101.639Z" fill="black"/>
|
||||
</g>
|
||||
<path d="M99.5792 103.717C104.473 109.535 89.8703 120.07 87.4679 121.189C79.4254 121.517 79.1563 115.64 80.027 112.661C89.3348 108.619 94.686 97.8987 99.5792 103.717Z" fill="url(#paint5_linear_1911_1339)"/>
|
||||
<path d="M75.3207 166.422C82.9889 167.357 83.859 146.838 83.4769 144.172C79.0947 140.447 74.1301 142.421 72.0779 144.816C73.8053 154.982 67.6526 165.488 75.3207 166.422Z" fill="url(#paint6_linear_1911_1339)"/>
|
||||
<path d="M99.4468 110.277C91.0219 120.436 87.0573 121.51 85.8184 122.171C86.7269 122.253 89.6367 121.69 92.2609 119.941C94.491 118.454 98.9512 113.498 99.4468 110.277Z" fill="#DB422A"/>
|
||||
<path d="M85.3242 51.2736C88.7933 50.778 97.1686 46.9125 102.917 35.415" stroke="#CF0A80" stroke-width="2.37909" stroke-linecap="round"/>
|
||||
<path d="M86.8281 62.6745C90.1169 62.171 98.3414 64.102 101.38 68.9178C103.81 72.7705 100.492 77.4874 98.5285 79.3643L105.788 84.1495" stroke="#CF0A80" stroke-width="2.37909" stroke-linecap="round"/>
|
||||
<path d="M70.4556 35.8598C82.3707 32.6909 88.3283 47.3946 88.455 50.31C97.3279 50.31 96.6712 58.201 94.7928 60.8307C93.5253 62.6053 90.3563 65.6475 83.258 68.0558C76.1597 70.4642 68.4275 71.4783 66.2727 71.2247C64.1178 70.9712 61.3292 71.2247 59.3011 66.408C57.6786 62.5546 60.4842 59.4787 61.8362 58.4224C60.3152 51.324 58.5406 39.0287 70.4556 35.8598Z" fill="url(#paint7_linear_1911_1339)"/>
|
||||
<ellipse cx="1.64783" cy="1.77459" rx="1.64783" ry="1.77459" transform="matrix(-0.914359 0.404904 0.404904 0.914359 84.3555 49.4321)" fill="#3B314F"/>
|
||||
<ellipse cx="1.64783" cy="1.77459" rx="1.64783" ry="1.77459" transform="matrix(-0.914359 0.404904 0.404904 0.914359 73.2012 52.7222)" fill="#3B314F"/>
|
||||
<path d="M71.489 68.6971C74.4047 66.1529 79.4533 64.0069 83.7431 66.0055C87.175 67.6045 87.0428 74.5992 86.5477 77.8966L94.146 76.9423" stroke="#CF0A80" stroke-width="2.37909" stroke-linecap="round"/>
|
||||
<path d="M65.0048 59.7192C63.0224 62.7753 60.8419 71.6627 67.9782 82.7637" stroke="#CF0A80" stroke-width="2.37909" stroke-linecap="round"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_f_1911_1339" x="112.025" y="-13.0037" width="141.843" height="190.7" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="11.673" result="effect1_foregroundBlur_1911_1339"/>
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_1911_1339" x1="137.956" y1="106.161" x2="137.956" y2="142.166" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F783F2"/>
|
||||
<stop offset="1" stop-color="#E040DA"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1911_1339" x1="155.257" y1="11.6407" x2="159.21" y2="52.1267" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F783F2"/>
|
||||
<stop offset="1" stop-color="#E040DA"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1911_1339" x1="211.95" y1="101.186" x2="211.95" y2="137.033" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F783F2"/>
|
||||
<stop offset="1" stop-color="#E040DA"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1911_1339" x1="119.168" y1="106.149" x2="99.0938" y2="119.25" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#E04D40"/>
|
||||
<stop offset="1" stop-color="#F15F56"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_1911_1339" x1="79.5413" y1="66.4371" x2="79.1903" y2="157.704" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F46A6A"/>
|
||||
<stop offset="1" stop-color="#EA5749"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_1911_1339" x1="100.896" y1="106.386" x2="80.8212" y2="119.488" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF6F66"/>
|
||||
<stop offset="1" stop-color="#EF6058"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_1911_1339" x1="78.3236" y1="166.061" x2="78.3289" y2="141.702" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DA4639"/>
|
||||
<stop offset="1" stop-color="#EC5B4F"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint7_linear_1911_1339" x1="77.3851" y1="35.415" x2="77.3851" y2="71.2626" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F783F2"/>
|
||||
<stop offset="1" stop-color="#E040DA"/>
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_1911_1339">
|
||||
<rect width="286" height="167" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 19 KiB |
108
newIDE/app/public/res/plan-individual.svg
Normal file
@@ -0,0 +1,108 @@
|
||||
<svg width="286" height="167" viewBox="0 0 286 167" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1911_2227)">
|
||||
<g filter="url(#filter0_f_1911_2227)">
|
||||
<ellipse cx="37.8138" cy="2.06464" rx="37.8138" ry="2.06464" transform="matrix(0.999991 -0.00412603 -0.0157148 0.999877 94.501 136.703)" fill="black" fill-opacity="0.4"/>
|
||||
</g>
|
||||
<path d="M144.774 96.9415C138.18 107.063 127.292 107.677 115.023 105.53C110.422 104.047 99.9632 98.3831 94.9331 87.5867C88.6454 74.0912 105.931 33.6242 119.164 18.5756C134.806 0.786144 156.477 3.69993 166.599 15.9686C176.721 28.2372 172.532 43.4196 162.564 59.0621C152.596 74.7046 151.369 86.8199 144.774 96.9415Z" fill="url(#paint0_linear_1911_2227)"/>
|
||||
<path d="M123.045 62.751L120.744 67.9651C120.131 66.2475 119.875 64.5402 119.824 64.1312C120.07 63.8858 122.073 63.1088 123.045 62.751Z" fill="#DB422A"/>
|
||||
<path d="M162.457 33.7625C166.138 37.1363 165.524 44.9575 163.377 50.4784C146.569 57.9623 139.913 43.6796 138.687 35.6027C149.882 27.3214 158.163 29.8262 162.457 33.7625Z" fill="#FEF9F5"/>
|
||||
<mask id="mask0_1911_2227" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="143" y="35" width="19" height="20">
|
||||
<path d="M159.03 50.4663C156.123 54.551 150.587 55.5997 146.666 52.8086C142.745 50.0176 142.333 44.606 145.24 40.5213C148.147 36.4367 153.981 34.387 158.036 36.8335C163.633 40.21 161.937 46.3817 159.03 50.4663Z" fill="black"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_1911_2227)">
|
||||
<path d="M162.766 31.1612C166.446 34.535 165.526 44.9635 163.379 50.4844C146.571 57.9682 139.915 43.6855 138.688 35.6086C151.877 25.487 159.146 27.8435 162.766 31.1612Z" fill="black"/>
|
||||
</g>
|
||||
<path d="M90.8066 127.877L126.378 56.0494L174.194 87.7828L90.8066 127.877Z" fill="#FFDAA4"/>
|
||||
<path d="M208.217 71.4194L169.123 144.941L174.196 87.7774L208.217 71.4194Z" fill="#FFA827"/>
|
||||
<path d="M90.8126 127.882L174.199 87.7888L169.126 144.952L90.8126 127.882Z" fill="#FFBC57"/>
|
||||
<path d="M208.214 71.4355L174.194 87.7931L126.377 56.0604L208.214 71.4355Z" fill="#FFBC57"/>
|
||||
<path d="M122.889 92.1843C112.614 96.325 104.64 71.3276 104.18 67.4937C107.37 56.2065 115.63 58.4967 119.362 61.0526C120.742 75.775 133.164 88.0436 122.889 92.1843Z" fill="url(#paint1_linear_1911_2227)"/>
|
||||
<path d="M109.702 90.0442C105.653 84.8914 103.756 69.9032 104.334 67.0405C105.561 75.0151 109.646 82.9416 111.979 86.3636L109.702 90.0442Z" fill="#DB422A"/>
|
||||
<path d="M173.499 71.9379C168.326 71.9379 165.218 69.0242 165.218 65.6503C165.218 62.2762 170.657 59.9031 173.499 59.9758C177.827 60.0865 181.627 62.7365 181.627 65.6503C181.627 68.5641 178.253 71.9379 173.499 71.9379Z" fill="url(#paint2_linear_1911_2227)"/>
|
||||
<g opacity="0.2" filter="url(#filter1_f_1911_2227)">
|
||||
<path d="M89.3848 119.081L95.5851 76.8182C96.0116 73.9114 97.7874 71.3775 100.374 69.9848L153.03 41.6354C155.561 40.2725 158.581 40.1581 161.209 41.3256L201.137 59.0684C204.947 60.7613 207.163 64.7842 206.558 68.909L200.425 110.728C199.998 113.635 198.222 116.169 195.635 117.562L142.934 145.935C140.429 147.284 137.443 147.411 134.832 146.279L94.8821 128.955C91.0287 127.284 88.7751 123.236 89.3848 119.081Z" fill="#FEED58"/>
|
||||
</g>
|
||||
<path d="M163.834 148.815C163.855 148.482 163.582 148.194 163.223 148.171C162.864 148.149 162.556 148.399 162.535 148.732C162.513 149.064 162.787 149.352 163.146 149.375C163.505 149.398 163.813 149.147 163.834 148.815Z" fill="#D1FEF9"/>
|
||||
<path d="M145.019 140.921C145.042 140.557 144.743 140.242 144.35 140.216C143.957 140.191 143.619 140.466 143.596 140.83C143.573 141.194 143.872 141.51 144.265 141.535C144.658 141.56 144.996 141.285 145.019 140.921Z" fill="#D1FEF9"/>
|
||||
<path d="M140.426 142.507C140.458 142.016 140.054 141.591 139.524 141.557C138.994 141.523 138.539 141.894 138.508 142.384C138.477 142.875 138.881 143.3 139.41 143.334C139.94 143.368 140.395 142.997 140.426 142.507Z" fill="#D1FEF9"/>
|
||||
<path d="M130.422 137.215C130.436 136.994 130.254 136.802 130.015 136.786C129.775 136.771 129.57 136.938 129.556 137.16C129.542 137.381 129.724 137.573 129.963 137.589C130.203 137.604 130.408 137.437 130.422 137.215Z" fill="#D1FEF9"/>
|
||||
<path d="M120.778 129.333C120.824 128.624 120.24 128.01 119.475 127.962C118.71 127.913 118.053 128.447 118.008 129.156C117.962 129.865 118.546 130.479 119.311 130.527C120.076 130.576 120.733 130.042 120.778 129.333Z" fill="#D1FEF9"/>
|
||||
<path d="M116.446 130.825C116.461 130.587 116.266 130.382 116.009 130.365C115.753 130.349 115.533 130.528 115.518 130.765C115.503 131.003 115.698 131.209 115.954 131.225C116.211 131.241 116.431 131.062 116.446 130.825Z" fill="#D1FEF9"/>
|
||||
<path d="M130.327 146.609C130.351 146.238 130.045 145.916 129.644 145.891C129.243 145.865 128.899 146.145 128.875 146.517C128.851 146.888 129.157 147.21 129.558 147.235C129.959 147.261 130.303 146.981 130.327 146.609Z" fill="#D1FEF9"/>
|
||||
<path d="M154.923 151.54C154.929 151.442 154.849 151.358 154.743 151.351C154.638 151.344 154.547 151.418 154.541 151.516C154.534 151.614 154.615 151.698 154.721 151.705C154.826 151.712 154.917 151.638 154.923 151.54Z" fill="#D1FEF9"/>
|
||||
<path d="M164.482 152.868C164.507 152.471 164.18 152.127 163.752 152.1C163.323 152.072 162.955 152.372 162.93 152.769C162.904 153.166 163.231 153.51 163.66 153.537C164.088 153.564 164.456 153.265 164.482 152.868Z" fill="#D1FEF9"/>
|
||||
<path d="M154.853 146.646C154.888 146.096 154.435 145.619 153.841 145.581C153.247 145.543 152.737 145.958 152.701 146.509C152.666 147.059 153.119 147.536 153.714 147.574C154.308 147.612 154.818 147.196 154.853 146.646Z" fill="#D1FEF9"/>
|
||||
<path d="M147.263 147.45C147.274 147.284 147.137 147.141 146.959 147.13C146.78 147.118 146.626 147.243 146.616 147.409C146.605 147.574 146.742 147.718 146.92 147.729C147.099 147.741 147.253 147.616 147.263 147.45Z" fill="#D1FEF9"/>
|
||||
<path d="M149.133 129.106C149.169 128.534 148.698 128.038 148.08 127.998C147.462 127.959 146.932 128.391 146.895 128.963C146.859 129.535 147.33 130.031 147.948 130.07C148.566 130.11 149.096 129.678 149.133 129.106Z" fill="#D1FEF9"/>
|
||||
<path d="M135.853 128.757C135.87 128.489 135.649 128.257 135.36 128.238C135.071 128.22 134.823 128.422 134.805 128.69C134.788 128.958 135.009 129.19 135.298 129.208C135.587 129.227 135.836 129.025 135.853 128.757Z" fill="#D1FEF9"/>
|
||||
<path d="M149.973 131.434C149.989 131.182 149.781 130.964 149.509 130.947C149.237 130.929 149.003 131.119 148.987 131.371C148.971 131.623 149.179 131.842 149.451 131.859C149.723 131.877 149.956 131.686 149.973 131.434Z" fill="#D1FEF9"/>
|
||||
<path d="M140.117 131.237C140.132 130.996 139.934 130.787 139.674 130.771C139.413 130.754 139.19 130.936 139.174 131.177C139.159 131.418 139.357 131.627 139.618 131.643C139.878 131.66 140.102 131.478 140.117 131.237Z" fill="#D1FEF9"/>
|
||||
<path d="M155.937 135.648C155.961 135.275 155.654 134.953 155.252 134.927C154.85 134.901 154.504 135.182 154.481 135.555C154.457 135.927 154.764 136.25 155.166 136.276C155.568 136.302 155.913 136.021 155.937 135.648Z" fill="#D1FEF9"/>
|
||||
<path d="M124.035 84.4542C124.249 84.6645 124.607 84.6476 124.834 84.4165C125.061 84.1853 125.071 83.8275 124.857 83.6172C124.643 83.4068 124.286 83.4237 124.059 83.6549C123.831 83.886 123.821 84.2439 124.035 84.4542Z" fill="#D1FEF9"/>
|
||||
<path d="M132.393 75.2638C132.795 75.6588 133.467 75.627 133.894 75.1929C134.32 74.7588 134.34 74.0867 133.938 73.6917C133.536 73.2968 132.864 73.3285 132.438 73.7626C132.011 74.1967 131.991 74.8688 132.393 75.2638Z" fill="#D1FEF9"/>
|
||||
<path d="M130.77 79.9973C131.067 80.2897 131.564 80.2662 131.88 79.9448C132.196 79.6235 132.21 79.126 131.913 78.8336C131.615 78.5412 131.118 78.5647 130.802 78.8861C130.487 79.2074 130.472 79.705 130.77 79.9973Z" fill="#D1FEF9"/>
|
||||
<path d="M129.554 69.8011C129.708 69.9524 129.966 69.9403 130.129 69.7739C130.293 69.6076 130.3 69.3501 130.146 69.1988C129.992 69.0475 129.735 69.0596 129.571 69.2259C129.408 69.3923 129.4 69.6498 129.554 69.8011Z" fill="#D1FEF9"/>
|
||||
<path d="M136.454 64.6296C136.582 64.7553 136.796 64.7451 136.931 64.607C137.067 64.4689 137.073 64.2551 136.945 64.1294C136.818 64.0037 136.604 64.0138 136.468 64.152C136.332 64.2901 136.326 64.5039 136.454 64.6296Z" fill="#D1FEF9"/>
|
||||
<path d="M147.553 80.5113C147.992 80.9431 148.726 80.9084 149.193 80.4339C149.659 79.9594 149.68 79.2247 149.241 78.793C148.802 78.3612 148.067 78.3959 147.601 78.8704C147.135 79.3449 147.113 80.0796 147.553 80.5113Z" fill="#D1FEF9"/>
|
||||
<path d="M143.19 81.5102C143.402 81.7189 143.757 81.7021 143.982 81.4728C144.207 81.2436 144.218 80.8886 144.006 80.68C143.793 80.4714 143.438 80.4881 143.213 80.7174C142.988 80.9467 142.978 81.3016 143.19 81.5102Z" fill="#D1FEF9"/>
|
||||
<path d="M151.024 79.091C151.171 79.2346 151.415 79.2231 151.57 79.0652C151.725 78.9074 151.732 78.663 151.586 78.5193C151.44 78.3757 151.196 78.3873 151.04 78.5451C150.885 78.703 150.878 78.9474 151.024 79.091Z" fill="#D1FEF9"/>
|
||||
<path d="M132.947 92.0828C133.532 92.6573 134.509 92.6111 135.129 91.9797C135.75 91.3482 135.778 90.3706 135.194 89.7961C134.609 89.2216 133.632 89.2677 133.012 89.8992C132.391 90.5306 132.362 91.5082 132.947 92.0828Z" fill="#D1FEF9"/>
|
||||
<path d="M112.314 118.902C112.677 119.259 113.283 119.23 113.668 118.838C114.053 118.447 114.071 117.84 113.708 117.483C113.345 117.127 112.739 117.156 112.354 117.547C111.969 117.939 111.951 118.546 112.314 118.902Z" fill="#D1FEF9"/>
|
||||
<path d="M120.789 114.663C120.948 114.819 121.214 114.807 121.383 114.635C121.552 114.463 121.56 114.197 121.401 114.04C121.241 113.884 120.975 113.896 120.806 114.068C120.637 114.24 120.63 114.506 120.789 114.663Z" fill="#D1FEF9"/>
|
||||
<path d="M112.259 104.896C112.664 105.293 113.34 105.261 113.769 104.825C114.198 104.388 114.218 103.711 113.814 103.314C113.409 102.916 112.733 102.948 112.304 103.385C111.875 103.822 111.855 104.498 112.259 104.896Z" fill="#D1FEF9"/>
|
||||
<path d="M104.207 121.818C104.657 122.261 105.41 122.225 105.889 121.738C106.367 121.252 106.389 120.498 105.938 120.055C105.487 119.612 104.734 119.648 104.256 120.135C103.778 120.621 103.756 121.375 104.207 121.818Z" fill="#D1FEF9"/>
|
||||
<path d="M113.39 100.067C113.551 100.225 113.82 100.213 113.991 100.039C114.161 99.8651 114.169 99.5959 114.008 99.4377C113.847 99.2796 113.578 99.2923 113.408 99.4661C113.237 99.64 113.229 99.9091 113.39 100.067Z" fill="#D1FEF9"/>
|
||||
<path d="M200.054 72.2408C200.631 72.8076 201.595 72.7621 202.207 72.1391C202.819 71.5161 202.847 70.5516 202.27 69.9848C201.693 69.418 200.729 69.4635 200.117 70.0865C199.505 70.7095 199.477 71.674 200.054 72.2408Z" fill="#D1FEF9"/>
|
||||
<path d="M195.087 108.103C195.413 108.422 195.956 108.397 196.302 108.045C196.647 107.694 196.663 107.15 196.337 106.83C196.012 106.51 195.468 106.536 195.123 106.887C194.778 107.239 194.762 107.783 195.087 108.103Z" fill="#D1FEF9"/>
|
||||
<path d="M200.8 101.664C200.967 101.829 201.248 101.816 201.426 101.635C201.604 101.454 201.613 101.173 201.445 101.008C201.277 100.843 200.996 100.856 200.818 101.037C200.64 101.219 200.632 101.499 200.8 101.664Z" fill="#D1FEF9"/>
|
||||
<path d="M203.19 90.5632C203.387 90.7564 203.716 90.7409 203.924 90.5285C204.133 90.3161 204.143 89.9874 203.946 89.7942C203.749 89.601 203.421 89.6165 203.212 89.8288C203.003 90.0412 202.994 90.37 203.19 90.5632Z" fill="#D1FEF9"/>
|
||||
<path d="M193.278 100.772C193.511 101.001 193.901 100.982 194.148 100.73C194.396 100.479 194.407 100.089 194.174 99.8596C193.941 99.6305 193.551 99.649 193.304 99.9008C193.057 100.153 193.045 100.542 193.278 100.772Z" fill="#D1FEF9"/>
|
||||
<path d="M183.311 107.281C183.528 107.493 183.89 107.476 184.119 107.242C184.349 107.008 184.36 106.646 184.143 106.433C183.927 106.22 183.565 106.238 183.335 106.471C183.105 106.705 183.094 107.068 183.311 107.281Z" fill="#D1FEF9"/>
|
||||
<path d="M169.62 52.1844C169.743 52.3049 169.948 52.2952 170.078 52.1628C170.208 52.0303 170.214 51.8252 170.091 51.7046C169.969 51.5841 169.764 51.5937 169.633 51.7262C169.503 51.8587 169.497 52.0638 169.62 52.1844Z" fill="#D1FEF9"/>
|
||||
<path d="M161.392 65.6849C161.747 66.0338 162.34 66.0058 162.717 65.6224C163.094 65.239 163.111 64.6455 162.756 64.2966C162.401 63.9478 161.808 63.9758 161.431 64.3592C161.055 64.7426 161.037 65.3361 161.392 65.6849Z" fill="#D1FEF9"/>
|
||||
<path d="M152.526 66.2842C152.851 66.6039 153.395 66.5782 153.74 66.2268C154.085 65.8754 154.101 65.3313 153.776 65.0116C153.45 64.6918 152.907 64.7175 152.561 65.0689C152.216 65.4204 152.2 65.9644 152.526 66.2842Z" fill="#D1FEF9"/>
|
||||
<path d="M154.879 59.8795C155.006 60.0034 155.216 59.9935 155.35 59.8572C155.484 59.721 155.49 59.51 155.364 59.3861C155.238 59.2621 155.027 59.2721 154.893 59.4083C154.76 59.5446 154.753 59.7555 154.879 59.8795Z" fill="#D1FEF9"/>
|
||||
<path d="M147.456 57.7064C147.71 57.956 148.134 57.936 148.404 57.6616C148.673 57.3872 148.686 56.9624 148.432 56.7128C148.178 56.4631 147.753 56.4832 147.484 56.7575C147.214 57.0319 147.201 57.4567 147.456 57.7064Z" fill="#D1FEF9"/>
|
||||
<path d="M143.95 68.2636C144.419 68.7244 145.202 68.6874 145.7 68.181C146.198 67.6745 146.221 66.8904 145.752 66.4296C145.283 65.9688 144.499 66.0058 144.001 66.5123C143.504 67.0187 143.481 67.8028 143.95 68.2636Z" fill="#D1FEF9"/>
|
||||
<path d="M193.199 73.7177C193.416 73.9314 193.78 73.9143 194.011 73.6794C194.241 73.4445 194.252 73.0808 194.035 72.867C193.817 72.6533 193.454 72.6704 193.223 72.9053C192.992 73.1402 192.981 73.5039 193.199 73.7177Z" fill="#D1FEF9"/>
|
||||
<path d="M183.041 52.4501C183.397 52.7998 183.991 52.7717 184.369 52.3874C184.746 52.0031 184.764 51.4081 184.408 51.0584C184.052 50.7087 183.458 50.7368 183.08 51.1212C182.702 51.5055 182.685 52.1005 183.041 52.4501Z" fill="#D1FEF9"/>
|
||||
<path d="M206.27 64.9508C206.534 65.2098 206.974 65.189 207.254 64.9043C207.534 64.6196 207.547 64.1788 207.283 63.9197C207.019 63.6607 206.579 63.6815 206.299 63.9662C206.019 64.2509 206.006 64.6917 206.27 64.9508Z" fill="#D1FEF9"/>
|
||||
<path d="M182.671 68.4234C183.117 68.8612 183.861 68.826 184.334 68.3449C184.806 67.8638 184.828 67.119 184.383 66.6812C183.937 66.2435 183.193 66.2787 182.72 66.7598C182.248 67.2409 182.226 67.9857 182.671 68.4234Z" fill="#D1FEF9"/>
|
||||
<path d="M178.031 87.7496C178.402 88.1138 179.021 88.0845 179.415 87.6843C179.808 87.284 179.826 86.6643 179.455 86.3001C179.085 85.9359 178.465 85.9651 178.072 86.3654C177.679 86.7657 177.661 87.3854 178.031 87.7496Z" fill="#D1FEF9"/>
|
||||
<path d="M180.661 92.4627C180.797 92.5961 181.023 92.5854 181.167 92.4388C181.311 92.2922 181.318 92.0653 181.182 91.9319C181.047 91.7985 180.82 91.8093 180.676 91.9558C180.532 92.1024 180.525 92.3294 180.661 92.4627Z" fill="#D1FEF9"/>
|
||||
<path d="M166.747 78.2556C166.957 78.4617 167.307 78.4452 167.53 78.2187C167.752 77.9923 167.762 77.6416 167.553 77.4356C167.343 77.2295 166.992 77.2461 166.77 77.4725C166.548 77.699 166.537 78.0496 166.747 78.2556Z" fill="#D1FEF9"/>
|
||||
<path d="M170.931 70.8534C171.167 71.0851 171.561 71.0665 171.811 70.8118C172.061 70.5572 172.073 70.1629 171.837 69.9312C171.601 69.6995 171.207 69.7181 170.957 69.9728C170.707 70.2274 170.695 70.6217 170.931 70.8534Z" fill="#D1FEF9"/>
|
||||
<path d="M190.749 77.5815C190.906 77.7354 191.168 77.7231 191.334 77.5539C191.5 77.3848 191.508 77.1229 191.351 76.969C191.194 76.8152 190.933 76.8275 190.767 76.9967C190.6 77.1658 190.593 77.4277 190.749 77.5815Z" fill="#D1FEF9"/>
|
||||
<path d="M194.168 69.8513C194.358 70.0385 194.677 70.0235 194.879 69.8177C195.081 69.6119 195.09 69.2933 194.9 69.1061C194.709 68.9189 194.391 68.9339 194.189 69.1397C193.986 69.3455 193.977 69.6641 194.168 69.8513Z" fill="#D1FEF9"/>
|
||||
<path d="M120.014 73.5007C120.186 73.6691 120.472 73.6556 120.654 73.4705C120.836 73.2853 120.844 72.9988 120.673 72.8303C120.501 72.6619 120.215 72.6755 120.033 72.8606C119.851 73.0457 119.843 73.3323 120.014 73.5007Z" fill="#D1FEF9"/>
|
||||
<path d="M176.426 59.3549C176.7 59.6242 177.158 59.6026 177.449 59.3066C177.739 59.0106 177.753 58.5523 177.479 58.283C177.205 58.0137 176.747 58.0354 176.456 58.3313C176.165 58.6273 176.152 59.0856 176.426 59.3549Z" fill="#D1FEF9"/>
|
||||
<path d="M120.511 76.8716C120.886 77.24 121.512 77.2105 121.91 76.8055C122.308 76.4005 122.327 75.7735 121.952 75.405C121.577 75.0365 120.95 75.0661 120.552 75.4711C120.154 75.8761 120.136 76.5031 120.511 76.8716Z" fill="#D1FEF9"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_f_1911_2227" x="82.8528" y="124.925" width="98.8588" height="27.3725" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="5.80797" result="effect1_foregroundBlur_1911_2227"/>
|
||||
</filter>
|
||||
<filter id="filter1_f_1911_2227" x="56.7615" y="8.00025" width="182.42" height="171.57" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="16.2623" result="effect1_foregroundBlur_1911_2227"/>
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_1911_2227" x1="163.637" y1="8.45403" x2="104.748" y2="102.156" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF7171"/>
|
||||
<stop offset="1" stop-color="#E85345"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1911_2227" x1="118.595" y1="92.7977" x2="109.547" y2="59.059" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#E04D40"/>
|
||||
<stop offset="1" stop-color="#F15F56"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1911_2227" x1="173.422" y1="59.9741" x2="173.422" y2="71.9379" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FA6B68"/>
|
||||
<stop offset="1" stop-color="#F1463F"/>
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_1911_2227">
|
||||
<rect width="286" height="167" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 17 KiB |
265
newIDE/app/public/res/plan-professional.svg
Normal file
@@ -0,0 +1,265 @@
|
||||
<svg width="286" height="167" viewBox="0 0 286 167" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1911_1723)">
|
||||
<g filter="url(#filter0_f_1911_1723)">
|
||||
<ellipse cx="42.762" cy="2.48802" rx="42.762" ry="2.48802" transform="matrix(0.999991 -0.00412603 -0.0157148 0.999877 41.7871 112.352)" fill="black" fill-opacity="0.3"/>
|
||||
</g>
|
||||
<path d="M206.842 54.9177C206.924 55.0146 207.076 55.0209 207.18 54.9319C207.285 54.8428 207.303 54.6922 207.221 54.5953C207.138 54.4984 206.987 54.4921 206.882 54.5811C206.777 54.6701 206.759 54.8208 206.842 54.9177Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M210.717 51.3508C210.871 51.5327 211.156 51.5447 211.353 51.3775C211.549 51.2103 211.583 50.9273 211.428 50.7454C211.273 50.5635 210.988 50.5516 210.792 50.7187C210.595 50.8859 210.562 51.1689 210.717 51.3508Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M209.853 53.2926C209.967 53.4272 210.178 53.4361 210.324 53.3123C210.469 53.1885 210.494 52.979 210.379 52.8444C210.265 52.7097 210.054 52.7009 209.909 52.8247C209.763 52.9485 209.738 53.1579 209.853 53.2926Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M209.723 48.9397C209.782 49.0094 209.891 49.0139 209.966 48.9499C210.042 48.8858 210.054 48.7774 209.995 48.7077C209.936 48.638 209.827 48.6335 209.751 48.6975C209.676 48.7616 209.663 48.87 209.723 48.9397Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M212.831 47.023C212.88 47.0809 212.971 47.0847 213.033 47.0315C213.096 46.9783 213.106 46.8882 213.057 46.8304C213.008 46.7725 212.917 46.7687 212.855 46.8219C212.792 46.8751 212.781 46.9652 212.831 47.023Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M216.918 54.1444C217.087 54.3432 217.398 54.3563 217.613 54.1735C217.828 53.9907 217.864 53.6814 217.695 53.4826C217.526 53.2837 217.215 53.2707 217 53.4535C216.785 53.6362 216.748 53.9456 216.918 54.1444Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M215.034 54.4063C215.116 54.5024 215.266 54.5087 215.37 54.4204C215.474 54.3321 215.492 54.1826 215.41 54.0865C215.328 53.9905 215.178 53.9842 215.074 54.0725C214.97 54.1608 214.952 54.3102 215.034 54.4063Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M218.433 53.6788C218.489 53.745 218.593 53.7493 218.664 53.6885C218.736 53.6277 218.748 53.5248 218.692 53.4586C218.635 53.3925 218.532 53.3882 218.461 53.449C218.389 53.5098 218.377 53.6127 218.433 53.6788Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M210.312 58.4784C210.537 58.743 210.951 58.7603 211.237 58.5171C211.522 58.2739 211.571 57.8623 211.346 57.5977C211.121 57.3331 210.707 57.3158 210.421 57.559C210.135 57.8022 210.086 58.2138 210.312 58.4784Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M200.592 69.0196C200.732 69.1837 200.989 69.1945 201.167 69.0436C201.344 68.8927 201.374 68.6372 201.235 68.4731C201.095 68.3089 200.838 68.2981 200.66 68.449C200.483 68.5999 200.453 68.8554 200.592 69.0196Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M204.336 67.547C204.397 67.6191 204.51 67.6238 204.588 67.5576C204.666 67.4914 204.679 67.3793 204.618 67.3072C204.557 67.2352 204.444 67.2304 204.366 67.2967C204.288 67.3629 204.275 67.475 204.336 67.547Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M201.098 63.1074C201.253 63.2905 201.54 63.3025 201.738 63.1342C201.935 62.9659 201.969 62.6811 201.813 62.498C201.658 62.3149 201.371 62.3029 201.173 62.4712C200.976 62.6395 200.942 62.9243 201.098 63.1074Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M197.061 69.9471C197.234 70.151 197.554 70.1644 197.774 69.9769C197.994 69.7895 198.032 69.4722 197.858 69.2682C197.685 69.0643 197.365 69.0509 197.145 69.2384C196.925 69.4258 196.887 69.7431 197.061 69.9471Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M201.755 61.1165C201.817 61.1894 201.931 61.1941 202.01 61.1272C202.089 61.0602 202.102 60.9469 202.04 60.8741C201.978 60.8012 201.864 60.7965 201.785 60.8634C201.707 60.9304 201.693 61.0437 201.755 61.1165Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M239.391 52.6296C239.614 52.8907 240.022 52.9078 240.304 52.6678C240.586 52.4279 240.634 52.0218 240.412 51.7607C240.19 51.4997 239.781 51.4826 239.499 51.7225C239.218 51.9625 239.169 52.3686 239.391 52.6296Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M235.947 67.5756C236.072 67.7229 236.303 67.7325 236.462 67.5972C236.621 67.4618 236.648 67.2327 236.523 67.0855C236.398 66.9382 236.167 66.9286 236.008 67.0639C235.849 67.1993 235.822 67.4284 235.947 67.5756Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M238.6 65.0844C238.665 65.1604 238.784 65.1653 238.866 65.0955C238.948 65.0256 238.962 64.9074 238.897 64.8314C238.833 64.7554 238.714 64.7505 238.632 64.8203C238.55 64.8902 238.536 65.0084 238.6 65.0844Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M240.023 60.4837C240.098 60.5726 240.238 60.5785 240.334 60.4967C240.43 60.4149 240.446 60.2765 240.371 60.1875C240.295 60.0985 240.156 60.0927 240.059 60.1745C239.963 60.2562 239.947 60.3947 240.023 60.4837Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M235.459 64.4158C235.549 64.5213 235.714 64.5282 235.828 64.4312C235.942 64.3342 235.961 64.1701 235.872 64.0646C235.782 63.9591 235.617 63.9522 235.503 64.0491C235.389 64.1461 235.369 64.3103 235.459 64.4158Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M231.007 66.7934C231.09 66.8914 231.244 66.8978 231.35 66.8077C231.456 66.7176 231.474 66.5651 231.39 66.467C231.307 66.369 231.153 66.3626 231.048 66.4527C230.942 66.5428 230.924 66.6953 231.007 66.7934Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M227.3 43.0221C227.347 43.0776 227.434 43.0813 227.494 43.0302C227.554 42.9792 227.564 42.8929 227.517 42.8373C227.47 42.7818 227.383 42.7782 227.323 42.8292C227.263 42.8802 227.253 42.9666 227.3 43.0221Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M223.318 48.4008C223.454 48.5614 223.706 48.5719 223.879 48.4243C224.053 48.2766 224.083 48.0267 223.946 47.8661C223.809 47.7054 223.558 47.6949 223.384 47.8425C223.211 47.9902 223.181 48.2401 223.318 48.4008Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M219.554 48.3246C219.68 48.4719 219.91 48.4815 220.069 48.3462C220.228 48.2108 220.256 47.9817 220.13 47.8345C220.005 47.6872 219.774 47.6776 219.615 47.8129C219.456 47.9483 219.429 48.1774 219.554 48.3246Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M220.788 45.7138C220.836 45.7709 220.926 45.7746 220.987 45.7222C221.049 45.6697 221.059 45.5809 221.011 45.5238C220.962 45.4667 220.873 45.4629 220.811 45.5154C220.75 45.5679 220.739 45.6567 220.788 45.7138Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M217.739 44.5132C217.837 44.6282 218.017 44.6357 218.141 44.5301C218.265 44.4244 218.287 44.2455 218.189 44.1305C218.091 44.0156 217.911 44.008 217.787 44.1137C217.663 44.2194 217.641 44.3982 217.739 44.5132Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M215.859 48.845C216.039 49.0572 216.371 49.0711 216.601 48.8761C216.83 48.681 216.869 48.3509 216.688 48.1386C216.508 47.9264 216.176 47.9125 215.946 48.1076C215.717 48.3026 215.678 48.6328 215.859 48.845Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M236.445 52.9942C236.528 53.0926 236.682 53.099 236.789 53.0086C236.895 52.9181 236.913 52.765 236.829 52.6665C236.746 52.5681 236.592 52.5616 236.485 52.6521C236.379 52.7426 236.361 52.8957 236.445 52.9942Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M232.954 43.6313C233.092 43.7923 233.344 43.8029 233.517 43.6549C233.691 43.5068 233.721 43.2563 233.584 43.0953C233.447 42.9342 233.195 42.9237 233.021 43.0717C232.847 43.2197 232.817 43.4703 232.954 43.6313Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M242.293 49.784C242.394 49.9033 242.581 49.9111 242.71 49.8015C242.839 49.6918 242.861 49.5062 242.759 49.3869C242.658 49.2676 242.471 49.2598 242.342 49.3694C242.213 49.4791 242.191 49.6647 242.293 49.784Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M232.196 50.371C232.368 50.5725 232.683 50.5858 232.901 50.4005C233.119 50.2152 233.156 49.9016 232.985 49.7C232.813 49.4984 232.497 49.4852 232.28 49.6705C232.062 49.8557 232.025 50.1694 232.196 50.371Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M229.511 58.3463C229.654 58.5141 229.916 58.5251 230.097 58.3709C230.278 58.2167 230.309 57.9558 230.167 57.7881C230.024 57.6203 229.761 57.6093 229.58 57.7635C229.399 57.9177 229.368 58.1786 229.511 58.3463Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M230.443 60.4387C230.496 60.5001 230.592 60.5041 230.658 60.4477C230.724 60.3912 230.736 60.2957 230.684 60.2343C230.631 60.1728 230.535 60.1688 230.469 60.2253C230.402 60.2817 230.391 60.3773 230.443 60.4387Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M225.1 53.9232C225.181 54.0181 225.33 54.0243 225.432 53.9371C225.535 53.8499 225.552 53.7023 225.471 53.6074C225.391 53.5125 225.242 53.5062 225.14 53.5935C225.037 53.6807 225.02 53.8283 225.1 53.9232Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M227.146 50.9497C227.236 51.0564 227.404 51.0634 227.519 50.9653C227.634 50.8673 227.654 50.7013 227.563 50.5946C227.472 50.4879 227.305 50.4809 227.19 50.5789C227.075 50.677 227.055 50.843 227.146 50.9497Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M235.27 54.5302C235.33 54.6011 235.441 54.6057 235.517 54.5406C235.594 54.4755 235.607 54.3652 235.547 54.2943C235.486 54.2235 235.375 54.2188 235.299 54.284C235.222 54.3491 235.209 54.4594 235.27 54.5302Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M237 51.3958C237.073 51.482 237.208 51.4876 237.301 51.4084C237.394 51.3291 237.41 51.195 237.337 51.1088C237.264 51.0225 237.129 51.0169 237.036 51.0961C236.942 51.1754 236.926 51.3095 237 51.3958Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M205.554 50.1437C205.62 50.2213 205.741 50.2264 205.825 50.1551C205.908 50.0838 205.923 49.9631 205.857 49.8856C205.791 49.808 205.669 49.8029 205.586 49.8742C205.502 49.9455 205.488 50.0662 205.554 50.1437Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M229.906 46.3039C230.012 46.4279 230.206 46.436 230.34 46.322C230.474 46.208 230.497 46.0151 230.391 45.8911C230.286 45.767 230.092 45.7589 229.958 45.8729C229.824 45.9869 229.801 46.1799 229.906 46.3039Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M205.64 51.5791C205.784 51.7488 206.05 51.76 206.233 51.604C206.417 51.448 206.448 51.184 206.304 51.0143C206.159 50.8446 205.893 50.8335 205.71 50.9894C205.527 51.1454 205.496 51.4094 205.64 51.5791Z" fill="#FEFAD1" fill-opacity="0.7"/>
|
||||
<path d="M227.244 89.1438C230.617 90.3698 230.385 94.6309 229.55 96.5659C228.715 98.501 226.672 100.749 220.902 102.245C218.576 102.848 213.871 103.113 213.871 103.113C213.871 103.113 213.215 99.9989 211.618 96.6318C209.712 92.6134 207.98 90.7007 207.98 90.7007C207.98 90.7007 212.343 91.9898 216.502 91.1648C220.729 90.3262 224.713 88.2239 227.244 89.1438Z" fill="url(#paint0_linear_1911_1723)"/>
|
||||
<path d="M227.244 89.1438C230.617 90.3698 230.385 94.6309 229.55 96.5659C228.715 98.501 226.672 100.749 220.902 102.245C218.576 102.848 213.871 103.113 213.871 103.113C213.871 103.113 213.215 99.9989 211.618 96.6318C209.712 92.6134 207.98 90.7007 207.98 90.7007C207.98 90.7007 212.343 91.9898 216.502 91.1648C220.729 90.3262 224.713 88.2239 227.244 89.1438Z" fill="url(#paint1_linear_1911_1723)"/>
|
||||
<path d="M212.523 91.4153C212.523 91.4153 215.773 94.9818 216.82 96.8109C217.867 98.6399 219.408 102.546 219.408 102.546C218.976 102.658 219.957 102.457 219.408 102.546C216.993 102.937 213.871 103.113 213.871 103.113C213.871 103.113 213.215 99.9989 211.618 96.6318C209.712 92.6134 207.98 90.7007 207.98 90.7007C207.98 90.7007 209.96 91.2857 212.523 91.4153Z" fill="#007156"/>
|
||||
<path d="M212.523 91.4153C212.523 91.4153 215.773 94.9818 216.82 96.8109C217.867 98.6399 219.408 102.546 219.408 102.546C218.976 102.658 219.957 102.457 219.408 102.546C216.993 102.937 213.871 103.113 213.871 103.113C213.871 103.113 213.215 99.9989 211.618 96.6318C209.712 92.6134 207.98 90.7007 207.98 90.7007C207.98 90.7007 209.96 91.2857 212.523 91.4153Z" fill="#007156"/>
|
||||
<path d="M149.066 134.991L151.066 115.663C152.567 115.985 153.553 115.164 155.731 115.663C158.064 116.199 161.112 117.046 161.729 117.663C163.062 118.996 167.061 114.997 168.394 112.998L181.723 116.33C181.723 116.996 178.39 124.327 172.392 128.992C168.66 131.125 162.395 129.881 159.73 128.992C158.13 132.191 151.954 134.324 149.066 134.991Z" fill="url(#paint2_linear_1911_1723)"/>
|
||||
<path d="M168.395 112.998L181.724 116.33C181.724 116.741 180.452 119.696 178.066 122.994C178.066 122.994 173.904 121.257 171.727 119.662C169.55 118.067 166.917 114.824 166.917 114.824C167.526 114.166 168.05 113.515 168.395 112.998Z" fill="#007156"/>
|
||||
<circle cx="186.389" cy="91.0094" r="30.6568" fill="url(#paint3_linear_1911_1723)"/>
|
||||
<path d="M162.512 110.377L164.394 112.377C164.394 112.377 164.832 109.061 166.393 107.712C166.393 107.712 167.511 106.234 168.392 104.999C170.467 102.092 174.175 99.9043 174.175 99.9043C171.058 101.667 167.655 100.641 164.394 104.333C163.019 105.888 162.512 108.378 162.512 110.377Z" fill="#007156"/>
|
||||
<path d="M160.282 116.899C159.049 120.63 155.6 120.946 152.925 119.597C150.25 118.248 149.916 114.875 150.918 108.804C151.921 102.734 157.384 95.9883 158.944 94.6392C163.626 90.592 167.024 90.592 169.646 89.9175C169.646 89.9175 172.99 88.8139 175.665 91.2666C178.341 93.7192 176.334 98.0119 176.334 98.0119C173.659 101.385 169.809 100.705 165.633 105.432C162.305 109.199 161.62 112.852 160.282 116.899Z" fill="url(#paint4_linear_1911_1723)"/>
|
||||
<rect x="187.721" y="90.4106" width="19.3367" height="19.9525" rx="2" transform="rotate(-46.6569 187.721 90.4106)" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M190.978 86.9596L194.915 82.7878C195.355 82.6998 195.817 82.6528 196.294 82.6528C199.238 82.6528 201.625 84.4431 201.625 86.6516C201.625 88.86 199.238 90.6503 196.294 90.6503C193.487 90.6503 191.187 89.0241 190.978 86.9596Z" fill="white"/>
|
||||
<path d="M217.044 139.001C213.712 139.668 202.382 141.667 196.384 143C196.068 141.102 194.762 134.489 191.719 128.338L185.133 118.459C184.557 117.651 184.067 116.932 183.722 116.342H201.049C205.048 121.673 207.492 125.894 208.38 130.337C211.046 130.87 215.934 137.002 217.044 139.001Z" fill="url(#paint5_linear_1911_1723)"/>
|
||||
<path d="M236.312 114.415L217.361 71.6266L246.56 72.8268L236.312 114.415Z" fill="#FFDE95"/>
|
||||
<path d="M254.819 40.6543L273.214 85.6562L246.558 72.8268L254.819 40.6543Z" fill="#FFB430"/>
|
||||
<path d="M236.308 114.425L246.559 72.8268L273.215 85.6543L236.308 114.425Z" fill="#FFC557"/>
|
||||
<path d="M254.626 40.9201L246.559 72.8264L217.164 71.9049L254.626 40.9201Z" fill="#FFC557"/>
|
||||
<path d="M107.294 78.8317L114.298 71.3881C115.699 69.4668 117.959 68.6759 119.7 69.3319C122.184 70.2623 122.348 73.6584 122.357 73.9562C122.437 76.2823 121.059 77.9617 118.589 80.8926C116.915 82.8676 115.048 84.6708 113.014 86.2753" fill="url(#paint6_linear_1911_1723)"/>
|
||||
<path opacity="0.69" d="M112.179 74.1441C111.398 78.6164 110.62 83.0903 109.845 87.5658C112.559 86.564 114.987 84.9176 116.919 82.7693C116.367 80.4987 116.054 78.1772 115.985 75.8421C115.931 73.7576 116.069 71.6725 116.396 69.6128C115.796 69.9098 115.232 70.2734 114.715 70.6968C113.603 71.6249 112.733 72.8078 112.179 74.1441Z" fill="#C52600" fill-opacity="0.7"/>
|
||||
<path d="M86.9453 93.721C86.2013 96.3634 85.4604 98.9997 84.7227 101.63C83.9673 102.696 82.918 103.522 81.7016 104.007C80.1 104.607 78.7039 104.328 75.8183 103.542C66.8859 101.076 65.7932 99.7595 65.3263 99.1082C64.4636 97.9708 64.0156 96.5743 64.0563 95.1492C64.0563 94.684 64.1823 92.9626 65.4851 91.8228C66.9185 90.5714 69.2906 90.497 71.3684 91.6647L80.2681 94.991" fill="url(#paint7_linear_1911_1723)"/>
|
||||
<path opacity="0.69" d="M74.3105 92.7095C74.6468 93.4035 75.0653 94.0548 75.5573 94.6495C78.1581 97.7944 81.3892 97.5385 82.5612 99.9204C82.9114 100.618 83.1869 101.753 82.6453 103.572C83.0926 103.291 83.5089 102.964 83.8873 102.595C84.1858 102.308 84.4606 101.997 84.7091 101.665L85.9278 97.3478C85.7501 96.0229 85.1978 94.7756 84.3356 93.7516C82.155 91.1929 78.9052 91.2719 78.4289 91.2952C76.9487 91.3652 75.5197 91.856 74.3105 92.7095Z" fill="#C52600" fill-opacity="0.7"/>
|
||||
<path d="M113.172 29.9153C111.043 26.526 108.169 23.6627 104.767 21.5413C99.4675 18.4522 94.4714 18.3545 91.7118 18.3545C87.8363 18.3545 81.8642 20.3689 76.9334 24.0581C71.3302 28.2451 70.5785 36.1539 70.2329 38.0706C69.3411 53.6975 68.4446 65.6025 67.5527 81.2294C68.2531 83.9975 70.1069 89.4871 75.1824 93.5811C79.0066 96.6655 82.9942 97.6378 86.6269 98.4938C90.3556 99.4809 94.2314 99.796 98.0714 99.4243C101.956 99.0102 108.928 98.2659 112.546 92.9111C113.706 91.1548 114.416 89.1422 114.615 87.0493L116.996 49.9943C117.44 47.2448 118.523 38.3079 113.172 29.9153Z" fill="url(#paint8_linear_1911_1723)"/>
|
||||
<path opacity="0.6" d="M98.4408 86.4429C101.09 85.775 103.872 85.841 106.486 86.6336C108.435 87.1331 110.2 88.1756 111.576 89.6389C112.194 90.3352 112.706 91.1191 113.093 91.9651C112.738 92.528 112.197 93.3607 111.487 94.3377C109.857 96.5754 108.788 97.5943 108.274 98.2502C105.099 102.321 109.974 109.644 107.92 111.007C106.691 111.821 103.25 110.225 102.354 107.838C101.378 105.275 103.754 102.944 102.512 99.2877C102.291 98.615 101.976 97.9763 101.579 97.3896L93.7715 95.3426" fill="#C52600" fill-opacity="0.7"/>
|
||||
<path d="M98.7081 85.6582C101.218 85.9714 103.677 86.6111 106.02 87.561C108.318 88.4914 109.756 89.0962 111.11 90.5663C112.476 92.1316 113.358 94.0577 113.65 96.1118C113.963 97.8238 113.65 98.0611 113.015 103.714C112.548 108.101 112.604 109.091 111.586 110.227C110.49 111.323 109.007 111.948 107.454 111.967C104.124 112.013 102.173 109.222 101.911 108.743C101.79 108.514 101.693 108.274 101.622 108.026C101.52 107.663 101.481 107.286 101.505 106.91C101.794 104.202 101.972 102.118 102.075 101.076C102.1 100.8 102.091 100.521 102.047 100.248C101.93 99.5368 101.606 98.8763 101.113 98.3495L93.3057 96.2699" fill="url(#paint9_linear_1911_1723)"/>
|
||||
<path opacity="0.69" d="M108.291 58.4441C108.174 60.4539 108.006 62.0496 107.917 62.8916C107.333 63.0638 106.834 63.1801 106.456 63.2545C105.533 63.4435 104.595 63.5478 103.654 63.5662C103.24 63.5662 102.81 63.5569 102.365 63.5383C98.2329 63.2778 95.3613 61.4401 92.9846 59.8956C90.5787 58.3463 88.4326 56.4294 86.625 54.2152C87.8309 51.4537 89.4388 48.8844 91.397 46.5902C93.8998 43.6779 98.429 38.3883 104.051 38.1697C104.441 38.1312 104.835 38.1406 105.223 38.1976C109.425 39.4723 108.58 53.7826 108.291 58.4441Z" fill="#C52600" fill-opacity="0.7"/>
|
||||
<path d="M120.461 50.7355C119.159 54.462 116.677 57.6656 113.387 59.8632C113.107 60.0446 112.818 60.2214 112.514 60.3935C110.918 61.3109 109.184 61.9645 107.378 62.3288C106.028 62.6022 104.648 62.6976 103.274 62.6126C99.1412 62.3521 96.2696 60.5145 93.8929 58.9699C91.4953 57.4187 89.3572 55.5019 87.5566 53.2896C88.7625 50.528 90.3705 47.9587 92.3287 45.6646C94.8314 42.7523 99.3607 37.4627 104.983 37.244C105.373 37.2279 105.765 37.2372 106.155 37.2719C110.282 37.6395 113.21 40.7006 115.535 43.1337C115.587 43.1896 115.643 43.2454 115.689 43.3012C117.718 45.4715 119.335 47.9903 120.461 50.7355Z" fill="white" stroke="#FFFEF4" stroke-miterlimit="10"/>
|
||||
<path d="M116.305 48.8374C116.305 53.3407 115.157 57.3417 113.387 59.8632C113.107 60.0446 112.817 60.2214 112.514 60.3935C110.918 61.3109 109.184 61.9645 107.378 62.3288C104.081 60.9844 101.606 55.4529 101.606 48.8374C101.606 43.9805 102.942 39.7051 104.959 37.244C105.35 37.2279 105.741 37.2372 106.131 37.2719C110.259 37.6395 113.186 40.7006 115.512 43.1337C115.563 43.1896 115.619 43.2454 115.666 43.3012C116.09 45.1163 116.304 46.9738 116.305 48.8374Z" fill="black" stroke="black" stroke-miterlimit="10"/>
|
||||
<path d="M27.251 96.2319L56.0924 65.2733L69.0718 89.4488L27.251 96.2319Z" fill="#FFDE95"/>
|
||||
<path d="M95.17 85.4044L64.291 116.688L69.0778 89.4422L95.17 85.4044Z" fill="#FFB430"/>
|
||||
<path d="M27.2513 96.2274L69.0716 89.4443L64.2853 116.69L27.2513 96.2274Z" fill="#FFC557"/>
|
||||
<path d="M94.8679 85.3457L68.7762 89.3835L55.7962 65.2082L94.8679 85.3457Z" fill="#FFC557"/>
|
||||
<path opacity="0.69" d="M77.8475 64.6977C73.5413 63.7019 69.0263 63.7732 64.7596 64.9044C63.806 65.3172 62.9727 65.9338 62.3288 66.7029C61.6448 67.5348 61.1975 68.5114 61.0277 69.5437C60.6559 72.622 64.1161 74.0379 66.3944 79.2182C66.7781 80.0762 67.0966 80.9578 67.3476 81.8567L67.8242 83C68.6351 82.7498 69.3758 82.3368 69.9928 81.7907C70.4465 81.3781 70.8261 80.9017 71.1176 80.3791C72.2472 78.3739 71.213 77.4504 72.1519 76.1092C72.6285 75.4231 73.5818 74.9834 75.4358 74.1479C76.2707 73.776 77.1267 73.4457 78 73.1584L77.8475 64.6977Z" fill="#C52600" fill-opacity="0.7"/>
|
||||
<path d="M78.8597 62.9303C76.3762 62.2366 73.7973 61.9275 71.2163 62.0143C69.1925 62.0759 67.1844 62.3836 65.2382 62.9303C65.1884 62.943 65.1399 62.9599 65.0931 62.9807C64.1386 63.4315 63.3118 64.105 62.6854 64.9419C62.059 65.7789 61.6521 66.7537 61.5007 67.7807C60.9662 70.3996 60.8588 73.0848 61.1826 75.7365C61.5381 78.5671 62.2023 79.6709 62.9367 80.4129C63.7428 81.2443 64.8067 81.7917 65.9632 81.9702C66.0942 81.9702 68.7698 82.3274 70.262 80.5686C70.9309 79.7717 71.0432 78.9198 71.1976 77.6053C71.3389 76.5196 71.3389 75.4207 71.1976 74.335C71.1813 74.2149 71.1904 74.0928 71.2243 73.9763C71.2582 73.8598 71.3163 73.7514 71.3948 73.6577C71.4733 73.5641 71.5706 73.4873 71.6808 73.432C71.7909 73.3768 71.9114 73.3443 72.0349 73.3365L79 72.9289" fill="url(#paint10_linear_1911_1723)"/>
|
||||
<g opacity="0.2" filter="url(#filter1_f_1911_1723)">
|
||||
<path d="M232.864 110.612L218.932 95.2787C217.232 93.4069 216.516 90.841 217.003 88.3591L222.998 57.7936C223.474 55.3647 225.048 53.2931 227.261 52.183L246.319 42.6198C249.527 41.0102 253.414 41.7339 255.828 44.39L269.603 59.549C271.304 61.4209 272.019 63.987 271.533 66.469L265.529 97.078C265.057 99.482 263.51 101.537 261.33 102.656L242.437 112.35C239.22 114 235.296 113.288 232.864 110.612Z" fill="#F6F95C"/>
|
||||
</g>
|
||||
<g opacity="0.2" filter="url(#filter2_f_1911_1723)">
|
||||
<path d="M26.6008 90.7407L35.8585 72.3312C36.9948 70.0717 39.1326 68.4825 41.6237 68.0456L72.1648 62.6894C74.6028 62.2618 77.1014 62.9868 78.9318 64.6529L94.6177 78.9306C97.2718 81.3464 97.9923 85.2341 96.38 88.4406L87.228 106.642C86.0918 108.902 83.9539 110.491 81.4626 110.928L50.8778 116.292C48.4647 116.715 45.9908 116.009 44.1643 114.376L28.4164 100.299C25.7206 97.8895 24.9763 93.971 26.6008 90.7407Z" fill="#F6F95C"/>
|
||||
</g>
|
||||
<path d="M226.182 65.6616C226.316 65.7111 226.468 65.6342 226.521 65.4898C226.575 65.3453 226.51 65.1881 226.376 65.1385C226.242 65.089 226.09 65.1659 226.037 65.3103C225.983 65.4548 226.048 65.612 226.182 65.6616Z" fill="#FEFAD1"/>
|
||||
<path d="M228.018 60.0487C228.269 60.1417 228.554 59.9973 228.655 59.726C228.755 59.4548 228.633 59.1595 228.382 59.0664C228.13 58.9734 227.845 59.1178 227.745 59.3891C227.644 59.6603 227.767 59.9556 228.018 60.0487Z" fill="#FEFAD1"/>
|
||||
<path d="M228.236 62.4187C228.422 62.4876 228.633 62.3807 228.708 62.1799C228.782 61.9791 228.692 61.7605 228.506 61.6916C228.32 61.6227 228.109 61.7297 228.034 61.9305C227.96 62.1312 228.05 62.3499 228.236 62.4187Z" fill="#FEFAD1"/>
|
||||
<path d="M225.725 58.2353C225.822 58.271 225.931 58.2156 225.969 58.1117C226.008 58.0078 225.961 57.8946 225.865 57.859C225.768 57.8233 225.659 57.8787 225.621 57.9826C225.582 58.0865 225.629 58.1997 225.725 58.2353Z" fill="#FEFAD1"/>
|
||||
<path d="M227.715 54.6562C227.795 54.6858 227.886 54.6398 227.918 54.5535C227.95 54.4672 227.911 54.3732 227.831 54.3436C227.751 54.314 227.661 54.36 227.629 54.4463C227.597 54.5326 227.636 54.6266 227.715 54.6562Z" fill="#FEFAD1"/>
|
||||
<path d="M235.614 59.3799C235.889 59.4816 236.2 59.3237 236.31 59.0272C236.42 58.7307 236.286 58.4079 236.012 58.3062C235.737 58.2045 235.426 58.3624 235.316 58.6589C235.206 58.9554 235.34 59.2782 235.614 59.3799Z" fill="#FEFAD1"/>
|
||||
<path d="M233.916 60.6688C234.049 60.7179 234.199 60.6417 234.253 60.4984C234.306 60.3551 234.241 60.1992 234.108 60.15C233.976 60.1009 233.825 60.1772 233.772 60.3204C233.719 60.4637 233.784 60.6197 233.916 60.6688Z" fill="#FEFAD1"/>
|
||||
<path d="M236.841 58.0938C236.932 58.1276 237.036 58.0751 237.072 57.9764C237.109 57.8778 237.064 57.7704 236.973 57.7366C236.882 57.7027 236.778 57.7553 236.741 57.8539C236.705 57.9525 236.749 58.0599 236.841 58.0938Z" fill="#FEFAD1"/>
|
||||
<path d="M231.532 67.2446C231.897 67.38 232.312 67.1698 232.458 66.7753C232.604 66.3808 232.426 65.9512 232.061 65.8159C231.696 65.6805 231.281 65.8906 231.135 66.2852C230.989 66.6797 231.166 67.1093 231.532 67.2446Z" fill="#FEFAD1"/>
|
||||
<path d="M227.802 82.8853C228.029 82.9693 228.286 82.839 228.377 82.5941C228.467 82.3493 228.357 82.0827 228.13 81.9988C227.904 81.9148 227.646 82.0452 227.556 82.29C227.465 82.5348 227.575 82.8014 227.802 82.8853Z" fill="#FEFAD1"/>
|
||||
<path d="M230.658 79.3948C230.758 79.4316 230.871 79.3744 230.91 79.267C230.95 79.1595 230.902 79.0426 230.802 79.0057C230.703 78.9688 230.59 79.0261 230.55 79.1335C230.51 79.241 230.559 79.3579 230.658 79.3948Z" fill="#FEFAD1"/>
|
||||
<path d="M225.055 76.8238C225.308 76.9174 225.595 76.772 225.696 76.499C225.797 76.226 225.674 75.9288 225.422 75.8351C225.169 75.7414 224.882 75.8868 224.781 76.1599C224.68 76.4329 224.803 76.7301 225.055 76.8238Z" fill="#FEFAD1"/>
|
||||
<path d="M224.857 85.7312C225.139 85.8355 225.458 85.6735 225.571 85.3694C225.684 85.0653 225.547 84.7342 225.265 84.6298C224.983 84.5255 224.664 84.6875 224.551 84.9916C224.438 85.2957 224.575 85.6268 224.857 85.7312Z" fill="#FEFAD1"/>
|
||||
<path d="M224.607 74.516C224.707 74.5532 224.822 74.4954 224.862 74.3868C224.902 74.2782 224.853 74.1599 224.752 74.1226C224.652 74.0854 224.538 74.1432 224.497 74.2518C224.457 74.3605 224.506 74.4787 224.607 74.516Z" fill="#FEFAD1"/>
|
||||
<path d="M256.771 45.5782C257.132 45.7117 257.541 45.5044 257.685 45.1151C257.829 44.7259 257.654 44.3021 257.293 44.1685C256.933 44.035 256.524 44.2423 256.38 44.6316C256.235 45.0208 256.411 45.4446 256.771 45.5782Z" fill="#FEFAD1"/>
|
||||
<path d="M261.598 62.0883C261.801 62.1636 262.032 62.0467 262.114 61.8271C262.195 61.6075 262.096 61.3685 261.893 61.2931C261.689 61.2178 261.458 61.3347 261.377 61.5543C261.296 61.7739 261.395 62.013 261.598 62.0883Z" fill="#FEFAD1"/>
|
||||
<path d="M262.823 58.1931C262.928 58.232 263.047 58.1716 263.089 58.0583C263.131 57.945 263.08 57.8217 262.975 57.7828C262.87 57.7439 262.751 57.8043 262.709 57.9176C262.667 58.0309 262.718 58.1542 262.823 58.1931Z" fill="#FEFAD1"/>
|
||||
<path d="M261.694 52.9145C261.817 52.96 261.956 52.8893 262.005 52.7566C262.055 52.6239 261.995 52.4795 261.872 52.434C261.749 52.3885 261.61 52.4591 261.56 52.5918C261.511 52.7245 261.571 52.869 261.694 52.9145Z" fill="#FEFAD1"/>
|
||||
<path d="M259.386 59.2666C259.531 59.3206 259.697 59.2368 259.755 59.0795C259.813 58.9221 259.743 58.7508 259.597 58.6968C259.451 58.6429 259.286 58.7267 259.227 58.884C259.169 59.0414 259.24 59.2127 259.386 59.2666Z" fill="#FEFAD1"/>
|
||||
<path d="M256.332 64.0289C256.468 64.079 256.621 64.0012 256.675 63.855C256.73 63.7088 256.664 63.5496 256.528 63.4995C256.393 63.4493 256.239 63.5272 256.185 63.6734C256.131 63.8196 256.197 63.9787 256.332 64.0289Z" fill="#FEFAD1"/>
|
||||
<path d="M239.673 42.8092C239.75 42.8376 239.837 42.7935 239.868 42.7107C239.898 42.628 239.861 42.5378 239.784 42.5094C239.708 42.481 239.621 42.5251 239.59 42.6079C239.559 42.6907 239.597 42.7808 239.673 42.8092Z" fill="#FEFAD1"/>
|
||||
<path d="M238.729 50.2589C238.951 50.3411 239.202 50.2135 239.291 49.974C239.38 49.7344 239.272 49.4736 239.05 49.3915C238.828 49.3093 238.577 49.4369 238.488 49.6764C238.399 49.9159 238.507 50.1767 238.729 50.2589Z" fill="#FEFAD1"/>
|
||||
<path d="M235.003 52.2392C235.207 52.3145 235.437 52.1976 235.519 51.978C235.6 51.7584 235.501 51.5193 235.298 51.444C235.095 51.3687 234.864 51.4856 234.782 51.7052C234.701 51.9248 234.8 52.1638 235.003 52.2392Z" fill="#FEFAD1"/>
|
||||
<path d="M234.778 49.0076C234.856 49.0369 234.946 48.9915 234.977 48.9064C235.009 48.8213 234.971 48.7286 234.892 48.6994C234.813 48.6702 234.723 48.7155 234.692 48.8006C234.66 48.8858 234.699 48.9784 234.778 49.0076Z" fill="#FEFAD1"/>
|
||||
<path d="M231.138 49.5076C231.296 49.5664 231.477 49.4751 231.54 49.3037C231.604 49.1322 231.526 48.9456 231.368 48.8868C231.209 48.8279 231.029 48.9192 230.965 49.0907C230.902 49.2621 230.979 49.4488 231.138 49.5076Z" fill="#FEFAD1"/>
|
||||
<path d="M231.672 54.7751C231.965 54.8837 232.297 54.7152 232.414 54.3987C232.532 54.0823 232.389 53.7377 232.096 53.6292C231.803 53.5206 231.47 53.6892 231.353 54.0056C231.236 54.3221 231.379 54.6666 231.672 54.7751Z" fill="#FEFAD1"/>
|
||||
<path d="M254.089 47.5543C254.225 47.6047 254.38 47.5265 254.434 47.3798C254.488 47.233 254.422 47.0732 254.286 47.0228C254.15 46.9725 253.996 47.0506 253.942 47.1974C253.887 47.3442 253.953 47.504 254.089 47.5543Z" fill="#FEFAD1"/>
|
||||
<path d="M245.542 40.3078C245.765 40.3902 246.017 40.2623 246.106 40.0222C246.195 39.782 246.087 39.5206 245.865 39.4382C245.642 39.3558 245.39 39.4837 245.301 39.7239C245.212 39.964 245.32 40.2254 245.542 40.3078Z" fill="#FEFAD1"/>
|
||||
<path d="M258.05 41.2069C258.215 41.2679 258.402 41.1732 258.468 40.9953C258.533 40.8174 258.453 40.6237 258.289 40.5626C258.124 40.5016 257.937 40.5964 257.871 40.7743C257.805 40.9522 257.885 41.1458 258.05 41.2069Z" fill="#FEFAD1"/>
|
||||
<path d="M248.492 47.3119C248.771 47.415 249.087 47.2549 249.198 46.9543C249.309 46.6537 249.174 46.3265 248.896 46.2233C248.617 46.1202 248.301 46.2803 248.19 46.5809C248.079 46.8815 248.214 47.2088 248.492 47.3119Z" fill="#FEFAD1"/>
|
||||
<path d="M250.24 56.5889C250.472 56.6747 250.735 56.5415 250.827 56.2914C250.92 56.0413 250.807 55.769 250.576 55.6832C250.344 55.5974 250.081 55.7306 249.989 55.9807C249.896 56.2308 250.009 56.5031 250.24 56.5889Z" fill="#FEFAD1"/>
|
||||
<path d="M252.297 58.1234C252.382 58.1548 252.478 58.1061 252.512 58.0145C252.546 57.9229 252.505 57.8232 252.42 57.7917C252.335 57.7603 252.239 57.8091 252.205 57.9007C252.171 57.9923 252.212 58.092 252.297 58.1234Z" fill="#FEFAD1"/>
|
||||
<path d="M243.501 54.6813C243.632 54.7299 243.78 54.6545 243.833 54.513C243.885 54.3715 243.821 54.2175 243.69 54.1689C243.559 54.1204 243.411 54.1958 243.358 54.3373C243.306 54.4787 243.37 54.6328 243.501 54.6813Z" fill="#FEFAD1"/>
|
||||
<path d="M243.869 50.6482C244.016 50.7027 244.183 50.618 244.242 50.4589C244.301 50.2998 244.23 50.1266 244.082 50.072C243.935 50.0174 243.768 50.1021 243.709 50.2612C243.65 50.4203 243.721 50.5936 243.869 50.6482Z" fill="#FEFAD1"/>
|
||||
<path d="M253.779 49.6978C253.876 49.7341 253.988 49.6778 254.027 49.5721C254.066 49.4665 254.018 49.3514 253.92 49.3151C253.822 49.2789 253.711 49.3352 253.672 49.4409C253.633 49.5465 253.681 49.6616 253.779 49.6978Z" fill="#FEFAD1"/>
|
||||
<path d="M253.756 45.6876C253.875 45.7317 254.01 45.6632 254.058 45.5346C254.105 45.406 254.048 45.2661 253.928 45.2219C253.809 45.1778 253.674 45.2463 253.627 45.3749C253.579 45.5035 253.637 45.6435 253.756 45.6876Z" fill="#FEFAD1"/>
|
||||
<path d="M222.305 61.6997C222.413 61.7393 222.534 61.6777 222.577 61.5621C222.62 61.4464 222.568 61.3205 222.461 61.2808C222.353 61.2412 222.232 61.3027 222.189 61.4184C222.146 61.5341 222.198 61.66 222.305 61.6997Z" fill="#FEFAD1"/>
|
||||
<path d="M244.02 44.5844C244.191 44.6478 244.386 44.5494 244.454 44.3644C244.523 44.1795 244.439 43.9781 244.268 43.9147C244.097 43.8512 243.902 43.9497 243.834 44.1347C243.765 44.3196 243.849 44.521 244.02 44.5844Z" fill="#FEFAD1"/>
|
||||
<path d="M223.18 63.0579C223.414 63.1447 223.68 63.01 223.774 62.7569C223.867 62.5039 223.753 62.2284 223.519 62.1416C223.285 62.0547 223.019 62.1895 222.925 62.4426C222.831 62.6956 222.945 62.9711 223.18 63.0579Z" fill="#FEFAD1"/>
|
||||
<path d="M61.1287 84.5327C61.0584 84.6529 60.8963 84.6887 60.7666 84.6129C60.6369 84.537 60.5887 84.3782 60.6589 84.258C60.7292 84.1379 60.8913 84.102 61.021 84.1779C61.1507 84.2537 61.1989 84.4126 61.1287 84.5327Z" fill="#FEFAD1"/>
|
||||
<path d="M56.2644 81.4468C56.1325 81.6724 55.828 81.7398 55.5844 81.5974C55.3408 81.4549 55.2503 81.1565 55.3822 80.9309C55.5141 80.7053 55.8186 80.6379 56.0622 80.7804C56.3058 80.9229 56.3963 81.2212 56.2644 81.4468Z" fill="#FEFAD1"/>
|
||||
<path d="M57.57 83.3625C57.4723 83.5295 57.2469 83.5794 57.0666 83.4739C56.8863 83.3685 56.8193 83.1476 56.9169 82.9806C57.0146 82.8136 57.2399 82.7637 57.4203 82.8692C57.6006 82.9746 57.6676 83.1955 57.57 83.3625Z" fill="#FEFAD1"/>
|
||||
<path d="M56.8754 78.6549C56.8248 78.7414 56.7082 78.7672 56.6149 78.7126C56.5215 78.658 56.4868 78.5437 56.5374 78.4573C56.5879 78.3708 56.7046 78.345 56.7979 78.3996C56.8912 78.4542 56.9259 78.5685 56.8754 78.6549Z" fill="#FEFAD1"/>
|
||||
<path d="M53.1607 77.1833C53.1188 77.255 53.0219 77.2765 52.9444 77.2312C52.8669 77.1858 52.8381 77.0909 52.8801 77.0191C52.922 76.9474 53.0189 76.9259 53.0964 76.9712C53.1739 77.0166 53.2027 77.1115 53.1607 77.1833Z" fill="#FEFAD1"/>
|
||||
<path d="M50.1202 85.6442C49.976 85.8908 49.6432 85.9645 49.3769 85.8088C49.1106 85.653 49.0117 85.3269 49.1559 85.0803C49.3001 84.8337 49.6329 84.76 49.8991 84.9157C50.1654 85.0714 50.2644 85.3976 50.1202 85.6442Z" fill="#FEFAD1"/>
|
||||
<path d="M52.2021 85.5541C52.1324 85.6733 51.9716 85.7089 51.8429 85.6336C51.7143 85.5584 51.6665 85.4008 51.7361 85.2817C51.8058 85.1625 51.9666 85.1269 52.0953 85.2021C52.2239 85.2774 52.2717 85.435 52.2021 85.5541Z" fill="#FEFAD1"/>
|
||||
<path d="M48.3999 85.4289C48.352 85.5109 48.2413 85.5355 48.1527 85.4837C48.0641 85.4319 48.0312 85.3234 48.0792 85.2413C48.1271 85.1593 48.2378 85.1348 48.3264 85.1866C48.415 85.2384 48.4479 85.3469 48.3999 85.4289Z" fill="#FEFAD1"/>
|
||||
<path d="M58.0656 89.0472C57.8737 89.3753 57.4309 89.4734 57.0765 89.2662C56.7222 89.0589 56.5905 88.625 56.7824 88.2968C56.9743 87.9687 57.4171 87.8706 57.7715 88.0778C58.1258 88.285 58.2575 88.719 58.0656 89.0472Z" fill="#FEFAD1"/>
|
||||
<path d="M70.5562 98.5394C70.4371 98.743 70.1624 98.8039 69.9425 98.6753C69.7226 98.5467 69.6409 98.2774 69.76 98.0738C69.8791 97.8702 70.1538 97.8093 70.3737 97.9379C70.5936 98.0665 70.6753 98.3358 70.5562 98.5394Z" fill="#FEFAD1"/>
|
||||
<path d="M66.246 97.6684C66.1938 97.7577 66.0732 97.7844 65.9767 97.728C65.8802 97.6716 65.8443 97.5534 65.8966 97.464C65.9489 97.3747 66.0694 97.348 66.1659 97.4044C66.2624 97.4608 66.2983 97.579 66.246 97.6684Z" fill="#FEFAD1"/>
|
||||
<path d="M68.8789 92.2658C68.7461 92.4929 68.4397 92.5607 68.1945 92.4174C67.9494 92.274 67.8582 91.9737 67.991 91.7466C68.1238 91.5195 68.4302 91.4517 68.6754 91.5951C68.9206 91.7384 69.0117 92.0388 68.8789 92.2658Z" fill="#FEFAD1"/>
|
||||
<path d="M74.5377 98.8641C74.3898 99.117 74.0484 99.1926 73.7753 99.0329C73.5022 98.8732 73.4006 98.5386 73.5486 98.2856C73.6965 98.0327 74.0378 97.9571 74.311 98.1168C74.5841 98.2766 74.6856 98.6111 74.5377 98.8641Z" fill="#FEFAD1"/>
|
||||
<path d="M67.7947 90.2412C67.7419 90.3316 67.62 90.3586 67.5224 90.3015C67.4249 90.2445 67.3886 90.125 67.4415 90.0347C67.4943 89.9443 67.6162 89.9173 67.7137 89.9744C67.8113 90.0314 67.8475 90.1509 67.7947 90.2412Z" fill="#FEFAD1"/>
|
||||
<path d="M25.6214 88.3197C25.4321 88.6434 24.9952 88.7402 24.6456 88.5357C24.296 88.3313 24.1661 87.9031 24.3554 87.5794C24.5448 87.2556 24.9816 87.1589 25.3312 87.3633C25.6808 87.5678 25.8107 87.9959 25.6214 88.3197Z" fill="#FEFAD1"/>
|
||||
<path d="M32.1946 103.763C32.0878 103.946 31.8413 104 31.6441 103.885C31.4469 103.77 31.3736 103.528 31.4804 103.345C31.5872 103.163 31.8337 103.108 32.0309 103.223C32.2281 103.339 32.3014 103.58 32.1946 103.763Z" fill="#FEFAD1"/>
|
||||
<path d="M28.8635 101.574C28.8084 101.668 28.6812 101.697 28.5794 101.637C28.4776 101.578 28.4398 101.453 28.4949 101.359C28.5501 101.264 28.6772 101.236 28.779 101.296C28.8808 101.355 28.9186 101.48 28.8635 101.574Z" fill="#FEFAD1"/>
|
||||
<path d="M26.4504 96.8926C26.3859 97.003 26.237 97.0359 26.1178 96.9662C25.9986 96.8965 25.9544 96.7506 26.0189 96.6402C26.0834 96.5299 26.2323 96.4969 26.3515 96.5666C26.4707 96.6363 26.515 96.7822 26.4504 96.8926Z" fill="#FEFAD1"/>
|
||||
<path d="M32.1173 100.264C32.0408 100.395 31.8642 100.434 31.7229 100.351C31.5816 100.268 31.5291 100.095 31.6056 99.9645C31.6821 99.8336 31.8587 99.7945 32 99.8772C32.1413 99.9598 32.1938 100.133 32.1173 100.264Z" fill="#FEFAD1"/>
|
||||
<path d="M37.3721 101.958C37.301 102.08 37.1369 102.116 37.0057 102.039C36.8744 101.962 36.8256 101.802 36.8967 101.68C36.9678 101.559 37.1318 101.522 37.2631 101.599C37.3944 101.676 37.4432 101.837 37.3721 101.958Z" fill="#FEFAD1"/>
|
||||
<path d="M36.8057 75.6542C36.7654 75.723 36.6725 75.7436 36.5982 75.7001C36.5238 75.6567 36.4962 75.5656 36.5365 75.4967C36.5767 75.4279 36.6696 75.4073 36.744 75.4508C36.8183 75.4943 36.846 75.5853 36.8057 75.6542Z" fill="#FEFAD1"/>
|
||||
<path d="M42.1296 80.685C42.0131 80.8842 41.7443 80.9438 41.5291 80.8179C41.314 80.6921 41.234 80.4286 41.3506 80.2294C41.4671 80.0302 41.7359 79.9706 41.9511 80.0964C42.1662 80.2222 42.2461 80.4858 42.1296 80.685Z" fill="#FEFAD1"/>
|
||||
<path d="M46.1663 79.8728C46.0595 80.0554 45.813 80.11 45.6158 79.9947C45.4186 79.8794 45.3453 79.6378 45.4521 79.4552C45.5589 79.2726 45.8054 79.218 46.0026 79.3333C46.1998 79.4486 46.2731 79.6902 46.1663 79.8728Z" fill="#FEFAD1"/>
|
||||
<path d="M44.3357 77.2979C44.2943 77.3687 44.1987 77.3899 44.1223 77.3452C44.0458 77.3005 44.0174 77.2068 44.0588 77.136C44.1002 77.0652 44.1958 77.0441 44.2722 77.0888C44.3487 77.1335 44.3771 77.2271 44.3357 77.2979Z" fill="#FEFAD1"/>
|
||||
<path d="M47.3919 75.4202C47.3085 75.5628 47.1161 75.6054 46.9622 75.5153C46.8082 75.4253 46.751 75.2367 46.8344 75.0941C46.9178 74.9515 47.1102 74.9089 47.2641 74.999C47.4181 75.089 47.4753 75.2776 47.3919 75.4202Z" fill="#FEFAD1"/>
|
||||
<path d="M50.2456 79.7288C50.0917 79.992 49.7365 80.0707 49.4523 79.9045C49.1681 79.7383 49.0625 79.3902 49.2164 79.127C49.3703 78.8638 49.7255 78.7851 50.0097 78.9513C50.2939 79.1175 50.3995 79.4656 50.2456 79.7288Z" fill="#FEFAD1"/>
|
||||
<path d="M28.8696 88.1462C28.7982 88.2683 28.6334 88.3048 28.5016 88.2277C28.3698 88.1506 28.3208 87.9891 28.3922 87.8671C28.4636 87.745 28.6283 87.7085 28.7602 87.7856C28.892 87.8627 28.941 88.0241 28.8696 88.1462Z" fill="#FEFAD1"/>
|
||||
<path d="M30.8332 77.3935C30.7164 77.5932 30.4469 77.6529 30.2312 77.5268C30.0156 77.4007 29.9354 77.1365 30.0522 76.9368C30.169 76.7371 30.4385 76.6774 30.6542 76.8035C30.8698 76.9297 30.95 77.1938 30.8332 77.3935Z" fill="#FEFAD1"/>
|
||||
<path d="M21.959 85.8011C21.8725 85.949 21.6728 85.9933 21.5131 85.8998C21.3533 85.8064 21.2939 85.6107 21.3804 85.4627C21.467 85.3148 21.6666 85.2706 21.8264 85.364C21.9862 85.4574 22.0455 85.6531 21.959 85.8011Z" fill="#FEFAD1"/>
|
||||
<path d="M32.9453 84.4966C32.7991 84.7466 32.4618 84.8213 32.1918 84.6634C31.9218 84.5055 31.8215 84.1749 31.9677 83.9249C32.1139 83.6748 32.4513 83.6001 32.7212 83.758C32.9912 83.9159 33.0915 84.2466 32.9453 84.4966Z" fill="#FEFAD1"/>
|
||||
<path d="M37.3617 92.5843C37.2401 92.7923 36.9594 92.8544 36.7347 92.7231C36.5101 92.5917 36.4266 92.3166 36.5483 92.1086C36.6699 91.9006 36.9506 91.8384 37.1753 91.9698C37.3999 92.1011 37.4834 92.3762 37.3617 92.5843Z" fill="#FEFAD1"/>
|
||||
<path d="M36.7602 95.0089C36.7156 95.0851 36.6128 95.1078 36.5306 95.0597C36.4483 95.0116 36.4178 94.9109 36.4623 94.8347C36.5069 94.7585 36.6097 94.7358 36.6919 94.7839C36.7742 94.832 36.8047 94.9327 36.7602 95.0089Z" fill="#FEFAD1"/>
|
||||
<path d="M41.2701 86.9651C41.2013 87.0828 41.0425 87.118 40.9154 87.0437C40.7884 86.9694 40.7411 86.8137 40.81 86.696C40.8788 86.5783 41.0376 86.5432 41.1647 86.6175C41.2917 86.6918 41.339 86.8474 41.2701 86.9651Z" fill="#FEFAD1"/>
|
||||
<path d="M38.4926 84.1604C38.4152 84.2927 38.2366 84.3323 38.0937 84.2487C37.9508 84.1651 37.8977 83.9901 37.9751 83.8578C38.0525 83.7254 38.2311 83.6859 38.374 83.7695C38.5169 83.853 38.57 84.028 38.4926 84.1604Z" fill="#FEFAD1"/>
|
||||
<path d="M30.4333 89.5667C30.3819 89.6546 30.2633 89.6808 30.1683 89.6253C30.0734 89.5698 30.0382 89.4536 30.0896 89.3657C30.141 89.2778 30.2596 89.2515 30.3545 89.307C30.4494 89.3625 30.4847 89.4788 30.4333 89.5667Z" fill="#FEFAD1"/>
|
||||
<path d="M27.9671 86.5314C27.9045 86.6384 27.7602 86.6703 27.6447 86.6028C27.5293 86.5353 27.4863 86.3938 27.5489 86.2869C27.6114 86.1799 27.7557 86.148 27.8712 86.2155C27.9867 86.2831 28.0296 86.4245 27.9671 86.5314Z" fill="#FEFAD1"/>
|
||||
<path d="M61.5985 79.1534C61.5423 79.2496 61.4125 79.2784 61.3086 79.2176C61.2047 79.1569 61.1661 79.0297 61.2224 78.9335C61.2786 78.8373 61.4084 78.8085 61.5123 78.8693C61.6162 78.93 61.6548 79.0572 61.5985 79.1534Z" fill="#FEFAD1"/>
|
||||
<path d="M34.6281 79.6771C34.5381 79.831 34.3305 79.8769 34.1645 79.7798C33.9984 79.6827 33.9366 79.4792 34.0266 79.3254C34.1165 79.1716 34.3241 79.1256 34.4902 79.2227C34.6563 79.3199 34.718 79.5233 34.6281 79.6771Z" fill="#FEFAD1"/>
|
||||
<path d="M61.7847 80.7105C61.6616 80.921 61.3776 80.9838 61.1504 80.851C60.9231 80.7181 60.8386 80.4397 60.9617 80.2292C61.0848 80.0188 61.3688 79.9559 61.5961 80.0888C61.8233 80.2217 61.9078 80.5 61.7847 80.7105Z" fill="#FEFAD1"/>
|
||||
<path d="M43.5173 68.2759C43.4471 68.396 43.285 68.4319 43.1553 68.3561C43.0256 68.2802 42.9774 68.1213 43.0476 68.0012C43.1179 67.8811 43.28 67.8452 43.4097 67.921C43.5394 67.9969 43.5876 68.1558 43.5173 68.2759Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M38.6531 65.1895C38.5211 65.4151 38.2167 65.4825 37.9731 65.34C37.7295 65.1976 37.639 64.8992 37.7709 64.6736C37.9028 64.448 38.2072 64.3806 38.4509 64.5231C38.6945 64.6655 38.785 64.9639 38.6531 65.1895Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M39.9586 67.1052C39.861 67.2722 39.6356 67.322 39.4553 67.2166C39.275 67.1111 39.2079 66.8903 39.3056 66.7233C39.4033 66.5563 39.6286 66.5064 39.8089 66.6118C39.9893 66.7173 40.0563 66.9382 39.9586 67.1052Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M39.264 62.3976C39.2135 62.484 39.0969 62.5099 39.0035 62.4553C38.9102 62.4007 38.8755 62.2864 38.9261 62.2C38.9766 62.1135 39.0932 62.0877 39.1866 62.1423C39.2799 62.1969 39.3146 62.3112 39.264 62.3976Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M35.5494 60.9264C35.5074 60.9982 35.4106 61.0196 35.3331 60.9743C35.2556 60.929 35.2268 60.8341 35.2687 60.7623C35.3107 60.6905 35.4076 60.6691 35.4851 60.7144C35.5626 60.7597 35.5914 60.8547 35.5494 60.9264Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M32.5098 69.3873C32.3656 69.6339 32.0328 69.7076 31.7666 69.5519C31.5003 69.3962 31.4013 69.0701 31.5455 68.8235C31.6897 68.5769 32.0225 68.5032 32.2888 68.6589C32.5551 68.8146 32.654 69.1407 32.5098 69.3873Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M34.5927 69.2973C34.523 69.4164 34.3622 69.452 34.2336 69.3768C34.1049 69.3016 34.0571 69.144 34.1268 69.0248C34.1964 68.9057 34.3572 68.8701 34.4859 68.9453C34.6145 69.0205 34.6624 69.1781 34.5927 69.2973Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M30.7886 69.1721C30.7406 69.2541 30.6299 69.2786 30.5414 69.2268C30.4528 69.175 30.4198 69.0665 30.4678 68.9845C30.5158 68.9024 30.6265 68.8779 30.7151 68.9297C30.8037 68.9815 30.8366 69.09 30.7886 69.1721Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M40.4552 72.7908C40.2633 73.119 39.8205 73.217 39.4662 73.0098C39.1119 72.8026 38.9802 72.3686 39.1721 72.0405C39.364 71.7123 39.8068 71.6143 40.1611 71.8215C40.5154 72.0287 40.6471 72.4627 40.4552 72.7908Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M52.9449 82.2826C52.8258 82.4862 52.551 82.5471 52.3312 82.4185C52.1113 82.2899 52.0296 82.0206 52.1486 81.8169C52.2677 81.6133 52.5425 81.5525 52.7624 81.6811C52.9823 81.8096 53.064 82.079 52.9449 82.2826Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M48.6347 81.4115C48.5825 81.5009 48.4619 81.5276 48.3654 81.4712C48.2689 81.4148 48.233 81.2966 48.2853 81.2072C48.3375 81.1178 48.4581 81.0912 48.5546 81.1476C48.6511 81.204 48.687 81.3222 48.6347 81.4115Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M51.2676 76.009C51.1348 76.2361 50.8284 76.3039 50.5832 76.1605C50.338 76.0171 50.2469 75.7168 50.3797 75.4898C50.5125 75.2627 50.8189 75.1948 51.0641 75.3382C51.3093 75.4816 51.4004 75.7819 51.2676 76.009Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M56.9263 82.6072C56.7784 82.8602 56.4371 82.9358 56.164 82.776C55.8908 82.6163 55.7893 82.2818 55.9372 82.0288C56.0852 81.7759 56.4265 81.7003 56.6996 81.86C56.9728 82.0197 57.0743 82.3543 56.9263 82.6072Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M50.1834 73.9839C50.1305 74.0743 50.0086 74.1013 49.9111 74.0442C49.8136 73.9872 49.7773 73.8677 49.8301 73.7773C49.883 73.687 50.0049 73.66 50.1024 73.7171C50.2 73.7741 50.2362 73.8936 50.1834 73.9839Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M8.01009 72.0629C7.82076 72.3866 7.38389 72.4833 7.0343 72.2789C6.68471 72.0745 6.55479 71.6463 6.74411 71.3225C6.93344 70.9988 7.37031 70.9021 7.7199 71.1065C8.06949 71.3109 8.19941 71.7391 8.01009 72.0629Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M14.5833 87.5061C14.4765 87.6888 14.23 87.7433 14.0328 87.628C13.8356 87.5127 13.7623 87.2711 13.8691 87.0885C13.9759 86.9059 14.2224 86.8513 14.4196 86.9666C14.6168 87.0819 14.6901 87.3235 14.5833 87.5061Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M11.2521 85.3173C11.197 85.4115 11.0698 85.4397 10.9681 85.3802C10.8663 85.3207 10.8285 85.196 10.8836 85.1018C10.9387 85.0075 11.0659 84.9794 11.1677 85.0389C11.2694 85.0984 11.3072 85.2231 11.2521 85.3173Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M8.8391 80.6358C8.77457 80.7461 8.62565 80.7791 8.50649 80.7094C8.38732 80.6397 8.34303 80.4938 8.40756 80.3834C8.4721 80.2731 8.62102 80.2401 8.74018 80.3098C8.85935 80.3795 8.90364 80.5254 8.8391 80.6358Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M14.507 84.0069C14.4304 84.1378 14.2539 84.1769 14.1125 84.0942C13.9712 84.0116 13.9187 83.8385 13.9952 83.7076C14.0718 83.5768 14.2483 83.5377 14.3897 83.6203C14.531 83.703 14.5835 83.876 14.507 84.0069Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M19.7608 85.7013C19.6897 85.8229 19.5256 85.8592 19.3943 85.7824C19.263 85.7057 19.2142 85.5448 19.2853 85.4233C19.3564 85.3017 19.5205 85.2654 19.6518 85.3421C19.7831 85.4189 19.8319 85.5797 19.7608 85.7013Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M19.1944 59.3969C19.1541 59.4657 19.0612 59.4863 18.9869 59.4428C18.9125 59.3993 18.8849 59.3083 18.9251 59.2394C18.9654 59.1706 19.0583 59.15 19.1327 59.1935C19.207 59.2369 19.2346 59.328 19.1944 59.3969Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M24.5183 64.4277C24.4018 64.6269 24.1329 64.6864 23.9178 64.5606C23.7027 64.4348 23.6227 64.1713 23.7392 63.9721C23.8557 63.7728 24.1246 63.7133 24.3397 63.8391C24.5549 63.9649 24.6348 64.2284 24.5183 64.4277Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M28.554 63.6155C28.4472 63.7981 28.2007 63.8527 28.0035 63.7374C27.8063 63.622 27.733 63.3805 27.8398 63.1979C27.9466 63.0152 28.1931 62.9607 28.3903 63.076C28.5875 63.1913 28.6608 63.4329 28.554 63.6155Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M26.7253 61.0406C26.6839 61.1114 26.5884 61.1326 26.5119 61.0879C26.4355 61.0432 26.4071 60.9495 26.4485 60.8787C26.4899 60.8079 26.5854 60.7867 26.6619 60.8314C26.7383 60.8762 26.7667 60.9698 26.7253 61.0406Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M29.7806 59.1633C29.6972 59.3059 29.5048 59.3485 29.3508 59.2585C29.1969 59.1685 29.1397 58.9799 29.223 58.8373C29.3064 58.6947 29.4988 58.6521 29.6528 58.7421C29.8068 58.8322 29.864 59.0207 29.7806 59.1633Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M32.6343 63.472C32.4804 63.7352 32.1252 63.8138 31.841 63.6476C31.5568 63.4814 31.4512 63.1333 31.6051 62.8701C31.759 62.6069 32.1142 62.5283 32.3984 62.6945C32.6826 62.8607 32.7882 63.2088 32.6343 63.472Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M11.2592 71.8894C11.1878 72.0115 11.0231 72.0479 10.8913 71.9709C10.7595 71.8938 10.7105 71.7323 10.7819 71.6102C10.8533 71.4881 11.018 71.4517 11.1498 71.5287C11.2816 71.6058 11.3306 71.7673 11.2592 71.8894Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M13.2218 61.1367C13.1051 61.3364 12.8355 61.3961 12.6199 61.27C12.4042 61.1438 12.3241 60.8797 12.4409 60.68C12.5577 60.4803 12.8272 60.4206 13.0428 60.5467C13.2585 60.6728 13.3386 60.937 13.2218 61.1367Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M4.34768 69.5442C4.26115 69.6922 4.06149 69.7364 3.90172 69.643C3.74195 69.5496 3.68258 69.3539 3.76911 69.2059C3.85564 69.0579 4.0553 69.0137 4.21507 69.1072C4.37483 69.2006 4.4342 69.3963 4.34768 69.5442Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M15.333 68.2397C15.1868 68.4898 14.8494 68.5645 14.5795 68.4066C14.3095 68.2487 14.2092 67.918 14.3554 67.668C14.5016 67.418 14.839 67.3433 15.1089 67.5012C15.3789 67.6591 15.4792 67.9897 15.333 68.2397Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M19.7504 76.3274C19.6287 76.5354 19.348 76.5976 19.1234 76.4662C18.8988 76.3349 18.8153 76.0598 18.937 75.8518C19.0586 75.6437 19.3393 75.5816 19.5639 75.7129C19.7886 75.8443 19.872 76.1194 19.7504 76.3274Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M19.1508 78.7521C19.1063 78.8282 19.0035 78.851 18.9212 78.8029C18.839 78.7548 18.8084 78.654 18.8529 78.5779C18.8975 78.5017 19.0003 78.4789 19.0825 78.527C19.1648 78.5751 19.1954 78.6759 19.1508 78.7521Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M23.6598 70.7083C23.591 70.826 23.4322 70.8611 23.3051 70.7868C23.178 70.7125 23.1308 70.5569 23.1996 70.4392C23.2684 70.3215 23.4272 70.2863 23.5543 70.3606C23.6814 70.4349 23.7286 70.5906 23.6598 70.7083Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M20.8813 67.9035C20.8039 68.0359 20.6253 68.0754 20.4824 67.9919C20.3395 67.9083 20.2864 67.7333 20.3638 67.6009C20.4412 67.4686 20.6197 67.4291 20.7626 67.5126C20.9055 67.5962 20.9586 67.7712 20.8813 67.9035Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M12.8229 73.3098C12.7715 73.3977 12.6529 73.424 12.558 73.3685C12.4631 73.313 12.4278 73.1967 12.4792 73.1088C12.5306 73.021 12.6492 72.9947 12.7441 73.0502C12.839 73.1057 12.8743 73.2219 12.8229 73.3098Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M10.3557 70.2746C10.2932 70.3815 10.1489 70.4135 10.0334 70.346C9.91793 70.2784 9.87502 70.137 9.93755 70.0301C10.0001 69.9231 10.1444 69.8912 10.2599 69.9587C10.3753 70.0262 10.4183 70.1677 10.3557 70.2746Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M43.9872 62.8966C43.9309 62.9928 43.8011 63.0215 43.6973 62.9608C43.5934 62.9 43.5548 62.7728 43.611 62.6766C43.6673 62.5804 43.7971 62.5517 43.901 62.6124C44.0048 62.6732 44.0435 62.8004 43.9872 62.8966Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M17.0177 63.4198C16.9278 63.5736 16.7202 63.6196 16.5541 63.5225C16.388 63.4253 16.3263 63.2219 16.4162 63.0681C16.5062 62.9142 16.7137 62.8683 16.8798 62.9654C17.0459 63.0625 17.1077 63.266 17.0177 63.4198Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
<path d="M44.1734 64.4537C44.0503 64.6641 43.7663 64.727 43.539 64.5941C43.3118 64.4612 43.2273 64.1829 43.3504 63.9724C43.4735 63.7619 43.7575 63.699 43.9847 63.8319C44.212 63.9648 44.2964 64.2432 44.1734 64.4537Z" fill="#FEFAD1" fill-opacity="0.6"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_f_1911_1723" x="33.1303" y="103.551" width="102.759" height="22.2233" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="4.30889" result="effect1_foregroundBlur_1911_1723"/>
|
||||
</filter>
|
||||
<filter id="filter1_f_1911_1723" x="200.854" y="25.77" width="86.8291" height="103.462" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="8" result="effect1_foregroundBlur_1911_1723"/>
|
||||
</filter>
|
||||
<filter id="filter2_f_1911_1723" x="15.748" y="52.5688" width="91.4854" height="73.8433" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="5" result="effect1_foregroundBlur_1911_1723"/>
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_1911_1723" x1="210.233" y1="97.1818" x2="230.723" y2="92.2519" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01AD6C"/>
|
||||
<stop offset="1" stop-color="#1FF073"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1911_1723" x1="210.233" y1="97.1818" x2="230.723" y2="92.2519" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01AD6C"/>
|
||||
<stop offset="1" stop-color="#1FF073"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1911_1723" x1="172.392" y1="120.995" x2="151.732" y2="119.662" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01AD6C"/>
|
||||
<stop offset="1" stop-color="#1FF073"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1911_1723" x1="194.387" y1="63.0184" x2="179.725" y2="119" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1FF073"/>
|
||||
<stop offset="1" stop-color="#04795D"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_1911_1723" x1="165.633" y1="93.9647" x2="170.376" y2="102.7" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#20AD78"/>
|
||||
<stop offset="0.929244" stop-color="#1FF073"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_1911_1723" x1="200.383" y1="116.342" x2="200.383" y2="143" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#06805E"/>
|
||||
<stop offset="1" stop-color="#1FF073"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_1911_1723" x1="114.715" y1="79.7213" x2="125.311" y2="71.3329" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#EA5547"/>
|
||||
<stop offset="1" stop-color="#FF7171"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint7_linear_1911_1723" x1="77.1886" y1="102.24" x2="82.9281" y2="94.2931" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF7171"/>
|
||||
<stop offset="0.746441" stop-color="#EA5547"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint8_linear_1911_1723" x1="92.4734" y1="18.3545" x2="92.4734" y2="99.5754" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF7171"/>
|
||||
<stop offset="1" stop-color="#E85345"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint9_linear_1911_1723" x1="111.626" y1="107.533" x2="95.2904" y2="95.1712" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF7171"/>
|
||||
<stop offset="1" stop-color="#EB574A"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint10_linear_1911_1723" x1="60.5581" y1="64.5768" x2="83.4053" y2="75.7536" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0666008" stop-color="#FF7171"/>
|
||||
<stop offset="1" stop-color="#EA5548"/>
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_1911_1723">
|
||||
<rect width="286" height="167" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 53 KiB |
159
newIDE/app/public/res/questionnaire/app-or-tool.svg
Normal file
@@ -0,0 +1,159 @@
|
||||
<svg width="292" height="103" viewBox="0 0 292 103" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="292" height="102.768" fill="#1D1D26"/>
|
||||
<g opacity="0.5">
|
||||
<path d="M174.883 48.5969C172.797 48.3081 167.755 46.0073 164.271 39.114" stroke="#CF0A80" stroke-width="0.893308" stroke-linecap="round"/>
|
||||
<path d="M174.01 55.4325C172.032 55.1385 167.096 56.32 165.283 59.2215C163.832 61.5427 165.838 64.3682 167.023 65.4908L162.674 68.3848" stroke="#CF0A80" stroke-width="0.893308" stroke-linecap="round"/>
|
||||
<path d="M183.776 39.2987C176.609 37.4256 173.068 46.2757 172.999 48.0277C167.668 48.0508 168.083 52.7903 169.218 54.3655C169.985 55.4285 171.897 57.2481 176.168 58.6768C180.439 60.1054 185.088 60.6946 186.382 60.5367C187.676 60.3788 189.352 60.5239 190.558 57.6245C191.523 55.305 189.829 53.4641 189.014 52.8329C189.909 48.564 190.944 41.1718 183.776 39.2987Z" fill="url(#paint0_linear_1654_6180)"/>
|
||||
<ellipse cx="175.938" cy="48.8582" rx="0.9901" ry="1.06626" transform="rotate(23.6376 175.938 48.8582)" fill="#3B314F"/>
|
||||
<ellipse cx="182.65" cy="50.8074" rx="0.9901" ry="1.06626" transform="rotate(23.6376 182.65 50.8074)" fill="#3B314F"/>
|
||||
<path d="M183.241 59.018C181.483 57.4969 178.444 56.2206 175.871 57.4326C173.813 58.4022 173.911 62.6046 174.217 64.5846L169.649 64.0309" stroke="#CF0A80" stroke-width="0.893308" stroke-linecap="round"/>
|
||||
<path d="M187.114 53.6076C188.313 55.4387 189.646 60.7729 185.387 67.4614" stroke="#CF0A80" stroke-width="0.893308" stroke-linecap="round"/>
|
||||
</g>
|
||||
<rect x="169.108" y="6.1079" width="90.7842" height="79.7842" rx="3.8921" fill="#13775F" fill-opacity="0.2" stroke="#7FFF00" stroke-width="0.2158"/>
|
||||
<path d="M119.297 49.0762C118.253 51.7128 116.368 58.2546 117.182 63.3294" stroke="#CF0A80" stroke-width="0.918557" stroke-linecap="round"/>
|
||||
<g opacity="0.6">
|
||||
<path d="M82.0359 50.4424C81.331 52.4002 78.0418 57.8039 79.4515 67.4366L83.7588 69.0812" stroke="#CF0A80" stroke-width="0.918557" stroke-linecap="round"/>
|
||||
<path d="M73.9697 52.4785C73.3432 53.8099 70.7588 59.2919 70.2106 68.0631L65.9034 69.1594" stroke="#CF0A80" stroke-width="0.918557" stroke-linecap="round"/>
|
||||
<path d="M85.795 46.918C86.1605 48.8497 86.6721 54.2012 85.795 60.1531" stroke="#CF0A80" stroke-width="0.918557" stroke-linecap="round"/>
|
||||
<path d="M72.4818 32.7435C79.8434 30.7857 83.5241 39.8701 83.6024 41.6714C89.0844 41.6714 88.6787 46.5467 87.5182 48.1714C86.735 49.2678 84.7772 51.1474 80.3916 52.6354C76.006 54.1233 71.2288 54.7498 69.8974 54.5932C68.5661 54.4366 66.8432 54.5932 65.5902 51.6173C64.5877 49.2365 66.3211 47.3361 67.1565 46.6835C66.2167 42.2979 65.1203 34.7014 72.4818 32.7435Z" fill="url(#paint1_linear_1654_6180)"/>
|
||||
<ellipse cx="1.01809" cy="1.0964" rx="1.01809" ry="1.0964" transform="matrix(-0.914359 0.404904 0.404904 0.914359 81.0693 41.123)" fill="#3B314F"/>
|
||||
<ellipse cx="1.01809" cy="1.0964" rx="1.01809" ry="1.0964" transform="matrix(-0.914359 0.404904 0.404904 0.914359 74.1777 43.1582)" fill="#3B314F"/>
|
||||
<path d="M67.3135 47.9365C66.2693 50.5731 64.3845 57.115 65.199 62.1897" stroke="#CF0A80" stroke-width="0.918557" stroke-linecap="round"/>
|
||||
</g>
|
||||
<path d="M131.882 51.9141C134.01 54.0423 134.01 63.9742 132.855 68.4372L137.162 70.0818" stroke="#CF0A80" stroke-width="0.918557" stroke-linecap="round"/>
|
||||
<path d="M125.497 53.333C124.871 54.6644 124.162 60.2918 123.614 69.063L119.306 70.1594" stroke="#CF0A80" stroke-width="0.918557" stroke-linecap="round"/>
|
||||
<path d="M139.198 47.918C139.564 49.8497 140.075 55.2012 139.198 61.1531" stroke="#CF0A80" stroke-width="0.918557" stroke-linecap="round"/>
|
||||
<path d="M128.653 33.0245C136.27 32.9243 137.62 42.6327 137.256 44.3985C142.571 45.7377 140.987 50.3662 139.465 51.6582C138.438 52.5301 136.08 53.8744 131.464 54.2459C126.847 54.6175 122.062 54.058 120.809 53.5809C119.556 53.1038 117.847 52.8348 117.359 49.6429C116.969 47.0894 119.114 45.67 120.083 45.2412C120.244 40.7589 121.036 33.1247 128.653 33.0245Z" fill="url(#paint2_linear_1654_6180)"/>
|
||||
<ellipse cx="1.01809" cy="1.0964" rx="1.01809" ry="1.0964" transform="matrix(-0.914359 0.404904 0.404904 0.914359 134.453 41.9814)" fill="#3B314F"/>
|
||||
<ellipse cx="1.01809" cy="1.0964" rx="1.01809" ry="1.0964" transform="matrix(-0.914359 0.404904 0.404904 0.914359 125.94 41.9814)" fill="#3B314F"/>
|
||||
<g opacity="0.6">
|
||||
<path d="M30.1475 53.9385C30.0607 56.4313 29.4709 62.5014 27.8053 66.8398L31.9792 67.5976" stroke="#CF0A80" stroke-width="0.904674" stroke-linecap="round"/>
|
||||
<path d="M36.6113 54.1699C37.226 56.6855 38.3796 62.5653 38.077 65.9595L43.0857 66.8689" stroke="#CF0A80" stroke-width="0.904674" stroke-linecap="round"/>
|
||||
<path d="M41.4385 60.6397C42.4 58.126 43.1888 51.9299 38.6526 47.2544" stroke="#CF0A80" stroke-width="0.904674" stroke-linecap="round"/>
|
||||
<path d="M33.5847 33.7096C41.0698 33.5007 42.2454 44.2969 41.6943 47.3325C42.6809 47.5116 44.3439 49.1462 44.3857 50.6432C44.4275 52.1402 43.228 53.9978 41.1857 54.4522C40.2423 54.6621 36.5844 55.1847 33.6663 55.282C30.7481 55.3794 27.195 54.6559 25.2219 54.2977C23.2488 53.9395 21.4339 52.2774 21.7714 49.9869C22.0413 48.1545 23.9254 47.19 24.8336 46.9368C24.5423 40.7694 26.0996 33.9185 33.5847 33.7096Z" fill="url(#paint3_linear_1654_6180)"/>
|
||||
<ellipse cx="38.8459" cy="45.5824" rx="1.0027" ry="1.07983" transform="rotate(-7.19645 38.8459 45.5824)" fill="#3B314F"/>
|
||||
<ellipse cx="33.2853" cy="45.9838" rx="1.0027" ry="1.07983" transform="rotate(-7.19645 33.2853 45.9838)" fill="#3B314F"/>
|
||||
<path d="M26.0205 46.4473C26.2952 50.2599 26.1286 58.6332 23.265 61.6253" stroke="#CF0A80" stroke-width="0.904674" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g opacity="0.3">
|
||||
<path d="M217.079 47.4473C217.354 51.2599 217.187 59.6332 214.324 62.6253" stroke="#CF0A80" stroke-width="0.904674" stroke-linecap="round"/>
|
||||
<path d="M223.038 54.9385C223.125 57.4313 223.715 63.5014 225.38 67.8398L221.206 68.5976" stroke="#CF0A80" stroke-width="0.904674" stroke-linecap="round"/>
|
||||
<path d="M227.67 55.1699C228.285 57.6855 229.438 63.5653 229.136 66.9595L234.144 67.8689" stroke="#CF0A80" stroke-width="0.904674" stroke-linecap="round"/>
|
||||
<path d="M229.059 46.2912C231.26 47.8392 237.074 50.1223 242.719 46.8701" stroke="#CF0A80" stroke-width="0.904674" stroke-linecap="round"/>
|
||||
<path d="M224.643 34.7096C232.128 34.5007 233.304 45.2969 232.753 48.3325C233.74 48.5116 235.403 50.1462 235.444 51.6432C235.486 53.1402 234.287 54.9978 232.244 55.4522C231.301 55.6621 227.643 56.1847 224.725 56.282C221.807 56.3794 218.254 55.6559 216.28 55.2977C214.307 54.9395 212.493 53.2774 212.83 50.9869C213.1 49.1545 214.984 48.19 215.892 47.9368C215.601 41.7694 217.158 34.9185 224.643 34.7096Z" fill="url(#paint4_linear_1654_6180)"/>
|
||||
<ellipse cx="226.904" cy="46.5824" rx="1.0027" ry="1.07983" transform="rotate(-7.19645 226.904 46.5824)" fill="#3B314F"/>
|
||||
<ellipse cx="221.344" cy="46.9838" rx="1.0027" ry="1.07983" transform="rotate(-7.19645 221.344 46.9838)" fill="#3B314F"/>
|
||||
</g>
|
||||
<path d="M116 25H109C107.895 25 107 25.8954 107 27V35" stroke="#7FFF00"/>
|
||||
<path d="M140 25H147C148.105 25 149 25.8954 149 27V35" stroke="#7FFF00"/>
|
||||
<path d="M116 76H109C107.895 76 107 75.1046 107 74V66" stroke="#7FFF00"/>
|
||||
<path d="M140 76H147C148.105 76 149 75.1046 149 74V66" stroke="#7FFF00"/>
|
||||
<rect x="107" y="25" width="42" height="51" rx="1" fill="#58FFD7" fill-opacity="0.04"/>
|
||||
<path d="M206.999 21.8145H207.608V22.5195H206.999V21.8145ZM206.999 23.2891H207.608V24H206.999V23.2891Z" fill="#76FF9C"/>
|
||||
<path d="M205.578 22.7266V22.9023H204.021V22.9141C204.011 23.2122 204.068 23.4264 204.191 23.5566C204.316 23.6868 204.492 23.752 204.719 23.752C204.833 23.752 204.953 23.7337 205.078 23.6973C205.203 23.6608 205.337 23.6055 205.479 23.5312V23.8887C205.342 23.9447 205.21 23.9863 205.082 24.0137C204.956 24.0423 204.833 24.0566 204.715 24.0566C204.375 24.0566 204.109 23.9551 203.918 23.752C203.727 23.5475 203.631 23.2663 203.631 22.9082C203.631 22.5592 203.725 22.2806 203.912 22.0723C204.1 21.8639 204.35 21.7598 204.662 21.7598C204.941 21.7598 205.16 21.8542 205.32 22.043C205.482 22.2318 205.568 22.4596 205.578 22.7266ZM205.219 22.6211C205.203 22.4701 205.148 22.3398 205.053 22.2305C204.959 22.1198 204.824 22.0645 204.646 22.0645C204.473 22.0645 204.331 22.1217 204.219 22.2363C204.107 22.3509 204.046 22.4798 204.035 22.623L205.219 22.6211Z" fill="#76FF9C"/>
|
||||
<path d="M201.941 22.0352C201.986 21.9414 202.042 21.8724 202.109 21.8281C202.178 21.7826 202.261 21.7598 202.357 21.7598C202.533 21.7598 202.657 21.8281 202.729 21.9648C202.801 22.1003 202.838 22.3561 202.838 22.7324V24H202.51V22.748C202.51 22.4395 202.492 22.248 202.457 22.1738C202.423 22.0983 202.361 22.0605 202.27 22.0605C202.165 22.0605 202.094 22.1009 202.055 22.1816C202.017 22.2611 201.998 22.4499 201.998 22.748V24H201.67V22.748C201.67 22.4355 201.651 22.2428 201.613 22.1699C201.577 22.097 201.51 22.0605 201.414 22.0605C201.319 22.0605 201.253 22.1009 201.215 22.1816C201.178 22.2611 201.16 22.4499 201.16 22.748V24H200.834V21.8125H201.16V22C201.203 21.9219 201.257 21.8626 201.32 21.8223C201.385 21.7806 201.459 21.7598 201.541 21.7598C201.64 21.7598 201.722 21.7826 201.787 21.8281C201.854 21.8737 201.905 21.9427 201.941 22.0352Z" fill="#76FF9C"/>
|
||||
<path d="M199.222 22.9004H199.103C198.893 22.9004 198.735 22.9375 198.628 23.0117C198.522 23.0846 198.47 23.194 198.47 23.3398C198.47 23.4714 198.509 23.5736 198.589 23.6465C198.668 23.7194 198.778 23.7559 198.919 23.7559C199.117 23.7559 199.272 23.6875 199.386 23.5508C199.499 23.4128 199.556 23.2227 199.558 22.9805V22.9004H199.222ZM199.919 22.752V24H199.558V23.6758C199.481 23.806 199.384 23.9023 199.267 23.9648C199.151 24.026 199.009 24.0566 198.843 24.0566C198.62 24.0566 198.442 23.9941 198.31 23.8691C198.177 23.7428 198.11 23.5742 198.11 23.3633C198.11 23.1198 198.192 22.9349 198.354 22.8086C198.519 22.6823 198.759 22.6191 199.075 22.6191H199.558V22.5625C199.556 22.388 199.512 22.2617 199.425 22.1836C199.338 22.1042 199.198 22.0645 199.007 22.0645C198.884 22.0645 198.761 22.082 198.636 22.1172C198.511 22.1523 198.389 22.2038 198.271 22.2715V21.9121C198.403 21.8613 198.53 21.8236 198.651 21.7988C198.774 21.7728 198.892 21.7598 199.007 21.7598C199.188 21.7598 199.342 21.7865 199.47 21.8398C199.599 21.8932 199.703 21.9733 199.782 22.0801C199.832 22.1452 199.867 22.2259 199.888 22.3223C199.909 22.4173 199.919 22.5605 199.919 22.752Z" fill="#76FF9C"/>
|
||||
<path d="M197.134 22.6445V24H196.772V22.6445C196.772 22.4479 196.738 22.3034 196.669 22.2109C196.6 22.1185 196.492 22.0723 196.345 22.0723C196.177 22.0723 196.047 22.1322 195.956 22.252C195.866 22.3704 195.821 22.541 195.821 22.7637V24H195.462V21.8125H195.821V22.1406C195.885 22.0156 195.972 21.9212 196.081 21.8574C196.19 21.7923 196.32 21.7598 196.47 21.7598C196.692 21.7598 196.858 21.8333 196.968 21.9805C197.078 22.1263 197.134 22.3477 197.134 22.6445Z" fill="#76FF9C"/>
|
||||
<path d="M194.566 22.2637C194.49 22.2038 194.411 22.1602 194.332 22.1328C194.253 22.1055 194.165 22.0918 194.07 22.0918C193.846 22.0918 193.675 22.1621 193.557 22.3027C193.438 22.4434 193.379 22.6465 193.379 22.9121V24H193.018V21.8125H193.379V22.2402C193.439 22.0853 193.531 21.9668 193.654 21.8848C193.779 21.8014 193.927 21.7598 194.098 21.7598C194.186 21.7598 194.269 21.7708 194.346 21.793C194.423 21.8151 194.496 21.8496 194.566 21.8965V22.2637Z" fill="#76FF9C"/>
|
||||
<path d="M191.728 22.7266V22.9023H190.171V22.9141C190.16 23.2122 190.217 23.4264 190.341 23.5566C190.466 23.6868 190.642 23.752 190.868 23.752C190.983 23.752 191.103 23.7337 191.228 23.6973C191.353 23.6608 191.486 23.6055 191.628 23.5312V23.8887C191.491 23.9447 191.359 23.9863 191.231 24.0137C191.105 24.0423 190.983 24.0566 190.864 24.0566C190.524 24.0566 190.259 23.9551 190.067 23.752C189.876 23.5475 189.78 23.2663 189.78 22.9082C189.78 22.5592 189.874 22.2806 190.062 22.0723C190.249 21.8639 190.499 21.7598 190.812 21.7598C191.09 21.7598 191.31 21.8542 191.47 22.043C191.631 22.2318 191.717 22.4596 191.728 22.7266ZM191.368 22.6211C191.353 22.4701 191.297 22.3398 191.202 22.2305C191.108 22.1198 190.973 22.0645 190.796 22.0645C190.623 22.0645 190.48 22.1217 190.368 22.2363C190.256 22.3509 190.195 22.4798 190.185 22.623L191.368 22.6211Z" fill="#76FF9C"/>
|
||||
<path d="M188.671 21.8887V22.2402C188.568 22.1803 188.465 22.1354 188.36 22.1055C188.256 22.0755 188.15 22.0605 188.042 22.0605C187.879 22.0605 187.757 22.0872 187.677 22.1406C187.597 22.1927 187.558 22.2728 187.558 22.3809C187.558 22.4785 187.588 22.5514 187.647 22.5996C187.707 22.6478 187.856 22.6947 188.095 22.7402L188.239 22.7676C188.418 22.8014 188.552 22.8691 188.644 22.9707C188.736 23.0723 188.782 23.2044 188.782 23.3672C188.782 23.5833 188.705 23.7526 188.552 23.875C188.398 23.9961 188.185 24.0566 187.911 24.0566C187.803 24.0566 187.69 24.0449 187.571 24.0215C187.453 23.9993 187.325 23.9655 187.187 23.9199V23.5488C187.321 23.6178 187.449 23.6699 187.571 23.7051C187.694 23.7389 187.81 23.7559 187.919 23.7559C188.078 23.7559 188.201 23.724 188.288 23.6602C188.375 23.5951 188.419 23.5046 188.419 23.3887C188.419 23.222 188.259 23.1068 187.94 23.043L187.925 23.0391L187.79 23.0117C187.583 22.9714 187.432 22.9036 187.337 22.8086C187.242 22.7122 187.194 22.5814 187.194 22.416C187.194 22.2064 187.265 22.0449 187.407 21.9316C187.549 21.8171 187.752 21.7598 188.015 21.7598C188.132 21.7598 188.244 21.7708 188.353 21.793C188.461 21.8138 188.567 21.8457 188.671 21.8887Z" fill="#76FF9C"/>
|
||||
<path d="M184.287 22.8809V21.084H184.684V23.0605C184.684 23.2025 184.688 23.304 184.695 23.3652C184.703 23.4251 184.717 23.4714 184.736 23.5039C184.778 23.5807 184.838 23.6387 184.916 23.6777C184.995 23.7168 185.091 23.7363 185.203 23.7363C185.316 23.7363 185.412 23.7168 185.49 23.6777C185.568 23.6387 185.629 23.5807 185.672 23.5039C185.691 23.4714 185.705 23.4251 185.713 23.3652C185.721 23.3053 185.725 23.2051 185.725 23.0645V21.084H186.119V22.8809C186.119 23.179 186.1 23.3913 186.062 23.5176C186.026 23.6426 185.962 23.7461 185.871 23.8281C185.785 23.9049 185.687 23.9622 185.576 24C185.465 24.0378 185.341 24.0566 185.203 24.0566C185.066 24.0566 184.943 24.0378 184.832 24C184.721 23.9622 184.622 23.9049 184.535 23.8281C184.445 23.7474 184.382 23.6432 184.344 23.5156C184.306 23.3867 184.287 23.1751 184.287 22.8809Z" fill="#76FF9C"/>
|
||||
<path d="M230.824 22.0645C230.642 22.0645 230.504 22.1354 230.41 22.2773C230.316 22.4193 230.27 22.6296 230.27 22.9082C230.27 23.1855 230.316 23.3958 230.41 23.5391C230.504 23.681 230.642 23.752 230.824 23.752C231.008 23.752 231.146 23.681 231.24 23.5391C231.334 23.3958 231.381 23.1855 231.381 22.9082C231.381 22.6296 231.334 22.4193 231.24 22.2773C231.146 22.1354 231.008 22.0645 230.824 22.0645ZM230.824 21.7598C231.128 21.7598 231.359 21.8581 231.52 22.0547C231.681 22.2513 231.762 22.5358 231.762 22.9082C231.762 23.2819 231.682 23.5671 231.521 23.7637C231.361 23.959 231.129 24.0566 230.824 24.0566C230.521 24.0566 230.289 23.959 230.129 23.7637C229.969 23.5671 229.889 23.2819 229.889 22.9082C229.889 22.5358 229.969 22.2513 230.129 22.0547C230.289 21.8581 230.521 21.7598 230.824 21.7598Z" fill="#76FF9C"/>
|
||||
<path d="M228.903 22.6445V24H228.542V22.6445C228.542 22.4479 228.507 22.3034 228.438 22.2109C228.369 22.1185 228.261 22.0723 228.114 22.0723C227.946 22.0723 227.817 22.1322 227.726 22.252C227.636 22.3704 227.591 22.541 227.591 22.7637V24H227.231V20.9609H227.591V22.1406C227.655 22.0156 227.741 21.9212 227.851 21.8574C227.96 21.7923 228.09 21.7598 228.239 21.7598C228.462 21.7598 228.628 21.8333 228.737 21.9805C228.848 22.1263 228.903 22.3477 228.903 22.6445Z" fill="#76FF9C"/>
|
||||
<path d="M226.153 23.8887C226.057 23.9447 225.957 23.9863 225.854 24.0137C225.753 24.0423 225.649 24.0566 225.542 24.0566C225.203 24.0566 224.938 23.9551 224.747 23.752C224.557 23.5488 224.462 23.2676 224.462 22.9082C224.462 22.5488 224.557 22.2676 224.747 22.0645C224.938 21.8613 225.203 21.7598 225.542 21.7598C225.647 21.7598 225.75 21.7734 225.851 21.8008C225.951 21.8281 226.052 21.8704 226.153 21.9277V22.3047C226.058 22.2201 225.963 22.1589 225.866 22.1211C225.771 22.0833 225.663 22.0645 225.542 22.0645C225.317 22.0645 225.144 22.1374 225.022 22.2832C224.901 22.429 224.841 22.6374 224.841 22.9082C224.841 23.1777 224.901 23.3861 225.022 23.5332C225.145 23.679 225.318 23.752 225.542 23.752C225.667 23.752 225.779 23.7331 225.878 23.6953C225.977 23.6562 226.069 23.5964 226.153 23.5156V23.8887Z" fill="#76FF9C"/>
|
||||
<path d="M223.363 22.6445V24H223.002V22.6445C223.002 22.4479 222.967 22.3034 222.898 22.2109C222.829 22.1185 222.721 22.0723 222.574 22.0723C222.406 22.0723 222.277 22.1322 222.186 22.252C222.096 22.3704 222.051 22.541 222.051 22.7637V24H221.691V21.8125H222.051V22.1406C222.115 22.0156 222.201 21.9212 222.311 21.8574C222.42 21.7923 222.549 21.7598 222.699 21.7598C222.922 21.7598 223.088 21.8333 223.197 21.9805C223.308 22.1263 223.363 22.3477 223.363 22.6445Z" fill="#76FF9C"/>
|
||||
<path d="M219.911 22.9004H219.792C219.582 22.9004 219.424 22.9375 219.317 23.0117C219.212 23.0846 219.159 23.194 219.159 23.3398C219.159 23.4714 219.199 23.5736 219.278 23.6465C219.358 23.7194 219.468 23.7559 219.608 23.7559C219.806 23.7559 219.962 23.6875 220.075 23.5508C220.188 23.4128 220.246 23.2227 220.247 22.9805V22.9004H219.911ZM220.608 22.752V24H220.247V23.6758C220.17 23.806 220.073 23.9023 219.956 23.9648C219.84 24.026 219.699 24.0566 219.532 24.0566C219.31 24.0566 219.132 23.9941 218.999 23.8691C218.866 23.7428 218.8 23.5742 218.8 23.3633C218.8 23.1198 218.881 22.9349 219.044 22.8086C219.208 22.6823 219.448 22.6191 219.765 22.6191H220.247V22.5625C220.246 22.388 220.201 22.2617 220.114 22.1836C220.027 22.1042 219.888 22.0645 219.696 22.0645C219.574 22.0645 219.45 22.082 219.325 22.1172C219.2 22.1523 219.078 22.2038 218.96 22.2715V21.9121C219.093 21.8613 219.22 21.8236 219.341 21.7988C219.463 21.7728 219.582 21.7598 219.696 21.7598C219.877 21.7598 220.032 21.7865 220.159 21.8398C220.288 21.8932 220.392 21.9733 220.472 22.0801C220.521 22.1452 220.556 22.2259 220.577 22.3223C220.598 22.4173 220.608 22.5605 220.608 22.752Z" fill="#76FF9C"/>
|
||||
<path d="M216.151 23.1719V21.8164H216.511V23.1719C216.511 23.3685 216.545 23.513 216.614 23.6055C216.685 23.6979 216.793 23.7441 216.938 23.7441C217.108 23.7441 217.237 23.6849 217.327 23.5664C217.417 23.4466 217.462 23.2754 217.462 23.0527V21.8164H217.823V24H217.462V23.6719C217.398 23.7982 217.311 23.8939 217.2 23.959C217.091 24.0241 216.963 24.0566 216.815 24.0566C216.591 24.0566 216.425 23.9837 216.315 23.8379C216.206 23.6908 216.151 23.4688 216.151 23.1719Z" fill="#76FF9C"/>
|
||||
<path d="M213.213 23.8809V23.4199C213.331 23.5254 213.454 23.6048 213.58 23.6582C213.706 23.7103 213.837 23.7363 213.973 23.7363C214.159 23.7363 214.288 23.6882 214.361 23.5918C214.436 23.4941 214.473 23.3132 214.473 23.0488V21.416H213.729V21.084H214.867V23.0488C214.867 23.416 214.798 23.6758 214.66 23.8281C214.523 23.9805 214.294 24.0566 213.973 24.0566C213.848 24.0566 213.723 24.0423 213.6 24.0137C213.476 23.985 213.347 23.9408 213.213 23.8809Z" fill="#76FF9C"/>
|
||||
<path d="M206.999 32.8145H207.608V33.5195H206.999V32.8145ZM206.999 34.2891H207.608V35H206.999V34.2891Z" fill="#76FF9C"/>
|
||||
<path d="M205.066 33.8887C205.066 33.6191 205.022 33.4147 204.934 33.2754C204.846 33.1348 204.719 33.0645 204.551 33.0645C204.375 33.0645 204.241 33.1348 204.148 33.2754C204.056 33.4147 204.01 33.6191 204.01 33.8887C204.01 34.1582 204.056 34.3639 204.148 34.5059C204.242 34.6465 204.378 34.7168 204.555 34.7168C204.72 34.7168 204.846 34.6458 204.934 34.5039C205.022 34.362 205.066 34.1569 205.066 33.8887ZM205.426 34.8594C205.426 35.1875 205.348 35.4362 205.193 35.6055C205.038 35.7747 204.811 35.8594 204.51 35.8594C204.411 35.8594 204.307 35.8503 204.199 35.832C204.091 35.8138 203.983 35.7871 203.875 35.752V35.3965C204.003 35.4564 204.118 35.5007 204.223 35.5293C204.327 35.5579 204.423 35.5723 204.51 35.5723C204.704 35.5723 204.845 35.5195 204.934 35.4141C205.022 35.3086 205.066 35.1413 205.066 34.9121V34.8965V34.6523C205.009 34.7747 204.931 34.8659 204.832 34.9258C204.733 34.9857 204.613 35.0156 204.471 35.0156C204.215 35.0156 204.012 34.9134 203.859 34.709C203.707 34.5046 203.631 34.2311 203.631 33.8887C203.631 33.5449 203.707 33.2708 203.859 33.0664C204.012 32.862 204.215 32.7598 204.471 32.7598C204.611 32.7598 204.73 32.7878 204.828 32.8438C204.926 32.8997 205.005 32.9863 205.066 33.1035V32.8203H205.426V34.8594Z" fill="#76FF9C"/>
|
||||
<path d="M202.674 33.6445V35H202.312V33.6445C202.312 33.4479 202.278 33.3034 202.209 33.2109C202.14 33.1185 202.032 33.0723 201.885 33.0723C201.717 33.0723 201.587 33.1322 201.496 33.252C201.406 33.3704 201.361 33.541 201.361 33.7637V35H201.002V32.8125H201.361V33.1406C201.425 33.0156 201.512 32.9212 201.621 32.8574C201.73 32.7923 201.86 32.7598 202.01 32.7598C202.232 32.7598 202.398 32.8333 202.508 32.9805C202.618 33.1263 202.674 33.3477 202.674 33.6445Z" fill="#76FF9C"/>
|
||||
<path d="M198.468 32.8203H199.388V34.7207H200.101V35H198.315V34.7207H199.028V33.0996H198.468V32.8203ZM199.028 31.9707H199.388V32.4238H199.028V31.9707Z" fill="#76FF9C"/>
|
||||
<path d="M197.134 33.6445V35H196.772V33.6445C196.772 33.4479 196.738 33.3034 196.669 33.2109C196.6 33.1185 196.492 33.0723 196.345 33.0723C196.177 33.0723 196.047 33.1322 195.956 33.252C195.866 33.3704 195.821 33.541 195.821 33.7637V35H195.462V32.8125H195.821V33.1406C195.885 33.0156 195.972 32.9212 196.081 32.8574C196.19 32.7923 196.32 32.7598 196.47 32.7598C196.692 32.7598 196.858 32.8333 196.968 32.9805C197.078 33.1263 197.134 33.3477 197.134 33.6445Z" fill="#76FF9C"/>
|
||||
<path d="M192.928 32.8203H193.848V34.7207H194.561V35H192.775V34.7207H193.488V33.0996H192.928V32.8203ZM193.488 31.9707H193.848V32.4238H193.488V31.9707Z" fill="#76FF9C"/>
|
||||
<path d="M190.911 33.9004H190.792C190.582 33.9004 190.424 33.9375 190.317 34.0117C190.212 34.0846 190.159 34.194 190.159 34.3398C190.159 34.4714 190.199 34.5736 190.278 34.6465C190.358 34.7194 190.468 34.7559 190.608 34.7559C190.806 34.7559 190.962 34.6875 191.075 34.5508C191.188 34.4128 191.246 34.2227 191.247 33.9805V33.9004H190.911ZM191.608 33.752V35H191.247V34.6758C191.17 34.806 191.073 34.9023 190.956 34.9648C190.84 35.026 190.699 35.0566 190.532 35.0566C190.31 35.0566 190.132 34.9941 189.999 34.8691C189.866 34.7428 189.8 34.5742 189.8 34.3633C189.8 34.1198 189.881 33.9349 190.044 33.8086C190.208 33.6823 190.448 33.6191 190.765 33.6191H191.247V33.5625C191.246 33.388 191.201 33.2617 191.114 33.1836C191.027 33.1042 190.888 33.0645 190.696 33.0645C190.574 33.0645 190.45 33.082 190.325 33.1172C190.2 33.1523 190.078 33.2038 189.96 33.2715V32.9121C190.093 32.8613 190.22 32.8236 190.341 32.7988C190.463 32.7728 190.582 32.7598 190.696 32.7598C190.877 32.7598 191.032 32.7865 191.159 32.8398C191.288 32.8932 191.392 32.9733 191.472 33.0801C191.521 33.1452 191.556 33.2259 191.577 33.3223C191.598 33.4173 191.608 33.5605 191.608 33.752Z" fill="#76FF9C"/>
|
||||
<path d="M189.026 33.2637C188.95 33.2038 188.871 33.1602 188.792 33.1328C188.713 33.1055 188.625 33.0918 188.53 33.0918C188.306 33.0918 188.135 33.1621 188.017 33.3027C187.898 33.4434 187.839 33.6465 187.839 33.9121V35H187.478V32.8125H187.839V33.2402C187.899 33.0853 187.991 32.9668 188.114 32.8848C188.239 32.8014 188.387 32.7598 188.558 32.7598C188.646 32.7598 188.729 32.7708 188.806 32.793C188.882 32.8151 188.956 32.8496 189.026 32.8965V33.2637Z" fill="#76FF9C"/>
|
||||
<path d="M184.092 32.084H186.316V32.416H185.404V35H185.008V32.416H184.092V32.084Z" fill="#76FF9C"/>
|
||||
<path d="M220.44 32.8887V33.2402C220.338 33.1803 220.234 33.1354 220.13 33.1055C220.026 33.0755 219.92 33.0605 219.812 33.0605C219.649 33.0605 219.527 33.0872 219.446 33.1406C219.367 33.1927 219.327 33.2728 219.327 33.3809C219.327 33.4785 219.357 33.5514 219.417 33.5996C219.477 33.6478 219.626 33.6947 219.864 33.7402L220.009 33.7676C220.187 33.8014 220.322 33.8691 220.413 33.9707C220.506 34.0723 220.552 34.2044 220.552 34.3672C220.552 34.5833 220.475 34.7526 220.321 34.875C220.168 34.9961 219.954 35.0566 219.681 35.0566C219.573 35.0566 219.459 35.0449 219.341 35.0215C219.222 34.9993 219.094 34.9655 218.956 34.9199V34.5488C219.09 34.6178 219.218 34.6699 219.341 34.7051C219.463 34.7389 219.579 34.7559 219.688 34.7559C219.847 34.7559 219.97 34.724 220.058 34.6602C220.145 34.5951 220.188 34.5046 220.188 34.3887C220.188 34.222 220.029 34.1068 219.71 34.043L219.694 34.0391L219.56 34.0117C219.353 33.9714 219.201 33.9036 219.106 33.8086C219.011 33.7122 218.964 33.5814 218.964 33.416C218.964 33.2064 219.035 33.0449 219.177 32.9316C219.319 32.8171 219.521 32.7598 219.784 32.7598C219.901 32.7598 220.014 32.7708 220.122 32.793C220.23 32.8138 220.336 32.8457 220.44 32.8887Z" fill="#76FF9C"/>
|
||||
<path d="M217.958 33.7266V33.9023H216.401V33.9141C216.391 34.2122 216.448 34.4264 216.571 34.5566C216.696 34.6868 216.872 34.752 217.099 34.752C217.213 34.752 217.333 34.7337 217.458 34.6973C217.583 34.6608 217.716 34.6055 217.858 34.5312V34.8887C217.722 34.9447 217.59 34.9863 217.462 35.0137C217.336 35.0423 217.213 35.0566 217.095 35.0566C216.755 35.0566 216.489 34.9551 216.298 34.752C216.106 34.5475 216.011 34.2663 216.011 33.9082C216.011 33.5592 216.104 33.2806 216.292 33.0723C216.479 32.8639 216.729 32.7598 217.042 32.7598C217.321 32.7598 217.54 32.8542 217.7 33.043C217.862 33.2318 217.948 33.4596 217.958 33.7266ZM217.599 33.6211C217.583 33.4701 217.528 33.3398 217.433 33.2305C217.339 33.1198 217.203 33.0645 217.026 33.0645C216.853 33.0645 216.711 33.1217 216.599 33.2363C216.487 33.3509 216.425 33.4798 216.415 33.623L217.599 33.6211Z" fill="#76FF9C"/>
|
||||
<path d="M213.072 32.084H213.492L214.203 33.3711L214.912 32.084H215.336L214.4 33.6914V35H214.004V33.6914L213.072 32.084Z" fill="#76FF9C"/>
|
||||
<path d="M201.459 44.8145H202.068V45.5195H201.459V44.8145ZM201.459 46.2891H202.068V47H201.459V46.2891Z" fill="#76FF9C"/>
|
||||
<path d="M199.751 44.8887V45.2402C199.648 45.1803 199.545 45.1354 199.44 45.1055C199.336 45.0755 199.23 45.0605 199.122 45.0605C198.959 45.0605 198.838 45.0872 198.757 45.1406C198.677 45.1927 198.638 45.2728 198.638 45.3809C198.638 45.4785 198.668 45.5514 198.728 45.5996C198.787 45.6478 198.937 45.6947 199.175 45.7402L199.319 45.7676C199.498 45.8014 199.632 45.8691 199.724 45.9707C199.816 46.0723 199.862 46.2044 199.862 46.3672C199.862 46.5833 199.785 46.7526 199.632 46.875C199.478 46.9961 199.265 47.0566 198.991 47.0566C198.883 47.0566 198.77 47.0449 198.651 47.0215C198.533 46.9993 198.405 46.9655 198.267 46.9199V46.5488C198.401 46.6178 198.529 46.6699 198.651 46.7051C198.774 46.7389 198.89 46.7559 198.999 46.7559C199.158 46.7559 199.281 46.724 199.368 46.6602C199.455 46.5951 199.499 46.5046 199.499 46.3887C199.499 46.222 199.34 46.1068 199.021 46.043L199.005 46.0391L198.87 46.0117C198.663 45.9714 198.512 45.9036 198.417 45.8086C198.322 45.7122 198.274 45.5814 198.274 45.416C198.274 45.2064 198.345 45.0449 198.487 44.9316C198.629 44.8171 198.832 44.7598 199.095 44.7598C199.212 44.7598 199.325 44.7708 199.433 44.793C199.541 44.8138 199.647 44.8457 199.751 44.8887Z" fill="#76FF9C"/>
|
||||
<path d="M196.485 46.209C196.485 46.3704 196.515 46.4922 196.573 46.5742C196.633 46.6562 196.721 46.6973 196.837 46.6973H197.257V47H196.802C196.587 47 196.42 46.9316 196.302 46.7949C196.185 46.6569 196.126 46.4616 196.126 46.209V44.2305H195.55V43.9492H196.485V46.209Z" fill="#76FF9C"/>
|
||||
<path d="M193.715 46.209C193.715 46.3704 193.744 46.4922 193.803 46.5742C193.863 46.6562 193.951 46.6973 194.066 46.6973H194.486V47H194.031C193.816 47 193.65 46.9316 193.531 46.7949C193.414 46.6569 193.355 46.4616 193.355 46.209V44.2305H192.779V43.9492H193.715V46.209Z" fill="#76FF9C"/>
|
||||
<path d="M190.157 44.8203H191.077V46.7207H191.79V47H190.005V46.7207H190.718V45.0996H190.157V44.8203ZM190.718 43.9707H191.077V44.4238H190.718V43.9707Z" fill="#76FF9C"/>
|
||||
<path d="M187.231 43.9609H187.603V45.7207L188.546 44.8125H188.983L188.122 45.6367L189.118 47H188.679L187.87 45.8711L187.603 46.123V47H187.231V43.9609Z" fill="#76FF9C"/>
|
||||
<path d="M185.977 44.1836V44.584C185.857 44.5072 185.736 44.4492 185.615 44.4102C185.495 44.3711 185.374 44.3516 185.252 44.3516C185.066 44.3516 184.919 44.3952 184.811 44.4824C184.702 44.5684 184.648 44.6849 184.648 44.832C184.648 44.9609 184.684 45.0592 184.754 45.127C184.826 45.1947 184.958 45.2513 185.152 45.2969L185.359 45.3438C185.633 45.4076 185.832 45.5078 185.957 45.6445C186.082 45.7812 186.145 45.9674 186.145 46.2031C186.145 46.4805 186.059 46.6921 185.887 46.8379C185.715 46.9837 185.465 47.0566 185.137 47.0566C185 47.0566 184.863 47.0417 184.725 47.0117C184.587 46.9831 184.448 46.9395 184.309 46.8809V46.4609C184.458 46.556 184.6 46.6257 184.732 46.6699C184.867 46.7142 185.001 46.7363 185.137 46.7363C185.336 46.7363 185.491 46.6921 185.602 46.6035C185.712 46.5137 185.768 46.3887 185.768 46.2285C185.768 46.0827 185.729 45.9714 185.652 45.8945C185.577 45.8177 185.445 45.7585 185.256 45.7168L185.045 45.668C184.774 45.6068 184.577 45.5143 184.455 45.3906C184.333 45.2669 184.271 45.1009 184.271 44.8926C184.271 44.6322 184.359 44.4238 184.533 44.2676C184.709 44.11 184.942 44.0312 185.232 44.0312C185.344 44.0312 185.462 44.0443 185.586 44.0703C185.71 44.0951 185.84 44.1328 185.977 44.1836Z" fill="#76FF9C"/>
|
||||
<path d="M242.377 45.8887C242.377 45.6191 242.333 45.4147 242.244 45.2754C242.157 45.1348 242.029 45.0645 241.861 45.0645C241.686 45.0645 241.551 45.1348 241.459 45.2754C241.367 45.4147 241.32 45.6191 241.32 45.8887C241.32 46.1582 241.367 46.3639 241.459 46.5059C241.553 46.6465 241.688 46.7168 241.865 46.7168C242.031 46.7168 242.157 46.6458 242.244 46.5039C242.333 46.362 242.377 46.1569 242.377 45.8887ZM242.736 46.8594C242.736 47.1875 242.659 47.4362 242.504 47.6055C242.349 47.7747 242.121 47.8594 241.82 47.8594C241.721 47.8594 241.618 47.8503 241.51 47.832C241.402 47.8138 241.294 47.7871 241.186 47.752V47.3965C241.313 47.4564 241.429 47.5007 241.533 47.5293C241.637 47.5579 241.733 47.5723 241.82 47.5723C242.014 47.5723 242.156 47.5195 242.244 47.4141C242.333 47.3086 242.377 47.1413 242.377 46.9121V46.8965V46.6523C242.32 46.7747 242.242 46.8659 242.143 46.9258C242.044 46.9857 241.923 47.0156 241.781 47.0156C241.526 47.0156 241.322 46.9134 241.17 46.709C241.018 46.5046 240.941 46.2311 240.941 45.8887C240.941 45.5449 241.018 45.2708 241.17 45.0664C241.322 44.862 241.526 44.7598 241.781 44.7598C241.922 44.7598 242.041 44.7878 242.139 44.8438C242.236 44.8997 242.316 44.9863 242.377 45.1035V44.8203H242.736V46.8594Z" fill="#76FF9C"/>
|
||||
<path d="M239.984 45.6445V47H239.623V45.6445C239.623 45.4479 239.589 45.3034 239.52 45.2109C239.451 45.1185 239.342 45.0723 239.195 45.0723C239.027 45.0723 238.898 45.1322 238.807 45.252C238.717 45.3704 238.672 45.541 238.672 45.7637V47H238.312V44.8125H238.672V45.1406C238.736 45.0156 238.822 44.9212 238.932 44.8574C239.041 44.7923 239.171 44.7598 239.32 44.7598C239.543 44.7598 239.709 44.8333 239.818 44.9805C239.929 45.1263 239.984 45.3477 239.984 45.6445Z" fill="#76FF9C"/>
|
||||
<path d="M235.778 44.8203H236.698V46.7207H237.411V47H235.626V46.7207H236.339V45.0996H235.778V44.8203ZM236.339 43.9707H236.698V44.4238H236.339V43.9707Z" fill="#76FF9C"/>
|
||||
<path d="M233.59 44.1914V44.8125H234.406V45.0918H233.59V46.2793C233.59 46.4408 233.62 46.5534 233.682 46.6172C233.743 46.681 233.85 46.7129 234.002 46.7129H234.406V47H233.967C233.697 47 233.507 46.946 233.396 46.8379C233.286 46.7298 233.23 46.5436 233.23 46.2793V45.0918H232.646V44.8125H233.23V44.1914H233.59Z" fill="#76FF9C"/>
|
||||
<path d="M230.992 45.9004H230.873C230.663 45.9004 230.505 45.9375 230.398 46.0117C230.293 46.0846 230.24 46.194 230.24 46.3398C230.24 46.4714 230.28 46.5736 230.359 46.6465C230.439 46.7194 230.549 46.7559 230.689 46.7559C230.887 46.7559 231.043 46.6875 231.156 46.5508C231.27 46.4128 231.327 46.2227 231.328 45.9805V45.9004H230.992ZM231.689 45.752V47H231.328V46.6758C231.251 46.806 231.154 46.9023 231.037 46.9648C230.921 47.026 230.78 47.0566 230.613 47.0566C230.391 47.0566 230.213 46.9941 230.08 46.8691C229.947 46.7428 229.881 46.5742 229.881 46.3633C229.881 46.1198 229.962 45.9349 230.125 45.8086C230.289 45.6823 230.529 45.6191 230.846 45.6191H231.328V45.5625C231.327 45.388 231.283 45.2617 231.195 45.1836C231.108 45.1042 230.969 45.0645 230.777 45.0645C230.655 45.0645 230.531 45.082 230.406 45.1172C230.281 45.1523 230.16 45.2038 230.041 45.2715V44.9121C230.174 44.8613 230.301 44.8236 230.422 44.7988C230.544 44.7728 230.663 44.7598 230.777 44.7598C230.958 44.7598 231.113 44.7865 231.24 44.8398C231.369 44.8932 231.473 44.9733 231.553 45.0801C231.602 45.1452 231.637 45.2259 231.658 45.3223C231.679 45.4173 231.689 45.5605 231.689 45.752Z" fill="#76FF9C"/>
|
||||
<path d="M229.038 45.7266V45.9023H227.481V45.9141C227.471 46.2122 227.528 46.4264 227.651 46.5566C227.776 46.6868 227.952 46.752 228.179 46.752C228.293 46.752 228.413 46.7337 228.538 46.6973C228.663 46.6608 228.797 46.6055 228.938 46.5312V46.8887C228.802 46.9447 228.67 46.9863 228.542 47.0137C228.416 47.0423 228.293 47.0566 228.175 47.0566C227.835 47.0566 227.569 46.9551 227.378 46.752C227.187 46.5475 227.091 46.2663 227.091 45.9082C227.091 45.5592 227.185 45.2806 227.372 45.0723C227.56 44.8639 227.81 44.7598 228.122 44.7598C228.401 44.7598 228.62 44.8542 228.78 45.043C228.942 45.2318 229.028 45.4596 229.038 45.7266ZM228.679 45.6211C228.663 45.4701 228.608 45.3398 228.513 45.2305C228.419 45.1198 228.284 45.0645 228.106 45.0645C227.933 45.0645 227.791 45.1217 227.679 45.2363C227.567 45.3509 227.506 45.4798 227.495 45.623L228.679 45.6211Z" fill="#76FF9C"/>
|
||||
<path d="M223.498 45.7266V45.9023H221.941V45.9141C221.931 46.2122 221.988 46.4264 222.111 46.5566C222.236 46.6868 222.412 46.752 222.639 46.752C222.753 46.752 222.873 46.7337 222.998 46.6973C223.123 46.6608 223.257 46.6055 223.398 46.5312V46.8887C223.262 46.9447 223.13 46.9863 223.002 47.0137C222.876 47.0423 222.753 47.0566 222.635 47.0566C222.295 47.0566 222.029 46.9551 221.838 46.752C221.646 46.5475 221.551 46.2663 221.551 45.9082C221.551 45.5592 221.645 45.2806 221.832 45.0723C222.02 44.8639 222.27 44.7598 222.582 44.7598C222.861 44.7598 223.08 44.8542 223.24 45.043C223.402 45.2318 223.488 45.4596 223.498 45.7266ZM223.139 45.6211C223.123 45.4701 223.068 45.3398 222.973 45.2305C222.879 45.1198 222.743 45.0645 222.566 45.0645C222.393 45.0645 222.251 45.1217 222.139 45.2363C222.027 45.3509 221.965 45.4798 221.955 45.623L223.139 45.6211Z" fill="#76FF9C"/>
|
||||
<path d="M219.001 43.9609H219.372V45.7207L220.315 44.8125H220.753L219.892 45.6367L220.888 47H220.448L219.64 45.8711L219.372 46.123V47H219.001V43.9609Z" fill="#76FF9C"/>
|
||||
<path d="M217.142 45.9004H217.022C216.813 45.9004 216.655 45.9375 216.548 46.0117C216.442 46.0846 216.39 46.194 216.39 46.3398C216.39 46.4714 216.429 46.5736 216.509 46.6465C216.588 46.7194 216.698 46.7559 216.839 46.7559C217.037 46.7559 217.192 46.6875 217.306 46.5508C217.419 46.4128 217.476 46.2227 217.478 45.9805V45.9004H217.142ZM217.839 45.752V47H217.478V46.6758C217.401 46.806 217.304 46.9023 217.187 46.9648C217.071 47.026 216.929 47.0566 216.763 47.0566C216.54 47.0566 216.362 46.9941 216.229 46.8691C216.097 46.7428 216.03 46.5742 216.03 46.3633C216.03 46.1198 216.112 45.9349 216.274 45.8086C216.438 45.6823 216.679 45.6191 216.995 45.6191H217.478V45.5625C217.476 45.388 217.432 45.2617 217.345 45.1836C217.257 45.1042 217.118 45.0645 216.927 45.0645C216.804 45.0645 216.681 45.082 216.556 45.1172C216.431 45.1523 216.309 45.2038 216.19 45.2715V44.9121C216.323 44.8613 216.45 44.8236 216.571 44.7988C216.694 44.7728 216.812 44.7598 216.927 44.7598C217.108 44.7598 217.262 44.7865 217.39 44.8398C217.519 44.8932 217.623 44.9733 217.702 45.0801C217.752 45.1452 217.787 45.2259 217.808 45.3223C217.828 45.4173 217.839 45.5605 217.839 45.752Z" fill="#76FF9C"/>
|
||||
<path d="M215.096 46.8965C214.995 46.9499 214.893 46.9896 214.787 47.0156C214.682 47.043 214.57 47.0566 214.451 47.0566C214.077 47.0566 213.787 46.9245 213.58 46.6602C213.374 46.3958 213.271 46.0241 213.271 45.5449C213.271 45.0684 213.375 44.6973 213.582 44.4316C213.79 44.1647 214.08 44.0312 214.451 44.0312C214.57 44.0312 214.682 44.0449 214.787 44.0723C214.893 44.0983 214.995 44.138 215.096 44.1914V44.5957C214.999 44.5163 214.896 44.4557 214.785 44.4141C214.674 44.3724 214.563 44.3516 214.451 44.3516C214.195 44.3516 214.003 44.4505 213.875 44.6484C213.747 44.8464 213.684 45.1452 213.684 45.5449C213.684 45.9434 213.747 46.2415 213.875 46.4395C214.003 46.6374 214.195 46.7363 214.451 46.7363C214.566 46.7363 214.678 46.7155 214.787 46.6738C214.898 46.6322 215.001 46.5716 215.096 46.4922V46.8965Z" fill="#76FF9C"/>
|
||||
<rect x="215" y="64" width="30" height="11.4725" rx="5.02676" fill="#16CF89"/>
|
||||
<path d="M232.552 70.3827V70.5227C232.552 70.7444 232.594 70.8969 232.677 70.9802C232.76 71.0636 232.915 71.1052 233.14 71.1052H233.55C233.733 71.1052 233.867 71.0861 233.952 71.0477C234.039 71.0077 234.095 70.9386 234.12 70.8402C234.133 70.7852 234.154 70.7427 234.182 70.7127C234.212 70.6827 234.256 70.6677 234.315 70.6677C234.376 70.6677 234.423 70.6844 234.455 70.7177C234.486 70.7494 234.497 70.7961 234.487 70.8577C234.455 71.0661 234.361 71.2211 234.205 71.3227C234.05 71.4227 233.831 71.4727 233.55 71.4727H233.14C232.815 71.4727 232.574 71.3952 232.417 71.2402C232.262 71.0852 232.185 70.8461 232.185 70.5227V69.9477C232.185 69.6177 232.262 69.3761 232.417 69.2227C232.574 69.0677 232.815 68.9919 233.14 68.9952H233.55C233.875 68.9952 234.115 69.0727 234.27 69.2277C234.425 69.3811 234.502 69.6211 234.502 69.9477V70.1977C234.502 70.3211 234.441 70.3827 234.32 70.3827H232.552ZM233.14 69.3627C232.915 69.3594 232.76 69.3994 232.677 69.4827C232.594 69.5661 232.552 69.7211 232.552 69.9477V70.0152H234.135V69.9477C234.135 69.7227 234.093 69.5694 234.01 69.4877C233.928 69.4044 233.775 69.3627 233.55 69.3627H233.14Z" fill="black"/>
|
||||
<path d="M230.519 71.4726C230.396 71.4726 230.334 71.411 230.334 71.2876V69.1776C230.334 69.056 230.396 68.9951 230.519 68.9951C230.641 68.9951 230.701 69.056 230.701 69.1776V69.4376C230.796 69.2926 230.921 69.1826 231.076 69.1076C231.233 69.0326 231.415 68.9951 231.621 68.9951C231.745 68.9951 231.806 69.056 231.806 69.1776C231.806 69.301 231.745 69.3626 231.621 69.3626C231.33 69.3626 231.106 69.421 230.951 69.5376C230.796 69.6526 230.713 69.8101 230.701 70.0101V71.2876C230.701 71.411 230.641 71.4726 230.519 71.4726Z" fill="black"/>
|
||||
<path d="M229.079 68.57C228.936 68.57 228.864 68.4967 228.864 68.35V68.215C228.864 68.0717 228.936 68 229.079 68H229.214C229.353 68 229.422 68.0717 229.422 68.215V68.35C229.422 68.4967 229.353 68.57 229.214 68.57H229.079ZM229.147 71.4725C229.023 71.4725 228.962 71.4108 228.962 71.2875V69.1775C228.962 69.0558 229.023 68.995 229.147 68.995C229.268 68.995 229.329 69.0558 229.329 69.1775V71.2875C229.329 71.4108 229.268 71.4725 229.147 71.4725Z" fill="black"/>
|
||||
<path d="M225.348 71.4727C225.298 71.4727 225.255 71.4544 225.218 71.4177C225.181 71.381 225.163 71.3377 225.163 71.2877V68.3227C225.163 68.2727 225.181 68.2294 225.218 68.1927C225.255 68.156 225.298 68.1377 225.348 68.1377C225.398 68.1377 225.441 68.156 225.476 68.1927C225.512 68.2294 225.531 68.2727 225.531 68.3227V69.6002H227.591V68.3227C227.591 68.2727 227.608 68.2294 227.643 68.1927C227.678 68.156 227.721 68.1377 227.773 68.1377C227.823 68.1377 227.866 68.156 227.903 68.1927C227.94 68.2294 227.958 68.2727 227.958 68.3227V71.2877C227.958 71.3377 227.94 71.381 227.903 71.4177C227.866 71.4544 227.823 71.4727 227.773 71.4727C227.721 71.4727 227.678 71.4544 227.643 71.4177C227.608 71.381 227.591 71.3377 227.591 71.2877V69.9677H225.531V71.2877C225.531 71.3377 225.512 71.381 225.476 71.4177C225.441 71.4544 225.398 71.4727 225.348 71.4727Z" fill="black"/>
|
||||
<path d="M204.452 71.4725C204.352 71.4725 204.286 71.4225 204.254 71.3225L203.554 69.2375C203.516 69.1242 203.555 69.0475 203.672 69.0075C203.787 68.9692 203.864 69.0083 203.904 69.125L204.509 70.9175H204.452L205.024 69.1375C205.058 69.0408 205.128 68.9925 205.234 68.9925C205.338 68.9925 205.403 69.0433 205.432 69.145L205.969 70.9025H205.919L206.544 69.1225C206.588 69.0042 206.666 68.9658 206.779 69.0075C206.896 69.0492 206.933 69.1283 206.889 69.245L206.127 71.3225C206.09 71.4225 206.02 71.4725 205.917 71.4725C205.81 71.4725 205.742 71.4217 205.712 71.32L205.179 69.5675H205.232L204.649 71.3225C204.634 71.3742 204.609 71.4125 204.574 71.4375C204.539 71.4608 204.498 71.4725 204.452 71.4725Z" fill="#16CF89"/>
|
||||
<path d="M201.139 70.3827V70.5227C201.139 70.7444 201.181 70.8969 201.264 70.9802C201.347 71.0636 201.501 71.1052 201.726 71.1052H202.136C202.32 71.1052 202.454 71.0861 202.539 71.0477C202.626 71.0077 202.681 70.9386 202.706 70.8402C202.72 70.7852 202.741 70.7427 202.769 70.7127C202.799 70.6827 202.843 70.6677 202.901 70.6677C202.963 70.6677 203.01 70.6844 203.041 70.7177C203.073 70.7494 203.084 70.7961 203.074 70.8577C203.042 71.0661 202.948 71.2211 202.791 71.3227C202.636 71.4227 202.418 71.4727 202.136 71.4727H201.726C201.401 71.4727 201.161 71.3952 201.004 71.2402C200.849 71.0852 200.771 70.8461 200.771 70.5227V69.9477C200.771 69.6177 200.849 69.3761 201.004 69.2227C201.161 69.0677 201.401 68.9919 201.726 68.9952H202.136C202.461 68.9952 202.701 69.0727 202.856 69.2277C203.011 69.3811 203.089 69.6211 203.089 69.9477V70.1977C203.089 70.3211 203.028 70.3827 202.906 70.3827H201.139ZM201.726 69.3627C201.501 69.3594 201.347 69.3994 201.264 69.4827C201.181 69.5661 201.139 69.7211 201.139 69.9477V70.0152H202.721V69.9477C202.721 69.7227 202.68 69.5694 202.596 69.4877C202.515 69.4044 202.361 69.3627 202.136 69.3627H201.726Z" fill="#16CF89"/>
|
||||
<path d="M199.619 68.57C199.476 68.57 199.404 68.4967 199.404 68.35V68.215C199.404 68.0717 199.476 68 199.619 68H199.754C199.893 68 199.962 68.0717 199.962 68.215V68.35C199.962 68.4967 199.893 68.57 199.754 68.57H199.619ZM199.687 71.4725C199.563 71.4725 199.502 71.4108 199.502 71.2875V69.1775C199.502 69.0558 199.563 68.995 199.687 68.995C199.808 68.995 199.869 69.0558 199.869 69.1775V71.2875C199.869 71.4108 199.808 71.4725 199.687 71.4725Z" fill="#16CF89"/>
|
||||
<path d="M197.876 71.3349C197.856 71.3832 197.829 71.4182 197.794 71.4399C197.759 71.4616 197.715 71.4724 197.664 71.4724C197.569 71.4724 197.501 71.4241 197.461 71.3274L196.586 69.2549C196.535 69.1399 196.567 69.0599 196.684 69.0149C196.792 68.9649 196.872 68.9974 196.924 69.1124L197.761 71.0949H197.579L198.486 69.1049C198.511 69.0549 198.545 69.0216 198.586 69.0049C198.63 68.9882 198.678 68.9916 198.731 69.0149C198.841 69.0666 198.871 69.1482 198.821 69.2599L197.876 71.3349Z" fill="#16CF89"/>
|
||||
<path d="M195.048 71.4726C194.925 71.4726 194.863 71.411 194.863 71.2876V69.1776C194.863 69.056 194.925 68.9951 195.048 68.9951C195.17 68.9951 195.231 69.056 195.231 69.1776V69.4376C195.326 69.2926 195.451 69.1826 195.606 69.1076C195.762 69.0326 195.944 68.9951 196.151 68.9951C196.274 68.9951 196.336 69.056 196.336 69.1776C196.336 69.301 196.274 69.3626 196.151 69.3626C195.859 69.3626 195.636 69.421 195.481 69.5376C195.326 69.6526 195.242 69.8101 195.231 70.0101V71.2876C195.231 71.411 195.17 71.4726 195.048 71.4726Z" fill="#16CF89"/>
|
||||
<path d="M192.013 70.3827V70.5227C192.013 70.7444 192.055 70.8969 192.138 70.9802C192.221 71.0636 192.376 71.1052 192.601 71.1052H193.011C193.194 71.1052 193.328 71.0861 193.413 71.0477C193.5 71.0077 193.556 70.9386 193.581 70.8402C193.594 70.7852 193.615 70.7427 193.643 70.7127C193.673 70.6827 193.717 70.6677 193.776 70.6677C193.837 70.6677 193.884 70.6844 193.916 70.7177C193.947 70.7494 193.958 70.7961 193.948 70.8577C193.916 71.0661 193.822 71.2211 193.666 71.3227C193.511 71.4227 193.292 71.4727 193.011 71.4727H192.601C192.276 71.4727 192.035 71.3952 191.878 71.2402C191.723 71.0852 191.646 70.8461 191.646 70.5227V69.9477C191.646 69.6177 191.723 69.3761 191.878 69.2227C192.035 69.0677 192.276 68.9919 192.601 68.9952H193.011C193.336 68.9952 193.576 69.0727 193.731 69.2277C193.886 69.3811 193.963 69.6211 193.963 69.9477V70.1977C193.963 70.3211 193.902 70.3827 193.781 70.3827H192.013ZM192.601 69.3627C192.376 69.3594 192.221 69.3994 192.138 69.4827C192.055 69.5661 192.013 69.7211 192.013 69.9477V70.0152H193.596V69.9477C193.596 69.7227 193.554 69.5694 193.471 69.4877C193.389 69.4044 193.236 69.3627 193.011 69.3627H192.601Z" fill="#16CF89"/>
|
||||
<path d="M190.987 71.4727C190.665 71.4727 190.428 71.3969 190.277 71.2452C190.125 71.0935 190.049 70.8577 190.049 70.5377V69.3627H189.787C189.663 69.3627 189.602 69.301 189.602 69.1777C189.602 69.056 189.663 68.9952 189.787 68.9952H190.049V68.5727C190.049 68.4494 190.11 68.3877 190.232 68.3877C190.355 68.3877 190.417 68.4494 190.417 68.5727V68.9952H191.009C191.131 68.9952 191.192 69.056 191.192 69.1777C191.192 69.301 191.131 69.3627 191.009 69.3627H190.417V70.5377C190.417 70.7577 190.457 70.9077 190.537 70.9877C190.618 71.066 190.768 71.1052 190.987 71.1052C191.047 71.1052 191.092 71.1202 191.124 71.1502C191.156 71.1785 191.172 71.2244 191.172 71.2877C191.172 71.411 191.11 71.4727 190.987 71.4727Z" fill="#16CF89"/>
|
||||
<path d="M186.914 71.4726C186.79 71.4726 186.729 71.411 186.729 71.2876V69.1776C186.729 69.056 186.79 68.9951 186.914 68.9951C187.035 68.9951 187.096 69.056 187.096 69.1776V69.3126C187.266 69.101 187.535 68.9951 187.904 68.9951H188.044C188.369 68.9951 188.609 69.0726 188.764 69.2276C188.919 69.3826 188.996 69.6226 188.996 69.9476V71.2876C188.996 71.411 188.935 71.4726 188.814 71.4726C188.69 71.4726 188.629 71.411 188.629 71.2876V69.9476C188.629 69.7226 188.586 69.5693 188.501 69.4876C188.418 69.4043 188.265 69.3626 188.044 69.3626H187.904C187.684 69.3626 187.499 69.3918 187.351 69.4501C187.203 69.5068 187.118 69.5968 187.096 69.7201V71.2876C187.096 71.411 187.035 71.4726 186.914 71.4726Z" fill="#16CF89"/>
|
||||
<path d="M185.541 71.4721C185.48 71.4721 185.433 71.4571 185.401 71.4271C185.371 71.3955 185.356 71.3488 185.356 71.2871V68.3246C185.356 68.2613 185.371 68.2146 185.401 68.1846C185.433 68.1546 185.48 68.1396 185.541 68.1396C185.603 68.1396 185.649 68.1546 185.679 68.1846C185.709 68.2146 185.724 68.2613 185.724 68.3246V71.2871C185.724 71.3488 185.709 71.3955 185.679 71.4271C185.649 71.4571 185.603 71.4721 185.541 71.4721Z" fill="#16CF89"/>
|
||||
<rect x="181.25" y="64.25" width="30.0984" height="10.9725" rx="4.77676" stroke="#16CF89" stroke-width="0.5"/>
|
||||
<path d="M88.2432 15.2109H88.9307V16H88.2432V15.2109Z" fill="#76FF9C"/>
|
||||
<path d="M85.4736 15.2109H86.1611V16H85.4736V15.2109Z" fill="#76FF9C"/>
|
||||
<path d="M82.7031 15.2109H83.3906V16H82.7031V15.2109Z" fill="#76FF9C"/>
|
||||
<path d="M79.9521 13.4082V14.5039H80.4092C80.5915 14.5039 80.7334 14.4557 80.835 14.3594C80.9378 14.263 80.9893 14.1283 80.9893 13.9551C80.9893 13.7819 80.9385 13.6478 80.8369 13.5527C80.7354 13.4564 80.5928 13.4082 80.4092 13.4082H79.9521ZM79.5576 13.084H80.4092C80.7347 13.084 80.9814 13.1582 81.1494 13.3066C81.3174 13.4538 81.4014 13.6699 81.4014 13.9551C81.4014 14.2428 81.3174 14.4603 81.1494 14.6074C80.9827 14.7546 80.736 14.8281 80.4092 14.8281H79.9521V16H79.5576V13.084Z" fill="#76FF9C"/>
|
||||
<path d="M77.1826 13.4082V14.5039H77.6396C77.8219 14.5039 77.9639 14.4557 78.0654 14.3594C78.1683 14.263 78.2197 14.1283 78.2197 13.9551C78.2197 13.7819 78.1689 13.6478 78.0674 13.5527C77.9658 13.4564 77.8232 13.4082 77.6396 13.4082H77.1826ZM76.7881 13.084H77.6396C77.9652 13.084 78.2119 13.1582 78.3799 13.3066C78.5479 13.4538 78.6318 13.6699 78.6318 13.9551C78.6318 14.2428 78.5479 14.4603 78.3799 14.6074C78.2132 14.7546 77.9665 14.8281 77.6396 14.8281H77.1826V16H76.7881V13.084Z" fill="#76FF9C"/>
|
||||
<path d="M74.8359 13.4316L74.4199 14.9238H75.252L74.8359 13.4316ZM74.5977 13.084H75.0762L75.9688 16H75.5605L75.3457 15.2402H74.3242L74.1133 16H73.7051L74.5977 13.084Z" fill="#76FF9C"/>
|
||||
<path d="M70.0693 13.1836V13.584C69.9495 13.5072 69.8291 13.4492 69.708 13.4102C69.5882 13.3711 69.4671 13.3516 69.3447 13.3516C69.1585 13.3516 69.0114 13.3952 68.9033 13.4824C68.7952 13.5684 68.7412 13.6849 68.7412 13.832C68.7412 13.9609 68.7764 14.0592 68.8467 14.127C68.9183 14.1947 69.0511 14.2513 69.2451 14.2969L69.4521 14.3438C69.7256 14.4076 69.9248 14.5078 70.0498 14.6445C70.1748 14.7812 70.2373 14.9674 70.2373 15.2031C70.2373 15.4805 70.1514 15.6921 69.9795 15.8379C69.8076 15.9837 69.5576 16.0566 69.2295 16.0566C69.0928 16.0566 68.9554 16.0417 68.8174 16.0117C68.6794 15.9831 68.5407 15.9395 68.4014 15.8809V15.4609C68.5511 15.556 68.6924 15.6257 68.8252 15.6699C68.9593 15.7142 69.0941 15.7363 69.2295 15.7363C69.4287 15.7363 69.5837 15.6921 69.6943 15.6035C69.805 15.5137 69.8604 15.3887 69.8604 15.2285C69.8604 15.0827 69.8219 14.9714 69.7451 14.8945C69.6696 14.8177 69.5374 14.7585 69.3486 14.7168L69.1377 14.668C68.8669 14.6068 68.6702 14.5143 68.5479 14.3906C68.4255 14.2669 68.3643 14.1009 68.3643 13.8926C68.3643 13.6322 68.4515 13.4238 68.626 13.2676C68.8018 13.11 69.0348 13.0312 69.3252 13.0312C69.4372 13.0312 69.555 13.0443 69.6787 13.0703C69.8024 13.0951 69.9326 13.1328 70.0693 13.1836Z" fill="#76FF9C"/>
|
||||
<path d="M65.707 13.084H67.4375V13.416H66.1016V14.2012H67.3789V14.5332H66.1016V15.668H67.4746V16H65.707V13.084Z" fill="#76FF9C"/>
|
||||
<path d="M64.6484 15.8965C64.5482 15.9499 64.4453 15.9896 64.3398 16.0156C64.2344 16.043 64.1224 16.0566 64.0039 16.0566C63.6302 16.0566 63.3398 15.9245 63.1328 15.6602C62.9271 15.3958 62.8242 15.0241 62.8242 14.5449C62.8242 14.0684 62.9277 13.6973 63.1348 13.4316C63.3431 13.1647 63.6328 13.0312 64.0039 13.0312C64.1224 13.0312 64.2344 13.0449 64.3398 13.0723C64.4453 13.0983 64.5482 13.138 64.6484 13.1914V13.5957C64.5521 13.5163 64.4486 13.4557 64.3379 13.4141C64.2272 13.3724 64.1159 13.3516 64.0039 13.3516C63.7474 13.3516 63.5553 13.4505 63.4277 13.6484C63.3001 13.8464 63.2363 14.1452 63.2363 14.5449C63.2363 14.9434 63.3001 15.2415 63.4277 15.4395C63.5553 15.6374 63.7474 15.7363 64.0039 15.7363C64.1185 15.7363 64.2305 15.7155 64.3398 15.6738C64.4505 15.6322 64.5534 15.5716 64.6484 15.4922V15.8965Z" fill="#76FF9C"/>
|
||||
<path d="M61.2666 14.623C61.3682 14.6491 61.4548 14.6986 61.5264 14.7715C61.598 14.8431 61.6872 14.987 61.7939 15.2031L62.1904 16H61.7666L61.4189 15.2637C61.3187 15.054 61.2282 14.9193 61.1475 14.8594C61.068 14.7982 60.9639 14.7676 60.835 14.7676H60.458V16H60.0615V13.084H60.874C61.1943 13.084 61.4398 13.1562 61.6104 13.3008C61.7809 13.4453 61.8662 13.6543 61.8662 13.9277C61.8662 14.1204 61.8135 14.278 61.708 14.4004C61.6038 14.5215 61.4567 14.5957 61.2666 14.623ZM60.458 13.4082V14.4434H60.8896C61.0785 14.4434 61.2191 14.401 61.3115 14.3164C61.404 14.2318 61.4502 14.1022 61.4502 13.9277C61.4502 13.7598 61.4007 13.6315 61.3018 13.543C61.2041 13.4531 61.0615 13.4082 60.874 13.4082H60.458Z" fill="#76FF9C"/>
|
||||
<path d="M57.2988 14.8809V13.084H57.6953V15.0605C57.6953 15.2025 57.6992 15.304 57.707 15.3652C57.7148 15.4251 57.7285 15.4714 57.748 15.5039C57.7897 15.5807 57.8496 15.6387 57.9277 15.6777C58.0072 15.7168 58.1029 15.7363 58.2148 15.7363C58.3281 15.7363 58.4238 15.7168 58.502 15.6777C58.5801 15.6387 58.6406 15.5807 58.6836 15.5039C58.7031 15.4714 58.7168 15.4251 58.7246 15.3652C58.7324 15.3053 58.7363 15.2051 58.7363 15.0645V13.084H59.1309V14.8809C59.1309 15.179 59.112 15.3913 59.0742 15.5176C59.0378 15.6426 58.974 15.7461 58.8828 15.8281C58.7969 15.9049 58.6986 15.9622 58.5879 16C58.4772 16.0378 58.3529 16.0566 58.2148 16.0566C58.0781 16.0566 57.9544 16.0378 57.8438 16C57.7331 15.9622 57.6341 15.9049 57.5469 15.8281C57.457 15.7474 57.3932 15.6432 57.3555 15.5156C57.3177 15.3867 57.2988 15.1751 57.2988 14.8809Z" fill="#76FF9C"/>
|
||||
<path d="M56.0098 14.5449C56.0098 14.1165 55.9655 13.8105 55.877 13.627C55.7897 13.4434 55.6458 13.3516 55.4453 13.3516C55.2461 13.3516 55.1022 13.4434 55.0137 13.627C54.9264 13.8105 54.8828 14.1165 54.8828 14.5449C54.8828 14.972 54.9264 15.2773 55.0137 15.4609C55.1022 15.6445 55.2461 15.7363 55.4453 15.7363C55.6458 15.7363 55.7897 15.6452 55.877 15.4629C55.9655 15.2793 56.0098 14.9733 56.0098 14.5449ZM56.4219 14.5449C56.4219 15.0527 56.3411 15.4316 56.1797 15.6816C56.0195 15.9316 55.7747 16.0566 55.4453 16.0566C55.1159 16.0566 54.8711 15.9323 54.7109 15.6836C54.5508 15.4349 54.4707 15.0553 54.4707 14.5449C54.4707 14.0358 54.5508 13.6562 54.7109 13.4062C54.8724 13.1562 55.1172 13.0312 55.4453 13.0312C55.7747 13.0312 56.0195 13.1562 56.1797 13.4062C56.3411 13.6562 56.4219 14.0358 56.4219 14.5449Z" fill="#76FF9C"/>
|
||||
<path d="M53.4482 13.1836V13.584C53.3284 13.5072 53.208 13.4492 53.0869 13.4102C52.9671 13.3711 52.846 13.3516 52.7236 13.3516C52.5374 13.3516 52.3903 13.3952 52.2822 13.4824C52.1742 13.5684 52.1201 13.6849 52.1201 13.832C52.1201 13.9609 52.1553 14.0592 52.2256 14.127C52.2972 14.1947 52.43 14.2513 52.624 14.2969L52.8311 14.3438C53.1045 14.4076 53.3037 14.5078 53.4287 14.6445C53.5537 14.7812 53.6162 14.9674 53.6162 15.2031C53.6162 15.4805 53.5303 15.6921 53.3584 15.8379C53.1865 15.9837 52.9365 16.0566 52.6084 16.0566C52.4717 16.0566 52.3343 16.0417 52.1963 16.0117C52.0583 15.9831 51.9196 15.9395 51.7803 15.8809V15.4609C51.93 15.556 52.0713 15.6257 52.2041 15.6699C52.3382 15.7142 52.473 15.7363 52.6084 15.7363C52.8076 15.7363 52.9626 15.6921 53.0732 15.6035C53.1839 15.5137 53.2393 15.3887 53.2393 15.2285C53.2393 15.0827 53.2008 14.9714 53.124 14.8945C53.0485 14.8177 52.9163 14.7585 52.7275 14.7168L52.5166 14.668C52.2458 14.6068 52.0492 14.5143 51.9268 14.3906C51.8044 14.2669 51.7432 14.1009 51.7432 13.8926C51.7432 13.6322 51.8304 13.4238 52.0049 13.2676C52.1807 13.11 52.4137 13.0312 52.7041 13.0312C52.8161 13.0312 52.9339 13.0443 53.0576 13.0703C53.1813 13.0951 53.3115 13.1328 53.4482 13.1836Z" fill="#76FF9C"/>
|
||||
<path d="M49.0859 13.084H50.8164V13.416H49.4805V14.2012H50.7578V14.5332H49.4805V15.668H50.8535V16H49.0859V13.084Z" fill="#76FF9C"/>
|
||||
<path d="M47.416 14.623C47.5176 14.6491 47.6042 14.6986 47.6758 14.7715C47.7474 14.8431 47.8366 14.987 47.9434 15.2031L48.3398 16H47.916L47.5684 15.2637C47.4681 15.054 47.3776 14.9193 47.2969 14.8594C47.2174 14.7982 47.1133 14.7676 46.9844 14.7676H46.6074V16H46.2109V13.084H47.0234C47.3438 13.084 47.5892 13.1562 47.7598 13.3008C47.9303 13.4453 48.0156 13.6543 48.0156 13.9277C48.0156 14.1204 47.9629 14.278 47.8574 14.4004C47.7533 14.5215 47.6061 14.5957 47.416 14.623ZM46.6074 13.4082V14.4434H47.0391C47.2279 14.4434 47.3685 14.401 47.4609 14.3164C47.5534 14.2318 47.5996 14.1022 47.5996 13.9277C47.5996 13.7598 47.5501 13.6315 47.4512 13.543C47.3535 13.4531 47.2109 13.4082 47.0234 13.4082H46.6074Z" fill="#76FF9C"/>
|
||||
<path d="M41.2422 15.6758C41.5742 15.6758 41.806 15.5944 41.9375 15.4316C42.069 15.2676 42.1348 14.972 42.1348 14.5449C42.1348 14.1139 42.069 13.8171 41.9375 13.6543C41.8073 13.4902 41.5755 13.4082 41.2422 13.4082H41.0547V15.6758H41.2422ZM41.25 13.084C41.6953 13.084 42.0234 13.2025 42.2344 13.4395C42.4453 13.6764 42.5508 14.0449 42.5508 14.5449C42.5508 15.0423 42.4453 15.4095 42.2344 15.6465C42.0234 15.8822 41.6953 16 41.25 16H40.6582V13.084H41.25Z" fill="#76FF9C"/>
|
||||
<path d="M38.0137 13.084H39.6328V13.416H39.0215V15.668H39.6328V16H38.0137V15.668H38.625V13.416H38.0137V13.084Z" fill="#76FF9C"/>
|
||||
<path d="M36.6182 14.5449C36.6182 14.1165 36.5739 13.8105 36.4854 13.627C36.3981 13.4434 36.2542 13.3516 36.0537 13.3516C35.8545 13.3516 35.7106 13.4434 35.6221 13.627C35.5348 13.8105 35.4912 14.1165 35.4912 14.5449C35.4912 14.972 35.5348 15.2773 35.6221 15.4609C35.7106 15.6445 35.8545 15.7363 36.0537 15.7363C36.2542 15.7363 36.3981 15.6452 36.4854 15.4629C36.5739 15.2793 36.6182 14.9733 36.6182 14.5449ZM37.0303 14.5449C37.0303 15.0527 36.9495 15.4316 36.7881 15.6816C36.6279 15.9316 36.3831 16.0566 36.0537 16.0566C35.7243 16.0566 35.4795 15.9323 35.3193 15.6836C35.1592 15.4349 35.0791 15.0553 35.0791 14.5449C35.0791 14.0358 35.1592 13.6562 35.3193 13.4062C35.4808 13.1562 35.7256 13.0312 36.0537 13.0312C36.3831 13.0312 36.6279 13.1562 36.7881 13.4062C36.9495 13.6562 37.0303 14.0358 37.0303 14.5449Z" fill="#76FF9C"/>
|
||||
<path d="M32.1182 13.0938H32.6572L33.7979 15.4863V13.0938H34.2178V16H33.6787L32.5381 13.6074V16H32.1182V13.0938Z" fill="#76FF9C"/>
|
||||
<path d="M30.5137 13.4316L30.0977 14.9238H30.9297L30.5137 13.4316ZM30.2754 13.084H30.7539L31.6465 16H31.2383L31.0234 15.2402H30.002L29.791 16H29.3828L30.2754 13.084Z" fill="#76FF9C"/>
|
||||
<path d="M26.6104 13.0938H27.1377L27.6416 14.5742L28.1494 13.0938H28.6787V16H28.3135V13.4316L27.7939 14.9629H27.4951L26.9736 13.4316V16H26.6104V13.0938Z" fill="#76FF9C"/>
|
||||
<path d="M24.0576 14.8809V13.084H24.4541V15.0605C24.4541 15.2025 24.458 15.304 24.4658 15.3652C24.4736 15.4251 24.4873 15.4714 24.5068 15.5039C24.5485 15.5807 24.6084 15.6387 24.6865 15.6777C24.766 15.7168 24.8617 15.7363 24.9736 15.7363C25.0869 15.7363 25.1826 15.7168 25.2607 15.6777C25.3389 15.6387 25.3994 15.5807 25.4424 15.5039C25.4619 15.4714 25.4756 15.4251 25.4834 15.3652C25.4912 15.3053 25.4951 15.2051 25.4951 15.0645V13.084H25.8896V14.8809C25.8896 15.179 25.8708 15.3913 25.833 15.5176C25.7965 15.6426 25.7327 15.7461 25.6416 15.8281C25.5557 15.9049 25.4574 15.9622 25.3467 16C25.236 16.0378 25.1117 16.0566 24.9736 16.0566C24.8369 16.0566 24.7132 16.0378 24.6025 16C24.4919 15.9622 24.3929 15.9049 24.3057 15.8281C24.2158 15.7474 24.152 15.6432 24.1143 15.5156C24.0765 15.3867 24.0576 15.1751 24.0576 14.8809Z" fill="#76FF9C"/>
|
||||
<path d="M21.2676 13.084H21.6641V14.2012H22.7441V13.084H23.1406V16H22.7441V14.5332H21.6641V16H21.2676V13.084Z" fill="#76FF9C"/>
|
||||
<rect x="108.108" y="15.1079" width="40.7861" height="2.5896" rx="1.2948" fill="#32F28B" fill-opacity="0.2" stroke="#49FF92" stroke-width="0.2158"/>
|
||||
<rect x="108" y="15" width="37" height="3" rx="1.5" fill="#32F296" fill-opacity="0.7"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_1654_6180" x1="179.612" y1="39.0494" x2="179.705" y2="60.5883" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F783F2"/>
|
||||
<stop offset="1" stop-color="#E040DA"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1654_6180" x1="76.7631" y1="32.4688" x2="76.7631" y2="54.6166" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F783F2"/>
|
||||
<stop offset="1" stop-color="#E040DA"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1654_6180" x1="132.871" y1="33.8039" x2="127.461" y2="55.2808" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F783F2"/>
|
||||
<stop offset="1" stop-color="#E040DA"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1654_6180" x1="36.0705" y1="34.0034" x2="32.157" y2="55.5599" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F783F2"/>
|
||||
<stop offset="1" stop-color="#E040DA"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_1654_6180" x1="227.129" y1="35.0034" x2="223.216" y2="56.5599" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F783F2"/>
|
||||
<stop offset="1" stop-color="#E040DA"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 57 KiB |
@@ -0,0 +1,88 @@
|
||||
<svg width="292" height="103" viewBox="0 0 292 103" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1629_1236)">
|
||||
<rect width="292" height="102.768" fill="#1D1D26" />
|
||||
<g filter="url(#filter0_f_1629_1236)">
|
||||
<rect x="127.061" y="24.0273" width="67.9769" height="48.1233" rx="5.39499" fill="#DBFF00" fill-opacity="0.2" />
|
||||
</g>
|
||||
<g filter="url(#filter1_f_1629_1236)">
|
||||
<ellipse cx="114.976" cy="91.2494" rx="26.3275" ry="1.4027" fill="#270B31" fill-opacity="0.2" />
|
||||
</g>
|
||||
<path d="M120.513 89.9435C125.201 90.5149 125.733 77.9705 125.499 76.341C122.82 74.0638 119.785 75.2706 118.531 76.7349C119.587 82.9496 115.825 89.3722 120.513 89.9435Z" fill="#DE493C" />
|
||||
<path d="M137.124 51.4641C140.379 54.7814 129.31 62.662 127.841 63.3456C124.054 61.8307 127.668 56.6326 128.2 54.8112C133.89 52.3402 134.81 49.1059 137.124 51.4641Z" fill="url(#paint0_linear_1629_1236)" />
|
||||
<path d="M127.48 38.3358C121.061 28.1339 111.874 28.1337 105.963 33.2491C100.361 39.1921 104.388 46.0308 104.388 51.8133C104.388 57.3707 103.782 59.7954 102.965 66.2736C102.118 72.9784 104.86 82.856 116.105 81.9736C127.351 81.0912 129.657 67.0532 130.204 62.6732C130.752 58.2932 132.784 46.7665 127.48 38.3358Z" fill="url(#paint1_linear_1629_1236)" />
|
||||
<path d="M122.076 49.159C124.973 48.4161 126.833 46.4053 127.463 45.0828C126.675 43.4136 124.55 39.7369 122.351 38.3837C119.604 36.6921 115.953 38.5886 114.398 41.4993C113.154 43.8278 112.844 46.3799 112.439 48.1954C114.227 49.1381 118.146 50.167 122.076 49.159Z" fill="#FEF9F5" />
|
||||
<mask id="mask0_1629_1236" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="115" y="37" width="11" height="11">
|
||||
<path d="M125.247 41.9229C125.529 44.7773 123.767 47.2881 121.31 47.5308C118.854 47.7736 115.929 45.8241 115.647 42.9696C115.365 40.1152 117.833 37.4367 120.289 37.1939C122.745 36.9512 124.965 39.0684 125.247 41.9229Z" fill="black" />
|
||||
</mask>
|
||||
<g mask="url(#mask0_1629_1236)">
|
||||
<path d="M122.21 50.3387C125.008 49.2823 126.967 46.3731 127.597 45.0506C126.809 43.3814 124.683 39.7047 122.485 38.3515C119.738 36.6599 116.087 38.5564 114.532 41.4671C113.288 43.7956 112.484 47.2455 111.967 48.7691C113.755 49.7119 118.713 51.6592 122.21 50.3387Z" fill="black" />
|
||||
</g>
|
||||
<path d="M125.952 51.6163C128.943 55.1732 120.016 61.6141 118.548 62.2977C113.631 62.4983 113.466 58.9056 113.999 57.0842C119.689 54.6132 122.96 48.0595 125.952 51.6163Z" fill="url(#paint2_linear_1629_1236)" />
|
||||
<path d="M111.121 89.9435C115.808 90.5149 116.34 77.9705 116.107 76.341C113.428 74.0638 110.393 75.2706 109.138 76.7349C110.194 82.9496 106.433 89.3722 111.121 89.9435Z" fill="url(#paint3_linear_1629_1236)" />
|
||||
<path d="M125.871 55.6191C120.72 61.8301 118.296 62.4865 117.539 62.8905C118.095 62.941 119.873 62.5966 121.478 61.5271C122.841 60.6182 125.568 57.5885 125.871 55.6191Z" fill="#DB422A" />
|
||||
<rect x="131.915" y="27.3725" width="58.2659" height="41.4335" rx="5.28709" fill="#58FFD7" fill-opacity="0.2" stroke="#7FFF00" stroke-width="0.2158" />
|
||||
<rect x="181.009" y="22.3008" width="15.9692" height="17.4798" rx="2.3738" stroke="#67EEAD" stroke-opacity="0.4" stroke-width="0.431599" />
|
||||
<circle cx="161.088" cy="44.2323" r="8.65953" stroke="#76FF9C" stroke-width="0.2158" stroke-dasharray="1.08 1.08" />
|
||||
<path d="M157.76 52.1875L156.217 61.0361H152.727" stroke="#76FF9C" stroke-width="0.2158" stroke-dasharray="1.08 1.08" />
|
||||
<path d="M164.498 52.1875L166.041 61.0361H169.531" stroke="#76FF9C" stroke-width="0.2158" stroke-dasharray="1.08 1.08" />
|
||||
<path d="M152.483 42.9326L147.369 46.5857L153.295 48.2905C153.376 48.9399 153.328 50.32 152.483 50.6447" stroke="#76FF9C" stroke-width="0.2158" stroke-dasharray="1.08 1.08" />
|
||||
<path d="M169.722 42.9326L174.836 46.5857L168.91 48.2905C168.829 48.9399 168.877 50.32 169.722 50.6447" stroke="#76FF9C" stroke-width="0.2158" stroke-dasharray="1.08 1.08" />
|
||||
<path d="M155.324 42.6895C155.811 43.1765 165.228 43.5013 167.014 42.6895" stroke="#76FF9C" stroke-width="0.2158" stroke-dasharray="1.08 1.08" />
|
||||
<circle cx="158.167" cy="39.686" r="0.32472" fill="#76FF9C" />
|
||||
<circle cx="163.038" cy="39.686" r="0.32472" fill="#76FF9C" />
|
||||
<rect x="107.961" y="10.1079" width="44.2389" height="22.659" rx="5.28709" fill="#ACFF58" fill-opacity="0.2" stroke="#7FFF00" stroke-width="0.2158" />
|
||||
<path d="M138.711 20.1368V20.6109C138.572 20.5301 138.433 20.4695 138.292 20.4292C138.152 20.3888 138.009 20.3686 137.863 20.3686C137.643 20.3686 137.479 20.4046 137.37 20.4766C137.263 20.5468 137.209 20.6548 137.209 20.8006C137.209 20.9323 137.25 21.0306 137.331 21.0956C137.411 21.1606 137.613 21.2238 137.934 21.2853L138.129 21.3222C138.369 21.3678 138.551 21.4592 138.674 21.5961C138.799 21.7331 138.861 21.9114 138.861 22.1309C138.861 22.4224 138.758 22.6507 138.55 22.8158C138.343 22.9791 138.055 23.0608 137.686 23.0608C137.541 23.0608 137.388 23.045 137.228 23.0134C137.068 22.9835 136.895 22.9379 136.709 22.8764V22.3759C136.89 22.469 137.063 22.5392 137.228 22.5866C137.393 22.6323 137.549 22.6551 137.697 22.6551C137.911 22.6551 138.077 22.6121 138.195 22.526C138.312 22.4382 138.371 22.3162 138.371 22.1599C138.371 21.9351 138.156 21.7797 137.726 21.6936L137.705 21.6883L137.523 21.6515C137.244 21.597 137.04 21.5057 136.912 21.3775C136.784 21.2475 136.72 21.071 136.72 20.848C136.72 20.5653 136.815 20.3475 137.007 20.1947C137.198 20.0402 137.471 19.9629 137.826 19.9629C137.984 19.9629 138.136 19.9778 138.282 20.0077C138.427 20.0358 138.571 20.0788 138.711 20.1368Z" fill="#76FF9C" />
|
||||
<path d="M134.305 21.918C134.305 22.1357 134.344 22.2999 134.423 22.4106C134.504 22.5212 134.623 22.5765 134.779 22.5765H135.345V22.9849H134.732C134.442 22.9849 134.217 22.8927 134.057 22.7083C133.899 22.5221 133.82 22.2587 133.82 21.918V19.2495H133.043V18.8701H134.305V21.918Z" fill="#76FF9C" />
|
||||
<path d="M130.297 20.3738C130.051 20.3738 129.865 20.4695 129.739 20.661C129.612 20.8524 129.549 21.136 129.549 21.5118C129.549 21.8859 129.612 22.1695 129.739 22.3627C129.865 22.5541 130.051 22.6498 130.297 22.6498C130.545 22.6498 130.732 22.5541 130.858 22.3627C130.985 22.1695 131.048 21.8859 131.048 21.5118C131.048 21.136 130.985 20.8524 130.858 20.661C130.732 20.4695 130.545 20.3738 130.297 20.3738ZM130.297 19.9629C130.706 19.9629 131.019 20.0955 131.235 20.3607C131.453 20.6258 131.561 21.0096 131.561 21.5118C131.561 22.0159 131.453 22.4005 131.237 22.6657C131.021 22.9291 130.708 23.0608 130.297 23.0608C129.888 23.0608 129.575 22.9291 129.359 22.6657C129.143 22.4005 129.035 22.0159 129.035 21.5118C129.035 21.0096 129.143 20.6258 129.359 20.3607C129.575 20.0955 129.888 19.9629 130.297 19.9629Z" fill="#76FF9C" />
|
||||
<path d="M126.561 20.3738C126.315 20.3738 126.129 20.4695 126.002 20.661C125.876 20.8524 125.813 21.136 125.813 21.5118C125.813 21.8859 125.876 22.1695 126.002 22.3627C126.129 22.5541 126.315 22.6498 126.561 22.6498C126.808 22.6498 126.995 22.5541 127.122 22.3627C127.248 22.1695 127.311 21.8859 127.311 21.5118C127.311 21.136 127.248 20.8524 127.122 20.661C126.995 20.4695 126.808 20.3738 126.561 20.3738ZM126.561 19.9629C126.97 19.9629 127.282 20.0955 127.498 20.3607C127.716 20.6258 127.825 21.0096 127.825 21.5118C127.825 22.0159 127.717 22.4005 127.501 22.6657C127.285 22.9291 126.972 23.0608 126.561 23.0608C126.151 23.0608 125.839 22.9291 125.623 22.6657C125.407 22.4005 125.299 22.0159 125.299 21.5118C125.299 21.0096 125.407 20.6258 125.623 20.3607C125.839 20.0955 126.151 19.9629 126.561 19.9629Z" fill="#76FF9C" />
|
||||
<path d="M121.326 19.0518H124.327V19.4996H123.096V22.9847H122.562V19.4996H121.326V19.0518Z" fill="#76FF9C" />
|
||||
<rect x="152.309" y="65.8926" width="28.0288" height="10.3828" rx="5.02676" fill="#16CF89" />
|
||||
<path d="M161.659 70.6972C161.756 70.7638 161.756 70.9066 161.659 70.9732L158.226 73.3387C158.115 73.4153 157.964 73.3358 157.964 73.2008L157.964 68.4696C157.964 68.3346 158.115 68.255 158.226 68.3316L161.659 70.6972Z" fill="black" />
|
||||
<path d="M175.645 69.1954C175.649 69.2128 175.649 69.2301 175.645 69.2474C175.645 69.2647 175.64 69.2837 175.629 69.3045C175.616 69.353 175.6 69.3963 175.583 69.4344C175.562 69.4829 175.536 69.5244 175.505 69.559C175.491 69.5798 175.477 69.6006 175.463 69.6214C175.453 69.6387 175.442 69.656 175.432 69.6733L175.365 69.7616L174.7 70.7226L174.58 70.8732V72.2549C174.573 72.2722 174.57 72.2895 174.57 72.3068C174.57 72.3241 174.568 72.3432 174.565 72.364C174.558 72.3813 174.553 72.3986 174.549 72.4159C174.546 72.4298 174.54 72.4453 174.533 72.4627C174.527 72.4765 174.523 72.4869 174.523 72.4938C174.52 72.5008 174.516 72.5059 174.513 72.5094C174.513 72.5129 174.511 72.5181 174.508 72.525C174.487 72.5596 174.457 72.5908 174.419 72.6185C174.343 72.6566 174.256 72.6652 174.159 72.6445C174.104 72.6375 174.063 72.6202 174.035 72.5925C174.018 72.5821 174.004 72.57 173.993 72.5562C173.983 72.5423 173.972 72.5267 173.962 72.5094C173.955 72.4886 173.948 72.4696 173.941 72.4523C173.934 72.435 173.929 72.4176 173.926 72.4003C173.919 72.383 173.915 72.3674 173.915 72.3536C173.915 72.3363 173.915 72.3207 173.915 72.3068V70.8888L173.801 70.7122L173.126 69.7564L173.069 69.6629C173.048 69.6318 173.022 69.5954 172.991 69.5538C172.963 69.5158 172.939 69.4742 172.918 69.4292C172.904 69.4084 172.892 69.3876 172.882 69.3668C172.875 69.3426 172.868 69.3184 172.861 69.2941C172.851 69.2595 172.849 69.2249 172.856 69.1902C172.866 69.1452 172.887 69.1071 172.918 69.076C172.953 69.0448 172.989 69.0206 173.027 69.0032C173.076 68.9686 173.131 68.9548 173.193 68.9617C173.231 68.9617 173.264 68.9686 173.292 68.9825C173.32 68.9963 173.347 69.0119 173.375 69.0292C173.406 69.0535 173.436 69.0794 173.463 69.1071C173.495 69.1348 173.522 69.1643 173.547 69.1954C173.574 69.2301 173.6 69.263 173.624 69.2941C173.649 69.3218 173.673 69.3547 173.697 69.3928L173.713 69.4136C173.796 69.5244 173.874 69.6318 173.947 69.7356C174.019 69.8361 174.095 69.9452 174.175 70.0629C174.182 70.0698 174.192 70.0837 174.206 70.1044C174.22 70.1252 174.236 70.1495 174.253 70.1772C174.267 70.1529 174.279 70.1321 174.289 70.1148C174.303 70.0941 174.314 70.0802 174.321 70.0733C174.4 69.9555 174.476 69.8447 174.549 69.7408C174.622 69.637 174.7 69.5296 174.783 69.4188L174.793 69.398C174.821 69.3668 174.845 69.3357 174.866 69.3045C174.89 69.2699 174.916 69.2353 174.944 69.2006C174.989 69.1383 175.049 69.0846 175.126 69.0396C175.181 69.0015 175.238 68.9773 175.297 68.9669C175.363 68.96 175.42 68.9738 175.468 69.0084C175.489 69.0223 175.508 69.0344 175.526 69.0448C175.546 69.0552 175.564 69.0673 175.578 69.0812C175.605 69.1123 175.628 69.1504 175.645 69.1954Z" fill="black" />
|
||||
<path d="M172.939 72.296C172.943 72.3168 172.944 72.3376 172.944 72.3584C172.948 72.3757 172.95 72.3965 172.95 72.4207C172.95 72.4623 172.938 72.5004 172.913 72.535C172.903 72.5523 172.889 72.5696 172.872 72.5869C172.854 72.6008 172.834 72.6129 172.809 72.6233C172.723 72.6718 172.631 72.6891 172.534 72.6752C172.486 72.6614 172.442 72.6389 172.404 72.6077C172.397 72.6008 172.392 72.5973 172.389 72.5973C172.385 72.5939 172.382 72.5887 172.378 72.5817C172.375 72.5783 172.371 72.5748 172.368 72.5713C172.364 72.5644 172.359 72.5592 172.352 72.5558C172.335 72.5384 172.321 72.5229 172.311 72.509C172.3 72.4917 172.29 72.4744 172.28 72.4571C172.273 72.4398 172.264 72.4242 172.254 72.4103C172.247 72.393 172.238 72.3757 172.228 72.3584C172.221 72.3445 172.214 72.3324 172.207 72.322C172.2 72.3082 172.195 72.2943 172.191 72.2805C172.177 72.2493 172.169 72.2216 172.165 72.1974L172.056 71.9428C171.817 71.9428 171.578 71.9446 171.339 71.948C171.104 71.948 170.867 71.9463 170.628 71.9428L170.519 72.1974C170.512 72.2112 170.507 72.2251 170.503 72.2389C170.503 72.2528 170.5 72.2666 170.493 72.2805C170.486 72.2943 170.479 72.3082 170.472 72.322C170.469 72.3324 170.463 72.3445 170.456 72.3584C170.446 72.3757 170.436 72.393 170.425 72.4103C170.418 72.4242 170.41 72.4398 170.399 72.4571C170.392 72.4744 170.384 72.4917 170.373 72.509C170.363 72.5229 170.349 72.5384 170.332 72.5558C170.325 72.5592 170.32 72.5644 170.316 72.5713C170.313 72.5748 170.309 72.5783 170.306 72.5817C170.302 72.5887 170.299 72.5939 170.295 72.5973C170.292 72.5973 170.287 72.6008 170.28 72.6077C170.242 72.6389 170.198 72.6614 170.15 72.6752C170.053 72.6891 169.961 72.6718 169.875 72.6233C169.85 72.6129 169.83 72.6008 169.812 72.5869C169.795 72.5696 169.781 72.5523 169.771 72.535C169.746 72.5004 169.734 72.4623 169.734 72.4207C169.734 72.3965 169.734 72.3757 169.734 72.3584C169.738 72.3376 169.741 72.3168 169.745 72.296C169.752 72.2649 169.76 72.2337 169.771 72.2025C169.781 72.1714 169.786 72.1558 169.786 72.1558L170.867 69.4963L170.898 69.4132C170.905 69.3924 170.913 69.3734 170.924 69.3561C170.934 69.3387 170.943 69.318 170.95 69.2937C170.967 69.2487 170.986 69.2089 171.007 69.1743C171.017 69.1535 171.029 69.1344 171.043 69.1171C171.057 69.0998 171.071 69.0825 171.085 69.0652C171.106 69.0375 171.135 69.015 171.173 68.9977C171.222 68.9803 171.277 68.9717 171.339 68.9717C171.405 68.9717 171.462 68.9803 171.511 68.9977C171.549 69.015 171.578 69.0375 171.599 69.0652C171.623 69.0963 171.649 69.1327 171.677 69.1743C171.698 69.2089 171.717 69.2487 171.734 69.2937C171.741 69.318 171.75 69.3387 171.76 69.3561C171.771 69.3734 171.779 69.3924 171.786 69.4132L171.817 69.4963L172.898 72.1558C172.898 72.1558 172.903 72.1714 172.913 72.2025C172.924 72.2337 172.932 72.2649 172.939 72.296ZM171.708 71.0234C171.663 70.923 171.616 70.8191 171.568 70.7118C171.523 70.6044 171.474 70.4953 171.423 70.3845C171.409 70.3534 171.395 70.3222 171.381 70.291C171.367 70.2564 171.353 70.2235 171.339 70.1923C171.329 70.2235 171.317 70.2564 171.303 70.291C171.289 70.3222 171.275 70.3534 171.262 70.3845C171.21 70.4953 171.159 70.6044 171.111 70.7118C171.066 70.8191 171.021 70.923 170.976 71.0234L170.882 71.252H171.802L171.708 71.0234Z" fill="black" />
|
||||
<path d="M169.309 72.2545C169.316 72.2718 169.319 72.2978 169.319 72.3324C169.319 72.3636 169.319 72.3896 169.319 72.4104C169.319 72.4381 169.314 72.464 169.304 72.4883C169.293 72.5125 169.28 72.535 169.262 72.5558C169.231 72.5974 169.186 72.6285 169.127 72.6493C169.044 72.677 168.966 72.6909 168.893 72.6909C168.855 72.6943 168.816 72.696 168.774 72.696C168.732 72.696 168.691 72.6995 168.649 72.7064H168.629C168.362 72.7099 168.087 72.7099 167.803 72.7064C167.733 72.703 167.655 72.703 167.569 72.7064C167.482 72.7134 167.398 72.7116 167.314 72.7012C167.231 72.6943 167.155 72.6753 167.086 72.6441C167.02 72.6095 166.973 72.5558 166.946 72.4831C166.939 72.4658 166.933 72.4502 166.93 72.4363C166.927 72.419 166.925 72.4017 166.925 72.3844C166.911 72.2667 166.906 72.1506 166.909 72.0364C166.913 71.9221 166.914 71.8096 166.914 71.6987L166.925 70.9456V70.2495C166.925 70.1249 166.925 70.014 166.925 69.9171C166.928 69.8201 166.932 69.7128 166.935 69.595V69.5691C166.939 69.5344 166.94 69.4998 166.94 69.4652C166.944 69.4306 166.946 69.3959 166.946 69.3613C166.953 69.2816 166.972 69.2141 167.003 69.1587C167.024 69.1068 167.06 69.0652 167.112 69.0341C167.157 69.0029 167.211 68.9873 167.273 68.9873C167.297 68.9873 167.32 68.989 167.34 68.9925C167.365 68.9925 167.387 68.9942 167.408 68.9977C167.429 69.0012 167.448 69.0081 167.465 69.0185C167.486 69.0289 167.507 69.0427 167.527 69.06C167.548 69.0843 167.567 69.1137 167.585 69.1483C167.598 69.1864 167.607 69.2245 167.61 69.2626C167.614 69.2868 167.617 69.3094 167.621 69.3301C167.624 69.3509 167.626 69.3717 167.626 69.3925C167.619 69.4132 167.616 69.434 167.616 69.4548C167.616 69.4756 167.616 69.4946 167.616 69.5119V69.6054L167.595 72.052L168.623 72.0623H168.868C168.888 72.0623 168.911 72.0641 168.935 72.0675C168.959 72.0675 168.984 72.0693 169.008 72.0727C169.035 72.0762 169.06 72.0797 169.08 72.0831C169.101 72.0866 169.122 72.0918 169.143 72.0987C169.181 72.1091 169.212 72.1264 169.236 72.1506C169.274 72.1853 169.299 72.2199 169.309 72.2545Z" fill="black" />
|
||||
<path d="M166.12 69.2989C166.252 69.4201 166.349 69.5655 166.411 69.7352C166.473 69.9014 166.498 70.0676 166.484 70.2338C166.47 70.3931 166.42 70.5403 166.333 70.6754C166.247 70.8069 166.115 70.9074 165.938 70.9766C165.8 71.0355 165.663 71.077 165.528 71.1013C165.393 71.1255 165.244 71.1446 165.081 71.1584C165.009 71.1654 164.946 71.1705 164.894 71.174C164.846 71.174 164.789 71.1757 164.723 71.1792C164.709 71.1792 164.685 71.1792 164.65 71.1792C164.619 71.1792 164.597 71.1809 164.583 71.1844V72.2596C164.572 72.3254 164.558 72.3929 164.541 72.4622C164.527 72.5315 164.487 72.5851 164.422 72.6232C164.384 72.644 164.337 72.6561 164.281 72.6596C164.226 72.663 164.176 72.6613 164.131 72.6544C164.082 72.6475 164.041 72.6353 164.006 72.618C163.975 72.5973 163.949 72.5626 163.928 72.5141C163.914 72.483 163.901 72.4483 163.887 72.4103C163.876 72.3687 163.871 72.3185 163.871 72.2596V69.3872C163.871 69.3629 163.873 69.3404 163.876 69.3196C163.88 69.2989 163.883 69.2781 163.887 69.2573C163.894 69.24 163.899 69.2209 163.902 69.2002C163.906 69.1794 163.911 69.1603 163.918 69.143C163.925 69.1257 163.932 69.1101 163.939 69.0963C163.949 69.0824 163.961 69.0703 163.975 69.0599C163.992 69.0426 164.018 69.027 164.053 69.0132C164.091 68.9993 164.146 68.9924 164.219 68.9924H164.23C164.337 68.9855 164.456 68.9803 164.588 68.9768C164.719 68.9699 164.829 68.9716 164.915 68.982C164.964 68.9889 165.009 68.9941 165.05 68.9976C165.092 68.9976 165.132 68.9993 165.17 69.0028C165.211 69.0062 165.253 69.0097 165.294 69.0132C165.336 69.0166 165.377 69.0218 165.419 69.0288C165.454 69.0357 165.485 69.0409 165.512 69.0443C165.544 69.0478 165.575 69.053 165.606 69.0599C165.634 69.0668 165.663 69.0738 165.694 69.0807C165.729 69.0876 165.76 69.0997 165.788 69.1171C165.861 69.1378 165.921 69.1638 165.97 69.195C166.018 69.2261 166.068 69.2608 166.12 69.2989ZM165.809 70.1559C165.812 70.0728 165.795 70.0001 165.757 69.9378C165.722 69.8754 165.672 69.8235 165.606 69.7819C165.54 69.7404 165.466 69.7075 165.383 69.6832C165.3 69.659 165.216 69.6417 165.133 69.6313C165.113 69.6313 165.083 69.6313 165.045 69.6313C165.01 69.6278 164.972 69.6261 164.931 69.6261C164.889 69.6226 164.849 69.6209 164.811 69.6209C164.777 69.6174 164.749 69.6157 164.728 69.6157C164.711 69.6122 164.69 69.6105 164.666 69.6105C164.642 69.6105 164.614 69.6105 164.583 69.6105C164.586 69.7179 164.588 69.8218 164.588 69.9222C164.588 70.0191 164.588 70.1248 164.588 70.239C164.584 70.3014 164.583 70.3637 164.583 70.426C164.583 70.4884 164.583 70.549 164.583 70.6078L164.905 70.6026C164.988 70.6026 165.08 70.5974 165.18 70.5871C165.28 70.5767 165.376 70.5559 165.466 70.5247C165.556 70.4936 165.632 70.4485 165.694 70.3897C165.76 70.3308 165.798 70.2529 165.809 70.1559Z" fill="black" />
|
||||
<rect x="160.401" y="17.23" width="40.7861" height="2.5896" rx="1.2948" fill="#F2A632" fill-opacity="0.2" stroke="#FFAB49" stroke-width="0.2158" />
|
||||
<rect x="160.293" y="17.1221" width="27.5687" height="2.80539" rx="1.4027" fill="#F2A632" fill-opacity="0.7" />
|
||||
<rect x="121.989" y="79.812" width="40.7861" height="2.5896" rx="1.2948" fill="#32F28B" fill-opacity="0.2" stroke="#49FF92" stroke-width="0.2158" />
|
||||
<rect x="121.881" y="79.7041" width="15.106" height="2.80539" rx="1.4027" fill="#32F296" fill-opacity="0.7" />
|
||||
<line x1="196.224" y1="43.9887" x2="196.224" y2="56.0735" stroke="#E27526" stroke-opacity="0.3" stroke-width="0.647399" stroke-linecap="round" />
|
||||
<circle cx="196.224" cy="49.3832" r="1.1869" fill="#F57600" />
|
||||
<line x1="199.46" y1="43.9887" x2="199.46" y2="56.0735" stroke="#E27526" stroke-opacity="0.3" stroke-width="0.647399" stroke-linecap="round" />
|
||||
<circle cx="199.46" cy="52.4047" r="1.1869" fill="#F57600" />
|
||||
<line x1="202.699" y1="43.9887" x2="202.699" y2="56.0735" stroke="#E27526" stroke-opacity="0.3" stroke-width="0.647399" stroke-linecap="round" />
|
||||
<circle cx="202.699" cy="46.5775" r="1.1869" fill="#F57600" />
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_f_1629_1236" x="102.459" y="-0.573809" width="117.179" height="97.3254" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix" />
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
|
||||
<feGaussianBlur stdDeviation="12.3006" result="effect1_foregroundBlur_1629_1236" />
|
||||
</filter>
|
||||
<filter id="filter1_f_1629_1236" x="84.9798" y="86.1781" width="59.9915" height="10.1428" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix" />
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
|
||||
<feGaussianBlur stdDeviation="1.8343" result="effect1_foregroundBlur_1629_1236" />
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_1629_1236" x1="137.928" y1="53.0961" x2="125.656" y2="61.1054" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#E04D40" />
|
||||
<stop offset="1" stop-color="#F15F56" />
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1629_1236" x1="137.31" y1="41.723" x2="105.587" y2="80.1354" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FB9782" />
|
||||
<stop offset="0.302083" stop-color="#F46639" />
|
||||
<stop offset="0.760417" stop-color="#F44C3C" />
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1629_1236" x1="126.757" y1="53.2485" x2="114.484" y2="61.2579" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF6F66" />
|
||||
<stop offset="1" stop-color="#EF6058" />
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1629_1236" x1="112.956" y1="89.7225" x2="112.96" y2="74.8311" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DA4639" />
|
||||
<stop offset="1" stop-color="#EC5B4F" />
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_1629_1236">
|
||||
<rect width="292" height="102.768" fill="white" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 21 KiB |
219
newIDE/app/public/res/questionnaire/coding-experience.svg
Normal file
@@ -0,0 +1,219 @@
|
||||
<svg width="285" height="102" viewBox="0 0 285 102" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1642_5489)">
|
||||
<rect width="285" height="102" fill="#1D1D26"/>
|
||||
<line opacity="0.3" y1="-0.409991" x2="106.853" y2="-0.409991" transform="matrix(-0.866044 0.499967 0.866044 0.499967 77.6816 22.2959)" stroke="url(#paint0_linear_1642_5489)" stroke-width="0.819982"/>
|
||||
<line opacity="0.3" y1="-0.409991" x2="106.853" y2="-0.409991" transform="matrix(-0.866044 0.499967 0.866044 0.499967 88.291 28.4229)" stroke="url(#paint1_linear_1642_5489)" stroke-width="0.819982"/>
|
||||
<line opacity="0.3" y1="-0.409991" x2="106.853" y2="-0.409991" transform="matrix(-0.866044 0.499967 0.866044 0.499967 98.9023 34.5488)" stroke="url(#paint2_linear_1642_5489)" stroke-width="0.819982"/>
|
||||
<line opacity="0.3" y1="-0.409991" x2="106.853" y2="-0.409991" transform="matrix(-0.866044 0.499967 0.866044 0.499967 109.514 40.6729)" stroke="url(#paint3_linear_1642_5489)" stroke-width="0.819982"/>
|
||||
<line opacity="0.3" y1="-0.409991" x2="106.853" y2="-0.409991" transform="matrix(-0.866044 0.499967 0.866044 0.499967 120.125 46.8008)" stroke="url(#paint4_linear_1642_5489)" stroke-width="0.819982"/>
|
||||
<line opacity="0.3" y1="-0.409991" x2="106.853" y2="-0.409991" transform="matrix(-0.866044 0.499967 0.866044 0.499967 130.736 52.9258)" stroke="url(#paint5_linear_1642_5489)" stroke-width="0.819982"/>
|
||||
<line opacity="0.3" y1="-0.409991" x2="106.853" y2="-0.409991" transform="matrix(-0.866044 0.499967 0.866044 0.499967 141.348 59.0518)" stroke="url(#paint6_linear_1642_5489)" stroke-width="0.819982"/>
|
||||
<line opacity="0.3" y1="-0.409991" x2="106.853" y2="-0.409991" transform="matrix(0.866044 0.499967 0.866044 -0.499967 -14.8594 59.0518)" stroke="url(#paint7_linear_1642_5489)" stroke-width="0.819982"/>
|
||||
<line opacity="0.3" y1="-0.409991" x2="106.853" y2="-0.409991" transform="matrix(0.866044 0.499967 0.866044 -0.499967 -4.24805 52.9258)" stroke="url(#paint8_linear_1642_5489)" stroke-width="0.819982"/>
|
||||
<line opacity="0.3" y1="-0.409991" x2="106.853" y2="-0.409991" transform="matrix(0.866044 0.499967 0.866044 -0.499967 6.36328 46.8008)" stroke="url(#paint9_linear_1642_5489)" stroke-width="0.819982"/>
|
||||
<line opacity="0.3" y1="-0.409991" x2="106.853" y2="-0.409991" transform="matrix(0.866044 0.499967 0.866044 -0.499967 16.9746 40.6738)" stroke="url(#paint10_linear_1642_5489)" stroke-width="0.819982"/>
|
||||
<line opacity="0.3" y1="-0.409991" x2="106.853" y2="-0.409991" transform="matrix(0.866044 0.499967 0.866044 -0.499967 27.5859 34.5488)" stroke="url(#paint11_linear_1642_5489)" stroke-width="0.819982"/>
|
||||
<line opacity="0.3" y1="-0.409991" x2="106.853" y2="-0.409991" transform="matrix(0.866044 0.499967 0.866044 -0.499967 38.1973 28.4229)" stroke="url(#paint12_linear_1642_5489)" stroke-width="0.819982"/>
|
||||
<line opacity="0.3" y1="-0.409991" x2="106.853" y2="-0.409991" transform="matrix(0.866044 0.499967 0.866044 -0.499967 48.8066 22.2959)" stroke="url(#paint13_linear_1642_5489)" stroke-width="0.819982"/>
|
||||
<path d="M34.0468 5.59024C33.8624 5.48377 33.5634 5.48377 33.379 5.59024L-4.91728 27.6987C-5.10171 27.8051 -5.10171 27.9778 -4.91728 28.0842L33.379 50.1926C33.5634 50.2991 33.8624 50.2991 34.0468 50.1926L72.3431 28.0842C72.5275 27.9778 72.5275 27.8051 72.3431 27.6987L34.0468 5.59024Z" fill="#F6FAFF"/>
|
||||
<path d="M25.1566 22.2181C24.3414 21.9783 23.4709 22.4809 23.8863 22.9515L27.4544 26.9943C27.6402 27.2048 27.5701 27.4604 27.2807 27.6274L21.7232 30.8358C21.0762 31.2093 21.6351 31.8425 22.5388 31.7599L30.3016 31.0501C30.7058 31.0131 31.1052 31.1306 31.2909 31.3411L34.8591 35.3839C35.2745 35.8545 36.4904 35.7434 36.6335 35.2217L37.8631 30.7402C37.9271 30.5069 38.244 30.3239 38.6482 30.2869L46.411 29.5771C47.3147 29.4945 47.5073 28.7926 46.6921 28.5528L39.6891 26.4928C39.3245 26.3856 39.121 26.155 39.185 25.9217L40.4145 21.4402C40.5577 20.9185 39.4608 20.5959 38.8138 20.9694L33.2562 24.1778C32.9669 24.3448 32.5241 24.3853 32.1596 24.278L25.1566 22.2181Z" fill="#8ED0FF"/>
|
||||
<path d="M72.6777 28.3969C72.6777 28.1013 72.3587 27.9156 72.1017 28.0616L33.6542 49.9041C33.5336 49.9726 33.4591 50.1006 33.4591 50.2393V94.7339C33.4591 95.0296 33.7781 95.2152 34.0351 95.0692L72.4826 73.2268C72.6032 73.1582 72.6777 73.0302 72.6777 72.8915V28.3969Z" fill="#D0DCEF"/>
|
||||
<path d="M-5.21094 29.0499C-5.21094 28.4608 -4.57711 28.0892 -4.06307 28.377L34.331 49.8707C34.5746 50.007 34.7255 50.2644 34.7255 50.5436V94.081C34.7255 94.6701 34.0917 95.0416 33.5776 94.7539L-4.81647 73.2602C-5.06006 73.1238 -5.21094 72.8664 -5.21094 72.5873V29.0499Z" fill="#B5C8E6"/>
|
||||
<ellipse cx="7.09647" cy="9.9406" rx="7.09647" ry="9.9406" transform="matrix(-0.873203 -0.487357 -0.487357 0.873203 65.4629 55.8525)" fill="#3D75FE"/>
|
||||
<path d="M6.55219 64.5855L19.8078 72.2738C20.4034 72.6192 21.1188 72.0702 20.9392 71.4055L15.7628 52.2519C15.5924 51.6213 14.7642 51.4749 14.388 52.0089L6.30872 63.4742C6.04794 63.8443 6.16056 64.3583 6.55219 64.5855Z" fill="#294DA5"/>
|
||||
<path d="M96.7285 18.0175C96.4984 18.0175 96.3338 18.0536 96.2346 18.1258C96.1353 18.1934 96.0857 18.3107 96.0857 18.4776V20.0947C96.0857 20.3247 96.0451 20.4916 95.9639 20.5954C95.8827 20.6946 95.7542 20.7736 95.5783 20.8322C95.7587 20.8954 95.8872 20.9743 95.9639 21.069C96.0451 21.1637 96.0857 21.3261 96.0857 21.5562V23.1733C96.0857 23.3402 96.1353 23.4575 96.2346 23.5251C96.3338 23.5973 96.4984 23.6334 96.7285 23.6334V24.1138C96.2774 24.1138 95.9594 24.0348 95.7745 23.877C95.5895 23.7236 95.4971 23.4665 95.4971 23.1056V21.6035C95.4971 21.4141 95.461 21.281 95.3888 21.2043C95.3211 21.1277 95.1994 21.0893 95.0234 21.0893V20.5751C95.1994 20.5751 95.3211 20.5345 95.3888 20.4533C95.461 20.3721 95.4971 20.2368 95.4971 20.0473V18.5453C95.4971 18.1844 95.5895 17.9273 95.7745 17.7739C95.9594 17.616 96.2774 17.5371 96.7285 17.5371V18.0175Z" fill="white"/>
|
||||
<path d="M108.581 27.6931C108.392 27.6931 108.256 27.7359 108.175 27.8216C108.094 27.9028 108.053 28.0314 108.053 28.2073V28.7012H108.919L108.852 29.1816H108.053V32.267H107.431V29.1816H106.795V28.7012H107.431V28.2141C107.431 27.9073 107.528 27.6615 107.722 27.4766C107.92 27.2871 108.196 27.1924 108.547 27.1924C108.71 27.1924 108.854 27.2082 108.98 27.2397C109.111 27.2668 109.251 27.3119 109.4 27.3751L109.204 27.8284C109.001 27.7382 108.793 27.6931 108.581 27.6931Z" fill="#6A9EED"/>
|
||||
<path d="M106.015 28.7011V32.2668H105.392V28.7011H106.015ZM105.697 26.9893C105.828 26.9893 105.934 27.0299 106.015 27.111C106.096 27.1922 106.136 27.2937 106.136 27.4155C106.136 27.5373 106.096 27.6388 106.015 27.72C105.934 27.7967 105.828 27.835 105.697 27.835C105.57 27.835 105.467 27.7967 105.385 27.72C105.304 27.6388 105.264 27.5373 105.264 27.4155C105.264 27.2937 105.304 27.1922 105.385 27.111C105.467 27.0299 105.57 26.9893 105.697 26.9893Z" fill="#6A9EED"/>
|
||||
<path d="M143.84 30.0747V29.5537H146.384V30.0747H143.84ZM143.84 31.3806V30.8596H146.384V31.3806H143.84Z" fill="white"/>
|
||||
<path d="M140.389 30.0747V29.5537H142.933V30.0747H140.389ZM140.389 31.3806V30.8596H142.933V31.3806H140.389Z" fill="white"/>
|
||||
<path d="M139.55 30.8188C139.55 30.9225 139.545 31.0285 139.536 31.1368H137.263C137.29 31.5292 137.389 31.8179 137.56 32.0028C137.732 32.1878 137.953 32.2802 138.223 32.2802C138.395 32.2802 138.553 32.2554 138.697 32.2058C138.841 32.1562 138.993 32.0773 139.15 31.969L139.421 32.3411C139.042 32.6388 138.627 32.7877 138.176 32.7877C137.68 32.7877 137.292 32.6253 137.012 32.3005C136.737 31.9758 136.6 31.5292 136.6 30.9608C136.6 30.591 136.658 30.2639 136.776 29.9798C136.897 29.6911 137.069 29.4655 137.29 29.3032C137.515 29.1408 137.779 29.0596 138.081 29.0596C138.555 29.0596 138.918 29.2152 139.171 29.5264C139.423 29.8377 139.55 30.2684 139.55 30.8188ZM138.934 30.6361C138.934 30.2842 138.864 30.0158 138.724 29.8309C138.584 29.646 138.375 29.5535 138.095 29.5535C137.585 29.5535 137.308 29.9279 137.263 30.6767H138.934V30.6361Z" fill="white"/>
|
||||
<path d="M136.243 32.5447C136.008 32.707 135.742 32.7882 135.445 32.7882C135.142 32.7882 134.906 32.7025 134.734 32.5311C134.567 32.3552 134.484 32.1026 134.484 31.7733V29.6217H133.861V29.1413H134.484V28.3361L135.106 28.2617V29.1413H135.952L135.884 29.6217H135.106V31.7463C135.106 31.9312 135.138 32.0665 135.201 32.1522C135.269 32.2334 135.379 32.274 135.533 32.274C135.672 32.274 135.83 32.2267 136.006 32.1319L136.243 32.5447Z" fill="white"/>
|
||||
<path d="M133.098 31.8743C133.098 32.0186 133.123 32.1269 133.172 32.199C133.222 32.2667 133.296 32.3186 133.395 32.3547L133.253 32.7877C133.068 32.7651 132.92 32.7133 132.807 32.6321C132.694 32.5509 132.611 32.4246 132.556 32.2532C132.317 32.6095 131.963 32.7877 131.494 32.7877C131.142 32.7877 130.865 32.6885 130.662 32.49C130.459 32.2915 130.357 32.0321 130.357 31.7119C130.357 31.333 130.493 31.042 130.763 30.8391C131.039 30.6361 131.426 30.5346 131.927 30.5346H132.475V30.2707C132.475 30.0181 132.414 29.8377 132.293 29.7294C132.171 29.6212 131.984 29.567 131.731 29.567C131.469 29.567 131.149 29.6302 130.77 29.7565L130.615 29.3032C131.057 29.1408 131.467 29.0596 131.846 29.0596C132.265 29.0596 132.579 29.1633 132.786 29.3708C132.994 29.5738 133.098 29.8647 133.098 30.2436V31.8743ZM131.636 32.3208C131.993 32.3208 132.272 32.1359 132.475 31.766V30.9473H132.008C131.35 30.9473 131.021 31.1909 131.021 31.6781C131.021 31.8901 131.072 32.0502 131.176 32.1584C131.28 32.2667 131.433 32.3208 131.636 32.3208Z" fill="white"/>
|
||||
<path d="M130.03 32.5447C129.796 32.707 129.529 32.7882 129.232 32.7882C128.929 32.7882 128.693 32.7025 128.521 32.5311C128.354 32.3552 128.271 32.1026 128.271 31.7733V29.6217H127.648V29.1413H128.271V28.3361L128.893 28.2617V29.1413H129.739L129.672 29.6217H128.893V31.7463C128.893 31.9312 128.925 32.0665 128.988 32.1522C129.056 32.2334 129.166 32.274 129.32 32.274C129.459 32.274 129.617 32.2267 129.793 32.1319L130.03 32.5447Z" fill="white"/>
|
||||
<path d="M125.66 27.9639C125.971 27.9639 126.237 28.009 126.458 28.0992C126.679 28.1849 126.893 28.3202 127.101 28.5052L126.749 28.8976C126.573 28.7578 126.399 28.6563 126.228 28.5931C126.061 28.5255 125.881 28.4916 125.687 28.4916C125.443 28.4916 125.242 28.548 125.085 28.6608C124.927 28.7735 124.848 28.9382 124.848 29.1547C124.848 29.29 124.875 29.405 124.929 29.4998C124.983 29.59 125.082 29.6734 125.227 29.7501C125.375 29.8268 125.59 29.908 125.869 29.9937C126.163 30.0839 126.406 30.1809 126.6 30.2846C126.794 30.3884 126.95 30.5327 127.067 30.7177C127.189 30.8981 127.25 31.1281 127.25 31.4078C127.25 31.6785 127.182 31.9175 127.047 32.125C126.916 32.3325 126.724 32.4949 126.472 32.6122C126.223 32.7295 125.928 32.7881 125.585 32.7881C124.94 32.7881 124.412 32.5874 124.002 32.1859L124.354 31.7935C124.543 31.9468 124.735 32.0641 124.929 32.1453C125.123 32.222 125.339 32.2603 125.578 32.2603C125.867 32.2603 126.106 32.1904 126.296 32.0506C126.485 31.9063 126.58 31.6988 126.58 31.4281C126.58 31.2747 126.551 31.1484 126.492 31.0492C126.433 30.9455 126.332 30.853 126.187 30.7718C126.048 30.6906 125.842 30.6094 125.572 30.5282C125.094 30.3839 124.744 30.2102 124.523 30.0072C124.302 29.8042 124.191 29.5291 124.191 29.1818C124.191 28.9472 124.252 28.7375 124.374 28.5525C124.5 28.3676 124.674 28.2232 124.895 28.1195C125.121 28.0157 125.375 27.9639 125.66 27.9639Z" fill="white"/>
|
||||
<path d="M120.496 33.6673V33.1328H123.784V33.6673H120.496Z" fill="white"/>
|
||||
<path d="M118.734 29.0596C119.027 29.0596 119.261 29.1588 119.437 29.3573C119.613 29.5512 119.701 29.8151 119.701 30.1489V32.7065H119.079V30.2369C119.079 29.7768 118.912 29.5467 118.578 29.5467C118.402 29.5467 118.253 29.5986 118.131 29.7024C118.01 29.8016 117.879 29.9595 117.739 30.176V32.7065H117.116V30.2369C117.116 29.7768 116.95 29.5467 116.616 29.5467C116.435 29.5467 116.284 29.5986 116.162 29.7024C116.041 29.8061 115.912 29.964 115.777 30.176V32.7065H115.154V29.1408H115.689L115.743 29.6618C116.009 29.2603 116.352 29.0596 116.771 29.0596C116.992 29.0596 117.18 29.116 117.333 29.2287C117.491 29.3415 117.604 29.4994 117.671 29.7024C117.811 29.4949 117.964 29.337 118.131 29.2287C118.303 29.116 118.504 29.0596 118.734 29.0596Z" fill="white"/>
|
||||
<path d="M114.172 27.2599C113.938 27.6072 113.751 27.9185 113.611 28.1936C113.476 28.4643 113.367 28.7733 113.286 29.1206C113.209 29.4679 113.171 29.8739 113.171 30.3385C113.171 30.7986 113.209 31.2023 113.286 31.5496C113.367 31.8969 113.476 32.2104 113.611 32.4901C113.751 32.7653 113.938 33.0742 114.172 33.4171L113.78 33.6877C113.482 33.2637 113.252 32.9164 113.09 32.6457C112.932 32.3706 112.797 32.0435 112.684 31.6646C112.576 31.2812 112.521 30.8392 112.521 30.3385C112.521 29.8378 112.576 29.398 112.684 29.0191C112.797 28.6357 112.932 28.3086 113.09 28.038C113.252 27.7628 113.482 27.4133 113.78 26.9893L114.172 27.2599Z" fill="white"/>
|
||||
<rect width="31.8781" height="8.82423" transform="translate(149.506 26.9893)" fill="#A8650F"/>
|
||||
<path d="M180.343 31.8441C180.343 31.9479 180.338 32.0539 180.329 32.1622H178.056C178.083 32.5546 178.182 32.8433 178.353 33.0282C178.525 33.2132 178.746 33.3056 179.016 33.3056C179.188 33.3056 179.346 33.2808 179.49 33.2312C179.634 33.1816 179.786 33.1026 179.943 32.9944L180.214 33.3665C179.835 33.6642 179.42 33.8131 178.969 33.8131C178.473 33.8131 178.085 33.6507 177.805 33.3259C177.53 33.0012 177.393 32.5546 177.393 31.9862C177.393 31.6164 177.451 31.2893 177.568 31.0052C177.69 30.7165 177.862 30.4909 178.083 30.3285C178.308 30.1662 178.572 30.085 178.874 30.085C179.348 30.085 179.711 30.2406 179.964 30.5518C180.216 30.8631 180.343 31.2938 180.343 31.8441ZM179.727 31.6615C179.727 31.3096 179.657 31.0412 179.517 30.8563C179.377 30.6714 179.168 30.5789 178.888 30.5789C178.378 30.5789 178.101 30.9533 178.056 31.7021H179.727V31.6615Z" fill="white"/>
|
||||
<path d="M177.036 33.5701C176.801 33.7324 176.535 33.8136 176.238 33.8136C175.935 33.8136 175.699 33.7279 175.527 33.5565C175.36 33.3806 175.277 33.128 175.277 32.7987V30.6471H174.654V30.1667H175.277V29.3615L175.899 29.2871V30.1667H176.745L176.677 30.6471H175.899V32.7717C175.899 32.9566 175.931 33.0919 175.994 33.1776C176.062 33.2588 176.172 33.2994 176.326 33.2994C176.465 33.2994 176.623 33.252 176.799 33.1573L177.036 33.5701Z" fill="white"/>
|
||||
<path d="M173.891 32.8997C173.891 33.044 173.915 33.1523 173.965 33.2244C174.015 33.2921 174.089 33.344 174.188 33.3801L174.046 33.8131C173.861 33.7905 173.712 33.7387 173.6 33.6575C173.487 33.5763 173.404 33.45 173.349 33.2786C173.11 33.6349 172.756 33.8131 172.287 33.8131C171.935 33.8131 171.658 33.7138 171.455 33.5154C171.252 33.3169 171.15 33.0575 171.15 32.7373C171.15 32.3584 171.286 32.0674 171.556 31.8644C171.832 31.6615 172.219 31.56 172.72 31.56H173.268V31.2961C173.268 31.0435 173.207 30.8631 173.085 30.7548C172.964 30.6465 172.777 30.5924 172.524 30.5924C172.262 30.5924 171.942 30.6556 171.563 30.7819L171.408 30.3285C171.85 30.1662 172.26 30.085 172.639 30.085C173.058 30.085 173.372 30.1887 173.579 30.3962C173.787 30.5992 173.891 30.8901 173.891 31.269V32.8997ZM172.429 33.3462C172.786 33.3462 173.065 33.1613 173.268 32.7914V31.9727H172.801C172.143 31.9727 171.813 32.2163 171.813 32.7034C171.813 32.9154 171.865 33.0756 171.969 33.1838C172.073 33.2921 172.226 33.3462 172.429 33.3462Z" fill="white"/>
|
||||
<path d="M170.823 33.5701C170.589 33.7324 170.322 33.8136 170.025 33.8136C169.722 33.8136 169.486 33.7279 169.314 33.5565C169.147 33.3806 169.064 33.128 169.064 32.7987V30.6471H168.441V30.1667H169.064V29.3615L169.686 29.2871V30.1667H170.532L170.464 30.6471H169.686V32.7717C169.686 32.9566 169.718 33.0919 169.781 33.1776C169.849 33.2588 169.959 33.2994 170.113 33.2994C170.252 33.2994 170.41 33.252 170.586 33.1573L170.823 33.5701Z" fill="white"/>
|
||||
<path d="M166.453 28.9893C166.764 28.9893 167.03 29.0344 167.251 29.1246C167.472 29.2103 167.686 29.3456 167.894 29.5305L167.542 29.923C167.366 29.7831 167.192 29.6817 167.021 29.6185C166.854 29.5508 166.674 29.517 166.48 29.517C166.236 29.517 166.035 29.5734 165.877 29.6862C165.72 29.7989 165.641 29.9636 165.641 30.1801C165.641 30.3154 165.668 30.4304 165.722 30.5252C165.776 30.6154 165.875 30.6988 166.02 30.7755C166.168 30.8522 166.383 30.9334 166.662 31.0191C166.956 31.1093 167.199 31.2063 167.393 31.31C167.587 31.4138 167.743 31.5581 167.86 31.7431C167.982 31.9235 168.043 32.1535 168.043 32.4332C168.043 32.7039 167.975 32.9429 167.84 33.1504C167.709 33.3579 167.517 33.5203 167.265 33.6376C167.016 33.7549 166.721 33.8135 166.378 33.8135C165.733 33.8135 165.205 33.6128 164.795 33.2113L165.147 32.8189C165.336 32.9722 165.528 33.0895 165.722 33.1707C165.916 33.2474 166.132 33.2857 166.371 33.2857C166.66 33.2857 166.899 33.2158 167.089 33.076C167.278 32.9316 167.373 32.7241 167.373 32.4535C167.373 32.3001 167.343 32.1738 167.285 32.0746C167.226 31.9709 167.125 31.8784 166.98 31.7972C166.841 31.716 166.635 31.6348 166.365 31.5536C165.887 31.4093 165.537 31.2356 165.316 31.0326C165.095 30.8296 164.984 30.5545 164.984 30.2072C164.984 29.9726 165.045 29.7628 165.167 29.5779C165.293 29.393 165.467 29.2486 165.688 29.1449C165.914 29.0411 166.168 28.9893 166.453 28.9893Z" fill="white"/>
|
||||
<path d="M164.139 30.085C164.266 30.085 164.383 30.0985 164.491 30.1256L164.376 30.7345C164.268 30.7074 164.164 30.6939 164.065 30.6939C163.844 30.6939 163.666 30.7751 163.53 30.9375C163.395 31.0999 163.289 31.3525 163.212 31.6953V33.7319H162.59V30.1662H163.124L163.185 30.8901C163.28 30.624 163.409 30.4233 163.571 30.2879C163.733 30.1526 163.923 30.085 164.139 30.085Z" fill="white"/>
|
||||
<path d="M161.244 32.8997C161.244 33.044 161.269 33.1523 161.319 33.2244C161.368 33.2921 161.443 33.344 161.542 33.3801L161.4 33.8131C161.215 33.7905 161.066 33.7387 160.953 33.6575C160.84 33.5763 160.757 33.45 160.703 33.2786C160.464 33.6349 160.11 33.8131 159.641 33.8131C159.289 33.8131 159.011 33.7138 158.808 33.5154C158.605 33.3169 158.504 33.0575 158.504 32.7373C158.504 32.3584 158.639 32.0674 158.91 31.8644C159.185 31.6615 159.573 31.56 160.074 31.56H160.622V31.2961C160.622 31.0435 160.561 30.8631 160.439 30.7548C160.317 30.6465 160.13 30.5924 159.877 30.5924C159.616 30.5924 159.296 30.6556 158.917 30.7819L158.761 30.3285C159.203 30.1662 159.614 30.085 159.992 30.085C160.412 30.085 160.725 30.1887 160.933 30.3962C161.14 30.5992 161.244 30.8901 161.244 31.269V32.8997ZM159.783 33.3462C160.139 33.3462 160.419 33.1613 160.622 32.7914V31.9727H160.155C159.496 31.9727 159.167 32.2163 159.167 32.7034C159.167 32.9154 159.219 33.0756 159.323 33.1838C159.426 33.2921 159.58 33.3462 159.783 33.3462Z" fill="white"/>
|
||||
<path d="M157.847 31.8441C157.847 31.9479 157.842 32.0539 157.833 32.1622H155.56C155.587 32.5546 155.686 32.8433 155.857 33.0282C156.029 33.2132 156.25 33.3056 156.52 33.3056C156.692 33.3056 156.85 33.2808 156.994 33.2312C157.138 33.1816 157.289 33.1026 157.447 32.9944L157.718 33.3665C157.339 33.6642 156.924 33.8131 156.473 33.8131C155.977 33.8131 155.589 33.6507 155.309 33.3259C155.034 33.0012 154.896 32.5546 154.896 31.9862C154.896 31.6164 154.955 31.2893 155.072 31.0052C155.194 30.7165 155.366 30.4909 155.587 30.3285C155.812 30.1662 156.076 30.085 156.378 30.085C156.852 30.085 157.215 30.2406 157.468 30.5518C157.72 30.8631 157.847 31.2938 157.847 31.8441ZM157.231 31.6615C157.231 31.3096 157.161 31.0412 157.021 30.8563C156.881 30.6714 156.671 30.5789 156.392 30.5789C155.882 30.5789 155.605 30.9533 155.56 31.7021H157.231V31.6615Z" fill="white"/>
|
||||
<path d="M152.57 28.9893C152.863 28.9893 153.116 29.0321 153.328 29.1178C153.544 29.199 153.759 29.3276 153.971 29.5035L153.592 29.8959C153.425 29.7606 153.265 29.6636 153.111 29.605C152.958 29.5463 152.777 29.517 152.57 29.517C152.331 29.517 152.11 29.5824 151.907 29.7132C151.708 29.8395 151.546 30.0448 151.42 30.3289C151.293 30.6086 151.23 30.965 151.23 31.398C151.23 32.052 151.336 32.5302 151.548 32.8324C151.765 33.1346 152.083 33.2857 152.502 33.2857C152.845 33.2857 153.141 33.2158 153.389 33.076V31.6686H152.563L152.489 31.1476H154.025V33.4008C153.542 33.6759 153.035 33.8135 152.502 33.8135C151.889 33.8135 151.408 33.6083 151.061 33.1978C150.718 32.7873 150.547 32.1874 150.547 31.398C150.547 30.8928 150.637 30.4598 150.818 30.0989C151.002 29.7335 151.248 29.4584 151.555 29.2734C151.866 29.084 152.205 28.9893 152.57 28.9893Z" fill="white"/>
|
||||
<path d="M281.749 28.5391L284.232 29.6961V30.3321L281.749 31.4891L281.525 30.9884L283.738 30.0141L281.525 29.0533L281.749 28.5391Z" fill="white"/>
|
||||
<path d="M278.911 30.3793C278.911 30.4831 278.906 30.5891 278.897 30.6973H276.624C276.651 31.0897 276.75 31.3784 276.922 31.5634C277.093 31.7483 277.314 31.8408 277.585 31.8408C277.756 31.8408 277.914 31.816 278.058 31.7664C278.203 31.7167 278.354 31.6378 278.512 31.5295L278.782 31.9017C278.404 32.1994 277.989 32.3482 277.537 32.3482C277.041 32.3482 276.653 32.1859 276.374 31.8611C276.099 31.5363 275.961 31.0897 275.961 30.5214C275.961 30.1515 276.02 29.8245 276.137 29.5403C276.259 29.2516 276.43 29.0261 276.651 28.8637C276.877 28.7013 277.14 28.6201 277.443 28.6201C277.916 28.6201 278.279 28.7757 278.532 29.087C278.785 29.3982 278.911 29.829 278.911 30.3793ZM278.295 30.1966C278.295 29.8448 278.225 29.5764 278.085 29.3915C277.946 29.2065 277.736 29.114 277.456 29.114C276.947 29.114 276.669 29.4884 276.624 30.2372H278.295V30.1966Z" fill="white"/>
|
||||
<path d="M274.867 27.2668V32.267H274.319L274.258 31.773C274.14 31.9535 273.994 32.0956 273.818 32.1993C273.642 32.2985 273.446 32.3482 273.229 32.3482C272.805 32.3482 272.474 32.1813 272.235 31.8475C272 31.5137 271.883 31.0649 271.883 30.501C271.883 30.1356 271.939 29.8109 272.052 29.5267C272.165 29.2425 272.327 29.0215 272.539 28.8636C272.751 28.7012 272.999 28.62 273.283 28.62C273.649 28.62 273.969 28.7666 274.244 29.0598V27.1924L274.867 27.2668ZM273.365 31.8542C273.554 31.8542 273.716 31.8114 273.852 31.7257C273.987 31.6355 274.118 31.5024 274.244 31.3265V29.5808C274.127 29.4275 274.001 29.3124 273.865 29.2357C273.734 29.1546 273.586 29.114 273.419 29.114C273.144 29.114 272.929 29.229 272.776 29.459C272.627 29.6891 272.553 30.0319 272.553 30.4875C272.553 30.9476 272.623 31.2904 272.762 31.5159C272.902 31.7415 273.103 31.8542 273.365 31.8542Z" fill="white"/>
|
||||
<path d="M270.753 32.2669H270.218L270.171 31.7121C270.035 31.9331 269.88 32.0955 269.704 32.1992C269.528 32.2985 269.314 32.3481 269.061 32.3481C268.75 32.3481 268.506 32.2534 268.33 32.0639C268.154 31.8745 268.066 31.6061 268.066 31.2588V28.7012H268.689V31.1911C268.689 31.4347 268.732 31.6083 268.817 31.7121C268.903 31.8113 269.043 31.8609 269.237 31.8609C269.584 31.8609 269.882 31.6557 270.13 31.2452V28.7012H270.753V32.2669Z" fill="white"/>
|
||||
<path d="M267.388 32.1042C267.153 32.2666 266.887 32.3478 266.589 32.3478C266.287 32.3478 266.05 32.2621 265.879 32.0907C265.712 31.9148 265.628 31.6622 265.628 31.3329V29.1813H265.006V28.7009H265.628V27.8957L266.251 27.8213V28.7009H267.097L267.029 29.1813H266.251V31.3058C266.251 31.4908 266.282 31.6261 266.346 31.7118C266.413 31.793 266.524 31.8336 266.677 31.8336C266.817 31.8336 266.975 31.7862 267.151 31.6915L267.388 32.1042Z" fill="white"/>
|
||||
<path d="M264.233 28.7011V32.2668H263.611V28.7011H264.233ZM263.915 26.9893C264.046 26.9893 264.152 27.0299 264.233 27.111C264.315 27.1922 264.355 27.2937 264.355 27.4155C264.355 27.5373 264.315 27.6388 264.233 27.72C264.152 27.7967 264.046 27.835 263.915 27.835C263.789 27.835 263.685 27.7967 263.604 27.72C263.523 27.6388 263.482 27.5373 263.482 27.4155C263.482 27.2937 263.523 27.1922 263.604 27.111C263.685 27.0299 263.789 26.9893 263.915 26.9893Z" fill="white"/>
|
||||
<path d="M262.897 32.1042C262.663 32.2666 262.397 32.3478 262.099 32.3478C261.797 32.3478 261.56 32.2621 261.388 32.0907C261.222 31.9148 261.138 31.6622 261.138 31.3329V29.1813H260.516V28.7009H261.138V27.8957L261.761 27.8213V28.7009H262.606L262.539 29.1813H261.761V31.3058C261.761 31.4908 261.792 31.6261 261.855 31.7118C261.923 31.793 262.033 31.8336 262.187 31.8336C262.327 31.8336 262.485 31.7862 262.66 31.6915L262.897 32.1042Z" fill="white"/>
|
||||
<path d="M259.758 32.3482C259.528 32.3482 259.345 32.2805 259.21 32.1452C259.079 32.0053 259.014 31.8114 259.014 31.5633V27.2668L259.636 27.1924V31.5498C259.636 31.649 259.652 31.7212 259.684 31.7663C259.72 31.8114 259.778 31.8339 259.859 31.8339C259.945 31.8339 260.022 31.8204 260.089 31.7933L260.252 32.2264C260.103 32.3076 259.938 32.3482 259.758 32.3482Z" fill="white"/>
|
||||
<path d="M257.619 32.2663L257.267 31.0958H255.501L255.15 32.2663H254.5L255.995 27.6045H256.807L258.296 32.2663H257.619ZM255.657 30.5748H257.112L256.388 28.139L255.657 30.5748Z" fill="white"/>
|
||||
<path d="M253.545 31.4072C253.68 31.4072 253.793 31.4523 253.883 31.5425C253.974 31.6328 254.019 31.7433 254.019 31.8741C254.019 32.0049 253.974 32.1177 253.883 32.2124C253.793 32.3026 253.68 32.3477 253.545 32.3477C253.414 32.3477 253.304 32.3026 253.213 32.2124C253.123 32.1177 253.078 32.0049 253.078 31.8741C253.078 31.7433 253.123 31.6328 253.213 31.5425C253.304 31.4523 253.414 31.4072 253.545 31.4072Z" fill="white"/>
|
||||
<path d="M252.388 30.3793C252.388 30.4831 252.383 30.5891 252.374 30.6973H250.101C250.128 31.0897 250.227 31.3784 250.398 31.5634C250.57 31.7483 250.791 31.8408 251.061 31.8408C251.233 31.8408 251.391 31.816 251.535 31.7664C251.679 31.7167 251.83 31.6378 251.988 31.5295L252.259 31.9017C251.88 32.1994 251.465 32.3482 251.014 32.3482C250.518 32.3482 250.13 32.1859 249.85 31.8611C249.575 31.5363 249.438 31.0897 249.438 30.5214C249.438 30.1515 249.496 29.8245 249.613 29.5403C249.735 29.2516 249.907 29.0261 250.128 28.8637C250.353 28.7013 250.617 28.6201 250.919 28.6201C251.393 28.6201 251.756 28.7757 252.009 29.087C252.261 29.3982 252.388 29.829 252.388 30.3793ZM251.772 30.1966C251.772 29.8448 251.702 29.5764 251.562 29.3915C251.422 29.2065 251.212 29.114 250.933 29.114C250.423 29.114 250.146 29.4884 250.101 30.2372H251.772V30.1966Z" fill="white"/>
|
||||
<path d="M247.34 28.6201C247.665 28.6201 247.917 28.7171 248.098 28.9111C248.283 29.105 248.375 29.3712 248.375 29.7095V32.267H247.753V29.7974C247.753 29.5448 247.705 29.3666 247.611 29.2629C247.516 29.1592 247.376 29.1073 247.191 29.1073C247.002 29.1073 246.835 29.1614 246.691 29.2697C246.546 29.3779 246.411 29.5335 246.285 29.7365V32.267H245.662V28.7013H246.197L246.251 29.2291C246.377 29.0396 246.533 28.8908 246.718 28.7825C246.907 28.6742 247.115 28.6201 247.34 28.6201Z" fill="white"/>
|
||||
<path d="M244.314 31.4348C244.314 31.5792 244.339 31.6874 244.389 31.7596C244.439 31.8273 244.513 31.8791 244.612 31.9152L244.47 32.3482C244.285 32.3257 244.136 32.2738 244.024 32.1926C243.911 32.1114 243.827 31.9851 243.773 31.8137C243.534 32.1701 243.18 32.3482 242.711 32.3482C242.359 32.3482 242.082 32.249 241.879 32.0505C241.676 31.8521 241.574 31.5927 241.574 31.2724C241.574 30.8935 241.71 30.6026 241.98 30.3996C242.255 30.1966 242.643 30.0951 243.144 30.0951H243.692V29.8313C243.692 29.5786 243.631 29.3982 243.509 29.29C243.388 29.1817 243.2 29.1276 242.948 29.1276C242.686 29.1276 242.366 29.1907 241.987 29.317L241.831 28.8637C242.273 28.7013 242.684 28.6201 243.063 28.6201C243.482 28.6201 243.796 28.7239 244.003 28.9314C244.211 29.1343 244.314 29.4253 244.314 29.8042V31.4348ZM242.853 31.8814C243.209 31.8814 243.489 31.6964 243.692 31.3266V30.5079H243.225C242.567 30.5079 242.237 30.7514 242.237 31.2386C242.237 31.4506 242.289 31.6107 242.393 31.719C242.497 31.8273 242.65 31.8814 242.853 31.8814Z" fill="white"/>
|
||||
<path d="M240.608 32.3482C240.378 32.3482 240.195 32.2805 240.06 32.1452C239.929 32.0053 239.863 31.8114 239.863 31.5633V27.2668L240.486 27.1924V31.5498C240.486 31.649 240.502 31.7212 240.533 31.7663C240.569 31.8114 240.628 31.8339 240.709 31.8339C240.795 31.8339 240.871 31.8204 240.939 31.7933L241.101 32.2264C240.953 32.3076 240.788 32.3482 240.608 32.3482Z" fill="white"/>
|
||||
<path d="M237.223 27.6045C237.8 27.6045 238.247 27.7263 238.562 27.9699C238.878 28.2089 239.036 28.5675 239.036 29.0457C239.036 29.5554 238.871 29.9343 238.542 30.1824C238.213 30.4305 237.775 30.5545 237.229 30.5545H236.641V32.2663H235.998V27.6045H237.223ZM237.202 30.0471C237.577 30.0471 237.861 29.9749 238.055 29.8305C238.253 29.6862 238.353 29.4268 238.353 29.0524C238.353 28.7186 238.253 28.4773 238.055 28.3285C237.861 28.1796 237.581 28.1052 237.216 28.1052H236.641V30.0471H237.202Z" fill="white"/>
|
||||
<path d="M231.854 33.2279V32.6934H235.142V33.2279H231.854Z" fill="white"/>
|
||||
<path d="M230.091 28.6201C230.384 28.6201 230.619 28.7194 230.795 28.9178C230.971 29.1118 231.059 29.3757 231.059 29.7095V32.267H230.436V29.7974C230.436 29.3373 230.269 29.1073 229.935 29.1073C229.759 29.1073 229.611 29.1592 229.489 29.2629C229.367 29.3621 229.236 29.52 229.096 29.7365V32.267H228.474V29.7974C228.474 29.3373 228.307 29.1073 227.973 29.1073C227.793 29.1073 227.642 29.1592 227.52 29.2629C227.398 29.3666 227.27 29.5245 227.134 29.7365V32.267H226.512V28.7013H227.046L227.1 29.2223C227.367 28.8208 227.709 28.6201 228.129 28.6201C228.35 28.6201 228.537 28.6765 228.69 28.7893C228.848 28.902 228.961 29.0599 229.029 29.2629C229.169 29.0554 229.322 28.8975 229.489 28.7893C229.66 28.6765 229.861 28.6201 230.091 28.6201Z" fill="white"/>
|
||||
<path d="M221.058 27.5234C221.301 27.5234 221.516 27.5685 221.701 27.6588C221.89 27.7445 222.037 27.8663 222.14 28.0241C222.244 28.182 222.296 28.3579 222.296 28.5519C222.296 28.818 222.21 29.0481 222.039 29.242C221.872 29.4315 221.64 29.6142 221.342 29.7901L222.533 30.9133C222.713 30.5479 222.849 30.1667 222.939 29.7698L223.521 29.9389C223.363 30.4622 223.162 30.9065 222.918 31.2719L223.676 31.9823L223.23 32.3477L222.573 31.7117C222.379 31.9237 222.161 32.0838 221.917 32.1921C221.674 32.2958 221.394 32.3477 221.078 32.3477C220.78 32.3477 220.517 32.2958 220.286 32.1921C220.061 32.0883 219.883 31.9417 219.752 31.7523C219.626 31.5583 219.562 31.335 219.562 31.0824C219.562 30.8027 219.641 30.5592 219.799 30.3517C219.957 30.1397 220.192 29.9344 220.503 29.736C220.277 29.5194 220.111 29.3255 220.002 29.1541C219.899 28.9827 219.847 28.7887 219.847 28.5722C219.847 28.2655 219.953 28.0151 220.165 27.8211C220.381 27.6227 220.679 27.5234 221.058 27.5234ZM221.065 27.9835C220.875 27.9835 220.726 28.0377 220.618 28.1459C220.51 28.2542 220.456 28.394 220.456 28.5654C220.456 28.7278 220.498 28.8744 220.584 29.0052C220.67 29.1315 220.805 29.2826 220.99 29.4585C221.22 29.3187 221.394 29.1811 221.511 29.0458C221.628 28.906 221.687 28.7526 221.687 28.5857C221.687 28.3963 221.631 28.2497 221.518 28.1459C221.405 28.0377 221.254 27.9835 221.065 27.9835ZM220.862 30.0743C220.636 30.2231 220.469 30.3765 220.361 30.5344C220.253 30.6877 220.199 30.8636 220.199 31.0621C220.199 31.3102 220.284 31.5042 220.456 31.644C220.632 31.7838 220.862 31.8537 221.146 31.8537C221.358 31.8537 221.549 31.8131 221.721 31.732C221.892 31.6508 222.057 31.529 222.215 31.3666L220.862 30.0743Z" fill="white"/>
|
||||
<path d="M216.06 27.5234C216.303 27.5234 216.518 27.5685 216.703 27.6588C216.892 27.7445 217.039 27.8663 217.142 28.0241C217.246 28.182 217.298 28.3579 217.298 28.5519C217.298 28.818 217.212 29.0481 217.041 29.242C216.874 29.4315 216.642 29.6142 216.344 29.7901L217.535 30.9133C217.715 30.5479 217.851 30.1667 217.941 29.7698L218.523 29.9389C218.365 30.4622 218.164 30.9065 217.92 31.2719L218.678 31.9823L218.232 32.3477L217.575 31.7117C217.381 31.9237 217.163 32.0838 216.919 32.1921C216.675 32.2958 216.396 32.3477 216.08 32.3477C215.782 32.3477 215.518 32.2958 215.288 32.1921C215.063 32.0883 214.885 31.9417 214.754 31.7523C214.628 31.5583 214.564 31.335 214.564 31.0824C214.564 30.8027 214.643 30.5592 214.801 30.3517C214.959 30.1397 215.194 29.9344 215.505 29.736C215.279 29.5194 215.113 29.3255 215.004 29.1541C214.901 28.9827 214.849 28.7887 214.849 28.5722C214.849 28.2655 214.955 28.0151 215.167 27.8211C215.383 27.6227 215.681 27.5234 216.06 27.5234ZM216.067 27.9835C215.877 27.9835 215.728 28.0377 215.62 28.1459C215.512 28.2542 215.458 28.394 215.458 28.5654C215.458 28.7278 215.5 28.8744 215.586 29.0052C215.672 29.1315 215.807 29.2826 215.992 29.4585C216.222 29.3187 216.396 29.1811 216.513 29.0458C216.63 28.906 216.689 28.7526 216.689 28.5857C216.689 28.3963 216.633 28.2497 216.52 28.1459C216.407 28.0377 216.256 27.9835 216.067 27.9835ZM215.864 30.0743C215.638 30.2231 215.471 30.3765 215.363 30.5344C215.255 30.6877 215.2 30.8636 215.2 31.0621C215.2 31.3102 215.286 31.5042 215.458 31.644C215.633 31.7838 215.864 31.8537 216.148 31.8537C216.36 31.8537 216.551 31.8131 216.723 31.732C216.894 31.6508 217.059 31.529 217.217 31.3666L215.864 30.0743Z" fill="white"/>
|
||||
<path d="M211.451 27.2668V32.267H210.903L210.842 31.773C210.724 31.9535 210.578 32.0956 210.402 32.1993C210.226 32.2985 210.03 32.3482 209.813 32.3482C209.389 32.3482 209.058 32.1813 208.819 31.8475C208.584 31.5137 208.467 31.0649 208.467 30.501C208.467 30.1356 208.523 29.8109 208.636 29.5267C208.749 29.2425 208.911 29.0215 209.123 28.8636C209.335 28.7012 209.583 28.62 209.867 28.62C210.233 28.62 210.553 28.7666 210.828 29.0598V27.1924L211.451 27.2668ZM209.949 31.8542C210.138 31.8542 210.3 31.8114 210.436 31.7257C210.571 31.6355 210.702 31.5024 210.828 31.3265V29.5808C210.711 29.4275 210.585 29.3124 210.449 29.2357C210.318 29.1546 210.17 29.114 210.003 29.114C209.728 29.114 209.513 29.229 209.36 29.459C209.211 29.6891 209.137 30.0319 209.137 30.4875C209.137 30.9476 209.207 31.2904 209.346 31.5159C209.486 31.7415 209.687 31.8542 209.949 31.8542Z" fill="white"/>
|
||||
<path d="M207.628 30.3793C207.628 30.4831 207.623 30.5891 207.614 30.6973H205.341C205.368 31.0897 205.467 31.3784 205.639 31.5634C205.81 31.7483 206.031 31.8408 206.302 31.8408C206.473 31.8408 206.631 31.816 206.775 31.7664C206.92 31.7167 207.071 31.6378 207.229 31.5295L207.499 31.9017C207.12 32.1994 206.705 32.3482 206.254 32.3482C205.758 32.3482 205.37 32.1859 205.09 31.8611C204.815 31.5363 204.678 31.0897 204.678 30.5214C204.678 30.1515 204.736 29.8245 204.854 29.5403C204.975 29.2516 205.147 29.0261 205.368 28.8637C205.593 28.7013 205.857 28.6201 206.16 28.6201C206.633 28.6201 206.996 28.7757 207.249 29.087C207.501 29.3982 207.628 29.829 207.628 30.3793ZM207.012 30.1966C207.012 29.8448 206.942 29.5764 206.802 29.3915C206.662 29.2065 206.453 29.114 206.173 29.114C205.663 29.114 205.386 29.4884 205.341 30.2372H207.012V30.1966Z" fill="white"/>
|
||||
<path d="M204.012 28.6201C204.139 28.6201 204.256 28.6336 204.364 28.6607L204.249 29.2697C204.141 29.2426 204.037 29.2291 203.938 29.2291C203.717 29.2291 203.539 29.3103 203.403 29.4726C203.268 29.635 203.162 29.8876 203.085 30.2305V32.267H202.463V28.7013H202.997L203.058 29.4253C203.153 29.1592 203.282 28.9584 203.444 28.8231C203.606 28.6878 203.796 28.6201 204.012 28.6201Z" fill="white"/>
|
||||
<path d="M201.401 30.3793C201.401 30.4831 201.397 30.5891 201.388 30.6973H199.114C199.141 31.0897 199.241 31.3784 199.412 31.5634C199.583 31.7483 199.804 31.8408 200.075 31.8408C200.246 31.8408 200.404 31.816 200.549 31.7664C200.693 31.7167 200.844 31.6378 201.002 31.5295L201.273 31.9017C200.894 32.1994 200.479 32.3482 200.028 32.3482C199.531 32.3482 199.144 32.1859 198.864 31.8611C198.589 31.5363 198.451 31.0897 198.451 30.5214C198.451 30.1515 198.51 29.8245 198.627 29.5403C198.749 29.2516 198.92 29.0261 199.141 28.8637C199.367 28.7013 199.631 28.6201 199.933 28.6201C200.407 28.6201 200.77 28.7757 201.022 29.087C201.275 29.3982 201.401 29.829 201.401 30.3793ZM200.785 30.1966C200.785 29.8448 200.716 29.5764 200.576 29.3915C200.436 29.2065 200.226 29.114 199.946 29.114C199.437 29.114 199.159 29.4884 199.114 30.2372H200.785V30.1966Z" fill="white"/>
|
||||
<path d="M197.864 28.7012L197.052 32.2669H196.206L195.584 29.2628L194.941 32.2669H194.115L193.283 28.7012H193.906L194.548 31.8339L195.252 28.7012H195.949L196.619 31.8339L197.268 28.7012H197.864Z" fill="white"/>
|
||||
<path d="M191.11 28.6201C191.611 28.6201 191.999 28.787 192.274 29.1208C192.554 29.4546 192.694 29.9079 192.694 30.4808C192.694 30.8507 192.631 31.1777 192.504 31.4619C192.378 31.7415 192.195 31.9603 191.956 32.1182C191.717 32.2716 191.433 32.3482 191.104 32.3482C190.603 32.3482 190.213 32.1813 189.933 31.8475C189.654 31.5138 189.514 31.0604 189.514 30.4876C189.514 30.1177 189.577 29.7929 189.703 29.5132C189.829 29.2291 190.012 29.0103 190.251 28.8569C190.49 28.6991 190.777 28.6201 191.11 28.6201ZM191.11 29.1208C190.493 29.1208 190.184 29.5764 190.184 30.4876C190.184 31.3942 190.49 31.8475 191.104 31.8475C191.717 31.8475 192.024 31.392 192.024 30.4808C192.024 29.5741 191.719 29.1208 191.11 29.1208Z" fill="white"/>
|
||||
<path d="M187.182 27.6045V31.7048H189.097L189.022 32.2663H186.539V27.6045H187.182Z" fill="white"/>
|
||||
<path d="M184.975 31.4072C185.11 31.4072 185.223 31.4523 185.313 31.5425C185.403 31.6328 185.448 31.7433 185.448 31.8741C185.448 32.0049 185.403 32.1177 185.313 32.2124C185.223 32.3026 185.11 32.3477 184.975 32.3477C184.844 32.3477 184.733 32.3026 184.643 32.2124C184.553 32.1177 184.508 32.0049 184.508 31.8741C184.508 31.7433 184.553 31.6328 184.643 31.5425C184.733 31.4523 184.844 31.4072 184.975 31.4072Z" fill="white"/>
|
||||
<path d="M247.371 36.8545C247.669 37.2785 247.896 37.6281 248.054 37.9032C248.217 38.1739 248.352 38.5009 248.46 38.8843C248.573 39.2632 248.629 39.703 248.629 40.2037C248.629 40.7044 248.573 41.1465 248.46 41.5299C248.352 41.9088 248.217 42.2358 248.054 42.511C247.896 42.7816 247.669 43.1289 247.371 43.5529L246.979 43.2823C247.213 42.9395 247.398 42.6305 247.533 42.3553C247.673 42.0757 247.781 41.7622 247.858 41.4148C247.939 41.0675 247.98 40.6638 247.98 40.2037C247.98 39.7391 247.939 39.3331 247.858 38.9858C247.781 38.6385 247.673 38.3295 247.533 38.0589C247.398 37.7837 247.213 37.4725 246.979 37.1251L247.371 36.8545Z" fill="white"/>
|
||||
<path d="M244.756 37.9775C245.257 37.9775 245.633 38.1783 245.886 38.5797C246.143 38.9767 246.271 39.554 246.271 40.3118C246.271 41.0696 246.143 41.6493 245.886 42.0507C245.633 42.4522 245.257 42.6529 244.756 42.6529C244.255 42.6529 243.876 42.4522 243.619 42.0507C243.367 41.6493 243.24 41.0696 243.24 40.3118C243.24 39.554 243.367 38.9767 243.619 38.5797C243.876 38.1783 244.255 37.9775 244.756 37.9775ZM244.756 38.4715C244.463 38.4715 244.244 38.6158 244.1 38.9045C243.96 39.1932 243.89 39.6623 243.89 40.3118C243.89 40.9614 243.96 41.4328 244.1 41.726C244.244 42.0146 244.463 42.159 244.756 42.159C245.045 42.159 245.261 42.0146 245.405 41.726C245.55 41.4328 245.622 40.9614 245.622 40.3118C245.622 39.6668 245.55 39.1999 245.405 38.9113C245.261 38.6181 245.045 38.4715 244.756 38.4715Z" fill="white"/>
|
||||
<path d="M238.12 38.8438L240.603 40.0008V40.6368L238.12 41.7938L237.896 41.2931L240.109 40.3188L237.896 39.358L238.12 38.8438Z" fill="white"/>
|
||||
<path d="M234.372 42.5919C234.232 43.0069 234.036 43.3339 233.783 43.573C233.535 43.8166 233.179 43.9632 232.714 44.0128L232.647 43.5256C232.881 43.485 233.068 43.4264 233.208 43.3497C233.348 43.273 233.458 43.1738 233.54 43.052C233.625 42.9347 233.704 42.7746 233.776 42.5716H233.567L232.369 39.0059H233.032L233.986 42.1183L234.92 39.0059H235.563L234.372 42.5919Z" fill="white"/>
|
||||
<path d="M231.686 41.7129C231.821 41.7129 231.934 41.758 232.024 41.8482C232.114 41.9384 232.159 42.0489 232.159 42.1798C232.159 42.3106 232.114 42.4233 232.024 42.5181C231.934 42.6083 231.821 42.6534 231.686 42.6534C231.555 42.6534 231.444 42.6083 231.354 42.5181C231.264 42.4233 231.219 42.3106 231.219 42.1798C231.219 42.0489 231.264 41.9384 231.354 41.8482C231.444 41.758 231.555 41.7129 231.686 41.7129Z" fill="white"/>
|
||||
<path d="M229.823 42.5919C229.683 43.0069 229.487 43.3339 229.234 43.573C228.986 43.8166 228.63 43.9632 228.165 44.0128L228.098 43.5256C228.332 43.485 228.519 43.4264 228.659 43.3497C228.799 43.273 228.91 43.1738 228.991 43.052C229.077 42.9347 229.155 42.7746 229.228 42.5716H229.018L227.82 39.0059H228.483L229.437 42.1183L230.371 39.0059H231.014L229.823 42.5919Z" fill="white"/>
|
||||
<path d="M227.716 42.4099C227.481 42.5723 227.215 42.6535 226.917 42.6535C226.615 42.6535 226.378 42.5678 226.207 42.3964C226.04 42.2204 225.956 41.9678 225.956 41.6386V39.4869H225.334V39.0065H225.956V38.2014L226.579 38.127V39.0065H227.425L227.357 39.4869H226.579V41.6115C226.579 41.7964 226.611 41.9318 226.674 42.0175C226.741 42.0987 226.852 42.1393 227.005 42.1393C227.145 42.1393 227.303 42.0919 227.479 41.9972L227.716 42.4099Z" fill="white"/>
|
||||
<path d="M224.562 39.0058V42.5715H223.939V39.0058H224.562ZM224.244 37.2939C224.374 37.2939 224.48 37.3345 224.562 37.4157C224.643 37.4969 224.683 37.5984 224.683 37.7202C224.683 37.842 224.643 37.9435 224.562 38.0247C224.48 38.1014 224.374 38.1397 224.244 38.1397C224.117 38.1397 224.014 38.1014 223.932 38.0247C223.851 37.9435 223.811 37.842 223.811 37.7202C223.811 37.5984 223.851 37.4969 223.932 37.4157C224.014 37.3345 224.117 37.2939 224.244 37.2939Z" fill="white"/>
|
||||
<path d="M221.939 38.9248C222.151 38.9248 222.345 38.9564 222.521 39.0195C222.697 39.0782 222.866 39.1752 223.028 39.3105L222.731 39.7029C222.604 39.6127 222.48 39.5473 222.359 39.5067C222.241 39.4616 222.11 39.439 221.966 39.439C221.677 39.439 221.452 39.5541 221.289 39.7841C221.132 40.0141 221.053 40.3547 221.053 40.8058C221.053 41.2569 221.132 41.5907 221.289 41.8072C221.447 42.0192 221.673 42.1252 221.966 42.1252C222.106 42.1252 222.234 42.1049 222.352 42.0643C222.469 42.0192 222.6 41.9493 222.744 41.8545L223.028 42.2605C222.704 42.5221 222.34 42.6529 221.939 42.6529C221.456 42.6529 221.075 42.4905 220.796 42.1658C220.52 41.841 220.383 41.3922 220.383 40.8193C220.383 40.4404 220.446 40.1089 220.572 39.8247C220.699 39.5405 220.877 39.3195 221.107 39.1616C221.341 39.0037 221.619 38.9248 221.939 38.9248Z" fill="white"/>
|
||||
<path d="M217.96 38.9248C218.461 38.9248 218.849 39.0917 219.124 39.4255C219.404 39.7593 219.543 40.2126 219.543 40.7855C219.543 41.1554 219.48 41.4824 219.354 41.7666C219.228 42.0462 219.045 42.265 218.806 42.4229C218.567 42.5762 218.283 42.6529 217.953 42.6529C217.453 42.6529 217.062 42.486 216.783 42.1522C216.503 41.8184 216.363 41.3651 216.363 40.7923C216.363 40.4224 216.426 40.0976 216.553 39.8179C216.679 39.5338 216.862 39.315 217.101 39.1616C217.34 39.0037 217.626 38.9248 217.96 38.9248ZM217.96 39.4255C217.342 39.4255 217.033 39.8811 217.033 40.7923C217.033 41.6989 217.34 42.1522 217.953 42.1522C218.567 42.1522 218.874 41.6967 218.874 40.7855C218.874 39.8788 218.569 39.4255 217.96 39.4255Z" fill="white"/>
|
||||
<path d="M215.315 42.6528C215.085 42.6528 214.902 42.5852 214.767 42.4499C214.636 42.31 214.57 42.1161 214.57 41.868V37.5715L215.193 37.4971V41.8544C215.193 41.9537 215.209 42.0259 215.24 42.071C215.276 42.1161 215.335 42.1386 215.416 42.1386C215.502 42.1386 215.578 42.1251 215.646 42.098L215.809 42.5311C215.66 42.6122 215.495 42.6528 215.315 42.6528Z" fill="white"/>
|
||||
<path d="M213.542 40.684C213.542 40.7877 213.537 40.8937 213.528 41.002H211.255C211.282 41.3944 211.381 41.6831 211.553 41.8681C211.724 42.053 211.945 42.1455 212.216 42.1455C212.387 42.1455 212.545 42.1207 212.689 42.071C212.834 42.0214 212.985 41.9425 213.143 41.8342L213.413 42.2064C213.034 42.5041 212.619 42.6529 212.168 42.6529C211.672 42.6529 211.284 42.4905 211.005 42.1658C210.729 41.841 210.592 41.3944 210.592 40.8261C210.592 40.4562 210.65 40.1292 210.768 39.845C210.89 39.5563 211.061 39.3308 211.282 39.1684C211.507 39.006 211.771 38.9248 212.074 38.9248C212.547 38.9248 212.91 39.0804 213.163 39.3917C213.416 39.7029 213.542 40.1337 213.542 40.684ZM212.926 40.5013C212.926 40.1495 212.856 39.8811 212.716 39.6961C212.577 39.5112 212.367 39.4187 212.087 39.4187C211.577 39.4187 211.3 39.7931 211.255 40.5419H212.926V40.5013Z" fill="white"/>
|
||||
<path d="M210.096 39.0059L208.885 42.5716H208.134L206.902 39.0059H207.579L208.513 42.0168L209.44 39.0059H210.096Z" fill="white"/>
|
||||
<path d="M206.219 41.7129C206.354 41.7129 206.467 41.758 206.557 41.8482C206.647 41.9384 206.692 42.0489 206.692 42.1798C206.692 42.3106 206.647 42.4233 206.557 42.5181C206.467 42.6083 206.354 42.6534 206.219 42.6534C206.088 42.6534 205.977 42.6083 205.887 42.5181C205.797 42.4233 205.752 42.3106 205.752 42.1798C205.752 42.0489 205.797 41.9384 205.887 41.8482C205.977 41.758 206.088 41.7129 206.219 41.7129Z" fill="white"/>
|
||||
<path d="M204.356 42.5919C204.216 43.0069 204.02 43.3339 203.768 43.573C203.52 43.8166 203.163 43.9632 202.699 44.0128L202.631 43.5256C202.865 43.485 203.053 43.4264 203.193 43.3497C203.332 43.273 203.443 43.1738 203.524 43.052C203.61 42.9347 203.689 42.7746 203.761 42.5716H203.551L202.354 39.0059H203.017L203.971 42.1183L204.904 39.0059H205.547L204.356 42.5919Z" fill="white"/>
|
||||
<path d="M201.578 37.5715V42.5717H201.03L200.969 42.0777C200.851 42.2582 200.705 42.4002 200.529 42.504C200.353 42.6032 200.157 42.6528 199.94 42.6528C199.516 42.6528 199.185 42.4859 198.946 42.1522C198.711 41.8184 198.594 41.3695 198.594 40.8057C198.594 40.4403 198.65 40.1156 198.763 39.8314C198.876 39.5472 199.038 39.3262 199.25 39.1683C199.462 39.0059 199.71 38.9247 199.994 38.9247C200.36 38.9247 200.68 39.0713 200.955 39.3645V37.4971L201.578 37.5715ZM200.076 42.1589C200.265 42.1589 200.427 42.1161 200.563 42.0304C200.698 41.9401 200.829 41.8071 200.955 41.6312V39.8855C200.838 39.7321 200.712 39.6171 200.576 39.5404C200.445 39.4592 200.297 39.4186 200.13 39.4186C199.854 39.4186 199.64 39.5337 199.487 39.7637C199.338 39.9938 199.264 40.3366 199.264 40.7922C199.264 41.2523 199.334 41.5951 199.473 41.8206C199.613 42.0461 199.814 42.1589 200.076 42.1589Z" fill="white"/>
|
||||
<path d="M196.138 38.9248C196.639 38.9248 197.026 39.0917 197.302 39.4255C197.581 39.7593 197.721 40.2126 197.721 40.7855C197.721 41.1554 197.658 41.4824 197.532 41.7666C197.405 42.0462 197.223 42.265 196.984 42.4229C196.745 42.5762 196.46 42.6529 196.131 42.6529C195.63 42.6529 195.24 42.486 194.961 42.1522C194.681 41.8184 194.541 41.3651 194.541 40.7923C194.541 40.4224 194.604 40.0976 194.73 39.8179C194.857 39.5338 195.039 39.315 195.279 39.1616C195.518 39.0037 195.804 38.9248 196.138 38.9248ZM196.138 39.4255C195.52 39.4255 195.211 39.8811 195.211 40.7923C195.211 41.6989 195.518 42.1522 196.131 42.1522C196.745 42.1522 197.051 41.6967 197.051 40.7855C197.051 39.8788 196.747 39.4255 196.138 39.4255Z" fill="white"/>
|
||||
<path d="M192.344 38.9247C192.749 38.9247 193.072 39.0894 193.311 39.4186C193.55 39.7434 193.67 40.199 193.67 40.7854C193.67 41.1553 193.613 41.4823 193.501 41.7665C193.388 42.0461 193.225 42.2649 193.013 42.4228C192.801 42.5762 192.553 42.6528 192.269 42.6528C191.895 42.6528 191.579 42.495 191.322 42.1792L191.261 42.5717H190.713V37.5715L191.335 37.4971V39.4525C191.592 39.1006 191.929 38.9247 192.344 38.9247ZM192.12 42.1589C192.395 42.1589 192.61 42.0484 192.763 41.8274C192.921 41.6018 193 41.2545 193 40.7854C193 40.3027 192.928 39.9554 192.783 39.7434C192.639 39.5269 192.434 39.4186 192.168 39.4186C191.852 39.4186 191.574 39.6036 191.335 39.9735V41.6785C191.43 41.8274 191.545 41.9447 191.68 42.0304C191.82 42.1161 191.967 42.1589 192.12 42.1589Z" fill="white"/>
|
||||
<path d="M189.363 37.5715V42.5717H188.815L188.754 42.0777C188.637 42.2582 188.49 42.4002 188.314 42.504C188.138 42.6032 187.942 42.6528 187.725 42.6528C187.301 42.6528 186.97 42.4859 186.731 42.1522C186.496 41.8184 186.379 41.3695 186.379 40.8057C186.379 40.4403 186.435 40.1156 186.548 39.8314C186.661 39.5472 186.823 39.3262 187.035 39.1683C187.247 39.0059 187.495 38.9247 187.779 38.9247C188.145 38.9247 188.465 39.0713 188.74 39.3645V37.4971L189.363 37.5715ZM187.861 42.1589C188.05 42.1589 188.213 42.1161 188.348 42.0304C188.483 41.9401 188.614 41.8071 188.74 41.6312V39.8855C188.623 39.7321 188.497 39.6171 188.361 39.5404C188.231 39.4592 188.082 39.4186 187.915 39.4186C187.64 39.4186 187.425 39.5337 187.272 39.7637C187.123 39.9938 187.049 40.3366 187.049 40.7922C187.049 41.2523 187.119 41.5951 187.258 41.8206C187.398 42.0461 187.599 42.1589 187.861 42.1589Z" fill="white"/>
|
||||
<path d="M185.247 39.0058V42.5715H184.625V39.0058H185.247ZM184.929 37.2939C185.06 37.2939 185.166 37.3345 185.247 37.4157C185.328 37.4969 185.369 37.5984 185.369 37.7202C185.369 37.842 185.328 37.9435 185.247 38.0247C185.166 38.1014 185.06 38.1397 184.929 38.1397C184.803 38.1397 184.699 38.1014 184.618 38.0247C184.537 37.9435 184.496 37.842 184.496 37.7202C184.496 37.5984 184.537 37.4969 184.618 37.4157C184.699 37.3345 184.803 37.2939 184.929 37.2939Z" fill="white"/>
|
||||
<path d="M183.918 39.168C183.782 39.2131 183.633 39.2425 183.471 39.256C183.309 39.2695 183.11 39.2763 182.876 39.2763C183.295 39.4657 183.505 39.7657 183.505 40.1762C183.505 40.5325 183.383 40.8235 183.139 41.049C182.896 41.2745 182.564 41.3873 182.145 41.3873C181.982 41.3873 181.831 41.3648 181.692 41.3197C181.637 41.3557 181.595 41.4054 181.563 41.4685C181.531 41.5271 181.516 41.588 181.516 41.6512C181.516 41.8452 181.671 41.9421 181.982 41.9421H182.551C182.79 41.9421 183.002 41.985 183.187 42.0707C183.372 42.1564 183.514 42.2737 183.613 42.4225C183.717 42.5714 183.769 42.7405 183.769 42.93C183.769 43.2773 183.627 43.5434 183.342 43.7284C183.058 43.9178 182.643 44.0126 182.098 44.0126C181.714 44.0126 181.41 43.972 181.184 43.8908C180.963 43.8141 180.805 43.6968 180.71 43.5389C180.616 43.3811 180.568 43.1781 180.568 42.93H181.13C181.13 43.0743 181.157 43.1871 181.211 43.2683C181.265 43.354 181.362 43.4171 181.502 43.4577C181.642 43.5029 181.84 43.5254 182.098 43.5254C182.472 43.5254 182.738 43.478 182.896 43.3833C183.058 43.2931 183.139 43.1555 183.139 42.9706C183.139 42.8037 183.076 42.6774 182.95 42.5917C182.824 42.506 182.648 42.4631 182.422 42.4631H181.861C181.558 42.4631 181.328 42.4 181.171 42.2737C181.017 42.1429 180.94 41.9805 180.94 41.7865C180.94 41.6692 180.974 41.5565 181.042 41.4482C181.11 41.34 181.207 41.243 181.333 41.1573C181.125 41.049 180.972 40.9159 180.873 40.7581C180.778 40.5957 180.731 40.3995 180.731 40.1694C180.731 39.9303 180.789 39.7161 180.907 39.5266C181.028 39.3372 181.193 39.1906 181.401 39.0868C181.613 38.9786 181.847 38.9245 182.104 38.9245C182.384 38.929 182.618 38.9199 182.808 38.8974C182.997 38.8703 183.153 38.8365 183.275 38.7959C183.401 38.7508 183.554 38.6876 183.735 38.6064L183.918 39.168ZM182.104 39.371C181.87 39.371 181.687 39.4454 181.556 39.5943C181.43 39.7386 181.367 39.9303 181.367 40.1694C181.367 40.413 181.432 40.6092 181.563 40.7581C181.694 40.9024 181.879 40.9746 182.118 40.9746C182.361 40.9746 182.546 40.9047 182.673 40.7648C182.803 40.6205 182.869 40.4198 182.869 40.1626C182.869 39.6349 182.614 39.371 182.104 39.371Z" fill="white"/>
|
||||
<path d="M179.687 39.0058V42.5715H179.064V39.0058H179.687ZM179.369 37.2939C179.499 37.2939 179.605 37.3345 179.687 37.4157C179.768 37.4969 179.808 37.5984 179.808 37.7202C179.808 37.842 179.768 37.9435 179.687 38.0247C179.605 38.1014 179.499 38.1397 179.369 38.1397C179.242 38.1397 179.139 38.1014 179.057 38.0247C178.976 37.9435 178.936 37.842 178.936 37.7202C178.936 37.5984 178.976 37.4969 179.057 37.4157C179.139 37.3345 179.242 37.2939 179.369 37.2939Z" fill="white"/>
|
||||
<path d="M176.3 40.5963H175.576V42.572H174.934V37.9102H176.158C176.74 37.9102 177.18 38.0207 177.478 38.2417C177.78 38.4627 177.931 38.792 177.931 39.2295C177.931 39.5543 177.848 39.8182 177.681 40.0212C177.514 40.2242 177.261 40.3775 176.923 40.4813L178.181 42.572H177.417L176.3 40.5963ZM176.226 40.1024C176.564 40.1024 176.819 40.0347 176.99 39.8994C177.162 39.7596 177.248 39.5363 177.248 39.2295C177.248 38.9409 177.16 38.7334 176.984 38.6071C176.812 38.4763 176.535 38.4108 176.151 38.4108H175.576V40.1024H176.226Z" fill="white"/>
|
||||
<path d="M170.789 43.5326V42.998H174.077V43.5326H170.789Z" fill="white"/>
|
||||
<path d="M169.028 38.9248C169.322 38.9248 169.556 39.024 169.732 39.2225C169.908 39.4165 169.996 39.6804 169.996 40.0141V42.5717H169.374V40.1021C169.374 39.642 169.207 39.412 168.873 39.412C168.697 39.412 168.548 39.4638 168.426 39.5676C168.305 39.6668 168.174 39.8247 168.034 40.0412V42.5717H167.411V40.1021C167.411 39.642 167.244 39.412 166.911 39.412C166.73 39.412 166.579 39.4638 166.457 39.5676C166.336 39.6713 166.207 39.8292 166.072 40.0412V42.5717H165.449V39.006H165.984L166.038 39.527C166.304 39.1255 166.647 38.9248 167.066 38.9248C167.287 38.9248 167.475 38.9812 167.628 39.094C167.786 39.2067 167.899 39.3646 167.966 39.5676C168.106 39.3601 168.259 39.2022 168.426 39.094C168.598 38.9812 168.798 38.9248 169.028 38.9248Z" fill="white"/>
|
||||
<path d="M159.993 37.8291C160.237 37.8291 160.451 37.8742 160.636 37.9644C160.826 38.0501 160.972 38.1719 161.076 38.3298C161.18 38.4877 161.232 38.6636 161.232 38.8575C161.232 39.1237 161.146 39.3537 160.974 39.5477C160.808 39.7371 160.575 39.9198 160.278 40.0957L161.468 41.2189C161.649 40.8536 161.784 40.4724 161.874 40.0754L162.456 40.2446C162.298 40.7678 162.098 41.2122 161.854 41.5775L162.612 42.288L162.165 42.6533L161.509 42.0173C161.315 42.2293 161.096 42.3895 160.853 42.4977C160.609 42.6015 160.329 42.6533 160.014 42.6533C159.716 42.6533 159.452 42.6015 159.222 42.4977C158.996 42.394 158.818 42.2474 158.688 42.0579C158.561 41.864 158.498 41.6407 158.498 41.3881C158.498 41.1084 158.577 40.8648 158.735 40.6573C158.893 40.4453 159.127 40.2401 159.439 40.0416C159.213 39.8251 159.046 39.6311 158.938 39.4597C158.834 39.2883 158.782 39.0944 158.782 38.8778C158.782 38.5711 158.888 38.3208 159.1 38.1268C159.317 37.9283 159.614 37.8291 159.993 37.8291ZM160 38.2892C159.811 38.2892 159.662 38.3433 159.554 38.4516C159.445 38.5598 159.391 38.6997 159.391 38.8711C159.391 39.0335 159.434 39.1801 159.52 39.3109C159.605 39.4372 159.741 39.5883 159.926 39.7642C160.156 39.6244 160.329 39.4868 160.447 39.3515C160.564 39.2116 160.623 39.0583 160.623 38.8914C160.623 38.7019 160.566 38.5553 160.453 38.4516C160.341 38.3433 160.19 38.2892 160 38.2892ZM159.797 40.3799C159.572 40.5288 159.405 40.6821 159.296 40.84C159.188 40.9934 159.134 41.1693 159.134 41.3678C159.134 41.6159 159.22 41.8098 159.391 41.9497C159.567 42.0895 159.797 42.1594 160.081 42.1594C160.293 42.1594 160.485 42.1188 160.656 42.0376C160.828 41.9564 160.992 41.8346 161.15 41.6723L159.797 40.3799Z" fill="white"/>
|
||||
<path d="M154.997 37.8291C155.241 37.8291 155.455 37.8742 155.64 37.9644C155.829 38.0501 155.976 38.1719 156.08 38.3298C156.184 38.4877 156.235 38.6636 156.235 38.8575C156.235 39.1237 156.15 39.3537 155.978 39.5477C155.811 39.7371 155.579 39.9198 155.281 40.0957L156.472 41.2189C156.653 40.8536 156.788 40.4724 156.878 40.0754L157.46 40.2446C157.302 40.7678 157.102 41.2122 156.858 41.5775L157.616 42.288L157.169 42.6533L156.513 42.0173C156.319 42.2293 156.1 42.3895 155.857 42.4977C155.613 42.6015 155.333 42.6533 155.018 42.6533C154.72 42.6533 154.456 42.6015 154.226 42.4977C154 42.394 153.822 42.2474 153.691 42.0579C153.565 41.864 153.502 41.6407 153.502 41.3881C153.502 41.1084 153.581 40.8648 153.739 40.6573C153.897 40.4453 154.131 40.2401 154.442 40.0416C154.217 39.8251 154.05 39.6311 153.942 39.4597C153.838 39.2883 153.786 39.0944 153.786 38.8778C153.786 38.5711 153.892 38.3208 154.104 38.1268C154.321 37.9283 154.618 37.8291 154.997 37.8291ZM155.004 38.2892C154.815 38.2892 154.666 38.3433 154.557 38.4516C154.449 38.5598 154.395 38.6997 154.395 38.8711C154.395 39.0335 154.438 39.1801 154.524 39.3109C154.609 39.4372 154.745 39.5883 154.93 39.7642C155.16 39.6244 155.333 39.4868 155.451 39.3515C155.568 39.2116 155.627 39.0583 155.627 38.8914C155.627 38.7019 155.57 38.5553 155.457 38.4516C155.345 38.3433 155.193 38.2892 155.004 38.2892ZM154.801 40.3799C154.576 40.5288 154.409 40.6821 154.3 40.84C154.192 40.9934 154.138 41.1693 154.138 41.3678C154.138 41.6159 154.224 41.8098 154.395 41.9497C154.571 42.0895 154.801 42.1594 155.085 42.1594C155.297 42.1594 155.489 42.1188 155.66 42.0376C155.832 41.9564 155.996 41.8346 156.154 41.6723L154.801 40.3799Z" fill="white"/>
|
||||
<path d="M150.677 40.684C150.677 40.7877 150.672 40.8937 150.663 41.002H148.39C148.417 41.3944 148.516 41.6831 148.687 41.8681C148.859 42.053 149.08 42.1455 149.35 42.1455C149.522 42.1455 149.68 42.1207 149.824 42.071C149.968 42.0214 150.12 41.9425 150.277 41.8342L150.548 42.2064C150.169 42.5041 149.754 42.6529 149.303 42.6529C148.807 42.6529 148.419 42.4905 148.139 42.1658C147.864 41.841 147.727 41.3944 147.727 40.8261C147.727 40.4562 147.785 40.1292 147.902 39.845C148.024 39.5563 148.196 39.3308 148.417 39.1684C148.642 39.006 148.906 38.9248 149.208 38.9248C149.682 38.9248 150.045 39.0804 150.298 39.3917C150.55 39.7029 150.677 40.1337 150.677 40.684ZM150.061 40.5013C150.061 40.1495 149.991 39.8811 149.851 39.6961C149.711 39.5112 149.502 39.4187 149.222 39.4187C148.712 39.4187 148.435 39.7931 148.39 40.5419H150.061V40.5013Z" fill="white"/>
|
||||
<path d="M146.632 37.5715V42.5717H146.084L146.023 42.0777C145.906 42.2582 145.759 42.4002 145.584 42.504C145.408 42.6032 145.211 42.6528 144.995 42.6528C144.571 42.6528 144.239 42.4859 144 42.1522C143.766 41.8184 143.648 41.3695 143.648 40.8057C143.648 40.4403 143.705 40.1156 143.818 39.8314C143.93 39.5472 144.093 39.3262 144.305 39.1683C144.517 39.0059 144.765 38.9247 145.049 38.9247C145.414 38.9247 145.735 39.0713 146.01 39.3645V37.4971L146.632 37.5715ZM145.13 42.1589C145.32 42.1589 145.482 42.1161 145.617 42.0304C145.753 41.9401 145.884 41.8071 146.01 41.6312V39.8855C145.893 39.7321 145.766 39.6171 145.631 39.5404C145.5 39.4592 145.351 39.4186 145.184 39.4186C144.909 39.4186 144.695 39.5337 144.542 39.7637C144.393 39.9938 144.318 40.3366 144.318 40.7922C144.318 41.2523 144.388 41.5951 144.528 41.8206C144.668 42.0461 144.869 42.1589 145.13 42.1589Z" fill="white"/>
|
||||
<path d="M142.518 42.5716H141.984L141.936 42.0168C141.801 42.2378 141.645 42.4002 141.469 42.5039C141.294 42.6032 141.079 42.6528 140.827 42.6528C140.515 42.6528 140.272 42.5581 140.096 42.3686C139.92 42.1792 139.832 41.9108 139.832 41.5634V39.0059H140.455V41.4958C140.455 41.7394 140.497 41.913 140.583 42.0168C140.669 42.116 140.809 42.1656 141.003 42.1656C141.35 42.1656 141.648 41.9604 141.896 41.5499V39.0059H142.518V42.5716Z" fill="white"/>
|
||||
<path d="M139.153 42.4099C138.919 42.5723 138.652 42.6535 138.355 42.6535C138.053 42.6535 137.816 42.5678 137.644 42.3964C137.477 42.2204 137.394 41.9678 137.394 41.6386V39.4869H136.771V39.0065H137.394V38.2014L138.016 38.127V39.0065H138.862L138.795 39.4869H138.016V41.6115C138.016 41.7964 138.048 41.9318 138.111 42.0175C138.179 42.0987 138.289 42.1393 138.443 42.1393C138.583 42.1393 138.74 42.0919 138.916 41.9972L139.153 42.4099Z" fill="white"/>
|
||||
<path d="M135.999 39.0058V42.5715H135.377V39.0058H135.999ZM135.681 37.2939C135.812 37.2939 135.918 37.3345 135.999 37.4157C136.08 37.4969 136.121 37.5984 136.121 37.7202C136.121 37.842 136.08 37.9435 135.999 38.0247C135.918 38.1014 135.812 38.1397 135.681 38.1397C135.555 38.1397 135.451 38.1014 135.37 38.0247C135.289 37.9435 135.248 37.842 135.248 37.7202C135.248 37.5984 135.289 37.4969 135.37 37.4157C135.451 37.3345 135.555 37.2939 135.681 37.2939Z" fill="white"/>
|
||||
<path d="M134.665 42.4099C134.43 42.5723 134.164 42.6535 133.866 42.6535C133.564 42.6535 133.327 42.5678 133.156 42.3964C132.989 42.2204 132.906 41.9678 132.906 41.6386V39.4869H132.283V39.0065H132.906V38.2014L133.528 38.127V39.0065H134.374L134.306 39.4869H133.528V41.6115C133.528 41.7964 133.56 41.9318 133.623 42.0175C133.691 42.0987 133.801 42.1393 133.954 42.1393C134.094 42.1393 134.252 42.0919 134.428 41.9972L134.665 42.4099Z" fill="white"/>
|
||||
<path d="M131.526 42.6528C131.295 42.6528 131.113 42.5852 130.977 42.4499C130.847 42.31 130.781 42.1161 130.781 41.868V37.5715L131.404 37.4971V41.8544C131.404 41.9537 131.42 42.0259 131.451 42.071C131.487 42.1161 131.546 42.1386 131.627 42.1386C131.713 42.1386 131.789 42.1251 131.857 42.098L132.019 42.5311C131.871 42.6122 131.706 42.6528 131.526 42.6528Z" fill="white"/>
|
||||
<path d="M129.385 42.572L129.033 41.4015H127.267L126.915 42.572H126.266L127.761 37.9102H128.573L130.061 42.572H129.385ZM127.423 40.8805H128.877L128.153 38.4447L127.423 40.8805Z" fill="white"/>
|
||||
<path d="M126.155 42.4099C125.921 42.5723 125.654 42.6535 125.357 42.6535C125.054 42.6535 124.818 42.5678 124.646 42.3964C124.479 42.2204 124.396 41.9678 124.396 41.6386V39.4869H123.773V39.0065H124.396V38.2014L125.018 38.127V39.0065H125.864L125.797 39.4869H125.018V41.6115C125.018 41.7964 125.05 41.9318 125.113 42.0175C125.181 42.0987 125.291 42.1393 125.445 42.1393C125.584 42.1393 125.742 42.0919 125.918 41.9972L126.155 42.4099Z" fill="white"/>
|
||||
<path d="M122.926 42.572L122.574 41.4015H120.808L120.456 42.572H119.807L121.302 37.9102H122.114L123.602 42.572H122.926ZM120.964 40.8805H122.418L121.694 38.4447L120.964 40.8805Z" fill="white"/>
|
||||
<path d="M119.348 40.684C119.348 40.7877 119.344 40.8937 119.335 41.002H117.062C117.089 41.3944 117.188 41.6831 117.359 41.8681C117.531 42.053 117.752 42.1455 118.022 42.1455C118.194 42.1455 118.352 42.1207 118.496 42.071C118.64 42.0214 118.791 41.9425 118.949 41.8342L119.22 42.2064C118.841 42.5041 118.426 42.6529 117.975 42.6529C117.479 42.6529 117.091 42.4905 116.811 42.1658C116.536 41.841 116.398 41.3944 116.398 40.8261C116.398 40.4562 116.457 40.1292 116.574 39.845C116.696 39.5563 116.868 39.3308 117.089 39.1684C117.314 39.006 117.578 38.9248 117.88 38.9248C118.354 38.9248 118.717 39.0804 118.97 39.3917C119.222 39.7029 119.348 40.1337 119.348 40.684ZM118.733 40.5013C118.733 40.1495 118.663 39.8811 118.523 39.6961C118.383 39.5112 118.173 39.4187 117.894 39.4187C117.384 39.4187 117.107 39.7931 117.062 40.5419H118.733V40.5013Z" fill="white"/>
|
||||
<path d="M114.396 38.9248C114.64 38.9248 114.859 38.9586 115.053 39.0263C115.247 39.094 115.431 39.1954 115.607 39.3308L115.344 39.7232C115.181 39.6195 115.026 39.5428 114.877 39.4932C114.732 39.4435 114.579 39.4187 114.417 39.4187C114.214 39.4187 114.053 39.4616 113.936 39.5473C113.819 39.6285 113.76 39.7412 113.76 39.8856C113.76 40.0299 113.814 40.1427 113.923 40.2239C114.035 40.3051 114.236 40.384 114.525 40.4607C114.922 40.5599 115.217 40.6953 115.411 40.8667C115.61 41.0381 115.709 41.2726 115.709 41.5704C115.709 41.9222 115.571 42.1906 115.296 42.3755C115.026 42.5605 114.694 42.6529 114.302 42.6529C113.76 42.6529 113.311 42.4973 112.955 42.1861L113.287 41.8072C113.589 42.0372 113.923 42.1522 114.288 42.1522C114.523 42.1522 114.707 42.1049 114.843 42.0101C114.983 41.9109 115.053 41.7778 115.053 41.6109C115.053 41.4892 115.028 41.3922 114.978 41.32C114.929 41.2433 114.843 41.1779 114.721 41.1238C114.599 41.0651 114.421 41.0043 114.187 40.9411C113.808 40.8419 113.532 40.7088 113.361 40.5419C113.194 40.375 113.111 40.163 113.111 39.9059C113.111 39.7209 113.165 39.5541 113.273 39.4052C113.386 39.2518 113.539 39.1346 113.733 39.0534C113.932 38.9677 114.153 38.9248 114.396 38.9248Z" fill="white"/>
|
||||
<path d="M112.073 39.0058V42.5715H111.451V39.0058H112.073ZM111.755 37.2939C111.886 37.2939 111.992 37.3345 112.073 37.4157C112.154 37.4969 112.195 37.5984 112.195 37.7202C112.195 37.842 112.154 37.9435 112.073 38.0247C111.992 38.1014 111.886 38.1397 111.755 38.1397C111.629 38.1397 111.525 38.1014 111.444 38.0247C111.363 37.9435 111.322 37.842 111.322 37.7202C111.322 37.5984 111.363 37.4969 111.444 37.4157C111.525 37.3345 111.629 37.2939 111.755 37.2939Z" fill="white"/>
|
||||
<path d="M110.106 41.7395C110.106 41.8838 110.13 41.9921 110.18 42.0643C110.23 42.1319 110.304 42.1838 110.403 42.2199L110.261 42.6529C110.076 42.6304 109.927 42.5785 109.815 42.4973C109.702 42.4161 109.618 42.2898 109.564 42.1184C109.325 42.4748 108.971 42.6529 108.502 42.6529C108.15 42.6529 107.873 42.5537 107.67 42.3552C107.467 42.1567 107.365 41.8974 107.365 41.5771C107.365 41.1982 107.501 40.9073 107.771 40.7043C108.046 40.5013 108.434 40.3998 108.935 40.3998H109.483V40.1359C109.483 39.8833 109.422 39.7029 109.3 39.5946C109.179 39.4864 108.991 39.4323 108.739 39.4323C108.477 39.4323 108.157 39.4954 107.778 39.6217L107.622 39.1684C108.064 39.006 108.475 38.9248 108.854 38.9248C109.273 38.9248 109.587 39.0286 109.794 39.236C110.002 39.439 110.106 39.73 110.106 40.1089V41.7395ZM108.644 42.1861C109 42.1861 109.28 42.0011 109.483 41.6312V40.8125H109.016C108.358 40.8125 108.028 41.0561 108.028 41.5433C108.028 41.7553 108.08 41.9154 108.184 42.0237C108.288 42.1319 108.441 42.1861 108.644 42.1861Z" fill="white"/>
|
||||
<path d="M106.813 38.9248C106.939 38.9248 107.057 38.9383 107.165 38.9654L107.05 39.5744C106.942 39.5473 106.838 39.5338 106.739 39.5338C106.518 39.5338 106.339 39.6149 106.204 39.7773C106.069 39.9397 105.963 40.1923 105.886 40.5351V42.5717H105.264V39.006H105.798L105.859 39.73C105.954 39.4638 106.082 39.2631 106.245 39.1278C106.407 38.9925 106.597 38.9248 106.813 38.9248Z" fill="white"/>
|
||||
<path d="M106.969 44.4931C106.739 44.4931 106.574 44.5292 106.475 44.6013C106.376 44.669 106.326 44.7863 106.326 44.9532V46.5703C106.326 46.8003 106.285 46.9672 106.204 47.071C106.123 47.1702 105.994 47.2491 105.818 47.3078C105.999 47.3709 106.127 47.4499 106.204 47.5446C106.285 47.6393 106.326 47.8017 106.326 48.0318V49.6489C106.326 49.8158 106.376 49.933 106.475 50.0007C106.574 50.0729 106.739 50.109 106.969 50.109V50.5894C106.518 50.5894 106.2 50.5104 106.015 50.3525C105.83 50.1992 105.737 49.9421 105.737 49.5812V48.0791C105.737 47.8897 105.701 47.7566 105.629 47.6799C105.561 47.6032 105.44 47.5649 105.264 47.5649V47.0507C105.44 47.0507 105.561 47.0101 105.629 46.9289C105.701 46.8477 105.737 46.7124 105.737 46.5229V45.0208C105.737 44.66 105.83 44.4029 106.015 44.2495C106.2 44.0916 106.518 44.0127 106.969 44.0127V44.4931Z" fill="white"/>
|
||||
<path d="M142.275 52.7007V52.1797H144.819V52.7007H142.275ZM142.275 54.0065V53.4855H144.819V54.0065H142.275Z" fill="white"/>
|
||||
<path d="M138.824 52.7007V52.1797H141.368V52.7007H138.824ZM138.824 54.0065V53.4855H141.368V54.0065H138.824Z" fill="white"/>
|
||||
<path d="M137.987 53.4447C137.987 53.5485 137.983 53.6545 137.974 53.7627H135.7C135.727 54.1552 135.826 54.4439 135.998 54.6288C136.169 54.8137 136.39 54.9062 136.661 54.9062C136.832 54.9062 136.99 54.8814 137.135 54.8318C137.279 54.7822 137.43 54.7032 137.588 54.595L137.859 54.9671C137.48 55.2648 137.065 55.4137 136.614 55.4137C136.117 55.4137 135.73 55.2513 135.45 54.9265C135.175 54.6017 135.037 54.1552 135.037 53.5868C135.037 53.2169 135.096 52.8899 135.213 52.6057C135.335 52.3171 135.506 52.0915 135.727 51.9291C135.953 51.7667 136.217 51.6855 136.519 51.6855C136.993 51.6855 137.356 51.8412 137.608 52.1524C137.861 52.4636 137.987 52.8944 137.987 53.4447ZM137.371 53.262C137.371 52.9102 137.301 52.6418 137.162 52.4569C137.022 52.2719 136.812 52.1795 136.532 52.1795C136.023 52.1795 135.745 52.5539 135.7 53.3026H137.371V53.262Z" fill="white"/>
|
||||
<path d="M134.68 55.1706C134.446 55.333 134.18 55.4142 133.882 55.4142C133.58 55.4142 133.343 55.3285 133.172 55.1571C133.005 54.9812 132.921 54.7286 132.921 54.3993V52.2477H132.299V51.7673H132.921V50.9621L133.544 50.8877V51.7673H134.39L134.322 52.2477H133.544V54.3722C133.544 54.5572 133.575 54.6925 133.639 54.7782C133.706 54.8594 133.817 54.9 133.97 54.9C134.11 54.9 134.268 54.8526 134.444 54.7579L134.68 55.1706Z" fill="white"/>
|
||||
<path d="M131.535 54.5002C131.535 54.6446 131.56 54.7528 131.61 54.825C131.659 54.8927 131.734 54.9446 131.833 54.9806L131.691 55.4137C131.506 55.3911 131.357 55.3392 131.244 55.2581C131.131 55.1769 131.048 55.0506 130.994 54.8791C130.755 55.2355 130.401 55.4137 129.932 55.4137C129.58 55.4137 129.302 55.3144 129.099 55.116C128.896 54.9175 128.795 54.6581 128.795 54.3379C128.795 53.959 128.93 53.668 129.201 53.465C129.476 53.262 129.864 53.1606 130.365 53.1606H130.913V52.8967C130.913 52.6441 130.852 52.4636 130.73 52.3554C130.608 52.2471 130.421 52.193 130.168 52.193C129.907 52.193 129.587 52.2562 129.208 52.3825L129.052 51.9291C129.494 51.7667 129.905 51.6855 130.283 51.6855C130.703 51.6855 131.016 51.7893 131.224 51.9968C131.431 52.1998 131.535 52.4907 131.535 52.8696V54.5002ZM130.074 54.9468C130.43 54.9468 130.71 54.7619 130.913 54.392V53.5733H130.446C129.787 53.5733 129.458 53.8169 129.458 54.304C129.458 54.516 129.51 54.6762 129.614 54.7844C129.717 54.8927 129.871 54.9468 130.074 54.9468Z" fill="white"/>
|
||||
<path d="M128.466 55.1706C128.231 55.333 127.965 55.4142 127.667 55.4142C127.365 55.4142 127.128 55.3285 126.957 55.1571C126.79 54.9812 126.706 54.7286 126.706 54.3993V52.2477H126.084V51.7673H126.706V50.9621L127.329 50.8877V51.7673H128.175L128.107 52.2477H127.329V54.3722C127.329 54.5572 127.361 54.6925 127.424 54.7782C127.491 54.8594 127.602 54.9 127.755 54.9C127.895 54.9 128.053 54.8526 128.229 54.7579L128.466 55.1706Z" fill="white"/>
|
||||
<path d="M124.095 50.5898C124.406 50.5898 124.673 50.635 124.894 50.7252C125.115 50.8109 125.329 50.9462 125.536 51.1311L125.185 51.5236C125.009 51.3837 124.835 51.2822 124.664 51.2191C124.497 51.1514 124.316 51.1176 124.122 51.1176C123.879 51.1176 123.678 51.174 123.52 51.2868C123.362 51.3995 123.283 51.5642 123.283 51.7807C123.283 51.916 123.31 52.031 123.364 52.1257C123.419 52.216 123.518 52.2994 123.662 52.3761C123.811 52.4528 124.025 52.534 124.305 52.6197C124.598 52.7099 124.842 52.8069 125.036 52.9106C125.23 53.0144 125.385 53.1587 125.503 53.3436C125.624 53.5241 125.685 53.7541 125.685 54.0338C125.685 54.3044 125.618 54.5435 125.482 54.751C125.351 54.9585 125.16 55.1209 124.907 55.2382C124.659 55.3554 124.364 55.4141 124.021 55.4141C123.376 55.4141 122.848 55.2133 122.438 54.8119L122.789 54.4195C122.979 54.5728 123.17 54.6901 123.364 54.7713C123.558 54.848 123.775 54.8863 124.014 54.8863C124.303 54.8863 124.542 54.8164 124.731 54.6766C124.921 54.5322 125.015 54.3247 125.015 54.0541C125.015 53.9007 124.986 53.7744 124.927 53.6752C124.869 53.5714 124.767 53.479 124.623 53.3978C124.483 53.3166 124.278 53.2354 124.007 53.1542C123.529 53.0099 123.18 52.8362 122.958 52.6332C122.737 52.4302 122.627 52.1551 122.627 51.8077C122.627 51.5732 122.688 51.3634 122.81 51.1785C122.936 50.9936 123.11 50.8492 123.331 50.7455C123.556 50.6417 123.811 50.5898 124.095 50.5898Z" fill="white"/>
|
||||
<path d="M118.934 56.2933V55.7588H122.222V56.2933H118.934Z" fill="white"/>
|
||||
<path d="M117.171 51.6855C117.464 51.6855 117.699 51.7848 117.875 51.9833C118.051 52.1772 118.139 52.4411 118.139 52.7749V55.3325H117.516V52.8628C117.516 52.4028 117.349 52.1727 117.015 52.1727C116.84 52.1727 116.691 52.2246 116.569 52.3283C116.447 52.4276 116.316 52.5854 116.176 52.802V55.3325H115.554V52.8628C115.554 52.4028 115.387 52.1727 115.053 52.1727C114.873 52.1727 114.722 52.2246 114.6 52.3283C114.478 52.4321 114.35 52.5899 114.214 52.802V55.3325H113.592V51.7667H114.126L114.18 52.2877C114.447 51.8863 114.789 51.6855 115.209 51.6855C115.43 51.6855 115.617 51.7419 115.77 51.8547C115.928 51.9675 116.041 52.1253 116.109 52.3283C116.249 52.1208 116.402 51.963 116.569 51.8547C116.74 51.7419 116.941 51.6855 117.171 51.6855Z" fill="white"/>
|
||||
<rect width="31.8781" height="8.82423" transform="translate(147.941 50.5898)" fill="#A8650F"/>
|
||||
<path d="M178.778 55.4447C178.778 55.5485 178.774 55.6545 178.765 55.7627H176.491C176.518 56.1552 176.618 56.4439 176.789 56.6288C176.96 56.8137 177.181 56.9062 177.452 56.9062C177.623 56.9062 177.781 56.8814 177.926 56.8318C178.07 56.7822 178.221 56.7032 178.379 56.595L178.65 56.9671C178.271 57.2648 177.856 57.4137 177.405 57.4137C176.908 57.4137 176.521 57.2513 176.241 56.9265C175.966 56.6017 175.828 56.1552 175.828 55.5868C175.828 55.2169 175.887 54.8899 176.004 54.6057C176.126 54.3171 176.297 54.0915 176.518 53.9291C176.744 53.7667 177.008 53.6855 177.31 53.6855C177.784 53.6855 178.147 53.8412 178.399 54.1524C178.652 54.4636 178.778 54.8944 178.778 55.4447ZM178.162 55.262C178.162 54.9102 178.093 54.6418 177.953 54.4569C177.813 54.2719 177.603 54.1795 177.323 54.1795C176.814 54.1795 176.536 54.5539 176.491 55.3026H178.162V55.262Z" fill="white"/>
|
||||
<path d="M175.472 57.1706C175.237 57.333 174.971 57.4142 174.673 57.4142C174.371 57.4142 174.134 57.3285 173.963 57.1571C173.796 56.9812 173.712 56.7286 173.712 56.3993V54.2477H173.09V53.7673H173.712V52.9621L174.335 52.8877V53.7673H175.181L175.113 54.2477H174.335V56.3722C174.335 56.5572 174.366 56.6925 174.43 56.7782C174.497 56.8594 174.608 56.9 174.761 56.9C174.901 56.9 175.059 56.8526 175.235 56.7579L175.472 57.1706Z" fill="white"/>
|
||||
<path d="M172.326 56.5002C172.326 56.6446 172.351 56.7528 172.401 56.825C172.45 56.8927 172.525 56.9446 172.624 56.9806L172.482 57.4137C172.297 57.3911 172.148 57.3392 172.035 57.2581C171.923 57.1769 171.839 57.0506 171.785 56.8791C171.546 57.2355 171.192 57.4137 170.723 57.4137C170.371 57.4137 170.093 57.3144 169.89 57.116C169.687 56.9175 169.586 56.6581 169.586 56.3379C169.586 55.959 169.721 55.668 169.992 55.465C170.267 55.262 170.655 55.1606 171.156 55.1606H171.704V54.8967C171.704 54.6441 171.643 54.4636 171.521 54.3554C171.399 54.2471 171.212 54.193 170.959 54.193C170.698 54.193 170.378 54.2562 169.999 54.3825L169.843 53.9291C170.285 53.7667 170.696 53.6855 171.074 53.6855C171.494 53.6855 171.807 53.7893 172.015 53.9968C172.222 54.1998 172.326 54.4907 172.326 54.8696V56.5002ZM170.865 56.9468C171.221 56.9468 171.501 56.7619 171.704 56.392V55.5733H171.237C170.578 55.5733 170.249 55.8169 170.249 56.304C170.249 56.516 170.301 56.6762 170.405 56.7844C170.508 56.8927 170.662 56.9468 170.865 56.9468Z" fill="white"/>
|
||||
<path d="M169.259 57.1706C169.024 57.333 168.758 57.4142 168.46 57.4142C168.158 57.4142 167.921 57.3285 167.75 57.1571C167.583 56.9812 167.499 56.7286 167.499 56.3993V54.2477H166.877V53.7673H167.499V52.9621L168.122 52.8877V53.7673H168.968L168.9 54.2477H168.122V56.3722C168.122 56.5572 168.153 56.6925 168.217 56.7782C168.284 56.8594 168.395 56.9 168.548 56.9C168.688 56.9 168.846 56.8526 169.022 56.7579L169.259 57.1706Z" fill="white"/>
|
||||
<path d="M164.888 52.5898C165.199 52.5898 165.466 52.635 165.687 52.7252C165.908 52.8109 166.122 52.9462 166.329 53.1311L165.978 53.5236C165.802 53.3837 165.628 53.2822 165.457 53.2191C165.29 53.1514 165.109 53.1176 164.915 53.1176C164.672 53.1176 164.471 53.174 164.313 53.2868C164.155 53.3995 164.076 53.5642 164.076 53.7807C164.076 53.916 164.103 54.031 164.157 54.1257C164.212 54.216 164.311 54.2994 164.455 54.3761C164.604 54.4528 164.818 54.534 165.098 54.6197C165.391 54.7099 165.635 54.8069 165.829 54.9106C166.023 55.0144 166.178 55.1587 166.296 55.3436C166.417 55.5241 166.478 55.7541 166.478 56.0338C166.478 56.3044 166.411 56.5435 166.275 56.751C166.144 56.9585 165.953 57.1209 165.7 57.2382C165.452 57.3554 165.157 57.4141 164.814 57.4141C164.169 57.4141 163.641 57.2133 163.23 56.8119L163.582 56.4195C163.772 56.5728 163.963 56.6901 164.157 56.7713C164.351 56.848 164.568 56.8863 164.807 56.8863C165.096 56.8863 165.335 56.8164 165.524 56.6766C165.714 56.5322 165.808 56.3247 165.808 56.0541C165.808 55.9007 165.779 55.7744 165.72 55.6752C165.662 55.5714 165.56 55.479 165.416 55.3978C165.276 55.3166 165.071 55.2354 164.8 55.1542C164.322 55.0099 163.972 54.8362 163.751 54.6332C163.53 54.4302 163.42 54.1551 163.42 53.8077C163.42 53.5732 163.481 53.3634 163.603 53.1785C163.729 52.9936 163.903 52.8492 164.124 52.7455C164.349 52.6417 164.604 52.5898 164.888 52.5898Z" fill="white"/>
|
||||
<path d="M162.575 53.6855C162.701 53.6855 162.818 53.6991 162.927 53.7261L162.812 54.3351C162.703 54.308 162.6 54.2945 162.5 54.2945C162.279 54.2945 162.101 54.3757 161.966 54.5381C161.831 54.7005 161.725 54.9531 161.648 55.2959V57.3325H161.025V53.7667H161.56L161.621 54.4907C161.716 54.2246 161.844 54.0239 162.006 53.8885C162.169 53.7532 162.358 53.6855 162.575 53.6855Z" fill="white"/>
|
||||
<path d="M159.68 56.5002C159.68 56.6446 159.705 56.7528 159.754 56.825C159.804 56.8927 159.878 56.9446 159.977 56.9806L159.835 57.4137C159.65 57.3911 159.502 57.3392 159.389 57.2581C159.276 57.1769 159.193 57.0506 159.138 56.8791C158.899 57.2355 158.545 57.4137 158.076 57.4137C157.724 57.4137 157.447 57.3144 157.244 57.116C157.041 56.9175 156.939 56.6581 156.939 56.3379C156.939 55.959 157.075 55.668 157.345 55.465C157.621 55.262 158.008 55.1606 158.509 55.1606H159.057V54.8967C159.057 54.6441 158.996 54.4636 158.875 54.3554C158.753 54.2471 158.566 54.193 158.313 54.193C158.051 54.193 157.731 54.2562 157.352 54.3825L157.197 53.9291C157.639 53.7667 158.049 53.6855 158.428 53.6855C158.847 53.6855 159.161 53.7893 159.368 53.9968C159.576 54.1998 159.68 54.4907 159.68 54.8696V56.5002ZM158.218 56.9468C158.575 56.9468 158.854 56.7619 159.057 56.392V55.5733H158.59C157.932 55.5733 157.603 55.8169 157.603 56.304C157.603 56.516 157.654 56.6762 157.758 56.7844C157.862 56.8927 158.015 56.9468 158.218 56.9468Z" fill="white"/>
|
||||
<path d="M156.282 55.4447C156.282 55.5485 156.278 55.6545 156.269 55.7627H153.995C154.022 56.1552 154.121 56.4439 154.293 56.6288C154.464 56.8137 154.685 56.9062 154.956 56.9062C155.127 56.9062 155.285 56.8814 155.43 56.8318C155.574 56.7822 155.725 56.7032 155.883 56.595L156.153 56.9671C155.775 57.2648 155.36 57.4137 154.909 57.4137C154.412 57.4137 154.024 57.2513 153.745 56.9265C153.47 56.6017 153.332 56.1552 153.332 55.5868C153.332 55.2169 153.391 54.8899 153.508 54.6057C153.63 54.3171 153.801 54.0915 154.022 53.9291C154.248 53.7667 154.512 53.6855 154.814 53.6855C155.287 53.6855 155.651 53.8412 155.903 54.1524C156.156 54.4636 156.282 54.8944 156.282 55.4447ZM155.666 55.262C155.666 54.9102 155.596 54.6418 155.457 54.4569C155.317 54.2719 155.107 54.1795 154.827 54.1795C154.318 54.1795 154.04 54.5539 153.995 55.3026H155.666V55.262Z" fill="white"/>
|
||||
<path d="M151.005 52.5898C151.299 52.5898 151.551 52.6327 151.763 52.7184C151.98 52.7996 152.194 52.9281 152.406 53.1041L152.027 53.4965C151.86 53.3612 151.7 53.2642 151.547 53.2056C151.393 53.1469 151.213 53.1176 151.005 53.1176C150.766 53.1176 150.545 53.183 150.342 53.3138C150.144 53.4401 149.982 53.6454 149.855 53.9295C149.729 54.2092 149.666 54.5655 149.666 54.9986C149.666 55.6526 149.772 56.1308 149.984 56.433C150.2 56.7352 150.518 56.8863 150.938 56.8863C151.281 56.8863 151.576 56.8164 151.824 56.6766V55.2692H150.999L150.924 54.7482H152.46V57.0013C151.978 57.2765 151.47 57.4141 150.938 57.4141C150.324 57.4141 149.844 57.2088 149.497 56.7984C149.154 56.3879 148.982 55.788 148.982 54.9986C148.982 54.4934 149.073 54.0603 149.253 53.6995C149.438 53.3341 149.684 53.059 149.991 52.874C150.302 52.6846 150.64 52.5898 151.005 52.5898Z" fill="white"/>
|
||||
<path d="M206.019 55.0085C206.154 55.0085 206.267 55.0536 206.357 55.1438C206.447 55.234 206.492 55.3445 206.492 55.4753C206.492 55.6152 206.452 55.7753 206.371 55.9557L205.917 56.991H205.471L205.741 55.8678C205.683 55.8227 205.635 55.7663 205.599 55.6986C205.568 55.631 205.552 55.5565 205.552 55.4753C205.552 55.3445 205.597 55.234 205.687 55.1438C205.777 55.0536 205.888 55.0085 206.019 55.0085ZM206.019 52.5186C206.154 52.5186 206.267 52.5637 206.357 52.6539C206.447 52.7441 206.492 52.8546 206.492 52.9854C206.492 53.1162 206.447 53.229 206.357 53.3237C206.267 53.4139 206.154 53.459 206.019 53.459C205.888 53.459 205.777 53.4139 205.687 53.3237C205.597 53.229 205.552 53.1162 205.552 52.9854C205.552 52.8546 205.597 52.7441 205.687 52.6539C205.777 52.5637 205.888 52.5186 206.019 52.5186Z" fill="white"/>
|
||||
<path d="M204.505 50.8674V55.8675H203.957L203.896 55.3736C203.779 55.5541 203.633 55.6961 203.457 55.7999C203.281 55.8991 203.084 55.9487 202.868 55.9487C202.444 55.9487 202.112 55.7818 201.873 55.4481C201.639 55.1143 201.521 54.6654 201.521 54.1016C201.521 53.7362 201.578 53.4115 201.691 53.1273C201.803 52.8431 201.966 52.6221 202.178 52.4642C202.39 52.3018 202.638 52.2206 202.922 52.2206C203.287 52.2206 203.608 52.3672 203.883 52.6604V50.793L204.505 50.8674ZM203.003 55.4548C203.193 55.4548 203.355 55.412 203.49 55.3263C203.626 55.236 203.757 55.103 203.883 54.9271V53.1814C203.766 53.028 203.639 52.913 203.504 52.8363C203.373 52.7551 203.224 52.7145 203.057 52.7145C202.782 52.7145 202.568 52.8296 202.415 53.0596C202.266 53.2897 202.191 53.6325 202.191 54.0881C202.191 54.5482 202.261 54.891 202.401 55.1165C202.541 55.342 202.742 55.4548 203.003 55.4548Z" fill="white"/>
|
||||
<path d="M200.684 53.9799C200.684 54.0836 200.68 54.1896 200.671 54.2979H198.397C198.425 54.6903 198.524 54.979 198.695 55.164C198.867 55.3489 199.088 55.4414 199.358 55.4414C199.53 55.4414 199.688 55.4166 199.832 55.3669C199.976 55.3173 200.127 55.2384 200.285 55.1301L200.556 55.5023C200.177 55.8 199.762 55.9488 199.311 55.9488C198.815 55.9488 198.427 55.7864 198.147 55.4617C197.872 55.1369 197.734 54.6903 197.734 54.122C197.734 53.7521 197.793 53.4251 197.91 53.1409C198.032 52.8522 198.203 52.6267 198.425 52.4643C198.65 52.3019 198.914 52.2207 199.216 52.2207C199.69 52.2207 200.053 52.3763 200.305 52.6876C200.558 52.9988 200.684 53.4296 200.684 53.9799ZM200.069 53.7972C200.069 53.4454 199.999 53.177 199.859 52.992C199.719 52.8071 199.509 52.7146 199.23 52.7146C198.72 52.7146 198.443 53.089 198.397 53.8378H200.069V53.7972Z" fill="white"/>
|
||||
<path d="M195.732 52.2207C195.976 52.2207 196.195 52.2545 196.389 52.3222C196.582 52.3899 196.767 52.4913 196.943 52.6267L196.679 53.0191C196.517 52.9154 196.361 52.8387 196.213 52.7891C196.068 52.7394 195.915 52.7146 195.752 52.7146C195.55 52.7146 195.389 52.7575 195.272 52.8432C195.155 52.9244 195.096 53.0371 195.096 53.1815C195.096 53.3258 195.15 53.4386 195.259 53.5198C195.371 53.601 195.572 53.6799 195.861 53.7566C196.258 53.8558 196.553 53.9912 196.747 54.1626C196.946 54.334 197.045 54.5685 197.045 54.8663C197.045 55.2181 196.907 55.4865 196.632 55.6714C196.361 55.8564 196.03 55.9488 195.637 55.9488C195.096 55.9488 194.647 55.7932 194.291 55.482L194.623 55.1031C194.925 55.3331 195.259 55.4481 195.624 55.4481C195.858 55.4481 196.043 55.4008 196.179 55.306C196.319 55.2068 196.389 55.0737 196.389 54.9068C196.389 54.7851 196.364 54.6881 196.314 54.6159C196.264 54.5392 196.179 54.4738 196.057 54.4197C195.935 54.361 195.757 54.3002 195.522 54.237C195.144 54.1378 194.868 54.0047 194.697 53.8378C194.53 53.6709 194.447 53.4589 194.447 53.2018C194.447 53.0168 194.501 52.85 194.609 52.7011C194.722 52.5477 194.875 52.4305 195.069 52.3493C195.268 52.2636 195.489 52.2207 195.732 52.2207Z" fill="white"/>
|
||||
<path d="M193.409 52.3017V55.8674H192.787V52.3017H193.409ZM193.091 50.5898C193.222 50.5898 193.328 50.6304 193.409 50.7116C193.49 50.7928 193.531 50.8943 193.531 51.0161C193.531 51.1379 193.49 51.2394 193.409 51.3206C193.328 51.3973 193.222 51.4356 193.091 51.4356C192.965 51.4356 192.861 51.3973 192.78 51.3206C192.699 51.2394 192.658 51.1379 192.658 51.0161C192.658 50.8943 192.699 50.7928 192.78 50.7116C192.861 50.6304 192.965 50.5898 193.091 50.5898Z" fill="white"/>
|
||||
<path d="M191.441 55.0354C191.441 55.1797 191.466 55.288 191.516 55.3602C191.565 55.4278 191.64 55.4797 191.739 55.5158L191.597 55.9488C191.412 55.9263 191.263 55.8744 191.151 55.7932C191.038 55.712 190.954 55.5857 190.9 55.4143C190.661 55.7707 190.307 55.9488 189.838 55.9488C189.486 55.9488 189.209 55.8496 189.006 55.6511C188.803 55.4526 188.701 55.1933 188.701 54.873C188.701 54.4941 188.836 54.2032 189.107 54.0002C189.382 53.7972 189.77 53.6957 190.271 53.6957H190.819V53.4318C190.819 53.1792 190.758 52.9988 190.636 52.8905C190.514 52.7823 190.327 52.7282 190.075 52.7282C189.813 52.7282 189.493 52.7913 189.114 52.9176L188.958 52.4643C189.4 52.3019 189.811 52.2207 190.19 52.2207C190.609 52.2207 190.923 52.3245 191.13 52.5319C191.338 52.7349 191.441 53.0259 191.441 53.4048V55.0354ZM189.98 55.482C190.336 55.482 190.616 55.297 190.819 54.9271V54.1084H190.352C189.694 54.1084 189.364 54.352 189.364 54.8392C189.364 55.0512 189.416 55.2113 189.52 55.3196C189.624 55.4278 189.777 55.482 189.98 55.482Z" fill="white"/>
|
||||
<path d="M186.341 53.8912H185.617V55.8669H184.975V51.2051H186.199C186.781 51.2051 187.221 51.3156 187.519 51.5366C187.821 51.7576 187.972 52.0869 187.972 52.5245C187.972 52.8492 187.889 53.1131 187.722 53.3161C187.555 53.5191 187.302 53.6725 186.964 53.7762L188.222 55.8669H187.458L186.341 53.8912ZM186.267 53.3973C186.605 53.3973 186.86 53.3296 187.032 53.1943C187.203 53.0545 187.289 52.8312 187.289 52.5245C187.289 52.2358 187.201 52.0283 187.025 51.902C186.853 51.7712 186.576 51.7058 186.193 51.7058H185.617V53.3973H186.267Z" fill="white"/>
|
||||
<path d="M183.41 55.0078C183.546 55.0078 183.658 55.0529 183.749 55.1431C183.839 55.2333 183.884 55.3439 183.884 55.4747C183.884 55.6055 183.839 55.7183 183.749 55.813C183.658 55.9032 183.546 55.9483 183.41 55.9483C183.279 55.9483 183.169 55.9032 183.079 55.813C182.988 55.7183 182.943 55.6055 182.943 55.4747C182.943 55.3439 182.988 55.2333 183.079 55.1431C183.169 55.0529 183.279 55.0078 183.41 55.0078Z" fill="white"/>
|
||||
<path d="M105.264 59.4141C105.715 59.4141 106.033 59.493 106.218 59.6509C106.403 59.8042 106.495 60.0614 106.495 60.4222V61.9243C106.495 62.1137 106.529 62.2491 106.597 62.3303C106.669 62.4114 106.793 62.452 106.969 62.452V62.9663C106.793 62.9663 106.669 63.0046 106.597 63.0813C106.529 63.158 106.495 63.291 106.495 63.4805V64.9826C106.495 65.3434 106.403 65.6005 106.218 65.7539C106.033 65.9118 105.715 65.9907 105.264 65.9907V65.5103C105.494 65.5103 105.658 65.4742 105.758 65.4021C105.857 65.3344 105.906 65.2171 105.906 65.0502V63.4331C105.906 63.2031 105.945 63.0407 106.021 62.946C106.103 62.8512 106.233 62.7723 106.414 62.7092C106.238 62.6505 106.109 62.5716 106.028 62.4723C105.947 62.3686 105.906 62.2017 105.906 61.9717V60.3546C105.906 60.1877 105.857 60.0704 105.758 60.0027C105.658 59.9305 105.494 59.8945 105.264 59.8945V59.4141Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_1642_5489" x1="103.925" y1="50.2859" x2="-5.37919" y2="30.5025" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#9A9A9A" stop-opacity="0"/>
|
||||
<stop offset="0.5" stop-color="#9A9A9A"/>
|
||||
<stop offset="1" stop-color="#9A9A9A" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1642_5489" x1="103.925" y1="50.2859" x2="-5.37919" y2="30.5025" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#9A9A9A" stop-opacity="0"/>
|
||||
<stop offset="0.5" stop-color="#9A9A9A"/>
|
||||
<stop offset="1" stop-color="#9A9A9A" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1642_5489" x1="103.925" y1="50.2859" x2="-5.37919" y2="30.5025" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#9A9A9A" stop-opacity="0"/>
|
||||
<stop offset="0.5" stop-color="#9A9A9A"/>
|
||||
<stop offset="1" stop-color="#9A9A9A" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1642_5489" x1="103.925" y1="50.2859" x2="-5.37919" y2="30.5025" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#9A9A9A" stop-opacity="0"/>
|
||||
<stop offset="0.5" stop-color="#9A9A9A"/>
|
||||
<stop offset="1" stop-color="#9A9A9A" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_1642_5489" x1="103.925" y1="50.2859" x2="-5.37919" y2="30.5025" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#9A9A9A" stop-opacity="0"/>
|
||||
<stop offset="0.5" stop-color="#9A9A9A"/>
|
||||
<stop offset="1" stop-color="#9A9A9A" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_1642_5489" x1="103.925" y1="50.2859" x2="-5.37919" y2="30.5025" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#9A9A9A" stop-opacity="0"/>
|
||||
<stop offset="0.5" stop-color="#9A9A9A"/>
|
||||
<stop offset="1" stop-color="#9A9A9A" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_1642_5489" x1="103.925" y1="50.2859" x2="-5.37919" y2="30.5025" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#9A9A9A" stop-opacity="0"/>
|
||||
<stop offset="0.5" stop-color="#9A9A9A"/>
|
||||
<stop offset="1" stop-color="#9A9A9A" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint7_linear_1642_5489" x1="57.9079" y1="13.2775" x2="-0.569533" y2="3.30063" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#9A9A9A"/>
|
||||
<stop offset="1" stop-color="#9A9A9A" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint8_linear_1642_5489" x1="57.9079" y1="13.2775" x2="-0.569533" y2="3.30063" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#9A9A9A"/>
|
||||
<stop offset="1" stop-color="#9A9A9A" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint9_linear_1642_5489" x1="103.925" y1="50.2859" x2="-5.37919" y2="30.5025" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#9A9A9A" stop-opacity="0"/>
|
||||
<stop offset="0.5" stop-color="#9A9A9A"/>
|
||||
<stop offset="1" stop-color="#9A9A9A" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint10_linear_1642_5489" x1="103.925" y1="50.2859" x2="-5.37919" y2="30.5025" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#9A9A9A" stop-opacity="0"/>
|
||||
<stop offset="0.5" stop-color="#9A9A9A"/>
|
||||
<stop offset="1" stop-color="#9A9A9A" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint11_linear_1642_5489" x1="103.925" y1="50.2859" x2="-5.37919" y2="30.5025" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#9A9A9A" stop-opacity="0"/>
|
||||
<stop offset="0.5" stop-color="#9A9A9A"/>
|
||||
<stop offset="1" stop-color="#9A9A9A" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint12_linear_1642_5489" x1="103.925" y1="50.2859" x2="-5.37919" y2="30.5025" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#9A9A9A" stop-opacity="0"/>
|
||||
<stop offset="0.5" stop-color="#9A9A9A"/>
|
||||
<stop offset="1" stop-color="#9A9A9A" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint13_linear_1642_5489" x1="103.925" y1="50.2859" x2="-5.37919" y2="30.5025" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#9A9A9A" stop-opacity="0"/>
|
||||
<stop offset="0.5" stop-color="#9A9A9A"/>
|
||||
<stop offset="1" stop-color="#9A9A9A" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_1642_5489">
|
||||
<rect width="285" height="102" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 86 KiB |
86
newIDE/app/public/res/questionnaire/completely-alone.svg
Normal file
@@ -0,0 +1,86 @@
|
||||
<svg width="292" height="103" viewBox="0 0 292 103" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="292" height="102.768" fill="#1D1D26"/>
|
||||
<rect x="108.231" y="21.5862" width="17.0705" height="18.6852" rx="2.5375" stroke="#67EEAD" stroke-opacity="0.4" stroke-width="0.461364"/>
|
||||
<path d="M179.927 21.9135C179.662 22.9897 178.129 24.8357 177.396 25.6242C177.086 25.4831 174.272 23.5156 172.904 22.5496L173.82 21.564C172.726 21.1593 170.454 20.1245 170.116 19.2225C169.694 18.0951 170.013 16.3694 171.894 15.7297C173.775 15.09 176.317 16.9022 178.261 17.9744C180.204 19.0465 180.259 20.5682 179.927 21.9135Z" fill="url(#paint0_linear_1703_1225)"/>
|
||||
<path d="M176.047 22.5092L175.999 22.4887C175.465 22.2957 174.533 22.9956 173.008 22.5619L173.622 21.4794L175.999 22.4887C176.015 22.4947 176.031 22.5015 176.047 22.5092Z" fill="#DB422A"/>
|
||||
<path d="M184.71 25.6351C184.273 26.0831 181.123 29.0574 179.604 30.4886L180.698 38.7023C183.373 36.5244 188.978 31.758 190 30.1152C191.277 28.0618 190.729 25.6351 188.905 24.7017C187.082 23.7683 185.258 25.075 184.71 25.6351Z" fill="url(#paint1_linear_1703_1225)"/>
|
||||
<path d="M182.608 36.3924C182.377 43.0938 177.062 47.9466 173.596 50.2575C155.109 62.274 146.328 57.1899 141.013 53.0304C135.698 48.8709 134.542 43.3248 134.774 37.3166C135.005 31.3084 140.32 25.7624 146.328 25.5313C151.134 25.3464 155.109 27.7652 156.496 28.9977C156.958 27.6111 164.121 19.7543 171.978 22.0651C179.835 24.376 182.839 29.6909 182.608 36.3924Z" fill="url(#paint2_linear_1703_1225)"/>
|
||||
<path d="M141.397 59.3763C141.841 59.0859 143.973 56.8745 145.098 55.6329C143.48 54.7085 141.394 53.3257 140.551 52.5669C140.551 51.6426 139.164 50.2705 137.813 50.2705C135.904 50.2705 135.282 52.1331 135.072 52.9608C134.861 53.7886 134.65 55.4442 134.861 57.0998C135.072 58.7554 136.758 59.3763 137.813 59.7902C138.867 60.2041 140.765 59.7902 141.397 59.3763Z" fill="url(#paint3_linear_1703_1225)"/>
|
||||
<path d="M152.825 60.2971C153.534 59.323 154.535 58.1673 154.951 57.3749C156.976 57.0534 161.456 55.9369 163.442 55.4188C162.278 59.2527 158.357 63.6761 156.15 65.1415C153.942 66.6069 151.465 66.3921 150.781 64.6761C150.098 62.96 152.217 61.1323 152.825 60.2971Z" fill="url(#paint4_linear_1703_1225)"/>
|
||||
<path d="M140.551 54.9398V52.6289L143.555 54.7087C142.631 55.1708 140.551 55.1708 140.551 54.9398Z" fill="#EB6338"/>
|
||||
<path d="M162.735 34.0809C161.811 33.8961 158.191 30.6147 156.496 28.9971C162.966 32.6944 165.508 32.0012 165.508 32.4633C165.508 32.9255 163.891 34.312 162.735 34.0809Z" fill="#E84F37"/>
|
||||
<path d="M143.48 48.7094C140.892 48.5245 139.166 46.1675 138.627 45.0121C139.32 43.6255 140.476 39.0038 146.022 39.2349C150.459 39.4198 152.954 42.8553 153.647 44.5499C150.643 48.0162 146.715 48.9405 143.48 48.7094Z" fill="#FEF9F5"/>
|
||||
<mask id="mask0_1703_1225" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="138" y="39" width="16" height="10">
|
||||
<path d="M143.48 48.7104C140.892 48.5255 139.166 46.1685 138.627 45.013C139.32 43.6265 140.476 39.0048 146.022 39.2359C150.459 39.4208 152.954 42.8562 153.647 44.5509C150.643 48.0171 146.715 48.9415 143.48 48.7104Z" fill="#FEF9F5"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_1703_1225)">
|
||||
<ellipse cx="145.388" cy="45.4423" rx="4.58862" ry="4.89453" transform="rotate(-17.2428 145.388 45.4423)" fill="black"/>
|
||||
</g>
|
||||
<path d="M130.276 57.186L161.093 70.9205L145.984 84.0688L115.168 70.3342L130.276 57.186Z" fill="url(#paint5_linear_1703_1225)"/>
|
||||
<path d="M145.902 84.0078L161.154 70.8359L160.923 72.4535L145.902 85.6254V84.0078Z" fill="#606972"/>
|
||||
<path d="M145.901 84.0078L116.322 70.8359V72.4535L145.901 85.6254V84.0078Z" fill="#49525B"/>
|
||||
<path d="M131.89 60.4687C132.169 60.2256 132.564 60.1665 132.903 60.3173L155.572 70.4211C156.208 70.7044 156.335 71.5521 155.81 72.009L145.339 81.1212C145.06 81.3644 144.665 81.4234 144.326 81.2726L121.656 71.1689C121.021 70.8855 120.894 70.0379 121.419 69.5809L131.89 60.4687Z" fill="url(#paint6_linear_1703_1225)" fill-opacity="0.6"/>
|
||||
<path d="M113.923 70.9863L144.786 84.6152L144.395 61.3551L113.531 47.7262L113.923 70.9863Z" fill="url(#paint7_linear_1703_1225)"/>
|
||||
<path d="M145.249 60.4355L144.324 61.3599L144.786 84.6995L145.711 83.7751L145.249 60.4355Z" fill="#677079"/>
|
||||
<path d="M145.248 60.4361L144.324 61.3605L113.59 47.7265L114.514 47.0332L145.248 60.4361Z" fill="#9AA2A9"/>
|
||||
<g filter="url(#filter0_f_1703_1225)">
|
||||
<path d="M122.138 22.7529L114.045 48.4616L145.943 60.8398V84.6441L165.938 66.5528C163.875 58.7768 157.845 41.3203 150.227 33.7029C142.61 26.0855 128.327 23.229 122.138 22.7529Z" fill="url(#paint8_linear_1703_1225)" fill-opacity="0.3"/>
|
||||
</g>
|
||||
<rect x="165.068" y="70.068" width="27.8641" height="14.2718" rx="3.3301" fill="#ACFF58" fill-opacity="0.2" stroke="#FFF500" stroke-width="0.135922"/>
|
||||
<path d="M173.504 75.8246H175.394V76.1066H174.619V78.3018H174.282V76.1066H173.504V75.8246ZM176.801 76.6575C176.646 76.6575 176.529 76.7178 176.45 76.8383C176.37 76.9589 176.33 77.1375 176.33 77.3743C176.33 77.6099 176.37 77.7885 176.45 77.9102C176.529 78.0308 176.646 78.091 176.801 78.091C176.957 78.091 177.075 78.0308 177.155 77.9102C177.234 77.7885 177.274 77.6099 177.274 77.3743C177.274 77.1375 177.234 76.9589 177.155 76.8383C177.075 76.7178 176.957 76.6575 176.801 76.6575ZM176.801 76.3986C177.059 76.3986 177.256 76.4822 177.392 76.6492C177.529 76.8162 177.598 77.0579 177.598 77.3743C177.598 77.6917 177.53 77.934 177.394 78.101C177.258 78.2669 177.06 78.3499 176.801 78.3499C176.544 78.3499 176.347 78.2669 176.211 78.101C176.075 77.934 176.007 77.6917 176.007 77.3743C176.007 77.0579 176.075 76.8162 176.211 76.6492C176.347 76.4822 176.544 76.3986 176.801 76.3986ZM179.155 76.6575C179 76.6575 178.882 76.7178 178.803 76.8383C178.723 76.9589 178.683 77.1375 178.683 77.3743C178.683 77.6099 178.723 77.7885 178.803 77.9102C178.882 78.0308 179 78.091 179.155 78.091C179.311 78.091 179.428 78.0308 179.508 77.9102C179.588 77.7885 179.627 77.6099 179.627 77.3743C179.627 77.1375 179.588 76.9589 179.508 76.8383C179.428 76.7178 179.311 76.6575 179.155 76.6575ZM179.155 76.3986C179.412 76.3986 179.609 76.4822 179.745 76.6492C179.882 76.8162 179.951 77.0579 179.951 77.3743C179.951 77.6917 179.883 77.934 179.747 78.101C179.611 78.2669 179.413 78.3499 179.155 78.3499C178.897 78.3499 178.7 78.2669 178.564 78.101C178.428 77.934 178.36 77.6917 178.36 77.3743C178.36 77.0579 178.428 76.8162 178.564 76.6492C178.7 76.4822 178.897 76.3986 179.155 76.3986ZM181.679 77.6298C181.679 77.7669 181.704 77.8704 181.753 77.9401C181.804 78.0097 181.879 78.0446 181.977 78.0446H182.334V78.3018H181.948C181.765 78.3018 181.623 78.2437 181.523 78.1275C181.423 78.0103 181.373 77.8444 181.373 77.6298V75.949H180.884V75.7101H181.679V77.6298ZM184.454 76.5082V76.8068C184.366 76.7559 184.278 76.7178 184.19 76.6923C184.101 76.6669 184.011 76.6542 183.919 76.6542C183.781 76.6542 183.678 76.6768 183.609 76.7222C183.541 76.7664 183.508 76.8345 183.508 76.9263C183.508 77.0092 183.533 77.0712 183.584 77.1121C183.635 77.153 183.762 77.1929 183.964 77.2316L184.087 77.2548C184.238 77.2836 184.353 77.3411 184.43 77.4274C184.509 77.5136 184.548 77.6259 184.548 77.7642C184.548 77.9478 184.483 78.0916 184.352 78.1956C184.222 78.2984 184.04 78.3499 183.808 78.3499C183.716 78.3499 183.62 78.3399 183.519 78.32C183.419 78.3012 183.31 78.2724 183.193 78.2337V77.9185C183.306 77.9771 183.415 78.0214 183.519 78.0512C183.623 78.08 183.722 78.0944 183.815 78.0944C183.95 78.0944 184.054 78.0673 184.128 78.0131C184.202 77.9577 184.239 77.8809 184.239 77.7824C184.239 77.6408 184.104 77.5429 183.833 77.4887L183.82 77.4854L183.705 77.4622C183.529 77.4279 183.401 77.3704 183.32 77.2896C183.24 77.2078 183.199 77.0966 183.199 76.9561C183.199 76.7781 183.259 76.6409 183.38 76.5447C183.501 76.4473 183.673 76.3986 183.896 76.3986C183.996 76.3986 184.091 76.408 184.183 76.4269C184.275 76.4446 184.365 76.4717 184.454 76.5082Z" fill="#76FF9C"/>
|
||||
<line x1="192.34" y1="44.3659" x2="192.34" y2="58.0244" stroke="#E27526" stroke-opacity="0.3" stroke-width="0.731707" stroke-linecap="round"/>
|
||||
<circle cx="192.341" cy="50.4635" r="1.34146" fill="#F57600"/>
|
||||
<line x1="195.999" y1="44.3659" x2="195.999" y2="58.0244" stroke="#E27526" stroke-opacity="0.3" stroke-width="0.731707" stroke-linecap="round"/>
|
||||
<circle cx="196" cy="53.8776" r="1.34146" fill="#F57600"/>
|
||||
<line x1="199.657" y1="44.3659" x2="199.657" y2="58.0244" stroke="#E27526" stroke-opacity="0.3" stroke-width="0.731707" stroke-linecap="round"/>
|
||||
<circle cx="199.658" cy="47.2926" r="1.34146" fill="#F57600"/>
|
||||
<rect x="62.7746" y="44.0871" width="32.9051" height="2.08922" rx="1.04461" fill="#32F28B" fill-opacity="0.2" stroke="#49FF92" stroke-width="0.174101"/>
|
||||
<rect x="62.6875" y="44" width="12.1871" height="2.26332" rx="1.13166" fill="#32F296" fill-opacity="0.7"/>
|
||||
<rect x="75.339" y="51.6251" width="32.9051" height="2.08922" rx="1.04461" fill="#F2A632" fill-opacity="0.2" stroke="#FFAB49" stroke-width="0.174101"/>
|
||||
<rect x="75.252" y="51.5381" width="22.2417" height="2.26332" rx="1.13166" fill="#F2A632" fill-opacity="0.7"/>
|
||||
<defs>
|
||||
<filter id="filter0_f_1703_1225" x="113.093" y="21.8008" width="53.7969" height="63.7959" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="0.476086" result="effect1_foregroundBlur_1703_1225"/>
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_1703_1225" x1="174.871" y1="15.517" x2="175.242" y2="25.7024" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FE6F6D"/>
|
||||
<stop offset="1" stop-color="#F3514F"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1703_1225" x1="185.15" y1="24.375" x2="185.15" y2="38.7023" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FE6F6D"/>
|
||||
<stop offset="1" stop-color="#F3514F"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1703_1225" x1="171.176" y1="19.4202" x2="139.755" y2="52.7462" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FE6F6D"/>
|
||||
<stop offset="0.532636" stop-color="#F45351"/>
|
||||
<stop offset="1" stop-color="#FA987A"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1703_1225" x1="140.088" y1="50.2705" x2="135.47" y2="59.411" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FE6F6D"/>
|
||||
<stop offset="0.09375" stop-color="#FD8D6A"/>
|
||||
<stop offset="1" stop-color="#F3514F"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_1703_1225" x1="158.322" y1="56.5549" x2="150.705" y2="65.6005" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0998039" stop-color="#F45351"/>
|
||||
<stop offset="1" stop-color="#F38A4F"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_1703_1225" x1="141.827" y1="62.3338" x2="134.434" y2="78.921" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#818B94"/>
|
||||
<stop offset="1" stop-color="#858C92"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_1703_1225" x1="141.564" y1="64.1775" x2="135.665" y2="77.4124" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#677179"/>
|
||||
<stop offset="1" stop-color="#6A747B"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint7_linear_1703_1225" x1="124.893" y1="75.8305" x2="133.425" y2="56.5109" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#8E9092"/>
|
||||
<stop offset="1" stop-color="#BCC6CF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint8_linear_1703_1225" x1="147.847" y1="42.7485" x2="128.327" y2="74.6463" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F4FFB4" stop-opacity="0"/>
|
||||
<stop offset="0.651042" stop-color="#CF80FF"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 11 KiB |
57
newIDE/app/public/res/questionnaire/delay-1-to-2-months.svg
Normal file
@@ -0,0 +1,57 @@
|
||||
<svg width="292" height="103" viewBox="0 0 292 103" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="292" height="102.768" fill="#1D1D26"/>
|
||||
<path d="M109.689 60.8738H79.9621C77.4363 60.8738 75.3887 58.8262 75.3887 56.3004V52.4893H114.262V56.3004C114.262 58.8262 112.215 60.8738 109.689 60.8738Z" fill="#D3DCFB"/>
|
||||
<path d="M79.962 59.3493C78.2808 59.3493 76.9131 57.9816 76.9131 56.3004V52.4893H112.738V56.3004C112.738 57.9816 111.37 59.3493 109.689 59.3493H79.962Z" fill="#6A0DB4"/>
|
||||
<path d="M109.689 25.0488H79.9621C77.4403 25.0488 75.3887 27.1004 75.3887 29.6222V53.2514C75.3887 55.7731 77.4403 57.8248 79.9621 57.8248H109.689C112.211 57.8248 114.262 55.7731 114.262 53.2514C114.262 52.7199 114.262 30.3072 114.262 29.6222C114.262 27.1004 112.211 25.0488 109.689 25.0488Z" fill="#EBF5FC"/>
|
||||
<path d="M79.962 56.3007C78.2782 56.3007 76.9131 54.9356 76.9131 53.2517V46.3916C76.9131 45.5497 77.5956 44.8672 78.4375 44.8672H111.213C112.055 44.8672 112.738 45.5497 112.738 46.3916V53.2517C112.738 54.9356 111.373 56.3007 109.689 56.3007H79.962Z" fill="#A12BFF"/>
|
||||
<path d="M83.7735 29.6222C84.6154 29.6222 85.2979 28.9396 85.2979 28.0977C85.2979 27.2558 84.6154 26.5732 83.7735 26.5732C82.9315 26.5732 82.249 27.2558 82.249 28.0977C82.249 28.9396 82.9315 29.6222 83.7735 29.6222Z" fill="#AAB9E5"/>
|
||||
<path d="M83.7732 28.8601C83.1418 28.8601 82.6299 28.3482 82.6299 27.7167V23.1433C82.6299 22.5119 83.1418 22 83.7732 22C84.4047 22 84.9166 22.5119 84.9166 23.1433V27.7167C84.9166 28.3482 84.4047 28.8601 83.7732 28.8601Z" fill="#D3DCFB"/>
|
||||
<path d="M105.878 29.6222C106.72 29.6222 107.402 28.9396 107.402 28.0977C107.402 27.2558 106.72 26.5732 105.878 26.5732C105.036 26.5732 104.354 27.2558 104.354 28.0977C104.354 28.9396 105.036 29.6222 105.878 29.6222Z" fill="#AAB9E5"/>
|
||||
<path d="M105.878 28.8601C105.246 28.8601 104.734 28.3482 104.734 27.7167V23.1433C104.734 22.5119 105.246 22 105.878 22C106.509 22 107.021 22.5119 107.021 23.1433V27.7167C107.021 28.3482 106.509 28.8601 105.878 28.8601Z" fill="#D3DCFB"/>
|
||||
<path d="M94.8252 29.6222C95.6672 29.6222 96.3497 28.9396 96.3497 28.0977C96.3497 27.2558 95.6672 26.5732 94.8252 26.5732C93.9833 26.5732 93.3008 27.2558 93.3008 28.0977C93.3008 28.9396 93.9833 29.6222 94.8252 29.6222Z" fill="#AAB9E5"/>
|
||||
<path d="M94.825 28.8601C94.1936 28.8601 93.6816 28.3482 93.6816 27.7167V23.1433C93.6816 22.5119 94.1936 22 94.825 22C95.4564 22 95.9683 22.5119 95.9683 23.1433V27.7167C95.9683 28.3482 95.4564 28.8601 94.825 28.8601Z" fill="#D3DCFB"/>
|
||||
<path d="M97.8741 41.8182C99.5553 41.8182 100.923 40.4504 100.923 38.7693V34.9581C100.923 33.2769 99.5553 31.9092 97.8741 31.9092C96.1929 31.9092 94.8252 33.2769 94.8252 34.9581V38.7693C94.8252 40.4504 96.1929 41.8182 97.8741 41.8182ZM96.3497 34.9581C96.3497 34.1175 97.0335 33.4336 97.8741 33.4336C98.7147 33.4336 99.3986 34.1175 99.3986 34.9581V38.7693C99.3986 39.6098 98.7147 40.2937 97.8741 40.2937C97.0335 40.2937 96.3497 39.6098 96.3497 38.7693V34.9581Z" fill="#252A3F"/>
|
||||
<path d="M89.9471 35.5679L91.7765 34.1959V41.0559C91.7765 41.4768 92.1178 41.8182 92.5387 41.8182C92.9596 41.8182 93.3009 41.4768 93.3009 41.0559V32.6714C93.3009 32.0448 92.5835 31.6851 92.0814 32.0616L89.0324 34.3483C88.6957 34.6008 88.6275 35.0787 88.88 35.4154C89.1326 35.7521 89.6103 35.8204 89.9471 35.5679Z" fill="#252A3F"/>
|
||||
<path d="M102.571 51.9921C102.566 52.0784 102.553 52.1699 102.533 52.2665C102.517 52.363 102.469 52.4418 102.388 52.5028C102.327 52.5536 102.258 52.5841 102.182 52.5942C102.106 52.6044 102.03 52.5993 101.953 52.579C101.882 52.5637 101.814 52.5383 101.748 52.5028C101.682 52.4621 101.628 52.4138 101.588 52.3579C101.415 52.1445 101.255 51.926 101.107 51.7024C100.965 51.4737 100.82 51.2451 100.673 51.0164L100.033 50.0484C99.9462 49.9112 99.8547 49.7587 99.7582 49.591C99.6616 49.4183 99.5625 49.2582 99.4609 49.1108L99.438 52.0226V52.0912C99.438 52.1725 99.4228 52.2538 99.3923 52.3351C99.3669 52.4113 99.3211 52.4773 99.2551 52.5332C99.2043 52.5739 99.1382 52.6018 99.0569 52.6171C98.9299 52.6425 98.8232 52.6349 98.7368 52.5942C98.6555 52.5536 98.5894 52.4977 98.5386 52.4265C98.4929 52.3554 98.4598 52.2741 98.4395 52.1826C98.4243 52.0861 98.4217 51.9921 98.4319 51.9006V51.771L98.4471 51.1765L98.4547 50.0712C98.4598 49.9086 98.4624 49.7435 98.4624 49.5758C98.4624 49.403 98.4624 49.2277 98.4624 49.0498C98.4573 48.8313 98.4573 48.6001 98.4624 48.3562C98.4725 48.1123 98.4827 47.8836 98.4929 47.6702C98.503 47.5533 98.531 47.4542 98.5767 47.3729C98.597 47.3018 98.6504 47.2408 98.7368 47.19C98.7927 47.1544 98.8638 47.1316 98.9502 47.1214C99.0417 47.1112 99.1204 47.1138 99.1865 47.129C99.2119 47.1392 99.2373 47.1519 99.2627 47.1671C99.2881 47.1773 99.3135 47.19 99.3389 47.2052C99.3643 47.2256 99.3872 47.2459 99.4075 47.2662C99.4329 47.2866 99.4558 47.3094 99.4761 47.3348C99.5015 47.3602 99.5244 47.3882 99.5447 47.4187C99.5651 47.4441 99.5854 47.4695 99.6057 47.4949C99.621 47.5254 99.6362 47.5533 99.6515 47.5787C99.6667 47.6042 99.6845 47.6296 99.7048 47.655L99.7887 47.7769L101.549 50.5514V50.0484C101.549 49.8858 101.547 49.7206 101.542 49.5529C101.542 49.3801 101.539 49.2023 101.534 49.0194C101.534 48.8059 101.534 48.5773 101.534 48.3334C101.539 48.0894 101.547 47.8608 101.557 47.6473C101.557 47.561 101.582 47.4619 101.633 47.3501C101.659 47.284 101.702 47.2307 101.763 47.19C101.824 47.1494 101.892 47.1214 101.969 47.1062C102.045 47.0909 102.121 47.0909 102.197 47.1062C102.274 47.1214 102.34 47.1519 102.395 47.1976C102.411 47.2129 102.426 47.2307 102.441 47.251C102.456 47.2713 102.469 47.2942 102.479 47.3196C102.505 47.3856 102.52 47.4441 102.525 47.4949C102.54 47.566 102.548 47.6296 102.548 47.6855C102.548 48.3206 102.548 48.9685 102.548 49.6291C102.553 50.2897 102.558 50.9376 102.563 51.5728C102.563 51.644 102.566 51.7151 102.571 51.7863C102.576 51.8523 102.576 51.9209 102.571 51.9921Z" fill="white"/>
|
||||
<path d="M97.1121 52.0531C97.1172 52.0836 97.1198 52.1141 97.1198 52.1446C97.1248 52.17 97.1274 52.2004 97.1274 52.236C97.1274 52.297 97.1096 52.3529 97.074 52.4037C97.0588 52.4291 97.0385 52.4545 97.0131 52.4799C96.9876 52.5003 96.9572 52.518 96.9216 52.5333C96.7945 52.6044 96.6599 52.6298 96.5176 52.6095C96.4465 52.5892 96.3829 52.5562 96.327 52.5104C96.3169 52.5003 96.3093 52.4952 96.3042 52.4952C96.2991 52.4901 96.294 52.4825 96.2889 52.4723C96.2839 52.4672 96.2788 52.4621 96.2737 52.4571C96.2686 52.4469 96.261 52.4393 96.2508 52.4342C96.2254 52.4088 96.2051 52.3859 96.1898 52.3656C96.1746 52.3402 96.1594 52.3148 96.1441 52.2894C96.1339 52.264 96.1212 52.2411 96.106 52.2208C96.0958 52.1954 96.0831 52.17 96.0679 52.1446C96.0577 52.1242 96.0476 52.1064 96.0374 52.0912C96.0272 52.0709 96.0196 52.0505 96.0145 52.0302C95.9942 51.9845 95.9815 51.9438 95.9764 51.9083L95.8164 51.5348C95.4657 51.5348 95.1151 51.5373 94.7645 51.5424C94.4189 51.5424 94.0708 51.5398 93.7202 51.5348L93.5601 51.9083C93.55 51.9286 93.5424 51.9489 93.5373 51.9692C93.5373 51.9896 93.5322 52.0099 93.522 52.0302C93.5119 52.0505 93.5017 52.0709 93.4915 52.0912C93.4865 52.1064 93.4788 52.1242 93.4687 52.1446C93.4534 52.17 93.4382 52.1954 93.4229 52.2208C93.4128 52.2411 93.4001 52.264 93.3848 52.2894C93.3747 52.3148 93.362 52.3402 93.3467 52.3656C93.3315 52.3859 93.3112 52.4088 93.2857 52.4342C93.2756 52.4393 93.268 52.4469 93.2629 52.4571C93.2578 52.4621 93.2527 52.4672 93.2476 52.4723C93.2426 52.4825 93.2375 52.4901 93.2324 52.4952C93.2273 52.4952 93.2197 52.5003 93.2095 52.5104C93.1536 52.5562 93.0901 52.5892 93.019 52.6095C92.8767 52.6298 92.742 52.6044 92.615 52.5333C92.5794 52.518 92.5489 52.5003 92.5235 52.4799C92.4981 52.4545 92.4778 52.4291 92.4625 52.4037C92.427 52.3529 92.4092 52.297 92.4092 52.236C92.4092 52.2004 92.4092 52.17 92.4092 52.1446C92.4143 52.1141 92.4193 52.0836 92.4244 52.0531C92.4346 52.0073 92.4473 51.9616 92.4625 51.9159C92.4778 51.8701 92.4854 51.8473 92.4854 51.8473L94.0708 47.9447L94.1166 47.8227C94.1267 47.7922 94.1394 47.7643 94.1547 47.7389C94.1699 47.7134 94.1826 47.683 94.1928 47.6474C94.2182 47.5813 94.2462 47.5229 94.2766 47.4721C94.2919 47.4416 94.3097 47.4136 94.33 47.3882C94.3503 47.3628 94.3707 47.3374 94.391 47.312C94.4215 47.2714 94.4647 47.2383 94.5206 47.2129C94.5917 47.1875 94.673 47.1748 94.7645 47.1748C94.861 47.1748 94.9449 47.1875 95.016 47.2129C95.0719 47.2383 95.1151 47.2714 95.1456 47.312C95.1812 47.3577 95.2193 47.4111 95.2599 47.4721C95.2904 47.5229 95.3184 47.5813 95.3438 47.6474C95.3539 47.683 95.3666 47.7134 95.3819 47.7389C95.3971 47.7643 95.4098 47.7922 95.42 47.8227L95.4657 47.9447L97.0512 51.8473C97.0512 51.8473 97.0588 51.8701 97.074 51.9159C97.0893 51.9616 97.102 52.0073 97.1121 52.0531ZM95.3057 50.1856C95.2396 50.0383 95.171 49.8858 95.0999 49.7283C95.0338 49.5708 94.9627 49.4107 94.8864 49.2481C94.8661 49.2023 94.8458 49.1566 94.8255 49.1109C94.8051 49.0601 94.7848 49.0118 94.7645 48.966C94.7492 49.0118 94.7314 49.0601 94.7111 49.1109C94.6908 49.1566 94.6705 49.2023 94.6501 49.2481C94.5739 49.4107 94.5002 49.5708 94.4291 49.7283C94.363 49.8858 94.297 50.0383 94.2309 50.1856L94.0937 50.521H95.4429L95.3057 50.1856Z" fill="white"/>
|
||||
<path d="M91.8342 47.3648C91.8851 47.4309 91.9105 47.4969 91.9105 47.563C91.9155 47.5935 91.9155 47.6316 91.9105 47.6773C91.9105 47.723 91.9079 47.7586 91.9028 47.784C91.8876 47.8348 91.852 47.8856 91.7961 47.9365C91.7809 47.9517 91.7631 47.967 91.7428 47.9822C91.7224 47.9924 91.697 48.0025 91.6665 48.0127C91.6361 48.0229 91.6056 48.0305 91.5751 48.0356C91.5446 48.0356 91.5116 48.0381 91.476 48.0432C91.4404 48.0483 91.4074 48.0533 91.3769 48.0584C91.3464 48.0584 91.3134 48.0584 91.2778 48.0584H90.8433V48.188C90.8383 48.6453 90.8459 49.1027 90.8662 49.56C90.8916 50.0174 90.8891 50.4747 90.8586 50.932C90.8433 51.0845 90.8205 51.242 90.79 51.4046C90.7595 51.5621 90.7087 51.7121 90.6375 51.8543C90.5715 51.9915 90.4825 52.1186 90.3708 52.2354C90.259 52.3523 90.1167 52.4438 89.9439 52.5099C89.7813 52.5708 89.6034 52.614 89.4103 52.6394C89.2172 52.6648 89.0216 52.6674 88.8234 52.6471C88.6303 52.6267 88.4448 52.5835 88.267 52.5175C88.0891 52.4514 87.9392 52.3599 87.8173 52.2431C87.7512 52.1821 87.6902 52.1084 87.6343 52.022C87.5784 51.9306 87.5403 51.8365 87.52 51.74C87.4997 51.6384 87.5048 51.5418 87.5353 51.4504C87.5657 51.3538 87.6369 51.275 87.7487 51.2141C87.8452 51.1582 87.9316 51.1455 88.0078 51.1759C88.0891 51.2064 88.1654 51.2547 88.2365 51.3208C88.3127 51.3868 88.389 51.4554 88.4652 51.5266C88.5465 51.5977 88.6354 51.6434 88.732 51.6638C88.9403 51.7146 89.1105 51.7171 89.2427 51.6714C89.3748 51.6206 89.4789 51.5418 89.5552 51.4351C89.6314 51.3284 89.6847 51.1988 89.7152 51.0464C89.7508 50.8939 89.7711 50.7389 89.7762 50.5814C89.7864 50.4239 89.7889 50.2714 89.7838 50.1241C89.7788 49.9767 89.7788 49.8522 89.7838 49.7506C89.7889 49.4813 89.7889 49.217 89.7838 48.9579C89.7788 48.6987 89.7762 48.4345 89.7762 48.1651V48.1346C89.7813 48.1245 89.7838 48.1092 89.7838 48.0889H89.761C89.7305 48.0838 89.667 48.0813 89.5704 48.0813C89.4739 48.0762 89.3697 48.0737 89.2579 48.0737C89.1461 48.0737 89.0394 48.0737 88.9378 48.0737C88.8412 48.0686 88.7777 48.066 88.7472 48.066H88.6405V48.0584C88.5998 48.0533 88.5592 48.0457 88.5185 48.0356C88.4779 48.0254 88.4372 48.0152 88.3966 48.0051C88.3 47.9746 88.2263 47.9263 88.1755 47.8602C88.1501 47.8348 88.1298 47.7942 88.1145 47.7383C88.1044 47.6824 88.0993 47.6341 88.0993 47.5935C88.0993 47.5681 88.0993 47.5401 88.0993 47.5096C88.0993 47.4791 88.1044 47.4512 88.1145 47.4258C88.1247 47.3699 88.1603 47.3191 88.2213 47.2733C88.2619 47.2428 88.3102 47.22 88.3661 47.2047C88.4017 47.1946 88.4372 47.1869 88.4728 47.1819C88.5084 47.1768 88.5465 47.1717 88.5871 47.1666C88.6227 47.1615 88.6583 47.159 88.6938 47.159C88.7294 47.159 88.7675 47.159 88.8082 47.159H89.5399C89.5704 47.159 89.606 47.159 89.6466 47.159C89.6873 47.159 89.733 47.1564 89.7838 47.1514C89.982 47.1514 90.1777 47.1514 90.3708 47.1514C90.5639 47.1514 90.7519 47.1539 90.9348 47.159H90.9805C91.0364 47.159 91.0898 47.1615 91.1406 47.1666C91.1965 47.1666 91.2524 47.1666 91.3083 47.1666C91.4252 47.1717 91.5344 47.1946 91.6361 47.2352C91.7174 47.2555 91.7834 47.2987 91.8342 47.3648Z" fill="white"/>
|
||||
<path d="M158.281 60.8738H128.554C126.028 60.8738 123.98 58.8262 123.98 56.3004V52.4893H162.854V56.3004C162.854 58.8262 160.807 60.8738 158.281 60.8738Z" fill="#D3DCFB"/>
|
||||
<path d="M128.554 59.3493C126.873 59.3493 125.505 57.9816 125.505 56.3004V52.4893H161.33V56.3004C161.33 57.9816 159.962 59.3493 158.281 59.3493H128.554Z" fill="#6A0DB4"/>
|
||||
<path d="M158.281 25.0488H128.554C126.032 25.0488 123.98 27.1004 123.98 29.6222V53.2514C123.98 55.7731 126.032 57.8248 128.554 57.8248H158.281C160.803 57.8248 162.854 55.7731 162.854 53.2514C162.854 52.7199 162.854 30.3072 162.854 29.6222C162.854 27.1004 160.803 25.0488 158.281 25.0488Z" fill="#EBF5FC"/>
|
||||
<path d="M128.554 56.3007C126.87 56.3007 125.505 54.9356 125.505 53.2517V46.3916C125.505 45.5497 126.187 44.8672 127.029 44.8672H159.805C160.647 44.8672 161.33 45.5497 161.33 46.3916V53.2517C161.33 54.9356 159.965 56.3007 158.281 56.3007H128.554Z" fill="#A12BFF"/>
|
||||
<path d="M132.365 29.6222C133.207 29.6222 133.89 28.9396 133.89 28.0977C133.89 27.2558 133.207 26.5732 132.365 26.5732C131.523 26.5732 130.841 27.2558 130.841 28.0977C130.841 28.9396 131.523 29.6222 132.365 29.6222Z" fill="#AAB9E5"/>
|
||||
<path d="M132.365 28.8601C131.734 28.8601 131.222 28.3482 131.222 27.7167V23.1433C131.222 22.5119 131.734 22 132.365 22C132.996 22 133.508 22.5119 133.508 23.1433V27.7167C133.508 28.3482 132.996 28.8601 132.365 28.8601Z" fill="#D3DCFB"/>
|
||||
<path d="M154.47 29.6222C155.312 29.6222 155.994 28.9396 155.994 28.0977C155.994 27.2558 155.312 26.5732 154.47 26.5732C153.628 26.5732 152.945 27.2558 152.945 28.0977C152.945 28.9396 153.628 29.6222 154.47 29.6222Z" fill="#AAB9E5"/>
|
||||
<path d="M154.47 28.8601C153.838 28.8601 153.326 28.3482 153.326 27.7167V23.1433C153.326 22.5119 153.838 22 154.47 22C155.101 22 155.613 22.5119 155.613 23.1433V27.7167C155.613 28.3482 155.101 28.8601 154.47 28.8601Z" fill="#D3DCFB"/>
|
||||
<path d="M143.417 29.6222C144.259 29.6222 144.942 28.9396 144.942 28.0977C144.942 27.2558 144.259 26.5732 143.417 26.5732C142.575 26.5732 141.893 27.2558 141.893 28.0977C141.893 28.9396 142.575 29.6222 143.417 29.6222Z" fill="#AAB9E5"/>
|
||||
<path d="M143.417 28.8601C142.785 28.8601 142.273 28.3482 142.273 27.7167V23.1433C142.273 22.5119 142.785 22 143.417 22C144.048 22 144.56 22.5119 144.56 23.1433V27.7167C144.56 28.3482 144.048 28.8601 143.417 28.8601Z" fill="#D3DCFB"/>
|
||||
<path d="M146.466 41.8182C148.147 41.8182 149.515 40.4504 149.515 38.7693V34.9581C149.515 33.2769 148.147 31.9092 146.466 31.9092C144.785 31.9092 143.417 33.2769 143.417 34.9581V38.7693C143.417 40.4504 144.785 41.8182 146.466 41.8182ZM144.941 34.9581C144.941 34.1175 145.625 33.4336 146.466 33.4336C147.307 33.4336 147.99 34.1175 147.99 34.9581V38.7693C147.99 39.6098 147.307 40.2937 146.466 40.2937C145.625 40.2937 144.941 39.6098 144.941 38.7693V34.9581Z" fill="#252A3F"/>
|
||||
<path d="M138.539 35.5679L140.368 34.1959V41.0559C140.368 41.4768 140.71 41.8182 141.131 41.8182C141.551 41.8182 141.893 41.4768 141.893 41.0559V32.6714C141.893 32.0448 141.175 31.6851 140.673 32.0616L137.624 34.3483C137.287 34.6008 137.219 35.0787 137.472 35.4154C137.724 35.7521 138.202 35.8204 138.539 35.5679Z" fill="#252A3F"/>
|
||||
<path d="M150.475 49.7583C150.622 49.8548 150.747 49.9692 150.848 50.1013C150.955 50.2283 151.039 50.3858 151.1 50.5739C151.166 50.7822 151.199 50.9931 151.199 51.2065C151.204 51.4148 151.166 51.6105 151.085 51.7934C151.008 51.9713 150.884 52.1288 150.711 52.266C150.543 52.3981 150.322 52.4921 150.048 52.548C149.901 52.5836 149.728 52.6116 149.53 52.6319C149.332 52.6522 149.154 52.6624 148.996 52.6624C148.798 52.6674 148.592 52.6674 148.379 52.6624C148.17 52.6624 147.967 52.642 147.769 52.6014C147.683 52.576 147.619 52.5328 147.578 52.4718C147.543 52.4058 147.517 52.3321 147.502 52.2508C147.482 52.205 147.472 52.1593 147.472 52.1136V47.7841C147.472 47.6418 147.5 47.5326 147.556 47.4563C147.617 47.375 147.695 47.3166 147.792 47.281C147.888 47.2404 147.998 47.2175 148.12 47.2124C148.242 47.2023 148.369 47.1972 148.501 47.1972C148.602 47.1972 148.704 47.1972 148.806 47.1972C148.912 47.1921 149.019 47.1921 149.126 47.1972C149.293 47.2023 149.466 47.2175 149.644 47.2429C149.827 47.2632 150 47.3039 150.162 47.3649C150.239 47.3903 150.32 47.4258 150.406 47.4716C150.493 47.5122 150.561 47.563 150.612 47.624C150.775 47.7714 150.894 47.9442 150.97 48.1423C151.052 48.3354 151.087 48.5336 151.077 48.7369C151.067 48.9351 151.011 49.1256 150.909 49.3086C150.813 49.4915 150.668 49.6414 150.475 49.7583ZM149.141 51.7782C149.298 51.768 149.459 51.7502 149.621 51.7248C149.784 51.6994 149.896 51.6511 149.957 51.58C150.023 51.4987 150.068 51.4047 150.094 51.298C150.124 51.1862 150.132 51.0744 150.117 50.9626C150.106 50.8457 150.073 50.7365 150.018 50.6348C149.967 50.5281 149.898 50.4443 149.812 50.3833C149.695 50.2918 149.56 50.2334 149.408 50.208C149.255 50.1775 149.105 50.1622 148.958 50.1622C148.887 50.1622 148.821 50.1648 148.76 50.1699C148.704 50.1699 148.653 50.1775 148.607 50.1927C148.567 50.2029 148.536 50.2258 148.516 50.2613C148.496 50.2969 148.485 50.3503 148.485 50.4214C148.496 50.5535 148.496 50.6856 148.485 50.8178C148.475 50.9499 148.47 51.0769 148.47 51.1989C148.47 51.27 148.468 51.3488 148.463 51.4352C148.463 51.5165 148.491 51.5851 148.546 51.641C148.602 51.6969 148.684 51.735 148.79 51.7553C148.897 51.7756 149.014 51.7833 149.141 51.7782ZM149.293 48.1195C149.136 48.1144 149.004 48.1118 148.897 48.1118C148.795 48.1068 148.714 48.1144 148.653 48.1347C148.597 48.15 148.557 48.1881 148.531 48.249C148.511 48.3049 148.503 48.3913 148.508 48.5082C148.508 48.6048 148.506 48.7013 148.501 48.7979C148.501 48.8893 148.501 48.9808 148.501 49.0723C148.501 49.1739 148.534 49.2501 148.6 49.3009C148.666 49.3467 148.747 49.3746 148.844 49.3848C148.945 49.3949 149.049 49.3949 149.156 49.3848C149.268 49.3746 149.365 49.3619 149.446 49.3467C149.629 49.3162 149.769 49.2552 149.865 49.1637C149.967 49.0672 150.025 48.9274 150.04 48.7445C150.061 48.5158 150 48.3583 149.857 48.2719C149.72 48.1804 149.532 48.1296 149.293 48.1195Z" fill="white"/>
|
||||
<path d="M143.647 48.0895L143.632 49.2862H143.936C144.145 49.2811 144.33 49.2786 144.493 49.2786C144.655 49.2786 144.836 49.2811 145.034 49.2862H145.072C145.133 49.2862 145.192 49.2887 145.247 49.2938C145.308 49.2938 145.367 49.2938 145.423 49.2938C145.484 49.2989 145.542 49.3091 145.598 49.3243C145.654 49.3345 145.71 49.3472 145.766 49.3624C145.852 49.3929 145.923 49.4386 145.979 49.4996C146.03 49.5657 146.055 49.6394 146.055 49.7207C146.055 49.7461 146.055 49.7766 146.055 49.8121C146.055 49.8426 146.05 49.8706 146.04 49.896C146.03 49.9519 145.997 50.0027 145.941 50.0484C145.916 50.084 145.867 50.1094 145.796 50.1246C145.73 50.145 145.664 50.1577 145.598 50.1628C145.527 50.178 145.456 50.1856 145.385 50.1856H145.026L143.616 50.1932L143.601 51.6872L145.118 51.7025H145.476C145.517 51.7025 145.555 51.7025 145.59 51.7025C145.626 51.7025 145.659 51.705 145.69 51.7101C145.73 51.7202 145.766 51.7279 145.796 51.7329C145.832 51.7329 145.865 51.738 145.895 51.7482C145.956 51.7685 146.007 51.7965 146.048 51.832C146.099 51.8829 146.132 51.9362 146.147 51.9921C146.152 52.0175 146.155 52.0455 146.155 52.076C146.16 52.1014 146.16 52.1293 146.155 52.1598C146.155 52.2411 146.129 52.3148 146.078 52.3808C146.017 52.452 145.946 52.4977 145.865 52.518C145.758 52.5638 145.641 52.5866 145.514 52.5866C145.458 52.5917 145.4 52.5943 145.339 52.5943C145.278 52.5943 145.22 52.5968 145.164 52.6019H145.118C144.722 52.6121 144.31 52.6121 143.883 52.6019C143.781 52.6019 143.7 52.5993 143.639 52.5943C143.578 52.5943 143.522 52.5943 143.471 52.5943C143.426 52.5943 143.377 52.5943 143.327 52.5943C143.276 52.5943 143.21 52.5943 143.128 52.5943C143.012 52.6044 142.915 52.5841 142.839 52.5333C142.783 52.4977 142.74 52.4494 142.709 52.3885C142.694 52.3732 142.686 52.358 142.686 52.3427C142.681 52.3326 142.676 52.3249 142.671 52.3199C142.666 52.3148 142.661 52.3072 142.656 52.297C142.646 52.2716 142.638 52.2462 142.633 52.2208C142.628 52.1903 142.625 52.1623 142.625 52.1369C142.62 52.1115 142.615 52.0861 142.61 52.0607C142.61 52.0353 142.608 52.0099 142.603 51.9845V51.8625C142.603 51.8422 142.603 51.8219 142.603 51.8015C142.608 51.7812 142.61 51.7609 142.61 51.7406V51.146L142.625 50.0484V49.0346C142.625 48.8517 142.625 48.6891 142.625 48.5468C142.63 48.4045 142.636 48.2496 142.641 48.0819V48.0437C142.646 47.9879 142.648 47.937 142.648 47.8913C142.653 47.8405 142.656 47.7897 142.656 47.7389C142.661 47.6372 142.689 47.5381 142.74 47.4416C142.76 47.4009 142.78 47.3654 142.801 47.3349C142.826 47.3044 142.859 47.279 142.9 47.2586C142.976 47.2129 143.055 47.19 143.136 47.19C143.177 47.19 143.207 47.1926 143.228 47.1977V47.19C143.319 47.19 143.393 47.19 143.449 47.19C143.505 47.19 143.558 47.19 143.609 47.19C143.665 47.19 143.723 47.19 143.784 47.19C143.845 47.185 143.929 47.1824 144.036 47.1824C144.239 47.1773 144.432 47.1748 144.615 47.1748C144.798 47.1748 144.986 47.1773 145.179 47.1824H145.209C145.265 47.1875 145.324 47.19 145.385 47.19C145.446 47.19 145.504 47.1926 145.56 47.1977C145.616 47.1977 145.672 47.2053 145.728 47.2205C145.784 47.2307 145.839 47.2459 145.895 47.2663C145.982 47.2917 146.053 47.3349 146.109 47.3959C146.155 47.467 146.177 47.5381 146.177 47.6093C146.177 47.6398 146.177 47.6703 146.177 47.7007C146.177 47.7262 146.172 47.7516 146.162 47.777C146.157 47.8278 146.127 47.8811 146.071 47.937C146.05 47.9472 146.027 47.9599 146.002 47.9751C145.982 47.9904 145.956 48.0031 145.926 48.0133C145.895 48.0234 145.862 48.031 145.827 48.0361C145.796 48.0361 145.766 48.0387 145.735 48.0437C145.695 48.0539 145.657 48.059 145.621 48.059C145.59 48.059 145.555 48.059 145.514 48.059H145.171L143.647 48.0666V48.0895Z" fill="white"/>
|
||||
<path d="M141.33 47.4028C141.376 47.4638 141.404 47.5349 141.414 47.6162C141.414 47.6467 141.412 47.6772 141.406 47.7077C141.406 47.7331 141.404 47.7585 141.399 47.7839C141.394 47.8398 141.361 47.8932 141.3 47.944C141.264 47.9694 141.218 47.9948 141.163 48.0202C141.132 48.0304 141.099 48.038 141.063 48.0431C141.033 48.0431 140.997 48.0456 140.957 48.0507C140.926 48.0608 140.893 48.0659 140.858 48.0659C140.822 48.0659 140.786 48.0659 140.751 48.0659H140.408L138.815 48.0735V48.0964L138.807 49.3388C138.848 49.3388 138.891 49.3388 138.937 49.3388C138.988 49.3388 139.049 49.3363 139.12 49.3312C139.323 49.3312 139.503 49.3312 139.661 49.3312C139.824 49.3312 140.001 49.3338 140.194 49.3388H140.24C140.296 49.3388 140.352 49.3414 140.408 49.3465C140.469 49.3465 140.53 49.3465 140.591 49.3465C140.647 49.3516 140.703 49.3592 140.759 49.3693C140.814 49.3744 140.87 49.3871 140.926 49.4075C141.018 49.4379 141.084 49.4862 141.124 49.5523C141.18 49.6183 141.208 49.6869 141.208 49.7581C141.208 49.7886 141.208 49.8191 141.208 49.8495C141.208 49.875 141.203 49.9029 141.193 49.9334C141.188 49.974 141.155 50.0249 141.094 50.0858C141.053 50.1214 141.005 50.1443 140.949 50.1544C140.924 50.1646 140.893 50.1748 140.858 50.1849C140.827 50.19 140.794 50.1951 140.759 50.2002C140.723 50.2053 140.687 50.2103 140.652 50.2154C140.621 50.2154 140.586 50.2154 140.545 50.2154H140.194L138.792 50.223L138.769 51.9914V52.0524C138.769 52.0778 138.767 52.1032 138.762 52.1286C138.762 52.1489 138.759 52.1718 138.754 52.1972C138.744 52.2226 138.734 52.2506 138.723 52.2811C138.718 52.3065 138.711 52.3319 138.701 52.3573C138.665 52.4284 138.632 52.4767 138.601 52.5021C138.546 52.5428 138.477 52.5707 138.396 52.586C138.258 52.6164 138.129 52.6012 138.007 52.5402C137.981 52.525 137.956 52.5072 137.931 52.4869C137.91 52.4615 137.893 52.431 137.877 52.3954C137.867 52.3751 137.862 52.3598 137.862 52.3497L137.839 52.3039C137.824 52.2785 137.814 52.2531 137.809 52.2277C137.804 52.1972 137.799 52.1693 137.793 52.1439C137.793 52.1185 137.791 52.093 137.786 52.0676C137.786 52.0422 137.783 52.0168 137.778 51.9914C137.773 51.9508 137.773 51.9101 137.778 51.8695V51.7475L137.786 51.153L137.793 50.0553C137.799 49.8927 137.801 49.7276 137.801 49.5599C137.801 49.3922 137.801 49.2194 137.801 49.0416C137.796 48.8586 137.793 48.696 137.793 48.5538C137.799 48.4115 137.806 48.2565 137.816 48.0888V48.0507C137.821 47.9948 137.824 47.944 137.824 47.8982C137.824 47.8474 137.829 47.7966 137.839 47.7458C137.849 47.634 137.875 47.5349 137.915 47.4485C137.951 47.3621 138.002 47.3012 138.068 47.2656C138.144 47.2198 138.225 47.197 138.312 47.197C138.352 47.197 138.385 47.1995 138.411 47.2046V47.197C138.502 47.197 138.576 47.197 138.632 47.197C138.688 47.197 138.741 47.197 138.792 47.197C138.843 47.197 138.899 47.197 138.96 47.197C139.021 47.1919 139.102 47.1894 139.204 47.1894C139.61 47.1843 140.012 47.1843 140.408 47.1894H140.446C140.502 47.1944 140.558 47.197 140.614 47.197C140.675 47.197 140.736 47.1995 140.797 47.2046C140.853 47.2046 140.908 47.2122 140.964 47.2275C141.02 47.2376 141.076 47.2529 141.132 47.2732C141.218 47.2986 141.284 47.3418 141.33 47.4028Z" fill="white"/>
|
||||
<path d="M206.873 60.8738H177.146C174.62 60.8738 172.572 58.8262 172.572 56.3004V52.4893H211.446V56.3004C211.446 58.8262 209.398 60.8738 206.873 60.8738Z" fill="#D3DCFB"/>
|
||||
<path d="M177.146 59.3493C175.464 59.3493 174.097 57.9816 174.097 56.3004V52.4893H209.922V56.3004C209.922 57.9816 208.554 59.3493 206.873 59.3493H177.146Z" fill="#6A0DB4"/>
|
||||
<path d="M206.873 25.0488H177.146C174.624 25.0488 172.572 27.1004 172.572 29.6222V53.2514C172.572 55.7731 174.624 57.8248 177.146 57.8248H206.873C209.394 57.8248 211.446 55.7731 211.446 53.2514C211.446 52.7199 211.446 30.3072 211.446 29.6222C211.446 27.1004 209.394 25.0488 206.873 25.0488Z" fill="#EBF5FC"/>
|
||||
<path d="M177.146 56.3007C175.462 56.3007 174.097 54.9356 174.097 53.2517V46.3916C174.097 45.5497 174.779 44.8672 175.621 44.8672H208.397C209.239 44.8672 209.922 45.5497 209.922 46.3916V53.2517C209.922 54.9356 208.556 56.3007 206.873 56.3007H177.146Z" fill="#A12BFF"/>
|
||||
<path d="M180.957 29.6222C181.799 29.6222 182.482 28.9396 182.482 28.0977C182.482 27.2558 181.799 26.5732 180.957 26.5732C180.115 26.5732 179.433 27.2558 179.433 28.0977C179.433 28.9396 180.115 29.6222 180.957 29.6222Z" fill="#AAB9E5"/>
|
||||
<path d="M180.957 28.8601C180.325 28.8601 179.813 28.3482 179.813 27.7167V23.1433C179.813 22.5119 180.325 22 180.957 22C181.588 22 182.1 22.5119 182.1 23.1433V27.7167C182.1 28.3482 181.588 28.8601 180.957 28.8601Z" fill="#D3DCFB"/>
|
||||
<path d="M203.062 29.6222C203.904 29.6222 204.586 28.9396 204.586 28.0977C204.586 27.2558 203.904 26.5732 203.062 26.5732C202.22 26.5732 201.537 27.2558 201.537 28.0977C201.537 28.9396 202.22 29.6222 203.062 29.6222Z" fill="#AAB9E5"/>
|
||||
<path d="M203.061 28.8601C202.43 28.8601 201.918 28.3482 201.918 27.7167V23.1433C201.918 22.5119 202.43 22 203.061 22C203.693 22 204.205 22.5119 204.205 23.1433V27.7167C204.205 28.3482 203.693 28.8601 203.061 28.8601Z" fill="#D3DCFB"/>
|
||||
<path d="M192.009 29.6222C192.851 29.6222 193.533 28.9396 193.533 28.0977C193.533 27.2558 192.851 26.5732 192.009 26.5732C191.167 26.5732 190.484 27.2558 190.484 28.0977C190.484 28.9396 191.167 29.6222 192.009 29.6222Z" fill="#AAB9E5"/>
|
||||
<path d="M192.009 28.8601C191.377 28.8601 190.865 28.3482 190.865 27.7167V23.1433C190.865 22.5119 191.377 22 192.009 22C192.64 22 193.152 22.5119 193.152 23.1433V27.7167C193.152 28.3482 192.64 28.8601 192.009 28.8601Z" fill="#D3DCFB"/>
|
||||
<path d="M195.058 41.8182C196.739 41.8182 198.107 40.4504 198.107 38.7693V34.9581C198.107 33.2769 196.739 31.9092 195.058 31.9092C193.377 31.9092 192.009 33.2769 192.009 34.9581V38.7693C192.009 40.4504 193.377 41.8182 195.058 41.8182ZM193.533 34.9581C193.533 34.1175 194.217 33.4336 195.058 33.4336C195.898 33.4336 196.582 34.1175 196.582 34.9581V38.7693C196.582 39.6098 195.898 40.2937 195.058 40.2937C194.217 40.2937 193.533 39.6098 193.533 38.7693V34.9581Z" fill="#252A3F"/>
|
||||
<path d="M187.131 35.5679L188.96 34.1959V41.0559C188.96 41.4768 189.301 41.8182 189.722 41.8182C190.143 41.8182 190.485 41.4768 190.485 41.0559V32.6714C190.485 32.0448 189.767 31.6851 189.265 32.0616L186.216 34.3483C185.879 34.6008 185.811 35.0787 186.064 35.4154C186.316 35.7521 186.794 35.8204 187.131 35.5679Z" fill="#252A3F"/>
|
||||
<path d="M200.283 52.2365C200.288 52.2873 200.283 52.3356 200.267 52.3813C200.257 52.4118 200.242 52.4372 200.222 52.4576C200.206 52.4779 200.186 52.4982 200.161 52.5185C200.115 52.549 200.059 52.577 199.993 52.6024C199.952 52.6125 199.912 52.6202 199.871 52.6252C199.836 52.6354 199.797 52.6354 199.757 52.6252C199.675 52.6202 199.604 52.5897 199.543 52.5338C199.457 52.4626 199.386 52.3839 199.33 52.2975C199.305 52.2568 199.277 52.2111 199.246 52.1603C199.216 52.1095 199.188 52.0561 199.162 52.0002L198.316 50.3919C198.276 50.3919 198.235 50.3944 198.194 50.3995C198.154 50.3995 198.113 50.4021 198.072 50.4071C197.966 50.4173 197.864 50.4199 197.767 50.4148C197.676 50.4097 197.579 50.4097 197.478 50.4148H197.333V51.7944C197.333 51.8351 197.33 51.8732 197.325 51.9087C197.325 51.9443 197.325 51.9824 197.325 52.0231C197.325 52.0485 197.323 52.0815 197.318 52.1222C197.318 52.1628 197.315 52.2009 197.31 52.2365C197.3 52.2924 197.277 52.3508 197.241 52.4118C197.206 52.4677 197.158 52.516 197.097 52.5566C196.99 52.6227 196.86 52.6405 196.708 52.61C196.642 52.5948 196.578 52.5693 196.517 52.5338C196.497 52.5185 196.479 52.5007 196.464 52.4804C196.449 52.455 196.436 52.4296 196.426 52.4042C196.416 52.3788 196.406 52.3534 196.395 52.328C196.39 52.2975 196.383 52.2695 196.372 52.2441C196.357 52.1933 196.35 52.145 196.35 52.0993V47.7698C196.35 47.7393 196.35 47.7089 196.35 47.6784C196.355 47.6428 196.36 47.6123 196.365 47.5869C196.37 47.531 196.388 47.4751 196.418 47.4192C196.433 47.3582 196.459 47.315 196.494 47.2896C196.525 47.2591 196.571 47.2337 196.632 47.2134C196.698 47.188 196.792 47.1778 196.914 47.1829C197.142 47.188 197.368 47.1905 197.592 47.1905C197.816 47.1905 198.039 47.1956 198.263 47.2058C198.41 47.2159 198.565 47.2337 198.728 47.2591C198.895 47.2795 199.05 47.3176 199.193 47.3735C199.284 47.409 199.368 47.4446 199.444 47.4802C199.541 47.5361 199.617 47.5894 199.673 47.6402C199.851 47.8029 199.985 47.9985 200.077 48.2272C200.168 48.4558 200.214 48.687 200.214 48.9208C200.214 49.1952 200.148 49.4467 200.016 49.6754C199.889 49.9041 199.683 50.0743 199.399 50.1861C199.388 50.1963 199.373 50.2039 199.353 50.209C199.338 50.209 199.325 50.2115 199.315 50.2166L200.016 51.6267L200.085 51.7487C200.095 51.769 200.107 51.7919 200.123 51.8173C200.138 51.8427 200.151 51.8681 200.161 51.8935C200.176 51.9189 200.189 51.9469 200.199 51.9773C200.214 52.0078 200.229 52.0358 200.245 52.0612C200.26 52.1323 200.273 52.1908 200.283 52.2365ZM198.377 49.523C198.469 49.523 198.555 49.5077 198.636 49.4772C198.723 49.4417 198.799 49.3959 198.865 49.34C198.936 49.2841 198.995 49.2206 199.04 49.1495C199.086 49.0732 199.111 48.9919 199.117 48.9056C199.137 48.6515 199.071 48.4635 198.918 48.3415C198.766 48.2145 198.565 48.1459 198.316 48.1357C198.169 48.1255 198.006 48.1205 197.828 48.1205C197.656 48.1205 197.49 48.1205 197.333 48.1205C197.338 48.3288 197.338 48.5422 197.333 48.7607C197.333 48.9742 197.333 49.2282 197.333 49.523H198.377Z" fill="white"/>
|
||||
<path d="M195.036 52.0531C195.041 52.0836 195.044 52.1141 195.044 52.1446C195.049 52.17 195.051 52.2004 195.051 52.236C195.051 52.297 195.033 52.3529 194.998 52.4037C194.983 52.4291 194.962 52.4545 194.937 52.4799C194.911 52.5003 194.881 52.518 194.845 52.5333C194.718 52.6044 194.584 52.6298 194.441 52.6095C194.37 52.5892 194.307 52.5562 194.251 52.5104C194.241 52.5003 194.233 52.4952 194.228 52.4952C194.223 52.4901 194.218 52.4825 194.213 52.4723C194.208 52.4672 194.203 52.4621 194.198 52.4571C194.192 52.4469 194.185 52.4393 194.175 52.4342C194.149 52.4088 194.129 52.3859 194.114 52.3656C194.098 52.3402 194.083 52.3148 194.068 52.2894C194.058 52.264 194.045 52.2411 194.03 52.2208C194.02 52.1954 194.007 52.17 193.992 52.1446C193.982 52.1242 193.971 52.1064 193.961 52.0912C193.951 52.0709 193.943 52.0505 193.938 52.0302C193.918 51.9845 193.905 51.9438 193.9 51.9083L193.74 51.5348C193.39 51.5348 193.039 51.5373 192.688 51.5424C192.343 51.5424 191.995 51.5398 191.644 51.5348L191.484 51.9083C191.474 51.9286 191.466 51.9489 191.461 51.9692C191.461 51.9896 191.456 52.0099 191.446 52.0302C191.436 52.0505 191.426 52.0709 191.415 52.0912C191.41 52.1064 191.403 52.1242 191.393 52.1446C191.377 52.17 191.362 52.1954 191.347 52.2208C191.337 52.2411 191.324 52.264 191.309 52.2894C191.299 52.3148 191.286 52.3402 191.271 52.3656C191.255 52.3859 191.235 52.4088 191.21 52.4342C191.199 52.4393 191.192 52.4469 191.187 52.4571C191.182 52.4621 191.177 52.4672 191.171 52.4723C191.166 52.4825 191.161 52.4901 191.156 52.4952C191.151 52.4952 191.144 52.5003 191.133 52.5104C191.077 52.5562 191.014 52.5892 190.943 52.6095C190.801 52.6298 190.666 52.6044 190.539 52.5333C190.503 52.518 190.473 52.5003 190.447 52.4799C190.422 52.4545 190.402 52.4291 190.386 52.4037C190.351 52.3529 190.333 52.297 190.333 52.236C190.333 52.2004 190.333 52.17 190.333 52.1446C190.338 52.1141 190.343 52.0836 190.348 52.0531C190.358 52.0073 190.371 51.9616 190.386 51.9159C190.402 51.8701 190.409 51.8473 190.409 51.8473L191.995 47.9447L192.04 47.8227C192.051 47.7922 192.063 47.7643 192.079 47.7389C192.094 47.7134 192.106 47.683 192.117 47.6474C192.142 47.5813 192.17 47.5229 192.2 47.4721C192.216 47.4416 192.234 47.4136 192.254 47.3882C192.274 47.3628 192.294 47.3374 192.315 47.312C192.345 47.2714 192.388 47.2383 192.444 47.2129C192.516 47.1875 192.597 47.1748 192.688 47.1748C192.785 47.1748 192.869 47.1875 192.94 47.2129C192.996 47.2383 193.039 47.2714 193.069 47.312C193.105 47.3577 193.143 47.4111 193.184 47.4721C193.214 47.5229 193.242 47.5813 193.268 47.6474C193.278 47.683 193.29 47.7134 193.306 47.7389C193.321 47.7643 193.334 47.7922 193.344 47.8227L193.39 47.9447L194.975 51.8473C194.975 51.8473 194.983 51.8701 194.998 51.9159C195.013 51.9616 195.026 52.0073 195.036 52.0531ZM193.229 50.1856C193.163 50.0383 193.095 49.8858 193.024 49.7283C192.958 49.5708 192.886 49.4107 192.81 49.2481C192.79 49.2023 192.77 49.1566 192.749 49.1109C192.729 49.0601 192.709 49.0118 192.688 48.966C192.673 49.0118 192.655 49.0601 192.635 49.1109C192.615 49.1566 192.594 49.2023 192.574 49.2481C192.498 49.4107 192.424 49.5708 192.353 49.7283C192.287 49.8858 192.221 50.0383 192.155 50.1856L192.018 50.521H193.367L193.229 50.1856Z" fill="white"/>
|
||||
<path d="M189.027 52.0226C189.022 52.0836 189.014 52.1471 189.004 52.2132C188.994 52.2792 188.976 52.3402 188.951 52.3961C188.925 52.4571 188.892 52.5028 188.851 52.5333C188.796 52.5841 188.729 52.6121 188.653 52.6172C188.582 52.6426 188.514 52.6502 188.447 52.64C188.381 52.6299 188.32 52.6121 188.265 52.5867C188.193 52.5409 188.14 52.4876 188.104 52.4266C188.074 52.3605 188.051 52.2919 188.036 52.2208C188.021 52.1497 188.013 52.076 188.013 51.9998C188.013 51.9235 188.013 51.8524 188.013 51.7863V51.1918L188.005 50.0256C188.005 49.9443 188.005 49.8808 188.005 49.835C188.005 49.7893 188.005 49.7486 188.005 49.7131C188.005 49.6724 188.003 49.6292 187.998 49.5835C187.998 49.5327 187.998 49.4615 187.998 49.3701C187.998 49.3548 187.998 49.3294 187.998 49.2938C188.003 49.2532 188 49.149 187.99 48.9813C187.792 49.3116 187.627 49.5784 187.495 49.7817C187.368 49.9798 187.258 50.1348 187.167 50.2466C187.081 50.3533 187.004 50.427 186.938 50.4677C186.872 50.5032 186.804 50.5236 186.732 50.5286C186.692 50.5337 186.651 50.5261 186.61 50.5058C186.57 50.4855 186.529 50.46 186.489 50.4296C186.453 50.3991 186.417 50.3686 186.382 50.3381C186.351 50.3025 186.326 50.2695 186.306 50.239C186.184 50.0866 186.046 49.9036 185.894 49.6902C185.742 49.4768 185.584 49.2176 185.421 48.9127C185.421 48.9178 185.419 49.0016 185.414 49.1643C185.414 49.3269 185.414 49.5301 185.414 49.774C185.414 50.0129 185.411 50.272 185.406 50.5515C185.406 50.8259 185.404 51.0825 185.399 51.3214C185.399 51.5602 185.396 51.7609 185.391 51.9235C185.386 52.0811 185.381 52.1598 185.376 52.1598C185.376 52.2462 185.355 52.3275 185.315 52.4037C185.274 52.4749 185.218 52.5333 185.147 52.579C185.081 52.6248 185.002 52.6502 184.911 52.6553C184.819 52.6604 184.72 52.6349 184.613 52.579C184.547 52.5384 184.497 52.48 184.461 52.4037C184.43 52.3275 184.41 52.2564 184.4 52.1903C184.395 52.1192 184.39 52.0506 184.385 51.9845C184.385 51.9184 184.385 51.8498 184.385 51.7787L184.392 51.1842L184.4 50.0103V48.9889C184.4 48.5468 184.415 48.1124 184.446 47.6855C184.446 47.6296 184.451 47.5788 184.461 47.5331C184.476 47.4823 184.494 47.434 184.514 47.3883C184.555 47.307 184.608 47.246 184.674 47.2053C184.751 47.1596 184.832 47.1367 184.918 47.1367C184.954 47.1367 184.987 47.1393 185.017 47.1443C185.053 47.1443 185.086 47.1469 185.117 47.152C185.218 47.1723 185.305 47.2333 185.376 47.3349C185.452 47.4314 185.523 47.5153 185.589 47.5864C185.63 47.6322 185.673 47.6881 185.719 47.7541C185.764 47.8202 185.81 47.8888 185.856 47.9599C185.902 48.0311 185.945 48.0997 185.985 48.1657C186.026 48.2318 186.062 48.2902 186.092 48.341C186.224 48.5545 186.341 48.7501 186.443 48.928C186.55 49.1058 186.649 49.2583 186.74 49.3853C186.755 49.3701 186.773 49.3497 186.793 49.3243C186.814 49.2938 186.834 49.2633 186.854 49.2329C186.88 49.1973 186.9 49.1643 186.915 49.1338C186.936 49.1033 186.951 49.0779 186.961 49.0575C187.012 48.9762 187.063 48.8975 187.114 48.8212C187.164 48.7399 187.218 48.6561 187.274 48.5697C187.335 48.4782 187.396 48.3792 187.457 48.2724C187.523 48.1657 187.599 48.0438 187.685 47.9066C187.721 47.8456 187.767 47.7719 187.822 47.6855C187.878 47.5991 187.942 47.5153 188.013 47.434C188.084 47.3527 188.158 47.2841 188.234 47.2282C188.315 47.1672 188.397 47.1367 188.478 47.1367C188.519 47.1367 188.554 47.1393 188.585 47.1443C188.615 47.1443 188.646 47.1469 188.676 47.152C188.737 47.157 188.796 47.185 188.851 47.2358C188.892 47.2765 188.923 47.3197 188.943 47.3654C188.963 47.4314 188.976 47.4873 188.981 47.5331C188.986 47.5687 188.989 47.6017 188.989 47.6322C188.994 47.6627 188.996 47.6931 188.996 47.7236C188.996 48.0082 188.999 48.2902 189.004 48.5697C189.009 48.8492 189.012 49.1312 189.012 49.4158C189.012 49.7613 189.012 50.117 189.012 50.4829C189.017 50.8488 189.019 51.2045 189.019 51.55C189.019 51.6212 189.022 51.6974 189.027 51.7787C189.032 51.86 189.032 51.9413 189.027 52.0226Z" fill="white"/>
|
||||
<line x1="78" y1="75.5" x2="210" y2="75.5" stroke="url(#paint0_linear_1671_7646)" stroke-dasharray="2 2"/>
|
||||
<circle cx="77.5" cy="75.5" r="3.5" fill="#6ED904"/>
|
||||
<circle cx="213.5" cy="75.5" r="3.5" fill="#FC2CDB"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_1671_7646" x1="78" y1="76" x2="210" y2="76" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#31FF2D"/>
|
||||
<stop offset="1" stop-color="#E11690"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 38 KiB |
184
newIDE/app/public/res/questionnaire/delay-1-year.svg
Normal file
@@ -0,0 +1,184 @@
|
||||
<svg width="292" height="103" viewBox="0 0 292 103" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="292" height="102.768" fill="#1D1D26"/>
|
||||
<path d="M68.7059 45.0002H47.2941C45.4748 45.0002 44 43.5253 44 41.706V38.9609H72V41.706C72 43.5253 70.5252 45.0002 68.7059 45.0002Z" fill="#D3DCFB"/>
|
||||
<path d="M47.2937 43.9021C46.0828 43.9021 45.0977 42.917 45.0977 41.706V38.9609H70.9016V41.706C70.9016 42.917 69.9164 43.9021 68.7055 43.9021H47.2937Z" fill="#6A0DB4"/>
|
||||
<path d="M68.7059 19.1963H47.2941C45.4777 19.1963 44 20.674 44 22.4904V39.51C44 41.3264 45.4777 42.8041 47.2941 42.8041H68.7059C70.5223 42.8041 72 41.3264 72 39.51C72 39.1272 72 22.9838 72 22.4904C72 20.674 70.5223 19.1963 68.7059 19.1963Z" fill="#EBF5FC"/>
|
||||
<path d="M47.2937 41.706C46.0809 41.706 45.0977 40.7228 45.0977 39.5099V34.5687C45.0977 33.9623 45.5892 33.4707 46.1957 33.4707H69.8035C70.41 33.4707 70.9016 33.9623 70.9016 34.5687V39.5099C70.9016 40.7228 69.9183 41.706 68.7055 41.706H47.2937Z" fill="#A12BFF"/>
|
||||
<path d="M50.0394 22.49C50.6459 22.49 51.1375 21.9984 51.1375 21.392C51.1375 20.7856 50.6459 20.2939 50.0394 20.2939C49.433 20.2939 48.9414 20.7856 48.9414 21.392C48.9414 21.9984 49.433 22.49 50.0394 22.49Z" fill="#AAB9E5"/>
|
||||
<path d="M50.0384 21.9412C49.5836 21.9412 49.2148 21.5725 49.2148 21.1176V17.8235C49.2148 17.3687 49.5836 17 50.0384 17C50.4932 17 50.8619 17.3687 50.8619 17.8235V21.1176C50.8619 21.5725 50.4932 21.9412 50.0384 21.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M65.9613 22.49C66.5678 22.49 67.0594 21.9984 67.0594 21.392C67.0594 20.7856 66.5678 20.2939 65.9613 20.2939C65.3549 20.2939 64.8633 20.7856 64.8633 21.392C64.8633 21.9984 65.3549 22.49 65.9613 22.49Z" fill="#AAB9E5"/>
|
||||
<path d="M65.9602 21.9412C65.5054 21.9412 65.1367 21.5725 65.1367 21.1176V17.8235C65.1367 17.3687 65.5054 17 65.9602 17C66.4151 17 66.7838 17.3687 66.7838 17.8235V21.1176C66.7838 21.5725 66.4151 21.9412 65.9602 21.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M58.0004 22.49C58.6068 22.49 59.0984 21.9984 59.0984 21.392C59.0984 20.7856 58.6068 20.2939 58.0004 20.2939C57.394 20.2939 56.9023 20.7856 56.9023 21.392C56.9023 21.9984 57.394 22.49 58.0004 22.49Z" fill="#AAB9E5"/>
|
||||
<path d="M57.9993 21.9412C57.5445 21.9412 57.1758 21.5725 57.1758 21.1176V17.8235C57.1758 17.3687 57.5445 17 57.9993 17C58.4541 17 58.8228 17.3687 58.8228 17.8235V21.1176C58.8228 21.5725 58.4541 21.9412 57.9993 21.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M60.1961 31.275C61.407 31.275 62.3922 30.2898 62.3922 29.0789V26.3338C62.3922 25.1229 61.407 24.1377 60.1961 24.1377C58.9852 24.1377 58 25.1229 58 26.3338V29.0789C58 30.2898 58.9852 31.275 60.1961 31.275ZM59.098 26.3338C59.098 25.7283 59.5906 25.2357 60.1961 25.2357C60.8015 25.2357 61.2941 25.7283 61.2941 26.3338V29.0789C61.2941 29.6843 60.8015 30.1769 60.1961 30.1769C59.5906 30.1769 59.098 29.6843 59.098 29.0789V26.3338Z" fill="#252A3F"/>
|
||||
<path d="M54.4859 26.7727L55.8035 25.7845V30.7256C55.8035 31.0288 56.0494 31.2747 56.3525 31.2747C56.6557 31.2747 56.9016 31.0288 56.9016 30.7256V24.6864C56.9016 24.2351 56.3848 23.9761 56.0231 24.2472L53.827 25.8943C53.5845 26.0762 53.5353 26.4203 53.7172 26.6629C53.8992 26.9054 54.2433 26.9546 54.4859 26.7727Z" fill="#252A3F"/>
|
||||
<path d="M63.5793 38.6026C63.5757 38.6649 63.5665 38.7308 63.5519 38.8003C63.5409 38.8698 63.5061 38.9266 63.4476 38.9705C63.4036 39.0071 63.3542 39.0291 63.2993 39.0364C63.2444 39.0437 63.1895 39.04 63.1346 39.0254C63.0834 39.0144 63.034 38.9961 62.9864 38.9705C62.9388 38.9412 62.9004 38.9064 62.8711 38.8662C62.7466 38.7125 62.6313 38.5551 62.5252 38.394C62.4227 38.2293 62.3184 38.0646 62.2123 37.8999L61.7511 37.2026C61.6889 37.1038 61.623 36.994 61.5534 36.8732C61.4839 36.7488 61.4125 36.6335 61.3393 36.5274L61.3228 38.6246V38.674C61.3228 38.7326 61.3119 38.7911 61.2899 38.8497C61.2716 38.9046 61.2387 38.9522 61.1911 38.9925C61.1545 39.0217 61.1069 39.0419 61.0483 39.0528C60.9568 39.0711 60.88 39.0657 60.8178 39.0364C60.7592 39.0071 60.7116 38.9668 60.675 38.9156C60.6421 38.8643 60.6183 38.8058 60.6036 38.7399C60.5927 38.6704 60.5908 38.6026 60.5981 38.5368V38.4434L60.6091 38.0152L60.6146 37.2191C60.6183 37.102 60.6201 36.983 60.6201 36.8623C60.6201 36.7378 60.6201 36.6115 60.6201 36.4834C60.6164 36.326 60.6164 36.1595 60.6201 35.9838C60.6274 35.8081 60.6347 35.6434 60.6421 35.4897C60.6494 35.4055 60.6695 35.3341 60.7025 35.2756C60.7171 35.2243 60.7555 35.1804 60.8178 35.1438C60.858 35.1182 60.9093 35.1017 60.9715 35.0944C61.0374 35.0871 61.0941 35.0889 61.1417 35.0999C61.16 35.1072 61.1783 35.1164 61.1966 35.1274C61.2149 35.1347 61.2332 35.1438 61.2515 35.1548C61.2698 35.1694 61.2862 35.1841 61.3009 35.1987C61.3192 35.2134 61.3357 35.2298 61.3503 35.2481C61.3686 35.2664 61.3851 35.2866 61.3997 35.3085C61.4144 35.3268 61.429 35.3451 61.4436 35.3634C61.4546 35.3854 61.4656 35.4055 61.4766 35.4238C61.4876 35.4421 61.5004 35.4604 61.515 35.4787L61.5754 35.5666L62.8436 37.565V37.2026C62.8436 37.0855 62.8418 36.9666 62.8381 36.8458C62.8381 36.7213 62.8363 36.5932 62.8327 36.4615C62.8327 36.3077 62.8327 36.143 62.8327 35.9674C62.8363 35.7917 62.8418 35.627 62.8491 35.4732C62.8491 35.411 62.8674 35.3396 62.904 35.2591C62.9223 35.2115 62.9534 35.1731 62.9974 35.1438C63.0413 35.1145 63.0907 35.0944 63.1456 35.0834C63.2005 35.0725 63.2554 35.0725 63.3103 35.0834C63.3652 35.0944 63.4128 35.1164 63.453 35.1493C63.464 35.1603 63.475 35.1731 63.486 35.1877C63.497 35.2024 63.5061 35.2189 63.5134 35.2372C63.5317 35.2847 63.5427 35.3268 63.5464 35.3634C63.5574 35.4147 63.5628 35.4604 63.5628 35.5007C63.5628 35.9582 63.5628 36.4249 63.5628 36.9007C63.5665 37.3765 63.5702 37.8432 63.5738 38.3007C63.5738 38.3519 63.5757 38.4032 63.5793 38.4544C63.583 38.502 63.583 38.5514 63.5793 38.6026Z" fill="white"/>
|
||||
<path d="M59.6453 38.6465C59.6489 38.6685 59.6508 38.6905 59.6508 38.7124C59.6544 38.7307 59.6562 38.7527 59.6562 38.7783C59.6562 38.8222 59.6434 38.8625 59.6178 38.8991C59.6068 38.9174 59.5922 38.9357 59.5739 38.954C59.5556 38.9686 59.5336 38.9814 59.508 38.9924C59.4165 39.0437 59.3195 39.062 59.217 39.0473C59.1658 39.0327 59.12 39.0089 59.0798 38.976C59.0725 38.9686 59.067 38.965 59.0633 38.965C59.0596 38.9613 59.056 38.9558 59.0523 38.9485C59.0487 38.9448 59.045 38.9412 59.0413 38.9375C59.0377 38.9302 59.0322 38.9247 59.0249 38.921C59.0066 38.9027 58.9919 38.8863 58.9809 38.8716C58.97 38.8533 58.959 38.835 58.948 38.8167C58.9407 38.7984 58.9315 38.782 58.9206 38.7673C58.9132 38.749 58.9041 38.7307 58.8931 38.7124C58.8858 38.6978 58.8785 38.685 58.8711 38.674C58.8638 38.6593 58.8583 38.6447 58.8547 38.6301C58.84 38.5971 58.8309 38.5678 58.8272 38.5422L58.7119 38.2732C58.4594 38.2732 58.2068 38.275 57.9543 38.2787C57.7054 38.2787 57.4547 38.2769 57.2021 38.2732L57.0868 38.5422C57.0795 38.5569 57.074 38.5715 57.0704 38.5861C57.0704 38.6008 57.0667 38.6154 57.0594 38.6301C57.0521 38.6447 57.0447 38.6593 57.0374 38.674C57.0338 38.685 57.0283 38.6978 57.0209 38.7124C57.01 38.7307 56.999 38.749 56.988 38.7673C56.9807 38.782 56.9715 38.7984 56.9606 38.8167C56.9532 38.835 56.9441 38.8533 56.9331 38.8716C56.9221 38.8863 56.9075 38.9027 56.8892 38.921C56.8819 38.9247 56.8764 38.9302 56.8727 38.9375C56.8691 38.9412 56.8654 38.9448 56.8617 38.9485C56.8581 38.9558 56.8544 38.9613 56.8508 38.965C56.8471 38.965 56.8416 38.9686 56.8343 38.976C56.794 39.0089 56.7483 39.0327 56.697 39.0473C56.5945 39.062 56.4976 39.0437 56.406 38.9924C56.3804 38.9814 56.3585 38.9686 56.3402 38.954C56.3219 38.9357 56.3072 38.9174 56.2962 38.8991C56.2706 38.8625 56.2578 38.8222 56.2578 38.7783C56.2578 38.7527 56.2578 38.7307 56.2578 38.7124C56.2615 38.6905 56.2651 38.6685 56.2688 38.6465C56.2761 38.6136 56.2853 38.5807 56.2962 38.5477C56.3072 38.5148 56.3127 38.4983 56.3127 38.4983L57.4547 35.6873L57.4876 35.5995C57.4949 35.5775 57.5041 35.5574 57.5151 35.5391C57.526 35.5208 57.5352 35.4988 57.5425 35.4732C57.5608 35.4256 57.5809 35.3835 57.6029 35.3469C57.6139 35.325 57.6267 35.3048 57.6413 35.2865C57.656 35.2682 57.6706 35.2499 57.6853 35.2316C57.7072 35.2024 57.7383 35.1786 57.7786 35.1603C57.8298 35.142 57.8884 35.1328 57.9543 35.1328C58.0238 35.1328 58.0842 35.142 58.1355 35.1603C58.1757 35.1786 58.2068 35.2024 58.2288 35.2316C58.2544 35.2646 58.2819 35.303 58.3111 35.3469C58.3331 35.3835 58.3532 35.4256 58.3715 35.4732C58.3789 35.4988 58.388 35.5208 58.399 35.5391C58.41 35.5574 58.4191 35.5775 58.4264 35.5995L58.4594 35.6873L59.6013 38.4983C59.6013 38.4983 59.6068 38.5148 59.6178 38.5477C59.6288 38.5807 59.6379 38.6136 59.6453 38.6465ZM58.3441 37.3014C58.2965 37.1953 58.2471 37.0855 58.1959 36.972C58.1483 36.8586 58.097 36.7433 58.0421 36.6261C58.0275 36.5932 58.0128 36.5603 57.9982 36.5273C57.9836 36.4907 57.9689 36.4559 57.9543 36.423C57.9433 36.4559 57.9305 36.4907 57.9159 36.5273C57.9012 36.5603 57.8866 36.5932 57.8719 36.6261C57.817 36.7433 57.764 36.8586 57.7127 36.972C57.6651 37.0855 57.6176 37.1953 57.57 37.3014L57.4711 37.543H58.4429L58.3441 37.3014Z" fill="white"/>
|
||||
<path d="M55.8448 35.2699C55.8814 35.3175 55.8997 35.3651 55.8997 35.4127C55.9033 35.4346 55.9033 35.4621 55.8997 35.495C55.8997 35.528 55.8978 35.5536 55.8942 35.5719C55.8832 35.6085 55.8576 35.6451 55.8173 35.6817C55.8063 35.6927 55.7935 35.7037 55.7789 35.7146C55.7642 35.722 55.7459 35.7293 55.724 35.7366C55.702 35.7439 55.68 35.7494 55.6581 35.7531C55.6361 35.7531 55.6123 35.7549 55.5867 35.7586C55.5611 35.7622 55.5373 35.7659 55.5153 35.7695C55.4934 35.7695 55.4696 35.7695 55.444 35.7695H55.131V35.8629C55.1274 36.1923 55.1329 36.5217 55.1475 36.8511C55.1658 37.1805 55.164 37.5099 55.142 37.8393C55.131 37.9492 55.1146 38.0626 55.0926 38.1797C55.0706 38.2932 55.034 38.4012 54.9828 38.5037C54.9352 38.6025 54.8712 38.694 54.7906 38.7782C54.7101 38.8624 54.6076 38.9282 54.4832 38.9758C54.3661 39.0197 54.238 39.0509 54.0989 39.0692C53.9598 39.0875 53.8189 39.0893 53.6761 39.0746C53.537 39.06 53.4034 39.0289 53.2753 38.9813C53.1472 38.9337 53.0393 38.8678 52.9514 38.7837C52.9038 38.7397 52.8599 38.6867 52.8197 38.6244C52.7794 38.5586 52.7519 38.4909 52.7373 38.4213C52.7227 38.3481 52.7263 38.2786 52.7483 38.2127C52.7702 38.1431 52.8215 38.0864 52.902 38.0425C52.9715 38.0022 53.0338 37.9931 53.0887 38.015C53.1472 38.037 53.2021 38.0718 53.2534 38.1193C53.3083 38.1669 53.3632 38.2163 53.4181 38.2676C53.4766 38.3188 53.5407 38.3518 53.6102 38.3664C53.7603 38.403 53.8829 38.4048 53.9781 38.3719C54.0732 38.3353 54.1483 38.2786 54.2032 38.2017C54.2581 38.1248 54.2965 38.0315 54.3185 37.9217C54.3441 37.8119 54.3587 37.7003 54.3624 37.5868C54.3697 37.4733 54.3715 37.3635 54.3679 37.2574C54.3642 37.1512 54.3642 37.0616 54.3679 36.9884C54.3715 36.7944 54.3715 36.6041 54.3679 36.4174C54.3642 36.2307 54.3624 36.0404 54.3624 35.8464V35.8244C54.3661 35.8171 54.3679 35.8061 54.3679 35.7915H54.3514C54.3295 35.7878 54.2837 35.786 54.2142 35.786C54.1446 35.7824 54.0696 35.7805 53.9891 35.7805C53.9085 35.7805 53.8317 35.7805 53.7585 35.7805C53.6889 35.7769 53.6432 35.775 53.6212 35.775H53.5444V35.7695C53.5151 35.7659 53.4858 35.7604 53.4565 35.7531C53.4272 35.7458 53.398 35.7384 53.3687 35.7311C53.2991 35.7092 53.2461 35.6744 53.2095 35.6268C53.1912 35.6085 53.1765 35.5792 53.1655 35.539C53.1582 35.4987 53.1546 35.4639 53.1546 35.4346C53.1546 35.4163 53.1546 35.3962 53.1546 35.3743C53.1546 35.3523 53.1582 35.3322 53.1655 35.3139C53.1729 35.2736 53.1985 35.237 53.2424 35.2041C53.2717 35.1821 53.3065 35.1656 53.3467 35.1546C53.3723 35.1473 53.398 35.1418 53.4236 35.1382C53.4492 35.1345 53.4766 35.1309 53.5059 35.1272C53.5315 35.1235 53.5572 35.1217 53.5828 35.1217C53.6084 35.1217 53.6359 35.1217 53.6651 35.1217H54.1922C54.2142 35.1217 54.2398 35.1217 54.2691 35.1217C54.2983 35.1217 54.3313 35.1199 54.3679 35.1162C54.5106 35.1162 54.6515 35.1162 54.7906 35.1162C54.9297 35.1162 55.0651 35.118 55.1969 35.1217H55.2298C55.2701 35.1217 55.3085 35.1235 55.3451 35.1272C55.3854 35.1272 55.4257 35.1272 55.4659 35.1272C55.5501 35.1309 55.6288 35.1473 55.702 35.1766C55.7606 35.1912 55.8081 35.2224 55.8448 35.2699Z" fill="white"/>
|
||||
<path d="M68.7059 80.0002H47.2941C45.4748 80.0002 44 78.5253 44 76.706V73.9609H72V76.706C72 78.5253 70.5252 80.0002 68.7059 80.0002Z" fill="#D3DCFB"/>
|
||||
<path d="M47.2937 78.9021C46.0828 78.9021 45.0977 77.917 45.0977 76.706V73.9609H70.9016V76.706C70.9016 77.917 69.9164 78.9021 68.7055 78.9021H47.2937Z" fill="#6A0DB4"/>
|
||||
<path d="M68.7059 54.1963H47.2941C45.4777 54.1963 44 55.674 44 57.4904V74.51C44 76.3264 45.4777 77.8041 47.2941 77.8041H68.7059C70.5223 77.8041 72 76.3264 72 74.51C72 74.1272 72 57.9838 72 57.4904C72 55.674 70.5223 54.1963 68.7059 54.1963Z" fill="#EBF5FC"/>
|
||||
<path d="M47.2937 76.706C46.0809 76.706 45.0977 75.7228 45.0977 74.5099V69.5687C45.0977 68.9623 45.5892 68.4707 46.1957 68.4707H69.8035C70.41 68.4707 70.9016 68.9623 70.9016 69.5687V74.5099C70.9016 75.7228 69.9183 76.706 68.7055 76.706H47.2937Z" fill="#A12BFF"/>
|
||||
<path d="M50.0394 57.49C50.6459 57.49 51.1375 56.9984 51.1375 56.392C51.1375 55.7856 50.6459 55.2939 50.0394 55.2939C49.433 55.2939 48.9414 55.7856 48.9414 56.392C48.9414 56.9984 49.433 57.49 50.0394 57.49Z" fill="#AAB9E5"/>
|
||||
<path d="M50.0384 56.9412C49.5836 56.9412 49.2148 56.5725 49.2148 56.1176V52.8235C49.2148 52.3687 49.5836 52 50.0384 52C50.4932 52 50.8619 52.3687 50.8619 52.8235V56.1176C50.8619 56.5725 50.4932 56.9412 50.0384 56.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M65.9613 57.49C66.5678 57.49 67.0594 56.9984 67.0594 56.392C67.0594 55.7856 66.5678 55.2939 65.9613 55.2939C65.3549 55.2939 64.8633 55.7856 64.8633 56.392C64.8633 56.9984 65.3549 57.49 65.9613 57.49Z" fill="#AAB9E5"/>
|
||||
<path d="M65.9602 56.9412C65.5054 56.9412 65.1367 56.5725 65.1367 56.1176V52.8235C65.1367 52.3687 65.5054 52 65.9602 52C66.4151 52 66.7838 52.3687 66.7838 52.8235V56.1176C66.7838 56.5725 66.4151 56.9412 65.9602 56.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M58.0004 57.49C58.6068 57.49 59.0984 56.9984 59.0984 56.392C59.0984 55.7856 58.6068 55.2939 58.0004 55.2939C57.394 55.2939 56.9023 55.7856 56.9023 56.392C56.9023 56.9984 57.394 57.49 58.0004 57.49Z" fill="#AAB9E5"/>
|
||||
<path d="M57.9993 56.9412C57.5445 56.9412 57.1758 56.5725 57.1758 56.1176V52.8235C57.1758 52.3687 57.5445 52 57.9993 52C58.4541 52 58.8228 52.3687 58.8228 52.8235V56.1176C58.8228 56.5725 58.4541 56.9412 57.9993 56.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M60.1961 66.275C61.407 66.275 62.3922 65.2898 62.3922 64.0789V61.3338C62.3922 60.1229 61.407 59.1377 60.1961 59.1377C58.9852 59.1377 58 60.1229 58 61.3338V64.0789C58 65.2898 58.9852 66.275 60.1961 66.275ZM59.098 61.3338C59.098 60.7283 59.5906 60.2357 60.1961 60.2357C60.8015 60.2357 61.2941 60.7283 61.2941 61.3338V64.0789C61.2941 64.6843 60.8015 65.1769 60.1961 65.1769C59.5906 65.1769 59.098 64.6843 59.098 64.0789V61.3338Z" fill="#252A3F"/>
|
||||
<path d="M54.4859 61.7727L55.8035 60.7845V65.7256C55.8035 66.0288 56.0494 66.2747 56.3525 66.2747C56.6557 66.2747 56.9016 66.0288 56.9016 65.7256V59.6864C56.9016 59.2351 56.3848 58.9761 56.0231 59.2472L53.827 60.8943C53.5845 61.0762 53.5353 61.4203 53.7172 61.6629C53.8992 61.9054 54.2433 61.9546 54.4859 61.7727Z" fill="#252A3F"/>
|
||||
<path d="M63.9985 73.6018C64.0058 73.6201 64.0095 73.6475 64.0095 73.6841C64.0095 73.7171 64.0095 73.7445 64.0095 73.7665C64.0095 73.7958 64.004 73.8232 63.993 73.8488C63.982 73.8745 63.9674 73.8982 63.9491 73.9202C63.9162 73.9641 63.8686 73.9971 63.8063 74.019C63.7185 74.0483 63.6362 74.0629 63.5593 74.0629C63.519 74.0666 63.4769 74.0684 63.433 74.0684C63.3891 74.0684 63.3452 74.0721 63.3013 74.0794H63.2793C62.9975 74.0831 62.7065 74.0831 62.4063 74.0794C62.3331 74.0758 62.2508 74.0758 62.1593 74.0794C62.0678 74.0867 61.9781 74.0849 61.8903 74.0739C61.8024 74.0666 61.7219 74.0465 61.6487 74.0135C61.5792 73.9769 61.5297 73.9202 61.5005 73.8433C61.4931 73.825 61.4877 73.8086 61.484 73.7939C61.4803 73.7756 61.4785 73.7573 61.4785 73.739C61.4639 73.6146 61.4584 73.492 61.462 73.3712C61.4657 73.2504 61.4675 73.1314 61.4675 73.0143L61.4785 72.2182V71.4826C61.4785 71.3508 61.4785 71.2337 61.4785 71.1312C61.4822 71.0287 61.4858 70.9152 61.4895 70.7908V70.7633C61.4931 70.7267 61.495 70.6901 61.495 70.6535C61.4986 70.6169 61.5005 70.5803 61.5005 70.5437C61.5078 70.4595 61.5279 70.3882 61.5609 70.3296C61.5828 70.2747 61.6213 70.2308 61.6762 70.1978C61.7237 70.1649 61.7805 70.1484 61.8463 70.1484C61.872 70.1484 61.8958 70.1503 61.9177 70.1539C61.9433 70.1539 61.9671 70.1558 61.9891 70.1594C62.0111 70.1631 62.0312 70.1704 62.0495 70.1814C62.0714 70.1924 62.0934 70.207 62.1154 70.2253C62.1373 70.2509 62.1575 70.282 62.1758 70.3186C62.1904 70.3589 62.1996 70.3992 62.2032 70.4394C62.2069 70.465 62.2105 70.4888 62.2142 70.5108C62.2179 70.5328 62.2197 70.5547 62.2197 70.5767C62.2124 70.5986 62.2087 70.6206 62.2087 70.6426C62.2087 70.6645 62.2087 70.6846 62.2087 70.7029V70.8018L62.1867 73.3877L63.2738 73.3986H63.5318C63.5538 73.3986 63.5776 73.4005 63.6032 73.4041C63.6288 73.4041 63.6545 73.406 63.6801 73.4096C63.7094 73.4133 63.735 73.4169 63.7569 73.4206C63.7789 73.4243 63.8009 73.4297 63.8228 73.4371C63.8631 73.448 63.896 73.4663 63.9216 73.492C63.9619 73.5286 63.9875 73.5652 63.9985 73.6018Z" fill="white"/>
|
||||
<path d="M60.3805 70.4341C60.4024 70.6098 60.4152 70.8148 60.4189 71.049C60.4226 71.2796 60.4189 71.5139 60.4079 71.7518C60.4006 71.986 60.3841 72.2093 60.3585 72.4216C60.3329 72.6302 60.3018 72.7986 60.2652 72.9267C60.2395 73.0036 60.2084 73.0841 60.1718 73.1683C60.1389 73.2488 60.1023 73.322 60.062 73.3879C60.0035 73.4867 59.9321 73.5745 59.8479 73.6514C59.7637 73.7246 59.6704 73.7887 59.5679 73.8436C59.4691 73.8948 59.3629 73.9351 59.2495 73.9643C59.1397 73.9936 59.0299 74.0101 58.9201 74.0138C58.7261 74.0211 58.5412 73.9936 58.3656 73.9314C58.1935 73.8655 58.0343 73.763 57.8879 73.6239C57.7781 73.5178 57.6903 73.4043 57.6244 73.2836C57.5585 73.1628 57.5073 73.0365 57.4707 72.9047C57.4341 72.7693 57.4103 72.6302 57.3993 72.4875C57.392 72.3447 57.3883 72.1983 57.3883 72.0483C57.3883 71.9787 57.3865 71.8927 57.3828 71.7902C57.3828 71.6841 57.3828 71.5761 57.3828 71.4663C57.3828 71.3528 57.3828 71.243 57.3828 71.1369C57.3828 71.0307 57.3846 70.9411 57.3883 70.8679C57.3883 70.8203 57.3883 70.769 57.3883 70.7141C57.3883 70.6556 57.3901 70.5988 57.3938 70.5439C57.4011 70.4854 57.4121 70.4305 57.4267 70.3792C57.4414 70.3243 57.4633 70.2749 57.4926 70.231C57.5256 70.1834 57.5713 70.1487 57.6299 70.1267C57.6884 70.1047 57.7488 70.0938 57.811 70.0938C57.8769 70.0938 57.9392 70.1066 57.9977 70.1322C58.0563 70.1578 58.1039 70.1944 58.1405 70.242C58.1588 70.2713 58.1716 70.3005 58.1789 70.3298C58.1862 70.3591 58.1917 70.3921 58.1954 70.4287C58.2027 70.5494 58.2063 70.6867 58.2063 70.8404C58.21 70.9941 58.21 71.1442 58.2063 71.2906C58.2063 71.4334 58.2045 71.5651 58.2009 71.6859C58.1972 71.8067 58.1954 71.8964 58.1954 71.9549C58.1954 72.1745 58.2063 72.374 58.2283 72.5534C58.2503 72.729 58.3015 72.8754 58.382 72.9926C58.4552 73.0987 58.5412 73.1664 58.6401 73.1957C58.7389 73.225 58.8377 73.2341 58.9365 73.2232C59.028 73.2122 59.1195 73.1792 59.211 73.1243C59.3062 73.0658 59.3812 72.9816 59.4361 72.8718C59.4581 72.8315 59.4764 72.7858 59.491 72.7345C59.5057 72.6833 59.5167 72.6357 59.524 72.5918C59.5386 72.4527 59.5514 72.2917 59.5624 72.1087C59.5734 71.922 59.5826 71.7317 59.5899 71.5377C59.5972 71.3437 59.6009 71.1534 59.6009 70.9667C59.6009 70.78 59.599 70.6117 59.5954 70.4616C59.6027 70.3957 59.6228 70.3353 59.6558 70.2804C59.685 70.2328 59.7271 70.1907 59.782 70.1541C59.8369 70.1175 59.912 70.0992 60.0071 70.0992C60.084 70.1029 60.1462 70.123 60.1938 70.1596C60.2414 70.1926 60.2798 70.2292 60.3091 70.2694C60.342 70.317 60.3658 70.3719 60.3805 70.4341Z" fill="white"/>
|
||||
<path d="M56.4209 70.269C56.4575 70.3165 56.4758 70.3641 56.4758 70.4117C56.4795 70.4337 56.4795 70.4611 56.4758 70.4941C56.4758 70.527 56.474 70.5526 56.4703 70.5709C56.4594 70.6075 56.4337 70.6441 56.3935 70.6807C56.3825 70.6917 56.3697 70.7027 56.355 70.7137C56.3404 70.721 56.3221 70.7283 56.3001 70.7356C56.2782 70.7429 56.2562 70.7484 56.2343 70.7521C56.2123 70.7521 56.1885 70.7539 56.1629 70.7576C56.1373 70.7612 56.1135 70.7649 56.0915 70.7686C56.0696 70.7686 56.0458 70.7686 56.0201 70.7686H55.7072V70.8619C55.7035 71.1913 55.709 71.5207 55.7237 71.8501C55.742 72.1795 55.7401 72.509 55.7182 72.8384C55.7072 72.9482 55.6907 73.0616 55.6688 73.1788C55.6468 73.2922 55.6102 73.4002 55.559 73.5027C55.5114 73.6015 55.4473 73.693 55.3668 73.7772C55.2863 73.8614 55.1838 73.9273 55.0594 73.9748C54.9422 74.0188 54.8141 74.0499 54.675 74.0682C54.536 74.0865 54.395 74.0883 54.2523 74.0737C54.1132 74.059 53.9796 74.0279 53.8515 73.9803C53.7234 73.9328 53.6154 73.8669 53.5276 73.7827C53.48 73.7388 53.4361 73.6857 53.3958 73.6235C53.3556 73.5576 53.3281 73.4899 53.3135 73.4203C53.2988 73.3471 53.3025 73.2776 53.3245 73.2117C53.3464 73.1422 53.3977 73.0854 53.4782 73.0415C53.5477 73.0012 53.6099 72.9921 53.6648 73.0141C53.7234 73.036 53.7783 73.0708 53.8296 73.1184C53.8845 73.166 53.9394 73.2154 53.9943 73.2666C54.0528 73.3178 54.1169 73.3508 54.1864 73.3654C54.3365 73.402 54.4591 73.4039 54.5543 73.3709C54.6494 73.3343 54.7245 73.2776 54.7794 73.2007C54.8343 73.1239 54.8727 73.0305 54.8946 72.9207C54.9203 72.8109 54.9349 72.6993 54.9386 72.5858C54.9459 72.4724 54.9477 72.3626 54.9441 72.2564C54.9404 72.1503 54.9404 72.0606 54.9441 71.9874C54.9477 71.7934 54.9477 71.6031 54.9441 71.4164C54.9404 71.2297 54.9386 71.0394 54.9386 70.8454V70.8235C54.9422 70.8161 54.9441 70.8052 54.9441 70.7905H54.9276C54.9056 70.7869 54.8599 70.785 54.7903 70.785C54.7208 70.7814 54.6458 70.7795 54.5652 70.7795C54.4847 70.7795 54.4079 70.7795 54.3346 70.7795C54.2651 70.7759 54.2194 70.7741 54.1974 70.7741H54.1205V70.7686C54.0912 70.7649 54.062 70.7594 54.0327 70.7521C54.0034 70.7448 53.9741 70.7375 53.9448 70.7301C53.8753 70.7082 53.8222 70.6734 53.7856 70.6258C53.7673 70.6075 53.7527 70.5782 53.7417 70.538C53.7344 70.4977 53.7307 70.4629 53.7307 70.4337C53.7307 70.4154 53.7307 70.3952 53.7307 70.3733C53.7307 70.3513 53.7344 70.3312 53.7417 70.3129C53.749 70.2726 53.7746 70.236 53.8186 70.2031C53.8479 70.1811 53.8826 70.1646 53.9229 70.1537C53.9485 70.1463 53.9741 70.1409 53.9997 70.1372C54.0254 70.1335 54.0528 70.1299 54.0821 70.1262C54.1077 70.1226 54.1333 70.1207 54.159 70.1207C54.1846 70.1207 54.212 70.1207 54.2413 70.1207H54.7684C54.7903 70.1207 54.816 70.1207 54.8452 70.1207C54.8745 70.1207 54.9075 70.1189 54.9441 70.1152C55.0868 70.1152 55.2277 70.1152 55.3668 70.1152C55.5059 70.1152 55.6413 70.1171 55.7731 70.1207H55.806C55.8463 70.1207 55.8847 70.1226 55.9213 70.1262C55.9616 70.1262 56.0018 70.1262 56.0421 70.1262C56.1263 70.1299 56.205 70.1463 56.2782 70.1756C56.3367 70.1903 56.3843 70.2214 56.4209 70.269Z" fill="white"/>
|
||||
<path d="M103.706 80.0002H82.2941C80.4748 80.0002 79 78.5253 79 76.706V73.9609H107V76.706C107 78.5253 105.525 80.0002 103.706 80.0002Z" fill="#D3DCFB"/>
|
||||
<path d="M82.2937 78.9021C81.0828 78.9021 80.0977 77.917 80.0977 76.706V73.9609H105.902V76.706C105.902 77.917 104.916 78.9021 103.705 78.9021H82.2937Z" fill="#6A0DB4"/>
|
||||
<path d="M103.706 54.1963H82.2941C80.4777 54.1963 79 55.674 79 57.4904V74.51C79 76.3264 80.4777 77.8041 82.2941 77.8041H103.706C105.522 77.8041 107 76.3264 107 74.51C107 74.1272 107 57.9838 107 57.4904C107 55.674 105.522 54.1963 103.706 54.1963Z" fill="#EBF5FC"/>
|
||||
<path d="M82.2937 76.706C81.0809 76.706 80.0977 75.7228 80.0977 74.5099V69.5687C80.0977 68.9623 80.5892 68.4707 81.1957 68.4707H104.804C105.41 68.4707 105.902 68.9623 105.902 69.5687V74.5099C105.902 75.7228 104.918 76.706 103.705 76.706H82.2937Z" fill="#A12BFF"/>
|
||||
<path d="M85.0394 57.49C85.6459 57.49 86.1375 56.9984 86.1375 56.392C86.1375 55.7856 85.6459 55.2939 85.0394 55.2939C84.433 55.2939 83.9414 55.7856 83.9414 56.392C83.9414 56.9984 84.433 57.49 85.0394 57.49Z" fill="#AAB9E5"/>
|
||||
<path d="M85.0384 56.9412C84.5836 56.9412 84.2148 56.5725 84.2148 56.1176V52.8235C84.2148 52.3687 84.5836 52 85.0384 52C85.4932 52 85.8619 52.3687 85.8619 52.8235V56.1176C85.8619 56.5725 85.4932 56.9412 85.0384 56.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M100.961 57.49C101.568 57.49 102.059 56.9984 102.059 56.392C102.059 55.7856 101.568 55.2939 100.961 55.2939C100.355 55.2939 99.8633 55.7856 99.8633 56.392C99.8633 56.9984 100.355 57.49 100.961 57.49Z" fill="#AAB9E5"/>
|
||||
<path d="M100.96 56.9412C100.505 56.9412 100.137 56.5725 100.137 56.1176V52.8235C100.137 52.3687 100.505 52 100.96 52C101.415 52 101.784 52.3687 101.784 52.8235V56.1176C101.784 56.5725 101.415 56.9412 100.96 56.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M93.0004 57.49C93.6068 57.49 94.0984 56.9984 94.0984 56.392C94.0984 55.7856 93.6068 55.2939 93.0004 55.2939C92.394 55.2939 91.9023 55.7856 91.9023 56.392C91.9023 56.9984 92.394 57.49 93.0004 57.49Z" fill="#AAB9E5"/>
|
||||
<path d="M92.9993 56.9412C92.5445 56.9412 92.1758 56.5725 92.1758 56.1176V52.8235C92.1758 52.3687 92.5445 52 92.9993 52C93.4541 52 93.8228 52.3687 93.8228 52.8235V56.1176C93.8228 56.5725 93.4541 56.9412 92.9993 56.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M95.1961 66.275C96.407 66.275 97.3922 65.2898 97.3922 64.0789V61.3338C97.3922 60.1229 96.407 59.1377 95.1961 59.1377C93.9852 59.1377 93 60.1229 93 61.3338V64.0789C93 65.2898 93.9852 66.275 95.1961 66.275ZM94.098 61.3338C94.098 60.7283 94.5906 60.2357 95.1961 60.2357C95.8015 60.2357 96.2941 60.7283 96.2941 61.3338V64.0789C96.2941 64.6843 95.8015 65.1769 95.1961 65.1769C94.5906 65.1769 94.098 64.6843 94.098 64.0789V61.3338Z" fill="#252A3F"/>
|
||||
<path d="M89.4859 61.7727L90.8035 60.7845V65.7256C90.8035 66.0288 91.0494 66.2747 91.3525 66.2747C91.6557 66.2747 91.9016 66.0288 91.9016 65.7256V59.6864C91.9016 59.2351 91.3848 58.9761 91.0231 59.2472L88.827 60.8943C88.5845 61.0762 88.5353 61.4203 88.7172 61.6629C88.8992 61.9054 89.2433 61.9546 89.4859 61.7727Z" fill="#252A3F"/>
|
||||
<path d="M98.8394 72.7128C98.8394 72.8226 98.8339 72.9342 98.823 73.0477C98.812 73.1575 98.79 73.2655 98.7571 73.3716C98.7241 73.4741 98.6747 73.5729 98.6089 73.6681C98.543 73.7596 98.4533 73.8401 98.3398 73.9096C98.2849 73.9462 98.219 73.9774 98.1422 74.003C98.069 74.0249 97.9903 74.0432 97.9061 74.0579C97.8256 74.0762 97.7451 74.0872 97.6645 74.0908C97.584 74.0981 97.509 74.1 97.4394 74.0963C97.11 74.0853 96.8428 74.0066 96.6379 73.8602C96.4366 73.7102 96.281 73.5253 96.1712 73.3057C96.0651 73.0861 95.9955 72.8482 95.9626 72.592C95.9333 72.3321 95.9278 72.0851 95.9461 71.8508C95.9571 71.7117 95.9809 71.5617 96.0175 71.4006C96.0577 71.2396 96.1145 71.084 96.1877 70.934C96.2645 70.7839 96.3579 70.6485 96.4677 70.5277C96.5811 70.4069 96.7147 70.3154 96.8685 70.2532C97.0112 70.1946 97.1668 70.158 97.3351 70.1434C97.5072 70.1251 97.6755 70.1306 97.8402 70.1598C98.0086 70.1891 98.1641 70.2422 98.3069 70.3191C98.4533 70.3959 98.5686 70.4984 98.6528 70.6265C98.7113 70.7217 98.7571 70.837 98.79 70.9724C98.823 71.1078 98.8285 71.2377 98.8065 71.3622C98.7882 71.472 98.7498 71.5489 98.6912 71.5928C98.6326 71.633 98.5686 71.6495 98.499 71.6422C98.4295 71.6312 98.3618 71.6019 98.2959 71.5544C98.2337 71.5031 98.1916 71.4391 98.1696 71.3622C98.144 71.278 98.1129 71.2011 98.0763 71.1316C98.0397 71.0584 97.983 70.998 97.9061 70.9504C97.8183 70.8955 97.7249 70.8644 97.6261 70.8571C97.5309 70.8498 97.4376 70.8608 97.3461 70.89C97.2583 70.9193 97.1741 70.9651 97.0936 71.0273C97.0167 71.0895 96.9526 71.1609 96.9014 71.2414C96.8392 71.3329 96.7916 71.4336 96.7587 71.5434C96.7257 71.6495 96.7019 71.7611 96.6873 71.8783C96.6726 71.9917 96.6672 72.107 96.6708 72.2242C96.6781 72.3376 96.6928 72.4474 96.7147 72.5536C96.755 72.7329 96.8172 72.9013 96.9014 73.0587C96.9343 73.1172 96.9783 73.1703 97.0332 73.2179C97.0917 73.2618 97.1558 73.2984 97.2253 73.3277C97.2949 73.3533 97.3681 73.3698 97.4449 73.3771C97.5218 73.3844 97.595 73.3789 97.6645 73.3606C97.7634 73.335 97.8439 73.3021 97.9061 73.2618C97.9683 73.2179 98.0177 73.1666 98.0543 73.1081C98.0909 73.0495 98.1147 72.9855 98.1257 72.9159C98.1404 72.8464 98.1477 72.7732 98.1477 72.6963V72.6908C98.1001 72.6908 98.058 72.6908 98.0214 72.6908C97.9848 72.6872 97.9573 72.6853 97.939 72.6853C97.8585 72.6853 97.7798 72.6707 97.703 72.6414C97.6371 72.6194 97.5877 72.5847 97.5547 72.5371C97.5181 72.4968 97.4998 72.4474 97.4998 72.3889C97.4998 72.3669 97.4998 72.3468 97.4998 72.3285C97.5035 72.3065 97.5072 72.2845 97.5108 72.2626C97.5218 72.2333 97.5456 72.1967 97.5822 72.1528C97.6041 72.1345 97.6389 72.1198 97.6865 72.1089C97.7085 72.1015 97.7304 72.0961 97.7524 72.0924C97.7743 72.0851 97.8 72.0796 97.8292 72.0759C97.8512 72.0723 97.875 72.0704 97.9006 72.0704C97.9262 72.0704 97.9519 72.0704 97.9775 72.0704H98.4771C98.5173 72.0668 98.5631 72.0723 98.6143 72.0869C98.6692 72.0979 98.7113 72.1162 98.7406 72.1418C98.7516 72.1564 98.7626 72.1711 98.7736 72.1857C98.7845 72.2004 98.7937 72.2168 98.801 72.2351C98.8156 72.2754 98.8248 72.3157 98.8285 72.3559C98.8321 72.3779 98.8339 72.4017 98.8339 72.4273C98.8376 72.4493 98.8394 72.4694 98.8394 72.4877V72.7128Z" fill="white"/>
|
||||
<path d="M94.9586 70.4341C94.9805 70.6098 94.9934 70.8148 94.997 71.049C95.0007 71.2796 94.997 71.5139 94.986 71.7518C94.9787 71.986 94.9622 72.2093 94.9366 72.4216C94.911 72.6302 94.8799 72.7986 94.8433 72.9267C94.8177 73.0036 94.7866 73.0841 94.75 73.1683C94.717 73.2488 94.6804 73.322 94.6402 73.3879C94.5816 73.4867 94.5102 73.5745 94.426 73.6514C94.3419 73.7246 94.2485 73.7887 94.146 73.8436C94.0472 73.8948 93.9411 73.9351 93.8276 73.9643C93.7178 73.9936 93.608 74.0101 93.4982 74.0138C93.3042 74.0211 93.1194 73.9936 92.9437 73.9314C92.7717 73.8655 92.6124 73.763 92.466 73.6239C92.3562 73.5178 92.2684 73.4043 92.2025 73.2836C92.1366 73.1628 92.0854 73.0365 92.0488 72.9047C92.0122 72.7693 91.9884 72.6302 91.9774 72.4875C91.9701 72.3447 91.9664 72.1983 91.9664 72.0483C91.9664 71.9787 91.9646 71.8927 91.9609 71.7902C91.9609 71.6841 91.9609 71.5761 91.9609 71.4663C91.9609 71.3528 91.9609 71.243 91.9609 71.1369C91.9609 71.0307 91.9628 70.9411 91.9664 70.8679C91.9664 70.8203 91.9664 70.769 91.9664 70.7141C91.9664 70.6556 91.9683 70.5988 91.9719 70.5439C91.9792 70.4854 91.9902 70.4305 92.0049 70.3792C92.0195 70.3243 92.0415 70.2749 92.0707 70.231C92.1037 70.1834 92.1494 70.1487 92.208 70.1267C92.2666 70.1047 92.327 70.0938 92.3892 70.0938C92.4551 70.0938 92.5173 70.1066 92.5758 70.1322C92.6344 70.1578 92.682 70.1944 92.7186 70.242C92.7369 70.2713 92.7497 70.3005 92.757 70.3298C92.7643 70.3591 92.7698 70.3921 92.7735 70.4287C92.7808 70.5494 92.7845 70.6867 92.7845 70.8404C92.7881 70.9941 92.7881 71.1442 92.7845 71.2906C92.7845 71.4334 92.7826 71.5651 92.779 71.6859C92.7753 71.8067 92.7735 71.8964 92.7735 71.9549C92.7735 72.1745 92.7845 72.374 92.8064 72.5534C92.8284 72.729 92.8796 72.8754 92.9602 72.9926C93.0334 73.0987 93.1194 73.1664 93.2182 73.1957C93.317 73.225 93.4158 73.2341 93.5147 73.2232C93.6062 73.2122 93.6977 73.1792 93.7892 73.1243C93.8843 73.0658 93.9594 72.9816 94.0143 72.8718C94.0362 72.8315 94.0545 72.7858 94.0692 72.7345C94.0838 72.6833 94.0948 72.6357 94.1021 72.5918C94.1168 72.4527 94.1296 72.2917 94.1405 72.1087C94.1515 71.922 94.1607 71.7317 94.168 71.5377C94.1753 71.3437 94.179 71.1534 94.179 70.9667C94.179 70.78 94.1771 70.6117 94.1735 70.4616C94.1808 70.3957 94.2009 70.3353 94.2339 70.2804C94.2632 70.2328 94.3053 70.1907 94.3602 70.1541C94.4151 70.1175 94.4901 70.0992 94.5853 70.0992C94.6621 70.1029 94.7243 70.123 94.7719 70.1596C94.8195 70.1926 94.8579 70.2292 94.8872 70.2694C94.9202 70.317 94.9439 70.3719 94.9586 70.4341Z" fill="white"/>
|
||||
<path d="M91.0164 73.6456C91.02 73.6675 91.0218 73.6895 91.0218 73.7114C91.0255 73.7297 91.0273 73.7517 91.0273 73.7773C91.0273 73.8212 91.0145 73.8615 90.9889 73.8981C90.9779 73.9164 90.9633 73.9347 90.945 73.953C90.9267 73.9677 90.9047 73.9805 90.8791 73.9914C90.7876 74.0427 90.6906 74.061 90.5881 74.0463C90.5369 74.0317 90.4911 74.0079 90.4509 73.975C90.4435 73.9677 90.4381 73.964 90.4344 73.964C90.4307 73.9603 90.4271 73.9548 90.4234 73.9475C90.4198 73.9439 90.4161 73.9402 90.4124 73.9365C90.4088 73.9292 90.4033 73.9237 90.396 73.9201C90.3777 73.9018 90.363 73.8853 90.352 73.8707C90.3411 73.8524 90.3301 73.8341 90.3191 73.8158C90.3118 73.7975 90.3026 73.781 90.2917 73.7663C90.2843 73.748 90.2752 73.7297 90.2642 73.7114C90.2569 73.6968 90.2496 73.684 90.2422 73.673C90.2349 73.6584 90.2294 73.6437 90.2258 73.6291C90.2111 73.5961 90.202 73.5669 90.1983 73.5412L90.083 73.2722C89.8305 73.2722 89.5779 73.2741 89.3254 73.2777C89.0765 73.2777 88.8258 73.2759 88.5732 73.2722L88.4579 73.5412C88.4506 73.5559 88.4451 73.5705 88.4415 73.5852C88.4415 73.5998 88.4378 73.6145 88.4305 73.6291C88.4232 73.6437 88.4158 73.6584 88.4085 73.673C88.4049 73.684 88.3994 73.6968 88.392 73.7114C88.3811 73.7297 88.3701 73.748 88.3591 73.7663C88.3518 73.781 88.3426 73.7975 88.3317 73.8158C88.3243 73.8341 88.3152 73.8524 88.3042 73.8707C88.2932 73.8853 88.2786 73.9018 88.2603 73.9201C88.253 73.9237 88.2475 73.9292 88.2438 73.9365C88.2401 73.9402 88.2365 73.9439 88.2328 73.9475C88.2292 73.9548 88.2255 73.9603 88.2218 73.964C88.2182 73.964 88.2127 73.9677 88.2054 73.975C88.1651 74.0079 88.1194 74.0317 88.0681 74.0463C87.9656 74.061 87.8686 74.0427 87.7771 73.9914C87.7515 73.9805 87.7296 73.9677 87.7113 73.953C87.693 73.9347 87.6783 73.9164 87.6673 73.8981C87.6417 73.8615 87.6289 73.8212 87.6289 73.7773C87.6289 73.7517 87.6289 73.7297 87.6289 73.7114C87.6326 73.6895 87.6362 73.6675 87.6399 73.6456C87.6472 73.6126 87.6564 73.5797 87.6673 73.5467C87.6783 73.5138 87.6838 73.4973 87.6838 73.4973L88.8258 70.6863L88.8587 70.5985C88.866 70.5765 88.8752 70.5564 88.8862 70.5381C88.8971 70.5198 88.9063 70.4978 88.9136 70.4722C88.9319 70.4246 88.952 70.3826 88.974 70.346C88.985 70.324 88.9978 70.3039 89.0124 70.2856C89.0271 70.2673 89.0417 70.249 89.0564 70.2307C89.0783 70.2014 89.1094 70.1776 89.1497 70.1593C89.2009 70.141 89.2595 70.1318 89.3254 70.1318C89.3949 70.1318 89.4553 70.141 89.5066 70.1593C89.5468 70.1776 89.5779 70.2014 89.5999 70.2307C89.6255 70.2636 89.653 70.302 89.6822 70.346C89.7042 70.3826 89.7243 70.4246 89.7426 70.4722C89.75 70.4978 89.7591 70.5198 89.7701 70.5381C89.7811 70.5564 89.7902 70.5765 89.7975 70.5985L89.8305 70.6863L90.9724 73.4973C90.9724 73.4973 90.9779 73.5138 90.9889 73.5467C90.9999 73.5797 91.009 73.6126 91.0164 73.6456ZM89.7152 72.3005C89.6676 72.1943 89.6182 72.0845 89.5669 71.9711C89.5194 71.8576 89.4681 71.7423 89.4132 71.6252C89.3986 71.5922 89.3839 71.5593 89.3693 71.5263C89.3547 71.4897 89.34 71.455 89.3254 71.422C89.3144 71.455 89.3016 71.4897 89.2869 71.5263C89.2723 71.5593 89.2577 71.5922 89.243 71.6252C89.1881 71.7423 89.1351 71.8576 89.0838 71.9711C89.0362 72.0845 88.9886 72.1943 88.9411 72.3005L88.8422 72.542H89.814L89.7152 72.3005Z" fill="white"/>
|
||||
<path d="M138.706 80.0002H117.294C115.475 80.0002 114 78.5253 114 76.706V73.9609H142V76.706C142 78.5253 140.525 80.0002 138.706 80.0002Z" fill="#D3DCFB"/>
|
||||
<path d="M117.294 78.9021C116.083 78.9021 115.098 77.917 115.098 76.706V73.9609H140.902V76.706C140.902 77.917 139.916 78.9021 138.705 78.9021H117.294Z" fill="#6A0DB4"/>
|
||||
<path d="M138.706 54.1963H117.294C115.478 54.1963 114 55.674 114 57.4904V74.51C114 76.3264 115.478 77.8041 117.294 77.8041H138.706C140.522 77.8041 142 76.3264 142 74.51C142 74.1272 142 57.9838 142 57.4904C142 55.674 140.522 54.1963 138.706 54.1963Z" fill="#EBF5FC"/>
|
||||
<path d="M117.294 76.706C116.081 76.706 115.098 75.7228 115.098 74.5099V69.5687C115.098 68.9623 115.589 68.4707 116.196 68.4707H139.804C140.41 68.4707 140.902 68.9623 140.902 69.5687V74.5099C140.902 75.7228 139.918 76.706 138.705 76.706H117.294Z" fill="#A12BFF"/>
|
||||
<path d="M120.039 57.49C120.646 57.49 121.137 56.9984 121.137 56.392C121.137 55.7856 120.646 55.2939 120.039 55.2939C119.433 55.2939 118.941 55.7856 118.941 56.392C118.941 56.9984 119.433 57.49 120.039 57.49Z" fill="#AAB9E5"/>
|
||||
<path d="M120.038 56.9412C119.584 56.9412 119.215 56.5725 119.215 56.1176V52.8235C119.215 52.3687 119.584 52 120.038 52C120.493 52 120.862 52.3687 120.862 52.8235V56.1176C120.862 56.5725 120.493 56.9412 120.038 56.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M135.961 57.49C136.568 57.49 137.059 56.9984 137.059 56.392C137.059 55.7856 136.568 55.2939 135.961 55.2939C135.355 55.2939 134.863 55.7856 134.863 56.392C134.863 56.9984 135.355 57.49 135.961 57.49Z" fill="#AAB9E5"/>
|
||||
<path d="M135.96 56.9412C135.505 56.9412 135.137 56.5725 135.137 56.1176V52.8235C135.137 52.3687 135.505 52 135.96 52C136.415 52 136.784 52.3687 136.784 52.8235V56.1176C136.784 56.5725 136.415 56.9412 135.96 56.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M128 57.49C128.607 57.49 129.098 56.9984 129.098 56.392C129.098 55.7856 128.607 55.2939 128 55.2939C127.394 55.2939 126.902 55.7856 126.902 56.392C126.902 56.9984 127.394 57.49 128 57.49Z" fill="#AAB9E5"/>
|
||||
<path d="M127.999 56.9412C127.545 56.9412 127.176 56.5725 127.176 56.1176V52.8235C127.176 52.3687 127.545 52 127.999 52C128.454 52 128.823 52.3687 128.823 52.8235V56.1176C128.823 56.5725 128.454 56.9412 127.999 56.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M130.196 66.275C131.407 66.275 132.392 65.2898 132.392 64.0789V61.3338C132.392 60.1229 131.407 59.1377 130.196 59.1377C128.985 59.1377 128 60.1229 128 61.3338V64.0789C128 65.2898 128.985 66.275 130.196 66.275ZM129.098 61.3338C129.098 60.7283 129.591 60.2357 130.196 60.2357C130.802 60.2357 131.294 60.7283 131.294 61.3338V64.0789C131.294 64.6843 130.802 65.1769 130.196 65.1769C129.591 65.1769 129.098 64.6843 129.098 64.0789V61.3338Z" fill="#252A3F"/>
|
||||
<path d="M124.486 61.7727L125.804 60.7845V65.7256C125.804 66.0288 126.049 66.2747 126.353 66.2747C126.656 66.2747 126.902 66.0288 126.902 65.7256V59.6864C126.902 59.2351 126.385 58.9761 126.023 59.2472L123.827 60.8943C123.584 61.0762 123.535 61.4203 123.717 61.6629C123.899 61.9054 124.243 61.9546 124.486 61.7727Z" fill="#252A3F"/>
|
||||
<path d="M135.634 70.3028C135.674 70.3504 135.694 70.3998 135.694 70.4511C135.694 70.473 135.693 70.4968 135.689 70.5224C135.689 70.5444 135.687 70.5645 135.684 70.5828C135.673 70.6231 135.649 70.6615 135.612 70.6981C135.583 70.7201 135.543 70.7365 135.491 70.7475C135.466 70.7549 135.44 70.7603 135.414 70.764C135.389 70.7677 135.361 70.7732 135.332 70.7805C135.307 70.7841 135.281 70.786 135.255 70.786C135.23 70.786 135.202 70.786 135.173 70.786H134.893C134.827 70.7896 134.761 70.7915 134.695 70.7915C134.633 70.7915 134.571 70.7915 134.509 70.7915C134.512 70.9049 134.514 71.0275 134.514 71.1593C134.514 71.2874 134.512 71.4375 134.509 71.6095C134.509 71.7815 134.507 71.981 134.503 72.2079C134.503 72.4349 134.503 72.6984 134.503 72.9985V73.4158C134.503 73.4524 134.505 73.4798 134.509 73.4981C134.509 73.5128 134.509 73.5274 134.509 73.542C134.509 73.553 134.507 73.5677 134.503 73.586C134.496 73.6189 134.49 73.6573 134.487 73.7013C134.487 73.7196 134.485 73.7379 134.481 73.7562C134.478 73.7708 134.472 73.7873 134.465 73.8056C134.45 73.8202 134.443 73.8312 134.443 73.8385L134.426 73.8715C134.408 73.9081 134.373 73.9428 134.322 73.9758C134.241 74.016 134.152 74.0252 134.053 74.0032C133.991 73.9959 133.943 73.9794 133.91 73.9538C133.877 73.9209 133.853 73.8879 133.839 73.855C133.817 73.8147 133.804 73.7763 133.8 73.7397C133.789 73.7067 133.784 73.672 133.784 73.6354V70.8134C133.762 70.8134 133.716 70.8134 133.647 70.8134C133.577 70.8134 133.502 70.8134 133.422 70.8134C133.345 70.8098 133.271 70.8061 133.202 70.8024C133.132 70.7988 133.085 70.7951 133.059 70.7915C133.037 70.7878 133.002 70.7823 132.955 70.775C132.911 70.7677 132.874 70.7603 132.845 70.753C132.768 70.7311 132.708 70.6963 132.664 70.6487C132.624 70.6011 132.604 70.5481 132.604 70.4895C132.604 70.4675 132.604 70.4456 132.604 70.4236C132.604 70.4016 132.607 70.3815 132.614 70.3632C132.625 70.3193 132.655 70.2827 132.702 70.2534C132.717 70.2424 132.739 70.2296 132.768 70.215C132.801 70.1967 132.832 70.1839 132.862 70.1765C132.905 70.1619 132.96 70.1509 133.026 70.1436C133.056 70.1399 133.085 70.1381 133.114 70.1381C133.143 70.1381 133.174 70.1381 133.207 70.1381C133.336 70.1381 133.456 70.1381 133.57 70.1381C133.687 70.1381 133.81 70.1363 133.938 70.1326C134.15 70.129 134.36 70.129 134.569 70.1326C134.781 70.1326 134.992 70.1363 135.2 70.1436C135.248 70.1473 135.294 70.1528 135.338 70.1601C135.382 70.1674 135.425 70.1802 135.469 70.1985C135.502 70.2095 135.533 70.2241 135.563 70.2424C135.592 70.2571 135.616 70.2772 135.634 70.3028Z" fill="white"/>
|
||||
<path d="M131.494 70.4786C131.634 70.6067 131.736 70.7604 131.802 70.9397C131.868 71.1154 131.893 71.2911 131.879 71.4668C131.864 71.6352 131.811 71.7907 131.72 71.9335C131.628 72.0726 131.489 72.1787 131.302 72.2519C131.156 72.3141 131.011 72.3581 130.869 72.3837C130.726 72.4093 130.568 72.4294 130.396 72.4441C130.32 72.4514 130.254 72.4569 130.199 72.4605C130.148 72.4605 130.087 72.4624 130.018 72.466C130.003 72.466 129.977 72.466 129.941 72.466C129.908 72.466 129.884 72.4679 129.869 72.4715V73.608C129.858 73.6775 129.844 73.7489 129.825 73.8221C129.811 73.8953 129.769 73.952 129.699 73.9923C129.659 74.0143 129.609 74.0271 129.551 74.0307C129.492 74.0344 129.439 74.0326 129.392 74.0252C129.34 74.0179 129.297 74.0051 129.26 73.9868C129.227 73.9648 129.2 73.9282 129.178 73.877C129.163 73.8441 129.148 73.8075 129.134 73.7672C129.123 73.7233 129.117 73.6702 129.117 73.608V70.5719C129.117 70.5463 129.119 70.5225 129.123 70.5005C129.126 70.4786 129.13 70.4566 129.134 70.4347C129.141 70.4164 129.146 70.3962 129.15 70.3743C129.154 70.3523 129.159 70.3322 129.167 70.3139C129.174 70.2956 129.181 70.2791 129.189 70.2645C129.2 70.2498 129.212 70.237 129.227 70.226C129.245 70.2077 129.273 70.1913 129.309 70.1766C129.35 70.162 129.408 70.1547 129.485 70.1547H129.496C129.609 70.1473 129.736 70.1418 129.875 70.1382C130.014 70.1309 130.129 70.1327 130.221 70.1437C130.272 70.151 130.32 70.1565 130.363 70.1601C130.407 70.1601 130.449 70.162 130.49 70.1656C130.534 70.1693 130.578 70.173 130.622 70.1766C130.665 70.1803 130.709 70.1858 130.753 70.1931C130.79 70.2004 130.823 70.2059 130.852 70.2096C130.885 70.2132 130.918 70.2187 130.951 70.226C130.98 70.2333 131.011 70.2407 131.044 70.248C131.081 70.2553 131.114 70.2681 131.143 70.2864C131.22 70.3084 131.284 70.3358 131.335 70.3688C131.386 70.4017 131.44 70.4383 131.494 70.4786ZM131.165 71.3845C131.169 71.2966 131.15 71.2198 131.11 71.1539C131.074 71.088 131.02 71.0331 130.951 70.9892C130.881 70.9452 130.803 70.9105 130.715 70.8848C130.627 70.8592 130.539 70.8409 130.451 70.8299C130.429 70.8299 130.398 70.8299 130.358 70.8299C130.321 70.8263 130.281 70.8245 130.237 70.8245C130.193 70.8208 130.151 70.819 130.111 70.819C130.074 70.8153 130.045 70.8135 130.023 70.8135C130.005 70.8098 129.983 70.808 129.957 70.808C129.932 70.808 129.902 70.808 129.869 70.808C129.873 70.9214 129.875 71.0313 129.875 71.1374C129.875 71.2399 129.875 71.3515 129.875 71.4723C129.871 71.5382 129.869 71.6041 129.869 71.6699C129.869 71.7358 129.869 71.7999 129.869 71.8621L130.21 71.8566C130.298 71.8566 130.395 71.8511 130.501 71.8401C130.607 71.8292 130.708 71.8072 130.803 71.7743C130.898 71.7413 130.978 71.6937 131.044 71.6315C131.114 71.5693 131.154 71.4869 131.165 71.3845Z" fill="white"/>
|
||||
<path d="M126.363 70.7916L126.353 71.6536H126.572C126.722 71.6499 126.856 71.6481 126.973 71.6481C127.09 71.6481 127.22 71.6499 127.363 71.6536H127.39C127.434 71.6536 127.476 71.6554 127.516 71.6591C127.56 71.6591 127.602 71.6591 127.643 71.6591C127.687 71.6627 127.729 71.6701 127.769 71.681C127.809 71.6884 127.849 71.6975 127.89 71.7085C127.952 71.7305 128.003 71.7634 128.043 71.8073C128.08 71.8549 128.098 71.908 128.098 71.9665C128.098 71.9848 128.098 72.0068 128.098 72.0324C128.098 72.0544 128.095 72.0745 128.087 72.0928C128.08 72.1331 128.056 72.1697 128.016 72.2026C127.998 72.2282 127.963 72.2465 127.912 72.2575C127.864 72.2722 127.817 72.2813 127.769 72.285C127.718 72.2959 127.666 72.3014 127.615 72.3014H127.357L126.342 72.3069L126.331 73.383L127.423 73.394H127.681C127.71 73.394 127.738 73.394 127.763 73.394C127.789 73.394 127.813 73.3958 127.835 73.3995C127.864 73.4068 127.89 73.4123 127.912 73.416C127.937 73.416 127.961 73.4196 127.983 73.4269C128.027 73.4416 128.064 73.4617 128.093 73.4873C128.129 73.5239 128.153 73.5624 128.164 73.6026C128.168 73.6209 128.17 73.641 128.17 73.663C128.173 73.6813 128.173 73.7014 128.17 73.7234C128.17 73.782 128.151 73.835 128.115 73.8826C128.071 73.9339 128.02 73.9668 127.961 73.9814C127.884 74.0144 127.8 74.0309 127.709 74.0309C127.668 74.0345 127.626 74.0363 127.582 74.0363C127.538 74.0363 127.496 74.0382 127.456 74.0418H127.423C127.138 74.0492 126.841 74.0492 126.534 74.0418C126.46 74.0418 126.402 74.04 126.358 74.0363C126.314 74.0363 126.274 74.0363 126.237 74.0363C126.204 74.0363 126.169 74.0363 126.133 74.0363C126.096 74.0363 126.049 74.0363 125.99 74.0363C125.906 74.0437 125.836 74.029 125.782 73.9924C125.741 73.9668 125.71 73.932 125.688 73.8881C125.677 73.8771 125.672 73.8661 125.672 73.8552C125.668 73.8478 125.664 73.8424 125.661 73.8387C125.657 73.835 125.653 73.8295 125.65 73.8222C125.642 73.8039 125.637 73.7856 125.633 73.7673C125.63 73.7454 125.628 73.7252 125.628 73.7069C125.624 73.6886 125.62 73.6703 125.617 73.652C125.617 73.6337 125.615 73.6154 125.611 73.5971V73.5093C125.611 73.4946 125.611 73.48 125.611 73.4654C125.615 73.4507 125.617 73.4361 125.617 73.4214V72.9932L125.628 72.2026V71.4724C125.628 71.3407 125.628 71.2235 125.628 71.121C125.631 71.0186 125.635 70.9069 125.639 70.7861V70.7587C125.642 70.7184 125.644 70.6818 125.644 70.6489C125.648 70.6123 125.65 70.5757 125.65 70.5391C125.653 70.4659 125.674 70.3945 125.71 70.325C125.725 70.2957 125.739 70.2701 125.754 70.2481C125.772 70.2261 125.796 70.2078 125.825 70.1932C125.88 70.1603 125.937 70.1438 125.996 70.1438C126.025 70.1438 126.047 70.1456 126.062 70.1493V70.1438C126.127 70.1438 126.18 70.1438 126.221 70.1438C126.261 70.1438 126.299 70.1438 126.336 70.1438C126.376 70.1438 126.418 70.1438 126.462 70.1438C126.506 70.1401 126.567 70.1383 126.643 70.1383C126.79 70.1346 126.929 70.1328 127.061 70.1328C127.193 70.1328 127.328 70.1346 127.467 70.1383H127.489C127.529 70.142 127.571 70.1438 127.615 70.1438C127.659 70.1438 127.701 70.1456 127.742 70.1493C127.782 70.1493 127.822 70.1548 127.862 70.1658C127.903 70.1731 127.943 70.1841 127.983 70.1987C128.045 70.217 128.097 70.2481 128.137 70.292C128.17 70.3433 128.186 70.3945 128.186 70.4458C128.186 70.4677 128.186 70.4897 128.186 70.5116C128.186 70.5299 128.183 70.5482 128.175 70.5665C128.172 70.6031 128.15 70.6416 128.109 70.6818C128.095 70.6892 128.078 70.6983 128.06 70.7093C128.045 70.7203 128.027 70.7294 128.005 70.7367C127.983 70.7441 127.959 70.7495 127.934 70.7532C127.912 70.7532 127.89 70.755 127.868 70.7587C127.839 70.766 127.811 70.7697 127.785 70.7697C127.763 70.7697 127.738 70.7697 127.709 70.7697H127.462L126.363 70.7752V70.7916Z" fill="white"/>
|
||||
<path d="M124.62 72.4221C124.639 72.4734 124.652 72.5319 124.659 72.5978C124.67 72.66 124.675 72.7241 124.675 72.79C124.675 72.8558 124.67 72.9217 124.659 72.9876C124.652 73.0498 124.641 73.1047 124.626 73.1523C124.567 73.3573 124.45 73.5293 124.275 73.6684C124.099 73.8038 123.898 73.9026 123.671 73.9649C123.447 74.0271 123.215 74.049 122.973 74.0307C122.735 74.0124 122.523 73.9521 122.336 73.8496C122.219 73.7837 122.119 73.7032 122.035 73.608C121.95 73.5128 121.879 73.4067 121.82 73.2896C121.798 73.2493 121.784 73.2036 121.776 73.1523C121.773 73.0974 121.778 73.0462 121.793 72.9986C121.808 72.9473 121.831 72.9034 121.864 72.8668C121.897 72.8266 121.943 72.7991 122.002 72.7845C122.038 72.7772 122.078 72.7735 122.122 72.7735C122.17 72.7735 122.216 72.7808 122.26 72.7955C122.304 72.8064 122.344 72.8266 122.38 72.8558C122.417 72.8815 122.446 72.9181 122.468 72.9656C122.509 73.0425 122.565 73.1139 122.638 73.1798C122.715 73.242 122.796 73.2932 122.88 73.3335C123.001 73.3738 123.122 73.3902 123.242 73.3829C123.367 73.3756 123.478 73.3481 123.577 73.3006C123.68 73.253 123.762 73.1889 123.824 73.1084C123.887 73.0242 123.918 72.929 123.918 72.8229C123.918 72.7351 123.905 72.6637 123.879 72.6088C123.854 72.5502 123.817 72.5026 123.769 72.466C123.726 72.4258 123.671 72.3928 123.605 72.3672C123.543 72.3416 123.473 72.3196 123.396 72.3013C123.308 72.283 123.219 72.2702 123.127 72.2629C123.039 72.2556 122.95 72.2464 122.858 72.2355C122.767 72.2245 122.677 72.2098 122.589 72.1915C122.501 72.1732 122.415 72.1458 122.331 72.1092C122.163 72.0396 122.035 71.9335 121.947 71.7907C121.859 71.648 121.806 71.4943 121.787 71.3296C121.773 71.1649 121.793 71.002 121.848 70.8409C121.903 70.6762 121.991 70.5353 122.111 70.4182C122.229 70.3121 122.368 70.237 122.529 70.1931C122.693 70.1455 122.875 70.1181 123.072 70.1107C123.182 70.1071 123.292 70.1107 123.402 70.1217C123.515 70.1327 123.623 70.151 123.726 70.1766C123.832 70.2023 123.929 70.2352 124.016 70.2755C124.108 70.3157 124.187 70.3633 124.253 70.4182C124.3 70.4548 124.348 70.5042 124.395 70.5664C124.443 70.625 124.479 70.689 124.505 70.7586C124.531 70.8245 124.538 70.8885 124.527 70.9507C124.52 71.013 124.481 71.066 124.412 71.11C124.353 71.1466 124.296 71.163 124.242 71.1594C124.19 71.1521 124.141 71.1356 124.093 71.11C124.046 71.0807 124 71.0477 123.956 71.0111C123.912 70.9745 123.872 70.9416 123.835 70.9123C123.736 70.8391 123.614 70.7897 123.467 70.7641C123.321 70.7385 123.184 70.733 123.056 70.7476C122.975 70.7586 122.9 70.7769 122.831 70.8025C122.761 70.8281 122.701 70.8629 122.649 70.9068C122.602 70.9507 122.563 71.0056 122.534 71.0715C122.509 71.1338 122.499 71.2051 122.507 71.2856C122.51 71.3442 122.527 71.3936 122.556 71.4339C122.589 71.4741 122.627 71.5071 122.671 71.5327C122.719 71.5583 122.77 71.5785 122.825 71.5931C122.88 71.6077 122.935 71.6187 122.99 71.626C123.155 71.648 123.319 71.6645 123.484 71.6755C123.649 71.6864 123.81 71.723 123.967 71.7853C124.128 71.8475 124.265 71.9317 124.379 72.0378C124.492 72.144 124.573 72.2721 124.62 72.4221Z" fill="white"/>
|
||||
<path d="M173.706 80.0002H152.294C150.475 80.0002 149 78.5253 149 76.706V73.9609H177V76.706C177 78.5253 175.525 80.0002 173.706 80.0002Z" fill="#D3DCFB"/>
|
||||
<path d="M152.294 78.9021C151.083 78.9021 150.098 77.917 150.098 76.706V73.9609H175.902V76.706C175.902 77.917 174.916 78.9021 173.705 78.9021H152.294Z" fill="#6A0DB4"/>
|
||||
<path d="M173.706 54.1963H152.294C150.478 54.1963 149 55.674 149 57.4904V74.51C149 76.3264 150.478 77.8041 152.294 77.8041H173.706C175.522 77.8041 177 76.3264 177 74.51C177 74.1272 177 57.9838 177 57.4904C177 55.674 175.522 54.1963 173.706 54.1963Z" fill="#EBF5FC"/>
|
||||
<path d="M152.294 76.706C151.081 76.706 150.098 75.7228 150.098 74.5099V69.5687C150.098 68.9623 150.589 68.4707 151.196 68.4707H174.804C175.41 68.4707 175.902 68.9623 175.902 69.5687V74.5099C175.902 75.7228 174.918 76.706 173.705 76.706H152.294Z" fill="#A12BFF"/>
|
||||
<path d="M155.039 57.49C155.646 57.49 156.137 56.9984 156.137 56.392C156.137 55.7856 155.646 55.2939 155.039 55.2939C154.433 55.2939 153.941 55.7856 153.941 56.392C153.941 56.9984 154.433 57.49 155.039 57.49Z" fill="#AAB9E5"/>
|
||||
<path d="M155.038 56.9412C154.584 56.9412 154.215 56.5725 154.215 56.1176V52.8235C154.215 52.3687 154.584 52 155.038 52C155.493 52 155.862 52.3687 155.862 52.8235V56.1176C155.862 56.5725 155.493 56.9412 155.038 56.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M170.961 57.49C171.568 57.49 172.059 56.9984 172.059 56.392C172.059 55.7856 171.568 55.2939 170.961 55.2939C170.355 55.2939 169.863 55.7856 169.863 56.392C169.863 56.9984 170.355 57.49 170.961 57.49Z" fill="#AAB9E5"/>
|
||||
<path d="M170.96 56.9412C170.505 56.9412 170.137 56.5725 170.137 56.1176V52.8235C170.137 52.3687 170.505 52 170.96 52C171.415 52 171.784 52.3687 171.784 52.8235V56.1176C171.784 56.5725 171.415 56.9412 170.96 56.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M163 57.49C163.607 57.49 164.098 56.9984 164.098 56.392C164.098 55.7856 163.607 55.2939 163 55.2939C162.394 55.2939 161.902 55.7856 161.902 56.392C161.902 56.9984 162.394 57.49 163 57.49Z" fill="#AAB9E5"/>
|
||||
<path d="M162.999 56.9412C162.545 56.9412 162.176 56.5725 162.176 56.1176V52.8235C162.176 52.3687 162.545 52 162.999 52C163.454 52 163.823 52.3687 163.823 52.8235V56.1176C163.823 56.5725 163.454 56.9412 162.999 56.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M165.196 66.275C166.407 66.275 167.392 65.2898 167.392 64.0789V61.3338C167.392 60.1229 166.407 59.1377 165.196 59.1377C163.985 59.1377 163 60.1229 163 61.3338V64.0789C163 65.2898 163.985 66.275 165.196 66.275ZM164.098 61.3338C164.098 60.7283 164.591 60.2357 165.196 60.2357C165.802 60.2357 166.294 60.7283 166.294 61.3338V64.0789C166.294 64.6843 165.802 65.1769 165.196 65.1769C164.591 65.1769 164.098 64.6843 164.098 64.0789V61.3338Z" fill="#252A3F"/>
|
||||
<path d="M159.486 61.7727L160.804 60.7845V65.7256C160.804 66.0288 161.049 66.2747 161.353 66.2747C161.656 66.2747 161.902 66.0288 161.902 65.7256V59.6864C161.902 59.2351 161.385 58.9761 161.023 59.2472L158.827 60.8943C158.584 61.0762 158.535 61.4203 158.717 61.6629C158.899 61.9054 159.243 61.9546 159.486 61.7727Z" fill="#252A3F"/>
|
||||
<path d="M168.513 70.3028C168.553 70.3504 168.573 70.3998 168.573 70.4511C168.573 70.473 168.572 70.4968 168.568 70.5224C168.568 70.5444 168.566 70.5645 168.562 70.5828C168.551 70.6231 168.528 70.6615 168.491 70.6981C168.462 70.7201 168.422 70.7365 168.37 70.7475C168.345 70.7549 168.319 70.7603 168.293 70.764C168.268 70.7677 168.24 70.7732 168.211 70.7805C168.185 70.7841 168.16 70.786 168.134 70.786C168.109 70.786 168.081 70.786 168.052 70.786H167.772C167.706 70.7896 167.64 70.7915 167.574 70.7915C167.512 70.7915 167.45 70.7915 167.388 70.7915C167.391 70.9049 167.393 71.0275 167.393 71.1593C167.393 71.2874 167.391 71.4375 167.388 71.6095C167.388 71.7815 167.386 71.981 167.382 72.2079C167.382 72.4349 167.382 72.6984 167.382 72.9985V73.4158C167.382 73.4524 167.384 73.4798 167.388 73.4981C167.388 73.5128 167.388 73.5274 167.388 73.542C167.388 73.553 167.386 73.5677 167.382 73.586C167.375 73.6189 167.369 73.6573 167.366 73.7013C167.366 73.7196 167.364 73.7379 167.36 73.7562C167.356 73.7708 167.351 73.7873 167.344 73.8056C167.329 73.8202 167.322 73.8312 167.322 73.8385L167.305 73.8715C167.287 73.9081 167.252 73.9428 167.201 73.9758C167.12 74.016 167.031 74.0252 166.932 74.0032C166.87 73.9959 166.822 73.9794 166.789 73.9538C166.756 73.9209 166.732 73.8879 166.718 73.855C166.696 73.8147 166.683 73.7763 166.679 73.7397C166.668 73.7067 166.663 73.672 166.663 73.6354V70.8134C166.641 70.8134 166.595 70.8134 166.526 70.8134C166.456 70.8134 166.381 70.8134 166.3 70.8134C166.224 70.8098 166.15 70.8061 166.081 70.8024C166.011 70.7988 165.964 70.7951 165.938 70.7915C165.916 70.7878 165.881 70.7823 165.834 70.775C165.79 70.7677 165.753 70.7603 165.724 70.753C165.647 70.7311 165.587 70.6963 165.543 70.6487C165.503 70.6011 165.482 70.5481 165.482 70.4895C165.482 70.4675 165.482 70.4456 165.482 70.4236C165.482 70.4016 165.486 70.3815 165.493 70.3632C165.504 70.3193 165.534 70.2827 165.581 70.2534C165.596 70.2424 165.618 70.2296 165.647 70.215C165.68 70.1967 165.711 70.1839 165.74 70.1765C165.784 70.1619 165.839 70.1509 165.905 70.1436C165.934 70.1399 165.964 70.1381 165.993 70.1381C166.022 70.1381 166.053 70.1381 166.086 70.1381C166.214 70.1381 166.335 70.1381 166.449 70.1381C166.566 70.1381 166.688 70.1363 166.817 70.1326C167.029 70.129 167.239 70.129 167.448 70.1326C167.66 70.1326 167.871 70.1363 168.079 70.1436C168.127 70.1473 168.173 70.1528 168.217 70.1601C168.26 70.1674 168.304 70.1802 168.348 70.1985C168.381 70.2095 168.412 70.2241 168.442 70.2424C168.471 70.2571 168.495 70.2772 168.513 70.3028Z" fill="white"/>
|
||||
<path d="M164.783 73.0976C164.83 73.2037 164.832 73.308 164.788 73.4105C164.744 73.5093 164.675 73.6008 164.58 73.685C164.485 73.7692 164.375 73.8424 164.25 73.9046C164.13 73.9668 164.014 74.0108 163.904 74.0364C163.784 74.062 163.656 74.073 163.52 74.0693C163.388 74.0693 163.255 74.0529 163.119 74.0199C162.988 73.9906 162.858 73.9467 162.73 73.8881C162.605 73.8259 162.49 73.7509 162.384 73.6631C162.256 73.5569 162.155 73.4306 162.082 73.2842C162.012 73.1342 161.961 72.9749 161.928 72.8066C161.895 72.6382 161.877 72.4698 161.873 72.3015C161.873 72.1295 161.879 71.9684 161.89 71.8183C161.9 71.6829 161.928 71.542 161.972 71.3956C162.016 71.2492 162.076 71.1064 162.153 70.9674C162.234 70.8246 162.329 70.6929 162.439 70.5721C162.552 70.4513 162.684 70.3488 162.834 70.2646C162.947 70.1987 163.074 70.1548 163.213 70.1329C163.355 70.1072 163.498 70.1017 163.641 70.1164C163.787 70.1274 163.925 70.1585 164.053 70.2097C164.184 70.2573 164.296 70.3232 164.388 70.4074C164.446 70.4586 164.507 70.53 164.569 70.6215C164.635 70.713 164.682 70.8063 164.711 70.9015C164.741 70.9966 164.741 71.0863 164.711 71.1705C164.686 71.251 164.613 71.3059 164.492 71.3352C164.441 71.3498 164.395 71.3535 164.355 71.3462C164.314 71.3352 164.278 71.3187 164.245 71.2968C164.212 71.2712 164.181 71.2419 164.151 71.2089C164.122 71.176 164.095 71.1431 164.069 71.1101C163.981 71.004 163.879 70.9326 163.762 70.896C163.645 70.8557 163.527 70.8466 163.41 70.8685C163.297 70.8868 163.189 70.9344 163.086 71.0113C162.988 71.0845 162.911 71.1797 162.856 71.2968C162.797 71.4212 162.75 71.5585 162.713 71.7085C162.68 71.8549 162.662 72.005 162.658 72.1587C162.654 72.3088 162.667 72.4552 162.697 72.598C162.73 72.7407 162.784 72.867 162.861 72.9768C162.92 73.0646 162.991 73.136 163.075 73.1909C163.163 73.2458 163.257 73.2842 163.355 73.3062C163.454 73.3281 163.553 73.3318 163.652 73.3172C163.754 73.3025 163.853 73.2696 163.948 73.2183C163.978 73.2037 164.009 73.1836 164.042 73.158C164.078 73.1287 164.115 73.0994 164.151 73.0701C164.188 73.0408 164.225 73.0134 164.261 72.9878C164.302 72.9621 164.344 72.9438 164.388 72.9329C164.453 72.9109 164.525 72.9127 164.602 72.9383C164.682 72.964 164.743 73.017 164.783 73.0976Z" fill="white"/>
|
||||
<path d="M158.871 70.2642C159.117 70.1726 159.338 70.1324 159.536 70.1434C159.737 70.1543 159.916 70.2056 160.074 70.2971C160.231 70.3849 160.365 70.5039 160.475 70.654C160.588 70.804 160.679 70.9724 160.749 71.1591C160.804 71.2981 160.846 71.4445 160.875 71.5983C160.905 71.752 160.921 71.9057 160.925 72.0594C160.932 72.2095 160.927 72.3577 160.908 72.5042C160.894 72.6506 160.868 72.786 160.831 72.9104C160.809 72.9946 160.784 73.0715 160.755 73.141C160.725 73.2106 160.69 73.2801 160.65 73.3496C160.559 73.507 160.44 73.6351 160.293 73.734C160.151 73.8328 159.993 73.9023 159.821 73.9426C159.704 73.9719 159.583 73.9865 159.459 73.9865C159.334 73.9828 159.212 73.9664 159.091 73.9371C158.97 73.9042 158.853 73.8584 158.74 73.7998C158.63 73.7376 158.529 73.6608 158.438 73.5692C158.324 73.4594 158.231 73.3332 158.158 73.1904C158.084 73.044 158.028 72.8921 157.987 72.7347C157.947 72.5737 157.922 72.4126 157.911 72.2516C157.9 72.0906 157.9 71.9368 157.911 71.7904C157.922 71.655 157.947 71.5104 157.987 71.3567C158.031 71.203 158.094 71.0547 158.174 70.912C158.255 70.7692 158.352 70.6411 158.465 70.5277C158.582 70.4106 158.718 70.3227 158.871 70.2642ZM160.156 72.614C160.2 72.4419 160.218 72.2479 160.211 72.032C160.204 71.816 160.169 71.6129 160.107 71.4226C160.066 71.3055 160.015 71.203 159.953 71.1151C159.894 71.0236 159.823 70.9541 159.739 70.9065C159.658 70.8589 159.563 70.8351 159.453 70.8351C159.344 70.8351 159.221 70.8681 159.085 70.934C159.005 70.9742 158.935 71.0291 158.877 71.0987C158.822 71.1682 158.776 71.2469 158.74 71.3347C158.707 71.4226 158.679 71.5141 158.657 71.6092C158.639 71.7044 158.628 71.7959 158.624 71.8838C158.617 71.9789 158.615 72.0796 158.619 72.1857C158.622 72.2882 158.633 72.3925 158.652 72.4987C158.674 72.6011 158.703 72.7 158.74 72.7951C158.776 72.8866 158.826 72.969 158.888 73.0422C158.983 73.152 159.093 73.2289 159.217 73.2728C159.345 73.313 159.472 73.3185 159.596 73.2892C159.797 73.2453 159.951 73.1117 160.057 72.8885C160.101 72.8079 160.134 72.7164 160.156 72.614Z" fill="white"/>
|
||||
<path d="M208.706 80.0002H187.294C185.475 80.0002 184 78.5253 184 76.706V73.9609H212V76.706C212 78.5253 210.525 80.0002 208.706 80.0002Z" fill="#D3DCFB"/>
|
||||
<path d="M187.294 78.9021C186.083 78.9021 185.098 77.917 185.098 76.706V73.9609H210.902V76.706C210.902 77.917 209.916 78.9021 208.705 78.9021H187.294Z" fill="#6A0DB4"/>
|
||||
<path d="M208.706 54.1963H187.294C185.478 54.1963 184 55.674 184 57.4904V74.51C184 76.3264 185.478 77.8041 187.294 77.8041H208.706C210.522 77.8041 212 76.3264 212 74.51C212 74.1272 212 57.9838 212 57.4904C212 55.674 210.522 54.1963 208.706 54.1963Z" fill="#EBF5FC"/>
|
||||
<path d="M187.294 76.706C186.081 76.706 185.098 75.7228 185.098 74.5099V69.5687C185.098 68.9623 185.589 68.4707 186.196 68.4707H209.804C210.41 68.4707 210.902 68.9623 210.902 69.5687V74.5099C210.902 75.7228 209.918 76.706 208.705 76.706H187.294Z" fill="#A12BFF"/>
|
||||
<path d="M190.039 57.49C190.646 57.49 191.137 56.9984 191.137 56.392C191.137 55.7856 190.646 55.2939 190.039 55.2939C189.433 55.2939 188.941 55.7856 188.941 56.392C188.941 56.9984 189.433 57.49 190.039 57.49Z" fill="#AAB9E5"/>
|
||||
<path d="M190.038 56.9412C189.584 56.9412 189.215 56.5725 189.215 56.1176V52.8235C189.215 52.3687 189.584 52 190.038 52C190.493 52 190.862 52.3687 190.862 52.8235V56.1176C190.862 56.5725 190.493 56.9412 190.038 56.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M205.961 57.49C206.568 57.49 207.059 56.9984 207.059 56.392C207.059 55.7856 206.568 55.2939 205.961 55.2939C205.355 55.2939 204.863 55.7856 204.863 56.392C204.863 56.9984 205.355 57.49 205.961 57.49Z" fill="#AAB9E5"/>
|
||||
<path d="M205.96 56.9412C205.505 56.9412 205.137 56.5725 205.137 56.1176V52.8235C205.137 52.3687 205.505 52 205.96 52C206.415 52 206.784 52.3687 206.784 52.8235V56.1176C206.784 56.5725 206.415 56.9412 205.96 56.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M198 57.49C198.607 57.49 199.098 56.9984 199.098 56.392C199.098 55.7856 198.607 55.2939 198 55.2939C197.394 55.2939 196.902 55.7856 196.902 56.392C196.902 56.9984 197.394 57.49 198 57.49Z" fill="#AAB9E5"/>
|
||||
<path d="M197.999 56.9412C197.545 56.9412 197.176 56.5725 197.176 56.1176V52.8235C197.176 52.3687 197.545 52 197.999 52C198.454 52 198.823 52.3687 198.823 52.8235V56.1176C198.823 56.5725 198.454 56.9412 197.999 56.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M200.196 66.275C201.407 66.275 202.392 65.2898 202.392 64.0789V61.3338C202.392 60.1229 201.407 59.1377 200.196 59.1377C198.985 59.1377 198 60.1229 198 61.3338V64.0789C198 65.2898 198.985 66.275 200.196 66.275ZM199.098 61.3338C199.098 60.7283 199.591 60.2357 200.196 60.2357C200.802 60.2357 201.294 60.7283 201.294 61.3338V64.0789C201.294 64.6843 200.802 65.1769 200.196 65.1769C199.591 65.1769 199.098 64.6843 199.098 64.0789V61.3338Z" fill="#252A3F"/>
|
||||
<path d="M194.486 61.7727L195.804 60.7845V65.7256C195.804 66.0288 196.049 66.2747 196.353 66.2747C196.656 66.2747 196.902 66.0288 196.902 65.7256V59.6864C196.902 59.2351 196.385 58.9761 196.023 59.2472L193.827 60.8943C193.584 61.0762 193.535 61.4203 193.717 61.6629C193.899 61.9054 194.243 61.9546 194.486 61.7727Z" fill="#252A3F"/>
|
||||
<path d="M203.798 70.3966C203.816 70.4808 203.818 70.5668 203.803 70.6546C203.792 70.7388 203.776 70.8157 203.754 70.8852C203.71 71.028 203.659 71.1872 203.6 71.3629C203.542 71.5385 203.483 71.7142 203.425 71.8899C203.366 72.0656 203.309 72.2321 203.254 72.3895C203.199 72.5432 203.154 72.6714 203.117 72.7738C203.08 72.869 203.042 72.977 203.002 73.0978C202.962 73.2185 202.912 73.3375 202.854 73.4546C202.799 73.5681 202.733 73.6724 202.656 73.7676C202.583 73.8627 202.493 73.9323 202.387 73.9762C202.281 74.0201 202.184 74.0311 202.096 74.0091C202.008 73.9835 201.929 73.9396 201.86 73.8774C201.79 73.8115 201.726 73.731 201.668 73.6358C201.613 73.537 201.563 73.4363 201.519 73.3338C201.476 73.2314 201.435 73.1325 201.399 73.0374C201.362 72.9385 201.329 72.8544 201.3 72.7848C201.186 72.5359 201.084 72.2724 200.992 71.9942C200.901 71.7161 200.808 71.4507 200.712 71.1981C200.687 71.1249 200.657 71.0371 200.625 70.9346C200.592 70.8285 200.57 70.7242 200.559 70.6217C200.551 70.5155 200.564 70.4204 200.597 70.3362C200.63 70.2483 200.7 70.188 200.806 70.155C200.828 70.1477 200.85 70.1422 200.872 70.1385C200.897 70.1312 200.921 70.1257 200.943 70.1221C200.969 70.1221 200.992 70.1239 201.014 70.1276C201.036 70.1312 201.06 70.1404 201.086 70.155C201.104 70.1623 201.122 70.1715 201.141 70.1825C201.159 70.1898 201.175 70.2008 201.19 70.2154C201.205 70.2337 201.217 70.252 201.228 70.2703C201.243 70.2886 201.258 70.3069 201.272 70.3252C201.283 70.3508 201.292 70.3746 201.3 70.3966C201.311 70.4149 201.32 70.4332 201.327 70.4515C201.335 70.4771 201.344 70.5009 201.355 70.5229C201.366 70.5412 201.375 70.5595 201.382 70.5778L201.415 70.6711L202.206 72.9276L202.985 70.6766L203.024 70.5832C203.031 70.5649 203.038 70.5466 203.046 70.5283C203.053 70.5064 203.06 70.4826 203.068 70.457C203.075 70.4387 203.082 70.4204 203.09 70.4021C203.101 70.3801 203.113 70.3581 203.128 70.3362C203.139 70.3179 203.15 70.2996 203.161 70.2813C203.176 70.2593 203.19 70.2392 203.205 70.2209C203.216 70.2063 203.229 70.1934 203.243 70.1825C203.262 70.1715 203.278 70.1623 203.293 70.155C203.322 70.1404 203.348 70.1312 203.37 70.1276C203.395 70.1239 203.417 70.1221 203.436 70.1221C203.457 70.1257 203.479 70.1312 203.501 70.1385C203.527 70.1422 203.551 70.1477 203.573 70.155C203.642 70.1733 203.694 70.2044 203.726 70.2483C203.763 70.2923 203.787 70.3417 203.798 70.3966Z" fill="white"/>
|
||||
<path d="M197.557 70.2642C197.802 70.1726 198.024 70.1324 198.221 70.1434C198.423 70.1543 198.602 70.2056 198.759 70.2971C198.917 70.3849 199.05 70.5039 199.16 70.654C199.274 70.804 199.365 70.9724 199.435 71.1591C199.489 71.2981 199.532 71.4445 199.561 71.5983C199.59 71.752 199.607 71.9057 199.61 72.0594C199.618 72.2095 199.612 72.3577 199.594 72.5042C199.579 72.6506 199.554 72.786 199.517 72.9104C199.495 72.9946 199.469 73.0715 199.44 73.141C199.411 73.2106 199.376 73.2801 199.336 73.3496C199.244 73.507 199.125 73.6351 198.979 73.734C198.836 73.8328 198.679 73.9023 198.507 73.9426C198.39 73.9719 198.269 73.9865 198.144 73.9865C198.02 73.9828 197.897 73.9664 197.777 73.9371C197.656 73.9042 197.539 73.8584 197.425 73.7998C197.315 73.7376 197.215 73.6608 197.123 73.5692C197.01 73.4594 196.916 73.3332 196.843 73.1904C196.77 73.044 196.713 72.8921 196.673 72.7347C196.633 72.5737 196.607 72.4126 196.596 72.2516C196.585 72.0906 196.585 71.9368 196.596 71.7904C196.607 71.655 196.633 71.5104 196.673 71.3567C196.717 71.203 196.779 71.0547 196.86 70.912C196.94 70.7692 197.037 70.6411 197.151 70.5277C197.268 70.4106 197.403 70.3227 197.557 70.2642ZM198.842 72.614C198.886 72.4419 198.904 72.2479 198.897 72.032C198.889 71.816 198.854 71.6129 198.792 71.4226C198.752 71.3055 198.701 71.203 198.638 71.1151C198.58 71.0236 198.509 70.9541 198.424 70.9065C198.344 70.8589 198.249 70.8351 198.139 70.8351C198.029 70.8351 197.906 70.8681 197.771 70.934C197.691 70.9742 197.621 71.0291 197.562 71.0987C197.507 71.1682 197.462 71.2469 197.425 71.3347C197.392 71.4226 197.365 71.5141 197.343 71.6092C197.324 71.7044 197.314 71.7959 197.31 71.8838C197.303 71.9789 197.301 72.0796 197.304 72.1857C197.308 72.2882 197.319 72.3925 197.337 72.4987C197.359 72.6011 197.389 72.7 197.425 72.7951C197.462 72.8866 197.511 72.969 197.573 73.0422C197.669 73.152 197.778 73.2289 197.903 73.2728C198.031 73.313 198.157 73.3185 198.282 73.2892C198.483 73.2453 198.637 73.1117 198.743 72.8885C198.787 72.8079 198.82 72.7164 198.842 72.614Z" fill="white"/>
|
||||
<path d="M195.646 73.6026C195.642 73.6649 195.633 73.7308 195.618 73.8003C195.607 73.8698 195.573 73.9266 195.514 73.9705C195.47 74.0071 195.421 74.0291 195.366 74.0364C195.311 74.0437 195.256 74.04 195.201 74.0254C195.15 74.0144 195.1 73.9961 195.053 73.9705C195.005 73.9412 194.967 73.9064 194.937 73.8662C194.813 73.7125 194.698 73.5551 194.592 73.394C194.489 73.2293 194.385 73.0646 194.279 72.8999L193.817 72.2026C193.755 72.1038 193.689 71.994 193.62 71.8732C193.55 71.7488 193.479 71.6335 193.406 71.5274L193.389 73.6246V73.674C193.389 73.7326 193.378 73.7911 193.356 73.8497C193.338 73.9046 193.305 73.9522 193.257 73.9925C193.221 74.0217 193.173 74.0419 193.115 74.0528C193.023 74.0711 192.946 74.0657 192.884 74.0364C192.826 74.0071 192.778 73.9668 192.741 73.9156C192.708 73.8643 192.685 73.8058 192.67 73.7399C192.659 73.6704 192.657 73.6026 192.665 73.5368V73.4434L192.676 73.0152L192.681 72.2191C192.685 72.102 192.687 71.983 192.687 71.8623C192.687 71.7378 192.687 71.6115 192.687 71.4834C192.683 71.326 192.683 71.1595 192.687 70.9838C192.694 70.8081 192.701 70.6434 192.708 70.4897C192.716 70.4055 192.736 70.3341 192.769 70.2756C192.784 70.2243 192.822 70.1804 192.884 70.1438C192.924 70.1182 192.976 70.1017 193.038 70.0944C193.104 70.0871 193.16 70.0889 193.208 70.0999C193.226 70.1072 193.245 70.1164 193.263 70.1274C193.281 70.1347 193.3 70.1438 193.318 70.1548C193.336 70.1694 193.353 70.1841 193.367 70.1987C193.386 70.2134 193.402 70.2298 193.417 70.2481C193.435 70.2664 193.451 70.2866 193.466 70.3085C193.481 70.3268 193.495 70.3451 193.51 70.3634C193.521 70.3854 193.532 70.4055 193.543 70.4238C193.554 70.4421 193.567 70.4604 193.581 70.4787L193.642 70.5666L194.91 72.565V72.2026C194.91 72.0855 194.908 71.9666 194.905 71.8458C194.905 71.7213 194.903 71.5932 194.899 71.4615C194.899 71.3077 194.899 71.143 194.899 70.9674C194.903 70.7917 194.908 70.627 194.916 70.4732C194.916 70.411 194.934 70.3396 194.97 70.2591C194.989 70.2115 195.02 70.1731 195.064 70.1438C195.108 70.1145 195.157 70.0944 195.212 70.0834C195.267 70.0725 195.322 70.0725 195.377 70.0834C195.432 70.0944 195.479 70.1164 195.519 70.1493C195.53 70.1603 195.541 70.1731 195.552 70.1877C195.563 70.2024 195.573 70.2189 195.58 70.2372C195.598 70.2847 195.609 70.3268 195.613 70.3634C195.624 70.4147 195.629 70.4604 195.629 70.5007C195.629 70.9582 195.629 71.4249 195.629 71.9007C195.633 72.3765 195.637 72.8432 195.64 73.3007C195.64 73.3519 195.642 73.4032 195.646 73.4544C195.649 73.502 195.649 73.5514 195.646 73.6026Z" fill="white"/>
|
||||
<path d="M243.706 80.0002H222.294C220.475 80.0002 219 78.5253 219 76.706V73.9609H247V76.706C247 78.5253 245.525 80.0002 243.706 80.0002Z" fill="#D3DCFB"/>
|
||||
<path d="M222.294 78.9021C221.083 78.9021 220.098 77.917 220.098 76.706V73.9609H245.902V76.706C245.902 77.917 244.916 78.9021 243.705 78.9021H222.294Z" fill="#6A0DB4"/>
|
||||
<path d="M243.706 54.1963H222.294C220.478 54.1963 219 55.674 219 57.4904V74.51C219 76.3264 220.478 77.8041 222.294 77.8041H243.706C245.522 77.8041 247 76.3264 247 74.51C247 74.1272 247 57.9838 247 57.4904C247 55.674 245.522 54.1963 243.706 54.1963Z" fill="#EBF5FC"/>
|
||||
<path d="M222.294 76.706C221.081 76.706 220.098 75.7228 220.098 74.5099V69.5687C220.098 68.9623 220.589 68.4707 221.196 68.4707H244.804C245.41 68.4707 245.902 68.9623 245.902 69.5687V74.5099C245.902 75.7228 244.918 76.706 243.705 76.706H222.294Z" fill="#A12BFF"/>
|
||||
<path d="M225.039 57.49C225.646 57.49 226.137 56.9984 226.137 56.392C226.137 55.7856 225.646 55.2939 225.039 55.2939C224.433 55.2939 223.941 55.7856 223.941 56.392C223.941 56.9984 224.433 57.49 225.039 57.49Z" fill="#AAB9E5"/>
|
||||
<path d="M225.038 56.9412C224.584 56.9412 224.215 56.5725 224.215 56.1176V52.8235C224.215 52.3687 224.584 52 225.038 52C225.493 52 225.862 52.3687 225.862 52.8235V56.1176C225.862 56.5725 225.493 56.9412 225.038 56.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M240.961 57.49C241.568 57.49 242.059 56.9984 242.059 56.392C242.059 55.7856 241.568 55.2939 240.961 55.2939C240.355 55.2939 239.863 55.7856 239.863 56.392C239.863 56.9984 240.355 57.49 240.961 57.49Z" fill="#AAB9E5"/>
|
||||
<path d="M240.96 56.9412C240.505 56.9412 240.137 56.5725 240.137 56.1176V52.8235C240.137 52.3687 240.505 52 240.96 52C241.415 52 241.784 52.3687 241.784 52.8235V56.1176C241.784 56.5725 241.415 56.9412 240.96 56.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M233 57.49C233.607 57.49 234.098 56.9984 234.098 56.392C234.098 55.7856 233.607 55.2939 233 55.2939C232.394 55.2939 231.902 55.7856 231.902 56.392C231.902 56.9984 232.394 57.49 233 57.49Z" fill="#AAB9E5"/>
|
||||
<path d="M232.999 56.9412C232.545 56.9412 232.176 56.5725 232.176 56.1176V52.8235C232.176 52.3687 232.545 52 232.999 52C233.454 52 233.823 52.3687 233.823 52.8235V56.1176C233.823 56.5725 233.454 56.9412 232.999 56.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M235.196 66.275C236.407 66.275 237.392 65.2898 237.392 64.0789V61.3338C237.392 60.1229 236.407 59.1377 235.196 59.1377C233.985 59.1377 233 60.1229 233 61.3338V64.0789C233 65.2898 233.985 66.275 235.196 66.275ZM234.098 61.3338C234.098 60.7283 234.591 60.2357 235.196 60.2357C235.802 60.2357 236.294 60.7283 236.294 61.3338V64.0789C236.294 64.6843 235.802 65.1769 235.196 65.1769C234.591 65.1769 234.098 64.6843 234.098 64.0789V61.3338Z" fill="#252A3F"/>
|
||||
<path d="M229.486 61.7727L230.804 60.7845V65.7256C230.804 66.0288 231.049 66.2747 231.353 66.2747C231.656 66.2747 231.902 66.0288 231.902 65.7256V59.6864C231.902 59.2351 231.385 58.9761 231.023 59.2472L228.827 60.8943C228.584 61.0762 228.535 61.4203 228.717 61.6629C228.899 61.9054 229.243 61.9546 229.486 61.7727Z" fill="#252A3F"/>
|
||||
<path d="M238.845 73.0966C238.893 73.2027 238.895 73.307 238.851 73.4095C238.807 73.5083 238.737 73.5999 238.642 73.684C238.547 73.7682 238.437 73.8414 238.313 73.9036C238.192 73.9659 238.077 74.0098 237.967 74.0354C237.846 74.061 237.718 74.072 237.583 74.0683C237.451 74.0683 237.317 74.0519 237.182 74.0189C237.05 73.9897 236.92 73.9457 236.792 73.8872C236.668 73.825 236.552 73.7499 236.446 73.6621C236.318 73.5559 236.217 73.4297 236.144 73.2833C236.075 73.1332 236.023 72.974 235.99 72.8056C235.958 72.6372 235.939 72.4689 235.936 72.3005C235.936 72.1285 235.941 71.9674 235.952 71.8174C235.963 71.6819 235.99 71.541 236.034 71.3946C236.078 71.2482 236.139 71.1055 236.216 70.9664C236.296 70.8236 236.391 70.6919 236.501 70.5711C236.615 70.4503 236.746 70.3478 236.896 70.2636C237.01 70.1978 237.136 70.1538 237.275 70.1319C237.418 70.1063 237.561 70.1008 237.703 70.1154C237.85 70.1264 237.987 70.1575 238.115 70.2087C238.247 70.2563 238.359 70.3222 238.45 70.4064C238.509 70.4576 238.569 70.529 238.631 70.6205C238.697 70.712 238.745 70.8053 238.774 70.9005C238.803 70.9957 238.803 71.0853 238.774 71.1695C238.748 71.25 238.675 71.305 238.554 71.3342C238.503 71.3489 238.457 71.3525 238.417 71.3452C238.377 71.3342 238.34 71.3178 238.307 71.2958C238.274 71.2702 238.243 71.2409 238.214 71.208C238.185 71.175 238.157 71.1421 238.132 71.1091C238.044 71.003 237.941 70.9316 237.824 70.895C237.707 70.8548 237.59 70.8456 237.473 70.8676C237.359 70.8859 237.251 70.9334 237.149 71.0103C237.05 71.0835 236.973 71.1787 236.918 71.2958C236.86 71.4202 236.812 71.5575 236.776 71.7076C236.743 71.854 236.724 72.004 236.721 72.1578C236.717 72.3078 236.73 72.4542 236.759 72.597C236.792 72.7397 236.847 72.866 236.924 72.9758C236.982 73.0636 237.054 73.135 237.138 73.1899C237.226 73.2448 237.319 73.2833 237.418 73.3052C237.517 73.3272 237.616 73.3308 237.714 73.3162C237.817 73.3016 237.916 73.2686 238.011 73.2174C238.04 73.2027 238.071 73.1826 238.104 73.157C238.141 73.1277 238.177 73.0984 238.214 73.0691C238.251 73.0399 238.287 73.0124 238.324 72.9868C238.364 72.9612 238.406 72.9429 238.45 72.9319C238.516 72.9099 238.587 72.9117 238.664 72.9374C238.745 72.963 238.805 73.0161 238.845 73.0966Z" fill="white"/>
|
||||
<path d="M233.174 70.7907L233.163 71.6526H233.383C233.533 71.649 233.666 71.6471 233.783 71.6471C233.901 71.6471 234.031 71.649 234.173 71.6526H234.201C234.245 71.6526 234.287 71.6545 234.327 71.6581C234.371 71.6581 234.413 71.6581 234.453 71.6581C234.497 71.6618 234.539 71.6691 234.58 71.6801C234.62 71.6874 234.66 71.6965 234.7 71.7075C234.763 71.7295 234.814 71.7624 234.854 71.8063C234.891 71.8539 234.909 71.907 234.909 71.9656C234.909 71.9839 234.909 72.0058 234.909 72.0314C234.909 72.0534 234.905 72.0735 234.898 72.0918C234.891 72.1321 234.867 72.1687 234.827 72.2016C234.808 72.2273 234.774 72.2456 234.722 72.2565C234.675 72.2712 234.627 72.2803 234.58 72.284C234.528 72.295 234.477 72.3005 234.426 72.3005H234.168L233.152 72.306L233.141 73.382L234.234 73.393H234.492C234.521 73.393 234.548 73.393 234.574 73.393C234.6 73.393 234.623 73.3948 234.645 73.3985C234.675 73.4058 234.7 73.4113 234.722 73.415C234.748 73.415 234.772 73.4186 234.794 73.426C234.838 73.4406 234.874 73.4607 234.903 73.4863C234.94 73.5229 234.964 73.5614 234.975 73.6016C234.978 73.6199 234.98 73.6401 234.98 73.662C234.984 73.6803 234.984 73.7005 234.98 73.7224C234.98 73.781 234.962 73.8341 234.925 73.8816C234.881 73.9329 234.83 73.9658 234.772 73.9805C234.695 74.0134 234.611 74.0299 234.519 74.0299C234.479 74.0335 234.437 74.0354 234.393 74.0354C234.349 74.0354 234.307 74.0372 234.267 74.0409H234.234C233.948 74.0482 233.652 74.0482 233.344 74.0409C233.271 74.0409 233.212 74.039 233.169 74.0354C233.125 74.0354 233.084 74.0354 233.048 74.0354C233.015 74.0354 232.98 74.0354 232.943 74.0354C232.907 74.0354 232.859 74.0354 232.801 74.0354C232.717 74.0427 232.647 74.028 232.592 73.9914C232.552 73.9658 232.521 73.9311 232.499 73.8871C232.488 73.8761 232.482 73.8652 232.482 73.8542C232.479 73.8469 232.475 73.8414 232.471 73.8377C232.468 73.8341 232.464 73.8286 232.46 73.8212C232.453 73.8029 232.447 73.7846 232.444 73.7663C232.44 73.7444 232.438 73.7243 232.438 73.706C232.435 73.6877 232.431 73.6694 232.427 73.6511C232.427 73.6328 232.426 73.6145 232.422 73.5961V73.5083C232.422 73.4937 232.422 73.479 232.422 73.4644C232.426 73.4497 232.427 73.4351 232.427 73.4205V72.9922L232.438 72.2016V71.4714C232.438 71.3397 232.438 71.2226 232.438 71.1201C232.442 71.0176 232.446 70.906 232.449 70.7852V70.7577C232.453 70.7175 232.455 70.6809 232.455 70.6479C232.458 70.6113 232.46 70.5747 232.46 70.5381C232.464 70.4649 232.484 70.3935 232.521 70.324C232.535 70.2947 232.55 70.2691 232.565 70.2471C232.583 70.2252 232.607 70.2069 232.636 70.1922C232.691 70.1593 232.748 70.1428 232.806 70.1428C232.835 70.1428 232.857 70.1446 232.872 70.1483V70.1428C232.938 70.1428 232.991 70.1428 233.031 70.1428C233.072 70.1428 233.11 70.1428 233.147 70.1428C233.187 70.1428 233.229 70.1428 233.273 70.1428C233.317 70.1392 233.377 70.1373 233.454 70.1373C233.6 70.1337 233.74 70.1318 233.871 70.1318C234.003 70.1318 234.138 70.1337 234.278 70.1373H234.3C234.34 70.141 234.382 70.1428 234.426 70.1428C234.47 70.1428 234.512 70.1446 234.552 70.1483C234.592 70.1483 234.633 70.1538 234.673 70.1648C234.713 70.1721 234.753 70.1831 234.794 70.1977C234.856 70.216 234.907 70.2471 234.947 70.2911C234.98 70.3423 234.997 70.3935 234.997 70.4448C234.997 70.4667 234.997 70.4887 234.997 70.5107C234.997 70.529 234.993 70.5473 234.986 70.5656C234.982 70.6022 234.96 70.6406 234.92 70.6809C234.905 70.6882 234.889 70.6973 234.871 70.7083C234.856 70.7193 234.838 70.7284 234.816 70.7358C234.794 70.7431 234.77 70.7486 234.744 70.7522C234.722 70.7522 234.7 70.7541 234.678 70.7577C234.649 70.765 234.622 70.7687 234.596 70.7687C234.574 70.7687 234.548 70.7687 234.519 70.7687H234.272L233.174 70.7742V70.7907Z" fill="white"/>
|
||||
<path d="M231.476 71.8122C231.483 71.933 231.481 72.0574 231.47 72.1855C231.463 72.3136 231.45 72.4381 231.432 72.5588C231.395 72.7675 231.327 72.9706 231.229 73.1683C231.13 73.3659 230.985 73.5343 230.795 73.6734C230.597 73.8198 230.372 73.9204 230.12 73.9753C229.867 74.0266 229.616 74.0577 229.367 74.0687C229.283 74.076 229.197 74.0778 229.109 74.0741C229.025 74.0741 228.943 74.065 228.862 74.0467C228.797 74.0357 228.747 74.0156 228.714 73.9863C228.696 73.9753 228.681 73.9607 228.67 73.9424C228.659 73.9241 228.65 73.9058 228.643 73.8875C228.632 73.8692 228.623 73.8509 228.615 73.8326C228.612 73.8106 228.606 73.7887 228.599 73.7667C228.595 73.7484 228.592 73.7319 228.588 73.7173C228.588 73.699 228.588 73.6825 228.588 73.6679V70.533C228.588 70.5073 228.588 70.4836 228.588 70.4616C228.588 70.4396 228.592 70.4177 228.599 70.3957C228.606 70.3445 228.617 70.3024 228.632 70.2694C228.646 70.2255 228.667 70.1944 228.692 70.1761C228.714 70.1578 228.736 70.145 228.758 70.1377C228.78 70.1267 228.8 70.1175 228.818 70.1102C228.84 70.1029 228.862 70.1029 228.884 70.1102C228.91 70.1139 228.937 70.1084 228.967 70.0938L229.884 70.1157C230.125 70.123 230.341 70.1798 230.531 70.2859C230.722 70.3884 230.885 70.5202 231.02 70.6812C231.155 70.8422 231.262 71.0234 231.338 71.2247C231.415 71.4224 231.461 71.6182 231.476 71.8122ZM230.455 72.8553C230.524 72.7455 230.575 72.6192 230.608 72.4765C230.641 72.3338 230.656 72.1892 230.652 72.0428C230.649 71.8927 230.628 71.7481 230.592 71.609C230.555 71.4663 230.504 71.34 230.438 71.2302C230.387 71.1497 230.321 71.0838 230.24 71.0326C230.16 70.9813 230.07 70.9429 229.971 70.9173C229.873 70.888 229.766 70.8679 229.653 70.8569C229.543 70.8459 229.435 70.8404 229.329 70.8404C229.333 70.9466 229.335 71.049 229.335 71.1479C229.335 71.2467 229.335 71.351 229.335 71.4608C229.331 71.5926 229.329 71.7207 229.329 71.8451C229.329 71.9696 229.329 72.0904 229.329 72.2075V73.3275C229.443 73.3238 229.551 73.3183 229.653 73.311C229.759 73.3 229.86 73.2781 229.955 73.2451C230.054 73.2122 230.143 73.1664 230.224 73.1079C230.308 73.0456 230.385 72.9615 230.455 72.8553Z" fill="white"/>
|
||||
<path d="M103.706 45.0002H82.2941C80.4748 45.0002 79 43.5253 79 41.706V38.9609H107V41.706C107 43.5253 105.525 45.0002 103.706 45.0002Z" fill="#D3DCFB"/>
|
||||
<path d="M82.2937 43.9021C81.0828 43.9021 80.0977 42.917 80.0977 41.706V38.9609H105.902V41.706C105.902 42.917 104.916 43.9021 103.705 43.9021H82.2937Z" fill="#6A0DB4"/>
|
||||
<path d="M103.706 19.1963H82.2941C80.4777 19.1963 79 20.674 79 22.4904V39.51C79 41.3264 80.4777 42.8041 82.2941 42.8041H103.706C105.522 42.8041 107 41.3264 107 39.51C107 39.1272 107 22.9838 107 22.4904C107 20.674 105.522 19.1963 103.706 19.1963Z" fill="#EBF5FC"/>
|
||||
<path d="M82.2937 41.706C81.0809 41.706 80.0977 40.7228 80.0977 39.5099V34.5687C80.0977 33.9623 80.5892 33.4707 81.1957 33.4707H104.804C105.41 33.4707 105.902 33.9623 105.902 34.5687V39.5099C105.902 40.7228 104.918 41.706 103.705 41.706H82.2937Z" fill="#A12BFF"/>
|
||||
<path d="M85.0394 22.49C85.6459 22.49 86.1375 21.9984 86.1375 21.392C86.1375 20.7856 85.6459 20.2939 85.0394 20.2939C84.433 20.2939 83.9414 20.7856 83.9414 21.392C83.9414 21.9984 84.433 22.49 85.0394 22.49Z" fill="#AAB9E5"/>
|
||||
<path d="M85.0384 21.9412C84.5836 21.9412 84.2148 21.5725 84.2148 21.1176V17.8235C84.2148 17.3687 84.5836 17 85.0384 17C85.4932 17 85.8619 17.3687 85.8619 17.8235V21.1176C85.8619 21.5725 85.4932 21.9412 85.0384 21.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M100.961 22.49C101.568 22.49 102.059 21.9984 102.059 21.392C102.059 20.7856 101.568 20.2939 100.961 20.2939C100.355 20.2939 99.8633 20.7856 99.8633 21.392C99.8633 21.9984 100.355 22.49 100.961 22.49Z" fill="#AAB9E5"/>
|
||||
<path d="M100.96 21.9412C100.505 21.9412 100.137 21.5725 100.137 21.1176V17.8235C100.137 17.3687 100.505 17 100.96 17C101.415 17 101.784 17.3687 101.784 17.8235V21.1176C101.784 21.5725 101.415 21.9412 100.96 21.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M93.0004 22.49C93.6068 22.49 94.0984 21.9984 94.0984 21.392C94.0984 20.7856 93.6068 20.2939 93.0004 20.2939C92.394 20.2939 91.9023 20.7856 91.9023 21.392C91.9023 21.9984 92.394 22.49 93.0004 22.49Z" fill="#AAB9E5"/>
|
||||
<path d="M92.9993 21.9412C92.5445 21.9412 92.1758 21.5725 92.1758 21.1176V17.8235C92.1758 17.3687 92.5445 17 92.9993 17C93.4541 17 93.8228 17.3687 93.8228 17.8235V21.1176C93.8228 21.5725 93.4541 21.9412 92.9993 21.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M95.1961 31.275C96.407 31.275 97.3922 30.2898 97.3922 29.0789V26.3338C97.3922 25.1229 96.407 24.1377 95.1961 24.1377C93.9852 24.1377 93 25.1229 93 26.3338V29.0789C93 30.2898 93.9852 31.275 95.1961 31.275ZM94.098 26.3338C94.098 25.7283 94.5906 25.2357 95.1961 25.2357C95.8015 25.2357 96.2941 25.7283 96.2941 26.3338V29.0789C96.2941 29.6843 95.8015 30.1769 95.1961 30.1769C94.5906 30.1769 94.098 29.6843 94.098 29.0789V26.3338Z" fill="#252A3F"/>
|
||||
<path d="M89.4859 26.7727L90.8035 25.7845V30.7256C90.8035 31.0288 91.0494 31.2747 91.3525 31.2747C91.6557 31.2747 91.9016 31.0288 91.9016 30.7256V24.6864C91.9016 24.2351 91.3848 23.9761 91.0231 24.2472L88.827 25.8943C88.5845 26.0762 88.5353 26.4203 88.7172 26.6629C88.8992 26.9054 89.2433 26.9546 89.4859 26.7727Z" fill="#252A3F"/>
|
||||
<path d="M98.0831 36.9939C98.1892 37.0635 98.2789 37.1458 98.3521 37.241C98.4289 37.3325 98.4893 37.446 98.5333 37.5814C98.5808 37.7315 98.6046 37.8833 98.6046 38.0371C98.6083 38.1871 98.5808 38.3281 98.5223 38.4598C98.4674 38.5879 98.3777 38.7014 98.2533 38.8002C98.1325 38.8954 97.9733 38.9631 97.7756 39.0033C97.6695 39.029 97.545 39.0491 97.4023 39.0637C97.2595 39.0784 97.1314 39.0857 97.018 39.0857C96.8752 39.0894 96.727 39.0894 96.5733 39.0857C96.4232 39.0857 96.2768 39.0711 96.134 39.0418C96.0718 39.0235 96.0261 38.9924 95.9968 38.9484C95.9712 38.9009 95.9529 38.8478 95.9419 38.7892C95.9272 38.7563 95.9199 38.7233 95.9199 38.6904V35.572C95.9199 35.4695 95.9401 35.3908 95.9803 35.3359C96.0242 35.2773 96.081 35.2352 96.1505 35.2096C96.2201 35.1803 96.2987 35.1639 96.3866 35.1602C96.4744 35.1529 96.5659 35.1492 96.6611 35.1492C96.7343 35.1492 96.8075 35.1492 96.8807 35.1492C96.9576 35.1456 97.0344 35.1456 97.1113 35.1492C97.2321 35.1529 97.3565 35.1639 97.4846 35.1822C97.6164 35.1968 97.7408 35.2261 97.858 35.27C97.9129 35.2883 97.9714 35.3139 98.0336 35.3469C98.0959 35.3762 98.1453 35.4128 98.1819 35.4567C98.299 35.5628 98.385 35.6873 98.4399 35.83C98.4985 35.9691 98.5241 36.1118 98.5168 36.2582C98.5095 36.401 98.4692 36.5382 98.396 36.67C98.3265 36.8018 98.2221 36.9098 98.0831 36.9939ZM97.1223 38.4488C97.2357 38.4415 97.351 38.4287 97.4682 38.4104C97.5853 38.3921 97.6658 38.3573 97.7097 38.3061C97.7573 38.2475 97.7902 38.1798 97.8085 38.103C97.8305 38.0224 97.836 37.9419 97.825 37.8614C97.8177 37.7772 97.7939 37.6985 97.7536 37.6253C97.717 37.5484 97.6676 37.4881 97.6054 37.4441C97.5212 37.3782 97.4242 37.3362 97.3144 37.3179C97.2046 37.2959 97.0967 37.2849 96.9905 37.2849C96.9393 37.2849 96.8917 37.2867 96.8478 37.2904C96.8075 37.2904 96.7709 37.2959 96.738 37.3069C96.7087 37.3142 96.6867 37.3307 96.6721 37.3563C96.6574 37.3819 96.6501 37.4203 96.6501 37.4716C96.6574 37.5667 96.6574 37.6619 96.6501 37.7571C96.6428 37.8522 96.6391 37.9437 96.6391 38.0316C96.6391 38.0828 96.6373 38.1396 96.6336 38.2018C96.6336 38.2603 96.6538 38.3098 96.694 38.35C96.7343 38.3903 96.7929 38.4177 96.8697 38.4324C96.9466 38.447 97.0308 38.4525 97.1223 38.4488ZM97.2321 35.8135C97.1186 35.8099 97.0235 35.8081 96.9466 35.8081C96.8734 35.8044 96.8148 35.8099 96.7709 35.8245C96.7306 35.8355 96.7014 35.863 96.6831 35.9069C96.6684 35.9471 96.6629 36.0094 96.6666 36.0935C96.6666 36.1631 96.6648 36.2326 96.6611 36.3022C96.6611 36.3681 96.6611 36.4339 96.6611 36.4998C96.6611 36.573 96.6849 36.6279 96.7325 36.6645C96.7801 36.6975 96.8386 36.7176 96.9082 36.7249C96.9814 36.7322 97.0564 36.7322 97.1333 36.7249C97.2138 36.7176 97.2833 36.7084 97.3419 36.6975C97.4736 36.6755 97.5743 36.6316 97.6438 36.5657C97.717 36.4962 97.7591 36.3955 97.7701 36.2637C97.7848 36.099 97.7408 35.9856 97.6384 35.9233C97.5395 35.8575 97.4041 35.8209 97.2321 35.8135Z" fill="white"/>
|
||||
<path d="M93.1662 35.7916L93.1552 36.6536H93.3748C93.5249 36.6499 93.6585 36.6481 93.7756 36.6481C93.8928 36.6481 94.0227 36.6499 94.1654 36.6536H94.1929C94.2368 36.6536 94.2789 36.6554 94.3192 36.6591C94.3631 36.6591 94.4052 36.6591 94.4454 36.6591C94.4894 36.6627 94.5314 36.6701 94.5717 36.681C94.612 36.6884 94.6522 36.6975 94.6925 36.7085C94.7547 36.7305 94.806 36.7634 94.8462 36.8073C94.8828 36.8549 94.9011 36.908 94.9011 36.9665C94.9011 36.9848 94.9011 37.0068 94.9011 37.0324C94.9011 37.0544 94.8975 37.0745 94.8901 37.0928C94.8828 37.1331 94.859 37.1697 94.8188 37.2026C94.8005 37.2282 94.7657 37.2465 94.7145 37.2575C94.6669 37.2722 94.6193 37.2813 94.5717 37.285C94.5205 37.2959 94.4692 37.3014 94.418 37.3014H94.1599L93.1443 37.3069L93.1333 38.383L94.2258 38.394H94.4839C94.5131 38.394 94.5406 38.394 94.5662 38.394C94.5918 38.394 94.6156 38.3958 94.6376 38.3995C94.6669 38.4068 94.6925 38.4123 94.7145 38.416C94.7401 38.416 94.7639 38.4196 94.7858 38.4269C94.8297 38.4416 94.8663 38.4617 94.8956 38.4873C94.9322 38.5239 94.956 38.5624 94.967 38.6026C94.9707 38.6209 94.9725 38.641 94.9725 38.663C94.9762 38.6813 94.9762 38.7014 94.9725 38.7234C94.9725 38.782 94.9542 38.835 94.9176 38.8826C94.8737 38.9339 94.8224 38.9668 94.7639 38.9814C94.687 39.0144 94.6028 39.0309 94.5113 39.0309C94.4711 39.0345 94.429 39.0363 94.385 39.0363C94.3411 39.0363 94.299 39.0382 94.2588 39.0418H94.2258C93.9403 39.0492 93.6439 39.0492 93.3364 39.0418C93.2632 39.0418 93.2047 39.04 93.1607 39.0363C93.1168 39.0363 93.0765 39.0363 93.0399 39.0363C93.007 39.0363 92.9722 39.0363 92.9356 39.0363C92.899 39.0363 92.8514 39.0363 92.7929 39.0363C92.7087 39.0437 92.6392 39.029 92.5843 38.9924C92.544 38.9668 92.5129 38.932 92.4909 38.8881C92.4799 38.8771 92.4745 38.8661 92.4745 38.8552C92.4708 38.8478 92.4671 38.8424 92.4635 38.8387C92.4598 38.835 92.4562 38.8295 92.4525 38.8222C92.4452 38.8039 92.4397 38.7856 92.436 38.7673C92.4324 38.7454 92.4305 38.7252 92.4305 38.7069C92.4269 38.6886 92.4232 38.6703 92.4196 38.652C92.4196 38.6337 92.4177 38.6154 92.4141 38.5971V38.5093C92.4141 38.4946 92.4141 38.48 92.4141 38.4654C92.4177 38.4507 92.4196 38.4361 92.4196 38.4214V37.9932L92.4305 37.2026V36.4724C92.4305 36.3407 92.4305 36.2235 92.4305 36.121C92.4342 36.0186 92.4379 35.9069 92.4415 35.7861V35.7587C92.4452 35.7184 92.447 35.6818 92.447 35.6489C92.4507 35.6123 92.4525 35.5757 92.4525 35.5391C92.4562 35.4659 92.4763 35.3945 92.5129 35.325C92.5275 35.2957 92.5422 35.2701 92.5568 35.2481C92.5751 35.2261 92.5989 35.2078 92.6282 35.1932C92.6831 35.1603 92.7398 35.1438 92.7984 35.1438C92.8277 35.1438 92.8496 35.1456 92.8643 35.1493V35.1438C92.9301 35.1438 92.9832 35.1438 93.0235 35.1438C93.0637 35.1438 93.1022 35.1438 93.1388 35.1438C93.179 35.1438 93.2211 35.1438 93.265 35.1438C93.309 35.1401 93.3694 35.1383 93.4462 35.1383C93.5926 35.1346 93.7317 35.1328 93.8635 35.1328C93.9952 35.1328 94.1307 35.1346 94.2697 35.1383H94.2917C94.332 35.142 94.3741 35.1438 94.418 35.1438C94.4619 35.1438 94.504 35.1456 94.5443 35.1493C94.5845 35.1493 94.6248 35.1548 94.665 35.1658C94.7053 35.1731 94.7456 35.1841 94.7858 35.1987C94.848 35.217 94.8993 35.2481 94.9396 35.292C94.9725 35.3433 94.989 35.3945 94.989 35.4458C94.989 35.4677 94.989 35.4897 94.989 35.5116C94.989 35.5299 94.9853 35.5482 94.978 35.5665C94.9743 35.6031 94.9524 35.6416 94.9121 35.6818C94.8975 35.6892 94.881 35.6983 94.8627 35.7093C94.848 35.7203 94.8297 35.7294 94.8078 35.7367C94.7858 35.7441 94.762 35.7495 94.7364 35.7532C94.7145 35.7532 94.6925 35.755 94.6705 35.7587C94.6413 35.766 94.6138 35.7697 94.5882 35.7697C94.5662 35.7697 94.5406 35.7697 94.5113 35.7697H94.2643L93.1662 35.7752V35.7916Z" fill="white"/>
|
||||
<path d="M91.4967 35.2971C91.5297 35.341 91.5498 35.3923 91.5571 35.4508C91.5571 35.4728 91.5553 35.4947 91.5516 35.5167C91.5516 35.535 91.5498 35.5533 91.5461 35.5716C91.5425 35.6119 91.5187 35.6503 91.4748 35.6869C91.4491 35.7052 91.4162 35.7235 91.3759 35.7418C91.354 35.7491 91.3302 35.7546 91.3046 35.7583C91.2826 35.7583 91.257 35.7601 91.2277 35.7638C91.2057 35.7711 91.182 35.7747 91.1563 35.7747C91.1307 35.7747 91.1051 35.7747 91.0795 35.7747H90.8324L89.685 35.7802V35.7967L89.6795 36.6916C89.7087 36.6916 89.7399 36.6916 89.7728 36.6916C89.8094 36.6916 89.8533 36.6898 89.9046 36.6861C90.051 36.6861 90.1809 36.6861 90.2944 36.6861C90.4115 36.6861 90.5396 36.6879 90.6787 36.6916H90.7116C90.7519 36.6916 90.7921 36.6934 90.8324 36.6971C90.8763 36.6971 90.9203 36.6971 90.9642 36.6971C91.0044 36.7008 91.0447 36.7062 91.085 36.7136C91.1252 36.7172 91.1655 36.7264 91.2057 36.741C91.2716 36.763 91.3192 36.7977 91.3485 36.8453C91.3887 36.8929 91.4089 36.9423 91.4089 36.9936C91.4089 37.0155 91.4089 37.0375 91.4089 37.0594C91.4089 37.0777 91.4052 37.0979 91.3979 37.1198C91.3942 37.1491 91.3704 37.1857 91.3265 37.2296C91.2972 37.2553 91.2625 37.2717 91.2222 37.2791C91.2039 37.2864 91.182 37.2937 91.1563 37.301C91.1344 37.3047 91.1106 37.3083 91.085 37.312C91.0593 37.3157 91.0337 37.3193 91.0081 37.323C90.9861 37.323 90.9605 37.323 90.9312 37.323H90.6787L89.6685 37.3285L89.652 38.6022V38.6461C89.652 38.6644 89.6502 38.6827 89.6465 38.701C89.6465 38.7157 89.6447 38.7321 89.641 38.7504C89.6337 38.7687 89.6264 38.7889 89.6191 38.8108C89.6154 38.8291 89.6099 38.8474 89.6026 38.8657C89.577 38.917 89.5532 38.9517 89.5312 38.97C89.491 38.9993 89.4416 39.0194 89.383 39.0304C89.2842 39.0524 89.1908 39.0414 89.103 38.9975C89.0847 38.9865 89.0664 38.9737 89.0481 38.9591C89.0335 38.9408 89.0206 38.9188 89.0097 38.8932C89.0023 38.8785 88.9987 38.8676 88.9987 38.8602L88.9822 38.8273C88.9712 38.809 88.9639 38.7907 88.9603 38.7724C88.9566 38.7504 88.9529 38.7303 88.9493 38.712C88.9493 38.6937 88.9474 38.6754 88.9438 38.6571C88.9438 38.6388 88.942 38.6205 88.9383 38.6022C88.9346 38.5729 88.9346 38.5436 88.9383 38.5144V38.4265L88.9438 37.9983L88.9493 37.2077C88.9529 37.0906 88.9548 36.9716 88.9548 36.8508C88.9548 36.73 88.9548 36.6056 88.9548 36.4775C88.9511 36.3457 88.9493 36.2286 88.9493 36.1261C88.9529 36.0236 88.9584 35.912 88.9657 35.7912V35.7638C88.9694 35.7235 88.9712 35.6869 88.9712 35.654C88.9712 35.6174 88.9749 35.5808 88.9822 35.5442C88.9895 35.4636 89.0078 35.3923 89.0371 35.33C89.0627 35.2678 89.0993 35.2239 89.1469 35.1983C89.2018 35.1653 89.2604 35.1489 89.3226 35.1489C89.3519 35.1489 89.3757 35.1507 89.394 35.1544V35.1489C89.4599 35.1489 89.5129 35.1489 89.5532 35.1489C89.5935 35.1489 89.6319 35.1489 89.6685 35.1489C89.7051 35.1489 89.7454 35.1489 89.7893 35.1489C89.8332 35.1452 89.8918 35.1434 89.965 35.1434C90.2578 35.1397 90.5469 35.1397 90.8324 35.1434H90.8599C90.9001 35.147 90.9404 35.1489 90.9806 35.1489C91.0246 35.1489 91.0685 35.1507 91.1124 35.1544C91.1527 35.1544 91.1929 35.1598 91.2332 35.1708C91.2735 35.1781 91.3137 35.1891 91.354 35.2038C91.4162 35.2221 91.4638 35.2532 91.4967 35.2971Z" fill="white"/>
|
||||
<path d="M138.706 45.0002H117.294C115.475 45.0002 114 43.5253 114 41.706V38.9609H142V41.706C142 43.5253 140.525 45.0002 138.706 45.0002Z" fill="#D3DCFB"/>
|
||||
<path d="M117.294 43.9021C116.083 43.9021 115.098 42.917 115.098 41.706V38.9609H140.902V41.706C140.902 42.917 139.916 43.9021 138.705 43.9021H117.294Z" fill="#6A0DB4"/>
|
||||
<path d="M138.706 19.1963H117.294C115.478 19.1963 114 20.674 114 22.4904V39.51C114 41.3264 115.478 42.8041 117.294 42.8041H138.706C140.522 42.8041 142 41.3264 142 39.51C142 39.1272 142 22.9838 142 22.4904C142 20.674 140.522 19.1963 138.706 19.1963Z" fill="#EBF5FC"/>
|
||||
<path d="M117.294 41.706C116.081 41.706 115.098 40.7228 115.098 39.5099V34.5687C115.098 33.9623 115.589 33.4707 116.196 33.4707H139.804C140.41 33.4707 140.902 33.9623 140.902 34.5687V39.5099C140.902 40.7228 139.918 41.706 138.705 41.706H117.294Z" fill="#A12BFF"/>
|
||||
<path d="M120.039 22.49C120.646 22.49 121.137 21.9984 121.137 21.392C121.137 20.7856 120.646 20.2939 120.039 20.2939C119.433 20.2939 118.941 20.7856 118.941 21.392C118.941 21.9984 119.433 22.49 120.039 22.49Z" fill="#AAB9E5"/>
|
||||
<path d="M120.038 21.9412C119.584 21.9412 119.215 21.5725 119.215 21.1176V17.8235C119.215 17.3687 119.584 17 120.038 17C120.493 17 120.862 17.3687 120.862 17.8235V21.1176C120.862 21.5725 120.493 21.9412 120.038 21.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M135.961 22.49C136.568 22.49 137.059 21.9984 137.059 21.392C137.059 20.7856 136.568 20.2939 135.961 20.2939C135.355 20.2939 134.863 20.7856 134.863 21.392C134.863 21.9984 135.355 22.49 135.961 22.49Z" fill="#AAB9E5"/>
|
||||
<path d="M135.96 21.9412C135.505 21.9412 135.137 21.5725 135.137 21.1176V17.8235C135.137 17.3687 135.505 17 135.96 17C136.415 17 136.784 17.3687 136.784 17.8235V21.1176C136.784 21.5725 136.415 21.9412 135.96 21.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M128 22.49C128.607 22.49 129.098 21.9984 129.098 21.392C129.098 20.7856 128.607 20.2939 128 20.2939C127.394 20.2939 126.902 20.7856 126.902 21.392C126.902 21.9984 127.394 22.49 128 22.49Z" fill="#AAB9E5"/>
|
||||
<path d="M127.999 21.9412C127.545 21.9412 127.176 21.5725 127.176 21.1176V17.8235C127.176 17.3687 127.545 17 127.999 17C128.454 17 128.823 17.3687 128.823 17.8235V21.1176C128.823 21.5725 128.454 21.9412 127.999 21.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M130.196 31.275C131.407 31.275 132.392 30.2898 132.392 29.0789V26.3338C132.392 25.1229 131.407 24.1377 130.196 24.1377C128.985 24.1377 128 25.1229 128 26.3338V29.0789C128 30.2898 128.985 31.275 130.196 31.275ZM129.098 26.3338C129.098 25.7283 129.591 25.2357 130.196 25.2357C130.802 25.2357 131.294 25.7283 131.294 26.3338V29.0789C131.294 29.6843 130.802 30.1769 130.196 30.1769C129.591 30.1769 129.098 29.6843 129.098 29.0789V26.3338Z" fill="#252A3F"/>
|
||||
<path d="M124.486 26.7727L125.804 25.7845V30.7256C125.804 31.0288 126.049 31.2747 126.353 31.2747C126.656 31.2747 126.902 31.0288 126.902 30.7256V24.6864C126.902 24.2351 126.385 23.9761 126.023 24.2472L123.827 25.8943C123.584 26.0762 123.535 26.4203 123.717 26.6629C123.899 26.9054 124.243 26.9546 124.486 26.7727Z" fill="#252A3F"/>
|
||||
<path d="M133.958 38.7786C133.962 38.8152 133.958 38.85 133.947 38.8829C133.94 38.9049 133.929 38.9232 133.914 38.9378C133.903 38.9525 133.888 38.9671 133.87 38.9817C133.837 39.0037 133.797 39.0238 133.749 39.0421C133.72 39.0495 133.691 39.0549 133.661 39.0586C133.636 39.0659 133.608 39.0659 133.579 39.0586C133.521 39.0549 133.469 39.033 133.425 38.9927C133.363 38.9415 133.312 38.8848 133.272 38.8225C133.253 38.7933 133.233 38.7603 133.211 38.7237C133.189 38.6871 133.169 38.6487 133.151 38.6084L132.541 37.45C132.512 37.45 132.483 37.4518 132.454 37.4555C132.424 37.4555 132.395 37.4573 132.366 37.461C132.289 37.4683 132.216 37.4701 132.146 37.4665C132.08 37.4628 132.011 37.4628 131.938 37.4665H131.833V38.4602C131.833 38.4895 131.831 38.5169 131.828 38.5425C131.828 38.5682 131.828 38.5956 131.828 38.6249C131.828 38.6432 131.826 38.667 131.822 38.6963C131.822 38.7255 131.82 38.753 131.817 38.7786C131.809 38.8189 131.793 38.861 131.767 38.9049C131.742 38.9451 131.707 38.9799 131.663 39.0092C131.586 39.0568 131.493 39.0696 131.383 39.0476C131.335 39.0366 131.29 39.0183 131.246 38.9927C131.231 38.9817 131.218 38.9689 131.207 38.9543C131.196 38.936 131.187 38.9177 131.18 38.8994C131.173 38.8811 131.165 38.8628 131.158 38.8445C131.154 38.8225 131.149 38.8024 131.141 38.7841C131.13 38.7475 131.125 38.7127 131.125 38.6798V35.5614C131.125 35.5394 131.125 35.5174 131.125 35.4955C131.129 35.4699 131.132 35.4479 131.136 35.4296C131.14 35.3893 131.152 35.3491 131.174 35.3088C131.185 35.2649 131.204 35.2338 131.229 35.2155C131.251 35.1935 131.284 35.1752 131.328 35.1606C131.376 35.1423 131.443 35.135 131.531 35.1386C131.696 35.1423 131.859 35.1441 132.02 35.1441C132.181 35.1441 132.342 35.1478 132.503 35.1551C132.609 35.1624 132.721 35.1752 132.838 35.1935C132.959 35.2082 133.07 35.2356 133.173 35.2759C133.239 35.3015 133.299 35.3271 133.354 35.3527C133.424 35.393 133.478 35.4314 133.519 35.468C133.647 35.5851 133.744 35.7261 133.81 35.8908C133.876 36.0555 133.909 36.222 133.909 36.3904C133.909 36.588 133.861 36.7692 133.766 36.9339C133.674 37.0986 133.526 37.2212 133.321 37.3017C133.314 37.3091 133.303 37.3146 133.288 37.3182C133.277 37.3182 133.268 37.32 133.261 37.3237L133.766 38.3394L133.815 38.4272C133.823 38.4419 133.832 38.4583 133.843 38.4766C133.854 38.495 133.863 38.5133 133.87 38.5316C133.881 38.5499 133.89 38.57 133.898 38.5919C133.909 38.6139 133.92 38.634 133.93 38.6523C133.941 38.7036 133.951 38.7457 133.958 38.7786ZM132.585 36.8241C132.651 36.8241 132.713 36.8131 132.772 36.7912C132.834 36.7655 132.889 36.7326 132.937 36.6923C132.988 36.6521 133.03 36.6063 133.063 36.5551C133.096 36.5002 133.114 36.4416 133.118 36.3794C133.133 36.1964 133.085 36.061 132.975 35.9731C132.865 35.8816 132.721 35.8322 132.541 35.8249C132.435 35.8176 132.318 35.8139 132.19 35.8139C132.066 35.8139 131.947 35.8139 131.833 35.8139C131.837 35.964 131.837 36.1177 131.833 36.2751C131.833 36.4288 131.833 36.6118 131.833 36.8241H132.585Z" fill="white"/>
|
||||
<path d="M130.18 38.6465C130.184 38.6685 130.186 38.6905 130.186 38.7124C130.19 38.7307 130.191 38.7527 130.191 38.7783C130.191 38.8222 130.179 38.8625 130.153 38.8991C130.142 38.9174 130.127 38.9357 130.109 38.954C130.091 38.9686 130.069 38.9814 130.043 38.9924C129.952 39.0437 129.855 39.062 129.752 39.0473C129.701 39.0327 129.655 39.0089 129.615 38.976C129.608 38.9686 129.602 38.965 129.598 38.965C129.595 38.9613 129.591 38.9558 129.587 38.9485C129.584 38.9448 129.58 38.9412 129.576 38.9375C129.573 38.9302 129.567 38.9247 129.56 38.921C129.542 38.9027 129.527 38.8863 129.516 38.8716C129.505 38.8533 129.494 38.835 129.483 38.8167C129.476 38.7984 129.467 38.782 129.456 38.7673C129.448 38.749 129.439 38.7307 129.428 38.7124C129.421 38.6978 129.414 38.685 129.406 38.674C129.399 38.6593 129.393 38.6447 129.39 38.6301C129.375 38.5971 129.366 38.5678 129.362 38.5422L129.247 38.2732C128.995 38.2732 128.742 38.275 128.489 38.2787C128.241 38.2787 127.99 38.2769 127.737 38.2732L127.622 38.5422C127.615 38.5569 127.609 38.5715 127.606 38.5861C127.606 38.6008 127.602 38.6154 127.595 38.6301C127.587 38.6447 127.58 38.6593 127.573 38.674C127.569 38.685 127.563 38.6978 127.556 38.7124C127.545 38.7307 127.534 38.749 127.523 38.7673C127.516 38.782 127.507 38.7984 127.496 38.8167C127.488 38.835 127.479 38.8533 127.468 38.8716C127.457 38.8863 127.443 38.9027 127.424 38.921C127.417 38.9247 127.412 38.9302 127.408 38.9375C127.404 38.9412 127.401 38.9448 127.397 38.9485C127.393 38.9558 127.39 38.9613 127.386 38.965C127.382 38.965 127.377 38.9686 127.369 38.976C127.329 39.0089 127.283 39.0327 127.232 39.0473C127.13 39.062 127.033 39.0437 126.941 38.9924C126.916 38.9814 126.894 38.9686 126.875 38.954C126.857 38.9357 126.842 38.9174 126.831 38.8991C126.806 38.8625 126.793 38.8222 126.793 38.7783C126.793 38.7527 126.793 38.7307 126.793 38.7124C126.797 38.6905 126.8 38.6685 126.804 38.6465C126.811 38.6136 126.82 38.5807 126.831 38.5477C126.842 38.5148 126.848 38.4983 126.848 38.4983L127.99 35.6873L128.023 35.5995C128.03 35.5775 128.039 35.5574 128.05 35.5391C128.061 35.5208 128.07 35.4988 128.078 35.4732C128.096 35.4256 128.116 35.3835 128.138 35.3469C128.149 35.325 128.162 35.3048 128.176 35.2865C128.191 35.2682 128.206 35.2499 128.22 35.2316C128.242 35.2024 128.273 35.1786 128.314 35.1603C128.365 35.142 128.424 35.1328 128.489 35.1328C128.559 35.1328 128.619 35.142 128.671 35.1603C128.711 35.1786 128.742 35.2024 128.764 35.2316C128.79 35.2646 128.817 35.303 128.846 35.3469C128.868 35.3835 128.888 35.4256 128.907 35.4732C128.914 35.4988 128.923 35.5208 128.934 35.5391C128.945 35.5574 128.954 35.5775 128.962 35.5995L128.995 35.6873L130.136 38.4983C130.136 38.4983 130.142 38.5148 130.153 38.5477C130.164 38.5807 130.173 38.6136 130.18 38.6465ZM128.879 37.3014C128.832 37.1953 128.782 37.0855 128.731 36.972C128.683 36.8586 128.632 36.7433 128.577 36.6261C128.563 36.5932 128.548 36.5603 128.533 36.5273C128.519 36.4907 128.504 36.4559 128.489 36.423C128.478 36.4559 128.466 36.4907 128.451 36.5273C128.436 36.5603 128.422 36.5932 128.407 36.6261C128.352 36.7433 128.299 36.8586 128.248 36.972C128.2 37.0855 128.153 37.1953 128.105 37.3014L128.006 37.543H128.978L128.879 37.3014Z" fill="white"/>
|
||||
<path d="M125.851 38.6247C125.848 38.6686 125.842 38.7144 125.835 38.7619C125.828 38.8095 125.815 38.8534 125.796 38.8937C125.778 38.9376 125.754 38.9706 125.725 38.9925C125.685 39.0291 125.637 39.0493 125.582 39.0529C125.531 39.0712 125.482 39.0767 125.434 39.0694C125.387 39.0621 125.343 39.0493 125.302 39.031C125.251 38.998 125.213 38.9596 125.187 38.9157C125.165 38.8681 125.149 38.8187 125.138 38.7674C125.127 38.7162 125.121 38.6631 125.121 38.6082C125.121 38.5533 125.121 38.5021 125.121 38.4545V38.0263L125.116 37.1863C125.116 37.1277 125.116 37.0819 125.116 37.049C125.116 37.0161 125.116 36.9868 125.116 36.9612C125.116 36.9319 125.114 36.9008 125.11 36.8678C125.11 36.8312 125.11 36.78 125.11 36.7141C125.11 36.7031 125.11 36.6848 125.11 36.6592C125.114 36.6299 125.112 36.5549 125.105 36.4341C124.962 36.672 124.843 36.8642 124.748 37.0106C124.656 37.1533 124.578 37.2649 124.512 37.3455C124.45 37.4223 124.395 37.4754 124.347 37.5047C124.299 37.5303 124.25 37.5449 124.199 37.5486C124.17 37.5523 124.14 37.5468 124.111 37.5321C124.082 37.5175 124.052 37.4992 124.023 37.4772C123.997 37.4553 123.972 37.4333 123.946 37.4114C123.924 37.3857 123.906 37.3619 123.891 37.34C123.803 37.2302 123.705 37.0984 123.595 36.9447C123.485 36.791 123.372 36.6043 123.254 36.3847C123.254 36.3883 123.253 36.4487 123.249 36.5659C123.249 36.683 123.249 36.8294 123.249 37.0051C123.249 37.1771 123.247 37.3638 123.243 37.5651C123.243 37.7627 123.242 37.9476 123.238 38.1196C123.238 38.2916 123.236 38.4362 123.233 38.5533C123.229 38.6668 123.225 38.7235 123.222 38.7235C123.222 38.7857 123.207 38.8443 123.178 38.8992C123.148 38.9504 123.108 38.9925 123.057 39.0255C123.009 39.0584 122.953 39.0767 122.887 39.0804C122.821 39.084 122.749 39.0657 122.673 39.0255C122.625 38.9962 122.588 38.9541 122.563 38.8992C122.541 38.8443 122.526 38.7931 122.519 38.7455C122.515 38.6942 122.511 38.6448 122.508 38.5972C122.508 38.5497 122.508 38.5002 122.508 38.449L122.513 38.0208L122.519 37.1753V36.4396C122.519 36.1212 122.53 35.8082 122.552 35.5008C122.552 35.4605 122.555 35.4239 122.563 35.391C122.574 35.3544 122.587 35.3196 122.601 35.2866C122.63 35.2281 122.669 35.1842 122.716 35.1549C122.771 35.1219 122.83 35.1055 122.892 35.1055C122.918 35.1055 122.942 35.1073 122.963 35.111C122.989 35.111 123.013 35.1128 123.035 35.1164C123.108 35.1311 123.17 35.175 123.222 35.2482C123.276 35.3178 123.328 35.3781 123.375 35.4294C123.405 35.4623 123.436 35.5026 123.469 35.5502C123.502 35.5978 123.534 35.6472 123.567 35.6984C123.6 35.7497 123.631 35.7991 123.661 35.8466C123.69 35.8942 123.716 35.9363 123.738 35.9729C123.833 36.1266 123.917 36.2676 123.99 36.3957C124.067 36.5238 124.138 36.6336 124.204 36.7251C124.215 36.7141 124.228 36.6995 124.243 36.6812C124.257 36.6592 124.272 36.6372 124.287 36.6153C124.305 36.5897 124.32 36.5659 124.331 36.5439C124.345 36.5219 124.356 36.5036 124.363 36.489C124.4 36.4304 124.437 36.3737 124.473 36.3188C124.51 36.2602 124.548 36.1998 124.589 36.1376C124.633 36.0717 124.676 36.0004 124.72 35.9235C124.768 35.8466 124.823 35.7588 124.885 35.66C124.911 35.6161 124.944 35.563 124.984 35.5008C125.024 35.4385 125.07 35.3781 125.121 35.3196C125.172 35.261 125.225 35.2116 125.28 35.1714C125.339 35.1274 125.397 35.1055 125.456 35.1055C125.485 35.1055 125.511 35.1073 125.533 35.111C125.555 35.111 125.577 35.1128 125.599 35.1164C125.643 35.1201 125.685 35.1402 125.725 35.1768C125.754 35.2061 125.776 35.2372 125.791 35.2702C125.806 35.3178 125.815 35.358 125.818 35.391C125.822 35.4166 125.824 35.4404 125.824 35.4623C125.828 35.4843 125.829 35.5063 125.829 35.5282C125.829 35.7332 125.831 35.9363 125.835 36.1376C125.839 36.3389 125.84 36.5421 125.84 36.747C125.84 36.9959 125.84 37.2521 125.84 37.5157C125.844 37.7792 125.846 38.0354 125.846 38.2843C125.846 38.3355 125.848 38.3904 125.851 38.449C125.855 38.5076 125.855 38.5661 125.851 38.6247Z" fill="white"/>
|
||||
<path d="M173.706 45.0002H152.294C150.475 45.0002 149 43.5253 149 41.706V38.9609H177V41.706C177 43.5253 175.525 45.0002 173.706 45.0002Z" fill="#D3DCFB"/>
|
||||
<path d="M152.294 43.9021C151.083 43.9021 150.098 42.917 150.098 41.706V38.9609H175.902V41.706C175.902 42.917 174.916 43.9021 173.705 43.9021H152.294Z" fill="#6A0DB4"/>
|
||||
<path d="M173.706 19.1963H152.294C150.478 19.1963 149 20.674 149 22.4904V39.51C149 41.3264 150.478 42.8041 152.294 42.8041H173.706C175.522 42.8041 177 41.3264 177 39.51C177 39.1272 177 22.9838 177 22.4904C177 20.674 175.522 19.1963 173.706 19.1963Z" fill="#EBF5FC"/>
|
||||
<path d="M152.294 41.706C151.081 41.706 150.098 40.7228 150.098 39.5099V34.5687C150.098 33.9623 150.589 33.4707 151.196 33.4707H174.804C175.41 33.4707 175.902 33.9623 175.902 34.5687V39.5099C175.902 40.7228 174.918 41.706 173.705 41.706H152.294Z" fill="#A12BFF"/>
|
||||
<path d="M155.039 22.49C155.646 22.49 156.137 21.9984 156.137 21.392C156.137 20.7856 155.646 20.2939 155.039 20.2939C154.433 20.2939 153.941 20.7856 153.941 21.392C153.941 21.9984 154.433 22.49 155.039 22.49Z" fill="#AAB9E5"/>
|
||||
<path d="M155.038 21.9412C154.584 21.9412 154.215 21.5725 154.215 21.1176V17.8235C154.215 17.3687 154.584 17 155.038 17C155.493 17 155.862 17.3687 155.862 17.8235V21.1176C155.862 21.5725 155.493 21.9412 155.038 21.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M170.961 22.49C171.568 22.49 172.059 21.9984 172.059 21.392C172.059 20.7856 171.568 20.2939 170.961 20.2939C170.355 20.2939 169.863 20.7856 169.863 21.392C169.863 21.9984 170.355 22.49 170.961 22.49Z" fill="#AAB9E5"/>
|
||||
<path d="M170.96 21.9412C170.505 21.9412 170.137 21.5725 170.137 21.1176V17.8235C170.137 17.3687 170.505 17 170.96 17C171.415 17 171.784 17.3687 171.784 17.8235V21.1176C171.784 21.5725 171.415 21.9412 170.96 21.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M163 22.49C163.607 22.49 164.098 21.9984 164.098 21.392C164.098 20.7856 163.607 20.2939 163 20.2939C162.394 20.2939 161.902 20.7856 161.902 21.392C161.902 21.9984 162.394 22.49 163 22.49Z" fill="#AAB9E5"/>
|
||||
<path d="M162.999 21.9412C162.545 21.9412 162.176 21.5725 162.176 21.1176V17.8235C162.176 17.3687 162.545 17 162.999 17C163.454 17 163.823 17.3687 163.823 17.8235V21.1176C163.823 21.5725 163.454 21.9412 162.999 21.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M165.196 31.275C166.407 31.275 167.392 30.2898 167.392 29.0789V26.3338C167.392 25.1229 166.407 24.1377 165.196 24.1377C163.985 24.1377 163 25.1229 163 26.3338V29.0789C163 30.2898 163.985 31.275 165.196 31.275ZM164.098 26.3338C164.098 25.7283 164.591 25.2357 165.196 25.2357C165.802 25.2357 166.294 25.7283 166.294 26.3338V29.0789C166.294 29.6843 165.802 30.1769 165.196 30.1769C164.591 30.1769 164.098 29.6843 164.098 29.0789V26.3338Z" fill="#252A3F"/>
|
||||
<path d="M159.486 26.7727L160.804 25.7845V30.7256C160.804 31.0288 161.049 31.2747 161.353 31.2747C161.656 31.2747 161.902 31.0288 161.902 30.7256V24.6864C161.902 24.2351 161.385 23.9761 161.023 24.2472L158.827 25.8943C158.584 26.0762 158.535 26.4203 158.717 26.6629C158.899 26.9054 159.243 26.9546 159.486 26.7727Z" fill="#252A3F"/>
|
||||
<path d="M168.669 38.7786C168.673 38.8152 168.669 38.85 168.658 38.8829C168.651 38.9049 168.64 38.9232 168.625 38.9378C168.614 38.9525 168.599 38.9671 168.581 38.9817C168.548 39.0037 168.508 39.0238 168.46 39.0421C168.431 39.0495 168.402 39.0549 168.372 39.0586C168.347 39.0659 168.319 39.0659 168.29 39.0586C168.231 39.0549 168.18 39.033 168.136 38.9927C168.074 38.9415 168.023 38.8848 167.983 38.8225C167.964 38.7933 167.944 38.7603 167.922 38.7237C167.9 38.6871 167.88 38.6487 167.862 38.6084L167.252 37.45C167.223 37.45 167.194 37.4518 167.165 37.4555C167.135 37.4555 167.106 37.4573 167.077 37.461C167 37.4683 166.927 37.4701 166.857 37.4665C166.791 37.4628 166.722 37.4628 166.648 37.4665H166.544V38.4602C166.544 38.4895 166.542 38.5169 166.539 38.5425C166.539 38.5682 166.539 38.5956 166.539 38.6249C166.539 38.6432 166.537 38.667 166.533 38.6963C166.533 38.7255 166.531 38.753 166.528 38.7786C166.52 38.8189 166.504 38.861 166.478 38.9049C166.453 38.9451 166.418 38.9799 166.374 39.0092C166.297 39.0568 166.204 39.0696 166.094 39.0476C166.046 39.0366 166.001 39.0183 165.957 38.9927C165.942 38.9817 165.929 38.9689 165.918 38.9543C165.907 38.936 165.898 38.9177 165.891 38.8994C165.884 38.8811 165.876 38.8628 165.869 38.8445C165.865 38.8225 165.86 38.8024 165.852 38.7841C165.841 38.7475 165.836 38.7127 165.836 38.6798V35.5614C165.836 35.5394 165.836 35.5174 165.836 35.4955C165.84 35.4699 165.843 35.4479 165.847 35.4296C165.851 35.3893 165.863 35.3491 165.885 35.3088C165.896 35.2649 165.915 35.2338 165.94 35.2155C165.962 35.1935 165.995 35.1752 166.039 35.1606C166.087 35.1423 166.154 35.135 166.242 35.1386C166.407 35.1423 166.57 35.1441 166.731 35.1441C166.892 35.1441 167.053 35.1478 167.214 35.1551C167.32 35.1624 167.432 35.1752 167.549 35.1935C167.67 35.2082 167.781 35.2356 167.884 35.2759C167.95 35.3015 168.01 35.3271 168.065 35.3527C168.134 35.393 168.189 35.4314 168.23 35.468C168.358 35.5851 168.455 35.7261 168.521 35.8908C168.587 36.0555 168.619 36.222 168.619 36.3904C168.619 36.588 168.572 36.7692 168.477 36.9339C168.385 37.0986 168.237 37.2212 168.032 37.3017C168.025 37.3091 168.014 37.3146 167.999 37.3182C167.988 37.3182 167.979 37.32 167.972 37.3237L168.477 38.3394L168.526 38.4272C168.533 38.4419 168.543 38.4583 168.554 38.4766C168.565 38.495 168.574 38.5133 168.581 38.5316C168.592 38.5499 168.601 38.57 168.608 38.5919C168.619 38.6139 168.63 38.634 168.641 38.6523C168.652 38.7036 168.662 38.7457 168.669 38.7786ZM167.296 36.8241C167.362 36.8241 167.424 36.8131 167.483 36.7912C167.545 36.7655 167.6 36.7326 167.648 36.6923C167.699 36.6521 167.741 36.6063 167.774 36.5551C167.807 36.5002 167.825 36.4416 167.829 36.3794C167.844 36.1964 167.796 36.061 167.686 35.9731C167.576 35.8816 167.432 35.8322 167.252 35.8249C167.146 35.8176 167.029 35.8139 166.901 35.8139C166.777 35.8139 166.658 35.8139 166.544 35.8139C166.548 35.964 166.548 36.1177 166.544 36.2751C166.544 36.4288 166.544 36.6118 166.544 36.8241H167.296Z" fill="white"/>
|
||||
<path d="M164.506 35.4786C164.645 35.6067 164.748 35.7604 164.814 35.9397C164.879 36.1154 164.905 36.2911 164.89 36.4668C164.876 36.6352 164.823 36.7907 164.731 36.9335C164.64 37.0726 164.501 37.1787 164.314 37.2519C164.168 37.3141 164.023 37.3581 163.88 37.3837C163.738 37.4093 163.58 37.4294 163.408 37.4441C163.331 37.4514 163.265 37.4569 163.21 37.4605C163.159 37.4605 163.099 37.4624 163.029 37.466C163.015 37.466 162.989 37.466 162.952 37.466C162.919 37.466 162.896 37.4679 162.881 37.4715V38.608C162.87 38.6775 162.855 38.7489 162.837 38.8221C162.823 38.8953 162.78 38.952 162.711 38.9923C162.671 39.0143 162.621 39.0271 162.563 39.0307C162.504 39.0344 162.451 39.0326 162.403 39.0252C162.352 39.0179 162.308 39.0051 162.272 38.9868C162.239 38.9648 162.211 38.9282 162.189 38.877C162.175 38.8441 162.16 38.8075 162.145 38.7672C162.134 38.7233 162.129 38.6702 162.129 38.608V35.5719C162.129 35.5463 162.131 35.5225 162.134 35.5005C162.138 35.4786 162.142 35.4566 162.145 35.4347C162.153 35.4164 162.158 35.3962 162.162 35.3743C162.166 35.3523 162.171 35.3322 162.178 35.3139C162.186 35.2956 162.193 35.2791 162.2 35.2645C162.211 35.2498 162.224 35.237 162.239 35.226C162.257 35.2077 162.284 35.1913 162.321 35.1766C162.361 35.162 162.42 35.1547 162.497 35.1547H162.508C162.621 35.1473 162.747 35.1418 162.887 35.1382C163.026 35.1309 163.141 35.1327 163.232 35.1437C163.284 35.151 163.331 35.1565 163.375 35.1601C163.419 35.1601 163.461 35.162 163.501 35.1656C163.545 35.1693 163.589 35.173 163.633 35.1766C163.677 35.1803 163.721 35.1858 163.765 35.1931C163.802 35.2004 163.835 35.2059 163.864 35.2096C163.897 35.2132 163.93 35.2187 163.963 35.226C163.992 35.2333 164.023 35.2407 164.056 35.248C164.093 35.2553 164.126 35.2681 164.155 35.2864C164.232 35.3084 164.296 35.3358 164.347 35.3688C164.398 35.4017 164.451 35.4383 164.506 35.4786ZM164.177 36.3845C164.18 36.2966 164.162 36.2198 164.122 36.1539C164.085 36.088 164.032 36.0331 163.963 35.9892C163.893 35.9452 163.814 35.9105 163.727 35.8848C163.639 35.8592 163.551 35.8409 163.463 35.8299C163.441 35.8299 163.41 35.8299 163.37 35.8299C163.333 35.8263 163.293 35.8245 163.249 35.8245C163.205 35.8208 163.163 35.819 163.123 35.819C163.086 35.8153 163.057 35.8135 163.035 35.8135C163.016 35.8098 162.995 35.808 162.969 35.808C162.943 35.808 162.914 35.808 162.881 35.808C162.885 35.9214 162.887 36.0313 162.887 36.1374C162.887 36.2399 162.887 36.3515 162.887 36.4723C162.883 36.5382 162.881 36.6041 162.881 36.6699C162.881 36.7358 162.881 36.7999 162.881 36.8621L163.221 36.8566C163.309 36.8566 163.406 36.8511 163.512 36.8401C163.619 36.8292 163.719 36.8072 163.814 36.7743C163.91 36.7413 163.99 36.6937 164.056 36.6315C164.126 36.5693 164.166 36.4869 164.177 36.3845Z" fill="white"/>
|
||||
<path d="M161.184 38.6465C161.188 38.6685 161.19 38.6905 161.19 38.7124C161.193 38.7307 161.195 38.7527 161.195 38.7783C161.195 38.8222 161.182 38.8625 161.157 38.8991C161.146 38.9174 161.131 38.9357 161.113 38.954C161.095 38.9686 161.073 38.9814 161.047 38.9924C160.956 39.0437 160.859 39.062 160.756 39.0473C160.705 39.0327 160.659 39.0089 160.619 38.976C160.612 38.9686 160.606 38.965 160.602 38.965C160.599 38.9613 160.595 38.9558 160.591 38.9485C160.588 38.9448 160.584 38.9412 160.58 38.9375C160.577 38.9302 160.571 38.9247 160.564 38.921C160.546 38.9027 160.531 38.8863 160.52 38.8716C160.509 38.8533 160.498 38.835 160.487 38.8167C160.48 38.7984 160.471 38.782 160.46 38.7673C160.452 38.749 160.443 38.7307 160.432 38.7124C160.425 38.6978 160.418 38.685 160.41 38.674C160.403 38.6593 160.397 38.6447 160.394 38.6301C160.379 38.5971 160.37 38.5678 160.366 38.5422L160.251 38.2732C159.998 38.2732 159.746 38.275 159.493 38.2787C159.244 38.2787 158.994 38.2769 158.741 38.2732L158.626 38.5422C158.619 38.5569 158.613 38.5715 158.609 38.5861C158.609 38.6008 158.606 38.6154 158.598 38.6301C158.591 38.6447 158.584 38.6593 158.576 38.674C158.573 38.685 158.567 38.6978 158.56 38.7124C158.549 38.7307 158.538 38.749 158.527 38.7673C158.52 38.782 158.511 38.7984 158.5 38.8167C158.492 38.835 158.483 38.8533 158.472 38.8716C158.461 38.8863 158.447 38.9027 158.428 38.921C158.421 38.9247 158.415 38.9302 158.412 38.9375C158.408 38.9412 158.404 38.9448 158.401 38.9485C158.397 38.9558 158.393 38.9613 158.39 38.965C158.386 38.965 158.381 38.9686 158.373 38.976C158.333 39.0089 158.287 39.0327 158.236 39.0473C158.134 39.062 158.037 39.0437 157.945 38.9924C157.919 38.9814 157.898 38.9686 157.879 38.954C157.861 38.9357 157.846 38.9174 157.835 38.8991C157.81 38.8625 157.797 38.8222 157.797 38.7783C157.797 38.7527 157.797 38.7307 157.797 38.7124C157.801 38.6905 157.804 38.6685 157.808 38.6465C157.815 38.6136 157.824 38.5807 157.835 38.5477C157.846 38.5148 157.852 38.4983 157.852 38.4983L158.994 35.6873L159.027 35.5995C159.034 35.5775 159.043 35.5574 159.054 35.5391C159.065 35.5208 159.074 35.4988 159.082 35.4732C159.1 35.4256 159.12 35.3835 159.142 35.3469C159.153 35.325 159.166 35.3048 159.18 35.2865C159.195 35.2682 159.21 35.2499 159.224 35.2316C159.246 35.2024 159.277 35.1786 159.318 35.1603C159.369 35.142 159.427 35.1328 159.493 35.1328C159.563 35.1328 159.623 35.142 159.675 35.1603C159.715 35.1786 159.746 35.2024 159.768 35.2316C159.793 35.2646 159.821 35.303 159.85 35.3469C159.872 35.3835 159.892 35.4256 159.911 35.4732C159.918 35.4988 159.927 35.5208 159.938 35.5391C159.949 35.5574 159.958 35.5775 159.966 35.5995L159.998 35.6873L161.14 38.4983C161.14 38.4983 161.146 38.5148 161.157 38.5477C161.168 38.5807 161.177 38.6136 161.184 38.6465ZM159.883 37.3014C159.836 37.1953 159.786 37.0855 159.735 36.972C159.687 36.8586 159.636 36.7433 159.581 36.6261C159.567 36.5932 159.552 36.5603 159.537 36.5273C159.523 36.4907 159.508 36.4559 159.493 36.423C159.482 36.4559 159.47 36.4907 159.455 36.5273C159.44 36.5603 159.426 36.5932 159.411 36.6261C159.356 36.7433 159.303 36.8586 159.252 36.972C159.204 37.0855 159.157 37.1953 159.109 37.3014L159.01 37.543H159.982L159.883 37.3014Z" fill="white"/>
|
||||
<path d="M208.706 45.0002H187.294C185.475 45.0002 184 43.5253 184 41.706V38.9609H212V41.706C212 43.5253 210.525 45.0002 208.706 45.0002Z" fill="#D3DCFB"/>
|
||||
<path d="M187.294 43.9021C186.083 43.9021 185.098 42.917 185.098 41.706V38.9609H210.902V41.706C210.902 42.917 209.916 43.9021 208.705 43.9021H187.294Z" fill="#6A0DB4"/>
|
||||
<path d="M208.706 19.1963H187.294C185.478 19.1963 184 20.674 184 22.4904V39.51C184 41.3264 185.478 42.8041 187.294 42.8041H208.706C210.522 42.8041 212 41.3264 212 39.51C212 39.1272 212 22.9838 212 22.4904C212 20.674 210.522 19.1963 208.706 19.1963Z" fill="#EBF5FC"/>
|
||||
<path d="M187.294 41.706C186.081 41.706 185.098 40.7228 185.098 39.5099V34.5687C185.098 33.9623 185.589 33.4707 186.196 33.4707H209.804C210.41 33.4707 210.902 33.9623 210.902 34.5687V39.5099C210.902 40.7228 209.918 41.706 208.705 41.706H187.294Z" fill="#A12BFF"/>
|
||||
<path d="M190.039 22.49C190.646 22.49 191.137 21.9984 191.137 21.392C191.137 20.7856 190.646 20.2939 190.039 20.2939C189.433 20.2939 188.941 20.7856 188.941 21.392C188.941 21.9984 189.433 22.49 190.039 22.49Z" fill="#AAB9E5"/>
|
||||
<path d="M190.038 21.9412C189.584 21.9412 189.215 21.5725 189.215 21.1176V17.8235C189.215 17.3687 189.584 17 190.038 17C190.493 17 190.862 17.3687 190.862 17.8235V21.1176C190.862 21.5725 190.493 21.9412 190.038 21.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M205.961 22.49C206.568 22.49 207.059 21.9984 207.059 21.392C207.059 20.7856 206.568 20.2939 205.961 20.2939C205.355 20.2939 204.863 20.7856 204.863 21.392C204.863 21.9984 205.355 22.49 205.961 22.49Z" fill="#AAB9E5"/>
|
||||
<path d="M205.96 21.9412C205.505 21.9412 205.137 21.5725 205.137 21.1176V17.8235C205.137 17.3687 205.505 17 205.96 17C206.415 17 206.784 17.3687 206.784 17.8235V21.1176C206.784 21.5725 206.415 21.9412 205.96 21.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M198 22.49C198.607 22.49 199.098 21.9984 199.098 21.392C199.098 20.7856 198.607 20.2939 198 20.2939C197.394 20.2939 196.902 20.7856 196.902 21.392C196.902 21.9984 197.394 22.49 198 22.49Z" fill="#AAB9E5"/>
|
||||
<path d="M197.999 21.9412C197.545 21.9412 197.176 21.5725 197.176 21.1176V17.8235C197.176 17.3687 197.545 17 197.999 17C198.454 17 198.823 17.3687 198.823 17.8235V21.1176C198.823 21.5725 198.454 21.9412 197.999 21.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M200.196 31.275C201.407 31.275 202.392 30.2898 202.392 29.0789V26.3338C202.392 25.1229 201.407 24.1377 200.196 24.1377C198.985 24.1377 198 25.1229 198 26.3338V29.0789C198 30.2898 198.985 31.275 200.196 31.275ZM199.098 26.3338C199.098 25.7283 199.591 25.2357 200.196 25.2357C200.802 25.2357 201.294 25.7283 201.294 26.3338V29.0789C201.294 29.6843 200.802 30.1769 200.196 30.1769C199.591 30.1769 199.098 29.6843 199.098 29.0789V26.3338Z" fill="#252A3F"/>
|
||||
<path d="M194.486 26.7727L195.804 25.7845V30.7256C195.804 31.0288 196.049 31.2747 196.353 31.2747C196.656 31.2747 196.902 31.0288 196.902 30.7256V24.6864C196.902 24.2351 196.385 23.9761 196.023 24.2472L193.827 25.8943C193.584 26.0762 193.535 26.4203 193.717 26.6629C193.899 26.9054 194.243 26.9546 194.486 26.7727Z" fill="#252A3F"/>
|
||||
<path d="M203.746 35.369C203.749 35.3873 203.749 35.4056 203.746 35.4239C203.746 35.4422 203.74 35.4623 203.729 35.4843C203.714 35.5355 203.698 35.5813 203.68 35.6216C203.658 35.6728 203.63 35.7167 203.597 35.7533C203.583 35.7753 203.568 35.7972 203.553 35.8192C203.542 35.8375 203.531 35.8558 203.52 35.8741L203.449 35.9674L202.746 36.9831L202.62 37.1423V38.6027C202.613 38.621 202.609 38.6393 202.609 38.6576C202.609 38.6759 202.607 38.6961 202.604 38.718C202.596 38.7363 202.591 38.7546 202.587 38.7729C202.584 38.7876 202.578 38.804 202.571 38.8223C202.563 38.837 202.56 38.848 202.56 38.8553C202.556 38.8626 202.552 38.8681 202.549 38.8718C202.549 38.8754 202.547 38.8809 202.543 38.8882C202.521 38.9248 202.49 38.9578 202.45 38.987C202.369 39.0273 202.278 39.0365 202.175 39.0145C202.117 39.0072 202.073 38.9889 202.044 38.9596C202.025 38.9486 202.011 38.9358 202 38.9212C201.989 38.9065 201.978 38.8901 201.967 38.8718C201.959 38.8498 201.952 38.8297 201.945 38.8114C201.937 38.7931 201.932 38.7748 201.928 38.7565C201.921 38.7382 201.917 38.7217 201.917 38.707C201.917 38.6887 201.917 38.6723 201.917 38.6576V37.1588L201.797 36.9721L201.083 35.9619L201.022 35.8631C201 35.8302 200.973 35.7918 200.94 35.7478C200.911 35.7076 200.885 35.6636 200.863 35.6161C200.849 35.5941 200.836 35.5721 200.825 35.5502C200.817 35.5246 200.81 35.4989 200.803 35.4733C200.792 35.4367 200.79 35.4001 200.797 35.3635C200.808 35.3159 200.83 35.2757 200.863 35.2427C200.9 35.2098 200.938 35.1842 200.979 35.1659C201.03 35.1293 201.088 35.1146 201.154 35.1219C201.194 35.1219 201.229 35.1293 201.259 35.1439C201.288 35.1585 201.317 35.175 201.346 35.1933C201.379 35.2189 201.41 35.2464 201.44 35.2757C201.473 35.305 201.502 35.3361 201.528 35.369C201.557 35.4056 201.584 35.4404 201.61 35.4733C201.636 35.5026 201.661 35.5374 201.687 35.5776L201.703 35.5996C201.791 35.7167 201.873 35.8302 201.95 35.94C202.027 36.0461 202.108 36.1614 202.192 36.2859C202.199 36.2932 202.21 36.3078 202.225 36.3298C202.239 36.3518 202.256 36.3774 202.274 36.4067C202.289 36.381 202.302 36.3591 202.313 36.3408C202.327 36.3188 202.338 36.3042 202.346 36.2968C202.43 36.1724 202.51 36.0553 202.587 35.9455C202.664 35.8357 202.746 35.7222 202.834 35.6051L202.845 35.5831C202.874 35.5502 202.9 35.5172 202.922 35.4843C202.948 35.4477 202.975 35.4111 203.004 35.3745C203.052 35.3086 203.116 35.2519 203.197 35.2043C203.255 35.164 203.316 35.1384 203.378 35.1274C203.447 35.1201 203.508 35.1348 203.559 35.1714C203.581 35.186 203.601 35.1988 203.619 35.2098C203.641 35.2208 203.66 35.2336 203.674 35.2482C203.704 35.2812 203.727 35.3214 203.746 35.369Z" fill="white"/>
|
||||
<path d="M200.393 38.6465C200.397 38.6685 200.399 38.6905 200.399 38.7124C200.402 38.7307 200.404 38.7527 200.404 38.7783C200.404 38.8222 200.391 38.8625 200.366 38.8991C200.355 38.9174 200.34 38.9357 200.322 38.954C200.304 38.9686 200.282 38.9814 200.256 38.9924C200.165 39.0437 200.068 39.062 199.965 39.0473C199.914 39.0327 199.868 39.0089 199.828 38.976C199.821 38.9686 199.815 38.965 199.811 38.965C199.808 38.9613 199.804 38.9558 199.8 38.9485C199.797 38.9448 199.793 38.9412 199.789 38.9375C199.786 38.9302 199.78 38.9247 199.773 38.921C199.755 38.9027 199.74 38.8863 199.729 38.8716C199.718 38.8533 199.707 38.835 199.696 38.8167C199.689 38.7984 199.68 38.782 199.669 38.7673C199.661 38.749 199.652 38.7307 199.641 38.7124C199.634 38.6978 199.627 38.685 199.619 38.674C199.612 38.6593 199.606 38.6447 199.603 38.6301C199.588 38.5971 199.579 38.5678 199.575 38.5422L199.46 38.2732C199.207 38.2732 198.955 38.275 198.702 38.2787C198.453 38.2787 198.203 38.2769 197.95 38.2732L197.835 38.5422C197.828 38.5569 197.822 38.5715 197.818 38.5861C197.818 38.6008 197.815 38.6154 197.807 38.6301C197.8 38.6447 197.793 38.6593 197.785 38.674C197.782 38.685 197.776 38.6978 197.769 38.7124C197.758 38.7307 197.747 38.749 197.736 38.7673C197.729 38.782 197.72 38.7984 197.709 38.8167C197.701 38.835 197.692 38.8533 197.681 38.8716C197.67 38.8863 197.656 38.9027 197.637 38.921C197.63 38.9247 197.624 38.9302 197.621 38.9375C197.617 38.9412 197.613 38.9448 197.61 38.9485C197.606 38.9558 197.602 38.9613 197.599 38.965C197.595 38.965 197.59 38.9686 197.582 38.976C197.542 39.0089 197.496 39.0327 197.445 39.0473C197.343 39.062 197.246 39.0437 197.154 38.9924C197.128 38.9814 197.107 38.9686 197.088 38.954C197.07 38.9357 197.055 38.9174 197.044 38.8991C197.019 38.8625 197.006 38.8222 197.006 38.7783C197.006 38.7527 197.006 38.7307 197.006 38.7124C197.01 38.6905 197.013 38.6685 197.017 38.6465C197.024 38.6136 197.033 38.5807 197.044 38.5477C197.055 38.5148 197.061 38.4983 197.061 38.4983L198.203 35.6873L198.236 35.5995C198.243 35.5775 198.252 35.5574 198.263 35.5391C198.274 35.5208 198.283 35.4988 198.291 35.4732C198.309 35.4256 198.329 35.3835 198.351 35.3469C198.362 35.325 198.375 35.3048 198.389 35.2865C198.404 35.2682 198.419 35.2499 198.433 35.2316C198.455 35.2024 198.486 35.1786 198.527 35.1603C198.578 35.142 198.636 35.1328 198.702 35.1328C198.772 35.1328 198.832 35.142 198.884 35.1603C198.924 35.1786 198.955 35.2024 198.977 35.2316C199.002 35.2646 199.03 35.303 199.059 35.3469C199.081 35.3835 199.101 35.4256 199.12 35.4732C199.127 35.4988 199.136 35.5208 199.147 35.5391C199.158 35.5574 199.167 35.5775 199.174 35.5995L199.207 35.6873L200.349 38.4983C200.349 38.4983 200.355 38.5148 200.366 38.5477C200.377 38.5807 200.386 38.6136 200.393 38.6465ZM199.092 37.3014C199.045 37.1953 198.995 37.0855 198.944 36.972C198.896 36.8586 198.845 36.7433 198.79 36.6261C198.776 36.5932 198.761 36.5603 198.746 36.5273C198.732 36.4907 198.717 36.4559 198.702 36.423C198.691 36.4559 198.679 36.4907 198.664 36.5273C198.649 36.5603 198.635 36.5932 198.62 36.6261C198.565 36.7433 198.512 36.8586 198.461 36.972C198.413 37.0855 198.366 37.1953 198.318 37.3014L198.219 37.543H199.191L199.092 37.3014Z" fill="white"/>
|
||||
<path d="M196.064 38.6247C196.061 38.6686 196.055 38.7144 196.048 38.7619C196.04 38.8095 196.028 38.8534 196.009 38.8937C195.991 38.9376 195.967 38.9706 195.938 38.9925C195.898 39.0291 195.85 39.0493 195.795 39.0529C195.744 39.0712 195.695 39.0767 195.647 39.0694C195.599 39.0621 195.555 39.0493 195.515 39.031C195.464 38.998 195.426 38.9596 195.4 38.9157C195.378 38.8681 195.361 38.8187 195.351 38.7674C195.34 38.7162 195.334 38.6631 195.334 38.6082C195.334 38.5533 195.334 38.5021 195.334 38.4545V38.0263L195.329 37.1863C195.329 37.1277 195.329 37.0819 195.329 37.049C195.329 37.0161 195.329 36.9868 195.329 36.9612C195.329 36.9319 195.327 36.9008 195.323 36.8678C195.323 36.8312 195.323 36.78 195.323 36.7141C195.323 36.7031 195.323 36.6848 195.323 36.6592C195.327 36.6299 195.325 36.5549 195.318 36.4341C195.175 36.672 195.056 36.8642 194.961 37.0106C194.869 37.1533 194.791 37.2649 194.725 37.3455C194.662 37.4223 194.608 37.4754 194.56 37.5047C194.512 37.5303 194.463 37.5449 194.412 37.5486C194.382 37.5523 194.353 37.5468 194.324 37.5321C194.295 37.5175 194.265 37.4992 194.236 37.4772C194.21 37.4553 194.185 37.4333 194.159 37.4114C194.137 37.3857 194.119 37.3619 194.104 37.34C194.016 37.2302 193.918 37.0984 193.808 36.9447C193.698 36.791 193.584 36.6043 193.467 36.3847C193.467 36.3883 193.466 36.4487 193.462 36.5659C193.462 36.683 193.462 36.8294 193.462 37.0051C193.462 37.1771 193.46 37.3638 193.456 37.5651C193.456 37.7627 193.455 37.9476 193.451 38.1196C193.451 38.2916 193.449 38.4362 193.445 38.5533C193.442 38.6668 193.438 38.7235 193.434 38.7235C193.434 38.7857 193.42 38.8443 193.391 38.8992C193.361 38.9504 193.321 38.9925 193.27 39.0255C193.222 39.0584 193.165 39.0767 193.1 39.0804C193.034 39.084 192.962 39.0657 192.885 39.0255C192.838 38.9962 192.801 38.9541 192.776 38.8992C192.754 38.8443 192.739 38.7931 192.732 38.7455C192.728 38.6942 192.724 38.6448 192.721 38.5972C192.721 38.5497 192.721 38.5002 192.721 38.449L192.726 38.0208L192.732 37.1753V36.4396C192.732 36.1212 192.743 35.8082 192.765 35.5008C192.765 35.4605 192.768 35.4239 192.776 35.391C192.787 35.3544 192.799 35.3196 192.814 35.2866C192.843 35.2281 192.882 35.1842 192.929 35.1549C192.984 35.1219 193.043 35.1055 193.105 35.1055C193.131 35.1055 193.154 35.1073 193.176 35.111C193.202 35.111 193.226 35.1128 193.248 35.1164C193.321 35.1311 193.383 35.175 193.434 35.2482C193.489 35.3178 193.541 35.3781 193.588 35.4294C193.617 35.4623 193.649 35.5026 193.681 35.5502C193.714 35.5978 193.747 35.6472 193.78 35.6984C193.813 35.7497 193.844 35.7991 193.874 35.8466C193.903 35.8942 193.929 35.9363 193.951 35.9729C194.046 36.1266 194.13 36.2676 194.203 36.3957C194.28 36.5238 194.351 36.6336 194.417 36.7251C194.428 36.7141 194.441 36.6995 194.456 36.6812C194.47 36.6592 194.485 36.6372 194.5 36.6153C194.518 36.5897 194.532 36.5659 194.543 36.5439C194.558 36.5219 194.569 36.5036 194.576 36.489C194.613 36.4304 194.65 36.3737 194.686 36.3188C194.723 36.2602 194.761 36.1998 194.801 36.1376C194.845 36.0717 194.889 36.0004 194.933 35.9235C194.981 35.8466 195.036 35.7588 195.098 35.66C195.124 35.6161 195.157 35.563 195.197 35.5008C195.237 35.4385 195.283 35.3781 195.334 35.3196C195.385 35.261 195.438 35.2116 195.493 35.1714C195.552 35.1274 195.61 35.1055 195.669 35.1055C195.698 35.1055 195.724 35.1073 195.746 35.111C195.768 35.111 195.79 35.1128 195.812 35.1164C195.856 35.1201 195.898 35.1402 195.938 35.1768C195.967 35.2061 195.989 35.2372 196.004 35.2702C196.018 35.3178 196.028 35.358 196.031 35.391C196.035 35.4166 196.037 35.4404 196.037 35.4623C196.04 35.4843 196.042 35.5063 196.042 35.5282C196.042 35.7332 196.044 35.9363 196.048 36.1376C196.051 36.3389 196.053 36.5421 196.053 36.747C196.053 36.9959 196.053 37.2521 196.053 37.5157C196.057 37.7792 196.059 38.0354 196.059 38.2843C196.059 38.3355 196.061 38.3904 196.064 38.449C196.068 38.5076 196.068 38.5661 196.064 38.6247Z" fill="white"/>
|
||||
<path d="M243.706 45.0002H222.294C220.475 45.0002 219 43.5253 219 41.706V38.9609H247V41.706C247 43.5253 245.525 45.0002 243.706 45.0002Z" fill="#D3DCFB"/>
|
||||
<path d="M222.294 43.9021C221.083 43.9021 220.098 42.917 220.098 41.706V38.9609H245.902V41.706C245.902 42.917 244.916 43.9021 243.705 43.9021H222.294Z" fill="#6A0DB4"/>
|
||||
<path d="M243.706 19.1963H222.294C220.478 19.1963 219 20.674 219 22.4904V39.51C219 41.3264 220.478 42.8041 222.294 42.8041H243.706C245.522 42.8041 247 41.3264 247 39.51C247 39.1272 247 22.9838 247 22.4904C247 20.674 245.522 19.1963 243.706 19.1963Z" fill="#EBF5FC"/>
|
||||
<path d="M222.294 41.706C221.081 41.706 220.098 40.7228 220.098 39.5099V34.5687C220.098 33.9623 220.589 33.4707 221.196 33.4707H244.804C245.41 33.4707 245.902 33.9623 245.902 34.5687V39.5099C245.902 40.7228 244.918 41.706 243.705 41.706H222.294Z" fill="#A12BFF"/>
|
||||
<path d="M225.039 22.49C225.646 22.49 226.137 21.9984 226.137 21.392C226.137 20.7856 225.646 20.2939 225.039 20.2939C224.433 20.2939 223.941 20.7856 223.941 21.392C223.941 21.9984 224.433 22.49 225.039 22.49Z" fill="#AAB9E5"/>
|
||||
<path d="M225.038 21.9412C224.584 21.9412 224.215 21.5725 224.215 21.1176V17.8235C224.215 17.3687 224.584 17 225.038 17C225.493 17 225.862 17.3687 225.862 17.8235V21.1176C225.862 21.5725 225.493 21.9412 225.038 21.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M240.961 22.49C241.568 22.49 242.059 21.9984 242.059 21.392C242.059 20.7856 241.568 20.2939 240.961 20.2939C240.355 20.2939 239.863 20.7856 239.863 21.392C239.863 21.9984 240.355 22.49 240.961 22.49Z" fill="#AAB9E5"/>
|
||||
<path d="M240.96 21.9412C240.505 21.9412 240.137 21.5725 240.137 21.1176V17.8235C240.137 17.3687 240.505 17 240.96 17C241.415 17 241.784 17.3687 241.784 17.8235V21.1176C241.784 21.5725 241.415 21.9412 240.96 21.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M233 22.49C233.607 22.49 234.098 21.9984 234.098 21.392C234.098 20.7856 233.607 20.2939 233 20.2939C232.394 20.2939 231.902 20.7856 231.902 21.392C231.902 21.9984 232.394 22.49 233 22.49Z" fill="#AAB9E5"/>
|
||||
<path d="M232.999 21.9412C232.545 21.9412 232.176 21.5725 232.176 21.1176V17.8235C232.176 17.3687 232.545 17 232.999 17C233.454 17 233.823 17.3687 233.823 17.8235V21.1176C233.823 21.5725 233.454 21.9412 232.999 21.9412Z" fill="#D3DCFB"/>
|
||||
<path d="M235.196 31.275C236.407 31.275 237.392 30.2898 237.392 29.0789V26.3338C237.392 25.1229 236.407 24.1377 235.196 24.1377C233.985 24.1377 233 25.1229 233 26.3338V29.0789C233 30.2898 233.985 31.275 235.196 31.275ZM234.098 26.3338C234.098 25.7283 234.591 25.2357 235.196 25.2357C235.802 25.2357 236.294 25.7283 236.294 26.3338V29.0789C236.294 29.6843 235.802 30.1769 235.196 30.1769C234.591 30.1769 234.098 29.6843 234.098 29.0789V26.3338Z" fill="#252A3F"/>
|
||||
<path d="M229.486 26.7727L230.804 25.7845V30.7256C230.804 31.0288 231.049 31.2747 231.353 31.2747C231.656 31.2747 231.902 31.0288 231.902 30.7256V24.6864C231.902 24.2351 231.385 23.9761 231.023 24.2472L228.827 25.8943C228.584 26.0762 228.535 26.4203 228.717 26.6629C228.899 26.9054 229.243 26.9546 229.486 26.7727Z" fill="#252A3F"/>
|
||||
<path d="M238.736 38.6026C238.732 38.6649 238.723 38.7308 238.708 38.8003C238.697 38.8698 238.662 38.9266 238.604 38.9705C238.56 39.0071 238.51 39.0291 238.456 39.0364C238.401 39.0437 238.346 39.04 238.291 39.0254C238.24 39.0144 238.19 38.9961 238.143 38.9705C238.095 38.9412 238.057 38.9064 238.027 38.8662C237.903 38.7125 237.788 38.5551 237.681 38.394C237.579 38.2293 237.475 38.0646 237.369 37.8999L236.907 37.2026C236.845 37.1038 236.779 36.994 236.71 36.8732C236.64 36.7488 236.569 36.6335 236.496 36.5274L236.479 38.6246V38.674C236.479 38.7326 236.468 38.7911 236.446 38.8497C236.428 38.9046 236.395 38.9522 236.347 38.9925C236.311 39.0217 236.263 39.0419 236.205 39.0528C236.113 39.0711 236.036 39.0657 235.974 39.0364C235.915 39.0071 235.868 38.9668 235.831 38.9156C235.798 38.8643 235.775 38.8058 235.76 38.7399C235.749 38.6704 235.747 38.6026 235.754 38.5368V38.4434L235.765 38.0152L235.771 37.2191C235.775 37.102 235.776 36.983 235.776 36.8623C235.776 36.7378 235.776 36.6115 235.776 36.4834C235.773 36.326 235.773 36.1595 235.776 35.9838C235.784 35.8081 235.791 35.6434 235.798 35.4897C235.806 35.4055 235.826 35.3341 235.859 35.2756C235.873 35.2243 235.912 35.1804 235.974 35.1438C236.014 35.1182 236.066 35.1017 236.128 35.0944C236.194 35.0871 236.25 35.0889 236.298 35.0999C236.316 35.1072 236.335 35.1164 236.353 35.1274C236.371 35.1347 236.389 35.1438 236.408 35.1548C236.426 35.1694 236.442 35.1841 236.457 35.1987C236.475 35.2134 236.492 35.2298 236.507 35.2481C236.525 35.2664 236.541 35.2866 236.556 35.3085C236.571 35.3268 236.585 35.3451 236.6 35.3634C236.611 35.3854 236.622 35.4055 236.633 35.4238C236.644 35.4421 236.657 35.4604 236.671 35.4787L236.732 35.5666L238 37.565V37.2026C238 37.0855 237.998 36.9666 237.994 36.8458C237.994 36.7213 237.993 36.5932 237.989 36.4615C237.989 36.3077 237.989 36.143 237.989 35.9674C237.993 35.7917 237.998 35.627 238.005 35.4732C238.005 35.411 238.024 35.3396 238.06 35.2591C238.079 35.2115 238.11 35.1731 238.154 35.1438C238.198 35.1145 238.247 35.0944 238.302 35.0834C238.357 35.0725 238.412 35.0725 238.467 35.0834C238.521 35.0944 238.569 35.1164 238.609 35.1493C238.62 35.1603 238.631 35.1731 238.642 35.1877C238.653 35.2024 238.662 35.2189 238.67 35.2372C238.688 35.2847 238.699 35.3268 238.703 35.3634C238.714 35.4147 238.719 35.4604 238.719 35.5007C238.719 35.9582 238.719 36.4249 238.719 36.9007C238.723 37.3765 238.726 37.8432 238.73 38.3007C238.73 38.3519 238.732 38.4032 238.736 38.4544C238.739 38.502 238.739 38.5514 238.736 38.6026Z" fill="white"/>
|
||||
<path d="M234.65 35.4351C234.672 35.6108 234.685 35.8158 234.688 36.05C234.692 36.2806 234.688 36.5149 234.677 36.7528C234.67 36.987 234.654 37.2103 234.628 37.4226C234.602 37.6312 234.571 37.7996 234.535 37.9277C234.509 38.0045 234.478 38.0851 234.441 38.1692C234.408 38.2498 234.372 38.323 234.332 38.3888C234.273 38.4877 234.202 38.5755 234.117 38.6524C234.033 38.7256 233.94 38.7896 233.837 38.8445C233.739 38.8958 233.632 38.936 233.519 38.9653C233.409 38.9946 233.299 39.0111 233.19 39.0147C232.996 39.022 232.811 38.9946 232.635 38.9324C232.463 38.8665 232.304 38.764 232.157 38.6249C232.048 38.5188 231.96 38.4053 231.894 38.2845C231.828 38.1637 231.777 38.0375 231.74 37.9057C231.704 37.7703 231.68 37.6312 231.669 37.4885C231.661 37.3457 231.658 37.1993 231.658 37.0492C231.658 36.9797 231.656 36.8937 231.652 36.7912C231.652 36.6851 231.652 36.5771 231.652 36.4673C231.652 36.3538 231.652 36.244 231.652 36.1379C231.652 36.0317 231.654 35.942 231.658 35.8688C231.658 35.8213 231.658 35.77 231.658 35.7151C231.658 35.6566 231.66 35.5998 231.663 35.5449C231.671 35.4864 231.682 35.4315 231.696 35.3802C231.711 35.3253 231.733 35.2759 231.762 35.232C231.795 35.1844 231.841 35.1496 231.899 35.1277C231.958 35.1057 232.018 35.0947 232.081 35.0947C232.146 35.0947 232.209 35.1075 232.267 35.1332C232.326 35.1588 232.373 35.1954 232.41 35.243C232.428 35.2722 232.441 35.3015 232.448 35.3308C232.456 35.3601 232.461 35.393 232.465 35.4296C232.472 35.5504 232.476 35.6877 232.476 35.8414C232.48 35.9951 232.48 36.1452 232.476 36.2916C232.476 36.4343 232.474 36.5661 232.47 36.6869C232.467 36.8077 232.465 36.8973 232.465 36.9559C232.465 37.1755 232.476 37.375 232.498 37.5543C232.52 37.73 232.571 37.8764 232.652 37.9936C232.725 38.0997 232.811 38.1674 232.91 38.1967C233.008 38.226 233.107 38.2351 233.206 38.2241C233.298 38.2132 233.389 38.1802 233.481 38.1253C233.576 38.0668 233.651 37.9826 233.706 37.8728C233.728 37.8325 233.746 37.7868 233.761 37.7355C233.775 37.6843 233.786 37.6367 233.794 37.5928C233.808 37.4537 233.821 37.2926 233.832 37.1096C233.843 36.923 233.852 36.7326 233.859 36.5386C233.867 36.3447 233.87 36.1543 233.87 35.9677C233.87 35.781 233.869 35.6126 233.865 35.4626C233.872 35.3967 233.892 35.3363 233.925 35.2814C233.955 35.2338 233.997 35.1917 234.052 35.1551C234.106 35.1185 234.181 35.1002 234.277 35.1002C234.354 35.1039 234.416 35.124 234.463 35.1606C234.511 35.1936 234.549 35.2302 234.579 35.2704C234.612 35.318 234.635 35.3729 234.65 35.4351Z" fill="white"/>
|
||||
<path d="M230.69 35.2699C230.727 35.3175 230.745 35.3651 230.745 35.4127C230.749 35.4346 230.749 35.4621 230.745 35.495C230.745 35.528 230.744 35.5536 230.74 35.5719C230.729 35.6085 230.703 35.6451 230.663 35.6817C230.652 35.6927 230.639 35.7037 230.625 35.7146C230.61 35.722 230.592 35.7293 230.57 35.7366C230.548 35.7439 230.526 35.7494 230.504 35.7531C230.482 35.7531 230.458 35.7549 230.432 35.7586C230.407 35.7622 230.383 35.7659 230.361 35.7695C230.339 35.7695 230.315 35.7695 230.29 35.7695H229.977V35.8629C229.973 36.1923 229.979 36.5217 229.993 36.8511C230.011 37.1805 230.01 37.5099 229.988 37.8393C229.977 37.9492 229.96 38.0626 229.938 38.1797C229.916 38.2932 229.88 38.4012 229.828 38.5037C229.781 38.6025 229.717 38.694 229.636 38.7782C229.556 38.8624 229.453 38.9282 229.329 38.9758C229.212 39.0197 229.084 39.0509 228.945 39.0692C228.805 39.0875 228.665 39.0893 228.522 39.0746C228.383 39.06 228.249 39.0289 228.121 38.9813C227.993 38.9337 227.885 38.8678 227.797 38.7837C227.75 38.7397 227.706 38.6867 227.665 38.6244C227.625 38.5586 227.598 38.4909 227.583 38.4213C227.568 38.3481 227.572 38.2786 227.594 38.2127C227.616 38.1431 227.667 38.0864 227.748 38.0425C227.817 38.0022 227.879 37.9931 227.934 38.015C227.993 38.037 228.048 38.0718 228.099 38.1193C228.154 38.1669 228.209 38.2163 228.264 38.2676C228.322 38.3188 228.386 38.3518 228.456 38.3664C228.606 38.403 228.729 38.4048 228.824 38.3719C228.919 38.3353 228.994 38.2786 229.049 38.2017C229.104 38.1248 229.142 38.0315 229.164 37.9217C229.19 37.8119 229.204 37.7003 229.208 37.5868C229.215 37.4733 229.217 37.3635 229.214 37.2574C229.21 37.1512 229.21 37.0616 229.214 36.9884C229.217 36.7944 229.217 36.6041 229.214 36.4174C229.21 36.2307 229.208 36.0404 229.208 35.8464V35.8244C229.212 35.8171 229.214 35.8061 229.214 35.7915H229.197C229.175 35.7878 229.129 35.786 229.06 35.786C228.99 35.7824 228.915 35.7805 228.835 35.7805C228.754 35.7805 228.677 35.7805 228.604 35.7805C228.535 35.7769 228.489 35.775 228.467 35.775H228.39V35.7695C228.361 35.7659 228.331 35.7604 228.302 35.7531C228.273 35.7458 228.244 35.7384 228.214 35.7311C228.145 35.7092 228.092 35.6744 228.055 35.6268C228.037 35.6085 228.022 35.5792 228.011 35.539C228.004 35.4987 228 35.4639 228 35.4346C228 35.4163 228 35.3962 228 35.3743C228 35.3523 228.004 35.3322 228.011 35.3139C228.019 35.2736 228.044 35.237 228.088 35.2041C228.117 35.1821 228.152 35.1656 228.192 35.1546C228.218 35.1473 228.244 35.1418 228.269 35.1382C228.295 35.1345 228.322 35.1309 228.352 35.1272C228.377 35.1235 228.403 35.1217 228.428 35.1217C228.454 35.1217 228.482 35.1217 228.511 35.1217H229.038C229.06 35.1217 229.085 35.1217 229.115 35.1217C229.144 35.1217 229.177 35.1199 229.214 35.1162C229.356 35.1162 229.497 35.1162 229.636 35.1162C229.775 35.1162 229.911 35.118 230.043 35.1217H230.076C230.116 35.1217 230.154 35.1235 230.191 35.1272C230.231 35.1272 230.271 35.1272 230.312 35.1272C230.396 35.1309 230.475 35.1473 230.548 35.1766C230.606 35.1912 230.654 35.2224 230.69 35.2699Z" fill="white"/>
|
||||
</svg>
|
After Width: | Height: | Size: 139 KiB |
92
newIDE/app/public/res/questionnaire/delay-3-to-5-months.svg
Normal file
@@ -0,0 +1,92 @@
|
||||
<svg width="292" height="103" viewBox="0 0 292 103" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="292" height="102.768" fill="#1D1D26"/>
|
||||
<path d="M62.096 60.512H34.9396C32.6322 60.512 30.7617 58.6415 30.7617 56.3341V52.8525H66.2739V56.3341C66.2739 58.6415 64.4034 60.512 62.096 60.512Z" fill="#D3DCFB"/>
|
||||
<path d="M34.9396 59.1194C33.4038 59.1194 32.1543 57.8699 32.1543 56.3341V52.8525H64.8812V56.3341C64.8812 57.8699 63.6318 59.1194 62.096 59.1194H34.9396Z" fill="#6A0DB4"/>
|
||||
<path d="M62.096 27.7852H34.9396C32.6359 27.7852 30.7617 29.6594 30.7617 31.9631V53.5489C30.7617 55.8526 32.6359 57.7268 34.9396 57.7268H62.096C64.3997 57.7268 66.2739 55.8526 66.2739 53.5489C66.2739 53.0634 66.2739 32.5888 66.2739 31.9631C66.2739 29.6594 64.3997 27.7852 62.096 27.7852Z" fill="#EBF5FC"/>
|
||||
<path d="M34.9396 56.3334C33.4013 56.3334 32.1543 55.0864 32.1543 53.5482V47.2813C32.1543 46.5122 32.7778 45.8887 33.5469 45.8887H63.4886C64.2577 45.8887 64.8812 46.5122 64.8812 47.2813V53.5482C64.8812 55.0864 63.6342 56.3334 62.096 56.3334H34.9396Z" fill="#A12BFF"/>
|
||||
<path d="M38.421 31.963C39.1901 31.963 39.8136 31.3395 39.8136 30.5704C39.8136 29.8012 39.1901 29.1777 38.421 29.1777C37.6518 29.1777 37.0283 29.8012 37.0283 30.5704C37.0283 31.3395 37.6518 31.963 38.421 31.963Z" fill="#AAB9E5"/>
|
||||
<path d="M38.4214 31.2669C37.8446 31.2669 37.377 30.7992 37.377 30.2224V26.0445C37.377 25.4676 37.8446 25 38.4214 25C38.9983 25 39.4659 25.4676 39.4659 26.0445V30.2224C39.4659 30.7992 38.9983 31.2669 38.4214 31.2669Z" fill="#D3DCFB"/>
|
||||
<path d="M58.6143 31.963C59.3834 31.963 60.007 31.3395 60.007 30.5704C60.007 29.8012 59.3834 29.1777 58.6143 29.1777C57.8452 29.1777 57.2217 29.8012 57.2217 30.5704C57.2217 31.3395 57.8452 31.963 58.6143 31.963Z" fill="#AAB9E5"/>
|
||||
<path d="M58.6138 31.2669C58.037 31.2669 57.5693 30.7992 57.5693 30.2224V26.0445C57.5693 25.4676 58.037 25 58.6138 25C59.1906 25 59.6583 25.4676 59.6583 26.0445V30.2224C59.6583 30.7992 59.1906 31.2669 58.6138 31.2669Z" fill="#D3DCFB"/>
|
||||
<path d="M48.5176 31.963C49.2868 31.963 49.9103 31.3395 49.9103 30.5704C49.9103 29.8012 49.2868 29.1777 48.5176 29.1777C47.7485 29.1777 47.125 29.8012 47.125 30.5704C47.125 31.3395 47.7485 31.963 48.5176 31.963Z" fill="#AAB9E5"/>
|
||||
<path d="M48.5171 31.2669C47.9403 31.2669 47.4727 30.7992 47.4727 30.2224V26.0445C47.4727 25.4676 47.9403 25 48.5171 25C49.094 25 49.5616 25.4676 49.5616 26.0445V30.2224C49.5616 30.7992 49.094 31.2669 48.5171 31.2669Z" fill="#D3DCFB"/>
|
||||
<path d="M51.3019 43.1039C52.8377 43.1039 54.0871 41.8544 54.0871 40.3186V36.837C54.0871 35.3012 52.8377 34.0518 51.3019 34.0518C49.7661 34.0518 48.5166 35.3012 48.5166 36.837V40.3186C48.5166 41.8544 49.7661 43.1039 51.3019 43.1039ZM49.9092 36.837C49.9092 36.0691 50.534 35.4444 51.3019 35.4444C52.0698 35.4444 52.6945 36.0691 52.6945 36.837V40.3186C52.6945 41.0865 52.0698 41.7113 51.3019 41.7113C50.534 41.7113 49.9092 41.0865 49.9092 40.3186V36.837Z" fill="#252A3F"/>
|
||||
<path d="M44.0604 37.394L45.7316 36.1406V42.4075C45.7316 42.792 46.0434 43.1038 46.4279 43.1038C46.8124 43.1038 47.1242 42.792 47.1242 42.4075V34.748C47.1242 34.1755 46.4688 33.847 46.0101 34.1909L43.2248 36.2799C42.9172 36.5106 42.8549 36.9471 43.0856 37.2547C43.3163 37.5623 43.7527 37.6247 44.0604 37.394Z" fill="#252A3F"/>
|
||||
<path d="M55.5932 52.3996C55.5886 52.4785 55.577 52.5621 55.5584 52.6503C55.5445 52.7385 55.5004 52.8105 55.4261 52.8662C55.3704 52.9126 55.3077 52.9404 55.2381 52.9497C55.1685 52.959 55.0988 52.9544 55.0292 52.9358C54.9642 52.9219 54.9015 52.8987 54.8412 52.8662C54.7808 52.829 54.7321 52.7849 54.695 52.7339C54.5371 52.5389 54.3909 52.3393 54.2563 52.135C54.1263 51.9261 53.994 51.7172 53.8594 51.5083L53.2745 50.624C53.1956 50.4987 53.112 50.3594 53.0238 50.2062C52.9356 50.0484 52.8451 49.9022 52.7522 49.7675L52.7314 52.4275V52.4901C52.7314 52.5644 52.7174 52.6387 52.6896 52.713C52.6664 52.7826 52.6246 52.8429 52.5642 52.894C52.5178 52.9311 52.4575 52.9567 52.3832 52.9706C52.2671 52.9938 52.1697 52.9869 52.0907 52.9497C52.0165 52.9126 51.9561 52.8615 51.9097 52.7965C51.8679 52.7315 51.8377 52.6573 51.8192 52.5737C51.8052 52.4855 51.8029 52.3996 51.8122 52.3161V52.1977L51.8261 51.6546L51.8331 50.6449C51.8377 50.4964 51.8401 50.3455 51.8401 50.1923C51.8401 50.0345 51.8401 49.8743 51.8401 49.7118C51.8354 49.5122 51.8354 49.301 51.8401 49.0782C51.8493 48.8554 51.8586 48.6465 51.8679 48.4515C51.8772 48.3447 51.9027 48.2542 51.9445 48.1799C51.9631 48.1149 52.0118 48.0592 52.0907 48.0128C52.1418 47.9803 52.2068 47.9594 52.2857 47.9502C52.3693 47.9409 52.4412 47.9432 52.5016 47.9571C52.5248 47.9664 52.548 47.978 52.5712 47.9919C52.5944 48.0012 52.6176 48.0128 52.6408 48.0267C52.664 48.0453 52.6849 48.0639 52.7035 48.0825C52.7267 48.101 52.7476 48.1219 52.7662 48.1451C52.7894 48.1683 52.8103 48.1939 52.8288 48.2217C52.8474 48.2449 52.866 48.2681 52.8845 48.2913C52.8985 48.3192 52.9124 48.3447 52.9263 48.3679C52.9402 48.3912 52.9565 48.4144 52.9751 48.4376L53.0517 48.549L54.6602 51.0836V50.624C54.6602 50.4755 54.6578 50.3246 54.6532 50.1714C54.6532 50.0136 54.6509 49.8511 54.6462 49.684C54.6462 49.489 54.6462 49.2801 54.6462 49.0573C54.6509 48.8345 54.6578 48.6256 54.6671 48.4306C54.6671 48.3517 54.6903 48.2612 54.7367 48.159C54.76 48.0987 54.7994 48.05 54.8551 48.0128C54.9108 47.9757 54.9735 47.9502 55.0431 47.9362C55.1128 47.9223 55.1824 47.9223 55.252 47.9362C55.3217 47.9502 55.382 47.978 55.4331 48.0198C55.447 48.0337 55.4609 48.05 55.4748 48.0685C55.4888 48.0871 55.5004 48.108 55.5097 48.1312C55.5329 48.1915 55.5468 48.2449 55.5514 48.2913C55.5654 48.3563 55.5723 48.4144 55.5723 48.4654C55.5723 49.0457 55.5723 49.6376 55.5723 50.241C55.577 50.8445 55.5816 51.4364 55.5863 52.0166C55.5863 52.0816 55.5886 52.1466 55.5932 52.2116C55.5979 52.272 55.5979 52.3346 55.5932 52.3996Z" fill="white"/>
|
||||
<path d="M50.6068 52.4555C50.6115 52.4833 50.6138 52.5112 50.6138 52.539C50.6184 52.5622 50.6208 52.5901 50.6208 52.6226C50.6208 52.6783 50.6045 52.7293 50.572 52.7758C50.5581 52.799 50.5395 52.8222 50.5163 52.8454C50.4931 52.864 50.4652 52.8802 50.4327 52.8941C50.3167 52.9591 50.1937 52.9823 50.0637 52.9638C49.9987 52.9452 49.9407 52.915 49.8896 52.8732C49.8803 52.864 49.8734 52.8593 49.8687 52.8593C49.8641 52.8547 49.8594 52.8477 49.8548 52.8384C49.8502 52.8338 49.8455 52.8291 49.8409 52.8245C49.8362 52.8152 49.8293 52.8083 49.82 52.8036C49.7968 52.7804 49.7782 52.7595 49.7643 52.7409C49.7504 52.7177 49.7364 52.6945 49.7225 52.6713C49.7132 52.6481 49.7016 52.6272 49.6877 52.6086C49.6784 52.5854 49.6668 52.5622 49.6529 52.539C49.6436 52.5204 49.6343 52.5042 49.625 52.4903C49.6157 52.4717 49.6088 52.4531 49.6041 52.4346C49.5856 52.3928 49.574 52.3557 49.5693 52.3232L49.4231 51.982C49.1028 51.982 48.7825 51.9843 48.4622 51.9889C48.1465 51.9889 47.8285 51.9866 47.5082 51.982L47.362 52.3232C47.3527 52.3417 47.3457 52.3603 47.3411 52.3789C47.3411 52.3974 47.3365 52.416 47.3272 52.4346C47.3179 52.4531 47.3086 52.4717 47.2993 52.4903C47.2947 52.5042 47.2877 52.5204 47.2784 52.539C47.2645 52.5622 47.2506 52.5854 47.2366 52.6086C47.2274 52.6272 47.2158 52.6481 47.2018 52.6713C47.1925 52.6945 47.1809 52.7177 47.167 52.7409C47.1531 52.7595 47.1345 52.7804 47.1113 52.8036C47.102 52.8083 47.0951 52.8152 47.0904 52.8245C47.0858 52.8291 47.0811 52.8338 47.0765 52.8384C47.0719 52.8477 47.0672 52.8547 47.0626 52.8593C47.0579 52.8593 47.051 52.864 47.0417 52.8732C46.9906 52.915 46.9326 52.9452 46.8676 52.9638C46.7376 52.9823 46.6146 52.9591 46.4986 52.8941C46.4661 52.8802 46.4382 52.864 46.415 52.8454C46.3918 52.8222 46.3732 52.799 46.3593 52.7758C46.3268 52.7293 46.3105 52.6783 46.3105 52.6226C46.3105 52.5901 46.3105 52.5622 46.3105 52.539C46.3152 52.5112 46.3198 52.4833 46.3245 52.4555C46.3338 52.4137 46.3454 52.3719 46.3593 52.3301C46.3732 52.2883 46.3802 52.2675 46.3802 52.2675L47.8285 48.7023L47.8703 48.5909C47.8796 48.563 47.8912 48.5375 47.9051 48.5143C47.919 48.4911 47.9306 48.4632 47.9399 48.4307C47.9631 48.3704 47.9887 48.317 48.0165 48.2706C48.0305 48.2427 48.0467 48.2172 48.0653 48.194C48.0838 48.1708 48.1024 48.1476 48.121 48.1244C48.1488 48.0872 48.1883 48.057 48.2393 48.0338C48.3043 48.0106 48.3786 47.999 48.4622 47.999C48.5504 47.999 48.627 48.0106 48.692 48.0338C48.743 48.057 48.7825 48.0872 48.8103 48.1244C48.8428 48.1661 48.8776 48.2149 48.9148 48.2706C48.9426 48.317 48.9682 48.3704 48.9914 48.4307C49.0007 48.4632 49.0123 48.4911 49.0262 48.5143C49.0401 48.5375 49.0517 48.563 49.061 48.5909L49.1028 48.7023L50.5511 52.2675C50.5511 52.2675 50.5581 52.2883 50.572 52.3301C50.5859 52.3719 50.5975 52.4137 50.6068 52.4555ZM48.9566 50.7495C48.8962 50.6149 48.8335 50.4756 48.7685 50.3317C48.7082 50.1878 48.6432 50.0416 48.5736 49.893C48.555 49.8512 48.5364 49.8094 48.5179 49.7677C48.4993 49.7212 48.4807 49.6771 48.4622 49.6354C48.4482 49.6771 48.432 49.7212 48.4134 49.7677C48.3949 49.8094 48.3763 49.8512 48.3577 49.893C48.2881 50.0416 48.2208 50.1878 48.1558 50.3317C48.0954 50.4756 48.0351 50.6149 47.9747 50.7495L47.8494 51.0559H49.0819L48.9566 50.7495Z" fill="white"/>
|
||||
<path d="M45.7853 48.1725C45.8317 48.2329 45.8549 48.2932 45.8549 48.3536C45.8596 48.3814 45.8596 48.4162 45.8549 48.458C45.8549 48.4998 45.8526 48.5323 45.848 48.5555C45.8341 48.6019 45.8016 48.6483 45.7505 48.6947C45.7366 48.7087 45.7203 48.7226 45.7017 48.7365C45.6832 48.7458 45.66 48.7551 45.6321 48.7644C45.6043 48.7737 45.5764 48.7806 45.5486 48.7853C45.5207 48.7853 45.4905 48.7876 45.458 48.7922C45.4255 48.7969 45.3954 48.8015 45.3675 48.8062C45.3397 48.8062 45.3095 48.8062 45.277 48.8062H44.8801V48.9245C44.8755 49.3423 44.8824 49.7601 44.901 50.1779C44.9242 50.5957 44.9219 51.0135 44.894 51.4313C44.8801 51.5705 44.8592 51.7144 44.8314 51.863C44.8035 52.0069 44.7571 52.1438 44.6921 52.2738C44.6317 52.3992 44.5505 52.5152 44.4484 52.622C44.3463 52.7287 44.2163 52.8123 44.0584 52.8727C43.9099 52.9284 43.7474 52.9678 43.571 52.991C43.3946 53.0142 43.2159 53.0166 43.0349 52.998C42.8585 52.9794 42.689 52.94 42.5265 52.8796C42.3641 52.8193 42.2271 52.7357 42.1157 52.6289C42.0554 52.5732 41.9997 52.5059 41.9486 52.427C41.8975 52.3435 41.8627 52.2576 41.8441 52.1694C41.8256 52.0765 41.8302 51.9883 41.8581 51.9048C41.8859 51.8166 41.9509 51.7446 42.053 51.6889C42.1412 51.6379 42.2202 51.6262 42.2898 51.6541C42.3641 51.682 42.4337 51.7261 42.4987 51.7864C42.5683 51.8467 42.638 51.9094 42.7076 51.9744C42.7819 52.0394 42.8631 52.0812 42.9513 52.0997C43.1416 52.1462 43.2971 52.1485 43.4178 52.1067C43.5385 52.0603 43.6337 51.9883 43.7033 51.8908C43.7729 51.7934 43.8217 51.675 43.8495 51.5357C43.882 51.3965 43.9006 51.2549 43.9052 51.111C43.9145 50.9671 43.9169 50.8278 43.9122 50.6932C43.9076 50.5586 43.9076 50.4448 43.9122 50.352C43.9169 50.106 43.9169 49.8646 43.9122 49.6278C43.9076 49.3911 43.9052 49.1497 43.9052 48.9036V48.8758C43.9099 48.8665 43.9122 48.8526 43.9122 48.834H43.8913C43.8635 48.8294 43.8054 48.827 43.7172 48.827C43.629 48.8224 43.5339 48.8201 43.4318 48.8201C43.3296 48.8201 43.2321 48.8201 43.1393 48.8201C43.0511 48.8154 42.9931 48.8131 42.9652 48.8131H42.8677V48.8062C42.8306 48.8015 42.7935 48.7946 42.7563 48.7853C42.7192 48.776 42.6821 48.7667 42.6449 48.7574C42.5567 48.7296 42.4894 48.6855 42.443 48.6251C42.4198 48.6019 42.4012 48.5648 42.3873 48.5137C42.378 48.4626 42.3734 48.4185 42.3734 48.3814C42.3734 48.3582 42.3734 48.3327 42.3734 48.3048C42.3734 48.277 42.378 48.2514 42.3873 48.2282C42.3966 48.1772 42.4291 48.1307 42.4848 48.0889C42.5219 48.0611 42.566 48.0402 42.6171 48.0263C42.6496 48.017 42.6821 48.01 42.7145 48.0054C42.747 48.0007 42.7819 47.9961 42.819 47.9915C42.8515 47.9868 42.884 47.9845 42.9165 47.9845C42.949 47.9845 42.9838 47.9845 43.0209 47.9845H43.6894C43.7172 47.9845 43.7497 47.9845 43.7869 47.9845C43.824 47.9845 43.8658 47.9822 43.9122 47.9775C44.0933 47.9775 44.272 47.9775 44.4484 47.9775C44.6248 47.9775 44.7965 47.9799 44.9637 47.9845H45.0054C45.0565 47.9845 45.1052 47.9868 45.1517 47.9915C45.2027 47.9915 45.2538 47.9915 45.3048 47.9915C45.4116 47.9961 45.5114 48.017 45.6043 48.0541C45.6785 48.0727 45.7389 48.1122 45.7853 48.1725Z" fill="white"/>
|
||||
<path d="M106.485 60.512H79.3283C77.0209 60.512 75.1504 58.6415 75.1504 56.3341V52.8525H110.663V56.3341C110.663 58.6415 108.792 60.512 106.485 60.512Z" fill="#D3DCFB"/>
|
||||
<path d="M79.3292 59.1194C77.7934 59.1194 76.5439 57.8699 76.5439 56.3341V52.8525H109.271V56.3341C109.271 57.8699 108.021 59.1194 106.486 59.1194H79.3292Z" fill="#6A0DB4"/>
|
||||
<path d="M106.485 27.7852H79.3283C77.0246 27.7852 75.1504 29.6594 75.1504 31.9631V53.5489C75.1504 55.8526 77.0246 57.7268 79.3283 57.7268H106.485C108.788 57.7268 110.663 55.8526 110.663 53.5489C110.663 53.0634 110.663 32.5888 110.663 31.9631C110.663 29.6594 108.788 27.7852 106.485 27.7852Z" fill="#EBF5FC"/>
|
||||
<path d="M79.3292 56.3334C77.791 56.3334 76.5439 55.0864 76.5439 53.5482V47.2813C76.5439 46.5122 77.1674 45.8887 77.9366 45.8887H107.878C108.647 45.8887 109.271 46.5122 109.271 47.2813V53.5482C109.271 55.0864 108.024 56.3334 106.486 56.3334H79.3292Z" fill="#A12BFF"/>
|
||||
<path d="M82.8106 31.963C83.5797 31.963 84.2032 31.3395 84.2032 30.5704C84.2032 29.8012 83.5797 29.1777 82.8106 29.1777C82.0415 29.1777 81.418 29.8012 81.418 30.5704C81.418 31.3395 82.0415 31.963 82.8106 31.963Z" fill="#AAB9E5"/>
|
||||
<path d="M82.8101 31.2669C82.2333 31.2669 81.7656 30.7992 81.7656 30.2224V26.0445C81.7656 25.4676 82.2333 25 82.8101 25C83.3869 25 83.8546 25.4676 83.8546 26.0445V30.2224C83.8546 30.7992 83.3869 31.2669 82.8101 31.2669Z" fill="#D3DCFB"/>
|
||||
<path d="M103.004 31.963C103.773 31.963 104.397 31.3395 104.397 30.5704C104.397 29.8012 103.773 29.1777 103.004 29.1777C102.235 29.1777 101.611 29.8012 101.611 30.5704C101.611 31.3395 102.235 31.963 103.004 31.963Z" fill="#AAB9E5"/>
|
||||
<path d="M103.003 31.2669C102.427 31.2669 101.959 30.7992 101.959 30.2224V26.0445C101.959 25.4676 102.427 25 103.003 25C103.58 25 104.048 25.4676 104.048 26.0445V30.2224C104.048 30.7992 103.58 31.2669 103.003 31.2669Z" fill="#D3DCFB"/>
|
||||
<path d="M92.9073 31.963C93.6764 31.963 94.2999 31.3395 94.2999 30.5704C94.2999 29.8012 93.6764 29.1777 92.9073 29.1777C92.1382 29.1777 91.5146 29.8012 91.5146 30.5704C91.5146 31.3395 92.1382 31.963 92.9073 31.963Z" fill="#AAB9E5"/>
|
||||
<path d="M92.9068 31.2669C92.33 31.2669 91.8623 30.7992 91.8623 30.2224V26.0445C91.8623 25.4676 92.33 25 92.9068 25C93.4836 25 93.9513 25.4676 93.9513 26.0445V30.2224C93.9513 30.7992 93.4836 31.2669 92.9068 31.2669Z" fill="#D3DCFB"/>
|
||||
<path d="M95.6925 43.1039C97.2283 43.1039 98.4778 41.8544 98.4778 40.3186V36.837C98.4778 35.3012 97.2283 34.0518 95.6925 34.0518C94.1567 34.0518 92.9072 35.3012 92.9072 36.837V40.3186C92.9072 41.8544 94.1567 43.1039 95.6925 43.1039ZM94.2999 36.837C94.2999 36.0691 94.9246 35.4444 95.6925 35.4444C96.4604 35.4444 97.0851 36.0691 97.0851 36.837V40.3186C97.0851 41.0865 96.4604 41.7113 95.6925 41.7113C94.9246 41.7113 94.2999 41.0865 94.2999 40.3186V36.837Z" fill="#252A3F"/>
|
||||
<path d="M88.451 37.394L90.1222 36.1406V42.4075C90.1222 42.792 90.434 43.1038 90.8185 43.1038C91.203 43.1038 91.5148 42.792 91.5148 42.4075V34.748C91.5148 34.1755 90.8595 33.847 90.4007 34.1909L87.6155 36.2799C87.3078 36.5106 87.2455 36.9471 87.4762 37.2547C87.707 37.5623 88.1433 37.6247 88.451 37.394Z" fill="#252A3F"/>
|
||||
<path d="M99.3538 50.3568C99.4885 50.445 99.6022 50.5494 99.695 50.6701C99.7925 50.7862 99.8691 50.9301 99.9248 51.1018C99.9852 51.2922 100.015 51.4848 100.015 51.6798C100.02 51.8701 99.9852 52.0488 99.9109 52.216C99.8413 52.3784 99.7275 52.5223 99.5697 52.6477C99.4165 52.7684 99.2146 52.8542 98.9639 52.9053C98.8293 52.9378 98.6715 52.9633 98.4904 52.9819C98.3094 53.0005 98.1469 53.0098 98.003 53.0098C97.8219 53.0144 97.6339 53.0144 97.439 53.0098C97.2486 53.0098 97.063 52.9912 96.8819 52.954C96.803 52.9308 96.745 52.8914 96.7078 52.8357C96.6753 52.7753 96.6521 52.708 96.6382 52.6337C96.6196 52.592 96.6104 52.5502 96.6104 52.5084V48.5533C96.6104 48.4233 96.6359 48.3235 96.6869 48.2539C96.7427 48.1796 96.8146 48.1262 96.9028 48.0937C96.991 48.0566 97.0908 48.0357 97.2022 48.0311C97.3136 48.0218 97.4297 48.0172 97.5504 48.0172C97.6432 48.0172 97.7361 48.0172 97.8289 48.0172C97.9264 48.0125 98.0239 48.0125 98.1214 48.0172C98.2746 48.0218 98.4324 48.0357 98.5949 48.0589C98.762 48.0775 98.9198 48.1146 99.0684 48.1703C99.138 48.1936 99.2123 48.226 99.2912 48.2678C99.3701 48.305 99.4328 48.3514 99.4792 48.4071C99.6277 48.5417 99.7368 48.6995 99.8065 48.8806C99.8807 49.057 99.9132 49.238 99.9039 49.4237C99.8947 49.6048 99.8436 49.7788 99.7507 49.946C99.6625 50.1131 99.5302 50.25 99.3538 50.3568ZM98.1353 52.202C98.2792 52.1927 98.4254 52.1765 98.574 52.1533C98.7225 52.1301 98.8246 52.086 98.8803 52.021C98.9407 51.9467 98.9825 51.8608 99.0057 51.7633C99.0335 51.6612 99.0405 51.5591 99.0266 51.457C99.0173 51.3502 98.9871 51.2504 98.9361 51.1575C98.8896 51.0601 98.827 50.9835 98.748 50.9278C98.6413 50.8442 98.5183 50.7908 98.379 50.7676C98.2397 50.7398 98.1028 50.7258 97.9682 50.7258C97.9032 50.7258 97.8428 50.7282 97.7871 50.7328C97.7361 50.7328 97.6896 50.7398 97.6479 50.7537C97.6107 50.763 97.5829 50.7839 97.5643 50.8164C97.5457 50.8488 97.5365 50.8976 97.5365 50.9626C97.5457 51.0833 97.5457 51.204 97.5365 51.3247C97.5272 51.4454 97.5225 51.5614 97.5225 51.6728C97.5225 51.7378 97.5202 51.8098 97.5156 51.8887C97.5156 51.963 97.5411 52.0256 97.5922 52.0767C97.6432 52.1277 97.7175 52.1626 97.815 52.1811C97.9125 52.1997 98.0192 52.2067 98.1353 52.202ZM98.2746 48.8597C98.1306 48.8551 98.01 48.8527 97.9125 48.8527C97.8196 48.8481 97.7453 48.8551 97.6896 48.8736C97.6386 48.8876 97.6014 48.9224 97.5782 48.9781C97.5597 49.0291 97.5527 49.1081 97.5573 49.2148C97.5573 49.303 97.555 49.3912 97.5504 49.4794C97.5504 49.563 97.5504 49.6465 97.5504 49.7301C97.5504 49.8229 97.5806 49.8926 97.6409 49.939C97.7012 49.9808 97.7755 50.0063 97.8637 50.0156C97.9566 50.0249 98.0517 50.0249 98.1492 50.0156C98.2513 50.0063 98.3395 49.9947 98.4138 49.9808C98.5809 49.9529 98.7086 49.8972 98.7968 49.8137C98.8896 49.7255 98.943 49.5978 98.9569 49.4307C98.9755 49.2218 98.9198 49.0779 98.7898 48.999C98.6645 48.9154 98.4927 48.869 98.2746 48.8597Z" fill="white"/>
|
||||
<path d="M93.117 48.8327L93.1031 49.9259H93.3816C93.572 49.9212 93.7414 49.9189 93.89 49.9189C94.0385 49.9189 94.2033 49.9212 94.3843 49.9259H94.4192C94.4749 49.9259 94.5282 49.9282 94.5793 49.9328C94.635 49.9328 94.6884 49.9328 94.7395 49.9328C94.7952 49.9375 94.8486 49.9468 94.8996 49.9607C94.9507 49.97 95.0017 49.9816 95.0528 49.9955C95.1317 50.0234 95.1967 50.0651 95.2478 50.1208C95.2942 50.1812 95.3174 50.2485 95.3174 50.3228C95.3174 50.346 95.3174 50.3738 95.3174 50.4063C95.3174 50.4342 95.3128 50.4597 95.3035 50.4829C95.2942 50.534 95.264 50.5804 95.213 50.6222C95.1897 50.6547 95.1456 50.6779 95.0807 50.6918C95.0203 50.7104 94.96 50.722 94.8996 50.7266C94.8346 50.7406 94.7696 50.7475 94.7046 50.7475H94.3774L93.0892 50.7545L93.0753 52.1193L94.4609 52.1332H94.7882C94.8253 52.1332 94.8602 52.1332 94.8927 52.1332C94.9251 52.1332 94.9553 52.1355 94.9832 52.1402C95.0203 52.1494 95.0528 52.1564 95.0807 52.1611C95.1132 52.1611 95.1433 52.1657 95.1712 52.175C95.2269 52.1935 95.2733 52.2191 95.3104 52.2516C95.3569 52.298 95.387 52.3467 95.401 52.3978C95.4056 52.421 95.4079 52.4465 95.4079 52.4744C95.4126 52.4976 95.4126 52.5231 95.4079 52.551C95.4079 52.6253 95.3847 52.6926 95.3383 52.7529C95.2826 52.8179 95.2176 52.8597 95.1433 52.8783C95.0458 52.92 94.9391 52.9409 94.823 52.9409C94.772 52.9456 94.7186 52.9479 94.6629 52.9479C94.6072 52.9479 94.5538 52.9502 94.5027 52.9549H94.4609C94.0988 52.9641 93.7228 52.9641 93.3329 52.9549C93.2401 52.9549 93.1658 52.9525 93.1101 52.9479C93.0544 52.9479 93.0033 52.9479 92.9569 52.9479C92.9151 52.9479 92.871 52.9479 92.8246 52.9479C92.7782 52.9479 92.7178 52.9479 92.6435 52.9479C92.5368 52.9572 92.4486 52.9386 92.3789 52.8922C92.3279 52.8597 92.2884 52.8156 92.2606 52.7599C92.2466 52.746 92.2397 52.732 92.2397 52.7181C92.235 52.7088 92.2304 52.7019 92.2258 52.6972C92.2211 52.6926 92.2165 52.6856 92.2118 52.6763C92.2025 52.6531 92.1956 52.6299 92.1909 52.6067C92.1863 52.5788 92.184 52.5533 92.184 52.5301C92.1793 52.5069 92.1747 52.4837 92.17 52.4605C92.17 52.4373 92.1677 52.414 92.1631 52.3908V52.2794C92.1631 52.2609 92.1631 52.2423 92.1631 52.2237C92.1677 52.2052 92.17 52.1866 92.17 52.168V51.6249L92.184 50.6222V49.6961C92.184 49.529 92.184 49.3804 92.184 49.2504C92.1886 49.1205 92.1933 48.9789 92.1979 48.8257V48.7909C92.2025 48.7398 92.2049 48.6934 92.2049 48.6516C92.2095 48.6052 92.2118 48.5588 92.2118 48.5123C92.2165 48.4195 92.242 48.329 92.2884 48.2408C92.307 48.2036 92.3256 48.1711 92.3441 48.1433C92.3673 48.1154 92.3975 48.0922 92.4346 48.0737C92.5043 48.0319 92.5762 48.011 92.6505 48.011C92.6876 48.011 92.7155 48.0133 92.7341 48.018V48.011C92.8176 48.011 92.8849 48.011 92.936 48.011C92.9871 48.011 93.0358 48.011 93.0822 48.011C93.1333 48.011 93.1867 48.011 93.2424 48.011C93.2981 48.0064 93.3747 48.004 93.4722 48.004C93.6578 47.9994 93.8342 47.9971 94.0014 47.9971C94.1685 47.9971 94.3402 47.9994 94.5166 48.004H94.5445C94.5956 48.0087 94.6489 48.011 94.7046 48.011C94.7604 48.011 94.8137 48.0133 94.8648 48.018C94.9159 48.018 94.9669 48.0249 95.018 48.0388C95.0691 48.0481 95.1201 48.0621 95.1712 48.0806C95.2501 48.1038 95.3151 48.1433 95.3661 48.199C95.4079 48.264 95.4288 48.329 95.4288 48.394C95.4288 48.4218 95.4288 48.4497 95.4288 48.4775C95.4288 48.5007 95.4242 48.524 95.4149 48.5472C95.4102 48.5936 95.3824 48.6423 95.3313 48.6934C95.3128 48.7027 95.2919 48.7143 95.2687 48.7282C95.2501 48.7421 95.2269 48.7537 95.199 48.763C95.1712 48.7723 95.141 48.7793 95.1085 48.7839C95.0807 48.7839 95.0528 48.7862 95.025 48.7909C94.9878 48.8002 94.953 48.8048 94.9205 48.8048C94.8927 48.8048 94.8602 48.8048 94.823 48.8048H94.5097L93.117 48.8118V48.8327Z" fill="white"/>
|
||||
<path d="M91.0003 48.2053C91.0421 48.261 91.0676 48.326 91.0769 48.4003C91.0769 48.4281 91.0745 48.456 91.0699 48.4838C91.0699 48.507 91.0676 48.5302 91.0629 48.5534C91.0583 48.6045 91.0281 48.6533 90.9724 48.6997C90.9399 48.7229 90.8981 48.7461 90.8471 48.7693C90.8192 48.7786 90.7891 48.7856 90.7566 48.7902C90.7287 48.7902 90.6962 48.7925 90.6591 48.7972C90.6312 48.8064 90.6011 48.8111 90.5686 48.8111C90.5361 48.8111 90.5036 48.8111 90.4711 48.8111H90.1577L88.7024 48.818V48.8389L88.6955 49.9739C88.7326 49.9739 88.7721 49.9739 88.8138 49.9739C88.8603 49.9739 88.916 49.9716 88.981 49.967C89.1666 49.967 89.3314 49.967 89.4753 49.967C89.6239 49.967 89.7864 49.9693 89.9628 49.9739H90.0045C90.0556 49.9739 90.1067 49.9763 90.1577 49.9809C90.2134 49.9809 90.2691 49.9809 90.3248 49.9809C90.3759 49.9855 90.427 49.9925 90.478 50.0018C90.5291 50.0064 90.5802 50.018 90.6312 50.0366C90.7148 50.0645 90.7751 50.1086 90.8123 50.1689C90.8633 50.2293 90.8889 50.2919 90.8889 50.3569C90.8889 50.3848 90.8889 50.4126 90.8889 50.4405C90.8889 50.4637 90.8842 50.4892 90.8749 50.5171C90.8703 50.5542 90.8401 50.6006 90.7844 50.6563C90.7473 50.6888 90.7032 50.7097 90.6521 50.719C90.6289 50.7283 90.6011 50.7376 90.5686 50.7468C90.5407 50.7515 90.5105 50.7561 90.478 50.7608C90.4455 50.7654 90.413 50.7701 90.3806 50.7747C90.3527 50.7747 90.3202 50.7747 90.2831 50.7747H89.9628L88.6815 50.7817L88.6606 52.3971V52.4528C88.6606 52.476 88.6583 52.4992 88.6537 52.5225C88.6537 52.541 88.6514 52.5619 88.6467 52.5851C88.6374 52.6083 88.6282 52.6339 88.6189 52.6617C88.6142 52.6849 88.6073 52.7081 88.598 52.7314C88.5655 52.7963 88.5353 52.8404 88.5075 52.8637C88.4564 52.9008 88.3937 52.9263 88.3195 52.9402C88.1941 52.9681 88.0757 52.9542 87.9643 52.8985C87.9411 52.8845 87.9179 52.8683 87.8947 52.8497C87.8761 52.8265 87.8599 52.7987 87.846 52.7662C87.8367 52.7476 87.832 52.7337 87.832 52.7244L87.8111 52.6826C87.7972 52.6594 87.7879 52.6362 87.7833 52.613C87.7786 52.5851 87.774 52.5596 87.7694 52.5364C87.7694 52.5132 87.767 52.49 87.7624 52.4668C87.7624 52.4435 87.7601 52.4203 87.7554 52.3971C87.7508 52.36 87.7508 52.3228 87.7554 52.2857V52.1743L87.7624 51.6312L87.7694 50.6285C87.774 50.4799 87.7763 50.3291 87.7763 50.1759C87.7763 50.0227 87.7763 49.8648 87.7763 49.7024C87.7717 49.5353 87.7694 49.3867 87.7694 49.2567C87.774 49.1267 87.781 48.9852 87.7903 48.832V48.7972C87.7949 48.7461 87.7972 48.6997 87.7972 48.6579C87.7972 48.6115 87.8019 48.5651 87.8111 48.5186C87.8204 48.4165 87.8436 48.326 87.8808 48.2471C87.9133 48.1681 87.9597 48.1124 88.02 48.0799C88.0897 48.0382 88.1639 48.0173 88.2429 48.0173C88.28 48.0173 88.3102 48.0196 88.3334 48.0242V48.0173C88.4169 48.0173 88.4842 48.0173 88.5353 48.0173C88.5864 48.0173 88.6351 48.0173 88.6815 48.0173C88.728 48.0173 88.779 48.0173 88.8347 48.0173C88.8904 48.0126 88.9647 48.0103 89.0575 48.0103C89.4289 48.0057 89.7956 48.0057 90.1577 48.0103H90.1925C90.2436 48.015 90.2947 48.0173 90.3457 48.0173C90.4014 48.0173 90.4571 48.0196 90.5129 48.0242C90.5639 48.0242 90.615 48.0312 90.666 48.0451C90.7171 48.0544 90.7682 48.0683 90.8192 48.0869C90.8981 48.1101 90.9585 48.1496 91.0003 48.2053Z" fill="white"/>
|
||||
<path d="M150.875 60.512H123.719C121.412 60.512 119.541 58.6415 119.541 56.3341V52.8525H155.053V56.3341C155.053 58.6415 153.183 60.512 150.875 60.512Z" fill="#D3DCFB"/>
|
||||
<path d="M123.719 59.1194C122.183 59.1194 120.934 57.8699 120.934 56.3341V52.8525H153.661V56.3341C153.661 57.8699 152.411 59.1194 150.875 59.1194H123.719Z" fill="#6A0DB4"/>
|
||||
<path d="M150.875 27.7852H123.719C121.415 27.7852 119.541 29.6594 119.541 31.9631V53.5489C119.541 55.8526 121.415 57.7268 123.719 57.7268H150.875C153.179 57.7268 155.053 55.8526 155.053 53.5489C155.053 53.0634 155.053 32.5888 155.053 31.9631C155.053 29.6594 153.179 27.7852 150.875 27.7852Z" fill="#EBF5FC"/>
|
||||
<path d="M123.719 56.3334C122.181 56.3334 120.934 55.0864 120.934 53.5482V47.2813C120.934 46.5122 121.557 45.8887 122.326 45.8887H152.268C153.037 45.8887 153.661 46.5122 153.661 47.2813V53.5482C153.661 55.0864 152.413 56.3334 150.875 56.3334H123.719Z" fill="#A12BFF"/>
|
||||
<path d="M127.2 31.963C127.969 31.963 128.593 31.3395 128.593 30.5704C128.593 29.8012 127.969 29.1777 127.2 29.1777C126.431 29.1777 125.808 29.8012 125.808 30.5704C125.808 31.3395 126.431 31.963 127.2 31.963Z" fill="#AAB9E5"/>
|
||||
<path d="M127.201 31.2669C126.624 31.2669 126.156 30.7992 126.156 30.2224V26.0445C126.156 25.4676 126.624 25 127.201 25C127.778 25 128.245 25.4676 128.245 26.0445V30.2224C128.245 30.7992 127.778 31.2669 127.201 31.2669Z" fill="#D3DCFB"/>
|
||||
<path d="M147.394 31.963C148.163 31.963 148.786 31.3395 148.786 30.5704C148.786 29.8012 148.163 29.1777 147.394 29.1777C146.624 29.1777 146.001 29.8012 146.001 30.5704C146.001 31.3395 146.624 31.963 147.394 31.963Z" fill="#AAB9E5"/>
|
||||
<path d="M147.394 31.2669C146.817 31.2669 146.35 30.7992 146.35 30.2224V26.0445C146.35 25.4676 146.817 25 147.394 25C147.971 25 148.439 25.4676 148.439 26.0445V30.2224C148.439 30.7992 147.971 31.2669 147.394 31.2669Z" fill="#D3DCFB"/>
|
||||
<path d="M137.297 31.963C138.066 31.963 138.69 31.3395 138.69 30.5704C138.69 29.8012 138.066 29.1777 137.297 29.1777C136.528 29.1777 135.904 29.8012 135.904 30.5704C135.904 31.3395 136.528 31.963 137.297 31.963Z" fill="#AAB9E5"/>
|
||||
<path d="M137.297 31.2669C136.721 31.2669 136.253 30.7992 136.253 30.2224V26.0445C136.253 25.4676 136.721 25 137.297 25C137.874 25 138.342 25.4676 138.342 26.0445V30.2224C138.342 30.7992 137.874 31.2669 137.297 31.2669Z" fill="#D3DCFB"/>
|
||||
<path d="M140.081 43.1039C141.617 43.1039 142.866 41.8544 142.866 40.3186V36.837C142.866 35.3012 141.617 34.0518 140.081 34.0518C138.545 34.0518 137.296 35.3012 137.296 36.837V40.3186C137.296 41.8544 138.545 43.1039 140.081 43.1039ZM138.689 36.837C138.689 36.0691 139.313 35.4444 140.081 35.4444C140.849 35.4444 141.474 36.0691 141.474 36.837V40.3186C141.474 41.0865 140.849 41.7113 140.081 41.7113C139.313 41.7113 138.689 41.0865 138.689 40.3186V36.837Z" fill="#252A3F"/>
|
||||
<path d="M132.841 37.394L134.512 36.1406V42.4075C134.512 42.792 134.824 43.1038 135.208 43.1038C135.593 43.1038 135.904 42.792 135.904 42.4075V34.748C135.904 34.1755 135.249 33.847 134.79 34.1909L132.005 36.2799C131.697 36.5106 131.635 36.9471 131.866 37.2547C132.097 37.5623 132.533 37.6247 132.841 37.394Z" fill="#252A3F"/>
|
||||
<path d="M144.855 52.6226C144.859 52.6691 144.855 52.7132 144.841 52.7549C144.832 52.7828 144.818 52.806 144.799 52.8246C144.785 52.8431 144.767 52.8617 144.743 52.8803C144.702 52.9081 144.65 52.9337 144.59 52.9569C144.553 52.9661 144.516 52.9731 144.479 52.9778C144.446 52.987 144.411 52.987 144.374 52.9778C144.3 52.9731 144.235 52.9453 144.179 52.8942C144.1 52.8292 144.035 52.7573 143.984 52.6783C143.961 52.6412 143.936 52.5994 143.908 52.553C143.88 52.5066 143.854 52.4578 143.831 52.4068L143.058 50.9375C143.021 50.9375 142.984 50.9399 142.947 50.9445C142.91 50.9445 142.873 50.9468 142.835 50.9515C142.738 50.9608 142.645 50.9631 142.557 50.9584C142.473 50.9538 142.385 50.9538 142.292 50.9584H142.16V52.2188C142.16 52.2559 142.158 52.2907 142.153 52.3232C142.153 52.3557 142.153 52.3905 142.153 52.4277C142.153 52.4509 142.151 52.481 142.146 52.5182C142.146 52.5553 142.144 52.5901 142.139 52.6226C142.13 52.6737 142.109 52.7271 142.076 52.7828C142.044 52.8338 142 52.8779 141.944 52.9151C141.847 52.9754 141.728 52.9917 141.589 52.9638C141.529 52.9499 141.471 52.9267 141.415 52.8942C141.396 52.8803 141.38 52.864 141.366 52.8455C141.352 52.8222 141.341 52.799 141.331 52.7758C141.322 52.7526 141.313 52.7294 141.303 52.7062C141.299 52.6783 141.292 52.6528 141.283 52.6296C141.269 52.5832 141.262 52.5391 141.262 52.4973V48.5422C141.262 48.5144 141.262 48.4865 141.262 48.4586C141.266 48.4262 141.271 48.3983 141.276 48.3751C141.28 48.324 141.297 48.273 141.324 48.2219C141.338 48.1662 141.362 48.1267 141.394 48.1035C141.422 48.0757 141.464 48.0525 141.519 48.0339C141.58 48.0107 141.666 48.0014 141.777 48.006C141.986 48.0107 142.192 48.013 142.397 48.013C142.601 48.013 142.805 48.0176 143.009 48.0269C143.144 48.0362 143.286 48.0525 143.434 48.0757C143.587 48.0942 143.729 48.1291 143.859 48.1801C143.943 48.2126 144.019 48.2451 144.089 48.2776C144.177 48.3287 144.247 48.3774 144.298 48.4238C144.46 48.5724 144.583 48.7511 144.667 48.96C144.75 49.1689 144.792 49.3801 144.792 49.5936C144.792 49.8443 144.732 50.0741 144.611 50.283C144.495 50.4919 144.307 50.6474 144.047 50.7495C144.038 50.7588 144.024 50.7658 144.005 50.7704C143.991 50.7704 143.98 50.7727 143.97 50.7774L144.611 52.0656L144.674 52.177C144.683 52.1956 144.695 52.2164 144.708 52.2397C144.722 52.2629 144.734 52.2861 144.743 52.3093C144.757 52.3325 144.769 52.358 144.778 52.3859C144.792 52.4137 144.806 52.4393 144.82 52.4625C144.834 52.5275 144.845 52.5809 144.855 52.6226ZM143.114 50.1437C143.197 50.1437 143.276 50.1298 143.351 50.102C143.43 50.0695 143.499 50.0277 143.56 49.9766C143.625 49.9256 143.678 49.8675 143.72 49.8025C143.761 49.7329 143.785 49.6586 143.789 49.5797C143.808 49.3476 143.748 49.1759 143.608 49.0644C143.469 48.9484 143.286 48.8857 143.058 48.8764C142.924 48.8672 142.775 48.8625 142.613 48.8625C142.455 48.8625 142.304 48.8625 142.16 48.8625C142.165 49.0528 142.165 49.2478 142.16 49.4474C142.16 49.6424 142.16 49.8745 142.16 50.1437H143.114Z" fill="white"/>
|
||||
<path d="M140.062 52.4555C140.067 52.4833 140.069 52.5112 140.069 52.539C140.074 52.5622 140.076 52.5901 140.076 52.6226C140.076 52.6783 140.06 52.7293 140.027 52.7758C140.013 52.799 139.995 52.8222 139.971 52.8454C139.948 52.864 139.92 52.8802 139.888 52.8941C139.772 52.9591 139.649 52.9823 139.519 52.9638C139.454 52.9452 139.396 52.915 139.345 52.8732C139.335 52.864 139.328 52.8593 139.324 52.8593C139.319 52.8547 139.315 52.8477 139.31 52.8384C139.305 52.8338 139.301 52.8291 139.296 52.8245C139.291 52.8152 139.284 52.8083 139.275 52.8036C139.252 52.7804 139.233 52.7595 139.219 52.7409C139.205 52.7177 139.192 52.6945 139.178 52.6713C139.168 52.6481 139.157 52.6272 139.143 52.6086C139.133 52.5854 139.122 52.5622 139.108 52.539C139.099 52.5204 139.089 52.5042 139.08 52.4903C139.071 52.4717 139.064 52.4531 139.059 52.4346C139.041 52.3928 139.029 52.3557 139.024 52.3232L138.878 51.982C138.558 51.982 138.238 51.9843 137.917 51.9889C137.602 51.9889 137.284 51.9866 136.963 51.982L136.817 52.3232C136.808 52.3417 136.801 52.3603 136.796 52.3789C136.796 52.3974 136.792 52.416 136.782 52.4346C136.773 52.4531 136.764 52.4717 136.754 52.4903C136.75 52.5042 136.743 52.5204 136.734 52.539C136.72 52.5622 136.706 52.5854 136.692 52.6086C136.682 52.6272 136.671 52.6481 136.657 52.6713C136.648 52.6945 136.636 52.7177 136.622 52.7409C136.608 52.7595 136.59 52.7804 136.566 52.8036C136.557 52.8083 136.55 52.8152 136.546 52.8245C136.541 52.8291 136.536 52.8338 136.532 52.8384C136.527 52.8477 136.522 52.8547 136.518 52.8593C136.513 52.8593 136.506 52.864 136.497 52.8732C136.446 52.915 136.388 52.9452 136.323 52.9638C136.193 52.9823 136.07 52.9591 135.954 52.8941C135.921 52.8802 135.893 52.864 135.87 52.8454C135.847 52.8222 135.828 52.799 135.814 52.7758C135.782 52.7293 135.766 52.6783 135.766 52.6226C135.766 52.5901 135.766 52.5622 135.766 52.539C135.77 52.5112 135.775 52.4833 135.78 52.4555C135.789 52.4137 135.8 52.3719 135.814 52.3301C135.828 52.2883 135.835 52.2675 135.835 52.2675L137.284 48.7023L137.325 48.5909C137.335 48.563 137.346 48.5375 137.36 48.5143C137.374 48.4911 137.386 48.4632 137.395 48.4307C137.418 48.3704 137.444 48.317 137.472 48.2706C137.486 48.2427 137.502 48.2172 137.52 48.194C137.539 48.1708 137.557 48.1476 137.576 48.1244C137.604 48.0872 137.643 48.057 137.694 48.0338C137.759 48.0106 137.834 47.999 137.917 47.999C138.005 47.999 138.082 48.0106 138.147 48.0338C138.198 48.057 138.238 48.0872 138.265 48.1244C138.298 48.1661 138.333 48.2149 138.37 48.2706C138.398 48.317 138.423 48.3704 138.446 48.4307C138.456 48.4632 138.467 48.4911 138.481 48.5143C138.495 48.5375 138.507 48.563 138.516 48.5909L138.558 48.7023L140.006 52.2675C140.006 52.2675 140.013 52.2883 140.027 52.3301C140.041 52.3719 140.053 52.4137 140.062 52.4555ZM138.412 50.7495C138.351 50.6149 138.289 50.4756 138.224 50.3317C138.163 50.1878 138.098 50.0416 138.029 49.893C138.01 49.8512 137.992 49.8094 137.973 49.7677C137.954 49.7212 137.936 49.6771 137.917 49.6354C137.903 49.6771 137.887 49.7212 137.869 49.7677C137.85 49.8094 137.831 49.8512 137.813 49.893C137.743 50.0416 137.676 50.1878 137.611 50.3317C137.551 50.4756 137.49 50.6149 137.43 50.7495L137.304 51.0559H138.537L138.412 50.7495Z" fill="white"/>
|
||||
<path d="M134.573 52.4273C134.568 52.483 134.561 52.541 134.552 52.6013C134.542 52.6617 134.526 52.7174 134.503 52.7685C134.48 52.8242 134.45 52.8659 134.412 52.8938C134.361 52.9402 134.301 52.9658 134.231 52.9704C134.166 52.9936 134.104 53.0006 134.043 52.9913C133.983 52.982 133.927 52.9658 133.876 52.9425C133.811 52.9008 133.763 52.852 133.73 52.7963C133.702 52.736 133.681 52.6733 133.667 52.6083C133.653 52.5433 133.647 52.476 133.647 52.4064C133.647 52.3367 133.647 52.2718 133.647 52.2114V51.6683L133.64 50.6029C133.64 50.5286 133.64 50.4706 133.64 50.4288C133.64 50.3871 133.64 50.3499 133.64 50.3174C133.64 50.2803 133.637 50.2408 133.633 50.199C133.633 50.1526 133.633 50.0876 133.633 50.0041C133.633 49.9902 133.633 49.9669 133.633 49.9344C133.637 49.8973 133.635 49.8021 133.626 49.649C133.445 49.9507 133.294 50.1944 133.173 50.3801C133.057 50.5611 132.957 50.7027 132.874 50.8048C132.795 50.9023 132.725 50.9696 132.665 51.0068C132.604 51.0393 132.542 51.0578 132.477 51.0625C132.44 51.0671 132.402 51.0602 132.365 51.0416C132.328 51.023 132.291 50.9998 132.254 50.972C132.221 50.9441 132.189 50.9163 132.156 50.8884C132.129 50.8559 132.105 50.8257 132.087 50.7979C131.975 50.6586 131.85 50.4915 131.711 50.2965C131.571 50.1016 131.428 49.8648 131.279 49.5863C131.279 49.5909 131.277 49.6675 131.272 49.8161C131.272 49.9646 131.272 50.1503 131.272 50.3731C131.272 50.5913 131.27 50.8281 131.265 51.0834C131.265 51.334 131.263 51.5685 131.258 51.7867C131.258 52.0048 131.256 52.1882 131.251 52.3367C131.247 52.4806 131.242 52.5526 131.237 52.5526C131.237 52.6315 131.219 52.7058 131.182 52.7754C131.144 52.8404 131.093 52.8938 131.028 52.9356C130.968 52.9774 130.896 53.0006 130.812 53.0052C130.729 53.0099 130.638 52.9866 130.541 52.9356C130.481 52.8984 130.434 52.8451 130.402 52.7754C130.374 52.7058 130.355 52.6408 130.346 52.5805C130.341 52.5155 130.337 52.4528 130.332 52.3924C130.332 52.3321 130.332 52.2694 130.332 52.2044L130.339 51.6613L130.346 50.589V49.6559C130.346 49.2521 130.36 48.8552 130.388 48.4652C130.388 48.4142 130.392 48.3677 130.402 48.326C130.416 48.2795 130.432 48.2354 130.45 48.1937C130.488 48.1194 130.536 48.0637 130.597 48.0265C130.666 47.9848 130.741 47.9639 130.819 47.9639C130.852 47.9639 130.882 47.9662 130.91 47.9708C130.942 47.9708 130.973 47.9732 131 47.9778C131.093 47.9964 131.172 48.0521 131.237 48.1449C131.307 48.2331 131.372 48.3097 131.432 48.3747C131.469 48.4165 131.509 48.4675 131.551 48.5279C131.592 48.5882 131.634 48.6509 131.676 48.7159C131.718 48.7809 131.757 48.8435 131.794 48.9039C131.831 48.9642 131.864 49.0176 131.892 49.064C132.012 49.259 132.119 49.4377 132.212 49.6002C132.31 49.7627 132.4 49.902 132.484 50.018C132.498 50.0041 132.514 49.9855 132.532 49.9623C132.551 49.9344 132.57 49.9066 132.588 49.8787C132.611 49.8462 132.63 49.8161 132.644 49.7882C132.662 49.7604 132.676 49.7372 132.686 49.7186C132.732 49.6443 132.778 49.5724 132.825 49.5027C132.871 49.4285 132.92 49.3519 132.971 49.2729C133.027 49.1894 133.082 49.0989 133.138 49.0014C133.199 48.9039 133.268 48.7925 133.347 48.6671C133.38 48.6114 133.421 48.5441 133.472 48.4652C133.523 48.3863 133.582 48.3097 133.647 48.2354C133.711 48.1612 133.779 48.0985 133.848 48.0474C133.923 47.9917 133.997 47.9639 134.071 47.9639C134.108 47.9639 134.141 47.9662 134.169 47.9708C134.197 47.9708 134.224 47.9732 134.252 47.9778C134.308 47.9824 134.361 48.008 134.412 48.0544C134.45 48.0915 134.477 48.131 134.496 48.1728C134.515 48.2331 134.526 48.2842 134.531 48.326C134.535 48.3584 134.538 48.3886 134.538 48.4165C134.542 48.4443 134.545 48.4722 134.545 48.5C134.545 48.76 134.547 49.0176 134.552 49.2729C134.556 49.5283 134.559 49.7859 134.559 50.0459C134.559 50.3615 134.559 50.6865 134.559 51.0207C134.563 51.3549 134.566 51.6799 134.566 51.9955C134.566 52.0605 134.568 52.1302 134.573 52.2044C134.577 52.2787 134.577 52.353 134.573 52.4273Z" fill="white"/>
|
||||
<path d="M212.938 60.512H185.781C183.474 60.512 181.604 58.6415 181.604 56.3341V52.8525H217.116V56.3341C217.116 58.6415 215.245 60.512 212.938 60.512Z" fill="#D3DCFB"/>
|
||||
<path d="M185.781 59.1194C184.246 59.1194 182.996 57.8699 182.996 56.3341V52.8525H215.723V56.3341C215.723 57.8699 214.474 59.1194 212.938 59.1194H185.781Z" fill="#6A0DB4"/>
|
||||
<path d="M212.938 27.7852H185.781C183.478 27.7852 181.604 29.6594 181.604 31.9631V53.5489C181.604 55.8526 183.478 57.7268 185.781 57.7268H212.938C215.242 57.7268 217.116 55.8526 217.116 53.5489C217.116 53.0634 217.116 32.5888 217.116 31.9631C217.116 29.6594 215.242 27.7852 212.938 27.7852Z" fill="#EBF5FC"/>
|
||||
<path d="M185.781 56.3334C184.243 56.3334 182.996 55.0864 182.996 53.5482V47.2813C182.996 46.5122 183.62 45.8887 184.389 45.8887H214.33C215.1 45.8887 215.723 46.5122 215.723 47.2813V53.5482C215.723 55.0864 214.476 56.3334 212.938 56.3334H185.781Z" fill="#A12BFF"/>
|
||||
<path d="M189.263 31.963C190.032 31.963 190.655 31.3395 190.655 30.5704C190.655 29.8012 190.032 29.1777 189.263 29.1777C188.494 29.1777 187.87 29.8012 187.87 30.5704C187.87 31.3395 188.494 31.963 189.263 31.963Z" fill="#AAB9E5"/>
|
||||
<path d="M189.263 31.2669C188.686 31.2669 188.219 30.7992 188.219 30.2224V26.0445C188.219 25.4676 188.686 25 189.263 25C189.84 25 190.308 25.4676 190.308 26.0445V30.2224C190.308 30.7992 189.84 31.2669 189.263 31.2669Z" fill="#D3DCFB"/>
|
||||
<path d="M209.456 31.963C210.225 31.963 210.849 31.3395 210.849 30.5704C210.849 29.8012 210.225 29.1777 209.456 29.1777C208.687 29.1777 208.063 29.8012 208.063 30.5704C208.063 31.3395 208.687 31.963 209.456 31.963Z" fill="#AAB9E5"/>
|
||||
<path d="M209.457 31.2669C208.88 31.2669 208.412 30.7992 208.412 30.2224V26.0445C208.412 25.4676 208.88 25 209.457 25C210.033 25 210.501 25.4676 210.501 26.0445V30.2224C210.501 30.7992 210.033 31.2669 209.457 31.2669Z" fill="#D3DCFB"/>
|
||||
<path d="M199.358 31.963C200.128 31.963 200.751 31.3395 200.751 30.5704C200.751 29.8012 200.128 29.1777 199.358 29.1777C198.589 29.1777 197.966 29.8012 197.966 30.5704C197.966 31.3395 198.589 31.963 199.358 31.963Z" fill="#AAB9E5"/>
|
||||
<path d="M199.359 31.2669C198.782 31.2669 198.314 30.7992 198.314 30.2224V26.0445C198.314 25.4676 198.782 25 199.359 25C199.936 25 200.403 25.4676 200.403 26.0445V30.2224C200.403 30.7992 199.936 31.2669 199.359 31.2669Z" fill="#D3DCFB"/>
|
||||
<path d="M202.145 43.1039C203.68 43.1039 204.93 41.8544 204.93 40.3186V36.837C204.93 35.3012 203.68 34.0518 202.145 34.0518C200.609 34.0518 199.359 35.3012 199.359 36.837V40.3186C199.359 41.8544 200.609 43.1039 202.145 43.1039ZM200.752 36.837C200.752 36.0691 201.377 35.4444 202.145 35.4444C202.913 35.4444 203.537 36.0691 203.537 36.837V40.3186C203.537 41.0865 202.913 41.7113 202.145 41.7113C201.377 41.7113 200.752 41.0865 200.752 40.3186V36.837Z" fill="#252A3F"/>
|
||||
<path d="M194.903 37.394L196.574 36.1406V42.4075C196.574 42.792 196.886 43.1038 197.271 43.1038C197.655 43.1038 197.967 42.792 197.967 42.4075V34.748C197.967 34.1755 197.312 33.847 196.853 34.1909L194.068 36.2799C193.76 36.5106 193.698 36.9471 193.928 37.2547C194.159 37.5623 194.595 37.6247 194.903 37.394Z" fill="#252A3F"/>
|
||||
<path d="M206.55 52.6207C206.555 52.6671 206.55 52.7112 206.536 52.753C206.527 52.7808 206.513 52.804 206.494 52.8226C206.48 52.8412 206.462 52.8597 206.439 52.8783C206.397 52.9062 206.346 52.9317 206.285 52.9549C206.248 52.9642 206.211 52.9712 206.174 52.9758C206.142 52.9851 206.107 52.9851 206.07 52.9758C205.995 52.9712 205.93 52.9433 205.875 52.8922C205.796 52.8273 205.731 52.7553 205.68 52.6764C205.656 52.6392 205.631 52.5975 205.603 52.551C205.575 52.5046 205.55 52.4559 205.526 52.4048L204.754 50.9356C204.716 50.9356 204.679 50.9379 204.642 50.9426C204.605 50.9426 204.568 50.9449 204.531 50.9495C204.433 50.9588 204.34 50.9611 204.252 50.9565C204.169 50.9518 204.08 50.9518 203.988 50.9565H203.855V52.2168C203.855 52.254 203.853 52.2888 203.848 52.3213C203.848 52.3538 203.848 52.3886 203.848 52.4257C203.848 52.4489 203.846 52.4791 203.841 52.5162C203.841 52.5534 203.839 52.5882 203.834 52.6207C203.825 52.6717 203.804 52.7251 203.772 52.7808C203.739 52.8319 203.695 52.876 203.639 52.9131C203.542 52.9735 203.424 52.9897 203.284 52.9619C203.224 52.9479 203.166 52.9247 203.11 52.8922C203.092 52.8783 203.075 52.8621 203.061 52.8435C203.048 52.8203 203.036 52.7971 203.027 52.7739C203.017 52.7507 203.008 52.7274 202.999 52.7042C202.994 52.6764 202.987 52.6509 202.978 52.6276C202.964 52.5812 202.957 52.5371 202.957 52.4953V48.5403C202.957 48.5124 202.957 48.4845 202.957 48.4567C202.962 48.4242 202.966 48.3963 202.971 48.3731C202.976 48.3221 202.992 48.271 203.02 48.2199C203.034 48.1642 203.057 48.1248 203.089 48.1016C203.117 48.0737 203.159 48.0505 203.215 48.0319C203.275 48.0087 203.361 47.9994 203.472 48.0041C203.681 48.0087 203.888 48.0111 204.092 48.0111C204.296 48.0111 204.501 48.0157 204.705 48.025C204.839 48.0343 204.981 48.0505 205.13 48.0737C205.283 48.0923 205.424 48.1271 205.554 48.1782C205.638 48.2107 205.714 48.2432 205.784 48.2757C205.872 48.3267 205.942 48.3755 205.993 48.4219C206.155 48.5704 206.278 48.7492 206.362 48.958C206.446 49.1669 206.487 49.3782 206.487 49.5917C206.487 49.8424 206.427 50.0722 206.306 50.281C206.19 50.4899 206.002 50.6455 205.742 50.7476C205.733 50.7569 205.719 50.7638 205.701 50.7685C205.687 50.7685 205.675 50.7708 205.666 50.7754L206.306 52.0636L206.369 52.175C206.378 52.1936 206.39 52.2145 206.404 52.2377C206.418 52.2609 206.429 52.2841 206.439 52.3073C206.453 52.3305 206.464 52.3561 206.473 52.3839C206.487 52.4118 206.501 52.4373 206.515 52.4605C206.529 52.5255 206.541 52.5789 206.55 52.6207ZM204.809 50.1418C204.893 50.1418 204.972 50.1279 205.046 50.1C205.125 50.0675 205.195 50.0257 205.255 49.9747C205.32 49.9236 205.373 49.8656 205.415 49.8006C205.457 49.731 205.48 49.6567 205.485 49.5778C205.503 49.3457 205.443 49.1739 205.304 49.0625C205.164 48.9464 204.981 48.8838 204.754 48.8745C204.619 48.8652 204.47 48.8606 204.308 48.8606C204.15 48.8606 203.999 48.8606 203.855 48.8606C203.86 49.0509 203.86 49.2459 203.855 49.4455C203.855 49.6404 203.855 49.8725 203.855 50.1418H204.809Z" fill="white"/>
|
||||
<path d="M201.273 48.4353C201.449 48.5978 201.579 48.7928 201.663 49.0202C201.746 49.2431 201.779 49.4659 201.76 49.6887C201.742 49.9022 201.674 50.0995 201.558 50.2806C201.442 50.457 201.266 50.5916 201.029 50.6844C200.843 50.7634 200.66 50.8191 200.479 50.8516C200.298 50.8841 200.098 50.9096 199.88 50.9282C199.783 50.9374 199.699 50.9444 199.63 50.949C199.565 50.949 199.488 50.9514 199.4 50.956C199.381 50.956 199.349 50.956 199.302 50.956C199.261 50.956 199.23 50.9583 199.212 50.963V52.4043C199.198 52.4925 199.179 52.5831 199.156 52.6759C199.137 52.7688 199.084 52.8407 198.996 52.8918C198.945 52.9196 198.882 52.9359 198.808 52.9405C198.734 52.9452 198.666 52.9428 198.606 52.9335C198.541 52.9243 198.485 52.908 198.439 52.8848C198.397 52.857 198.362 52.8105 198.334 52.7455C198.316 52.7038 198.297 52.6573 198.279 52.6063C198.265 52.5506 198.258 52.4833 198.258 52.4043V48.5537C198.258 48.5212 198.26 48.491 198.265 48.4632C198.269 48.4353 198.274 48.4075 198.279 48.3796C198.288 48.3564 198.295 48.3309 198.3 48.303C198.304 48.2752 198.311 48.2496 198.32 48.2264C198.33 48.2032 198.339 48.1823 198.348 48.1638C198.362 48.1452 198.379 48.129 198.397 48.115C198.42 48.0918 198.455 48.0709 198.502 48.0524C198.553 48.0338 198.627 48.0245 198.724 48.0245H198.738C198.882 48.0152 199.042 48.0083 199.219 48.0036C199.395 47.9943 199.541 47.9967 199.657 48.0106C199.722 48.0199 199.783 48.0268 199.838 48.0315C199.894 48.0315 199.948 48.0338 199.999 48.0384C200.054 48.0431 200.11 48.0477 200.166 48.0524C200.221 48.057 200.277 48.064 200.333 48.0732C200.379 48.0825 200.421 48.0895 200.458 48.0941C200.5 48.0988 200.542 48.1057 200.584 48.115C200.621 48.1243 200.66 48.1336 200.702 48.1429C200.748 48.1522 200.79 48.1684 200.827 48.1916C200.925 48.2195 201.006 48.2543 201.071 48.2961C201.136 48.3379 201.203 48.3843 201.273 48.4353ZM200.855 49.5843C200.86 49.4728 200.837 49.3754 200.785 49.2918C200.739 49.2082 200.672 49.1386 200.584 49.0829C200.495 49.0272 200.396 48.9831 200.284 48.9506C200.173 48.9181 200.061 48.8949 199.95 48.881C199.922 48.881 199.883 48.881 199.831 48.881C199.785 48.8763 199.734 48.874 199.678 48.874C199.623 48.8694 199.569 48.8671 199.518 48.8671C199.472 48.8624 199.435 48.8601 199.407 48.8601C199.384 48.8554 199.356 48.8531 199.323 48.8531C199.291 48.8531 199.254 48.8531 199.212 48.8531C199.216 48.997 199.219 49.1363 199.219 49.2709C199.219 49.4009 199.219 49.5425 199.219 49.6957C199.214 49.7792 199.212 49.8628 199.212 49.9463C199.212 50.0299 199.212 50.1111 199.212 50.1901L199.643 50.1831C199.755 50.1831 199.878 50.1761 200.013 50.1622C200.147 50.1483 200.275 50.1204 200.396 50.0786C200.516 50.0369 200.618 49.9765 200.702 49.8976C200.79 49.8187 200.841 49.7142 200.855 49.5843Z" fill="white"/>
|
||||
<path d="M197.058 52.4535C197.063 52.4814 197.065 52.5092 197.065 52.5371C197.07 52.5603 197.072 52.5881 197.072 52.6206C197.072 52.6763 197.056 52.7274 197.023 52.7738C197.009 52.797 196.991 52.8202 196.967 52.8434C196.944 52.862 196.916 52.8783 196.884 52.8922C196.768 52.9572 196.645 52.9804 196.515 52.9618C196.45 52.9432 196.392 52.9131 196.341 52.8713C196.332 52.862 196.325 52.8574 196.32 52.8574C196.315 52.8527 196.311 52.8458 196.306 52.8365C196.301 52.8318 196.297 52.8272 196.292 52.8226C196.287 52.8133 196.28 52.8063 196.271 52.8017C196.248 52.7785 196.229 52.7576 196.215 52.739C196.202 52.7158 196.188 52.6926 196.174 52.6694C196.164 52.6462 196.153 52.6253 196.139 52.6067C196.13 52.5835 196.118 52.5603 196.104 52.5371C196.095 52.5185 196.085 52.5022 196.076 52.4883C196.067 52.4698 196.06 52.4512 196.055 52.4326C196.037 52.3908 196.025 52.3537 196.02 52.3212L195.874 51.98C195.554 51.98 195.234 51.9823 194.913 51.987C194.598 51.987 194.28 51.9847 193.959 51.98L193.813 52.3212C193.804 52.3398 193.797 52.3583 193.792 52.3769C193.792 52.3955 193.788 52.414 193.778 52.4326C193.769 52.4512 193.76 52.4698 193.75 52.4883C193.746 52.5022 193.739 52.5185 193.73 52.5371C193.716 52.5603 193.702 52.5835 193.688 52.6067C193.679 52.6253 193.667 52.6462 193.653 52.6694C193.644 52.6926 193.632 52.7158 193.618 52.739C193.604 52.7576 193.586 52.7785 193.562 52.8017C193.553 52.8063 193.546 52.8133 193.542 52.8226C193.537 52.8272 193.532 52.8318 193.528 52.8365C193.523 52.8458 193.518 52.8527 193.514 52.8574C193.509 52.8574 193.502 52.862 193.493 52.8713C193.442 52.9131 193.384 52.9432 193.319 52.9618C193.189 52.9804 193.066 52.9572 192.95 52.8922C192.917 52.8783 192.889 52.862 192.866 52.8434C192.843 52.8202 192.824 52.797 192.81 52.7738C192.778 52.7274 192.762 52.6763 192.762 52.6206C192.762 52.5881 192.762 52.5603 192.762 52.5371C192.766 52.5092 192.771 52.4814 192.776 52.4535C192.785 52.4117 192.797 52.3699 192.81 52.3282C192.824 52.2864 192.831 52.2655 192.831 52.2655L194.28 48.7004L194.321 48.5889C194.331 48.5611 194.342 48.5356 194.356 48.5123C194.37 48.4891 194.382 48.4613 194.391 48.4288C194.414 48.3684 194.44 48.3151 194.468 48.2686C194.482 48.2408 194.498 48.2152 194.516 48.192C194.535 48.1688 194.554 48.1456 194.572 48.1224C194.6 48.0853 194.639 48.0551 194.691 48.0319C194.756 48.0087 194.83 47.9971 194.913 47.9971C195.002 47.9971 195.078 48.0087 195.143 48.0319C195.194 48.0551 195.234 48.0853 195.261 48.1224C195.294 48.1642 195.329 48.2129 195.366 48.2686C195.394 48.3151 195.419 48.3684 195.443 48.4288C195.452 48.4613 195.463 48.4891 195.477 48.5123C195.491 48.5356 195.503 48.5611 195.512 48.5889L195.554 48.7004L197.002 52.2655C197.002 52.2655 197.009 52.2864 197.023 52.3282C197.037 52.3699 197.049 52.4117 197.058 52.4535ZM195.408 50.7475C195.347 50.6129 195.285 50.4736 195.22 50.3297C195.159 50.1858 195.094 50.0396 195.025 49.8911C195.006 49.8493 194.988 49.8075 194.969 49.7657C194.95 49.7193 194.932 49.6752 194.913 49.6334C194.899 49.6752 194.883 49.7193 194.865 49.7657C194.846 49.8075 194.827 49.8493 194.809 49.8911C194.739 50.0396 194.672 50.1858 194.607 50.3297C194.547 50.4736 194.486 50.6129 194.426 50.7475L194.301 51.0539H195.533L195.408 50.7475Z" fill="white"/>
|
||||
<path d="M257.328 60.512H230.172C227.865 60.512 225.994 58.6415 225.994 56.3341V52.8525H261.506V56.3341C261.506 58.6415 259.636 60.512 257.328 60.512Z" fill="#D3DCFB"/>
|
||||
<path d="M230.172 59.1194C228.636 59.1194 227.387 57.8699 227.387 56.3341V52.8525H260.114V56.3341C260.114 57.8699 258.864 59.1194 257.328 59.1194H230.172Z" fill="#6A0DB4"/>
|
||||
<path d="M257.328 27.7852H230.172C227.868 27.7852 225.994 29.6594 225.994 31.9631V53.5489C225.994 55.8526 227.868 57.7268 230.172 57.7268H257.328C259.632 57.7268 261.506 55.8526 261.506 53.5489C261.506 53.0634 261.506 32.5888 261.506 31.9631C261.506 29.6594 259.632 27.7852 257.328 27.7852Z" fill="#EBF5FC"/>
|
||||
<path d="M230.172 56.3334C228.634 56.3334 227.387 55.0864 227.387 53.5482V47.2813C227.387 46.5122 228.01 45.8887 228.779 45.8887H258.721C259.49 45.8887 260.114 46.5122 260.114 47.2813V53.5482C260.114 55.0864 258.867 56.3334 257.328 56.3334H230.172Z" fill="#A12BFF"/>
|
||||
<path d="M233.654 31.963C234.423 31.963 235.047 31.3395 235.047 30.5704C235.047 29.8012 234.423 29.1777 233.654 29.1777C232.885 29.1777 232.262 29.8012 232.262 30.5704C232.262 31.3395 232.885 31.963 233.654 31.963Z" fill="#AAB9E5"/>
|
||||
<path d="M233.654 31.2669C233.077 31.2669 232.609 30.7992 232.609 30.2224V26.0445C232.609 25.4676 233.077 25 233.654 25C234.231 25 234.698 25.4676 234.698 26.0445V30.2224C234.698 30.7992 234.231 31.2669 233.654 31.2669Z" fill="#D3DCFB"/>
|
||||
<path d="M253.847 31.963C254.616 31.963 255.239 31.3395 255.239 30.5704C255.239 29.8012 254.616 29.1777 253.847 29.1777C253.078 29.1777 252.454 29.8012 252.454 30.5704C252.454 31.3395 253.078 31.963 253.847 31.963Z" fill="#AAB9E5"/>
|
||||
<path d="M253.846 31.2669C253.269 31.2669 252.802 30.7992 252.802 30.2224V26.0445C252.802 25.4676 253.269 25 253.846 25C254.423 25 254.891 25.4676 254.891 26.0445V30.2224C254.891 30.7992 254.423 31.2669 253.846 31.2669Z" fill="#D3DCFB"/>
|
||||
<path d="M243.75 31.963C244.519 31.963 245.143 31.3395 245.143 30.5704C245.143 29.8012 244.519 29.1777 243.75 29.1777C242.981 29.1777 242.357 29.8012 242.357 30.5704C242.357 31.3395 242.981 31.963 243.75 31.963Z" fill="#AAB9E5"/>
|
||||
<path d="M243.75 31.2669C243.173 31.2669 242.705 30.7992 242.705 30.2224V26.0445C242.705 25.4676 243.173 25 243.75 25C244.326 25 244.794 25.4676 244.794 26.0445V30.2224C244.794 30.7992 244.326 31.2669 243.75 31.2669Z" fill="#D3DCFB"/>
|
||||
<path d="M246.535 43.1039C248.071 43.1039 249.321 41.8544 249.321 40.3186V36.837C249.321 35.3012 248.071 34.0518 246.535 34.0518C244.999 34.0518 243.75 35.3012 243.75 36.837V40.3186C243.75 41.8544 244.999 43.1039 246.535 43.1039ZM245.143 36.837C245.143 36.0691 245.767 35.4444 246.535 35.4444C247.303 35.4444 247.928 36.0691 247.928 36.837V40.3186C247.928 41.0865 247.303 41.7113 246.535 41.7113C245.767 41.7113 245.143 41.0865 245.143 40.3186V36.837Z" fill="#252A3F"/>
|
||||
<path d="M239.294 37.394L240.965 36.1406V42.4075C240.965 42.792 241.277 43.1038 241.661 43.1038C242.046 43.1038 242.358 42.792 242.358 42.4075V34.748C242.358 34.1755 241.702 33.847 241.243 34.1909L238.458 36.2799C238.151 36.5106 238.088 36.9471 238.319 37.2547C238.55 37.5623 238.986 37.6247 239.294 37.394Z" fill="#252A3F"/>
|
||||
<path d="M251.036 48.2971C251.04 48.3203 251.04 48.3435 251.036 48.3667C251.036 48.39 251.029 48.4155 251.015 48.4433C250.996 48.5083 250.975 48.5664 250.952 48.6174C250.924 48.6824 250.89 48.7381 250.848 48.7845C250.829 48.8124 250.811 48.8402 250.792 48.8681C250.778 48.8913 250.764 48.9145 250.75 48.9377L250.66 49.0561L249.769 50.3443L249.608 50.5462V52.3984C249.599 52.4216 249.594 52.4448 249.594 52.4681C249.594 52.4913 249.592 52.5168 249.587 52.5446C249.578 52.5679 249.571 52.5911 249.567 52.6143C249.562 52.6328 249.555 52.6537 249.546 52.6769C249.536 52.6955 249.532 52.7094 249.532 52.7187C249.527 52.728 249.522 52.735 249.518 52.7396C249.518 52.7443 249.516 52.7512 249.511 52.7605C249.483 52.8069 249.444 52.8487 249.393 52.8858C249.29 52.9369 249.174 52.9485 249.044 52.9207C248.97 52.9114 248.914 52.8882 248.877 52.851C248.854 52.8371 248.835 52.8209 248.822 52.8023C248.808 52.7837 248.794 52.7628 248.78 52.7396C248.77 52.7118 248.761 52.6862 248.752 52.663C248.743 52.6398 248.736 52.6166 248.731 52.5934C248.722 52.5702 248.717 52.5493 248.717 52.5307C248.717 52.5075 248.717 52.4866 248.717 52.4681V50.5671L248.564 50.3304L247.659 49.0491L247.582 48.9238C247.554 48.882 247.519 48.8333 247.478 48.7776C247.44 48.7265 247.408 48.6708 247.38 48.6105C247.362 48.5826 247.345 48.5547 247.331 48.5269C247.322 48.4944 247.313 48.4619 247.304 48.4294C247.29 48.383 247.287 48.3366 247.297 48.2901C247.311 48.2298 247.338 48.1787 247.38 48.137C247.427 48.0952 247.475 48.0627 247.526 48.0395C247.591 47.9931 247.666 47.9745 247.749 47.9838C247.8 47.9838 247.844 47.9931 247.881 48.0116C247.919 48.0302 247.956 48.0511 247.993 48.0743C248.035 48.1068 248.074 48.1416 248.111 48.1787C248.153 48.2159 248.19 48.2553 248.223 48.2971C248.26 48.3435 248.295 48.3876 248.327 48.4294C248.36 48.4665 248.392 48.5106 248.425 48.5617L248.446 48.5896C248.557 48.7381 248.661 48.882 248.759 49.0213C248.856 49.1559 248.958 49.3021 249.065 49.46C249.075 49.4692 249.088 49.4878 249.107 49.5157C249.126 49.5435 249.146 49.576 249.17 49.6132C249.188 49.5807 249.204 49.5528 249.218 49.5296C249.237 49.5017 249.251 49.4832 249.26 49.4739C249.367 49.3161 249.469 49.1675 249.567 49.0282C249.664 48.889 249.769 48.7451 249.88 48.5965L249.894 48.5687C249.931 48.5269 249.963 48.4851 249.991 48.4433C250.024 48.3969 250.059 48.3505 250.096 48.3041C250.156 48.2205 250.237 48.1486 250.339 48.0882C250.414 48.0372 250.49 48.0047 250.569 47.9907C250.657 47.9814 250.734 48 250.799 48.0464C250.827 48.065 250.852 48.0813 250.876 48.0952C250.904 48.1091 250.927 48.1254 250.945 48.1439C250.982 48.1857 251.013 48.2368 251.036 48.2971Z" fill="white"/>
|
||||
<path d="M246.784 52.4555C246.788 52.4833 246.791 52.5112 246.791 52.539C246.795 52.5622 246.798 52.5901 246.798 52.6226C246.798 52.6783 246.781 52.7293 246.749 52.7758C246.735 52.799 246.716 52.8222 246.693 52.8454C246.67 52.864 246.642 52.8802 246.61 52.8941C246.493 52.9591 246.37 52.9823 246.24 52.9638C246.175 52.9452 246.117 52.915 246.066 52.8732C246.057 52.864 246.05 52.8593 246.045 52.8593C246.041 52.8547 246.036 52.8477 246.032 52.8384C246.027 52.8338 246.022 52.8291 246.018 52.8245C246.013 52.8152 246.006 52.8083 245.997 52.8036C245.974 52.7804 245.955 52.7595 245.941 52.7409C245.927 52.7177 245.913 52.6945 245.899 52.6713C245.89 52.6481 245.878 52.6272 245.864 52.6086C245.855 52.5854 245.844 52.5622 245.83 52.539C245.82 52.5204 245.811 52.5042 245.802 52.4903C245.792 52.4717 245.786 52.4531 245.781 52.4346C245.762 52.3928 245.751 52.3557 245.746 52.3232L245.6 51.982C245.28 51.982 244.959 51.9843 244.639 51.9889C244.323 51.9889 244.005 51.9866 243.685 51.982L243.539 52.3232C243.529 52.3417 243.522 52.3603 243.518 52.3789C243.518 52.3974 243.513 52.416 243.504 52.4346C243.495 52.4531 243.485 52.4717 243.476 52.4903C243.471 52.5042 243.464 52.5204 243.455 52.539C243.441 52.5622 243.427 52.5854 243.413 52.6086C243.404 52.6272 243.393 52.6481 243.379 52.6713C243.369 52.6945 243.358 52.7177 243.344 52.7409C243.33 52.7595 243.311 52.7804 243.288 52.8036C243.279 52.8083 243.272 52.8152 243.267 52.8245C243.263 52.8291 243.258 52.8338 243.253 52.8384C243.249 52.8477 243.244 52.8547 243.239 52.8593C243.235 52.8593 243.228 52.864 243.218 52.8732C243.167 52.915 243.109 52.9452 243.044 52.9638C242.914 52.9823 242.791 52.9591 242.675 52.8941C242.643 52.8802 242.615 52.864 242.592 52.8454C242.569 52.8222 242.55 52.799 242.536 52.7758C242.504 52.7293 242.487 52.6783 242.487 52.6226C242.487 52.5901 242.487 52.5622 242.487 52.539C242.492 52.5112 242.497 52.4833 242.501 52.4555C242.511 52.4137 242.522 52.3719 242.536 52.3301C242.55 52.2883 242.557 52.2675 242.557 52.2675L244.005 48.7023L244.047 48.5909C244.056 48.563 244.068 48.5375 244.082 48.5143C244.096 48.4911 244.107 48.4632 244.117 48.4307C244.14 48.3704 244.165 48.317 244.193 48.2706C244.207 48.2427 244.223 48.2172 244.242 48.194C244.261 48.1708 244.279 48.1476 244.298 48.1244C244.326 48.0872 244.365 48.057 244.416 48.0338C244.481 48.0106 244.555 47.999 244.639 47.999C244.727 47.999 244.804 48.0106 244.869 48.0338C244.92 48.057 244.959 48.0872 244.987 48.1244C245.02 48.1661 245.054 48.2149 245.092 48.2706C245.119 48.317 245.145 48.3704 245.168 48.4307C245.177 48.4632 245.189 48.4911 245.203 48.5143C245.217 48.5375 245.228 48.563 245.238 48.5909L245.28 48.7023L246.728 52.2675C246.728 52.2675 246.735 52.2883 246.749 52.3301C246.763 52.3719 246.774 52.4137 246.784 52.4555ZM245.133 50.7495C245.073 50.6149 245.01 50.4756 244.945 50.3317C244.885 50.1878 244.82 50.0416 244.75 49.893C244.732 49.8512 244.713 49.8094 244.695 49.7677C244.676 49.7212 244.657 49.6771 244.639 49.6354C244.625 49.6771 244.609 49.7212 244.59 49.7677C244.572 49.8094 244.553 49.8512 244.534 49.893C244.465 50.0416 244.398 50.1878 244.333 50.3317C244.272 50.4756 244.212 50.6149 244.152 50.7495L244.026 51.0559H245.259L245.133 50.7495Z" fill="white"/>
|
||||
<path d="M241.294 52.4273C241.29 52.483 241.283 52.541 241.273 52.6013C241.264 52.6617 241.248 52.7174 241.225 52.7685C241.201 52.8242 241.171 52.8659 241.134 52.8938C241.083 52.9402 241.023 52.9658 240.953 52.9704C240.888 52.9936 240.825 53.0006 240.765 52.9913C240.705 52.982 240.649 52.9658 240.598 52.9425C240.533 52.9008 240.484 52.852 240.452 52.7963C240.424 52.736 240.403 52.6733 240.389 52.6083C240.375 52.5433 240.368 52.476 240.368 52.4064C240.368 52.3367 240.368 52.2718 240.368 52.2114V51.6683L240.361 50.6029C240.361 50.5286 240.361 50.4706 240.361 50.4288C240.361 50.3871 240.361 50.3499 240.361 50.3174C240.361 50.2803 240.359 50.2408 240.354 50.199C240.354 50.1526 240.354 50.0876 240.354 50.0041C240.354 49.9902 240.354 49.9669 240.354 49.9344C240.359 49.8973 240.357 49.8021 240.347 49.649C240.166 49.9507 240.015 50.1944 239.895 50.3801C239.779 50.5611 239.679 50.7027 239.595 50.8048C239.516 50.9023 239.447 50.9696 239.386 51.0068C239.326 51.0393 239.263 51.0578 239.198 51.0625C239.161 51.0671 239.124 51.0602 239.087 51.0416C239.05 51.023 239.013 50.9998 238.976 50.972C238.943 50.9441 238.911 50.9163 238.878 50.8884C238.85 50.8559 238.827 50.8257 238.808 50.7979C238.697 50.6586 238.572 50.4915 238.432 50.2965C238.293 50.1016 238.149 49.8648 238.001 49.5863C238.001 49.5909 237.998 49.6675 237.994 49.8161C237.994 49.9646 237.994 50.1503 237.994 50.3731C237.994 50.5913 237.991 50.8281 237.987 51.0834C237.987 51.334 237.984 51.5685 237.98 51.7867C237.98 52.0048 237.977 52.1882 237.973 52.3367C237.968 52.4806 237.964 52.5526 237.959 52.5526C237.959 52.6315 237.94 52.7058 237.903 52.7754C237.866 52.8404 237.815 52.8938 237.75 52.9356C237.69 52.9774 237.618 53.0006 237.534 53.0052C237.451 53.0099 237.36 52.9866 237.263 52.9356C237.202 52.8984 237.156 52.8451 237.123 52.7754C237.095 52.7058 237.077 52.6408 237.068 52.5805C237.063 52.5155 237.058 52.4528 237.054 52.3924C237.054 52.3321 237.054 52.2694 237.054 52.2044L237.061 51.6613L237.068 50.589V49.6559C237.068 49.2521 237.082 48.8552 237.109 48.4652C237.109 48.4142 237.114 48.3677 237.123 48.326C237.137 48.2795 237.154 48.2354 237.172 48.1937C237.209 48.1194 237.258 48.0637 237.318 48.0265C237.388 47.9848 237.462 47.9639 237.541 47.9639C237.574 47.9639 237.604 47.9662 237.632 47.9708C237.664 47.9708 237.694 47.9732 237.722 47.9778C237.815 47.9964 237.894 48.0521 237.959 48.1449C238.029 48.2331 238.094 48.3097 238.154 48.3747C238.191 48.4165 238.23 48.4675 238.272 48.5279C238.314 48.5882 238.356 48.6509 238.398 48.7159C238.439 48.7809 238.479 48.8435 238.516 48.9039C238.553 48.9642 238.586 49.0176 238.613 49.064C238.734 49.259 238.841 49.4377 238.934 49.6002C239.031 49.7627 239.122 49.902 239.205 50.018C239.219 50.0041 239.236 49.9855 239.254 49.9623C239.273 49.9344 239.291 49.9066 239.31 49.8787C239.333 49.8462 239.352 49.8161 239.365 49.7882C239.384 49.7604 239.398 49.7372 239.407 49.7186C239.454 49.6443 239.5 49.5724 239.547 49.5027C239.593 49.4285 239.642 49.3519 239.693 49.2729C239.748 49.1894 239.804 49.0989 239.86 49.0014C239.92 48.9039 239.99 48.7925 240.069 48.6671C240.101 48.6114 240.143 48.5441 240.194 48.4652C240.245 48.3863 240.303 48.3097 240.368 48.2354C240.433 48.1612 240.5 48.0985 240.57 48.0474C240.644 47.9917 240.719 47.9639 240.793 47.9639C240.83 47.9639 240.863 47.9662 240.89 47.9708C240.918 47.9708 240.946 47.9732 240.974 47.9778C241.03 47.9824 241.083 48.008 241.134 48.0544C241.171 48.0915 241.199 48.131 241.218 48.1728C241.236 48.2331 241.248 48.2842 241.253 48.326C241.257 48.3584 241.259 48.3886 241.259 48.4165C241.264 48.4443 241.266 48.4722 241.266 48.5C241.266 48.76 241.269 49.0176 241.273 49.2729C241.278 49.5283 241.28 49.7859 241.28 50.0459C241.28 50.3615 241.28 50.6865 241.28 51.0207C241.285 51.3549 241.287 51.6799 241.287 51.9955C241.287 52.0605 241.29 52.1302 241.294 52.2044C241.299 52.2787 241.299 52.353 241.294 52.4273Z" fill="white"/>
|
||||
<line x1="31" y1="74.5" x2="153" y2="74.5" stroke="url(#paint0_linear_1671_7531)"/>
|
||||
<line x1="149" y1="74.5" x2="260" y2="74.5" stroke="url(#paint1_linear_1671_7531)" stroke-dasharray="2 2"/>
|
||||
<circle cx="33" cy="74" r="3" fill="#6ED904"/>
|
||||
<ellipse cx="259.5" cy="74" rx="2.5" ry="3" fill="#FC2CDB"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_1671_7531" x1="31" y1="75" x2="298.897" y2="75" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#31FF2D"/>
|
||||
<stop offset="1" stop-color="#E11690"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1671_7531" x1="38.5187" y1="75.0001" x2="260" y2="74.9999" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#31FF2D"/>
|
||||
<stop offset="1" stop-color="#E11690"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 62 KiB |
143
newIDE/app/public/res/questionnaire/delay-6-months-plus.svg
Normal file
@@ -0,0 +1,143 @@
|
||||
<svg width="292" height="103" viewBox="0 0 292 103" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1671_7742)">
|
||||
<rect width="292" height="102.768" fill="#1D1D26"/>
|
||||
<path d="M44.1577 57.3025H21.7501C19.8462 57.3025 18.3027 55.7591 18.3027 53.8552V50.9824H47.6051V53.8552C47.6051 55.7591 46.0616 57.3025 44.1577 57.3025Z" fill="#D3DCFB"/>
|
||||
<path d="M21.7504 56.1534C20.4831 56.1534 19.4521 55.1224 19.4521 53.8552V50.9824H46.4563V53.8552C46.4563 55.1224 45.4253 56.1534 44.158 56.1534H21.7504Z" fill="#6A0DB4"/>
|
||||
<path d="M44.1577 30.2988H21.7501C19.8492 30.2988 18.3027 31.8453 18.3027 33.7462V51.5574C18.3027 53.4582 19.8492 55.0047 21.7501 55.0047H44.1577C46.0586 55.0047 47.6051 53.4582 47.6051 51.5574C47.6051 51.1568 47.6051 34.2625 47.6051 33.7462C47.6051 31.8453 46.0586 30.2988 44.1577 30.2988Z" fill="#EBF5FC"/>
|
||||
<path d="M21.7504 53.8547C20.4811 53.8547 19.4521 52.8257 19.4521 51.5564V46.3854C19.4521 45.7508 19.9666 45.2363 20.6013 45.2363H45.3071C45.9418 45.2363 46.4563 45.7508 46.4563 46.3854V51.5564C46.4563 52.8257 45.4273 53.8547 44.158 53.8547H21.7504Z" fill="#A12BFF"/>
|
||||
<path d="M24.6227 33.7455C25.2574 33.7455 25.7719 33.231 25.7719 32.5964C25.7719 31.9617 25.2574 31.4473 24.6227 31.4473C23.9881 31.4473 23.4736 31.9617 23.4736 32.5964C23.4736 33.231 23.9881 33.7455 24.6227 33.7455Z" fill="#AAB9E5"/>
|
||||
<path d="M24.6236 33.171C24.1476 33.171 23.7617 32.7851 23.7617 32.3092V28.8618C23.7617 28.3859 24.1476 28 24.6236 28C25.0995 28 25.4854 28.3859 25.4854 28.8618V32.3092C25.4854 32.7851 25.0995 33.171 24.6236 33.171Z" fill="#D3DCFB"/>
|
||||
<path d="M41.2849 33.7455C41.9195 33.7455 42.434 33.231 42.434 32.5964C42.434 31.9617 41.9195 31.4473 41.2849 31.4473C40.6502 31.4473 40.1357 31.9617 40.1357 32.5964C40.1357 33.231 40.6502 33.7455 41.2849 33.7455Z" fill="#AAB9E5"/>
|
||||
<path d="M41.2847 33.171C40.8087 33.171 40.4229 32.7851 40.4229 32.3092V28.8618C40.4229 28.3859 40.8087 28 41.2847 28C41.7606 28 42.1465 28.3859 42.1465 28.8618V32.3092C42.1465 32.7851 41.7606 33.171 41.2847 33.171Z" fill="#D3DCFB"/>
|
||||
<path d="M32.9538 33.7455C33.5884 33.7455 34.1029 33.231 34.1029 32.5964C34.1029 31.9617 33.5884 31.4473 32.9538 31.4473C32.3192 31.4473 31.8047 31.9617 31.8047 32.5964C31.8047 33.231 32.3192 33.7455 32.9538 33.7455Z" fill="#AAB9E5"/>
|
||||
<path d="M32.9536 33.171C32.4777 33.171 32.0918 32.7851 32.0918 32.3092V28.8618C32.0918 28.3859 32.4777 28 32.9536 28C33.4296 28 33.8155 28.3859 33.8155 28.8618V32.3092C33.8155 32.7851 33.4296 33.171 32.9536 33.171Z" fill="#D3DCFB"/>
|
||||
<path d="M35.2523 42.9389C36.5196 42.9389 37.5505 41.908 37.5505 40.6407V37.7679C37.5505 36.5007 36.5196 35.4697 35.2523 35.4697C33.9851 35.4697 32.9541 36.5007 32.9541 37.7679V40.6407C32.9541 41.908 33.9851 42.9389 35.2523 42.9389ZM34.1032 37.7679C34.1032 37.1343 34.6187 36.6188 35.2523 36.6188C35.8859 36.6188 36.4014 37.1343 36.4014 37.7679V40.6407C36.4014 41.2743 35.8859 41.7898 35.2523 41.7898C34.6187 41.7898 34.1032 41.2743 34.1032 40.6407V37.7679Z" fill="#252A3F"/>
|
||||
<path d="M29.2767 38.2273L30.6557 37.1931V42.3641C30.6557 42.6814 30.9129 42.9387 31.2302 42.9387C31.5475 42.9387 31.8048 42.6814 31.8048 42.3641V36.044C31.8048 35.5717 31.264 35.3006 30.8855 35.5844L28.5873 37.308C28.3334 37.4984 28.282 37.8586 28.4723 38.1124C28.6628 38.3662 29.0228 38.4177 29.2767 38.2273Z" fill="#252A3F"/>
|
||||
<path d="M38.7914 50.6075C38.7876 50.6727 38.778 50.7416 38.7627 50.8144C38.7512 50.8872 38.7148 50.9465 38.6535 50.9925C38.6076 51.0308 38.5559 51.0538 38.4984 51.0614C38.4409 51.0691 38.3835 51.0653 38.326 51.0499C38.2724 51.0385 38.2207 51.0193 38.1709 50.9925C38.1211 50.9618 38.0809 50.9255 38.0502 50.8833C37.92 50.7224 37.7994 50.5577 37.6883 50.3892C37.581 50.2168 37.4719 50.0445 37.3608 49.8721L36.8782 49.1424C36.813 49.039 36.7441 48.9241 36.6713 48.7977C36.5985 48.6675 36.5238 48.5468 36.4472 48.4357L36.43 50.6305V50.6822C36.43 50.7435 36.4185 50.8048 36.3955 50.8661C36.3764 50.9235 36.3419 50.9733 36.2921 51.0155C36.2538 51.0461 36.204 51.0672 36.1427 51.0787C36.047 51.0978 35.9665 51.0921 35.9014 51.0614C35.8401 51.0308 35.7903 50.9887 35.752 50.935C35.7176 50.8814 35.6927 50.8201 35.6773 50.7512C35.6658 50.6784 35.6639 50.6075 35.6716 50.5386V50.4409L35.6831 49.9928L35.6888 49.1597C35.6927 49.0371 35.6946 48.9126 35.6946 48.7862C35.6946 48.656 35.6946 48.5238 35.6946 48.3898C35.6907 48.225 35.6907 48.0508 35.6946 47.8669C35.7022 47.683 35.7099 47.5107 35.7176 47.3498C35.7252 47.2617 35.7463 47.187 35.7808 47.1257C35.7961 47.0721 35.8363 47.0261 35.9014 46.9878C35.9435 46.961 35.9972 46.9438 36.0623 46.9361C36.1312 46.9285 36.1906 46.9304 36.2404 46.9419C36.2596 46.9495 36.2787 46.9591 36.2979 46.9706C36.317 46.9783 36.3362 46.9878 36.3553 46.9993C36.3745 47.0146 36.3917 47.03 36.407 47.0453C36.4262 47.0606 36.4434 47.0778 36.4587 47.097C36.4779 47.1162 36.4951 47.1372 36.5104 47.1602C36.5258 47.1794 36.5411 47.1985 36.5564 47.2177C36.5679 47.2406 36.5794 47.2617 36.5909 47.2809C36.6024 47.3 36.6158 47.3192 36.6311 47.3383L36.6943 47.4302L38.0215 49.5216V49.1424C38.0215 49.0198 38.0196 48.8954 38.0158 48.769C38.0158 48.6387 38.0139 48.5047 38.01 48.3668C38.01 48.2059 38.01 48.0335 38.01 47.8497C38.0139 47.6658 38.0196 47.4934 38.0273 47.3326C38.0273 47.2675 38.0464 47.1928 38.0847 47.1085C38.1039 47.0587 38.1364 47.0185 38.1824 46.9878C38.2284 46.9572 38.2801 46.9361 38.3375 46.9246C38.395 46.9131 38.4524 46.9131 38.5099 46.9246C38.5673 46.9361 38.6171 46.9591 38.6593 46.9936C38.6708 47.0051 38.6823 47.0185 38.6938 47.0338C38.7052 47.0491 38.7148 47.0664 38.7225 47.0855C38.7416 47.1353 38.7531 47.1794 38.757 47.2177C38.7684 47.2713 38.7742 47.3192 38.7742 47.3613C38.7742 47.8401 38.7742 48.3285 38.7742 48.8264C38.778 49.3244 38.7818 49.8127 38.7857 50.2915C38.7857 50.3452 38.7876 50.3988 38.7914 50.4524C38.7953 50.5022 38.7953 50.5539 38.7914 50.6075Z" fill="white"/>
|
||||
<path d="M34.6768 50.6537C34.6807 50.6767 34.6826 50.6997 34.6826 50.7227C34.6864 50.7418 34.6883 50.7648 34.6883 50.7916C34.6883 50.8376 34.6749 50.8797 34.6481 50.918C34.6366 50.9372 34.6213 50.9563 34.6022 50.9755C34.583 50.9908 34.56 51.0042 34.5332 51.0157C34.4374 51.0693 34.3359 51.0885 34.2287 51.0731C34.1751 51.0578 34.1272 51.0329 34.0851 50.9985C34.0774 50.9908 34.0716 50.987 34.0678 50.987C34.064 50.9831 34.0602 50.9774 34.0563 50.9697C34.0525 50.9659 34.0487 50.9621 34.0448 50.9582C34.041 50.9506 34.0353 50.9448 34.0276 50.941C34.0084 50.9218 33.9931 50.9046 33.9816 50.8893C33.9701 50.8701 33.9586 50.851 33.9472 50.8318C33.9395 50.8127 33.9299 50.7954 33.9184 50.7801C33.9108 50.761 33.9012 50.7418 33.8897 50.7227C33.882 50.7073 33.8744 50.6939 33.8667 50.6824C33.8591 50.6671 33.8533 50.6518 33.8495 50.6365C33.8342 50.602 33.8246 50.5714 33.8208 50.5446L33.7001 50.263C33.4358 50.263 33.1715 50.2649 32.9072 50.2688C32.6467 50.2688 32.3844 50.2668 32.1201 50.263L31.9994 50.5446C31.9918 50.5599 31.986 50.5752 31.9822 50.5905C31.9822 50.6058 31.9783 50.6212 31.9707 50.6365C31.963 50.6518 31.9554 50.6671 31.9477 50.6824C31.9439 50.6939 31.9381 50.7073 31.9305 50.7227C31.919 50.7418 31.9075 50.761 31.896 50.7801C31.8883 50.7954 31.8788 50.8127 31.8673 50.8318C31.8596 50.851 31.85 50.8701 31.8385 50.8893C31.827 50.9046 31.8117 50.9218 31.7926 50.941C31.7849 50.9448 31.7792 50.9506 31.7753 50.9582C31.7715 50.9621 31.7677 50.9659 31.7638 50.9697C31.76 50.9774 31.7562 50.9831 31.7524 50.987C31.7485 50.987 31.7428 50.9908 31.7351 50.9985C31.693 51.0329 31.6451 51.0578 31.5915 51.0731C31.4842 51.0885 31.3827 51.0693 31.287 51.0157C31.2602 51.0042 31.2372 50.9908 31.218 50.9755C31.1989 50.9563 31.1835 50.9372 31.1721 50.918C31.1452 50.8797 31.1318 50.8376 31.1318 50.7916C31.1318 50.7648 31.1318 50.7418 31.1318 50.7227C31.1357 50.6997 31.1395 50.6767 31.1433 50.6537C31.151 50.6192 31.1606 50.5848 31.1721 50.5503C31.1835 50.5158 31.1893 50.4986 31.1893 50.4986L32.3844 47.5569L32.4188 47.4649C32.4265 47.442 32.4361 47.4209 32.4476 47.4017C32.4591 47.3826 32.4686 47.3596 32.4763 47.3328C32.4954 47.283 32.5165 47.2389 32.5395 47.2006C32.551 47.1777 32.5644 47.1566 32.5797 47.1374C32.595 47.1183 32.6104 47.0991 32.6257 47.08C32.6487 47.0493 32.6812 47.0244 32.7234 47.0053C32.777 46.9861 32.8383 46.9766 32.9072 46.9766C32.98 46.9766 33.0432 46.9861 33.0968 47.0053C33.1389 47.0244 33.1715 47.0493 33.1945 47.08C33.2213 47.1145 33.25 47.1547 33.2807 47.2006C33.3037 47.2389 33.3247 47.283 33.3439 47.3328C33.3515 47.3596 33.3611 47.3826 33.3726 47.4017C33.3841 47.4209 33.3937 47.442 33.4013 47.4649L33.4358 47.5569L34.6309 50.4986C34.6309 50.4986 34.6366 50.5158 34.6481 50.5503C34.6596 50.5848 34.6692 50.6192 34.6768 50.6537ZM33.3151 49.2461C33.2654 49.135 33.2136 49.0201 33.16 48.9013C33.1102 48.7826 33.0566 48.6619 32.9991 48.5394C32.9838 48.5049 32.9685 48.4704 32.9532 48.4359C32.9379 48.3976 32.9225 48.3612 32.9072 48.3268C32.8957 48.3612 32.8823 48.3976 32.867 48.4359C32.8517 48.4704 32.8364 48.5049 32.821 48.5394C32.7636 48.6619 32.708 48.7826 32.6544 48.9013C32.6046 49.0201 32.5548 49.135 32.505 49.2461L32.4016 49.4989H33.4186L33.3151 49.2461Z" fill="white"/>
|
||||
<path d="M30.6987 47.1199C30.737 47.1697 30.7561 47.2194 30.7561 47.2692C30.76 47.2922 30.76 47.321 30.7561 47.3554C30.7561 47.3899 30.7542 47.4167 30.7504 47.4359C30.7389 47.4742 30.7121 47.5125 30.6699 47.5508C30.6585 47.5623 30.6451 47.5738 30.6297 47.5852C30.6144 47.5929 30.5953 47.6006 30.5723 47.6082C30.5493 47.6159 30.5263 47.6216 30.5033 47.6255C30.4803 47.6255 30.4554 47.6274 30.4286 47.6312C30.4018 47.635 30.3769 47.6389 30.3539 47.6427C30.331 47.6427 30.3061 47.6427 30.2793 47.6427H29.9518V47.7404C29.9479 48.0851 29.9537 48.4298 29.969 48.7746C29.9881 49.1193 29.9862 49.464 29.9632 49.8088C29.9518 49.9237 29.9345 50.0424 29.9115 50.165C29.8886 50.2837 29.8502 50.3967 29.7966 50.504C29.7468 50.6074 29.6798 50.7032 29.5955 50.7913C29.5113 50.8794 29.404 50.9483 29.2738 50.9981C29.1512 51.0441 29.0171 51.0766 28.8716 51.0958C28.726 51.1149 28.5786 51.1169 28.4292 51.1015C28.2836 51.0862 28.1438 51.0536 28.0098 51.0039C27.8757 50.9541 27.7627 50.8851 27.6708 50.797C27.621 50.7511 27.575 50.6955 27.5329 50.6304C27.4907 50.5614 27.462 50.4906 27.4467 50.4178C27.4314 50.3412 27.4352 50.2684 27.4582 50.1995C27.4812 50.1267 27.5348 50.0673 27.6191 50.0214C27.6918 49.9792 27.757 49.9697 27.8144 49.9926C27.8757 50.0156 27.9331 50.052 27.9868 50.1018C28.0442 50.1516 28.1017 50.2033 28.1591 50.2569C28.2204 50.3106 28.2875 50.345 28.3602 50.3604C28.5173 50.3987 28.6456 50.4006 28.7452 50.3661C28.8448 50.3278 28.9233 50.2684 28.9808 50.188C29.0382 50.1075 29.0784 50.0099 29.1014 49.895C29.1282 49.7801 29.1435 49.6632 29.1474 49.5445C29.155 49.4257 29.157 49.3108 29.1531 49.1998C29.1493 49.0887 29.1493 48.9948 29.1531 48.9182C29.157 48.7152 29.157 48.516 29.1531 48.3207C29.1493 48.1253 29.1474 47.9262 29.1474 47.7231V47.7002C29.1512 47.6925 29.1531 47.681 29.1531 47.6657H29.1359C29.1129 47.6619 29.065 47.6599 28.9922 47.6599C28.9195 47.6561 28.8409 47.6542 28.7567 47.6542C28.6724 47.6542 28.592 47.6542 28.5154 47.6542C28.4426 47.6504 28.3947 47.6485 28.3717 47.6485H28.2913V47.6427C28.2606 47.6389 28.23 47.6331 28.1994 47.6255C28.1687 47.6178 28.1381 47.6101 28.1074 47.6025C28.0347 47.5795 27.9791 47.5431 27.9408 47.4933C27.9217 47.4742 27.9063 47.4435 27.8948 47.4014C27.8872 47.3593 27.8834 47.3229 27.8834 47.2922C27.8834 47.2731 27.8834 47.252 27.8834 47.229C27.8834 47.206 27.8872 47.185 27.8948 47.1658C27.9025 47.1237 27.9293 47.0854 27.9753 47.0509C28.0059 47.0279 28.0423 47.0107 28.0844 46.9992C28.1113 46.9915 28.1381 46.9858 28.1649 46.982C28.1917 46.9781 28.2204 46.9743 28.2511 46.9705C28.2779 46.9666 28.3047 46.9647 28.3315 46.9647C28.3583 46.9647 28.387 46.9647 28.4177 46.9647H28.9693C28.9922 46.9647 29.0191 46.9647 29.0497 46.9647C29.0803 46.9647 29.1148 46.9628 29.1531 46.959C29.3025 46.959 29.45 46.959 29.5955 46.959C29.7411 46.959 29.8828 46.9609 30.0207 46.9647H30.0552C30.0973 46.9647 30.1375 46.9666 30.1758 46.9705C30.218 46.9705 30.2601 46.9705 30.3022 46.9705C30.3903 46.9743 30.4727 46.9915 30.5493 47.0222C30.6106 47.0375 30.6604 47.0701 30.6987 47.1199Z" fill="white"/>
|
||||
<g opacity="0.45">
|
||||
<path d="M263.925 57.3025H241.518C239.614 57.3025 238.07 55.7591 238.07 53.8552V50.9824H267.373V53.8552C267.373 55.7591 265.829 57.3025 263.925 57.3025Z" fill="#D3DCFB"/>
|
||||
<path d="M241.518 56.1534C240.251 56.1534 239.22 55.1224 239.22 53.8552V50.9824H266.224V53.8552C266.224 55.1224 265.193 56.1534 263.926 56.1534H241.518Z" fill="#6A0DB4"/>
|
||||
<path d="M263.925 30.2988H241.518C239.617 30.2988 238.07 31.8453 238.07 33.7462V51.5574C238.07 53.4582 239.617 55.0047 241.518 55.0047H263.925C265.826 55.0047 267.373 53.4582 267.373 51.5574C267.373 51.1568 267.373 34.2625 267.373 33.7462C267.373 31.8453 265.826 30.2988 263.925 30.2988Z" fill="#EBF5FC"/>
|
||||
<path d="M241.518 53.8547C240.249 53.8547 239.22 52.8257 239.22 51.5564V46.3854C239.22 45.7508 239.734 45.2363 240.369 45.2363H265.075C265.709 45.2363 266.224 45.7508 266.224 46.3854V51.5564C266.224 52.8257 265.195 53.8547 263.926 53.8547H241.518Z" fill="#A12BFF"/>
|
||||
<path d="M244.39 33.7455C245.025 33.7455 245.539 33.231 245.539 32.5964C245.539 31.9617 245.025 31.4473 244.39 31.4473C243.756 31.4473 243.241 31.9617 243.241 32.5964C243.241 33.231 243.756 33.7455 244.39 33.7455Z" fill="#AAB9E5"/>
|
||||
<path d="M244.39 33.171C243.914 33.171 243.528 32.7851 243.528 32.3092V28.8618C243.528 28.3859 243.914 28 244.39 28C244.866 28 245.252 28.3859 245.252 28.8618V32.3092C245.252 32.7851 244.866 33.171 244.39 33.171Z" fill="#D3DCFB"/>
|
||||
<path d="M261.052 33.7455C261.687 33.7455 262.202 33.231 262.202 32.5964C262.202 31.9617 261.687 31.4473 261.052 31.4473C260.418 31.4473 259.903 31.9617 259.903 32.5964C259.903 33.231 260.418 33.7455 261.052 33.7455Z" fill="#AAB9E5"/>
|
||||
<path d="M261.052 33.171C260.576 33.171 260.19 32.7851 260.19 32.3092V28.8618C260.19 28.3859 260.576 28 261.052 28C261.528 28 261.914 28.3859 261.914 28.8618V32.3092C261.914 32.7851 261.528 33.171 261.052 33.171Z" fill="#D3DCFB"/>
|
||||
<path d="M252.721 33.7455C253.356 33.7455 253.87 33.231 253.87 32.5964C253.87 31.9617 253.356 31.4473 252.721 31.4473C252.087 31.4473 251.572 31.9617 251.572 32.5964C251.572 33.231 252.087 33.7455 252.721 33.7455Z" fill="#AAB9E5"/>
|
||||
<path d="M252.721 33.171C252.245 33.171 251.859 32.7851 251.859 32.3092V28.8618C251.859 28.3859 252.245 28 252.721 28C253.197 28 253.583 28.3859 253.583 28.8618V32.3092C253.583 32.7851 253.197 33.171 252.721 33.171Z" fill="#D3DCFB"/>
|
||||
<path d="M255.02 42.9389C256.287 42.9389 257.318 41.908 257.318 40.6407V37.7679C257.318 36.5007 256.287 35.4697 255.02 35.4697C253.753 35.4697 252.722 36.5007 252.722 37.7679V40.6407C252.722 41.908 253.753 42.9389 255.02 42.9389ZM253.871 37.7679C253.871 37.1343 254.386 36.6188 255.02 36.6188C255.654 36.6188 256.169 37.1343 256.169 37.7679V40.6407C256.169 41.2743 255.654 41.7898 255.02 41.7898C254.386 41.7898 253.871 41.2743 253.871 40.6407V37.7679Z" fill="#252A3F"/>
|
||||
<path d="M249.044 38.2273L250.423 37.1931V42.3641C250.423 42.6814 250.681 42.9387 250.998 42.9387C251.315 42.9387 251.572 42.6814 251.572 42.3641V36.044C251.572 35.5717 251.032 35.3006 250.653 35.5844L248.355 37.308C248.101 37.4984 248.05 37.8586 248.24 38.1124C248.43 38.3662 248.79 38.4177 249.044 38.2273Z" fill="#252A3F"/>
|
||||
<path d="M259 50.6061C259.008 50.6253 259.012 50.654 259.012 50.6923C259.012 50.7268 259.012 50.7555 259.012 50.7785C259.012 50.8092 259.006 50.8379 258.995 50.8647C258.983 50.8915 258.968 50.9164 258.949 50.9394C258.914 50.9853 258.864 51.0198 258.799 51.0428C258.707 51.0734 258.621 51.0888 258.541 51.0888C258.499 51.0926 258.454 51.0945 258.409 51.0945C258.363 51.0945 258.317 51.0983 258.271 51.106H258.248C257.953 51.1098 257.648 51.1098 257.334 51.106C257.258 51.1022 257.171 51.1022 257.076 51.106C256.98 51.1137 256.886 51.1117 256.794 51.1003C256.702 51.0926 256.618 51.0715 256.541 51.0371C256.468 50.9988 256.417 50.9394 256.386 50.8589C256.378 50.8398 256.373 50.8226 256.369 50.8072C256.365 50.7881 256.363 50.7689 256.363 50.7498C256.348 50.6195 256.342 50.4912 256.346 50.3648C256.35 50.2384 256.352 50.1139 256.352 49.9914L256.363 49.1583V48.3884C256.363 48.2505 256.363 48.1279 256.363 48.0206C256.367 47.9134 256.371 47.7946 256.375 47.6644V47.6357C256.378 47.5974 256.38 47.5591 256.38 47.5208C256.384 47.4825 256.386 47.4442 256.386 47.4059C256.394 47.3178 256.415 47.2431 256.449 47.1818C256.472 47.1243 256.512 47.0784 256.57 47.0439C256.62 47.0094 256.679 46.9922 256.748 46.9922C256.775 46.9922 256.8 46.9941 256.823 46.9979C256.85 46.9979 256.874 46.9998 256.897 47.0037C256.92 47.0075 256.941 47.0152 256.961 47.0267C256.984 47.0382 257.007 47.0535 257.03 47.0726C257.053 47.0994 257.074 47.132 257.093 47.1703C257.108 47.2124 257.118 47.2546 257.122 47.2967C257.125 47.3235 257.129 47.3484 257.133 47.3714C257.137 47.3944 257.139 47.4174 257.139 47.4403C257.131 47.4633 257.127 47.4863 257.127 47.5093C257.127 47.5323 257.127 47.5533 257.127 47.5725V47.6759L257.104 50.3821L258.242 50.3936H258.512C258.535 50.3936 258.56 50.3955 258.587 50.3993C258.613 50.3993 258.64 50.4012 258.667 50.405C258.698 50.4089 258.725 50.4127 258.748 50.4165C258.77 50.4204 258.793 50.4261 258.816 50.4338C258.859 50.4453 258.893 50.4644 258.92 50.4912C258.962 50.5295 258.989 50.5678 259 50.6061Z" fill="white"/>
|
||||
<path d="M255.211 47.2918C255.234 47.4756 255.248 47.6901 255.252 47.9353C255.255 48.1766 255.252 48.4217 255.24 48.6707C255.232 48.9158 255.215 49.1495 255.188 49.3717C255.161 49.59 255.129 49.7662 255.091 49.9003C255.064 49.9807 255.031 50.065 254.993 50.1531C254.958 50.2373 254.92 50.3139 254.878 50.3829C254.817 50.4863 254.742 50.5782 254.654 50.6587C254.566 50.7353 254.468 50.8023 254.361 50.8598C254.258 50.9134 254.146 50.9555 254.028 50.9862C253.913 51.0168 253.798 51.034 253.683 51.0379C253.48 51.0455 253.287 51.0168 253.103 50.9517C252.923 50.8827 252.756 50.7755 252.603 50.6299C252.488 50.5189 252.396 50.4001 252.327 50.2737C252.258 50.1473 252.204 50.0152 252.166 49.8773C252.128 49.7355 252.103 49.59 252.091 49.4406C252.084 49.2912 252.08 49.138 252.08 48.981C252.08 48.9082 252.078 48.8182 252.074 48.7109C252.074 48.5998 252.074 48.4868 252.074 48.3719C252.074 48.2532 252.074 48.1383 252.074 48.0272C252.074 47.9161 252.076 47.8223 252.08 47.7457C252.08 47.6959 252.08 47.6423 252.08 47.5848C252.08 47.5235 252.082 47.4641 252.086 47.4067C252.093 47.3454 252.105 47.2879 252.12 47.2343C252.136 47.1769 252.158 47.1252 252.189 47.0792C252.224 47.0294 252.271 46.993 252.333 46.97C252.394 46.947 252.457 46.9355 252.522 46.9355C252.591 46.9355 252.656 46.949 252.718 46.9758C252.779 47.0026 252.829 47.0409 252.867 47.0907C252.886 47.1213 252.9 47.152 252.907 47.1826C252.915 47.2132 252.921 47.2477 252.925 47.286C252.932 47.4124 252.936 47.5561 252.936 47.7169C252.94 47.8778 252.94 48.0349 252.936 48.1881C252.936 48.3375 252.934 48.4754 252.93 48.6018C252.926 48.7282 252.925 48.822 252.925 48.8833C252.925 49.1131 252.936 49.3219 252.959 49.5096C252.982 49.6934 253.036 49.8466 253.12 49.9692C253.197 50.0803 253.287 50.1511 253.39 50.1818C253.493 50.2124 253.597 50.222 253.7 50.2105C253.796 50.199 253.892 50.1645 253.987 50.1071C254.087 50.0458 254.166 49.9577 254.223 49.8428C254.246 49.8007 254.265 49.7528 254.281 49.6992C254.296 49.6455 254.307 49.5957 254.315 49.5498C254.33 49.4042 254.344 49.2357 254.355 49.0442C254.367 48.8488 254.376 48.6496 254.384 48.4466C254.392 48.2436 254.395 48.0444 254.395 47.8491C254.395 47.6537 254.394 47.4775 254.39 47.3205C254.397 47.2516 254.418 47.1884 254.453 47.1309C254.484 47.0811 254.528 47.0371 254.585 46.9987C254.642 46.9604 254.721 46.9413 254.821 46.9413C254.901 46.9451 254.966 46.9662 255.016 47.0045C255.066 47.039 255.106 47.0773 255.137 47.1194C255.171 47.1692 255.196 47.2267 255.211 47.2918Z" fill="white"/>
|
||||
<path d="M251.069 47.1189C251.107 47.1687 251.126 47.2185 251.126 47.2683C251.13 47.2912 251.13 47.32 251.126 47.3545C251.126 47.3889 251.124 47.4157 251.121 47.4349C251.109 47.4732 251.082 47.5115 251.04 47.5498C251.029 47.5613 251.015 47.5728 251 47.5843C250.985 47.5919 250.965 47.5996 250.942 47.6073C250.919 47.6149 250.896 47.6207 250.873 47.6245C250.85 47.6245 250.826 47.6264 250.799 47.6302C250.772 47.6341 250.747 47.6379 250.724 47.6417C250.701 47.6417 250.676 47.6417 250.649 47.6417H250.322V47.7394C250.318 48.0841 250.324 48.4289 250.339 48.7736C250.358 49.1183 250.356 49.4631 250.333 49.8078C250.322 49.9227 250.305 50.0415 250.282 50.164C250.259 50.2828 250.22 50.3958 250.167 50.503C250.117 50.6064 250.05 50.7022 249.966 50.7903C249.881 50.8784 249.774 50.9473 249.644 50.9971C249.521 51.0431 249.387 51.0757 249.242 51.0948C249.096 51.114 248.949 51.1159 248.799 51.1006C248.654 51.0852 248.514 51.0527 248.38 51.0029C248.246 50.9531 248.133 50.8841 248.041 50.796C247.991 50.7501 247.945 50.6945 247.903 50.6294C247.861 50.5605 247.832 50.4896 247.817 50.4168C247.801 50.3402 247.805 50.2674 247.828 50.1985C247.851 50.1257 247.905 50.0664 247.989 50.0204C248.062 49.9783 248.127 49.9687 248.185 49.9917C248.246 50.0146 248.303 50.051 248.357 50.1008C248.414 50.1506 248.472 50.2023 248.529 50.256C248.591 50.3096 248.658 50.3441 248.73 50.3594C248.887 50.3977 249.016 50.3996 249.115 50.3651C249.215 50.3268 249.293 50.2674 249.351 50.187C249.408 50.1066 249.449 50.0089 249.472 49.894C249.498 49.7791 249.514 49.6622 249.517 49.5435C249.525 49.4248 249.527 49.3099 249.523 49.1988C249.519 49.0877 249.519 48.9938 249.523 48.9172C249.527 48.7142 249.527 48.5151 249.523 48.3197C249.519 48.1244 249.517 47.9252 249.517 47.7222V47.6992C249.521 47.6915 249.523 47.68 249.523 47.6647H249.506C249.483 47.6609 249.435 47.659 249.362 47.659C249.29 47.6551 249.211 47.6532 249.127 47.6532C249.043 47.6532 248.962 47.6532 248.885 47.6532C248.813 47.6494 248.765 47.6475 248.742 47.6475H248.661V47.6417C248.631 47.6379 248.6 47.6322 248.569 47.6245C248.539 47.6168 248.508 47.6092 248.478 47.6015C248.405 47.5785 248.349 47.5421 248.311 47.4923C248.292 47.4732 248.276 47.4425 248.265 47.4004C248.257 47.3583 248.253 47.3219 248.253 47.2912C248.253 47.2721 248.253 47.251 248.253 47.228C248.253 47.2051 248.257 47.184 248.265 47.1648C248.273 47.1227 248.299 47.0844 248.345 47.0499C248.376 47.027 248.412 47.0097 248.455 46.9982C248.481 46.9906 248.508 46.9848 248.535 46.981C248.562 46.9772 248.591 46.9733 248.621 46.9695C248.648 46.9657 248.675 46.9638 248.702 46.9638C248.728 46.9638 248.757 46.9638 248.788 46.9638H249.339C249.362 46.9638 249.389 46.9638 249.42 46.9638C249.45 46.9638 249.485 46.9618 249.523 46.958C249.673 46.958 249.82 46.958 249.966 46.958C250.111 46.958 250.253 46.9599 250.391 46.9638H250.425C250.467 46.9638 250.508 46.9657 250.546 46.9695C250.588 46.9695 250.63 46.9695 250.672 46.9695C250.76 46.9733 250.843 46.9906 250.919 47.0212C250.981 47.0365 251.03 47.0691 251.069 47.1189Z" fill="white"/>
|
||||
</g>
|
||||
<g opacity="0.3">
|
||||
<path d="M300.552 57.3025H278.145C276.241 57.3025 274.697 55.7591 274.697 53.8552V50.9824H304V53.8552C304 55.7591 302.456 57.3025 300.552 57.3025Z" fill="#D3DCFB"/>
|
||||
<path d="M278.145 56.1534C276.878 56.1534 275.847 55.1224 275.847 53.8552V50.9824H302.851V53.8552C302.851 55.1224 301.82 56.1534 300.553 56.1534H278.145Z" fill="#6A0DB4"/>
|
||||
<path d="M300.552 30.2988H278.145C276.244 30.2988 274.697 31.8453 274.697 33.7462V51.5574C274.697 53.4582 276.244 55.0047 278.145 55.0047H300.552C302.453 55.0047 304 53.4582 304 51.5574C304 51.1568 304 34.2625 304 33.7462C304 31.8453 302.453 30.2988 300.552 30.2988Z" fill="#EBF5FC"/>
|
||||
<path d="M278.145 53.8547C276.876 53.8547 275.847 52.8257 275.847 51.5564V46.3854C275.847 45.7508 276.361 45.2363 276.996 45.2363H301.702C302.336 45.2363 302.851 45.7508 302.851 46.3854V51.5564C302.851 52.8257 301.822 53.8547 300.553 53.8547H278.145Z" fill="#A12BFF"/>
|
||||
<path d="M281.017 33.7455C281.652 33.7455 282.166 33.231 282.166 32.5964C282.166 31.9617 281.652 31.4473 281.017 31.4473C280.383 31.4473 279.868 31.9617 279.868 32.5964C279.868 33.231 280.383 33.7455 281.017 33.7455Z" fill="#AAB9E5"/>
|
||||
<path d="M281.017 33.171C280.541 33.171 280.155 32.7851 280.155 32.3092V28.8618C280.155 28.3859 280.541 28 281.017 28C281.493 28 281.879 28.3859 281.879 28.8618V32.3092C281.879 32.7851 281.493 33.171 281.017 33.171Z" fill="#D3DCFB"/>
|
||||
<path d="M289.348 33.7455C289.983 33.7455 290.497 33.231 290.497 32.5964C290.497 31.9617 289.983 31.4473 289.348 31.4473C288.714 31.4473 288.199 31.9617 288.199 32.5964C288.199 33.231 288.714 33.7455 289.348 33.7455Z" fill="#AAB9E5"/>
|
||||
<path d="M289.348 33.171C288.872 33.171 288.486 32.7851 288.486 32.3092V28.8618C288.486 28.3859 288.872 28 289.348 28C289.824 28 290.21 28.3859 290.21 28.8618V32.3092C290.21 32.7851 289.824 33.171 289.348 33.171Z" fill="#D3DCFB"/>
|
||||
<path d="M291.647 42.9389C292.914 42.9389 293.945 41.908 293.945 40.6407V37.7679C293.945 36.5007 292.914 35.4697 291.647 35.4697C290.38 35.4697 289.349 36.5007 289.349 37.7679V40.6407C289.349 41.908 290.38 42.9389 291.647 42.9389ZM290.498 37.7679C290.498 37.1343 291.013 36.6188 291.647 36.6188C292.28 36.6188 292.796 37.1343 292.796 37.7679V40.6407C292.796 41.2743 292.28 41.7898 291.647 41.7898C291.013 41.7898 290.498 41.2743 290.498 40.6407V37.7679Z" fill="#252A3F"/>
|
||||
<path d="M285.671 38.2273L287.05 37.1931V42.3641C287.05 42.6814 287.307 42.9387 287.625 42.9387C287.942 42.9387 288.199 42.6814 288.199 42.3641V36.044C288.199 35.5717 287.659 35.3006 287.28 35.5844L284.982 37.308C284.728 37.4984 284.677 37.8586 284.867 38.1124C285.057 38.3662 285.417 38.4177 285.671 38.2273Z" fill="#252A3F"/>
|
||||
<path d="M291.399 47.2918C291.422 47.4756 291.435 47.6901 291.439 47.9353C291.443 48.1766 291.439 48.4217 291.428 48.6707C291.42 48.9158 291.403 49.1495 291.376 49.3717C291.349 49.59 291.316 49.7662 291.278 49.9003C291.251 49.9807 291.219 50.065 291.18 50.1531C291.146 50.2373 291.108 50.3139 291.066 50.3829C291.004 50.4863 290.93 50.5782 290.841 50.6587C290.753 50.7353 290.656 50.8023 290.548 50.8598C290.445 50.9134 290.334 50.9555 290.215 50.9862C290.1 51.0168 289.985 51.034 289.87 51.0379C289.667 51.0455 289.474 51.0168 289.29 50.9517C289.11 50.8827 288.944 50.7755 288.79 50.6299C288.675 50.5189 288.583 50.4001 288.515 50.2737C288.446 50.1473 288.392 50.0152 288.354 49.8773C288.315 49.7355 288.29 49.59 288.279 49.4406C288.271 49.2912 288.267 49.138 288.267 48.981C288.267 48.9082 288.266 48.8182 288.262 48.7109C288.262 48.5998 288.262 48.4868 288.262 48.3719C288.262 48.2532 288.262 48.1383 288.262 48.0272C288.262 47.9161 288.264 47.8223 288.267 47.7457C288.267 47.6959 288.267 47.6423 288.267 47.5848C288.267 47.5235 288.269 47.4641 288.273 47.4067C288.281 47.3454 288.292 47.2879 288.308 47.2343C288.323 47.1769 288.346 47.1252 288.377 47.0792C288.411 47.0294 288.459 46.993 288.52 46.97C288.582 46.947 288.645 46.9355 288.71 46.9355C288.779 46.9355 288.844 46.949 288.905 46.9758C288.967 47.0026 289.016 47.0409 289.055 47.0907C289.074 47.1213 289.087 47.152 289.095 47.1826C289.102 47.2132 289.108 47.2477 289.112 47.286C289.12 47.4124 289.124 47.5561 289.124 47.7169C289.127 47.8778 289.127 48.0349 289.124 48.1881C289.124 48.3375 289.122 48.4754 289.118 48.6018C289.114 48.7282 289.112 48.822 289.112 48.8833C289.112 49.1131 289.124 49.3219 289.147 49.5096C289.17 49.6934 289.223 49.8466 289.307 49.9692C289.384 50.0803 289.474 50.1511 289.577 50.1818C289.681 50.2124 289.784 50.222 289.888 50.2105C289.983 50.199 290.079 50.1645 290.175 50.1071C290.275 50.0458 290.353 49.9577 290.411 49.8428C290.434 49.8007 290.453 49.7528 290.468 49.6992C290.483 49.6455 290.495 49.5957 290.502 49.5498C290.518 49.4042 290.531 49.2357 290.543 49.0442C290.554 48.8488 290.564 48.6496 290.571 48.4466C290.579 48.2436 290.583 48.0444 290.583 47.8491C290.583 47.6537 290.581 47.4775 290.577 47.3205C290.585 47.2516 290.606 47.1884 290.64 47.1309C290.671 47.0811 290.715 47.0371 290.773 46.9987C290.83 46.9604 290.909 46.9413 291.008 46.9413C291.089 46.9451 291.154 46.9662 291.203 47.0045C291.253 47.039 291.293 47.0773 291.324 47.1194C291.359 47.1692 291.383 47.2267 291.399 47.2918Z" fill="white"/>
|
||||
<path d="M287.273 50.6527C287.276 50.6757 287.278 50.6987 287.278 50.7217C287.282 50.7408 287.284 50.7638 287.284 50.7906C287.284 50.8366 287.271 50.8787 287.244 50.917C287.232 50.9362 287.217 50.9553 287.198 50.9745C287.179 50.9898 287.156 51.0032 287.129 51.0147C287.033 51.0683 286.932 51.0875 286.824 51.0722C286.771 51.0568 286.723 51.0319 286.681 50.9975C286.673 50.9898 286.667 50.986 286.664 50.986C286.66 50.9822 286.656 50.9764 286.652 50.9687C286.648 50.9649 286.644 50.9611 286.641 50.9573C286.637 50.9496 286.631 50.9438 286.623 50.94C286.604 50.9209 286.589 50.9036 286.577 50.8883C286.566 50.8692 286.554 50.85 286.543 50.8309C286.535 50.8117 286.526 50.7945 286.514 50.7791C286.506 50.76 286.497 50.7408 286.485 50.7217C286.478 50.7064 286.47 50.693 286.462 50.6815C286.455 50.6661 286.449 50.6508 286.445 50.6355C286.43 50.601 286.42 50.5704 286.416 50.5436L286.296 50.262C286.032 50.262 285.767 50.264 285.503 50.2678C285.242 50.2678 284.98 50.2659 284.716 50.262L284.595 50.5436C284.587 50.5589 284.582 50.5742 284.578 50.5895C284.578 50.6049 284.574 50.6202 284.566 50.6355C284.559 50.6508 284.551 50.6661 284.543 50.6815C284.54 50.693 284.534 50.7064 284.526 50.7217C284.515 50.7408 284.503 50.76 284.492 50.7791C284.484 50.7945 284.474 50.8117 284.463 50.8309C284.455 50.85 284.446 50.8692 284.434 50.8883C284.423 50.9036 284.407 50.9209 284.388 50.94C284.381 50.9438 284.375 50.9496 284.371 50.9573C284.367 50.9611 284.363 50.9649 284.36 50.9687C284.356 50.9764 284.352 50.9822 284.348 50.986C284.344 50.986 284.338 50.9898 284.331 50.9975C284.289 51.0319 284.241 51.0568 284.187 51.0722C284.08 51.0875 283.978 51.0683 283.883 51.0147C283.856 51.0032 283.833 50.9898 283.814 50.9745C283.795 50.9553 283.779 50.9362 283.768 50.917C283.741 50.8787 283.728 50.8366 283.728 50.7906C283.728 50.7638 283.728 50.7408 283.728 50.7217C283.731 50.6987 283.735 50.6757 283.739 50.6527C283.747 50.6183 283.756 50.5838 283.768 50.5493C283.779 50.5148 283.785 50.4976 283.785 50.4976L284.98 47.5559L285.015 47.464C285.022 47.441 285.032 47.4199 285.043 47.4008C285.055 47.3816 285.064 47.3586 285.072 47.3318C285.091 47.282 285.112 47.238 285.135 47.1997C285.147 47.1767 285.16 47.1556 285.175 47.1365C285.191 47.1173 285.206 47.0982 285.221 47.079C285.244 47.0484 285.277 47.0235 285.319 47.0043C285.373 46.9852 285.434 46.9756 285.503 46.9756C285.576 46.9756 285.639 46.9852 285.693 47.0043C285.735 47.0235 285.767 47.0484 285.79 47.079C285.817 47.1135 285.846 47.1537 285.876 47.1997C285.899 47.238 285.92 47.282 285.94 47.3318C285.947 47.3586 285.957 47.3816 285.968 47.4008C285.98 47.4199 285.989 47.441 285.997 47.464L286.032 47.5559L287.227 50.4976C287.227 50.4976 287.232 50.5148 287.244 50.5493C287.255 50.5838 287.265 50.6183 287.273 50.6527ZM285.911 49.2451C285.861 49.134 285.809 49.0191 285.756 48.9003C285.706 48.7816 285.652 48.6609 285.595 48.5384C285.58 48.5039 285.564 48.4694 285.549 48.435C285.534 48.3967 285.518 48.3603 285.503 48.3258C285.491 48.3603 285.478 48.3967 285.463 48.435C285.447 48.4694 285.432 48.5039 285.417 48.5384C285.359 48.6609 285.304 48.7816 285.25 48.9003C285.2 49.0191 285.151 49.134 285.101 49.2451L284.997 49.4979H286.014L285.911 49.2451Z" fill="white"/>
|
||||
</g>
|
||||
<path d="M80.7847 57.3025H58.377C56.4731 57.3025 54.9297 55.7591 54.9297 53.8552V50.9824H84.232V53.8552C84.232 55.7591 82.6886 57.3025 80.7847 57.3025Z" fill="#D3DCFB"/>
|
||||
<path d="M58.3773 56.1534C57.1101 56.1534 56.0791 55.1224 56.0791 53.8552V50.9824H83.0832V53.8552C83.0832 55.1224 82.0522 56.1534 80.785 56.1534H58.3773Z" fill="#6A0DB4"/>
|
||||
<path d="M80.7847 30.2988H58.377C56.4762 30.2988 54.9297 31.8453 54.9297 33.7462V51.5574C54.9297 53.4582 56.4762 55.0047 58.377 55.0047H80.7847C82.6855 55.0047 84.232 53.4582 84.232 51.5574C84.232 51.1568 84.232 34.2625 84.232 33.7462C84.232 31.8453 82.6855 30.2988 80.7847 30.2988Z" fill="#EBF5FC"/>
|
||||
<path d="M58.3773 53.8547C57.1081 53.8547 56.0791 52.8257 56.0791 51.5564V46.3854C56.0791 45.7508 56.5936 45.2363 57.2282 45.2363H81.9341C82.5687 45.2363 83.0832 45.7508 83.0832 46.3854V51.5564C83.0832 52.8257 82.0542 53.8547 80.785 53.8547H58.3773Z" fill="#A12BFF"/>
|
||||
<path d="M61.2497 33.7455C61.8843 33.7455 62.3988 33.231 62.3988 32.5964C62.3988 31.9617 61.8843 31.4473 61.2497 31.4473C60.6151 31.4473 60.1006 31.9617 60.1006 32.5964C60.1006 33.231 60.6151 33.7455 61.2497 33.7455Z" fill="#AAB9E5"/>
|
||||
<path d="M61.2495 33.171C60.7736 33.171 60.3877 32.7851 60.3877 32.3092V28.8618C60.3877 28.3859 60.7736 28 61.2495 28C61.7255 28 62.1114 28.3859 62.1114 28.8618V32.3092C62.1114 32.7851 61.7255 33.171 61.2495 33.171Z" fill="#D3DCFB"/>
|
||||
<path d="M77.9118 33.7455C78.5464 33.7455 79.0609 33.231 79.0609 32.5964C79.0609 31.9617 78.5464 31.4473 77.9118 31.4473C77.2772 31.4473 76.7627 31.9617 76.7627 32.5964C76.7627 33.231 77.2772 33.7455 77.9118 33.7455Z" fill="#AAB9E5"/>
|
||||
<path d="M77.9116 33.171C77.4357 33.171 77.0498 32.7851 77.0498 32.3092V28.8618C77.0498 28.3859 77.4357 28 77.9116 28C78.3876 28 78.7735 28.3859 78.7735 28.8618V32.3092C78.7735 32.7851 78.3876 33.171 77.9116 33.171Z" fill="#D3DCFB"/>
|
||||
<path d="M69.5808 33.7455C70.2154 33.7455 70.7299 33.231 70.7299 32.5964C70.7299 31.9617 70.2154 31.4473 69.5808 31.4473C68.9461 31.4473 68.4316 31.9617 68.4316 32.5964C68.4316 33.231 68.9461 33.7455 69.5808 33.7455Z" fill="#AAB9E5"/>
|
||||
<path d="M69.5806 33.171C69.1046 33.171 68.7188 32.7851 68.7188 32.3092V28.8618C68.7188 28.3859 69.1046 28 69.5806 28C70.0565 28 70.4424 28.3859 70.4424 28.8618V32.3092C70.4424 32.7851 70.0565 33.171 69.5806 33.171Z" fill="#D3DCFB"/>
|
||||
<path d="M71.8793 42.9389C73.1465 42.9389 74.1775 41.908 74.1775 40.6407V37.7679C74.1775 36.5007 73.1465 35.4697 71.8793 35.4697C70.612 35.4697 69.5811 36.5007 69.5811 37.7679V40.6407C69.5811 41.908 70.612 42.9389 71.8793 42.9389ZM70.7302 37.7679C70.7302 37.1343 71.2457 36.6188 71.8793 36.6188C72.5129 36.6188 73.0284 37.1343 73.0284 37.7679V40.6407C73.0284 41.2743 72.5129 41.7898 71.8793 41.7898C71.2457 41.7898 70.7302 41.2743 70.7302 40.6407V37.7679Z" fill="#252A3F"/>
|
||||
<path d="M65.9037 38.2273L67.2826 37.1931V42.3641C67.2826 42.6814 67.5399 42.9387 67.8572 42.9387C68.1744 42.9387 68.4317 42.6814 68.4317 42.3641V36.044C68.4317 35.5717 67.8909 35.3006 67.5124 35.5844L65.2142 37.308C64.9604 37.4984 64.9089 37.8586 65.0993 38.1124C65.2897 38.3662 65.6498 38.4177 65.9037 38.2273Z" fill="#252A3F"/>
|
||||
<path d="M74.9005 48.9236C75.0115 48.9964 75.1054 49.0826 75.182 49.1822C75.2624 49.2779 75.3256 49.3967 75.3716 49.5384C75.4214 49.6954 75.4463 49.8544 75.4463 50.0153C75.4501 50.1723 75.4214 50.3198 75.3601 50.4577C75.3027 50.5917 75.2088 50.7105 75.0786 50.8139C74.9522 50.9135 74.7856 50.9844 74.5787 51.0265C74.4676 51.0533 74.3374 51.0744 74.188 51.0897C74.0386 51.105 73.9046 51.1127 73.7858 51.1127C73.6364 51.1165 73.4813 51.1165 73.3204 51.1127C73.1634 51.1127 73.0102 51.0973 72.8608 51.0667C72.7957 51.0476 72.7478 51.015 72.7172 50.969C72.6903 50.9192 72.6712 50.8637 72.6597 50.8024C72.6444 50.7679 72.6367 50.7335 72.6367 50.699V47.4355C72.6367 47.3283 72.6578 47.2459 72.6999 47.1885C72.7459 47.1272 72.8053 47.0831 72.878 47.0563C72.9508 47.0257 73.0332 47.0084 73.1251 47.0046C73.217 46.9969 73.3128 46.9931 73.4124 46.9931C73.489 46.9931 73.5656 46.9931 73.6422 46.9931C73.7226 46.9893 73.8031 46.9893 73.8835 46.9931C74.0099 46.9969 74.1401 47.0084 74.2742 47.0276C74.4121 47.0429 74.5423 47.0735 74.6649 47.1195C74.7224 47.1387 74.7836 47.1655 74.8488 47.1999C74.9139 47.2306 74.9656 47.2689 75.0039 47.3149C75.1265 47.4259 75.2165 47.5562 75.2739 47.7056C75.3352 47.8511 75.362 48.0005 75.3544 48.1537C75.3467 48.3031 75.3046 48.4467 75.228 48.5846C75.1552 48.7225 75.046 48.8355 74.9005 48.9236ZM73.895 50.4462C74.0137 50.4385 74.1344 50.4251 74.257 50.406C74.3795 50.3868 74.4638 50.3504 74.5098 50.2968C74.5596 50.2355 74.594 50.1647 74.6132 50.0842C74.6362 49.9999 74.6419 49.9157 74.6304 49.8314C74.6228 49.7433 74.5979 49.661 74.5557 49.5844C74.5174 49.5039 74.4657 49.4407 74.4006 49.3947C74.3125 49.3258 74.211 49.2818 74.0961 49.2626C73.9812 49.2396 73.8682 49.2281 73.7571 49.2281C73.7035 49.2281 73.6537 49.23 73.6077 49.2339C73.5656 49.2339 73.5273 49.2396 73.4928 49.2511C73.4622 49.2588 73.4392 49.276 73.4239 49.3028C73.4085 49.3296 73.4009 49.3699 73.4009 49.4235C73.4085 49.5231 73.4085 49.6227 73.4009 49.7222C73.3932 49.8218 73.3894 49.9176 73.3894 50.0095C73.3894 50.0631 73.3875 50.1225 73.3836 50.1876C73.3836 50.2489 73.4047 50.3006 73.4468 50.3428C73.489 50.3849 73.5503 50.4136 73.6307 50.4289C73.7111 50.4443 73.7992 50.45 73.895 50.4462ZM74.0099 47.6883C73.8912 47.6845 73.7916 47.6826 73.7111 47.6826C73.6345 47.6787 73.5732 47.6845 73.5273 47.6998C73.4851 47.7113 73.4545 47.74 73.4354 47.786C73.42 47.8281 73.4143 47.8932 73.4181 47.9813C73.4181 48.0541 73.4162 48.1269 73.4124 48.1997C73.4124 48.2686 73.4124 48.3376 73.4124 48.4065C73.4124 48.4831 73.4373 48.5406 73.4871 48.5789C73.5369 48.6134 73.5981 48.6344 73.6709 48.6421C73.7475 48.6497 73.826 48.6497 73.9065 48.6421C73.9908 48.6344 74.0635 48.6248 74.1248 48.6134C74.2627 48.5904 74.368 48.5444 74.4408 48.4755C74.5174 48.4027 74.5615 48.2973 74.573 48.1595C74.5883 47.9871 74.5423 47.8683 74.4351 47.8032C74.3317 47.7343 74.1899 47.696 74.0099 47.6883Z" fill="white"/>
|
||||
<path d="M69.7539 47.6651L69.7424 48.5671H69.9723C70.1293 48.5633 70.2691 48.5614 70.3917 48.5614C70.5143 48.5614 70.6502 48.5633 70.7996 48.5671H70.8284C70.8743 48.5671 70.9184 48.569 70.9605 48.5728C71.0065 48.5728 71.0505 48.5728 71.0927 48.5728C71.1386 48.5767 71.1827 48.5843 71.2248 48.5958C71.2669 48.6035 71.3091 48.6131 71.3512 48.6246C71.4163 48.6475 71.4699 48.682 71.5121 48.728C71.5504 48.7778 71.5695 48.8333 71.5695 48.8946C71.5695 48.9138 71.5695 48.9367 71.5695 48.9635C71.5695 48.9865 71.5657 49.0076 71.558 49.0267C71.5504 49.0689 71.5255 49.1072 71.4833 49.1417C71.4642 49.1685 71.4278 49.1876 71.3742 49.1991C71.3244 49.2144 71.2746 49.224 71.2248 49.2278C71.1712 49.2393 71.1175 49.2451 71.0639 49.2451H70.7939L69.731 49.2508L69.7195 50.377L70.8628 50.3884H71.1329C71.1635 50.3884 71.1922 50.3884 71.2191 50.3884C71.2459 50.3884 71.2708 50.3904 71.2937 50.3942C71.3244 50.4019 71.3512 50.4076 71.3742 50.4114C71.401 50.4114 71.4259 50.4153 71.4489 50.4229C71.4948 50.4382 71.5331 50.4593 71.5638 50.4861C71.6021 50.5244 71.627 50.5646 71.6385 50.6068C71.6423 50.6259 71.6442 50.647 71.6442 50.67C71.6481 50.6891 71.6481 50.7102 71.6442 50.7332C71.6442 50.7945 71.6251 50.85 71.5868 50.8998C71.5408 50.9534 71.4872 50.9879 71.4259 51.0032C71.3455 51.0377 71.2574 51.0549 71.1616 51.0549C71.1195 51.0588 71.0754 51.0607 71.0295 51.0607C70.9835 51.0607 70.9394 51.0626 70.8973 51.0664H70.8628C70.5641 51.0741 70.2538 51.0741 69.932 51.0664C69.8554 51.0664 69.7942 51.0645 69.7482 51.0607C69.7022 51.0607 69.6601 51.0607 69.6218 51.0607C69.5873 51.0607 69.5509 51.0607 69.5126 51.0607C69.4743 51.0607 69.4245 51.0607 69.3632 51.0607C69.2751 51.0683 69.2024 51.053 69.1449 51.0147C69.1028 50.9879 69.0702 50.9515 69.0472 50.9055C69.0357 50.8941 69.03 50.8826 69.03 50.8711C69.0262 50.8634 69.0223 50.8577 69.0185 50.8538C69.0147 50.85 69.0108 50.8443 69.007 50.8366C68.9994 50.8174 68.9936 50.7983 68.9898 50.7791C68.9859 50.7562 68.984 50.7351 68.984 50.7159C68.9802 50.6968 68.9764 50.6776 68.9725 50.6585C68.9725 50.6393 68.9706 50.6202 68.9668 50.601V50.5091C68.9668 50.4938 68.9668 50.4785 68.9668 50.4631C68.9706 50.4478 68.9725 50.4325 68.9725 50.4172V49.969L68.984 49.1417V48.3775C68.984 48.2396 68.984 48.117 68.984 48.0098C68.9879 47.9025 68.9917 47.7857 68.9955 47.6593V47.6306C68.9994 47.5884 69.0013 47.5501 69.0013 47.5157C69.0051 47.4774 69.007 47.4391 69.007 47.4008C69.0108 47.3241 69.0319 47.2495 69.0702 47.1767C69.0855 47.146 69.1009 47.1192 69.1162 47.0962C69.1353 47.0733 69.1602 47.0541 69.1909 47.0388C69.2483 47.0043 69.3077 46.9871 69.369 46.9871C69.3996 46.9871 69.4226 46.989 69.4379 46.9928V46.9871C69.5069 46.9871 69.5624 46.9871 69.6046 46.9871C69.6467 46.9871 69.6869 46.9871 69.7252 46.9871C69.7673 46.9871 69.8114 46.9871 69.8574 46.9871C69.9033 46.9832 69.9665 46.9813 70.047 46.9813C70.2002 46.9775 70.3457 46.9756 70.4836 46.9756C70.6215 46.9756 70.7632 46.9775 70.9088 46.9813H70.9318C70.9739 46.9852 71.018 46.9871 71.0639 46.9871C71.1099 46.9871 71.1539 46.989 71.1961 46.9928C71.2382 46.9928 71.2803 46.9986 71.3225 47.0101C71.3646 47.0177 71.4067 47.0292 71.4489 47.0445C71.514 47.0637 71.5676 47.0962 71.6098 47.1422C71.6442 47.1958 71.6615 47.2495 71.6615 47.3031C71.6615 47.3261 71.6615 47.349 71.6615 47.372C71.6615 47.3912 71.6576 47.4103 71.65 47.4295C71.6461 47.4678 71.6232 47.508 71.581 47.5501C71.5657 47.5578 71.5485 47.5674 71.5293 47.5789C71.514 47.5904 71.4948 47.5999 71.4719 47.6076C71.4489 47.6153 71.424 47.621 71.3972 47.6248C71.3742 47.6248 71.3512 47.6267 71.3282 47.6306C71.2976 47.6382 71.2688 47.6421 71.242 47.6421C71.2191 47.6421 71.1922 47.6421 71.1616 47.6421H70.903L69.7539 47.6478V47.6651Z" fill="white"/>
|
||||
<path d="M68.0074 47.1471C68.0419 47.1931 68.063 47.2467 68.0707 47.308C68.0707 47.331 68.0687 47.354 68.0649 47.377C68.0649 47.3961 68.063 47.4153 68.0592 47.4344C68.0553 47.4766 68.0304 47.5168 67.9845 47.5551C67.9577 47.5742 67.9232 47.5934 67.881 47.6125C67.8581 47.6202 67.8332 47.6259 67.8064 47.6298C67.7834 47.6298 67.7566 47.6317 67.7259 47.6355C67.7029 47.6432 67.678 47.647 67.6512 47.647C67.6244 47.647 67.5976 47.647 67.5708 47.647H67.3122L66.1114 47.6528V47.67L66.1057 48.6065C66.1363 48.6065 66.1689 48.6065 66.2033 48.6065C66.2416 48.6065 66.2876 48.6046 66.3412 48.6008C66.4945 48.6008 66.6304 48.6008 66.7492 48.6008C66.8717 48.6008 67.0058 48.6027 67.1514 48.6065H67.1858C67.228 48.6065 67.2701 48.6084 67.3122 48.6123C67.3582 48.6123 67.4042 48.6123 67.4501 48.6123C67.4923 48.6161 67.5344 48.6218 67.5765 48.6295C67.6187 48.6333 67.6608 48.6429 67.7029 48.6582C67.7719 48.6812 67.8217 48.7176 67.8523 48.7674C67.8945 48.8172 67.9155 48.8689 67.9155 48.9225C67.9155 48.9455 67.9155 48.9685 67.9155 48.9915C67.9155 49.0106 67.9117 49.0317 67.904 49.0547C67.9002 49.0853 67.8753 49.1236 67.8293 49.1696C67.7987 49.1964 67.7623 49.2136 67.7202 49.2213C67.701 49.229 67.678 49.2366 67.6512 49.2443C67.6282 49.2481 67.6033 49.2519 67.5765 49.2558C67.5497 49.2596 67.5229 49.2634 67.4961 49.2673C67.4731 49.2673 67.4463 49.2673 67.4157 49.2673H67.1514L66.0942 49.273L66.0769 50.606V50.6519C66.0769 50.6711 66.075 50.6902 66.0712 50.7094C66.0712 50.7247 66.0693 50.7419 66.0655 50.7611C66.0578 50.7803 66.0501 50.8013 66.0425 50.8243C66.0386 50.8435 66.0329 50.8626 66.0252 50.8818C65.9984 50.9354 65.9735 50.9718 65.9505 50.9909C65.9084 51.0216 65.8567 51.0426 65.7954 51.0541C65.692 51.0771 65.5943 51.0656 65.5024 51.0197C65.4832 51.0082 65.4641 50.9948 65.4449 50.9794C65.4296 50.9603 65.4162 50.9373 65.4047 50.9105C65.3971 50.8952 65.3932 50.8837 65.3932 50.876L65.376 50.8415C65.3645 50.8224 65.3568 50.8032 65.353 50.7841C65.3492 50.7611 65.3453 50.74 65.3415 50.7209C65.3415 50.7017 65.3396 50.6826 65.3358 50.6634C65.3358 50.6443 65.3339 50.6251 65.33 50.606C65.3262 50.5753 65.3262 50.5447 65.33 50.514V50.4221L65.3358 49.974L65.3415 49.1466C65.3453 49.024 65.3473 48.8995 65.3473 48.7731C65.3473 48.6467 65.3473 48.5165 65.3473 48.3824C65.3434 48.2445 65.3415 48.122 65.3415 48.0147C65.3453 47.9075 65.3511 47.7906 65.3587 47.6642V47.6355C65.3626 47.5934 65.3645 47.5551 65.3645 47.5206C65.3645 47.4823 65.3683 47.444 65.376 47.4057C65.3836 47.3214 65.4028 47.2467 65.4334 47.1816C65.4603 47.1165 65.4986 47.0705 65.5484 47.0437C65.6058 47.0093 65.6671 46.992 65.7322 46.992C65.7629 46.992 65.7878 46.9939 65.8069 46.9978V46.992C65.8758 46.992 65.9314 46.992 65.9735 46.992C66.0157 46.992 66.0559 46.992 66.0942 46.992C66.1325 46.992 66.1746 46.992 66.2206 46.992C66.2665 46.9882 66.3278 46.9863 66.4044 46.9863C66.7109 46.9824 67.0135 46.9824 67.3122 46.9863H67.341C67.3831 46.9901 67.4252 46.992 67.4674 46.992C67.5133 46.992 67.5593 46.9939 67.6053 46.9978C67.6474 46.9978 67.6895 47.0035 67.7317 47.015C67.7738 47.0227 67.8159 47.0342 67.8581 47.0495C67.9232 47.0686 67.973 47.1012 68.0074 47.1471Z" fill="white"/>
|
||||
<path d="M117.414 57.3025H95.0059C93.102 57.3025 91.5586 55.7591 91.5586 53.8552V50.9824H120.861V53.8552C120.861 55.7591 119.317 57.3025 117.414 57.3025Z" fill="#D3DCFB"/>
|
||||
<path d="M95.0062 56.1534C93.739 56.1534 92.708 55.1224 92.708 53.8552V50.9824H119.712V53.8552C119.712 55.1224 118.681 56.1534 117.414 56.1534H95.0062Z" fill="#6A0DB4"/>
|
||||
<path d="M117.414 30.2988H95.0059C93.1051 30.2988 91.5586 31.8453 91.5586 33.7462V51.5574C91.5586 53.4582 93.1051 55.0047 95.0059 55.0047H117.414C119.314 55.0047 120.861 53.4582 120.861 51.5574C120.861 51.1568 120.861 34.2625 120.861 33.7462C120.861 31.8453 119.314 30.2988 117.414 30.2988Z" fill="#EBF5FC"/>
|
||||
<path d="M95.0062 53.8547C93.737 53.8547 92.708 52.8257 92.708 51.5564V46.3854C92.708 45.7508 93.2225 45.2363 93.8571 45.2363H118.563C119.198 45.2363 119.712 45.7508 119.712 46.3854V51.5564C119.712 52.8257 118.683 53.8547 117.414 53.8547H95.0062Z" fill="#A12BFF"/>
|
||||
<path d="M97.8786 33.7455C98.5132 33.7455 99.0277 33.231 99.0277 32.5964C99.0277 31.9617 98.5132 31.4473 97.8786 31.4473C97.244 31.4473 96.7295 31.9617 96.7295 32.5964C96.7295 33.231 97.244 33.7455 97.8786 33.7455Z" fill="#AAB9E5"/>
|
||||
<path d="M97.8784 33.171C97.4025 33.171 97.0166 32.7851 97.0166 32.3092V28.8618C97.0166 28.3859 97.4025 28 97.8784 28C98.3544 28 98.7403 28.3859 98.7403 28.8618V32.3092C98.7403 32.7851 98.3544 33.171 97.8784 33.171Z" fill="#D3DCFB"/>
|
||||
<path d="M114.541 33.7455C115.175 33.7455 115.69 33.231 115.69 32.5964C115.69 31.9617 115.175 31.4473 114.541 31.4473C113.906 31.4473 113.392 31.9617 113.392 32.5964C113.392 33.231 113.906 33.7455 114.541 33.7455Z" fill="#AAB9E5"/>
|
||||
<path d="M114.541 33.171C114.065 33.171 113.679 32.7851 113.679 32.3092V28.8618C113.679 28.3859 114.065 28 114.541 28C115.017 28 115.402 28.3859 115.402 28.8618V32.3092C115.402 32.7851 115.017 33.171 114.541 33.171Z" fill="#D3DCFB"/>
|
||||
<path d="M106.21 33.7455C106.844 33.7455 107.359 33.231 107.359 32.5964C107.359 31.9617 106.844 31.4473 106.21 31.4473C105.575 31.4473 105.061 31.9617 105.061 32.5964C105.061 33.231 105.575 33.7455 106.21 33.7455Z" fill="#AAB9E5"/>
|
||||
<path d="M106.209 33.171C105.734 33.171 105.348 32.7851 105.348 32.3092V28.8618C105.348 28.3859 105.734 28 106.209 28C106.685 28 107.071 28.3859 107.071 28.8618V32.3092C107.071 32.7851 106.685 33.171 106.209 33.171Z" fill="#D3DCFB"/>
|
||||
<path d="M108.508 42.9389C109.775 42.9389 110.806 41.908 110.806 40.6407V37.7679C110.806 36.5007 109.775 35.4697 108.508 35.4697C107.241 35.4697 106.21 36.5007 106.21 37.7679V40.6407C106.21 41.908 107.241 42.9389 108.508 42.9389ZM107.359 37.7679C107.359 37.1343 107.875 36.6188 108.508 36.6188C109.142 36.6188 109.657 37.1343 109.657 37.7679V40.6407C109.657 41.2743 109.142 41.7898 108.508 41.7898C107.875 41.7898 107.359 41.2743 107.359 40.6407V37.7679Z" fill="#252A3F"/>
|
||||
<path d="M102.533 38.2273L103.912 37.1931V42.3641C103.912 42.6814 104.169 42.9387 104.486 42.9387C104.803 42.9387 105.061 42.6814 105.061 42.3641V36.044C105.061 35.5717 104.52 35.3006 104.141 35.5844L101.843 37.308C101.589 37.4984 101.538 37.8586 101.728 38.1124C101.919 38.3662 102.279 38.4177 102.533 38.2273Z" fill="#252A3F"/>
|
||||
<path d="M112.446 50.7927C112.45 50.831 112.446 50.8674 112.435 50.9018C112.427 50.9248 112.416 50.944 112.4 50.9593C112.389 50.9746 112.373 50.9899 112.354 51.0053C112.32 51.0282 112.278 51.0493 112.228 51.0685C112.197 51.0761 112.167 51.0819 112.136 51.0857C112.109 51.0934 112.08 51.0934 112.05 51.0857C111.988 51.0819 111.935 51.0589 111.889 51.0168C111.824 50.9631 111.77 50.9038 111.728 50.8386C111.709 50.808 111.688 50.7735 111.665 50.7352C111.642 50.6969 111.621 50.6567 111.602 50.6146L110.964 49.4023C110.933 49.4023 110.903 49.4042 110.872 49.408C110.841 49.408 110.811 49.4099 110.78 49.4137C110.7 49.4214 110.623 49.4233 110.55 49.4195C110.481 49.4157 110.408 49.4157 110.332 49.4195H110.223V50.4594C110.223 50.4901 110.221 50.5188 110.217 50.5456C110.217 50.5724 110.217 50.6012 110.217 50.6318C110.217 50.651 110.215 50.6759 110.211 50.7065C110.211 50.7371 110.209 50.7659 110.205 50.7927C110.198 50.8348 110.18 50.8789 110.154 50.9248C110.127 50.967 110.09 51.0034 110.045 51.034C109.964 51.0838 109.866 51.0972 109.751 51.0742C109.702 51.0627 109.654 51.0436 109.608 51.0168C109.593 51.0053 109.579 50.9919 109.568 50.9765C109.556 50.9574 109.547 50.9382 109.539 50.9191C109.531 50.8999 109.524 50.8808 109.516 50.8616C109.512 50.8386 109.506 50.8176 109.499 50.7984C109.487 50.7601 109.481 50.7237 109.481 50.6893V47.4258C109.481 47.4028 109.481 47.3798 109.481 47.3568C109.485 47.33 109.489 47.307 109.493 47.2879C109.497 47.2458 109.51 47.2036 109.533 47.1615C109.545 47.1155 109.564 47.083 109.591 47.0638C109.614 47.0408 109.648 47.0217 109.694 47.0064C109.744 46.9872 109.815 46.9795 109.907 46.9834C110.079 46.9872 110.249 46.9891 110.418 46.9891C110.587 46.9891 110.755 46.993 110.924 47.0006C111.035 47.0083 111.151 47.0217 111.274 47.0408C111.4 47.0562 111.517 47.0849 111.625 47.127C111.693 47.1538 111.757 47.1806 111.814 47.2075C111.887 47.2496 111.944 47.2898 111.987 47.3281C112.121 47.4507 112.222 47.5982 112.291 47.7705C112.36 47.9429 112.394 48.1172 112.394 48.2934C112.394 48.5002 112.345 48.6898 112.245 48.8622C112.149 49.0345 111.994 49.1629 111.78 49.2471C111.772 49.2548 111.761 49.2605 111.745 49.2644C111.734 49.2644 111.724 49.2663 111.716 49.2701L112.245 50.333L112.297 50.425C112.304 50.4403 112.314 50.4575 112.325 50.4767C112.337 50.4958 112.347 50.515 112.354 50.5341C112.366 50.5533 112.375 50.5744 112.383 50.5973C112.394 50.6203 112.406 50.6414 112.417 50.6605C112.429 50.7142 112.438 50.7582 112.446 50.7927ZM111.01 48.7473C111.079 48.7473 111.144 48.7358 111.205 48.7128C111.27 48.686 111.328 48.6515 111.377 48.6094C111.431 48.5672 111.475 48.5194 111.51 48.4657C111.544 48.4083 111.563 48.347 111.567 48.2819C111.582 48.0904 111.533 47.9486 111.418 47.8567C111.303 47.7609 111.151 47.7092 110.964 47.7016C110.853 47.6939 110.73 47.6901 110.596 47.6901C110.466 47.6901 110.341 47.6901 110.223 47.6901C110.226 47.8471 110.226 48.008 110.223 48.1727C110.223 48.3336 110.223 48.5251 110.223 48.7473H111.01Z" fill="white"/>
|
||||
<path d="M108.492 50.6537C108.496 50.6767 108.498 50.6997 108.498 50.7227C108.502 50.7418 108.504 50.7648 108.504 50.7916C108.504 50.8376 108.49 50.8797 108.464 50.918C108.452 50.9372 108.437 50.9563 108.418 50.9755C108.398 50.9908 108.375 51.0042 108.349 51.0157C108.253 51.0693 108.151 51.0885 108.044 51.0731C107.99 51.0578 107.943 51.0329 107.9 50.9985C107.893 50.9908 107.887 50.987 107.883 50.987C107.879 50.9831 107.876 50.9774 107.872 50.9697C107.868 50.9659 107.864 50.9621 107.86 50.9582C107.856 50.9506 107.851 50.9448 107.843 50.941C107.824 50.9218 107.809 50.9046 107.797 50.8893C107.786 50.8701 107.774 50.851 107.763 50.8318C107.755 50.8127 107.745 50.7954 107.734 50.7801C107.726 50.761 107.717 50.7418 107.705 50.7227C107.697 50.7073 107.69 50.6939 107.682 50.6824C107.674 50.6671 107.669 50.6518 107.665 50.6365C107.65 50.602 107.64 50.5714 107.636 50.5446L107.516 50.263C107.251 50.263 106.987 50.2649 106.723 50.2688C106.462 50.2688 106.2 50.2668 105.936 50.263L105.815 50.5446C105.807 50.5599 105.801 50.5752 105.798 50.5905C105.798 50.6058 105.794 50.6212 105.786 50.6365C105.778 50.6518 105.771 50.6671 105.763 50.6824C105.759 50.6939 105.754 50.7073 105.746 50.7227C105.734 50.7418 105.723 50.761 105.711 50.7801C105.704 50.7954 105.694 50.8127 105.683 50.8318C105.675 50.851 105.665 50.8701 105.654 50.8893C105.642 50.9046 105.627 50.9218 105.608 50.941C105.6 50.9448 105.595 50.9506 105.591 50.9582C105.587 50.9621 105.583 50.9659 105.579 50.9697C105.575 50.9774 105.572 50.9831 105.568 50.987C105.564 50.987 105.558 50.9908 105.551 50.9985C105.508 51.0329 105.461 51.0578 105.407 51.0731C105.3 51.0885 105.198 51.0693 105.102 51.0157C105.076 51.0042 105.053 50.9908 105.033 50.9755C105.014 50.9563 104.999 50.9372 104.987 50.918C104.961 50.8797 104.947 50.8376 104.947 50.7916C104.947 50.7648 104.947 50.7418 104.947 50.7227C104.951 50.6997 104.955 50.6767 104.959 50.6537C104.966 50.6192 104.976 50.5848 104.987 50.5503C104.999 50.5158 105.005 50.4986 105.005 50.4986L106.2 47.5569L106.234 47.4649C106.242 47.442 106.252 47.4209 106.263 47.4017C106.274 47.3826 106.284 47.3596 106.292 47.3328C106.311 47.283 106.332 47.2389 106.355 47.2006C106.366 47.1777 106.38 47.1566 106.395 47.1374C106.41 47.1183 106.426 47.0991 106.441 47.08C106.464 47.0493 106.497 47.0244 106.539 47.0053C106.592 46.9861 106.654 46.9766 106.723 46.9766C106.795 46.9766 106.859 46.9861 106.912 47.0053C106.954 47.0244 106.987 47.0493 107.01 47.08C107.037 47.1145 107.065 47.1547 107.096 47.2006C107.119 47.2389 107.14 47.283 107.159 47.3328C107.167 47.3596 107.177 47.3826 107.188 47.4017C107.2 47.4209 107.209 47.442 107.217 47.4649L107.251 47.5569L108.446 50.4986C108.446 50.4986 108.452 50.5158 108.464 50.5503C108.475 50.5848 108.485 50.6192 108.492 50.6537ZM107.131 49.2461C107.081 49.135 107.029 49.0201 106.975 48.9013C106.926 48.7826 106.872 48.6619 106.815 48.5394C106.799 48.5049 106.784 48.4704 106.769 48.4359C106.753 48.3976 106.738 48.3612 106.723 48.3268C106.711 48.3612 106.698 48.3976 106.682 48.4359C106.667 48.4704 106.652 48.5049 106.636 48.5394C106.579 48.6619 106.523 48.7826 106.47 48.9013C106.42 49.0201 106.37 49.135 106.32 49.2461L106.217 49.4989H107.234L107.131 49.2461Z" fill="white"/>
|
||||
<path d="M103.962 50.6311C103.958 50.6771 103.952 50.725 103.945 50.7748C103.937 50.8246 103.924 50.8705 103.904 50.9127C103.885 50.9586 103.86 50.9931 103.83 51.0161C103.788 51.0544 103.738 51.0755 103.68 51.0793C103.627 51.0984 103.575 51.1042 103.525 51.0965C103.475 51.0889 103.43 51.0755 103.387 51.0563C103.334 51.0218 103.294 50.9816 103.267 50.9357C103.244 50.8859 103.227 50.8342 103.215 50.7805C103.204 50.7269 103.198 50.6714 103.198 50.6139C103.198 50.5565 103.198 50.5028 103.198 50.453V50.0049L103.192 49.1258C103.192 49.0645 103.192 49.0166 103.192 48.9822C103.192 48.9477 103.192 48.9171 103.192 48.8902C103.192 48.8596 103.19 48.827 103.186 48.7926C103.186 48.7543 103.186 48.7006 103.186 48.6317C103.186 48.6202 103.186 48.601 103.186 48.5742C103.19 48.5436 103.188 48.4651 103.181 48.3387C103.031 48.5876 102.907 48.7887 102.807 48.9419C102.711 49.0913 102.629 49.2082 102.56 49.2924C102.495 49.3729 102.437 49.4284 102.388 49.459C102.338 49.4859 102.286 49.5012 102.233 49.505C102.202 49.5088 102.171 49.5031 102.141 49.4878C102.11 49.4725 102.079 49.4533 102.049 49.4303C102.022 49.4073 101.995 49.3844 101.968 49.3614C101.945 49.3346 101.926 49.3097 101.911 49.2867C101.819 49.1718 101.715 49.0339 101.601 48.873C101.486 48.7121 101.367 48.5168 101.244 48.287C101.244 48.2908 101.242 48.354 101.239 48.4766C101.239 48.5991 101.239 48.7523 101.239 48.9362C101.239 49.1162 101.237 49.3116 101.233 49.5223C101.233 49.7291 101.231 49.9225 101.227 50.1026C101.227 50.2826 101.225 50.4339 101.221 50.5565C101.217 50.6752 101.214 50.7346 101.21 50.7346C101.21 50.7997 101.194 50.861 101.164 50.9184C101.133 50.972 101.091 51.0161 101.037 51.0506C100.988 51.085 100.928 51.1042 100.859 51.108C100.79 51.1119 100.716 51.0927 100.635 51.0506C100.585 51.0199 100.547 50.9759 100.52 50.9184C100.497 50.861 100.482 50.8073 100.474 50.7575C100.471 50.7039 100.467 50.6522 100.463 50.6024C100.463 50.5526 100.463 50.5009 100.463 50.4473L100.469 49.9991L100.474 49.1143V48.3444C100.474 48.0112 100.486 47.6837 100.509 47.3619C100.509 47.3198 100.513 47.2815 100.52 47.247C100.532 47.2087 100.545 47.1723 100.561 47.1378C100.591 47.0766 100.631 47.0306 100.681 47C100.739 46.9655 100.8 46.9482 100.865 46.9482C100.892 46.9482 100.917 46.9502 100.94 46.954C100.967 46.954 100.991 46.9559 101.014 46.9597C101.091 46.9751 101.156 47.021 101.21 47.0976C101.267 47.1704 101.321 47.2336 101.371 47.2872C101.401 47.3217 101.434 47.3638 101.468 47.4136C101.503 47.4634 101.537 47.5151 101.572 47.5688C101.606 47.6224 101.639 47.6741 101.669 47.7239C101.7 47.7737 101.727 47.8177 101.75 47.856C101.849 48.0169 101.938 48.1644 102.014 48.2984C102.095 48.4325 102.169 48.5474 102.238 48.6432C102.25 48.6317 102.263 48.6164 102.278 48.5972C102.294 48.5742 102.309 48.5513 102.324 48.5283C102.344 48.5015 102.359 48.4766 102.37 48.4536C102.386 48.4306 102.397 48.4114 102.405 48.3961C102.443 48.3348 102.481 48.2755 102.52 48.218C102.558 48.1567 102.598 48.0935 102.64 48.0284C102.686 47.9595 102.732 47.8848 102.778 47.8043C102.828 47.7239 102.886 47.632 102.951 47.5285C102.978 47.4826 103.012 47.427 103.054 47.3619C103.096 47.2968 103.144 47.2336 103.198 47.1723C103.251 47.111 103.307 47.0593 103.364 47.0172C103.426 46.9712 103.487 46.9482 103.548 46.9482C103.579 46.9482 103.606 46.9502 103.629 46.954C103.652 46.954 103.675 46.9559 103.698 46.9597C103.744 46.9636 103.788 46.9846 103.83 47.0229C103.86 47.0536 103.883 47.0861 103.899 47.1206C103.914 47.1704 103.924 47.2125 103.927 47.247C103.931 47.2738 103.933 47.2987 103.933 47.3217C103.937 47.3447 103.939 47.3677 103.939 47.3907C103.939 47.6052 103.941 47.8177 103.945 48.0284C103.949 48.2391 103.95 48.4517 103.95 48.6662C103.95 48.9266 103.95 49.1948 103.95 49.4705C103.954 49.7463 103.956 50.0145 103.956 50.2749C103.956 50.3285 103.958 50.386 103.962 50.4473C103.966 50.5086 103.966 50.5699 103.962 50.6311Z" fill="white"/>
|
||||
<g opacity="0.9">
|
||||
<path d="M154.041 57.3025H131.633C129.729 57.3025 128.186 55.7591 128.186 53.8552V50.9824H157.488V53.8552C157.488 55.7591 155.944 57.3025 154.041 57.3025Z" fill="#D3DCFB"/>
|
||||
<path d="M131.633 56.1534C130.366 56.1534 129.335 55.1224 129.335 53.8552V50.9824H156.339V53.8552C156.339 55.1224 155.308 56.1534 154.041 56.1534H131.633Z" fill="#6A0DB4"/>
|
||||
<path d="M154.041 30.2988H131.633C129.732 30.2988 128.186 31.8453 128.186 33.7462V51.5574C128.186 53.4582 129.732 55.0047 131.633 55.0047H154.041C155.941 55.0047 157.488 53.4582 157.488 51.5574C157.488 51.1568 157.488 34.2625 157.488 33.7462C157.488 31.8453 155.941 30.2988 154.041 30.2988Z" fill="#EBF5FC"/>
|
||||
<path d="M131.633 53.8547C130.364 53.8547 129.335 52.8257 129.335 51.5564V46.3854C129.335 45.7508 129.849 45.2363 130.484 45.2363H155.19C155.825 45.2363 156.339 45.7508 156.339 46.3854V51.5564C156.339 52.8257 155.31 53.8547 154.041 53.8547H131.633Z" fill="#A12BFF"/>
|
||||
<path d="M134.506 33.7455C135.14 33.7455 135.655 33.231 135.655 32.5964C135.655 31.9617 135.14 31.4473 134.506 31.4473C133.871 31.4473 133.356 31.9617 133.356 32.5964C133.356 33.231 133.871 33.7455 134.506 33.7455Z" fill="#AAB9E5"/>
|
||||
<path d="M134.505 33.171C134.029 33.171 133.644 32.7851 133.644 32.3092V28.8618C133.644 28.3859 134.029 28 134.505 28C134.981 28 135.367 28.3859 135.367 28.8618V32.3092C135.367 32.7851 134.981 33.171 134.505 33.171Z" fill="#D3DCFB"/>
|
||||
<path d="M151.168 33.7455C151.802 33.7455 152.317 33.231 152.317 32.5964C152.317 31.9617 151.802 31.4473 151.168 31.4473C150.533 31.4473 150.019 31.9617 150.019 32.5964C150.019 33.231 150.533 33.7455 151.168 33.7455Z" fill="#AAB9E5"/>
|
||||
<path d="M151.167 33.171C150.692 33.171 150.306 32.7851 150.306 32.3092V28.8618C150.306 28.3859 150.692 28 151.167 28C151.643 28 152.029 28.3859 152.029 28.8618V32.3092C152.029 32.7851 151.643 33.171 151.167 33.171Z" fill="#D3DCFB"/>
|
||||
<path d="M142.837 33.7455C143.471 33.7455 143.986 33.231 143.986 32.5964C143.986 31.9617 143.471 31.4473 142.837 31.4473C142.202 31.4473 141.688 31.9617 141.688 32.5964C141.688 33.231 142.202 33.7455 142.837 33.7455Z" fill="#AAB9E5"/>
|
||||
<path d="M142.836 33.171C142.36 33.171 141.975 32.7851 141.975 32.3092V28.8618C141.975 28.3859 142.36 28 142.836 28C143.312 28 143.698 28.3859 143.698 28.8618V32.3092C143.698 32.7851 143.312 33.171 142.836 33.171Z" fill="#D3DCFB"/>
|
||||
<path d="M145.135 42.9389C146.402 42.9389 147.433 41.908 147.433 40.6407V37.7679C147.433 36.5007 146.402 35.4697 145.135 35.4697C143.868 35.4697 142.837 36.5007 142.837 37.7679V40.6407C142.837 41.908 143.868 42.9389 145.135 42.9389ZM143.986 37.7679C143.986 37.1343 144.502 36.6188 145.135 36.6188C145.769 36.6188 146.284 37.1343 146.284 37.7679V40.6407C146.284 41.2743 145.769 41.7898 145.135 41.7898C144.502 41.7898 143.986 41.2743 143.986 40.6407V37.7679Z" fill="#252A3F"/>
|
||||
<path d="M139.16 38.2273L140.538 37.1931V42.3641C140.538 42.6814 140.796 42.9387 141.113 42.9387C141.43 42.9387 141.688 42.6814 141.688 42.3641V36.044C141.688 35.5717 141.147 35.3006 140.768 35.5844L138.47 37.308C138.216 37.4984 138.165 37.8586 138.355 38.1124C138.546 38.3662 138.906 38.4177 139.16 38.2273Z" fill="#252A3F"/>
|
||||
<path d="M148.769 50.7907C148.773 50.829 148.769 50.8654 148.758 50.8999C148.75 50.9229 148.739 50.942 148.723 50.9573C148.712 50.9727 148.697 50.988 148.677 51.0033C148.643 51.0263 148.601 51.0474 148.551 51.0665C148.52 51.0742 148.49 51.0799 148.459 51.0838C148.432 51.0914 148.404 51.0914 148.373 51.0838C148.312 51.0799 148.258 51.0569 148.212 51.0148C148.147 50.9612 148.093 50.9018 148.051 50.8367C148.032 50.8061 148.011 50.7716 147.988 50.7333C147.965 50.695 147.944 50.6548 147.925 50.6126L147.287 49.4003C147.256 49.4003 147.226 49.4022 147.195 49.406C147.164 49.406 147.134 49.408 147.103 49.4118C147.023 49.4195 146.946 49.4214 146.873 49.4175C146.804 49.4137 146.732 49.4137 146.655 49.4175H146.546V50.4575C146.546 50.4881 146.544 50.5169 146.54 50.5437C146.54 50.5705 146.54 50.5992 146.54 50.6299C146.54 50.649 146.538 50.6739 146.534 50.7045C146.534 50.7352 146.532 50.7639 146.529 50.7907C146.521 50.8329 146.504 50.8769 146.477 50.9229C146.45 50.965 146.414 51.0014 146.368 51.032C146.287 51.0818 146.19 51.0952 146.075 51.0723C146.025 51.0608 145.977 51.0416 145.931 51.0148C145.916 51.0033 145.902 50.9899 145.891 50.9746C145.879 50.9554 145.87 50.9363 145.862 50.9171C145.854 50.898 145.847 50.8788 145.839 50.8597C145.835 50.8367 145.83 50.8156 145.822 50.7965C145.81 50.7582 145.805 50.7218 145.805 50.6873V47.4238C145.805 47.4009 145.805 47.3779 145.805 47.3549C145.809 47.3281 145.812 47.3051 145.816 47.2859C145.82 47.2438 145.833 47.2017 145.856 47.1595C145.868 47.1136 145.887 47.081 145.914 47.0619C145.937 47.0389 145.971 47.0197 146.017 47.0044C146.067 46.9853 146.138 46.9776 146.23 46.9814C146.402 46.9853 146.573 46.9872 146.741 46.9872C146.91 46.9872 147.078 46.991 147.247 46.9987C147.358 47.0063 147.475 47.0197 147.597 47.0389C147.724 47.0542 147.841 47.0829 147.948 47.1251C148.017 47.1519 148.08 47.1787 148.137 47.2055C148.21 47.2476 148.268 47.2879 148.31 47.3262C148.444 47.4487 148.545 47.5962 148.614 47.7686C148.683 47.9409 148.718 48.1152 148.718 48.2914C148.718 48.4983 148.668 48.6879 148.568 48.8602C148.473 49.0326 148.317 49.1609 148.103 49.2452C148.095 49.2528 148.084 49.2586 148.068 49.2624C148.057 49.2624 148.047 49.2643 148.04 49.2682L148.568 50.3311L148.62 50.423C148.628 50.4383 148.637 50.4556 148.649 50.4747C148.66 50.4939 148.67 50.513 148.677 50.5322C148.689 50.5513 148.699 50.5724 148.706 50.5954C148.718 50.6184 148.729 50.6394 148.741 50.6586C148.752 50.7122 148.762 50.7563 148.769 50.7907ZM147.333 48.7453C147.402 48.7453 147.467 48.7338 147.528 48.7108C147.593 48.684 147.651 48.6496 147.701 48.6074C147.754 48.5653 147.798 48.5174 147.833 48.4638C147.867 48.4063 147.886 48.345 147.89 48.2799C147.906 48.0884 147.856 47.9467 147.741 47.8548C147.626 47.759 147.475 47.7073 147.287 47.6996C147.176 47.692 147.053 47.6881 146.919 47.6881C146.789 47.6881 146.665 47.6881 146.546 47.6881C146.55 47.8452 146.55 48.0061 146.546 48.1708C146.546 48.3316 146.546 48.5231 146.546 48.7453H147.333Z" fill="white"/>
|
||||
<path d="M144.415 47.3374C144.56 47.4714 144.667 47.6323 144.736 47.82C144.805 48.0039 144.832 48.1877 144.817 48.3716C144.801 48.5478 144.746 48.7106 144.65 48.86C144.554 49.0055 144.409 49.1166 144.213 49.1932C144.06 49.2583 143.909 49.3043 143.76 49.3311C143.61 49.3579 143.445 49.379 143.265 49.3943C143.185 49.402 143.116 49.4077 143.059 49.4115C143.005 49.4115 142.942 49.4134 142.869 49.4173C142.854 49.4173 142.827 49.4173 142.789 49.4173C142.754 49.4173 142.729 49.4192 142.714 49.423V50.6123C142.702 50.6851 142.687 50.7598 142.668 50.8364C142.653 50.913 142.609 50.9724 142.536 51.0145C142.494 51.0375 142.442 51.0509 142.381 51.0548C142.319 51.0586 142.264 51.0567 142.214 51.049C142.16 51.0414 142.114 51.0279 142.076 51.0088C142.042 50.9858 142.013 50.9475 141.99 50.8939C141.975 50.8594 141.959 50.8211 141.944 50.779C141.933 50.733 141.927 50.6775 141.927 50.6123V47.4351C141.927 47.4082 141.929 47.3833 141.933 47.3604C141.936 47.3374 141.94 47.3144 141.944 47.2914C141.952 47.2723 141.957 47.2512 141.961 47.2282C141.965 47.2052 141.971 47.1842 141.978 47.165C141.986 47.1459 141.994 47.1286 142.001 47.1133C142.013 47.098 142.026 47.0846 142.042 47.0731C142.061 47.0539 142.09 47.0367 142.128 47.0214C142.17 47.0061 142.231 46.9984 142.312 46.9984H142.323C142.442 46.9907 142.574 46.985 142.72 46.9812C142.865 46.9735 142.986 46.9754 143.082 46.9869C143.135 46.9946 143.185 47.0003 143.231 47.0041C143.277 47.0041 143.321 47.0061 143.363 47.0099C143.409 47.0137 143.455 47.0175 143.501 47.0214C143.547 47.0252 143.593 47.031 143.639 47.0386C143.677 47.0463 143.712 47.052 143.742 47.0559C143.777 47.0597 143.811 47.0654 143.846 47.0731C143.876 47.0807 143.909 47.0884 143.943 47.0961C143.982 47.1037 144.016 47.1171 144.047 47.1363C144.127 47.1593 144.194 47.188 144.248 47.2225C144.302 47.2569 144.357 47.2952 144.415 47.3374ZM144.07 48.2854C144.074 48.1935 144.055 48.113 144.012 48.0441C143.974 47.9751 143.919 47.9177 143.846 47.8717C143.773 47.8258 143.691 47.7894 143.599 47.7626C143.507 47.7357 143.415 47.7166 143.323 47.7051C143.3 47.7051 143.267 47.7051 143.225 47.7051C143.187 47.7013 143.145 47.6994 143.099 47.6994C143.053 47.6955 143.009 47.6936 142.967 47.6936C142.928 47.6898 142.898 47.6879 142.875 47.6879C142.856 47.684 142.833 47.6821 142.806 47.6821C142.779 47.6821 142.748 47.6821 142.714 47.6821C142.718 47.8009 142.72 47.9158 142.72 48.0268C142.72 48.1341 142.72 48.2509 142.72 48.3773C142.716 48.4463 142.714 48.5152 142.714 48.5842C142.714 48.6531 142.714 48.7201 142.714 48.7853L143.07 48.7795C143.162 48.7795 143.264 48.7738 143.375 48.7623C143.486 48.7508 143.591 48.7278 143.691 48.6933C143.79 48.6589 143.875 48.6091 143.943 48.5439C144.016 48.4788 144.058 48.3927 144.07 48.2854Z" fill="white"/>
|
||||
<path d="M140.938 50.6527C140.941 50.6757 140.943 50.6987 140.943 50.7217C140.947 50.7408 140.949 50.7638 140.949 50.7906C140.949 50.8366 140.936 50.8787 140.909 50.917C140.897 50.9362 140.882 50.9553 140.863 50.9745C140.844 50.9898 140.821 51.0032 140.794 51.0147C140.698 51.0683 140.597 51.0875 140.489 51.0722C140.436 51.0568 140.388 51.0319 140.346 50.9975C140.338 50.9898 140.332 50.986 140.329 50.986C140.325 50.9822 140.321 50.9764 140.317 50.9687C140.313 50.9649 140.309 50.9611 140.306 50.9573C140.302 50.9496 140.296 50.9438 140.288 50.94C140.269 50.9209 140.254 50.9036 140.242 50.8883C140.231 50.8692 140.219 50.85 140.208 50.8309C140.2 50.8117 140.191 50.7945 140.179 50.7791C140.172 50.76 140.162 50.7408 140.15 50.7217C140.143 50.7064 140.135 50.693 140.127 50.6815C140.12 50.6661 140.114 50.6508 140.11 50.6355C140.095 50.601 140.085 50.5704 140.081 50.5436L139.961 50.262C139.697 50.262 139.432 50.264 139.168 50.2678C138.907 50.2678 138.645 50.2659 138.381 50.262L138.26 50.5436C138.252 50.5589 138.247 50.5742 138.243 50.5895C138.243 50.6049 138.239 50.6202 138.231 50.6355C138.224 50.6508 138.216 50.6661 138.208 50.6815C138.205 50.693 138.199 50.7064 138.191 50.7217C138.18 50.7408 138.168 50.76 138.157 50.7791C138.149 50.7945 138.14 50.8117 138.128 50.8309C138.12 50.85 138.111 50.8692 138.099 50.8883C138.088 50.9036 138.072 50.9209 138.053 50.94C138.046 50.9438 138.04 50.9496 138.036 50.9573C138.032 50.9611 138.028 50.9649 138.025 50.9687C138.021 50.9764 138.017 50.9822 138.013 50.986C138.009 50.986 138.004 50.9898 137.996 50.9975C137.954 51.0319 137.906 51.0568 137.852 51.0722C137.745 51.0875 137.643 51.0683 137.548 51.0147C137.521 51.0032 137.498 50.9898 137.479 50.9745C137.46 50.9553 137.444 50.9362 137.433 50.917C137.406 50.8787 137.393 50.8366 137.393 50.7906C137.393 50.7638 137.393 50.7408 137.393 50.7217C137.396 50.6987 137.4 50.6757 137.404 50.6527C137.412 50.6183 137.421 50.5838 137.433 50.5493C137.444 50.5148 137.45 50.4976 137.45 50.4976L138.645 47.5559L138.68 47.464C138.687 47.441 138.697 47.4199 138.708 47.4008C138.72 47.3816 138.729 47.3586 138.737 47.3318C138.756 47.282 138.777 47.238 138.8 47.1997C138.812 47.1767 138.825 47.1556 138.84 47.1365C138.856 47.1173 138.871 47.0982 138.886 47.079C138.909 47.0484 138.942 47.0235 138.984 47.0043C139.038 46.9852 139.099 46.9756 139.168 46.9756C139.241 46.9756 139.304 46.9852 139.358 47.0043C139.4 47.0235 139.432 47.0484 139.455 47.079C139.482 47.1135 139.511 47.1537 139.541 47.1997C139.564 47.238 139.585 47.282 139.605 47.3318C139.612 47.3586 139.622 47.3816 139.633 47.4008C139.645 47.4199 139.654 47.441 139.662 47.464L139.697 47.5559L140.892 50.4976C140.892 50.4976 140.897 50.5148 140.909 50.5493C140.92 50.5838 140.93 50.6183 140.938 50.6527ZM139.576 49.2451C139.526 49.134 139.474 49.0191 139.421 48.9003C139.371 48.7816 139.317 48.6609 139.26 48.5384C139.245 48.5039 139.229 48.4694 139.214 48.435C139.199 48.3967 139.183 48.3603 139.168 48.3258C139.156 48.3603 139.143 48.3967 139.128 48.435C139.112 48.4694 139.097 48.5039 139.082 48.5384C139.024 48.6609 138.969 48.7816 138.915 48.9003C138.865 49.0191 138.816 49.134 138.766 49.2451L138.662 49.4979H139.679L139.576 49.2451Z" fill="white"/>
|
||||
</g>
|
||||
<g opacity="0.78">
|
||||
<path d="M190.669 57.3025H168.262C166.358 57.3025 164.814 55.7591 164.814 53.8552V50.9824H194.117V53.8552C194.117 55.7591 192.573 57.3025 190.669 57.3025Z" fill="#D3DCFB"/>
|
||||
<path d="M168.262 56.1534C166.995 56.1534 165.964 55.1224 165.964 53.8552V50.9824H192.968V53.8552C192.968 55.1224 191.937 56.1534 190.67 56.1534H168.262Z" fill="#6A0DB4"/>
|
||||
<path d="M190.669 30.2988H168.262C166.361 30.2988 164.814 31.8453 164.814 33.7462V51.5574C164.814 53.4582 166.361 55.0047 168.262 55.0047H190.669C192.57 55.0047 194.117 53.4582 194.117 51.5574C194.117 51.1568 194.117 34.2625 194.117 33.7462C194.117 31.8453 192.57 30.2988 190.669 30.2988Z" fill="#EBF5FC"/>
|
||||
<path d="M168.262 53.8547C166.993 53.8547 165.964 52.8257 165.964 51.5564V46.3854C165.964 45.7508 166.478 45.2363 167.113 45.2363H191.819C192.454 45.2363 192.968 45.7508 192.968 46.3854V51.5564C192.968 52.8257 191.939 53.8547 190.67 53.8547H168.262Z" fill="#A12BFF"/>
|
||||
<path d="M171.134 33.7455C171.769 33.7455 172.284 33.231 172.284 32.5964C172.284 31.9617 171.769 31.4473 171.134 31.4473C170.5 31.4473 169.985 31.9617 169.985 32.5964C169.985 33.231 170.5 33.7455 171.134 33.7455Z" fill="#AAB9E5"/>
|
||||
<path d="M171.134 33.171C170.658 33.171 170.272 32.7851 170.272 32.3092V28.8618C170.272 28.3859 170.658 28 171.134 28C171.61 28 171.996 28.3859 171.996 28.8618V32.3092C171.996 32.7851 171.61 33.171 171.134 33.171Z" fill="#D3DCFB"/>
|
||||
<path d="M187.797 33.7455C188.431 33.7455 188.946 33.231 188.946 32.5964C188.946 31.9617 188.431 31.4473 187.797 31.4473C187.162 31.4473 186.647 31.9617 186.647 32.5964C186.647 33.231 187.162 33.7455 187.797 33.7455Z" fill="#AAB9E5"/>
|
||||
<path d="M187.796 33.171C187.32 33.171 186.935 32.7851 186.935 32.3092V28.8618C186.935 28.3859 187.32 28 187.796 28C188.272 28 188.658 28.3859 188.658 28.8618V32.3092C188.658 32.7851 188.272 33.171 187.796 33.171Z" fill="#D3DCFB"/>
|
||||
<path d="M179.466 33.7455C180.1 33.7455 180.615 33.231 180.615 32.5964C180.615 31.9617 180.1 31.4473 179.466 31.4473C178.831 31.4473 178.316 31.9617 178.316 32.5964C178.316 33.231 178.831 33.7455 179.466 33.7455Z" fill="#AAB9E5"/>
|
||||
<path d="M179.465 33.171C178.989 33.171 178.604 32.7851 178.604 32.3092V28.8618C178.604 28.3859 178.989 28 179.465 28C179.941 28 180.327 28.3859 180.327 28.8618V32.3092C180.327 32.7851 179.941 33.171 179.465 33.171Z" fill="#D3DCFB"/>
|
||||
<path d="M181.764 42.9389C183.031 42.9389 184.062 41.908 184.062 40.6407V37.7679C184.062 36.5007 183.031 35.4697 181.764 35.4697C180.497 35.4697 179.466 36.5007 179.466 37.7679V40.6407C179.466 41.908 180.497 42.9389 181.764 42.9389ZM180.615 37.7679C180.615 37.1343 181.13 36.6188 181.764 36.6188C182.398 36.6188 182.913 37.1343 182.913 37.7679V40.6407C182.913 41.2743 182.398 41.7898 181.764 41.7898C181.13 41.7898 180.615 41.2743 180.615 40.6407V37.7679Z" fill="#252A3F"/>
|
||||
<path d="M175.788 38.2273L177.167 37.1931V42.3641C177.167 42.6814 177.425 42.9387 177.742 42.9387C178.059 42.9387 178.316 42.6814 178.316 42.3641V36.044C178.316 35.5717 177.776 35.3006 177.397 35.5844L175.099 37.308C174.845 37.4984 174.794 37.8586 174.984 38.1124C175.174 38.3662 175.535 38.4177 175.788 38.2273Z" fill="#252A3F"/>
|
||||
<path d="M185.477 47.2243C185.481 47.2435 185.481 47.2626 185.477 47.2818C185.477 47.3009 185.471 47.322 185.459 47.345C185.444 47.3986 185.427 47.4465 185.408 47.4886C185.385 47.5423 185.356 47.5882 185.322 47.6265C185.306 47.6495 185.291 47.6725 185.276 47.6955C185.264 47.7146 185.253 47.7338 185.241 47.7529L185.166 47.8506L184.431 48.9135L184.299 49.0801V50.6085C184.291 50.6276 184.287 50.6468 184.287 50.6659C184.287 50.6851 184.285 50.7061 184.282 50.7291C184.274 50.7483 184.268 50.7674 184.264 50.7866C184.261 50.8019 184.255 50.8191 184.247 50.8383C184.239 50.8536 184.236 50.8651 184.236 50.8728C184.232 50.8804 184.228 50.8862 184.224 50.89C184.224 50.8938 184.222 50.8996 184.218 50.9072C184.195 50.9455 184.163 50.98 184.121 51.0107C184.036 51.0528 183.941 51.0624 183.833 51.0394C183.772 51.0317 183.726 51.0126 183.696 50.9819C183.676 50.9704 183.661 50.957 183.65 50.9417C183.638 50.9264 183.627 50.9091 183.615 50.89C183.607 50.867 183.6 50.8459 183.592 50.8268C183.584 50.8076 183.579 50.7885 183.575 50.7693C183.567 50.7502 183.563 50.733 183.563 50.7176C183.563 50.6985 183.563 50.6812 183.563 50.6659V49.0974L183.437 48.902L182.69 47.8449L182.627 47.7414C182.604 47.707 182.575 47.6667 182.541 47.6208C182.51 47.5786 182.483 47.5327 182.46 47.4829C182.445 47.4599 182.432 47.4369 182.42 47.4139C182.412 47.3871 182.405 47.3603 182.397 47.3335C182.386 47.2952 182.384 47.2569 182.391 47.2186C182.403 47.1688 182.426 47.1267 182.46 47.0922C182.499 47.0577 182.539 47.0309 182.581 47.0117C182.635 46.9734 182.696 46.9581 182.765 46.9658C182.807 46.9658 182.843 46.9734 182.874 46.9888C182.905 47.0041 182.935 47.0213 182.966 47.0405C183 47.0673 183.033 47.096 183.064 47.1267C183.098 47.1573 183.129 47.1899 183.155 47.2243C183.186 47.2626 183.215 47.299 183.242 47.3335C183.268 47.3641 183.295 47.4005 183.322 47.4427L183.339 47.4656C183.431 47.5882 183.517 47.707 183.598 47.8219C183.678 47.933 183.763 48.0536 183.851 48.1838C183.858 48.1915 183.87 48.2068 183.885 48.2298C183.9 48.2528 183.918 48.2796 183.937 48.3102C183.952 48.2834 183.966 48.2604 183.977 48.2413C183.992 48.2183 184.004 48.203 184.012 48.1953C184.1 48.0651 184.184 47.9425 184.264 47.8276C184.345 47.7127 184.431 47.594 184.523 47.4714L184.534 47.4484C184.565 47.4139 184.592 47.3795 184.615 47.345C184.642 47.3067 184.67 47.2684 184.701 47.2301C184.751 47.1611 184.818 47.1018 184.902 47.052C184.963 47.0098 185.027 46.983 185.092 46.9715C185.165 46.9639 185.228 46.9792 185.281 47.0175C185.304 47.0328 185.325 47.0462 185.345 47.0577C185.368 47.0692 185.387 47.0826 185.402 47.0979C185.433 47.1324 185.458 47.1745 185.477 47.2243Z" fill="white"/>
|
||||
<path d="M181.969 50.6537C181.973 50.6767 181.975 50.6997 181.975 50.7227C181.978 50.7418 181.98 50.7648 181.98 50.7916C181.98 50.8376 181.967 50.8797 181.94 50.918C181.929 50.9372 181.913 50.9563 181.894 50.9755C181.875 50.9908 181.852 51.0042 181.825 51.0157C181.729 51.0693 181.628 51.0885 181.521 51.0731C181.467 51.0578 181.419 51.0329 181.377 50.9985C181.369 50.9908 181.364 50.987 181.36 50.987C181.356 50.9831 181.352 50.9774 181.348 50.9697C181.344 50.9659 181.341 50.9621 181.337 50.9582C181.333 50.9506 181.327 50.9448 181.32 50.941C181.3 50.9218 181.285 50.9046 181.274 50.8893C181.262 50.8701 181.251 50.851 181.239 50.8318C181.231 50.8127 181.222 50.7954 181.21 50.7801C181.203 50.761 181.193 50.7418 181.182 50.7227C181.174 50.7073 181.166 50.6939 181.159 50.6824C181.151 50.6671 181.145 50.6518 181.141 50.6365C181.126 50.602 181.117 50.5714 181.113 50.5446L180.992 50.263C180.728 50.263 180.464 50.2649 180.199 50.2688C179.939 50.2688 179.676 50.2668 179.412 50.263L179.291 50.5446C179.284 50.5599 179.278 50.5752 179.274 50.5905C179.274 50.6058 179.27 50.6212 179.263 50.6365C179.255 50.6518 179.247 50.6671 179.24 50.6824C179.236 50.6939 179.23 50.7073 179.222 50.7227C179.211 50.7418 179.199 50.761 179.188 50.7801C179.18 50.7954 179.171 50.8127 179.159 50.8318C179.152 50.851 179.142 50.8701 179.131 50.8893C179.119 50.9046 179.104 50.9218 179.085 50.941C179.077 50.9448 179.071 50.9506 179.067 50.9582C179.063 50.9621 179.06 50.9659 179.056 50.9697C179.052 50.9774 179.048 50.9831 179.044 50.987C179.041 50.987 179.035 50.9908 179.027 50.9985C178.985 51.0329 178.937 51.0578 178.883 51.0731C178.776 51.0885 178.675 51.0693 178.579 51.0157C178.552 51.0042 178.529 50.9908 178.51 50.9755C178.491 50.9563 178.476 50.9372 178.464 50.918C178.437 50.8797 178.424 50.8376 178.424 50.7916C178.424 50.7648 178.424 50.7418 178.424 50.7227C178.428 50.6997 178.431 50.6767 178.435 50.6537C178.443 50.6192 178.453 50.5848 178.464 50.5503C178.476 50.5158 178.481 50.4986 178.481 50.4986L179.676 47.5569L179.711 47.4649C179.718 47.442 179.728 47.4209 179.74 47.4017C179.751 47.3826 179.761 47.3596 179.768 47.3328C179.787 47.283 179.809 47.2389 179.831 47.2006C179.843 47.1777 179.856 47.1566 179.872 47.1374C179.887 47.1183 179.902 47.0991 179.918 47.08C179.941 47.0493 179.973 47.0244 180.015 47.0053C180.069 46.9861 180.13 46.9766 180.199 46.9766C180.272 46.9766 180.335 46.9861 180.389 47.0053C180.431 47.0244 180.464 47.0493 180.486 47.08C180.513 47.1145 180.542 47.1547 180.573 47.2006C180.596 47.2389 180.617 47.283 180.636 47.3328C180.644 47.3596 180.653 47.3826 180.665 47.4017C180.676 47.4209 180.686 47.442 180.693 47.4649L180.728 47.5569L181.923 50.4986C181.923 50.4986 181.929 50.5158 181.94 50.5503C181.952 50.5848 181.961 50.6192 181.969 50.6537ZM180.607 49.2461C180.557 49.135 180.506 49.0201 180.452 48.9013C180.402 48.7826 180.349 48.6619 180.291 48.5394C180.276 48.5049 180.26 48.4704 180.245 48.4359C180.23 48.3976 180.215 48.3612 180.199 48.3268C180.188 48.3612 180.174 48.3976 180.159 48.4359C180.144 48.4704 180.128 48.5049 180.113 48.5394C180.056 48.6619 180 48.7826 179.946 48.9013C179.897 49.0201 179.847 49.135 179.797 49.2461L179.694 49.4989H180.711L180.607 49.2461Z" fill="white"/>
|
||||
<path d="M177.438 50.6311C177.435 50.6771 177.429 50.725 177.421 50.7748C177.414 50.8246 177.4 50.8705 177.381 50.9127C177.362 50.9586 177.337 50.9931 177.306 51.0161C177.264 51.0544 177.214 51.0755 177.157 51.0793C177.103 51.0984 177.052 51.1042 177.002 51.0965C176.952 51.0889 176.906 51.0755 176.864 51.0563C176.81 51.0218 176.77 50.9816 176.743 50.9357C176.72 50.8859 176.703 50.8342 176.692 50.7805C176.68 50.7269 176.674 50.6714 176.674 50.6139C176.674 50.5565 176.674 50.5028 176.674 50.453V50.0049L176.669 49.1258C176.669 49.0645 176.669 49.0166 176.669 48.9822C176.669 48.9477 176.669 48.9171 176.669 48.8902C176.669 48.8596 176.667 48.827 176.663 48.7926C176.663 48.7543 176.663 48.7006 176.663 48.6317C176.663 48.6202 176.663 48.601 176.663 48.5742C176.667 48.5436 176.665 48.4651 176.657 48.3387C176.508 48.5876 176.383 48.7887 176.284 48.9419C176.188 49.0913 176.106 49.2082 176.037 49.2924C175.971 49.3729 175.914 49.4284 175.864 49.459C175.814 49.4859 175.763 49.5012 175.709 49.505C175.678 49.5088 175.648 49.5031 175.617 49.4878C175.587 49.4725 175.556 49.4533 175.525 49.4303C175.498 49.4073 175.472 49.3844 175.445 49.3614C175.422 49.3346 175.403 49.3097 175.387 49.2867C175.295 49.1718 175.192 49.0339 175.077 48.873C174.962 48.7121 174.843 48.5168 174.721 48.287C174.721 48.2908 174.719 48.354 174.715 48.4766C174.715 48.5991 174.715 48.7523 174.715 48.9362C174.715 49.1162 174.713 49.3116 174.709 49.5223C174.709 49.7291 174.707 49.9225 174.704 50.1026C174.704 50.2826 174.702 50.4339 174.698 50.5565C174.694 50.6752 174.69 50.7346 174.686 50.7346C174.686 50.7997 174.671 50.861 174.64 50.9184C174.61 50.972 174.568 51.0161 174.514 51.0506C174.464 51.085 174.405 51.1042 174.336 51.108C174.267 51.1119 174.192 51.0927 174.112 51.0506C174.062 51.0199 174.024 50.9759 173.997 50.9184C173.974 50.861 173.959 50.8073 173.951 50.7575C173.947 50.7039 173.943 50.6522 173.939 50.6024C173.939 50.5526 173.939 50.5009 173.939 50.4473L173.945 49.9991L173.951 49.1143V48.3444C173.951 48.0112 173.962 47.6837 173.985 47.3619C173.985 47.3198 173.989 47.2815 173.997 47.247C174.008 47.2087 174.022 47.1723 174.037 47.1378C174.068 47.0766 174.108 47.0306 174.158 47C174.215 46.9655 174.277 46.9482 174.342 46.9482C174.368 46.9482 174.393 46.9502 174.416 46.954C174.443 46.954 174.468 46.9559 174.491 46.9597C174.568 46.9751 174.633 47.021 174.686 47.0976C174.744 47.1704 174.797 47.2336 174.847 47.2872C174.878 47.3217 174.91 47.3638 174.945 47.4136C174.979 47.4634 175.014 47.5151 175.048 47.5688C175.083 47.6224 175.115 47.6741 175.146 47.7239C175.177 47.7737 175.203 47.8177 175.226 47.856C175.326 48.0169 175.414 48.1644 175.491 48.2984C175.571 48.4325 175.646 48.5474 175.715 48.6432C175.726 48.6317 175.74 48.6164 175.755 48.5972C175.77 48.5742 175.786 48.5513 175.801 48.5283C175.82 48.5015 175.835 48.4766 175.847 48.4536C175.862 48.4306 175.874 48.4114 175.881 48.3961C175.92 48.3348 175.958 48.2755 175.996 48.218C176.035 48.1567 176.075 48.0935 176.117 48.0284C176.163 47.9595 176.209 47.8848 176.255 47.8043C176.305 47.7239 176.362 47.632 176.427 47.5285C176.454 47.4826 176.489 47.427 176.531 47.3619C176.573 47.2968 176.621 47.2336 176.674 47.1723C176.728 47.111 176.784 47.0593 176.841 47.0172C176.902 46.9712 176.964 46.9482 177.025 46.9482C177.055 46.9482 177.082 46.9502 177.105 46.954C177.128 46.954 177.151 46.9559 177.174 46.9597C177.22 46.9636 177.264 46.9846 177.306 47.0229C177.337 47.0536 177.36 47.0861 177.375 47.1206C177.391 47.1704 177.4 47.2125 177.404 47.247C177.408 47.2738 177.41 47.2987 177.41 47.3217C177.414 47.3447 177.416 47.3677 177.416 47.3907C177.416 47.6052 177.417 47.8177 177.421 48.0284C177.425 48.2391 177.427 48.4517 177.427 48.6662C177.427 48.9266 177.427 49.1948 177.427 49.4705C177.431 49.7463 177.433 50.0145 177.433 50.2749C177.433 50.3285 177.435 50.386 177.438 50.4473C177.442 50.5086 177.442 50.5699 177.438 50.6311Z" fill="white"/>
|
||||
</g>
|
||||
<g opacity="0.63">
|
||||
<path d="M227.296 57.3025H204.889C202.985 57.3025 201.441 55.7591 201.441 53.8552V50.9824H230.744V53.8552C230.744 55.7591 229.2 57.3025 227.296 57.3025Z" fill="#D3DCFB"/>
|
||||
<path d="M204.889 56.1534C203.622 56.1534 202.591 55.1224 202.591 53.8552V50.9824H229.595V53.8552C229.595 55.1224 228.564 56.1534 227.297 56.1534H204.889Z" fill="#6A0DB4"/>
|
||||
<path d="M227.296 30.2988H204.889C202.988 30.2988 201.441 31.8453 201.441 33.7462V51.5574C201.441 53.4582 202.988 55.0047 204.889 55.0047H227.296C229.197 55.0047 230.744 53.4582 230.744 51.5574C230.744 51.1568 230.744 34.2625 230.744 33.7462C230.744 31.8453 229.197 30.2988 227.296 30.2988Z" fill="#EBF5FC"/>
|
||||
<path d="M204.889 53.8547C203.62 53.8547 202.591 52.8257 202.591 51.5564V46.3854C202.591 45.7508 203.105 45.2363 203.74 45.2363H228.446C229.08 45.2363 229.595 45.7508 229.595 46.3854V51.5564C229.595 52.8257 228.566 53.8547 227.297 53.8547H204.889Z" fill="#A12BFF"/>
|
||||
<path d="M207.761 33.7455C208.396 33.7455 208.911 33.231 208.911 32.5964C208.911 31.9617 208.396 31.4473 207.761 31.4473C207.127 31.4473 206.612 31.9617 206.612 32.5964C206.612 33.231 207.127 33.7455 207.761 33.7455Z" fill="#AAB9E5"/>
|
||||
<path d="M207.761 33.171C207.285 33.171 206.899 32.7851 206.899 32.3092V28.8618C206.899 28.3859 207.285 28 207.761 28C208.237 28 208.623 28.3859 208.623 28.8618V32.3092C208.623 32.7851 208.237 33.171 207.761 33.171Z" fill="#D3DCFB"/>
|
||||
<path d="M224.424 33.7455C225.058 33.7455 225.573 33.231 225.573 32.5964C225.573 31.9617 225.058 31.4473 224.424 31.4473C223.789 31.4473 223.274 31.9617 223.274 32.5964C223.274 33.231 223.789 33.7455 224.424 33.7455Z" fill="#AAB9E5"/>
|
||||
<path d="M224.423 33.171C223.947 33.171 223.562 32.7851 223.562 32.3092V28.8618C223.562 28.3859 223.947 28 224.423 28C224.899 28 225.285 28.3859 225.285 28.8618V32.3092C225.285 32.7851 224.899 33.171 224.423 33.171Z" fill="#D3DCFB"/>
|
||||
<path d="M216.092 33.7455C216.727 33.7455 217.242 33.231 217.242 32.5964C217.242 31.9617 216.727 31.4473 216.092 31.4473C215.458 31.4473 214.943 31.9617 214.943 32.5964C214.943 33.231 215.458 33.7455 216.092 33.7455Z" fill="#AAB9E5"/>
|
||||
<path d="M216.092 33.171C215.616 33.171 215.23 32.7851 215.23 32.3092V28.8618C215.23 28.3859 215.616 28 216.092 28C216.568 28 216.954 28.3859 216.954 28.8618V32.3092C216.954 32.7851 216.568 33.171 216.092 33.171Z" fill="#D3DCFB"/>
|
||||
<path d="M218.391 42.9389C219.658 42.9389 220.689 41.908 220.689 40.6407V37.7679C220.689 36.5007 219.658 35.4697 218.391 35.4697C217.124 35.4697 216.093 36.5007 216.093 37.7679V40.6407C216.093 41.908 217.124 42.9389 218.391 42.9389ZM217.242 37.7679C217.242 37.1343 217.757 36.6188 218.391 36.6188C219.025 36.6188 219.54 37.1343 219.54 37.7679V40.6407C219.54 41.2743 219.025 41.7898 218.391 41.7898C217.757 41.7898 217.242 41.2743 217.242 40.6407V37.7679Z" fill="#252A3F"/>
|
||||
<path d="M212.415 38.2273L213.794 37.1931V42.3641C213.794 42.6814 214.052 42.9387 214.369 42.9387C214.686 42.9387 214.943 42.6814 214.943 42.3641V36.044C214.943 35.5717 214.403 35.3006 214.024 35.5844L211.726 37.308C211.472 37.4984 211.421 37.8586 211.611 38.1124C211.801 38.3662 212.161 38.4177 212.415 38.2273Z" fill="#252A3F"/>
|
||||
<path d="M222.094 50.6075C222.09 50.6727 222.081 50.7416 222.065 50.8144C222.054 50.8872 222.018 50.9465 221.956 50.9925C221.91 51.0308 221.859 51.0538 221.801 51.0614C221.744 51.0691 221.686 51.0653 221.629 51.0499C221.575 51.0385 221.523 51.0193 221.474 50.9925C221.424 50.9618 221.384 50.9255 221.353 50.8833C221.223 50.7224 221.102 50.5577 220.991 50.3892C220.884 50.2168 220.775 50.0445 220.664 49.8721L220.181 49.1424C220.116 49.039 220.047 48.9241 219.974 48.7977C219.901 48.6675 219.827 48.5468 219.75 48.4357L219.733 50.6305V50.6822C219.733 50.7435 219.721 50.8048 219.698 50.8661C219.679 50.9235 219.645 50.9733 219.595 51.0155C219.557 51.0461 219.507 51.0672 219.445 51.0787C219.35 51.0978 219.269 51.0921 219.204 51.0614C219.143 51.0308 219.093 50.9887 219.055 50.935C219.02 50.8814 218.995 50.8201 218.98 50.7512C218.969 50.6784 218.967 50.6075 218.974 50.5386V50.4409L218.986 49.9928L218.992 49.1597C218.995 49.0371 218.997 48.9126 218.997 48.7862C218.997 48.656 218.997 48.5238 218.997 48.3898C218.993 48.225 218.993 48.0508 218.997 47.8669C219.005 47.683 219.013 47.5107 219.02 47.3498C219.028 47.2617 219.049 47.187 219.083 47.1257C219.099 47.0721 219.139 47.0261 219.204 46.9878C219.246 46.961 219.3 46.9438 219.365 46.9361C219.434 46.9285 219.493 46.9304 219.543 46.9419C219.562 46.9495 219.581 46.9591 219.601 46.9706C219.62 46.9783 219.639 46.9878 219.658 46.9993C219.677 47.0146 219.694 47.03 219.71 47.0453C219.729 47.0606 219.746 47.0778 219.761 47.097C219.781 47.1162 219.798 47.1372 219.813 47.1602C219.828 47.1794 219.844 47.1985 219.859 47.2177C219.871 47.2406 219.882 47.2617 219.894 47.2809C219.905 47.3 219.919 47.3192 219.934 47.3383L219.997 47.4302L221.324 49.5216V49.1424C221.324 49.0198 221.322 48.8954 221.319 48.769C221.319 48.6387 221.317 48.5047 221.313 48.3668C221.313 48.2059 221.313 48.0335 221.313 47.8497C221.317 47.6658 221.322 47.4934 221.33 47.3326C221.33 47.2675 221.349 47.1928 221.387 47.1085C221.407 47.0587 221.439 47.0185 221.485 46.9878C221.531 46.9572 221.583 46.9361 221.64 46.9246C221.698 46.9131 221.755 46.9131 221.813 46.9246C221.87 46.9361 221.92 46.9591 221.962 46.9936C221.974 47.0051 221.985 47.0185 221.996 47.0338C222.008 47.0491 222.018 47.0664 222.025 47.0855C222.044 47.1353 222.056 47.1794 222.06 47.2177C222.071 47.2713 222.077 47.3192 222.077 47.3613C222.077 47.8401 222.077 48.3285 222.077 48.8264C222.081 49.3244 222.085 49.8127 222.088 50.2915C222.088 50.3452 222.09 50.3988 222.094 50.4524C222.098 50.5022 222.098 50.5539 222.094 50.6075Z" fill="white"/>
|
||||
<path d="M217.818 47.2927C217.841 47.4766 217.854 47.6911 217.858 47.9362C217.862 48.1776 217.858 48.4227 217.846 48.6717C217.839 48.9168 217.822 49.1505 217.795 49.3726C217.768 49.591 217.735 49.7672 217.697 49.9012C217.67 49.9817 217.638 50.0659 217.599 50.154C217.565 50.2383 217.527 50.3149 217.484 50.3839C217.423 50.4873 217.349 50.5792 217.26 50.6596C217.172 50.7363 217.075 50.8033 216.967 50.8607C216.864 50.9144 216.753 50.9565 216.634 50.9871C216.519 51.0178 216.404 51.035 216.289 51.0388C216.086 51.0465 215.893 51.0178 215.709 50.9527C215.529 50.8837 215.362 50.7765 215.209 50.6309C215.094 50.5198 215.002 50.4011 214.933 50.2747C214.865 50.1483 214.811 50.0161 214.773 49.8782C214.734 49.7365 214.709 49.591 214.698 49.4416C214.69 49.2922 214.686 49.139 214.686 48.9819C214.686 48.9092 214.684 48.8192 214.681 48.7119C214.681 48.6008 214.681 48.4878 214.681 48.3729C214.681 48.2542 214.681 48.1393 214.681 48.0282C214.681 47.9171 214.683 47.8233 214.686 47.7466C214.686 47.6969 214.686 47.6432 214.686 47.5858C214.686 47.5245 214.688 47.4651 214.692 47.4077C214.7 47.3464 214.711 47.2889 214.727 47.2353C214.742 47.1778 214.765 47.1261 214.796 47.0802C214.83 47.0304 214.878 46.994 214.939 46.971C215 46.948 215.064 46.9365 215.129 46.9365C215.198 46.9365 215.263 46.9499 215.324 46.9767C215.385 47.0036 215.435 47.0419 215.474 47.0917C215.493 47.1223 215.506 47.1529 215.514 47.1836C215.521 47.2142 215.527 47.2487 215.531 47.287C215.539 47.4134 215.542 47.557 215.542 47.7179C215.546 47.8788 215.546 48.0358 215.542 48.1891C215.542 48.3384 215.541 48.4763 215.537 48.6027C215.533 48.7291 215.531 48.823 215.531 48.8843C215.531 49.1141 215.542 49.3228 215.565 49.5105C215.588 49.6944 215.642 49.8476 215.726 49.9702C215.803 50.0813 215.893 50.1521 215.996 50.1828C216.1 50.2134 216.203 50.223 216.307 50.2115C216.402 50.2 216.498 50.1655 216.594 50.1081C216.694 50.0468 216.772 49.9587 216.83 49.8438C216.852 49.8016 216.872 49.7538 216.887 49.7001C216.902 49.6465 216.914 49.5967 216.921 49.5508C216.937 49.4052 216.95 49.2367 216.962 49.0451C216.973 48.8498 216.983 48.6506 216.99 48.4476C216.998 48.2446 217.002 48.0454 217.002 47.8501C217.002 47.6547 217 47.4785 216.996 47.3215C217.004 47.2525 217.025 47.1893 217.059 47.1319C217.09 47.0821 217.134 47.038 217.191 46.9997C217.249 46.9614 217.327 46.9423 217.427 46.9423C217.507 46.9461 217.573 46.9672 217.622 47.0055C217.672 47.0399 217.712 47.0782 217.743 47.1204C217.778 47.1702 217.802 47.2276 217.818 47.2927Z" fill="white"/>
|
||||
<path d="M213.675 47.1199C213.714 47.1697 213.733 47.2194 213.733 47.2692C213.737 47.2922 213.737 47.321 213.733 47.3554C213.733 47.3899 213.731 47.4167 213.727 47.4359C213.715 47.4742 213.689 47.5125 213.647 47.5508C213.635 47.5623 213.622 47.5738 213.606 47.5852C213.591 47.5929 213.572 47.6006 213.549 47.6082C213.526 47.6159 213.503 47.6216 213.48 47.6255C213.457 47.6255 213.432 47.6274 213.405 47.6312C213.378 47.635 213.353 47.6389 213.331 47.6427C213.308 47.6427 213.283 47.6427 213.256 47.6427H212.928V47.7404C212.924 48.0851 212.93 48.4298 212.946 48.7746C212.965 49.1193 212.963 49.464 212.94 49.8088C212.928 49.9237 212.911 50.0424 212.888 50.165C212.865 50.2837 212.827 50.3967 212.773 50.504C212.723 50.6074 212.656 50.7032 212.572 50.7913C212.488 50.8794 212.381 50.9483 212.25 50.9981C212.128 51.0441 211.994 51.0766 211.848 51.0958C211.703 51.1149 211.555 51.1169 211.406 51.1015C211.26 51.0862 211.12 51.0536 210.986 51.0039C210.852 50.9541 210.739 50.8851 210.647 50.797C210.598 50.7511 210.552 50.6955 210.509 50.6304C210.467 50.5614 210.439 50.4906 210.423 50.4178C210.408 50.3412 210.412 50.2684 210.435 50.1995C210.458 50.1267 210.511 50.0673 210.596 50.0214C210.668 49.9792 210.734 49.9697 210.791 49.9926C210.852 50.0156 210.91 50.052 210.963 50.1018C211.021 50.1516 211.078 50.2033 211.136 50.2569C211.197 50.3106 211.264 50.345 211.337 50.3604C211.494 50.3987 211.622 50.4006 211.722 50.3661C211.821 50.3278 211.9 50.2684 211.957 50.188C212.015 50.1075 212.055 50.0099 212.078 49.895C212.105 49.7801 212.12 49.6632 212.124 49.5445C212.132 49.4257 212.134 49.3108 212.13 49.1998C212.126 49.0887 212.126 48.9948 212.13 48.9182C212.134 48.7152 212.134 48.516 212.13 48.3207C212.126 48.1253 212.124 47.9262 212.124 47.7231V47.7002C212.128 47.6925 212.13 47.681 212.13 47.6657H212.112C212.089 47.6619 212.042 47.6599 211.969 47.6599C211.896 47.6561 211.818 47.6542 211.733 47.6542C211.649 47.6542 211.569 47.6542 211.492 47.6542C211.419 47.6504 211.371 47.6485 211.348 47.6485H211.268V47.6427C211.237 47.6389 211.207 47.6331 211.176 47.6255C211.145 47.6178 211.115 47.6101 211.084 47.6025C211.011 47.5795 210.956 47.5431 210.917 47.4933C210.898 47.4742 210.883 47.4435 210.871 47.4014C210.864 47.3593 210.86 47.3229 210.86 47.2922C210.86 47.2731 210.86 47.252 210.86 47.229C210.86 47.206 210.864 47.185 210.871 47.1658C210.879 47.1237 210.906 47.0854 210.952 47.0509C210.982 47.0279 211.019 47.0107 211.061 46.9992C211.088 46.9915 211.115 46.9858 211.141 46.982C211.168 46.9781 211.197 46.9743 211.228 46.9705C211.254 46.9666 211.281 46.9647 211.308 46.9647C211.335 46.9647 211.364 46.9647 211.394 46.9647H211.946C211.969 46.9647 211.996 46.9647 212.026 46.9647C212.057 46.9647 212.091 46.9628 212.13 46.959C212.279 46.959 212.427 46.959 212.572 46.959C212.718 46.959 212.859 46.9609 212.997 46.9647H213.032C213.074 46.9647 213.114 46.9666 213.152 46.9705C213.195 46.9705 213.237 46.9705 213.279 46.9705C213.367 46.9743 213.449 46.9915 213.526 47.0222C213.587 47.0375 213.637 47.0701 213.675 47.1199Z" fill="white"/>
|
||||
</g>
|
||||
<line x1="16" y1="70.5" x2="300" y2="70.5" stroke="url(#paint0_linear_1671_7742)" stroke-dasharray="2 2"/>
|
||||
<circle cx="17.5" cy="70.5" r="2.5" fill="#6ED904"/>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_1671_7742" x1="16" y1="71" x2="639.629" y2="71" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#31FF2D"/>
|
||||
<stop offset="0.625717" stop-color="#E11690" stop-opacity="0.61"/>
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_1671_7742">
|
||||
<rect width="292" height="102.768" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 92 KiB |
@@ -0,0 +1,21 @@
|
||||
<svg width="292" height="103" viewBox="0 0 292 103" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="292" height="102.768" fill="#1D1D26"/>
|
||||
<path d="M187.202 80.6667H139.281C135.209 80.6667 131.908 77.3659 131.908 73.2942V67.1504H194.575V73.2942C194.575 77.3659 191.274 80.6667 187.202 80.6667Z" fill="#D3DCFB"/>
|
||||
<path d="M139.279 78.2092C136.569 78.2092 134.364 76.0043 134.364 73.2942V67.1504H192.116V73.2942C192.116 76.0043 189.911 78.2092 187.201 78.2092H139.279Z" fill="#6A0DB4"/>
|
||||
<path d="M187.202 22.915H139.281C135.216 22.915 131.908 26.2224 131.908 30.2876V68.379C131.908 72.4442 135.216 75.7515 139.281 75.7515H187.202C191.267 75.7515 194.575 72.4442 194.575 68.379C194.575 67.5223 194.575 31.3917 194.575 30.2876C194.575 26.2224 191.267 22.915 187.202 22.915Z" fill="#EBF5FC"/>
|
||||
<path d="M139.279 73.2946C136.565 73.2946 134.364 71.094 134.364 68.3796V57.3208C134.364 55.9635 135.464 54.8633 136.822 54.8633H189.658C191.016 54.8633 192.116 55.9635 192.116 57.3208V68.3796C192.116 71.094 189.915 73.2946 187.201 73.2946H139.279Z" fill="#A12BFF"/>
|
||||
<path d="M145.424 30.2881C146.782 30.2881 147.882 29.1878 147.882 27.8306C147.882 26.4733 146.782 25.373 145.424 25.373C144.067 25.373 142.967 26.4733 142.967 27.8306C142.967 29.1878 144.067 30.2881 145.424 30.2881Z" fill="#AAB9E5"/>
|
||||
<path d="M145.425 29.0588C144.407 29.0588 143.582 28.2336 143.582 27.2157V19.8431C143.582 18.8252 144.407 18 145.425 18C146.443 18 147.268 18.8252 147.268 19.8431V27.2157C147.268 28.2336 146.443 29.0588 145.425 29.0588Z" fill="#D3DCFB"/>
|
||||
<path d="M181.057 30.2881C182.414 30.2881 183.515 29.1878 183.515 27.8306C183.515 26.4733 182.414 25.373 181.057 25.373C179.7 25.373 178.6 26.4733 178.6 27.8306C178.6 29.1878 179.7 30.2881 181.057 30.2881Z" fill="#AAB9E5"/>
|
||||
<path d="M181.059 29.0588C180.041 29.0588 179.216 28.2336 179.216 27.2157V19.8431C179.216 18.8252 180.041 18 181.059 18C182.077 18 182.902 18.8252 182.902 19.8431V27.2157C182.902 28.2336 182.077 29.0588 181.059 29.0588Z" fill="#D3DCFB"/>
|
||||
<path d="M163.243 30.2881C164.6 30.2881 165.7 29.1878 165.7 27.8306C165.7 26.4733 164.6 25.373 163.243 25.373C161.885 25.373 160.785 26.4733 160.785 27.8306C160.785 29.1878 161.885 30.2881 163.243 30.2881Z" fill="#AAB9E5"/>
|
||||
<path d="M163.242 29.0588C162.224 29.0588 161.398 28.2336 161.398 27.2157V19.8431C161.398 18.8252 162.224 18 163.242 18C164.259 18 165.085 18.8252 165.085 19.8431V27.2157C165.085 28.2336 164.259 29.0588 163.242 29.0588Z" fill="#D3DCFB"/>
|
||||
<path d="M168.156 49.9475C170.866 49.9475 173.071 47.7426 173.071 45.0324V38.8887C173.071 36.1785 170.866 33.9736 168.156 33.9736C165.446 33.9736 163.241 36.1785 163.241 38.8887V45.0324C163.241 47.7426 165.446 49.9475 168.156 49.9475ZM165.699 38.8887C165.699 37.5336 166.801 36.4311 168.156 36.4311C169.511 36.4311 170.614 37.5336 170.614 38.8887V45.0324C170.614 46.3875 169.511 47.4899 168.156 47.4899C166.801 47.4899 165.699 46.3875 165.699 45.0324V38.8887Z" fill="#252A3F"/>
|
||||
<path d="M155.376 39.8703L158.325 37.6585V48.7173C158.325 49.3958 158.875 49.9461 159.554 49.9461C160.232 49.9461 160.783 49.3958 160.783 48.7173V35.201C160.783 34.1908 159.626 33.6111 158.817 34.218L153.902 37.9043C153.359 38.3114 153.249 39.0817 153.656 39.6245C154.063 40.1673 154.833 40.2774 155.376 39.8703Z" fill="#252A3F"/>
|
||||
<path d="M175.726 66.3469C175.718 66.4862 175.697 66.6336 175.664 66.7893C175.64 66.9449 175.562 67.0719 175.431 67.1702C175.333 67.2521 175.222 67.3012 175.099 67.3176C174.976 67.334 174.854 67.3258 174.731 67.293C174.616 67.2685 174.505 67.2275 174.399 67.1702C174.292 67.1046 174.206 67.0268 174.141 66.9367C173.862 66.5927 173.604 66.2404 173.367 65.88C173.137 65.5114 172.904 65.1427 172.666 64.7741L171.634 63.2136C171.495 62.9924 171.347 62.7467 171.192 62.4763C171.036 62.1978 170.876 61.9398 170.713 61.7022L170.676 66.3961V66.5066C170.676 66.6377 170.651 66.7688 170.602 66.8998C170.561 67.0227 170.487 67.1292 170.381 67.2193C170.299 67.2849 170.192 67.3299 170.061 67.3545C169.857 67.3954 169.685 67.3832 169.545 67.3176C169.414 67.2521 169.308 67.162 169.226 67.0473C169.152 66.9326 169.099 66.8015 169.066 66.6541C169.041 66.4985 169.037 66.3469 169.054 66.1995V65.9906L169.078 65.0321L169.091 63.2504C169.099 62.9883 169.103 62.7221 169.103 62.4517C169.103 62.1732 169.103 61.8906 169.103 61.6039C169.095 61.2517 169.095 60.8789 169.103 60.4857C169.119 60.0925 169.136 59.7239 169.152 59.3799C169.168 59.1915 169.214 59.0317 169.287 58.9006C169.32 58.786 169.406 58.6877 169.545 58.6057C169.635 58.5484 169.75 58.5115 169.889 58.4952C170.037 58.4788 170.164 58.4829 170.27 58.5074C170.311 58.5238 170.352 58.5443 170.393 58.5689C170.434 58.5853 170.475 58.6057 170.516 58.6303C170.557 58.6631 170.594 58.6959 170.627 58.7286C170.668 58.7614 170.704 58.7982 170.737 58.8392C170.778 58.8802 170.815 58.9252 170.848 58.9744C170.881 59.0153 170.913 59.0563 170.946 59.0972C170.971 59.1464 170.995 59.1914 171.02 59.2324C171.044 59.2734 171.073 59.3143 171.106 59.3553L171.241 59.5519L174.079 64.0246V63.2136C174.079 62.9514 174.075 62.6852 174.067 62.4149C174.067 62.1364 174.063 61.8497 174.055 61.5548C174.055 61.2107 174.055 60.8421 174.055 60.4489C174.063 60.0557 174.075 59.687 174.092 59.343C174.092 59.2037 174.133 59.044 174.215 58.8638C174.256 58.7573 174.325 58.6713 174.423 58.6057C174.522 58.5402 174.632 58.4952 174.755 58.4706C174.878 58.446 175.001 58.446 175.124 58.4706C175.247 58.4952 175.353 58.5443 175.443 58.618C175.468 58.6426 175.492 58.6713 175.517 58.704C175.542 58.7368 175.562 58.7737 175.578 58.8146C175.619 58.9211 175.644 59.0153 175.652 59.0972C175.677 59.2119 175.689 59.3143 175.689 59.4044C175.689 60.4284 175.689 61.4728 175.689 62.5378C175.697 63.6027 175.705 64.6471 175.714 65.6711C175.714 65.7858 175.718 65.9005 175.726 66.0151C175.734 66.1216 175.734 66.2322 175.726 66.3469Z" fill="white"/>
|
||||
<path d="M166.925 66.4451C166.933 66.4942 166.937 66.5434 166.937 66.5925C166.946 66.6335 166.95 66.6827 166.95 66.74C166.95 66.8383 166.921 66.9284 166.864 67.0103C166.839 67.0513 166.806 67.0922 166.765 67.1332C166.724 67.166 166.675 67.1946 166.618 67.2192C166.413 67.3339 166.196 67.3749 165.967 67.3421C165.852 67.3093 165.75 67.2561 165.66 67.1823C165.643 67.166 165.631 67.1578 165.623 67.1578C165.615 67.1496 165.606 67.1373 165.598 67.1209C165.59 67.1127 165.582 67.1045 165.574 67.0963C165.565 67.08 165.553 67.0677 165.537 67.0595C165.496 67.0185 165.463 66.9817 165.438 66.9489C165.414 66.9079 165.389 66.867 165.365 66.826C165.348 66.785 165.328 66.7482 165.303 66.7154C165.287 66.6745 165.266 66.6335 165.242 66.5925C165.225 66.5598 165.209 66.5311 165.193 66.5065C165.176 66.4738 165.164 66.441 165.156 66.4082C165.123 66.3345 165.103 66.269 165.094 66.2116L164.836 65.6095C164.271 65.6095 163.706 65.6136 163.141 65.6218C162.584 65.6218 162.022 65.6177 161.457 65.6095L161.199 66.2116C161.183 66.2444 161.171 66.2772 161.162 66.3099C161.162 66.3427 161.154 66.3755 161.138 66.4082C161.121 66.441 161.105 66.4738 161.089 66.5065C161.08 66.5311 161.068 66.5598 161.052 66.5925C161.027 66.6335 161.003 66.6745 160.978 66.7154C160.962 66.7482 160.941 66.785 160.917 66.826C160.9 66.867 160.88 66.9079 160.855 66.9489C160.831 66.9817 160.798 67.0185 160.757 67.0595C160.74 67.0677 160.728 67.08 160.72 67.0963C160.712 67.1045 160.704 67.1127 160.695 67.1209C160.687 67.1373 160.679 67.1496 160.671 67.1578C160.663 67.1578 160.65 67.166 160.634 67.1823C160.544 67.2561 160.441 67.3093 160.327 67.3421C160.097 67.3749 159.88 67.3339 159.676 67.2192C159.618 67.1946 159.569 67.166 159.528 67.1332C159.487 67.0922 159.454 67.0513 159.43 67.0103C159.372 66.9284 159.344 66.8383 159.344 66.74C159.344 66.6827 159.344 66.6335 159.344 66.5925C159.352 66.5434 159.36 66.4942 159.368 66.4451C159.385 66.3714 159.405 66.2976 159.43 66.2239C159.454 66.1502 159.467 66.1133 159.467 66.1133L162.022 59.8221L162.096 59.6255C162.113 59.5763 162.133 59.5313 162.158 59.4903C162.182 59.4494 162.203 59.4002 162.219 59.3429C162.26 59.2364 162.305 59.1422 162.354 59.0603C162.379 59.0111 162.407 58.9661 162.44 58.9251C162.473 58.8841 162.506 58.8432 162.539 58.8022C162.588 58.7367 162.657 58.6835 162.747 58.6425C162.862 58.6015 162.993 58.5811 163.141 58.5811C163.296 58.5811 163.431 58.6015 163.546 58.6425C163.636 58.6835 163.706 58.7367 163.755 58.8022C163.812 58.876 163.874 58.962 163.939 59.0603C163.988 59.1422 164.034 59.2364 164.074 59.3429C164.091 59.4002 164.111 59.4494 164.136 59.4903C164.16 59.5313 164.181 59.5763 164.197 59.6255L164.271 59.8221L166.827 66.1133C166.827 66.1133 166.839 66.1502 166.864 66.2239C166.888 66.2976 166.909 66.3714 166.925 66.4451ZM164.013 63.4346C163.907 63.1971 163.796 62.9513 163.681 62.6974C163.575 62.4434 163.46 62.1854 163.337 61.9233C163.304 61.8495 163.272 61.7758 163.239 61.7021C163.206 61.6202 163.173 61.5424 163.141 61.4686C163.116 61.5424 163.087 61.6202 163.055 61.7021C163.022 61.7758 162.989 61.8495 162.956 61.9233C162.833 62.1854 162.715 62.4434 162.6 62.6974C162.493 62.9513 162.387 63.1971 162.28 63.4346L162.059 63.9753H164.234L164.013 63.4346Z" fill="white"/>
|
||||
<path d="M158.417 58.888C158.499 58.9945 158.54 59.101 158.54 59.2075C158.548 59.2566 158.548 59.3181 158.54 59.3918C158.54 59.4655 158.536 59.5229 158.527 59.5638C158.503 59.6457 158.445 59.7276 158.355 59.8096C158.331 59.8341 158.302 59.8587 158.269 59.8833C158.237 59.8997 158.196 59.9161 158.146 59.9324C158.097 59.9488 158.048 59.9611 157.999 59.9693C157.95 59.9693 157.897 59.9734 157.839 59.9816C157.782 59.9898 157.729 59.998 157.68 60.0062C157.63 60.0062 157.577 60.0062 157.52 60.0062H156.819V60.2151C156.811 60.9523 156.824 61.6896 156.856 62.4268C156.897 63.1641 156.893 63.9013 156.844 64.6386C156.819 64.8843 156.783 65.1383 156.733 65.4004C156.684 65.6543 156.602 65.896 156.488 66.1254C156.381 66.3465 156.238 66.5513 156.058 66.7397C155.877 66.9282 155.648 67.0756 155.369 67.1821C155.107 67.2804 154.821 67.35 154.509 67.391C154.198 67.4319 153.883 67.436 153.563 67.4033C153.252 67.3705 152.953 67.3009 152.666 67.1944C152.38 67.0879 152.138 66.9404 151.941 66.752C151.835 66.6537 151.736 66.535 151.646 66.3957C151.556 66.2482 151.495 66.0967 151.462 65.9411C151.429 65.7772 151.437 65.6216 151.487 65.4741C151.536 65.3185 151.65 65.1915 151.831 65.0932C151.986 65.0031 152.126 64.9826 152.248 65.0318C152.38 65.0809 152.502 65.1587 152.617 65.2652C152.74 65.3717 152.863 65.4823 152.986 65.597C153.117 65.7117 153.26 65.7854 153.416 65.8182C153.752 65.9001 154.026 65.9042 154.239 65.8305C154.452 65.7486 154.62 65.6216 154.743 65.4496C154.866 65.2775 154.952 65.0686 155.001 64.8229C155.058 64.5771 155.091 64.3273 155.099 64.0733C155.116 63.8194 155.12 63.5737 155.111 63.3361C155.103 63.0985 155.103 62.8978 155.111 62.734C155.12 62.2998 155.12 61.8739 155.111 61.4561C155.103 61.0383 155.099 60.6124 155.099 60.1782V60.129C155.107 60.1127 155.111 60.0881 155.111 60.0553H155.075C155.025 60.0471 154.923 60.043 154.767 60.043C154.612 60.0348 154.444 60.0307 154.264 60.0307C154.083 60.0307 153.911 60.0307 153.748 60.0307C153.592 60.0225 153.489 60.0185 153.44 60.0185H153.268V60.0062C153.203 59.998 153.137 59.9857 153.072 59.9693C153.006 59.9529 152.941 59.9365 152.875 59.9202C152.719 59.871 152.601 59.7932 152.519 59.6867C152.478 59.6457 152.445 59.5802 152.42 59.4901C152.404 59.4 152.396 59.3222 152.396 59.2566C152.396 59.2157 152.396 59.1706 152.396 59.1215C152.396 59.0723 152.404 59.0273 152.42 58.9863C152.437 58.8962 152.494 58.8143 152.592 58.7405C152.658 58.6914 152.736 58.6545 152.826 58.63C152.883 58.6136 152.941 58.6013 152.998 58.5931C153.055 58.5849 153.117 58.5767 153.182 58.5685C153.24 58.5603 153.297 58.5562 153.354 58.5562C153.412 58.5562 153.473 58.5562 153.539 58.5562H154.718C154.767 58.5562 154.825 58.5562 154.89 58.5562C154.956 58.5562 155.03 58.5521 155.111 58.5439C155.431 58.5439 155.746 58.5439 156.058 58.5439C156.369 58.5439 156.672 58.548 156.967 58.5562H157.041C157.131 58.5562 157.217 58.5603 157.299 58.5685C157.389 58.5685 157.479 58.5685 157.569 58.5685C157.757 58.5767 157.933 58.6136 158.097 58.6791C158.228 58.7119 158.335 58.7815 158.417 58.888Z" fill="white"/>
|
||||
<path d="M114 32.5C112.619 32.5 111.5 33.6193 111.5 35C111.5 36.3807 112.619 37.5 114 37.5L114 32.5ZM127 32.5L114 32.5L114 37.5L127 37.5L127 32.5Z" fill="#D9046A"/>
|
||||
<path d="M101 49.5C99.6193 49.5 98.5 50.6193 98.5 52C98.5 53.3807 99.6193 54.5 101 54.5L101 49.5ZM127 49.5L101 49.5L101 54.5L127 54.5L127 49.5Z" fill="#D9046A"/>
|
||||
<path d="M80 67.5C78.6193 67.5 77.5 68.6193 77.5 70C77.5 71.3807 78.6193 72.5 80 72.5L80 67.5ZM127 67.5L80 67.5L80 72.5L127 72.5L127 67.5Z" fill="#D9046A"/>
|
||||
</svg>
|
After Width: | Height: | Size: 12 KiB |
52
newIDE/app/public/res/questionnaire/delay-no-deadline.svg
Normal file
@@ -0,0 +1,52 @@
|
||||
<svg width="292" height="103" viewBox="0 0 292 103" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="292" height="102.768" fill="#1D1D26"/>
|
||||
<path d="M122.443 78.7125C128.807 79.2602 128.982 64.1328 128.589 61.9415C124.924 56.2575 120.757 58.915 119.131 60.9542C120.856 69.3036 116.079 78.1647 122.443 78.7125Z" fill="url(#paint0_linear_1671_7938)"/>
|
||||
<path d="M142.506 65.4346C138.703 71.2704 132.425 71.6241 125.352 70.3862C122.699 69.5315 116.669 66.2657 113.768 60.0408C110.143 52.2596 120.11 28.9274 127.739 20.2508C136.758 9.99382 149.253 11.6738 155.089 18.7476C160.925 25.8214 158.51 34.5752 152.762 43.5942C147.015 52.6133 146.308 59.5987 142.506 65.4346Z" fill="url(#paint1_linear_1671_7938)"/>
|
||||
<path d="M129.978 45.7178L128.652 48.7241C128.298 47.7338 128.151 46.7494 128.121 46.5136C128.263 46.3721 129.418 45.9241 129.978 45.7178Z" fill="#DB422A"/>
|
||||
<path d="M152.702 29.0056C154.824 30.9509 154.47 35.4604 153.232 38.6436C143.541 42.9586 139.703 34.7236 138.996 30.0666C145.451 25.2919 150.226 26.7361 152.702 29.0056Z" fill="#FEF9F5"/>
|
||||
<mask id="mask0_1671_7938" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="141" y="30" width="12" height="11">
|
||||
<path d="M150.724 38.6307C149.048 40.9858 145.856 41.5905 143.596 39.9812C141.335 38.372 141.097 35.2518 142.774 32.8967C144.45 30.5416 147.814 29.3598 150.152 30.7704C153.378 32.7172 152.401 36.2756 150.724 38.6307Z" fill="black"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_1671_7938)">
|
||||
<path d="M152.877 27.503C155 29.4482 154.469 35.461 153.231 38.6442C143.54 42.9592 139.702 34.7242 138.995 30.0673C146.599 24.2314 150.791 25.5901 152.877 27.503Z" fill="black"/>
|
||||
</g>
|
||||
<path d="M146.011 87.2807L120.023 69.6151C117.815 68.1141 117.242 65.1073 118.743 62.8992L121.008 59.5674L154.992 82.6685L152.727 86.0003C151.226 88.2084 148.219 88.7817 146.011 87.2807Z" fill="#D3DCFB"/>
|
||||
<path d="M120.929 68.2807C119.459 67.2817 119.076 65.2732 120.075 63.8035L122.34 60.4717L153.659 81.761L151.394 85.0928C150.395 86.5625 148.386 86.9454 146.916 85.9463L120.929 68.2807Z" fill="#6A0DB4"/>
|
||||
<path d="M167.301 55.9615L141.314 38.2959C139.109 36.7973 136.096 37.3717 134.598 39.5763L120.556 60.2333C119.057 62.4379 119.632 65.4506 121.836 66.9492L147.824 84.6148C150.029 86.1134 153.041 85.539 154.54 83.3344C154.856 82.8699 168.175 63.2762 168.582 62.6774C170.08 60.4728 169.506 57.4601 167.301 55.9615Z" fill="#EBF5FC"/>
|
||||
<path d="M159.253 62.1242C159.265 62.2376 159.244 62.333 159.192 62.4106C159.169 62.4438 159.142 62.4779 159.11 62.5129C159.087 62.5462 159.064 62.5748 159.04 62.5987C158.981 62.6483 158.906 62.682 158.813 62.6997C158.746 62.7028 158.668 62.6863 158.579 62.6503C158.533 62.635 158.489 62.6169 158.446 62.5961C158.404 62.5753 158.356 62.5554 158.305 62.5363C158.262 62.5155 158.221 62.4919 158.183 62.4656C158.144 62.4392 158.102 62.411 158.058 62.3809L157.634 62.0928C157.531 62.0306 157.429 61.9656 157.33 61.8979C157.235 61.8338 157.141 61.7698 157.047 61.7058C156.936 61.8813 156.813 62.0687 156.677 62.2681C156.545 62.462 156.388 62.6872 156.206 62.9437C156.029 63.204 155.821 63.504 155.582 63.8436C155.348 64.187 155.077 64.5858 154.768 65.0399L154.339 65.6713C154.302 65.7267 154.276 65.7701 154.263 65.8016C154.248 65.8238 154.233 65.8459 154.218 65.8681C154.206 65.8847 154.189 65.905 154.164 65.9289C154.119 65.9712 154.071 66.0237 154.021 66.0864C154.002 66.1141 153.98 66.1399 153.956 66.1638C153.935 66.1822 153.91 66.2015 153.88 66.2217C153.843 66.2288 153.821 66.2378 153.813 66.2489L153.754 66.2818C153.689 66.3184 153.601 66.3352 153.489 66.3324C153.326 66.3105 153.181 66.2321 153.054 66.0972C152.967 66.0221 152.912 65.9482 152.889 65.8756C152.873 65.7919 152.871 65.7175 152.882 65.6526C152.89 65.5691 152.911 65.4978 152.943 65.4386C152.96 65.3775 152.987 65.3192 153.025 65.2638L155.928 60.9936C155.895 60.971 155.825 60.924 155.72 60.8524C155.615 60.7809 155.501 60.7037 155.379 60.6209C155.267 60.5363 155.16 60.4555 155.058 60.3784C154.957 60.3013 154.889 60.2468 154.854 60.2149C154.824 60.1868 154.777 60.1427 154.713 60.0827C154.654 60.0265 154.606 59.9777 154.569 59.9365C154.476 59.8242 154.42 59.7095 154.402 59.5923C154.39 59.4789 154.415 59.3779 154.475 59.2893C154.497 59.256 154.52 59.2228 154.543 59.1896C154.565 59.1564 154.591 59.1297 154.621 59.1095C154.683 59.0543 154.765 59.0291 154.867 59.0337C154.901 59.0321 154.947 59.0353 155.006 59.0433C155.075 59.0495 155.135 59.0621 155.187 59.0812C155.269 59.1042 155.363 59.144 155.47 59.2007C155.518 59.2253 155.565 59.2527 155.609 59.2828C155.653 59.3129 155.7 59.3449 155.75 59.3788C155.944 59.5106 156.127 59.6348 156.298 59.7515C156.476 59.872 156.663 59.9953 156.861 60.1216C157.186 60.3344 157.504 60.5509 157.816 60.771C158.137 60.9894 158.452 61.2114 158.76 61.4371C158.828 61.4916 158.892 61.5469 158.951 61.6032C159.01 61.6594 159.063 61.724 159.111 61.7969C159.149 61.8474 159.181 61.9015 159.207 61.9594C159.236 62.0116 159.251 62.0666 159.253 62.1242Z" fill="#252A3F"/>
|
||||
<path d="M151.32 61.4212C151.295 61.5176 151.254 61.6194 151.197 61.7266C151.15 61.8321 151.092 61.9347 151.024 62.0343C150.957 62.134 150.881 62.2281 150.796 62.3165C150.721 62.4031 150.648 62.4749 150.577 62.5318C150.277 62.7818 149.923 62.9216 149.514 62.9513C149.109 62.9756 148.703 62.918 148.296 62.7788C147.894 62.6433 147.519 62.4374 147.173 62.1612C146.832 61.8888 146.572 61.5791 146.395 61.232C146.286 61.0118 146.216 60.7864 146.187 60.5558C146.157 60.3252 146.159 60.0912 146.19 59.8537C146.199 59.7702 146.224 59.6859 146.265 59.6009C146.316 59.514 146.377 59.4421 146.448 59.3852C146.523 59.3227 146.604 59.2807 146.692 59.2592C146.783 59.2322 146.88 59.2377 146.984 59.2758C147.047 59.3024 147.112 59.3382 147.178 59.3834C147.25 59.4323 147.312 59.4905 147.363 59.5578C147.419 59.6196 147.459 59.6915 147.484 59.7734C147.513 59.8499 147.52 59.9354 147.504 60.03C147.486 60.1877 147.498 60.354 147.541 60.529C147.594 60.7023 147.663 60.8626 147.749 61.0101C147.89 61.1953 148.056 61.3445 148.246 61.4576C148.442 61.5746 148.639 61.6479 148.838 61.6775C149.042 61.7109 149.232 61.6987 149.409 61.6409C149.59 61.5775 149.735 61.4655 149.844 61.3049C149.934 61.1719 149.988 61.0508 150.006 60.9413C150.028 60.8264 150.021 60.7167 149.987 60.6124C149.962 60.5063 149.913 60.3999 149.839 60.2934C149.771 60.1906 149.689 60.0859 149.591 59.9791C149.477 59.8611 149.355 59.7494 149.224 59.6442C149.098 59.5428 148.972 59.4367 148.845 59.326C148.718 59.2152 148.597 59.1009 148.483 58.9828C148.369 58.8647 148.267 58.7347 148.177 58.5928C147.994 58.3143 147.909 58.0219 147.923 57.7156C147.937 57.4092 148.015 57.122 148.157 56.854C148.304 56.5897 148.502 56.3639 148.751 56.1767C149.003 55.9839 149.281 55.861 149.584 55.8081C149.871 55.7679 150.158 55.7974 150.447 55.8966C150.745 55.994 151.048 56.1389 151.354 56.3311C151.524 56.4385 151.687 56.557 151.842 56.6866C152.002 56.8199 152.147 56.9586 152.275 57.1028C152.41 57.2508 152.522 57.4004 152.614 57.5517C152.711 57.7067 152.781 57.8597 152.824 58.0105C152.859 58.1148 152.88 58.2386 152.888 58.3817C152.9 58.5192 152.889 58.6538 152.856 58.7854C152.827 58.9114 152.773 59.0159 152.692 59.0987C152.617 59.1854 152.504 59.2261 152.354 59.2211C152.227 59.2162 152.125 59.1828 152.045 59.1208C151.975 59.057 151.918 58.9812 151.872 58.8935C151.83 58.8003 151.795 58.7034 151.766 58.6028C151.737 58.5022 151.71 58.411 151.685 58.329C151.61 58.1166 151.476 57.9157 151.281 57.7263C151.085 57.537 150.883 57.3875 150.674 57.2779C150.541 57.2117 150.409 57.1622 150.277 57.1294C150.146 57.0966 150.019 57.0871 149.896 57.1009C149.779 57.1184 149.664 57.162 149.552 57.2315C149.449 57.2993 149.362 57.3979 149.29 57.5273C149.236 57.6197 149.21 57.7114 149.213 57.8024C149.221 57.8972 149.245 57.9866 149.285 58.0706C149.331 58.1583 149.388 58.2415 149.456 58.3201C149.524 58.3987 149.596 58.4718 149.671 58.5394C149.898 58.742 150.13 58.9363 150.368 59.1224C150.606 59.3084 150.812 59.5295 150.986 59.7855C151.166 60.0453 151.287 60.3139 151.349 60.5912C151.412 60.8685 151.402 61.1452 151.32 61.4212Z" fill="#252A3F"/>
|
||||
<path d="M144.524 53.1945L143.621 54.4875L143.953 54.7134C144.184 54.8622 144.388 54.9969 144.565 55.1173C144.742 55.2378 144.937 55.3742 145.149 55.5266L145.191 55.5548C145.257 55.6 145.319 55.6461 145.376 55.693C145.443 55.7382 145.506 55.7815 145.567 55.8229C145.63 55.8736 145.686 55.928 145.736 55.986C145.789 56.0385 145.841 56.0938 145.89 56.1518C145.962 56.2491 146.006 56.3516 146.021 56.4595C146.028 56.5691 146.001 56.6683 145.941 56.7569C145.922 56.7846 145.899 56.8178 145.873 56.8566C145.85 56.8898 145.824 56.9165 145.794 56.9367C145.742 56.9901 145.668 57.021 145.573 57.0294C145.519 57.0494 145.448 57.0413 145.359 57.0052C145.272 56.9784 145.19 56.9433 145.115 56.8999C145.026 56.8638 144.943 56.8194 144.865 56.7667L144.475 56.5013L142.932 55.4648L141.809 57.0819L143.451 58.2223L143.841 58.4877C143.885 58.5179 143.927 58.5461 143.966 58.5724C144.004 58.5988 144.039 58.626 144.068 58.6542C144.105 58.6954 144.138 58.73 144.167 58.7582C144.206 58.7845 144.238 58.8145 144.264 58.8482C144.315 58.9155 144.35 58.9836 144.368 59.0525C144.386 59.1456 144.382 59.2282 144.357 59.3004C144.344 59.3319 144.326 59.3642 144.304 59.3974C144.29 59.4289 144.27 59.4593 144.242 59.4888C144.181 59.5774 144.099 59.6389 143.995 59.6733C143.876 59.7056 143.764 59.7028 143.66 59.6647C143.51 59.6355 143.366 59.5738 143.227 59.4797C143.163 59.4438 143.097 59.4033 143.031 59.3581C142.964 59.3129 142.899 59.2724 142.834 59.2365L142.784 59.2026C142.345 58.92 141.896 58.6151 141.438 58.2878C141.328 58.2125 141.241 58.1495 141.178 58.0987C141.112 58.0536 141.051 58.0121 140.995 57.9745C140.945 57.9406 140.893 57.9048 140.837 57.8672C140.782 57.8295 140.71 57.7806 140.621 57.7204C140.487 57.6448 140.396 57.5512 140.351 57.4393C140.316 57.3591 140.305 57.2745 140.317 57.1854C140.312 57.1575 140.315 57.1353 140.326 57.1187C140.328 57.1038 140.328 57.0917 140.326 57.0824C140.325 57.0731 140.325 57.0611 140.327 57.0462C140.334 57.011 140.345 56.9777 140.358 56.9462C140.375 56.9092 140.393 56.8769 140.412 56.8492C140.425 56.8177 140.439 56.7863 140.452 56.7548C140.471 56.7271 140.487 56.6975 140.5 56.6661L140.59 56.5331C140.605 56.511 140.62 56.4888 140.636 56.4667C140.656 56.4483 140.674 56.428 140.689 56.4059L141.13 55.7579L141.959 54.5728L142.71 53.4679C142.846 53.2685 142.966 53.0913 143.072 52.9362C143.183 52.7849 143.303 52.6197 143.433 52.4407L143.461 52.3992C143.508 52.342 143.549 52.2885 143.582 52.2386C143.626 52.187 143.666 52.1335 143.704 52.0781C143.785 51.9711 143.888 51.8838 144.015 51.8163C144.068 51.787 144.116 51.7633 144.161 51.7451C144.211 51.7307 144.266 51.7275 144.325 51.7355C144.442 51.7421 144.545 51.7755 144.634 51.8358C144.678 51.8659 144.709 51.8912 144.728 51.9118L144.733 51.9035C144.833 51.9713 144.913 52.0259 144.974 52.0673C145.035 52.1087 145.093 52.1482 145.149 52.1859C145.21 52.2273 145.273 52.2706 145.34 52.3158C145.41 52.3554 145.503 52.4148 145.62 52.4938C145.845 52.6389 146.057 52.7792 146.257 52.9147C146.456 53.0503 146.659 53.1923 146.866 53.3409L146.899 53.3635C146.956 53.4105 147.018 53.4565 147.085 53.5017C147.151 53.5469 147.213 53.593 147.27 53.6399C147.331 53.6813 147.386 53.7311 147.436 53.7891C147.489 53.8416 147.539 53.8996 147.585 53.9632C147.66 54.0549 147.706 54.1547 147.721 54.2625C147.718 54.374 147.691 54.4684 147.638 54.546C147.615 54.5792 147.593 54.6124 147.57 54.6457C147.551 54.6734 147.527 54.6973 147.497 54.7175C147.454 54.7691 147.381 54.8046 147.279 54.8242C147.249 54.8202 147.215 54.8171 147.176 54.8149C147.142 54.8164 147.105 54.8114 147.064 54.7999C147.024 54.7884 146.982 54.7723 146.94 54.7514C146.906 54.7289 146.871 54.709 146.834 54.692C146.782 54.6729 146.737 54.6502 146.698 54.6239C146.665 54.6013 146.626 54.5749 146.582 54.5448L146.208 54.2907L144.541 53.1695L144.524 53.1945Z" fill="#252A3F"/>
|
||||
<path d="M140.051 52.8136C140.14 53.028 140.191 53.2449 140.204 53.4642C140.226 53.6817 140.2 53.9155 140.128 54.1656C140.045 54.4417 139.925 54.696 139.767 54.9286C139.618 55.1594 139.432 55.3444 139.207 55.4836C138.993 55.621 138.74 55.7004 138.45 55.722C138.17 55.7417 137.859 55.6804 137.519 55.538C137.332 55.4676 137.123 55.3701 136.891 55.2454C136.66 55.1207 136.459 55 136.287 54.8833C136.068 54.742 135.843 54.5895 135.614 54.4259C135.387 54.2715 135.181 54.0988 134.995 53.9076C134.92 53.8159 134.882 53.7218 134.883 53.6252C134.893 53.5268 134.92 53.4277 134.964 53.3278C134.976 53.2629 134.998 53.2055 135.032 53.1557L138.24 48.4368C138.345 48.2817 138.457 48.1834 138.574 48.1417C138.701 48.0983 138.83 48.0929 138.962 48.1257C139.097 48.1529 139.233 48.2089 139.37 48.2938C139.51 48.373 139.652 48.4616 139.796 48.5595C139.907 48.6348 140.018 48.7101 140.129 48.7854C140.249 48.8589 140.365 48.938 140.478 49.0226C140.657 49.1524 140.834 49.297 141.009 49.4565C141.193 49.6142 141.351 49.7865 141.483 49.9734C141.548 50.0576 141.61 50.1566 141.67 50.2704C141.734 50.3787 141.771 50.485 141.781 50.5891C141.85 50.8702 141.852 51.147 141.788 51.4194C141.733 51.6901 141.625 51.9325 141.464 52.1465C141.306 52.355 141.104 52.5213 140.857 52.6453C140.617 52.7732 140.348 52.8293 140.051 52.8136ZM137.1 54.0269C137.279 54.1325 137.467 54.2317 137.663 54.3245C137.859 54.4173 138.017 54.4475 138.136 54.4152C138.268 54.3755 138.388 54.3069 138.495 54.2094C138.611 54.1102 138.702 53.994 138.768 53.8608C138.843 53.7259 138.888 53.5824 138.903 53.4302C138.926 53.2762 138.914 53.134 138.865 53.0035C138.805 52.8172 138.702 52.6538 138.554 52.5131C138.411 52.367 138.259 52.2393 138.098 52.1301C138.021 52.0774 137.947 52.0312 137.876 51.9916C137.816 51.9502 137.755 51.9208 137.693 51.9036C137.642 51.8845 137.591 51.8868 137.543 51.9106C137.494 51.9343 137.444 51.9849 137.391 52.0624C137.304 52.214 137.206 52.358 137.097 52.4944C136.988 52.6309 136.889 52.7656 136.798 52.8985C136.746 52.9761 136.685 53.06 136.615 53.1504C136.555 53.239 136.534 53.3345 136.554 53.4369C136.573 53.5392 136.634 53.641 136.735 53.7422C136.836 53.8434 136.958 53.9383 137.1 54.0269ZM139.977 50.1521C139.809 50.0298 139.667 49.9292 139.551 49.8501C139.444 49.7693 139.35 49.7174 139.268 49.6943C139.196 49.6695 139.123 49.6809 139.05 49.7286C138.987 49.7744 138.914 49.863 138.833 49.9941C138.762 50.0993 138.688 50.2027 138.611 50.3042C138.543 50.4039 138.475 50.5035 138.407 50.6032C138.332 50.714 138.311 50.8216 138.346 50.9259C138.384 51.0247 138.452 51.1154 138.55 51.198C138.653 51.2844 138.766 51.3615 138.89 51.4295C139.02 51.5013 139.134 51.559 139.234 51.6026C139.456 51.7049 139.654 51.742 139.827 51.7138C140.009 51.6839 140.176 51.5749 140.328 51.3868C140.52 51.1526 140.57 50.9357 140.479 50.7361C140.397 50.5348 140.23 50.3401 139.977 50.1521Z" fill="#252A3F"/>
|
||||
<path d="M122.74 65.6158C121.268 64.6151 120.886 62.6106 121.887 61.1385L125.963 55.1413C126.464 54.4052 127.466 54.2142 128.202 54.7145L156.855 74.192C157.591 74.6923 157.782 75.6945 157.282 76.4306L153.205 82.4278C152.205 83.8998 150.2 84.282 148.728 83.2814L122.74 65.6158Z" fill="#A12BFF"/>
|
||||
<path d="M148.685 79.1637C148.653 79.2229 148.612 79.2717 148.561 79.3103C148.528 79.336 148.492 79.3524 148.455 79.3595C148.423 79.3704 148.386 79.3774 148.343 79.3808C148.271 79.3801 148.189 79.3692 148.098 79.3479C148.047 79.3289 147.997 79.3071 147.949 79.2825C147.902 79.2672 147.861 79.239 147.824 79.1978C147.739 79.132 147.684 79.0461 147.659 78.94C147.618 78.7984 147.599 78.6599 147.602 78.5243C147.604 78.4612 147.607 78.3906 147.612 78.3126C147.616 78.2347 147.625 78.1558 147.639 78.076L147.908 75.6962C147.864 75.6661 147.818 75.6388 147.77 75.6142C147.726 75.5841 147.679 75.5567 147.631 75.5321C147.508 75.4641 147.395 75.3916 147.293 75.3145C147.197 75.2412 147.092 75.1697 146.978 75.0999L146.82 74.9926L145.798 76.4964C145.768 76.5407 145.737 76.5803 145.705 76.6153C145.678 76.6541 145.65 76.6956 145.62 76.74C145.601 76.7676 145.574 76.8018 145.538 76.8423C145.508 76.8866 145.477 76.9263 145.445 76.9613C145.393 77.0147 145.324 77.0614 145.241 77.1015C145.16 77.1361 145.072 77.153 144.975 77.1521C144.81 77.145 144.656 77.0684 144.512 76.9222C144.451 76.8567 144.401 76.7819 144.361 76.698C144.35 76.6663 144.344 76.6337 144.342 76.6003C144.345 76.5613 144.35 76.5242 144.357 76.489C144.365 76.4537 144.373 76.4185 144.38 76.3833C144.398 76.3463 144.41 76.3102 144.418 76.275C144.439 76.2083 144.466 76.15 144.5 76.1002L147.708 71.3813C147.73 71.3481 147.753 71.3149 147.776 71.2816C147.807 71.2466 147.836 71.2172 147.86 71.1932C147.907 71.1361 147.968 71.0883 148.042 71.05C148.104 70.9948 148.164 70.9666 148.221 70.9652C148.277 70.9546 148.346 70.9608 148.427 70.9838C148.518 71.0051 148.628 71.0636 148.757 71.1595C149.003 71.3345 149.247 71.5048 149.491 71.6704C149.735 71.8361 149.975 72.0073 150.211 72.184C150.364 72.3043 150.52 72.4385 150.678 72.5867C150.846 72.7331 150.987 72.8894 151.1 73.0558C151.174 73.1623 151.239 73.2632 151.295 73.3585C151.359 73.4909 151.403 73.6055 151.426 73.7023C151.499 74.0113 151.501 74.3243 151.431 74.6413C151.362 74.9584 151.24 75.2442 151.067 75.499C150.864 75.7981 150.605 76.0233 150.292 76.1747C149.984 76.3298 149.634 76.3628 149.241 76.2738C149.222 76.2774 149.2 76.2744 149.174 76.2649C149.157 76.2536 149.142 76.2469 149.127 76.245L148.846 78.3015L148.831 78.4852C148.827 78.5149 148.824 78.5492 148.821 78.5882C148.819 78.6272 148.814 78.6643 148.806 78.6995C148.804 78.7385 148.797 78.7784 148.786 78.8192C148.78 78.8637 148.776 78.9054 148.774 78.9444C148.738 79.0333 148.708 79.1064 148.685 79.1637ZM148.619 74.7943C148.718 74.8621 148.824 74.9095 148.935 74.9365C149.056 74.9617 149.173 74.9683 149.286 74.9564C149.405 74.9481 149.516 74.9222 149.618 74.8786C149.725 74.8294 149.813 74.7596 149.882 74.6692C150.092 74.4073 150.16 74.1534 150.084 73.9076C150.012 73.6562 149.844 73.4327 149.58 73.2371C149.427 73.1169 149.254 72.9908 149.06 72.8591C148.871 72.7311 148.691 72.6087 148.52 72.492C148.371 72.7228 148.213 72.9555 148.045 73.1898C147.887 73.4225 147.699 73.6994 147.481 74.0206L148.619 74.7943Z" fill="white"/>
|
||||
<path d="M143.104 75.0768C143.087 75.1138 143.068 75.1489 143.045 75.1822C143.032 75.2136 143.012 75.2487 142.985 75.2875C142.94 75.354 142.88 75.4017 142.803 75.4307C142.768 75.4471 142.727 75.4598 142.68 75.4686C142.637 75.472 142.591 75.4688 142.541 75.459C142.35 75.4424 142.184 75.3704 142.044 75.2428C141.982 75.1679 141.937 75.0849 141.91 74.9936C141.906 74.975 141.902 74.9638 141.896 74.9601C141.894 74.9508 141.895 74.9387 141.897 74.9238C141.895 74.9145 141.893 74.9052 141.891 74.8959C141.893 74.8811 141.891 74.8671 141.883 74.8541C141.874 74.8075 141.869 74.7676 141.868 74.7341C141.87 74.6951 141.872 74.6561 141.874 74.6171C141.882 74.5819 141.885 74.5476 141.884 74.5141C141.891 74.4789 141.896 74.4418 141.898 74.4028C141.902 74.3731 141.905 74.3462 141.905 74.3221C141.909 74.2924 141.915 74.2646 141.925 74.2387C141.937 74.1738 141.953 74.12 141.974 74.0775L142.076 73.5518C141.694 73.2921 141.31 73.0351 140.924 72.7808C140.547 72.5248 140.17 72.2641 139.791 71.9988L139.34 72.2873C139.314 72.3019 139.291 72.3184 139.27 72.3368C139.255 72.359 139.234 72.3774 139.208 72.392C139.182 72.4066 139.156 72.4212 139.13 72.4359C139.113 72.4487 139.092 72.4625 139.065 72.4771C139.03 72.4935 138.995 72.5099 138.959 72.5263C138.933 72.5409 138.902 72.5564 138.867 72.5728C138.837 72.593 138.804 72.6112 138.769 72.6276C138.737 72.6385 138.698 72.6484 138.652 72.6572C138.637 72.6552 138.623 72.6579 138.61 72.6652C138.6 72.667 138.591 72.6688 138.582 72.6705C138.569 72.6779 138.557 72.6824 138.548 72.6842C138.543 72.6804 138.531 72.6803 138.512 72.6838C138.417 72.6923 138.323 72.6812 138.231 72.6507C138.061 72.5674 137.933 72.4399 137.847 72.2683C137.82 72.2253 137.799 72.1833 137.787 72.1424C137.778 72.0958 137.775 72.0531 137.777 72.0141C137.776 71.9324 137.798 71.8583 137.843 71.7918C137.869 71.753 137.892 71.7198 137.911 71.6921C137.939 71.6626 137.967 71.6332 137.995 71.6037C138.04 71.5614 138.088 71.5209 138.138 71.4824C138.189 71.4438 138.214 71.4246 138.214 71.4246L142.833 68.3456L142.974 68.2466C143.007 68.2209 143.042 68.1998 143.077 68.1834C143.113 68.167 143.149 68.1432 143.187 68.112C143.263 68.0588 143.337 68.0158 143.408 67.983C143.447 67.9611 143.487 67.9438 143.528 67.9311C143.569 67.9185 143.61 67.9059 143.651 67.8932C143.715 67.8715 143.786 67.8675 143.866 67.8812C143.962 67.9063 144.06 67.9527 144.16 68.0204C144.265 68.092 144.347 68.1679 144.406 68.2483C144.448 68.3174 144.471 68.3854 144.474 68.4523C144.479 68.5285 144.481 68.6149 144.48 68.7115C144.475 68.7895 144.462 68.8739 144.441 68.9647C144.426 69.011 144.417 69.0537 144.415 69.0926C144.413 69.1316 144.406 69.1715 144.394 69.2123L144.354 69.3791L143.19 74.8073C143.19 74.8073 143.182 74.8379 143.165 74.899C143.147 74.9602 143.127 75.0194 143.104 75.0768ZM142.519 71.703C142.556 71.4934 142.594 71.2764 142.634 71.052C142.678 70.8314 142.719 70.6042 142.757 70.3705C142.768 70.3056 142.78 70.2407 142.792 70.1758C142.807 70.1053 142.821 70.0377 142.833 69.9728C142.782 70.0113 142.727 70.0508 142.667 70.0911C142.611 70.1259 142.555 70.1607 142.499 70.1954C142.296 70.3162 142.097 70.4361 141.902 70.5551C141.714 70.6778 141.529 70.795 141.348 70.9067L140.95 71.1706L142.42 72.1702L142.519 71.703Z" fill="white"/>
|
||||
<path d="M136.745 64.4386L135.841 65.7316L136.174 65.9575C136.405 66.1063 136.609 66.241 136.786 66.3615C136.963 66.482 137.158 66.6184 137.37 66.7707L137.412 66.799C137.478 66.8442 137.54 66.8902 137.597 66.9372C137.663 66.9824 137.727 67.0257 137.788 67.0671C137.851 67.1178 137.907 67.1722 137.957 67.2302C138.01 67.2827 138.062 67.3379 138.111 67.396C138.183 67.4932 138.226 67.5958 138.242 67.7036C138.249 67.8133 138.222 67.9124 138.161 68.001C138.143 68.0287 138.12 68.062 138.094 68.1007C138.071 68.134 138.045 68.1607 138.015 68.1808C137.962 68.2342 137.889 68.2651 137.794 68.2736C137.74 68.2935 137.668 68.2854 137.58 68.2493C137.493 68.2226 137.411 68.1875 137.335 68.144C137.247 68.108 137.163 68.0636 137.086 68.0108L136.695 67.7454L135.153 66.709L134.029 68.326L135.671 69.4664L136.062 69.7319C136.106 69.762 136.148 69.7902 136.186 69.8166C136.225 69.8429 136.259 69.8702 136.289 69.8983C136.325 69.9395 136.359 69.9742 136.388 70.0023C136.427 70.0286 136.459 70.0587 136.485 70.0923C136.536 70.1597 136.571 70.2278 136.589 70.2967C136.607 70.3897 136.603 70.4723 136.578 70.5445C136.565 70.576 136.547 70.6083 136.524 70.6416C136.511 70.673 136.49 70.7035 136.462 70.733C136.402 70.8216 136.32 70.8831 136.215 70.9174C136.096 70.9498 135.985 70.9469 135.881 70.9088C135.731 70.8796 135.587 70.8179 135.448 70.7238C135.383 70.6879 135.318 70.6474 135.251 70.6022C135.185 70.5571 135.119 70.5165 135.055 70.4807L135.005 70.4468C134.565 70.1642 134.117 69.8592 133.659 69.5319C133.548 69.4566 133.461 69.3936 133.399 69.3429C133.332 69.2977 133.271 69.2563 133.216 69.2186C133.166 69.1848 133.114 69.149 133.058 69.1113C133.003 69.0737 132.931 69.0247 132.842 68.9645C132.707 68.889 132.617 68.7953 132.572 68.6834C132.537 68.6033 132.526 68.5186 132.538 68.4296C132.532 68.4017 132.535 68.3794 132.547 68.3628C132.549 68.348 132.549 68.3359 132.547 68.3266C132.545 68.3173 132.545 68.3052 132.547 68.2904C132.555 68.2551 132.566 68.2218 132.579 68.1903C132.596 68.1533 132.614 68.121 132.633 68.0933C132.646 68.0619 132.659 68.0304 132.673 67.9989C132.691 67.9712 132.707 67.9417 132.721 67.9102L132.811 67.7773C132.826 67.7551 132.841 67.733 132.856 67.7108C132.877 67.6924 132.895 67.6722 132.91 67.65L133.35 67.002L134.18 65.817L134.931 64.712C135.067 64.5126 135.187 64.3354 135.293 64.1803C135.404 64.029 135.524 63.8638 135.654 63.6848L135.682 63.6433C135.729 63.5861 135.769 63.5326 135.803 63.4828C135.846 63.4312 135.887 63.3777 135.924 63.3223C136.005 63.2153 136.109 63.128 136.236 63.0604C136.288 63.0311 136.337 63.0074 136.382 62.9893C136.432 62.9749 136.487 62.9716 136.546 62.9796C136.663 62.9862 136.766 63.0197 136.854 63.0799C136.899 63.11 136.93 63.1354 136.948 63.156L136.954 63.1477C137.054 63.2154 137.134 63.27 137.195 63.3114C137.256 63.3529 137.314 63.3924 137.37 63.43C137.43 63.4714 137.494 63.5147 137.561 63.5599C137.631 63.5996 137.724 63.6589 137.84 63.738C138.066 63.883 138.278 64.0233 138.477 64.1589C138.677 64.2944 138.88 64.4365 139.087 64.5851L139.12 64.6077C139.177 64.6546 139.239 64.7007 139.305 64.7459C139.372 64.791 139.434 64.8371 139.491 64.8841C139.552 64.9255 139.607 64.9752 139.657 65.0332C139.71 65.0857 139.76 65.1438 139.805 65.2073C139.881 65.299 139.926 65.3988 139.942 65.5067C139.939 65.6181 139.911 65.7126 139.859 65.7901C139.836 65.8234 139.813 65.8566 139.791 65.8898C139.772 65.9175 139.748 65.9414 139.718 65.9616C139.675 66.0132 139.602 66.0488 139.5 66.0683C139.47 66.0643 139.435 66.0612 139.397 66.059C139.363 66.0606 139.326 66.0556 139.285 66.0441C139.244 66.0326 139.203 66.0164 139.16 65.9956C139.127 65.973 139.092 65.9532 139.055 65.9361C139.003 65.9171 138.958 65.8944 138.919 65.868C138.886 65.8454 138.847 65.8191 138.803 65.789L138.429 65.5348L136.762 64.4137L136.745 64.4386Z" fill="white"/>
|
||||
<path d="M134.62 62.0593C134.607 62.0907 134.588 62.1184 134.564 62.1424C134.545 62.17 134.516 62.1949 134.477 62.2168C134.402 62.2793 134.33 62.3316 134.261 62.3737C134.175 62.4286 134.088 62.4668 134.001 62.4883C133.956 62.5065 133.911 62.5247 133.866 62.5429C133.831 62.5593 133.795 62.5757 133.76 62.5921L133.556 62.6599L131.448 63.474L131.093 63.585L129.591 65.7949C129.561 65.815 129.536 65.839 129.518 65.8667C129.499 65.8944 129.475 65.9229 129.447 65.9524C129.417 65.9726 129.39 65.9946 129.366 66.0185C129.345 66.0369 129.32 66.0562 129.29 66.0764C129.264 66.091 129.247 66.1038 129.24 66.1149C129.227 66.1222 129.215 66.1268 129.206 66.1285C129.202 66.1341 129.194 66.1405 129.181 66.1478C129.11 66.1806 129.029 66.1985 128.938 66.2014C128.775 66.1795 128.627 66.0992 128.494 65.9605C128.413 65.8892 128.366 65.8163 128.351 65.7419C128.335 65.7065 128.326 65.672 128.324 65.6386C128.323 65.6051 128.323 65.5689 128.325 65.5299C128.337 65.4892 128.347 65.4512 128.354 65.416C128.362 65.3807 128.373 65.3474 128.386 65.3159C128.394 65.2807 128.405 65.252 128.42 65.2299C128.439 65.2022 128.456 65.1773 128.471 65.1551L130.013 62.8871L130.022 62.4804L129.981 60.2176L129.991 60.0059C129.992 59.9335 129.99 59.8471 129.985 59.7467C129.982 59.6557 129.989 59.5629 130.004 59.4683C130.005 59.42 130.008 59.3736 130.014 59.329C130.029 59.2827 130.045 59.2364 130.06 59.1901C130.081 59.1235 130.116 59.0662 130.164 59.0183C130.23 58.9576 130.305 58.9193 130.388 58.9033C130.478 58.8911 130.562 58.8919 130.642 58.9056C130.757 58.9029 130.861 58.941 130.953 59.0199C131.014 59.0613 131.059 59.1081 131.088 59.1604C131.117 59.2127 131.145 59.2677 131.17 59.3255C131.194 59.3982 131.213 59.4717 131.227 59.5462C131.247 59.6243 131.259 59.7015 131.264 59.7777C131.27 59.8633 131.276 59.9441 131.281 60.0203C131.29 60.091 131.293 60.1699 131.29 60.2572L131.292 60.3074C131.305 60.575 131.313 60.8314 131.316 61.0766C131.323 61.3163 131.327 61.5736 131.326 61.8485C131.329 61.8671 131.331 61.9005 131.331 61.9488C131.33 61.9971 131.329 62.0528 131.326 62.116C131.375 62.0923 131.417 62.0722 131.452 62.0558C131.497 62.0376 131.529 62.0268 131.547 62.0232C131.803 61.9215 132.045 61.8271 132.274 61.74C132.503 61.6529 132.745 61.5659 132.998 61.4791L133.037 61.4571C133.116 61.4374 133.188 61.4139 133.255 61.3866C133.332 61.3576 133.411 61.3305 133.493 61.3052C133.633 61.2544 133.788 61.2345 133.959 61.2453C134.089 61.2446 134.207 61.268 134.312 61.3154C134.425 61.3758 134.501 61.4601 134.541 61.5682C134.559 61.6129 134.576 61.653 134.593 61.6885C134.615 61.7277 134.629 61.7659 134.636 61.8031C134.647 61.8831 134.641 61.9685 134.62 62.0593Z" fill="white"/>
|
||||
<path d="M141.927 44.5587C142.663 45.059 143.665 44.8679 144.166 44.1319C144.666 43.3958 144.475 42.3936 143.739 41.8932C143.003 41.3929 142.001 41.584 141.5 42.32C141 43.0561 141.191 44.0583 141.927 44.5587Z" fill="#AAB9E5"/>
|
||||
<path d="M142.381 43.8925C141.829 43.5172 141.686 42.7655 142.061 42.2135L144.779 38.2154C145.154 37.6633 145.906 37.52 146.458 37.8953C147.01 38.2705 147.153 39.0222 146.778 39.5742L144.06 43.5724C143.685 44.1244 142.933 44.2677 142.381 43.8925Z" fill="#D3DCFB"/>
|
||||
<path d="M161.25 57.6944C161.986 58.1947 162.989 58.0036 163.489 57.2676C163.989 56.5316 163.798 55.5293 163.062 55.029C162.326 54.5286 161.324 54.7197 160.824 55.4558C160.323 56.1918 160.514 57.1941 161.25 57.6944Z" fill="#AAB9E5"/>
|
||||
<path d="M161.704 57.0282C161.152 56.653 161.009 55.9012 161.384 55.3492L164.102 51.3511C164.477 50.7991 165.229 50.6558 165.781 51.031C166.333 51.4062 166.476 52.158 166.101 52.71L163.383 56.7081C163.008 57.2601 162.256 57.4034 161.704 57.0282Z" fill="#D3DCFB"/>
|
||||
<path d="M151.59 51.128C152.326 51.6283 153.329 51.4372 153.829 50.7012C154.329 49.9652 154.138 48.9629 153.402 48.4626C152.666 47.9622 151.664 48.1533 151.163 48.8894C150.663 49.6254 150.854 50.6277 151.59 51.128Z" fill="#AAB9E5"/>
|
||||
<path d="M152.042 50.4599C151.49 50.0846 151.347 49.3329 151.722 48.7809L154.44 44.7827C154.815 44.2307 155.567 44.0874 156.119 44.4626C156.671 44.8379 156.814 45.5896 156.439 46.1416L153.721 50.1398C153.346 50.6918 152.594 50.8351 152.042 50.4599Z" fill="#D3DCFB"/>
|
||||
<path d="M129.889 62.695C123.965 65.0824 119.367 50.6695 119.102 48.459C120.941 41.9511 125.704 43.2715 127.855 44.7452C128.651 53.2338 135.813 60.3076 129.889 62.695Z" fill="url(#paint2_linear_1671_7938)"/>
|
||||
<path d="M122.285 61.4577C119.951 58.4867 118.857 49.8449 119.19 48.1943C119.898 52.7923 122.253 57.3625 123.598 59.3355L122.285 61.4577Z" fill="#DB422A"/>
|
||||
<path d="M159.542 54C156.705 54 155 52.2952 155 50.3211C155 48.3469 157.984 46.9584 159.542 47.001C161.916 47.0658 164 48.6163 164 50.3211C164 52.026 162.15 54 159.542 54Z" fill="url(#paint3_linear_1671_7938)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_1671_7938" x1="124.914" y1="78.3256" x2="124.205" y2="58.1978" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#E04D40"/>
|
||||
<stop offset="1" stop-color="#F15F56"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1671_7938" x1="153.381" y1="14.4149" x2="119.427" y2="68.4409" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF7171"/>
|
||||
<stop offset="1" stop-color="#E85345"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1671_7938" x1="127.413" y1="63.0486" x2="122.196" y2="43.5957" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#E04D40"/>
|
||||
<stop offset="1" stop-color="#F15F56"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1671_7938" x1="159.5" y1="47" x2="159.5" y2="54" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FA6B68"/>
|
||||
<stop offset="1" stop-color="#F1463F"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 30 KiB |
88
newIDE/app/public/res/questionnaire/game-to-publish.svg
Normal file
@@ -0,0 +1,88 @@
|
||||
<svg width="292" height="103" viewBox="0 0 292 103" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1654_6480)">
|
||||
<rect width="292" height="102.768" fill="#1D1D26"/>
|
||||
<rect x="114.537" y="33.0781" width="42.3709" height="59.253" transform="rotate(-27.8398 114.537 33.0781)" fill="#6B6A79"/>
|
||||
<rect x="117.736" y="33.8213" width="37.4055" height="54.7842" transform="rotate(-27.8398 117.736 33.8213)" fill="url(#paint0_linear_1654_6480)"/>
|
||||
<path d="M142.131 85.3257L179.598 65.5385L178.608 74.2969L141.141 94.0841L142.131 85.3257Z" fill="#35353E"/>
|
||||
<path d="M113.324 41.7669L114.683 33.0002L142.355 85.3951L140.995 94.1617L113.324 41.7669Z" fill="#4F4F58"/>
|
||||
<path d="M139.897 44.7669L145.616 55.5971L142.47 57.2589L144.363 60.8446L145.973 59.9944L145.239 58.604L146.776 57.7924L150.215 64.3052L152.484 63.1072L150.899 60.1069L155.363 57.7494L156.948 60.7497L158.997 59.6676L155.557 53.1548L159.655 50.9906L157.607 47.1122L155.704 48.117L156.593 49.8001L154.398 50.9595L148.678 40.1293L139.897 44.7669Z" fill="#F55C3B" stroke="#BB3D22" stroke-width="0.165511"/>
|
||||
<rect x="143.264" y="46.3574" width="6.12391" height="5.29636" transform="rotate(-27.8398 143.264 46.3574)" fill="white"/>
|
||||
<rect x="145.424" y="46.9014" width="2.81369" height="2.31716" transform="rotate(-27.8398 145.424 46.9014)" fill="#1A1A1A"/>
|
||||
<path d="M151.746 13.3331L114.938 32.7725L129.856 42.7687L169.226 21.9766L151.746 13.3331Z" fill="url(#paint1_linear_1654_6480)"/>
|
||||
<path d="M135.638 39.715L129.93 42.7295L131.54 45.7789C132.051 46.7458 133.586 46.6009 135.439 45.6222C137.292 44.6435 137.602 43.4339 137.248 42.7645L135.638 39.715Z" fill="url(#paint2_linear_1654_6480)"/>
|
||||
<path d="M146.761 33.841L141.053 36.8555L142.663 39.9049C143.174 40.8718 144.709 40.7269 146.562 39.7482C148.415 38.7695 148.725 37.5598 148.371 36.8905L146.761 33.841Z" fill="url(#paint3_linear_1654_6480)"/>
|
||||
<path d="M158.03 27.8898L152.322 30.9043L153.933 33.9537C154.443 34.9206 155.979 34.7758 157.832 33.797C159.685 32.8183 159.994 31.6087 159.641 30.9393L158.03 27.8898Z" fill="url(#paint4_linear_1654_6480)"/>
|
||||
<path d="M169.153 22.0158L163.445 25.0303L165.056 28.0797C165.566 29.0466 167.102 28.9017 168.955 27.923C170.808 26.9443 171.117 25.7347 170.764 25.0653L169.153 22.0158Z" fill="url(#paint5_linear_1654_6480)"/>
|
||||
<path d="M141.198 36.7785L135.49 39.793L137.101 42.8424C137.611 43.8093 139.147 43.6644 141 42.6857C142.853 41.707 143.162 40.4973 142.809 39.828L141.198 36.7785Z" fill="url(#paint6_linear_1654_6480)"/>
|
||||
<path d="M141.052 36.8562L135.49 39.7933L119.84 30.1836L125.109 27.401L141.052 36.8562Z" fill="url(#paint7_linear_1654_6480)"/>
|
||||
<path d="M152.321 30.9056L146.76 33.8428L148.37 36.8922C148.881 37.8591 150.384 37.7313 152.189 36.7777C153.995 35.824 154.285 34.6244 153.932 33.9551L152.321 30.9056Z" fill="url(#paint8_linear_1654_6480)"/>
|
||||
<path d="M152.247 30.9441L146.686 33.8812L131.035 24.2715L136.304 21.4889L152.247 30.9441Z" fill="url(#paint9_linear_1654_6480)"/>
|
||||
<path d="M163.593 24.9533L157.885 27.9678L159.495 31.0172C160.006 31.9841 161.541 31.8392 163.394 30.8605C165.247 29.8818 165.557 28.6722 165.203 28.0028L163.593 24.9533Z" fill="url(#paint10_linear_1654_6480)"/>
|
||||
<path d="M163.519 24.9919L157.957 27.9291L142.307 18.3193L147.575 15.5368L163.519 24.9919Z" fill="url(#paint11_linear_1654_6480)"/>
|
||||
<path d="M167.242 65.0115L166.628 63.8501L166.982 63.6631L165.299 60.4763L164.945 60.6633L164.332 59.502L169.112 56.9774L170.242 59.1161L168.655 59.9539L168.139 58.9766L167.282 59.4291L167.873 60.548L168.496 60.2189L168.923 61.0262L168.3 61.3554L168.965 62.6159L169.822 62.1633L169.231 61.0444L170.818 60.2067L172.022 62.487L167.242 65.0115Z" fill="#861AAC"/>
|
||||
<path d="M164.028 61.1485L163.674 61.3355L165.357 64.5222L165.711 64.3352L166.324 65.4966L163.647 66.9103L163.034 65.7489L163.374 65.5694L162.065 63.0908L162.783 67.3666L161.735 67.9201L158.592 64.9701L159.883 67.4132L160.223 67.2337L160.836 68.3951L158.513 69.6218L157.9 68.4604L158.254 68.2734L156.571 65.0867L156.217 65.2737L155.604 64.1123L158.847 62.3994L160.75 64.2199L160.292 61.6364L163.415 59.9871L164.028 61.1485Z" fill="#861AAC"/>
|
||||
<path d="M156.754 69.0652L157.037 68.9156L157.651 70.077L154.875 71.5431L154.261 70.3817L154.686 70.1573L154.274 69.6506L153.311 70.1593L153.497 70.7856L153.921 70.5612L154.535 71.7226L152.113 73.0017L151.5 71.8403L151.783 71.6907L150.683 66.7105L153.261 65.3492L156.754 69.0652ZM153.07 69.3263L153.722 68.9822L152.687 67.7263L152.616 67.7637L153.07 69.3263Z" fill="#861AAC"/>
|
||||
<path d="M150.397 71.6433L150.043 71.8303L150.791 73.2466C150.646 73.4744 150.398 73.7414 150.046 74.0478C149.697 74.3469 149.291 74.6187 148.828 74.863C147.945 75.3293 147.132 75.4632 146.387 75.2648C145.64 75.0617 145.009 74.4739 144.496 73.5014C143.969 72.5052 143.835 71.6496 144.091 70.9346C144.352 70.2171 144.945 69.614 145.871 69.1253C146.319 68.8884 146.764 68.7137 147.206 68.6012C147.648 68.4887 147.999 68.439 148.259 68.4524L149.153 70.1449L147.383 71.0799L147.207 70.747C147.102 70.5488 146.985 70.4296 146.855 70.3895C146.728 70.3421 146.574 70.3659 146.395 70.4606C146.215 70.5554 146.107 70.67 146.069 70.8046C146.034 70.932 146.068 71.0948 146.173 71.2931L147.265 73.3609C147.37 73.5592 147.486 73.682 147.614 73.7293C147.744 73.7694 147.898 73.7421 148.078 73.6474C148.257 73.5526 148.364 73.4416 148.4 73.3142C148.437 73.1796 148.404 73.0132 148.299 72.8149L148.273 72.7653L147.891 72.9673L147.333 71.9121L149.84 70.5881L150.397 71.6433Z" fill="#861AAC"/>
|
||||
<g opacity="0.2" filter="url(#filter0_f_1654_6480)">
|
||||
<path d="M157.55 87.7098L133.039 81.6848C131.267 81.2491 129.804 80.0015 129.095 78.3198L115.274 45.5559C114.579 43.9101 114.686 42.0358 115.561 40.4788L128.22 17.9628C129.492 15.701 132.116 14.5645 134.635 15.1837L158.888 21.1441C160.661 21.5797 162.123 22.8274 162.833 24.5092L176.666 57.3027C177.353 58.9316 177.257 60.7855 176.404 62.3342L163.991 84.8854C162.73 87.1755 160.089 88.3338 157.55 87.7098Z" fill="#F9E05C"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_f_1654_6480" x="66.6003" y="-33.2034" width="158.741" height="169.3" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="24.11" result="effect1_foregroundBlur_1654_6480"/>
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_1654_6480" x1="136.439" y1="33.8213" x2="136.439" y2="88.6055" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#BABABA"/>
|
||||
<stop offset="1" stop-color="#DFE1E3"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1654_6480" x1="147.01" y1="11.8096" x2="150.906" y2="32.466" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#35A5C9"/>
|
||||
<stop offset="1" stop-color="#68A1D6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1654_6480" x1="132.816" y1="40.1731" x2="136.619" y2="45.2298" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#3582C9"/>
|
||||
<stop offset="1" stop-color="#68A1D6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1654_6480" x1="143.939" y1="34.2991" x2="147.743" y2="39.3558" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#3582C9"/>
|
||||
<stop offset="1" stop-color="#68A1D6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_1654_6480" x1="155.209" y1="28.3479" x2="159.012" y2="33.4046" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#3582C9"/>
|
||||
<stop offset="1" stop-color="#68A1D6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_1654_6480" x1="166.332" y1="22.4739" x2="170.135" y2="27.5306" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#3582C9"/>
|
||||
<stop offset="1" stop-color="#68A1D6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_1654_6480" x1="137.582" y1="38.4132" x2="142.784" y2="40.552" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#CBCD54"/>
|
||||
<stop offset="1" stop-color="#E09C4D"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint7_linear_1654_6480" x1="124.833" y1="26.6989" x2="139.752" y2="30.8361" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#CBCD54"/>
|
||||
<stop offset="1" stop-color="#E09C4D"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint8_linear_1654_6480" x1="148.795" y1="32.4929" x2="153.968" y2="34.5426" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#CBCD54"/>
|
||||
<stop offset="1" stop-color="#E09C4D"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint9_linear_1654_6480" x1="136.028" y1="20.7868" x2="150.947" y2="24.924" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#CBCD54"/>
|
||||
<stop offset="1" stop-color="#E09C4D"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint10_linear_1654_6480" x1="159.976" y1="26.588" x2="165.178" y2="28.7268" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#CBCD54"/>
|
||||
<stop offset="1" stop-color="#E09C4D"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint11_linear_1654_6480" x1="147.299" y1="14.8346" x2="162.218" y2="18.9718" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#CBCD54"/>
|
||||
<stop offset="1" stop-color="#E09C4D"/>
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_1654_6480">
|
||||
<rect width="292" height="102.768" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 8.8 KiB |
38
newIDE/app/public/res/questionnaire/in-app-monetization.svg
Normal file
@@ -0,0 +1,38 @@
|
||||
<svg width="292" height="103" viewBox="0 0 292 103" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="292" height="102.768" fill="#1D1D26"/>
|
||||
<path d="M179 38.133V70.9926C179 73.9466 176.605 76.3408 173.651 76.3408H109.915C106.961 76.3408 104.566 73.9466 104.566 70.9926V38.133C104.566 35.179 106.961 32.7848 109.915 32.7848H173.651C176.605 32.7848 179 35.179 179 38.133Z" fill="#9393FF"/>
|
||||
<path d="M138.831 32.9999H110.348C107.394 32.9999 105 35.3943 105 38.3481V71.2084C105 74.1622 107.394 76.5566 110.348 76.5566H174.085C177.039 76.5566 179.434 74.1622 179.434 71.2084V38.3481C179.434 35.3943 177.039 32.9999 174.085 32.9999H172.616" stroke="#F5F1FF" stroke-width="1.78274" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M175.721 38.1321V70.9917C175.721 71.9757 174.922 72.7744 173.938 72.7744H153.077L151.509 71.883H139.255L137.508 72.7744H126.076L124.64 71.883H117.91L116.249 72.7744H110.202C109.218 72.7744 108.419 71.9757 108.419 70.9917V62.9996C108.419 62.0155 109.218 61.2169 110.202 61.2169H111.015C111.999 61.2169 112.797 60.4182 112.797 59.4341V49.6896C112.797 48.7056 111.999 47.9069 111.015 47.9069H110.202C109.218 47.9069 108.419 47.1082 108.419 46.1242V38.1321C108.419 37.148 109.218 36.3494 110.202 36.3494H131.238L132.518 37.2407H137.247L138.524 36.3494H173.938C174.922 36.3494 175.721 37.148 175.721 38.1321Z" fill="#FF9E50"/>
|
||||
<path d="M127.261 55.1826L131.943 43.0204L136.403 55.1826H127.261ZM153.24 69.9051C152.791 69.7808 152.332 69.5115 151.864 69.0975C151.237 68.5452 150.685 67.6619 150.207 66.4471L138.524 36.3494H131.238L120.389 64.1832C119.133 67.441 117.69 69.338 116.059 69.8741C115.809 69.9561 115.641 70.188 115.641 70.4508V72.1661C115.641 72.502 115.913 72.7744 116.249 72.7744H126.076C126.412 72.7744 126.684 72.502 126.684 72.1661V70.5512C126.684 70.2367 126.444 69.9718 126.131 69.9457C124.783 69.8332 123.743 69.5414 123.012 69.0699L123.002 69.0636C122.497 68.7363 122.289 68.0992 122.506 67.5369L125.989 58.4882H137.594L140.102 65.3427C140.544 66.4471 140.765 67.3304 140.765 67.9931C140.765 68.6928 140.47 69.1802 139.881 69.4564C139.374 69.694 138.567 69.8568 137.461 69.9443C137.144 69.9694 136.899 70.2331 136.899 70.5504V72.1661C136.899 72.502 137.172 72.7744 137.508 72.7744H153.077C153.413 72.7744 153.686 72.502 153.686 72.1661V70.4904C153.686 70.2169 153.503 69.9782 153.24 69.9051Z" fill="#F89226"/>
|
||||
<path d="M110.203 50.5647C110.203 51.0569 109.804 51.4561 109.311 51.4561C108.819 51.4561 108.42 51.0569 108.42 50.5647C108.42 50.0725 108.819 49.6733 109.311 49.6733C109.804 49.6733 110.203 50.0725 110.203 50.5647Z" fill="white"/>
|
||||
<path d="M112.263 65.8622V68.7444C112.263 69.2366 111.864 69.6357 111.372 69.6357C110.88 69.6357 110.48 69.2366 110.48 68.7444V65.8622C110.48 65.37 110.88 64.9708 111.372 64.9708C111.864 64.9708 112.263 65.37 112.263 65.8622Z" fill="white"/>
|
||||
<path d="M167.122 67.303C167.122 67.795 166.723 68.1943 166.231 68.1943H139.256V66.4116H166.231C166.723 66.4116 167.122 66.8109 167.122 67.303Z" fill="white"/>
|
||||
<path d="M139.256 66.4106H117.91C117.418 66.4106 117.019 66.8098 117.019 67.302C117.019 67.7942 117.418 68.1934 117.91 68.1934H139.256V66.4106Z" fill="#FF6C6C"/>
|
||||
<path d="M117.032 43.6797H124.98C125.472 43.6797 125.871 43.2805 125.871 42.7883C125.871 42.2961 125.472 41.8969 124.98 41.8969H117.032C116.54 41.8969 116.141 42.2961 116.141 42.7883C116.141 43.2805 116.54 43.6797 117.032 43.6797Z" fill="white"/>
|
||||
<path d="M129.389 43.6797H132.702C133.195 43.6797 133.594 43.2805 133.594 42.7883C133.594 42.2961 133.195 41.8969 132.702 41.8969H129.389C128.897 41.8969 128.498 42.2961 128.498 42.7883C128.498 43.2805 128.897 43.6797 129.389 43.6797Z" fill="white"/>
|
||||
<path d="M117.019 63.8684C117.019 64.3606 117.418 64.7598 117.91 64.7598C118.402 64.7598 118.801 64.3606 118.801 63.8684C118.801 63.3762 118.402 62.977 117.91 62.977C117.418 62.977 117.019 63.3762 117.019 63.8684Z" fill="white"/>
|
||||
<path d="M119.828 63.8684C119.828 64.3606 120.227 64.7598 120.719 64.7598C121.212 64.7598 121.611 64.3606 121.611 63.8684C121.611 63.3762 121.212 62.977 120.719 62.977C120.227 62.977 119.828 63.3762 119.828 63.8684Z" fill="white"/>
|
||||
<path d="M162.529 63.8684C162.529 64.3606 162.928 64.7598 163.421 64.7598C163.913 64.7598 164.312 64.3606 164.312 63.8684C164.312 63.3762 163.913 62.977 163.421 62.977C162.928 62.977 162.529 63.3762 162.529 63.8684Z" fill="white"/>
|
||||
<path d="M165.34 63.8684C165.34 64.3606 165.739 64.7598 166.231 64.7598C166.723 64.7598 167.123 64.3606 167.123 63.8684C167.123 63.3762 166.723 62.977 166.231 62.977C165.739 62.977 165.34 63.3762 165.34 63.8684Z" fill="white"/>
|
||||
<path d="M134.868 54.648L135.433 52.3747L135.998 54.648H134.868ZM137.018 51.3588C136.837 50.6293 136.185 50.1197 135.433 50.1197C134.681 50.1197 134.029 50.6293 133.849 51.3587L132.545 56.6053C132.426 57.0832 132.717 57.5667 133.195 57.6855C133.672 57.804 134.156 57.5131 134.275 57.0353L134.426 56.4308H136.441L136.591 57.0353C136.692 57.4409 137.055 57.712 137.455 57.7118C137.526 57.7118 137.599 57.7033 137.671 57.6855C138.149 57.5667 138.44 57.0832 138.321 56.6053L137.018 51.3588Z" fill="white"/>
|
||||
<path d="M142.915 55.0823C142.915 55.5499 142.535 55.9301 142.067 55.9301H141.039V51.9035H142.067C142.535 51.9035 142.915 52.2839 142.915 52.7513V55.0823ZM142.067 50.1207H140.147C139.655 50.1207 139.256 50.5199 139.256 51.0121V56.8215C139.256 57.3137 139.655 57.7129 140.147 57.7129H142.067C143.518 57.7129 144.698 56.5327 144.698 55.0823V52.7513C144.698 51.3009 143.518 50.1207 142.067 50.1207Z" fill="white"/>
|
||||
<path d="M148.842 53.0255H147.812C147.579 53.0255 147.389 52.8357 147.389 52.6023V52.3269C147.389 52.0935 147.579 51.9036 147.812 51.9036H150.157C150.649 51.9036 151.048 51.5045 151.048 51.0123C151.048 50.52 150.649 50.1209 150.157 50.1209H147.812C146.596 50.1209 145.606 51.1105 145.606 52.3269V52.6023C145.606 53.8187 146.596 54.8083 147.812 54.8083H148.842C149.076 54.8083 149.266 54.9981 149.266 55.2315V55.5069C149.266 55.7405 149.076 55.9301 148.842 55.9301H146.498C146.005 55.9301 145.606 56.3293 145.606 56.8215C145.606 57.3139 146.005 57.7129 146.498 57.7129H148.842C150.059 57.7129 151.048 56.7235 151.048 55.5069V55.2315C151.048 54.0151 150.059 53.0255 148.842 53.0255Z" fill="white"/>
|
||||
<path d="M132.83 65.8622V68.7444C132.83 69.2366 132.43 69.6357 131.938 69.6357C131.446 69.6357 131.047 69.2366 131.047 68.7444V65.8622C131.047 65.37 131.446 64.9708 131.938 64.9708C132.43 64.9708 132.83 65.37 132.83 65.8622Z" fill="#6C6CFF"/>
|
||||
<path d="M155.486 65.8622V68.7444C155.486 69.2366 155.087 69.6357 154.594 69.6357C154.102 69.6357 153.703 69.2366 153.703 68.7444V65.8622C153.703 65.37 154.102 64.9708 154.594 64.9708C155.087 64.9708 155.486 65.37 155.486 65.8622Z" fill="#6C6CFF"/>
|
||||
<path d="M215.399 32.6998C215.399 39.1614 210.161 44.3994 203.7 44.3994C197.238 44.3994 192 39.1614 192 32.6998C192 26.2382 197.238 21.0002 203.7 21.0002C210.161 21.0002 215.399 26.2382 215.399 32.6998Z" fill="#FFAA66"/>
|
||||
<path d="M212.417 32.7005C212.417 37.515 208.514 41.418 203.7 41.418C198.885 41.418 194.982 37.515 194.982 32.7005C194.982 27.886 198.885 23.9831 203.7 23.9831C208.514 23.9831 212.417 27.886 212.417 32.7005Z" fill="#F28403"/>
|
||||
<path d="M204.861 35.406H204.591V33.5912H204.861C205.361 33.5912 205.768 33.9984 205.768 34.4986C205.768 34.999 205.361 35.406 204.861 35.406ZM202.538 31.8084C202.037 31.8084 201.63 31.4014 201.63 30.901C201.63 30.4008 202.037 29.9938 202.538 29.9938H202.808V31.8084H202.538ZM204.861 31.8084H204.591V29.9938H206.276C206.768 29.9938 207.167 29.5946 207.167 29.1024C207.167 28.61 206.768 28.211 206.276 28.211H204.591V27.7629C204.591 27.2705 204.192 26.8715 203.699 26.8715C203.207 26.8715 202.808 27.2705 202.808 27.7629V28.211H202.538C201.054 28.211 199.848 29.4178 199.848 30.901C199.848 32.3844 201.054 33.5912 202.538 33.5912H202.808V35.406H201.123C200.63 35.406 200.231 35.805 200.231 36.2974C200.231 36.7898 200.63 37.1888 201.123 37.1888H202.808V37.6369C202.808 38.1292 203.207 38.5283 203.699 38.5283C204.192 38.5283 204.591 38.1292 204.591 37.6369V37.1888H204.861C206.344 37.1888 207.551 35.9818 207.551 34.4986C207.551 33.0154 206.344 31.8084 204.861 31.8084Z" fill="#FFC498"/>
|
||||
<path d="M215.102 30.0858C213.914 24.8833 209.262 21.0004 203.7 21.0004C197.238 21.0004 192 26.2384 192 32.7C192 39.1614 197.238 44.3994 203.7 44.3994C207.567 44.3994 210.995 42.5231 213.125 39.6313" stroke="#F5F1FF" stroke-width="1.78274" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M215.374 40.7461C214.884 40.7461 214.393 40.5589 214.019 40.1847L210.529 36.6953C209.781 35.9468 209.781 34.7329 210.529 33.9841C211.278 33.2357 212.492 33.2357 213.241 33.9841L215.374 36.1181L221.533 29.9589C222.282 29.2105 223.496 29.2107 224.245 29.9589C224.993 30.7076 224.993 31.9215 224.245 32.6701L216.73 40.1847C216.355 40.5589 215.865 40.7461 215.374 40.7461Z" fill="#6C6CFF"/>
|
||||
<path d="M215.374 40.7461C214.884 40.7461 214.393 40.5589 214.019 40.1847L210.529 36.6953C209.781 35.9468 209.781 34.7329 210.529 33.9841C211.278 33.2357 212.492 33.2357 213.241 33.9841L215.374 36.1181L221.533 29.9589C222.282 29.2105 223.496 29.2107 224.245 29.9589C224.993 30.7076 224.993 31.9215 224.245 32.6701L216.73 40.1847C216.355 40.5589 215.865 40.7461 215.374 40.7461Z" stroke="#F5F1FF" stroke-width="1.78274" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M191.961 68.0004L192.424 69.4252H193.922L192.71 70.3057L193.173 71.7305L191.961 70.85L190.749 71.7305L191.212 70.3057L190 69.4252H191.498L191.961 68.0004Z" stroke="#FF9C33" stroke-width="1.78274" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M169.193 14.0004L169.656 15.4252H171.154L169.943 16.3057L170.405 17.7305L169.193 16.85L167.982 17.7305L168.444 16.3057L167.232 15.4252H168.73L169.193 14.0004Z" stroke="#FF6C6C" stroke-width="1.78274" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M109.02 22.0001C109.02 23.1159 108.116 24.0205 107 24.0205C108.116 24.0205 109.02 24.925 109.02 26.041C109.02 24.925 109.925 24.0205 111.041 24.0205C109.925 24.0205 109.02 23.1159 109.02 22.0001Z" stroke="#FF6C6C" stroke-width="1.78274" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M177.02 80.0001C177.02 81.1159 176.116 82.0205 175 82.0205C176.116 82.0205 177.02 82.925 177.02 84.041C177.02 82.925 177.925 82.0205 179.041 82.0205C177.925 82.0205 177.02 81.1159 177.02 80.0001Z" stroke="#FF6C6C" stroke-width="1.78274" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M95.0204 35.0001C95.0204 36.1159 94.1158 37.0205 93 37.0205C94.1158 37.0205 95.0204 37.925 95.0204 39.041C95.0204 37.925 95.925 37.0205 97.0408 37.0205C95.925 37.0205 95.0204 36.1159 95.0204 35.0001Z" stroke="#8282FF" stroke-width="1.78274" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M238.549 54.0977C237.143 54.0977 236 52.9543 236 51.5488C236 50.1434 237.143 49 238.549 49C239.954 49 241.098 50.1434 241.098 51.5488C241.098 52.9543 239.954 54.0977 238.549 54.0977ZM238.549 50.6992C238.08 50.6992 237.699 51.0804 237.699 51.5488C237.699 52.0173 238.08 52.3984 238.549 52.3984C239.017 52.3984 239.398 52.0173 239.398 51.5488C239.398 51.0804 239.017 50.6992 238.549 50.6992Z" fill="#FF6C6C"/>
|
||||
<path d="M80.5488 68.0977C79.1434 68.0977 78 66.9543 78 65.5488C78 64.1434 79.1434 63 80.5488 63C81.9543 63 83.0977 64.1434 83.0977 65.5488C83.0977 66.9543 81.9543 68.0977 80.5488 68.0977ZM80.5488 64.6992C80.0804 64.6992 79.6992 65.0804 79.6992 65.5488C79.6992 66.0173 80.0804 66.3984 80.5488 66.3984C81.0173 66.3984 81.3984 66.0173 81.3984 65.5488C81.3984 65.0804 81.0173 64.6992 80.5488 64.6992Z" fill="#FFAA66"/>
|
||||
<path d="M212.634 87.2675C212.416 87.2675 212.199 87.1846 212.033 87.0186L210.249 85.2344C209.917 84.9027 209.917 84.3648 210.249 84.0331L212.033 82.2489C212.365 81.917 212.903 81.917 213.235 82.2489L215.019 84.0331C215.351 84.3648 215.351 84.9027 215.019 85.2344L213.235 87.0186C213.069 87.1844 212.851 87.2675 212.634 87.2675ZM212.051 84.6337L212.634 85.2164L213.217 84.6337L212.634 84.0511L212.051 84.6337Z" fill="#8282FF"/>
|
||||
<path d="M73.6339 21.2675C73.4164 21.2675 73.1991 21.1846 73.0331 21.0186L71.2489 19.2344C70.917 18.9027 70.917 18.3648 71.2489 18.0331L73.0331 16.2489C73.3649 15.917 73.9027 15.917 74.2346 16.2489L76.0188 18.0331C76.3506 18.3648 76.3506 18.9027 76.0188 19.2344L74.2346 21.0186C74.0687 21.1844 73.8514 21.2675 73.6339 21.2675ZM73.0513 18.6337L73.6339 19.2164L74.2166 18.6337L73.6339 18.0511L73.0513 18.6337Z" fill="#FFAA66"/>
|
||||
<path d="M193.634 14.2675C193.416 14.2675 193.199 14.1846 193.033 14.0186L191.249 12.2344C190.917 11.9027 190.917 11.3648 191.249 11.0331L193.033 9.24889C193.365 8.91704 193.903 8.91704 194.235 9.24889L196.019 11.0331C196.351 11.3648 196.351 11.9027 196.019 12.2344L194.235 14.0186C194.069 14.1844 193.851 14.2675 193.634 14.2675ZM193.051 11.6337L193.634 12.2164L194.217 11.6337L193.634 11.0511L193.051 11.6337Z" fill="#8282FF"/>
|
||||
</svg>
|
After Width: | Height: | Size: 13 KiB |
@@ -0,0 +1,107 @@
|
||||
<svg width="292" height="103" viewBox="0 0 292 103" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="292" height="102.768" fill="#1D1D26"/>
|
||||
<rect x="170.231" y="21.2307" width="17.0705" height="18.6852" rx="2.5375" stroke="#67EEAD" stroke-opacity="0.4" stroke-width="0.461364"/>
|
||||
<path d="M178.276 59.1528L209.093 72.8873L193.984 86.0356L163.168 72.301L178.276 59.1528Z" fill="url(#paint0_linear_1668_6860)"/>
|
||||
<path d="M193.902 85.9746L209.154 72.8027L208.923 74.4203L193.902 87.5922V85.9746Z" fill="#606972"/>
|
||||
<path d="M193.902 85.9746L164.323 72.8027V74.4203L193.902 87.5922V85.9746Z" fill="#49525B"/>
|
||||
<path d="M179.889 62.4355C180.168 62.1924 180.563 62.1333 180.902 62.2841L203.571 72.3879C204.207 72.6712 204.334 73.5188 203.809 73.9758L193.338 83.088C193.059 83.3311 192.664 83.3902 192.325 83.2394L169.656 73.1357C169.02 72.8523 168.893 72.0047 169.418 71.5477L179.889 62.4355Z" fill="url(#paint1_linear_1668_6860)" fill-opacity="0.6"/>
|
||||
<path d="M161.923 72.9531L192.786 86.582L192.395 63.3219L161.531 49.693L161.923 72.9531Z" fill="url(#paint2_linear_1668_6860)"/>
|
||||
<path d="M193.25 62.4023L192.325 63.3267L192.787 86.6663L193.712 85.7419L193.25 62.4023Z" fill="#677079"/>
|
||||
<path d="M193.249 62.4029L192.325 63.3273L161.591 49.6933L162.515 49L193.249 62.4029Z" fill="#9AA2A9"/>
|
||||
<rect x="190.068" y="39.068" width="27.8641" height="14.2718" rx="3.3301" fill="#ACFF58" fill-opacity="0.2" stroke="#FFF500" stroke-width="0.135922"/>
|
||||
<path d="M209.452 45.5079V45.8066C209.365 45.7557 209.277 45.7176 209.189 45.6921C209.1 45.6667 209.01 45.654 208.918 45.654C208.78 45.654 208.676 45.6766 208.608 45.722C208.54 45.7662 208.507 45.8343 208.507 45.9261C208.507 46.009 208.532 46.071 208.583 46.1119C208.634 46.1528 208.761 46.1926 208.963 46.2314L209.086 46.2546C209.237 46.2833 209.352 46.3409 209.429 46.4271C209.508 46.5134 209.547 46.6257 209.547 46.764C209.547 46.9476 209.482 47.0914 209.351 47.1954C209.221 47.2982 209.039 47.3497 208.807 47.3497C208.715 47.3497 208.619 47.3397 208.518 47.3198C208.418 47.301 208.309 47.2722 208.191 47.2335V46.9183C208.305 46.9769 208.414 47.0211 208.518 47.051C208.622 47.0798 208.721 47.0941 208.814 47.0941C208.949 47.0941 209.053 47.067 209.127 47.0128C209.201 46.9575 209.238 46.8807 209.238 46.7822C209.238 46.6406 209.103 46.5427 208.832 46.4885L208.819 46.4852L208.704 46.462C208.528 46.4277 208.4 46.3702 208.319 46.2894C208.238 46.2076 208.198 46.0964 208.198 45.9559C208.198 45.7778 208.258 45.6407 208.379 45.5444C208.499 45.4471 208.671 45.3984 208.895 45.3984C208.994 45.3984 209.09 45.4078 209.182 45.4266C209.274 45.4443 209.364 45.4714 209.452 45.5079Z" fill="#76FF9C"/>
|
||||
<path d="M206.678 46.6297C206.678 46.7668 206.702 46.8703 206.752 46.9399C206.803 47.0096 206.878 47.0445 206.976 47.0445H207.333V47.3016H206.946C206.764 47.3016 206.622 47.2436 206.522 47.1274C206.422 47.0102 206.372 46.8443 206.372 46.6297V44.9489H205.883V44.71H206.678V46.6297Z" fill="#76FF9C"/>
|
||||
<path d="M204.153 45.6573C203.998 45.6573 203.881 45.7176 203.801 45.8381C203.722 45.9587 203.682 46.1373 203.682 46.3741C203.682 46.6097 203.722 46.7883 203.801 46.91C203.881 47.0305 203.998 47.0908 204.153 47.0908C204.309 47.0908 204.427 47.0305 204.507 46.91C204.586 46.7883 204.626 46.6097 204.626 46.3741C204.626 46.1373 204.586 45.9587 204.507 45.8381C204.427 45.7176 204.309 45.6573 204.153 45.6573ZM204.153 45.3984C204.411 45.3984 204.608 45.482 204.744 45.649C204.881 45.816 204.95 46.0577 204.95 46.3741C204.95 46.6915 204.882 46.9338 204.745 47.1008C204.609 47.2667 204.412 47.3497 204.153 47.3497C203.895 47.3497 203.699 47.2667 203.562 47.1008C203.426 46.9338 203.358 46.6915 203.358 46.3741C203.358 46.0577 203.426 45.816 203.562 45.649C203.699 45.482 203.895 45.3984 204.153 45.3984Z" fill="#76FF9C"/>
|
||||
<path d="M201.801 45.6573C201.646 45.6573 201.529 45.7176 201.449 45.8381C201.369 45.9587 201.329 46.1373 201.329 46.3741C201.329 46.6097 201.369 46.7883 201.449 46.91C201.529 47.0305 201.646 47.0908 201.801 47.0908C201.957 47.0908 202.074 47.0305 202.154 46.91C202.234 46.7883 202.273 46.6097 202.273 46.3741C202.273 46.1373 202.234 45.9587 202.154 45.8381C202.074 45.7176 201.957 45.6573 201.801 45.6573ZM201.801 45.3984C202.058 45.3984 202.255 45.482 202.391 45.649C202.528 45.816 202.597 46.0577 202.597 46.3741C202.597 46.6915 202.529 46.9338 202.393 47.1008C202.257 47.2667 202.059 47.3497 201.801 47.3497C201.543 47.3497 201.346 47.2667 201.21 47.1008C201.074 46.9338 201.006 46.6915 201.006 46.3741C201.006 46.0577 201.074 45.816 201.21 45.649C201.346 45.482 201.543 45.3984 201.801 45.3984Z" fill="#76FF9C"/>
|
||||
<path d="M198.503 44.8242H200.393V45.1063H199.618V47.3014H199.281V45.1063H198.503V44.8242Z" fill="#76FF9C"/>
|
||||
<line x1="227.341" y1="52.3659" x2="227.341" y2="66.0244" stroke="#E27526" stroke-opacity="0.3" stroke-width="0.731707" stroke-linecap="round"/>
|
||||
<circle cx="227.341" cy="58.4635" r="1.34146" fill="#F57600"/>
|
||||
<line x1="231" y1="52.3659" x2="231" y2="66.0244" stroke="#E27526" stroke-opacity="0.3" stroke-width="0.731707" stroke-linecap="round"/>
|
||||
<circle cx="231" cy="61.8776" r="1.34146" fill="#F57600"/>
|
||||
<line x1="234.659" y1="52.3659" x2="234.659" y2="66.0244" stroke="#E27526" stroke-opacity="0.3" stroke-width="0.731707" stroke-linecap="round"/>
|
||||
<circle cx="234.659" cy="55.2926" r="1.34146" fill="#F57600"/>
|
||||
<rect x="197.087" y="21.0871" width="32.9051" height="2.08922" rx="1.04461" fill="#32F28B" fill-opacity="0.2" stroke="#49FF92" stroke-width="0.174101"/>
|
||||
<rect x="197" y="21" width="12.1871" height="2.26332" rx="1.13166" fill="#32F296" fill-opacity="0.7"/>
|
||||
<rect x="209.651" y="28.6251" width="32.9051" height="2.08922" rx="1.04461" fill="#F2A632" fill-opacity="0.2" stroke="#FFAB49" stroke-width="0.174101"/>
|
||||
<rect x="209.563" y="28.5381" width="22.2417" height="2.26332" rx="1.13166" fill="#F2A632" fill-opacity="0.7"/>
|
||||
<g opacity="0.8">
|
||||
<path d="M57.7561 29.8091L56.3043 28.3613V21.087C56.3043 20.9813 56.2613 20.8835 56.1909 20.8091L51.4952 16.1135C51.4209 16.043 51.323 16 51.2174 16H44.9565C43.8765 16 43 16.8765 43 17.9565V32.0435C43 33.1235 43.8765 34 44.9565 34H54.3478C55.4278 34 56.3043 33.1235 56.3043 32.0435V29.4648L57.2004 30.3648C57.2787 30.4391 57.3765 30.4783 57.4783 30.4783C57.58 30.4783 57.6778 30.4391 57.7561 30.3648C57.9087 30.2122 57.9087 29.9617 57.7561 29.8091ZM51.6087 17.3343L54.97 20.6957H52.7826C52.137 20.6957 51.6087 20.1674 51.6087 19.5217V17.3343ZM55.5217 28.3613L54.07 29.8091C53.9174 29.9617 53.9174 30.2122 54.07 30.3648C54.2226 30.5174 54.473 30.5174 54.6257 30.3648L55.5217 29.4648V32.0435C55.5217 32.6891 54.9935 33.2174 54.3478 33.2174H44.9565C44.3109 33.2174 43.7826 32.6891 43.7826 32.0435V17.9565C43.7826 17.3109 44.3109 16.7826 44.9565 16.7826H50.8261V19.5217C50.8261 20.6017 51.7026 21.4783 52.7826 21.4783H55.5217V28.3613Z" fill="url(#paint3_linear_1668_6860)" fill-opacity="0.95"/>
|
||||
<path d="M54.9697 20.6953H52.7823C52.1367 20.6953 51.6084 20.167 51.6084 19.5214V17.334L54.9697 20.6953Z" fill="#98F8F2" fill-opacity="0.3"/>
|
||||
<path d="M55.5223 28.3619V21.4789H52.7832C51.7032 21.4789 50.8267 20.6023 50.8267 19.5223V16.7832H44.9571C44.3115 16.7832 43.7832 17.3115 43.7832 17.9571V32.0441C43.7832 32.6897 44.3115 33.218 44.9571 33.218H54.3484C54.9941 33.218 55.5223 32.6897 55.5223 32.0441V29.4654L54.6262 30.3654C54.4736 30.518 54.2232 30.518 54.0706 30.3654C53.918 30.2128 53.918 29.9623 54.0706 29.8097L55.5223 28.3619ZM50.4354 29.6962H46.131C45.9158 29.6962 45.7397 29.5202 45.7397 29.3049C45.7397 29.0897 45.9158 28.9136 46.131 28.9136H50.4354C50.6506 28.9136 50.8267 29.0897 50.8267 29.3049C50.8267 29.5202 50.6506 29.6962 50.4354 29.6962ZM50.4354 27.3484H46.131C45.9158 27.3484 45.7397 27.1723 45.7397 26.9571C45.7397 26.7419 45.9158 26.5658 46.131 26.5658H50.4354C50.6506 26.5658 50.8267 26.7419 50.8267 26.9571C50.8267 27.1723 50.6506 27.3484 50.4354 27.3484ZM50.4354 25.0006H46.131C45.9158 25.0006 45.7397 24.8245 45.7397 24.6093C45.7397 24.3941 45.9158 24.218 46.131 24.218H50.4354C50.6506 24.218 50.8267 24.3941 50.8267 24.6093C50.8267 24.8245 50.6506 25.0006 50.4354 25.0006ZM53.1745 29.6962H52.0006C51.7854 29.6962 51.6093 29.5202 51.6093 29.3049C51.6093 29.0897 51.7854 28.9136 52.0006 28.9136H53.1745C53.3897 28.9136 53.5658 29.0897 53.5658 29.3049C53.5658 29.5202 53.3897 29.6962 53.1745 29.6962ZM53.1745 27.3484H52.0006C51.7854 27.3484 51.6093 27.1723 51.6093 26.9571C51.6093 26.7419 51.7854 26.5658 52.0006 26.5658H53.1745C53.3897 26.5658 53.5658 26.7419 53.5658 26.9571C53.5658 27.1723 53.3897 27.3484 53.1745 27.3484ZM53.1745 25.0006H52.0006C51.7854 25.0006 51.6093 24.8245 51.6093 24.6093C51.6093 24.3941 51.7854 24.218 52.0006 24.218H53.1745C53.3897 24.218 53.5658 24.3941 53.5658 24.6093C53.5658 24.8245 53.3897 25.0006 53.1745 25.0006Z" fill="url(#paint4_linear_1668_6860)" fill-opacity="0.1"/>
|
||||
<g opacity="0.74">
|
||||
<path d="M50.8262 24.6091C50.8262 24.8243 50.6501 25.0004 50.4349 25.0004H46.1306C45.9153 25.0004 45.7393 24.8243 45.7393 24.6091C45.7393 24.3939 45.9153 24.2178 46.1306 24.2178H50.4349C50.6501 24.2178 50.8262 24.3939 50.8262 24.6091Z" fill="#73FFE6"/>
|
||||
<path d="M53.5649 24.6091C53.5649 24.8243 53.3888 25.0004 53.1736 25.0004H51.9997C51.7845 25.0004 51.6084 24.8243 51.6084 24.6091C51.6084 24.3939 51.7845 24.2178 51.9997 24.2178H53.1736C53.3888 24.2178 53.5649 24.3939 53.5649 24.6091Z" fill="#73FFE6"/>
|
||||
<path d="M50.8262 26.9567C50.8262 27.172 50.6501 27.348 50.4349 27.348H46.1306C45.9153 27.348 45.7393 27.172 45.7393 26.9567C45.7393 26.7415 45.9153 26.5654 46.1306 26.5654H50.4349C50.6501 26.5654 50.8262 26.7415 50.8262 26.9567Z" fill="#73FFE6"/>
|
||||
<path d="M53.5649 26.9567C53.5649 27.172 53.3888 27.348 53.1736 27.348H51.9997C51.7845 27.348 51.6084 27.172 51.6084 26.9567C51.6084 26.7415 51.7845 26.5654 51.9997 26.5654H53.1736C53.3888 26.5654 53.5649 26.7415 53.5649 26.9567Z" fill="#73FFE6"/>
|
||||
<path d="M50.8262 29.3044C50.8262 29.5196 50.6501 29.6957 50.4349 29.6957H46.1306C45.9153 29.6957 45.7393 29.5196 45.7393 29.3044C45.7393 29.0892 45.9153 28.9131 46.1306 28.9131H50.4349C50.6501 28.9131 50.8262 29.0892 50.8262 29.3044Z" fill="#73FFE6"/>
|
||||
<path d="M53.5659 29.3044C53.5659 29.5196 53.3898 29.6957 53.1746 29.6957H52.0007C51.7855 29.6957 51.6094 29.5196 51.6094 29.3044C51.6094 29.0892 51.7855 28.9131 52.0007 28.9131H53.1746C53.3898 28.9131 53.5659 29.0892 53.5659 29.3044Z" fill="#73FFE6"/>
|
||||
</g>
|
||||
</g>
|
||||
<g opacity="0.8">
|
||||
<path d="M83.7561 52.8091L82.3043 51.3613V44.087C82.3043 43.9813 82.2613 43.8835 82.1909 43.8091L77.4952 39.1135C77.4209 39.043 77.323 39 77.2174 39H70.9565C69.8765 39 69 39.8765 69 40.9565V55.0435C69 56.1235 69.8765 57 70.9565 57H80.3478C81.4278 57 82.3043 56.1235 82.3043 55.0435V52.4648L83.2004 53.3648C83.2787 53.4391 83.3765 53.4783 83.4783 53.4783C83.58 53.4783 83.6778 53.4391 83.7561 53.3648C83.9087 53.2122 83.9087 52.9617 83.7561 52.8091ZM77.6087 40.3343L80.97 43.6957H78.7826C78.137 43.6957 77.6087 43.1674 77.6087 42.5217V40.3343ZM81.5217 51.3613L80.07 52.8091C79.9174 52.9617 79.9174 53.2122 80.07 53.3648C80.2226 53.5174 80.473 53.5174 80.6257 53.3648L81.5217 52.4648V55.0435C81.5217 55.6891 80.9935 56.2174 80.3478 56.2174H70.9565C70.3109 56.2174 69.7826 55.6891 69.7826 55.0435V40.9565C69.7826 40.3109 70.3109 39.7826 70.9565 39.7826H76.8261V42.5217C76.8261 43.6017 77.7026 44.4783 78.7826 44.4783H81.5217V51.3613Z" fill="url(#paint5_linear_1668_6860)" fill-opacity="0.95"/>
|
||||
<path d="M80.9697 43.6953H78.7823C78.1367 43.6953 77.6084 43.167 77.6084 42.5214V40.334L80.9697 43.6953Z" fill="#98F8F2" fill-opacity="0.3"/>
|
||||
<path d="M81.5214 51.3619V44.4789H78.7822C77.7022 44.4789 76.8257 43.6023 76.8257 42.5223V39.7832H70.9561C70.3105 39.7832 69.7822 40.3115 69.7822 40.9571V55.0441C69.7822 55.6897 70.3105 56.218 70.9561 56.218H80.3474C80.9931 56.218 81.5214 55.6897 81.5214 55.0441V52.4654L80.6253 53.3654C80.4727 53.518 80.2222 53.518 80.0696 53.3654C79.917 53.2128 79.917 52.9623 80.0696 52.8097L81.5214 51.3619ZM76.4344 52.6962H72.1301C71.9148 52.6962 71.7387 52.5202 71.7387 52.3049C71.7387 52.0897 71.9148 51.9136 72.1301 51.9136H76.4344C76.6496 51.9136 76.8257 52.0897 76.8257 52.3049C76.8257 52.5202 76.6496 52.6962 76.4344 52.6962ZM76.4344 50.3484H72.1301C71.9148 50.3484 71.7387 50.1723 71.7387 49.9571C71.7387 49.7419 71.9148 49.5658 72.1301 49.5658H76.4344C76.6496 49.5658 76.8257 49.7419 76.8257 49.9571C76.8257 50.1723 76.6496 50.3484 76.4344 50.3484ZM76.4344 48.0006H72.1301C71.9148 48.0006 71.7387 47.8245 71.7387 47.6093C71.7387 47.3941 71.9148 47.218 72.1301 47.218H76.4344C76.6496 47.218 76.8257 47.3941 76.8257 47.6093C76.8257 47.8245 76.6496 48.0006 76.4344 48.0006ZM79.1735 52.6962H77.9996C77.7844 52.6962 77.6083 52.5202 77.6083 52.3049C77.6083 52.0897 77.7844 51.9136 77.9996 51.9136H79.1735C79.3887 51.9136 79.5648 52.0897 79.5648 52.3049C79.5648 52.5202 79.3887 52.6962 79.1735 52.6962ZM79.1735 50.3484H77.9996C77.7844 50.3484 77.6083 50.1723 77.6083 49.9571C77.6083 49.7419 77.7844 49.5658 77.9996 49.5658H79.1735C79.3887 49.5658 79.5648 49.7419 79.5648 49.9571C79.5648 50.1723 79.3887 50.3484 79.1735 50.3484ZM79.1735 48.0006H77.9996C77.7844 48.0006 77.6083 47.8245 77.6083 47.6093C77.6083 47.3941 77.7844 47.218 77.9996 47.218H79.1735C79.3887 47.218 79.5648 47.3941 79.5648 47.6093C79.5648 47.8245 79.3887 48.0006 79.1735 48.0006Z" fill="url(#paint6_linear_1668_6860)" fill-opacity="0.1"/>
|
||||
<g opacity="0.74">
|
||||
<path d="M76.8262 47.6091C76.8262 47.8243 76.6501 48.0004 76.4349 48.0004H72.1306C71.9153 48.0004 71.7393 47.8243 71.7393 47.6091C71.7393 47.3939 71.9153 47.2178 72.1306 47.2178H76.4349C76.6501 47.2178 76.8262 47.3939 76.8262 47.6091Z" fill="#73FFE6"/>
|
||||
<path d="M79.5649 47.6091C79.5649 47.8243 79.3888 48.0004 79.1736 48.0004H77.9997C77.7845 48.0004 77.6084 47.8243 77.6084 47.6091C77.6084 47.3939 77.7845 47.2178 77.9997 47.2178H79.1736C79.3888 47.2178 79.5649 47.3939 79.5649 47.6091Z" fill="#73FFE6"/>
|
||||
<path d="M76.8262 49.9567C76.8262 50.172 76.6501 50.348 76.4349 50.348H72.1306C71.9153 50.348 71.7393 50.172 71.7393 49.9567C71.7393 49.7415 71.9153 49.5654 72.1306 49.5654H76.4349C76.6501 49.5654 76.8262 49.7415 76.8262 49.9567Z" fill="#73FFE6"/>
|
||||
<path d="M79.5649 49.9567C79.5649 50.172 79.3888 50.348 79.1736 50.348H77.9997C77.7845 50.348 77.6084 50.172 77.6084 49.9567C77.6084 49.7415 77.7845 49.5654 77.9997 49.5654H79.1736C79.3888 49.5654 79.5649 49.7415 79.5649 49.9567Z" fill="#73FFE6"/>
|
||||
<path d="M76.8262 52.3044C76.8262 52.5196 76.6501 52.6957 76.4349 52.6957H72.1306C71.9153 52.6957 71.7393 52.5196 71.7393 52.3044C71.7393 52.0892 71.9153 51.9131 72.1306 51.9131H76.4349C76.6501 51.9131 76.8262 52.0892 76.8262 52.3044Z" fill="#73FFE6"/>
|
||||
<path d="M79.5649 52.3044C79.5649 52.5196 79.3888 52.6957 79.1736 52.6957H77.9997C77.7845 52.6957 77.6084 52.5196 77.6084 52.3044C77.6084 52.0892 77.7845 51.9131 77.9997 51.9131H79.1736C79.3888 51.9131 79.5649 52.0892 79.5649 52.3044Z" fill="#73FFE6"/>
|
||||
</g>
|
||||
</g>
|
||||
<g opacity="0.8">
|
||||
<path d="M45.7561 80.8091L44.3043 79.3613V72.087C44.3043 71.9813 44.2613 71.8835 44.1909 71.8091L39.4952 67.1135C39.4209 67.043 39.323 67 39.2174 67H32.9565C31.8765 67 31 67.8765 31 68.9565V83.0435C31 84.1235 31.8765 85 32.9565 85H42.3478C43.4278 85 44.3043 84.1235 44.3043 83.0435V80.4648L45.2004 81.3648C45.2787 81.4391 45.3765 81.4783 45.4783 81.4783C45.58 81.4783 45.6778 81.4391 45.7561 81.3648C45.9087 81.2122 45.9087 80.9617 45.7561 80.8091ZM39.6087 68.3343L42.97 71.6957H40.7826C40.137 71.6957 39.6087 71.1674 39.6087 70.5217V68.3343ZM43.5217 79.3613L42.07 80.8091C41.9174 80.9617 41.9174 81.2122 42.07 81.3648C42.2226 81.5174 42.473 81.5174 42.6257 81.3648L43.5217 80.4648V83.0435C43.5217 83.6891 42.9935 84.2174 42.3478 84.2174H32.9565C32.3109 84.2174 31.7826 83.6891 31.7826 83.0435V68.9565C31.7826 68.3109 32.3109 67.7826 32.9565 67.7826H38.8261V70.5217C38.8261 71.6017 39.7026 72.4783 40.7826 72.4783H43.5217V79.3613Z" fill="url(#paint7_linear_1668_6860)" fill-opacity="0.95"/>
|
||||
<path d="M42.9697 71.6953H40.7823C40.1367 71.6953 39.6084 71.167 39.6084 70.5214V68.334L42.9697 71.6953Z" fill="#98F8F2" fill-opacity="0.3"/>
|
||||
<path d="M43.5223 79.3619V72.4789H40.7832C39.7032 72.4789 38.8267 71.6023 38.8267 70.5223V67.7832H32.9571C32.3115 67.7832 31.7832 68.3115 31.7832 68.9571V83.0441C31.7832 83.6897 32.3115 84.218 32.9571 84.218H42.3484C42.9941 84.218 43.5223 83.6897 43.5223 83.0441V80.4654L42.6262 81.3654C42.4736 81.518 42.2232 81.518 42.0706 81.3654C41.918 81.2128 41.918 80.9623 42.0706 80.8097L43.5223 79.3619ZM38.4354 80.6962H34.131C33.9158 80.6962 33.7397 80.5202 33.7397 80.3049C33.7397 80.0897 33.9158 79.9136 34.131 79.9136H38.4354C38.6506 79.9136 38.8267 80.0897 38.8267 80.3049C38.8267 80.5202 38.6506 80.6962 38.4354 80.6962ZM38.4354 78.3484H34.131C33.9158 78.3484 33.7397 78.1723 33.7397 77.9571C33.7397 77.7419 33.9158 77.5658 34.131 77.5658H38.4354C38.6506 77.5658 38.8267 77.7419 38.8267 77.9571C38.8267 78.1723 38.6506 78.3484 38.4354 78.3484ZM38.4354 76.0006H34.131C33.9158 76.0006 33.7397 75.8245 33.7397 75.6093C33.7397 75.3941 33.9158 75.218 34.131 75.218H38.4354C38.6506 75.218 38.8267 75.3941 38.8267 75.6093C38.8267 75.8245 38.6506 76.0006 38.4354 76.0006ZM41.1745 80.6962H40.0006C39.7854 80.6962 39.6093 80.5202 39.6093 80.3049C39.6093 80.0897 39.7854 79.9136 40.0006 79.9136H41.1745C41.3897 79.9136 41.5658 80.0897 41.5658 80.3049C41.5658 80.5202 41.3897 80.6962 41.1745 80.6962ZM41.1745 78.3484H40.0006C39.7854 78.3484 39.6093 78.1723 39.6093 77.9571C39.6093 77.7419 39.7854 77.5658 40.0006 77.5658H41.1745C41.3897 77.5658 41.5658 77.7419 41.5658 77.9571C41.5658 78.1723 41.3897 78.3484 41.1745 78.3484ZM41.1745 76.0006H40.0006C39.7854 76.0006 39.6093 75.8245 39.6093 75.6093C39.6093 75.3941 39.7854 75.218 40.0006 75.218H41.1745C41.3897 75.218 41.5658 75.3941 41.5658 75.6093C41.5658 75.8245 41.3897 76.0006 41.1745 76.0006Z" fill="url(#paint8_linear_1668_6860)" fill-opacity="0.1"/>
|
||||
<g opacity="0.74">
|
||||
<path d="M38.8252 75.6091C38.8252 75.8243 38.6492 76.0004 38.4339 76.0004H34.1296C33.9144 76.0004 33.7383 75.8243 33.7383 75.6091C33.7383 75.3939 33.9144 75.2178 34.1296 75.2178H38.4339C38.6492 75.2178 38.8252 75.3939 38.8252 75.6091Z" fill="#73FFE6"/>
|
||||
<path d="M41.5639 75.6091C41.5639 75.8243 41.3879 76.0004 41.1726 76.0004H39.9987C39.7835 76.0004 39.6074 75.8243 39.6074 75.6091C39.6074 75.3939 39.7835 75.2178 39.9987 75.2178H41.1726C41.3879 75.2178 41.5639 75.3939 41.5639 75.6091Z" fill="#73FFE6"/>
|
||||
<path d="M38.8252 77.9567C38.8252 78.172 38.6492 78.348 38.4339 78.348H34.1296C33.9144 78.348 33.7383 78.172 33.7383 77.9567C33.7383 77.7415 33.9144 77.5654 34.1296 77.5654H38.4339C38.6492 77.5654 38.8252 77.7415 38.8252 77.9567Z" fill="#73FFE6"/>
|
||||
<path d="M41.5639 77.9567C41.5639 78.172 41.3879 78.348 41.1726 78.348H39.9987C39.7835 78.348 39.6074 78.172 39.6074 77.9567C39.6074 77.7415 39.7835 77.5654 39.9987 77.5654H41.1726C41.3879 77.5654 41.5639 77.7415 41.5639 77.9567Z" fill="#73FFE6"/>
|
||||
<path d="M38.8252 80.3044C38.8252 80.5196 38.6492 80.6957 38.4339 80.6957H34.1296C33.9144 80.6957 33.7383 80.5196 33.7383 80.3044C33.7383 80.0892 33.9144 79.9131 34.1296 79.9131H38.4339C38.6492 79.9131 38.8252 80.0892 38.8252 80.3044Z" fill="#73FFE6"/>
|
||||
<path d="M41.5639 80.3044C41.5639 80.5196 41.3879 80.6957 41.1726 80.6957H39.9987C39.7835 80.6957 39.6074 80.5196 39.6074 80.3044C39.6074 80.0892 39.7835 79.9131 39.9987 79.9131H41.1726C41.3879 79.9131 41.5639 80.0892 41.5639 80.3044Z" fill="#73FFE6"/>
|
||||
</g>
|
||||
</g>
|
||||
<line x1="114" y1="59.5" x2="159" y2="59.5" stroke="#5FFAD4"/>
|
||||
<line x1="87" y1="50.75" x2="114" y2="50.75" stroke="#5FFAD4" stroke-width="0.5" stroke-dasharray="3.2 3.2"/>
|
||||
<path d="M61.3206 25H114V80H47" stroke="#5FFAD4" stroke-width="0.5" stroke-dasharray="3.2 3.2"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_1668_6860" x1="189.827" y1="64.3006" x2="182.434" y2="80.8877" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#818B94"/>
|
||||
<stop offset="1" stop-color="#858C92"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1668_6860" x1="189.563" y1="66.1443" x2="183.664" y2="79.3792" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#677179"/>
|
||||
<stop offset="1" stop-color="#6A747B"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1668_6860" x1="172.893" y1="77.7973" x2="181.425" y2="58.4777" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#8E9092"/>
|
||||
<stop offset="1" stop-color="#BCC6CF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1668_6860" x1="50.4353" y1="16" x2="50.4353" y2="34" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#33F7B0"/>
|
||||
<stop offset="1" stop-color="#33A5F7"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_1668_6860" x1="49.6528" y1="16.7832" x2="49.6528" y2="33.218" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F5FCCC"/>
|
||||
<stop offset="1" stop-color="#8CFFE3"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_1668_6860" x1="76.4353" y1="39" x2="76.4353" y2="57" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#33F7B0"/>
|
||||
<stop offset="1" stop-color="#33A5F7"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_1668_6860" x1="75.6518" y1="39.7832" x2="75.6518" y2="56.218" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F5FCCC"/>
|
||||
<stop offset="1" stop-color="#8CFFE3"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint7_linear_1668_6860" x1="38.4353" y1="67" x2="38.4353" y2="85" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#33F7B0"/>
|
||||
<stop offset="1" stop-color="#33A5F7"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint8_linear_1668_6860" x1="37.6528" y1="67.7832" x2="37.6528" y2="84.218" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F5FCCC"/>
|
||||
<stop offset="1" stop-color="#8CFFE3"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 21 KiB |
102
newIDE/app/public/res/questionnaire/interactive-content.svg
Normal file
@@ -0,0 +1,102 @@
|
||||
<svg width="292" height="103" viewBox="0 0 292 103" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1654_6111)">
|
||||
<rect width="292" height="102.768" fill="#1D1D26"/>
|
||||
<g filter="url(#filter0_f_1654_6111)">
|
||||
<rect x="167" y="8" width="67.9769" height="48.1233" rx="5.39499" fill="#DBFF00" fill-opacity="0.1"/>
|
||||
</g>
|
||||
<path d="M170.662 76H123.338C123.119 76 122.906 76.072 122.731 76.205L106.352 88.705C105.591 89.2855 106.002 90.5 106.959 90.5H187.041C187.998 90.5 188.409 89.2855 187.648 88.705L171.269 76.205C171.094 76.072 170.881 76 170.662 76Z" fill="#B658FF" fill-opacity="0.2" stroke="#BD00FF" stroke-width="0.22"/>
|
||||
<path d="M151.514 83.6213C156.202 84.1926 156.734 71.6482 156.5 70.0187C153.821 67.7415 150.786 68.9483 149.532 70.4126C150.588 76.6273 146.826 83.0499 151.514 83.6213Z" fill="#DE493C"/>
|
||||
<path d="M168.124 45.1419C171.379 48.4591 160.31 56.3397 158.841 57.0233C155.054 55.5084 158.668 50.3103 159.2 48.4889C164.89 46.0179 165.81 42.7836 168.124 45.1419Z" fill="url(#paint0_linear_1654_6111)"/>
|
||||
<path d="M158.48 32.0135C152.061 21.8117 142.874 21.8114 136.963 26.9268C131.361 32.8699 135.388 39.7085 135.388 45.491C135.388 51.0485 134.782 53.4731 133.965 59.9513C133.118 66.6562 135.86 76.5338 147.105 75.6514C158.351 74.769 160.657 60.7309 161.204 56.3509C161.752 51.9709 163.784 40.4442 158.48 32.0135Z" fill="url(#paint1_linear_1654_6111)"/>
|
||||
<path d="M153.076 42.8357C155.973 42.0929 157.833 40.0821 158.463 38.7596C157.675 37.0904 155.55 33.4137 153.351 32.0604C150.604 30.3689 146.953 32.2653 145.398 35.176C144.154 37.5046 143.844 40.0567 143.439 41.8721C145.227 42.8149 149.146 43.8438 153.076 42.8357Z" fill="#FEF9F5"/>
|
||||
<mask id="mask0_1654_6111" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="146" y="32" width="11" height="12">
|
||||
<path d="M156.245 37.6045C156.527 40.4589 154.765 42.9697 152.308 43.2125C149.852 43.4552 146.928 41.5057 146.645 38.6513C146.363 35.7968 148.831 33.1183 151.287 32.8756C153.743 32.6328 155.963 34.75 156.245 37.6045Z" fill="black"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_1654_6111)">
|
||||
<path d="M153.21 44.0145C156.008 42.958 157.967 40.0489 158.597 38.7264C157.809 37.0572 155.683 33.3805 153.485 32.0273C150.738 30.3357 147.087 32.2322 145.532 35.1429C144.288 37.4714 143.484 40.9213 142.967 42.4449C144.755 43.3876 149.713 45.335 153.21 44.0145Z" fill="black"/>
|
||||
</g>
|
||||
<path d="M128.612 63.9984C131.764 67.4146 139.279 59.371 140.142 58.0002C140.961 53.148 137.418 52.5317 135.544 52.8301C132.375 58.1634 125.461 60.5823 128.612 63.9984Z" fill="#F5543C"/>
|
||||
<path d="M142.122 83.6213C146.809 84.1926 147.341 71.6482 147.108 70.0187C144.429 67.7415 141.394 68.9483 140.139 70.4126C141.195 76.6273 137.434 83.0499 142.122 83.6213Z" fill="url(#paint2_linear_1654_6111)"/>
|
||||
<path d="M132.594 64.4234C139.405 60.0972 140.362 57.7756 140.858 57.0751C140.838 57.6325 140.272 59.3538 139.009 60.8104C137.935 62.0483 134.586 64.3712 132.594 64.4234Z" fill="#DB422A"/>
|
||||
<g filter="url(#filter1_f_1654_6111)">
|
||||
<rect x="166" y="9" width="67.9769" height="48.1233" rx="5.39499" fill="#DBFF00" fill-opacity="0.2"/>
|
||||
</g>
|
||||
<rect x="171.108" y="12.1079" width="58.2659" height="41.4335" rx="5.28709" fill="#19B892" fill-opacity="0.2" stroke="#7FFF00" stroke-width="0.2158"/>
|
||||
<path d="M199.051 29.3621C193.978 34.5762 195.322 39.0693 196.314 40.9867C202.019 50.7122 216.276 42.3824 221.223 37.5234C225.18 33.6363 225.427 27.327 223.05 24.5745C219.284 26.1862 215.959 26.4125 213.492 26.2662C208.92 25.995 203.335 24.958 199.051 29.3621Z" stroke="#76FF9C" stroke-width="0.33" stroke-dasharray="0.66 0.66"/>
|
||||
<path d="M195.55 38.534C195.909 37.6378 198.274 35.6889 202.627 34.6484C208.068 33.3478 213.238 36.6187 218.847 31.305" stroke="#76FF9C" stroke-width="0.33" stroke-dasharray="0.66 0.66"/>
|
||||
<path d="M215.145 29.4621L210.757 34.4247C212.363 35.1082 216.064 36.3346 218.017 35.7729" stroke="#76FF9C" stroke-width="0.33" stroke-dasharray="0.66 0.66"/>
|
||||
<path d="M207.119 29.1269C205.946 30.2572 203.538 32.8529 203.289 34.1933C203.64 35.414 205.104 38.1122 208.148 39.1397" stroke="#76FF9C" stroke-width="0.33" stroke-dasharray="0.66 0.66"/>
|
||||
<path d="M200.56 30.221C199.794 31.2343 198.159 33.8193 198.302 36.157C198.619 37.5638 199.901 40.6137 202.499 41.5582" stroke="#76FF9C" stroke-width="0.33" stroke-dasharray="0.66 0.66"/>
|
||||
<path d="M193.372 22.9365H194.299V24.0008H193.372V22.9365Z" fill="#76FF9C"/>
|
||||
<path d="M190.233 21.3895C189.988 21.3895 189.801 21.4852 189.675 21.6766C189.549 21.868 189.485 22.1516 189.485 22.5275C189.485 22.9015 189.549 23.1852 189.675 23.3783C189.801 23.5698 189.988 23.6655 190.233 23.6655C190.481 23.6655 190.668 23.5698 190.795 23.3783C190.921 23.1852 190.984 22.9015 190.984 22.5275C190.984 22.1516 190.921 21.868 190.795 21.6766C190.668 21.4852 190.481 21.3895 190.233 21.3895ZM190.233 20.9785C190.643 20.9785 190.955 21.1111 191.171 21.3763C191.389 21.6415 191.498 22.0252 191.498 22.5275C191.498 23.0315 191.39 23.4161 191.174 23.6813C190.958 23.9447 190.644 24.0764 190.233 24.0764C189.824 24.0764 189.512 23.9447 189.296 23.6813C189.08 23.4161 188.972 23.0315 188.972 22.5275C188.972 22.0252 189.08 21.6415 189.296 21.3763C189.512 21.1111 189.824 20.9785 190.233 20.9785Z" fill="#76FF9C"/>
|
||||
<path d="M187.675 19.9014V20.3044H187.125C186.951 20.3044 186.83 20.3404 186.761 20.4124C186.694 20.4827 186.661 20.6082 186.661 20.7891V21.0499H187.675V21.4266H186.661V24.0003H186.176V21.4266H185.389V21.0499H186.176V20.8444C186.176 20.5213 186.25 20.2833 186.398 20.1305C186.547 19.9778 186.779 19.9014 187.093 19.9014H187.675Z" fill="#76FF9C"/>
|
||||
<path d="M183.907 22.1718V24H183.42V22.1718C183.42 21.9067 183.373 21.7117 183.28 21.587C183.187 21.4623 183.041 21.4 182.843 21.4C182.616 21.4 182.442 21.4808 182.319 21.6424C182.198 21.8022 182.137 22.0322 182.137 22.3325V24H181.652V21.0496H182.137V21.4922C182.223 21.3236 182.34 21.1963 182.487 21.1102C182.635 21.0224 182.81 20.9785 183.012 20.9785C183.312 20.9785 183.536 21.0777 183.683 21.2762C183.833 21.4729 183.907 21.7714 183.907 22.1718Z" fill="#76FF9C"/>
|
||||
<path d="M177.932 20.0674H180.115V20.5152H179.291V23.5525H180.115V24.0004H177.932V23.5525H178.756V20.5152H177.932V20.0674Z" fill="#76FF9C"/>
|
||||
<line x1="193.889" y1="36.1003" x2="184.889" y2="26.1003" stroke="#76FF9C" stroke-width="0.3"/>
|
||||
<rect x="214.108" y="49.1079" width="29.7842" height="22.7842" rx="3.8921" fill="#ACFF58" fill-opacity="0.2" stroke="#7FFF00" stroke-width="0.2158"/>
|
||||
<path d="M233.525 60.6712C233.755 60.8303 233.755 61.1697 233.525 61.3288L227.128 65.7612C226.863 65.945 226.5 65.7551 226.5 65.4324L226.5 56.5676C226.5 56.2449 226.863 56.055 227.128 56.2388L233.525 60.6712Z" fill="#7FFF00"/>
|
||||
<rect x="166.108" y="58.1079" width="40.7861" height="2.5896" rx="1.2948" fill="#F2A632" fill-opacity="0.2" stroke="#FFAB49" stroke-width="0.2158"/>
|
||||
<rect x="166" y="58" width="27.5687" height="2.80539" rx="1.4027" fill="#F2A632" fill-opacity="0.7"/>
|
||||
<g filter="url(#filter2_f_1654_6111)">
|
||||
<rect x="59" y="25" width="67.9769" height="48.1233" rx="5.39499" fill="#DBFF00" fill-opacity="0.2"/>
|
||||
</g>
|
||||
<rect x="64.1079" y="28.1079" width="58.2659" height="41.4335" rx="5.28709" fill="#58FFD7" fill-opacity="0.2" stroke="#7FFF00" stroke-width="0.2158"/>
|
||||
<circle cx="93.2811" cy="44.9676" r="8.65953" stroke="#76FF9C" stroke-width="0.2158" stroke-dasharray="1.08 1.08"/>
|
||||
<path d="M89.9521 52.9229L88.4097 61.7715H84.9189" stroke="#76FF9C" stroke-width="0.2158" stroke-dasharray="1.08 1.08"/>
|
||||
<path d="M96.6905 52.9229L98.2329 61.7715H101.724" stroke="#76FF9C" stroke-width="0.2158" stroke-dasharray="1.08 1.08"/>
|
||||
<path d="M84.6759 43.668L79.5615 47.3211L85.4877 49.0258C85.5688 49.6753 85.5201 51.0553 84.6759 51.3801" stroke="#76FF9C" stroke-width="0.2158" stroke-dasharray="1.08 1.08"/>
|
||||
<path d="M101.914 43.668L107.028 47.3211L101.102 49.0258C101.021 49.6753 101.07 51.0553 101.914 51.3801" stroke="#76FF9C" stroke-width="0.2158" stroke-dasharray="1.08 1.08"/>
|
||||
<path d="M87.5166 43.4248C88.0037 43.9119 97.4206 44.2366 99.2065 43.4248" stroke="#76FF9C" stroke-width="0.2158" stroke-dasharray="1.08 1.08"/>
|
||||
<circle cx="90.3579" cy="40.4214" r="0.32472" fill="#76FF9C"/>
|
||||
<circle cx="95.229" cy="40.4214" r="0.32472" fill="#76FF9C"/>
|
||||
<path d="M105.367 77.2699C105.426 77.1434 105.502 77.0503 105.593 76.9906C105.686 76.9292 105.798 76.8984 105.928 76.8984C106.165 76.8984 106.332 76.9906 106.428 77.175C106.527 77.3577 106.576 77.7028 106.576 78.2103V79.9199H106.133V78.2314C106.133 77.8152 106.11 77.557 106.062 77.4569C106.016 77.355 105.932 77.3041 105.809 77.3041C105.669 77.3041 105.572 77.3586 105.519 77.4674C105.469 77.5746 105.443 77.8292 105.443 78.2314V79.9199H105.001V78.2314C105.001 77.8099 104.975 77.55 104.924 77.4516C104.875 77.3533 104.785 77.3041 104.655 77.3041C104.527 77.3041 104.438 77.3586 104.387 77.4674C104.338 77.5746 104.313 77.8292 104.313 78.2314V79.9199H103.873V76.9696H104.313V77.2225C104.371 77.1171 104.443 77.0372 104.529 76.9827C104.617 76.9265 104.716 76.8984 104.827 76.8984C104.96 76.8984 105.071 76.9292 105.159 76.9906C105.248 77.0521 105.318 77.1452 105.367 77.2699Z" fill="#76FF9C"/>
|
||||
<path d="M100.364 78.8028V76.9746H100.849V78.8028C100.849 79.068 100.896 79.2629 100.989 79.3876C101.083 79.5123 101.229 79.5746 101.426 79.5746C101.654 79.5746 101.829 79.4947 101.95 79.3349C102.071 79.1733 102.132 78.9424 102.132 78.6421V76.9746H102.619V79.9197H102.132V79.4772C102.046 79.6475 101.928 79.7766 101.779 79.8644C101.631 79.9522 101.458 79.9961 101.26 79.9961C100.958 79.9961 100.733 79.8978 100.586 79.7011C100.438 79.5026 100.364 79.2032 100.364 78.8028Z" fill="#76FF9C"/>
|
||||
<path d="M99.0639 78.2024V78.4395H96.9644V78.4553C96.9503 78.8575 97.0267 79.1463 97.1935 79.322C97.3621 79.4976 97.5992 79.5854 97.9048 79.5854C98.0593 79.5854 98.2209 79.5608 98.3895 79.5116C98.5581 79.4625 98.7381 79.3878 98.9295 79.2877V79.7698C98.7451 79.8453 98.5669 79.9015 98.3948 79.9384C98.2244 79.977 98.0593 79.9963 97.8995 79.9963C97.4412 79.9963 97.0829 79.8594 96.8247 79.5854C96.5666 79.3097 96.4375 78.9303 96.4375 78.4474C96.4375 77.9767 96.5639 77.6009 96.8168 77.3199C97.0697 77.0389 97.4069 76.8984 97.8284 76.8984C98.2042 76.8984 98.5001 77.0258 98.7161 77.2804C98.9339 77.5351 99.0498 77.8424 99.0639 78.2024ZM98.5792 78.0602C98.5581 77.8564 98.4835 77.6808 98.3553 77.5333C98.2288 77.384 98.0462 77.3094 97.8073 77.3094C97.5737 77.3094 97.3814 77.3867 97.2304 77.5412C97.0794 77.6957 96.9968 77.8696 96.9828 78.0628L98.5792 78.0602Z" fill="#76FF9C"/>
|
||||
<path d="M94.9405 77.0723V77.5465C94.8018 77.4657 94.6622 77.4051 94.5217 77.3647C94.3812 77.3243 94.2381 77.3041 94.0923 77.3041C93.8728 77.3041 93.7086 77.3401 93.5997 77.4121C93.4926 77.4824 93.439 77.5904 93.439 77.7361C93.439 77.8678 93.4794 77.9662 93.5602 78.0312C93.6409 78.0962 93.842 78.1594 94.1634 78.2208L94.3583 78.2577C94.5989 78.3034 94.7807 78.3947 94.9036 78.5317C95.0283 78.6687 95.0907 78.8469 95.0907 79.0664C95.0907 79.358 94.9871 79.5863 94.7798 79.7514C94.5726 79.9147 94.2846 79.9963 93.9158 79.9963C93.77 79.9963 93.6172 79.9805 93.4574 79.9489C93.2976 79.9191 93.1246 79.8734 92.9385 79.8119V79.3114C93.1194 79.4045 93.2923 79.4748 93.4574 79.5222C93.6225 79.5678 93.7788 79.5907 93.9263 79.5907C94.1406 79.5907 94.3065 79.5476 94.4242 79.4616C94.5419 79.3738 94.6007 79.2517 94.6007 79.0954C94.6007 78.8706 94.3856 78.7152 93.9553 78.6292L93.9342 78.6239L93.7525 78.587C93.4732 78.5326 93.2695 78.4412 93.1413 78.313C93.0131 78.1831 92.949 78.0066 92.949 77.7836C92.949 77.5008 93.0447 77.283 93.2361 77.1303C93.4276 76.9757 93.7007 76.8984 94.0554 76.8984C94.2135 76.8984 94.3654 76.9134 94.5111 76.9432C94.6569 76.9713 94.8 77.0143 94.9405 77.0723Z" fill="#76FF9C"/>
|
||||
<path d="M89.1553 78.8028V76.9746H89.64V78.8028C89.64 79.068 89.6865 79.2629 89.7796 79.3876C89.8744 79.5123 90.0202 79.5746 90.2169 79.5746C90.4452 79.5746 90.6199 79.4947 90.7411 79.3349C90.8623 79.1733 90.9229 78.9424 90.9229 78.6421V76.9746H91.4102V79.9197H90.9229V79.4772C90.8368 79.6475 90.7192 79.7766 90.5699 79.8644C90.4224 79.9522 90.2494 79.9961 90.0509 79.9961C89.7489 79.9961 89.5241 79.8978 89.3766 79.7011C89.229 79.5026 89.1553 79.2032 89.1553 78.8028Z" fill="#76FF9C"/>
|
||||
<path d="M85 76H85.7113L86.3909 77.9968L87.0758 76H87.7897V79.9198H87.2971V76.4557L86.5964 78.521H86.1933L85.49 76.4557V79.9198H85V76Z" fill="#76FF9C"/>
|
||||
<rect x="51" y="66" width="30.9937" height="10.5035" rx="5.02676" fill="#16CF89"/>
|
||||
<path d="M75.0867 73.5033C74.9586 73.5033 74.8945 73.4392 74.8945 73.3111V70.0802C74.8945 69.9538 74.9586 69.8906 75.0867 69.8906C75.2131 69.8906 75.2763 69.9538 75.2763 70.0802V70.2023C75.3646 70.0984 75.4789 70.0205 75.6191 69.9685C75.7594 69.9166 75.9247 69.8906 76.1152 69.8906H76.3126C76.6502 69.8906 76.8995 69.9711 77.0606 70.1322C77.2216 70.2932 77.3021 70.5425 77.3021 70.8801V71.4723C77.3021 71.8099 77.2216 72.0601 77.0606 72.2229C76.8995 72.3839 76.6502 72.4644 76.3126 72.4644H75.2763V73.3111C75.2763 73.4392 75.2131 73.5033 75.0867 73.5033ZM75.2763 72.0826H76.3126C76.5463 72.0826 76.7056 72.0393 76.7905 71.9528C76.877 71.8662 76.9203 71.706 76.9203 71.4723V70.8801C76.9203 70.6464 76.877 70.4871 76.7905 70.4023C76.7056 70.3157 76.5463 70.2724 76.3126 70.2724H76.1152C75.878 70.2724 75.6823 70.3044 75.5282 70.3685C75.3741 70.4308 75.2902 70.5295 75.2763 70.6646V72.0826Z" fill="black"/>
|
||||
<path d="M72.392 72.4644C72.108 72.4644 71.8976 72.396 71.7608 72.2592C71.6241 72.1225 71.5557 71.9121 71.5557 71.6281C71.5557 71.3442 71.6232 71.1338 71.7582 70.997C71.895 70.8602 72.1063 70.7918 72.392 70.7918H73.5165C73.5096 70.5945 73.4611 70.4585 73.3711 70.3841C73.281 70.3096 73.1278 70.2724 72.9114 70.2724H72.6101C72.4214 70.2724 72.2811 70.288 72.1894 70.3192C72.0993 70.3503 72.0387 70.4049 72.0076 70.4828C71.9833 70.5451 71.9565 70.5893 71.9271 70.6152C71.8994 70.6395 71.8561 70.6516 71.7972 70.6516C71.7331 70.6516 71.6829 70.6343 71.6466 70.5996C71.6119 70.5633 71.6015 70.5157 71.6154 70.4568C71.657 70.2612 71.7591 70.1183 71.9219 70.0283C72.0846 69.9365 72.314 69.8906 72.6101 69.8906H72.9114C73.249 69.8906 73.4983 69.9711 73.6594 70.1322C73.8204 70.2932 73.9009 70.5425 73.9009 70.8801V72.2722C73.9009 72.4003 73.8377 72.4644 73.7113 72.4644C73.5832 72.4644 73.5191 72.4003 73.5191 72.2722V72.1086C73.3408 72.3458 73.062 72.4644 72.6828 72.4644H72.392ZM72.392 72.0826H72.6828C72.8231 72.0826 72.9521 72.0688 73.0698 72.0411C73.1875 72.0134 73.2862 71.9649 73.3659 71.8956C73.4455 71.8264 73.4966 71.7294 73.5191 71.6047V71.1736H72.392C72.2136 71.1736 72.0933 71.2057 72.0309 71.2697C71.9686 71.332 71.9374 71.4515 71.9374 71.6281C71.9374 71.8065 71.9686 71.9268 72.0309 71.9891C72.0933 72.0515 72.2136 72.0826 72.392 72.0826Z" fill="black"/>
|
||||
<path d="M69.8387 70C70.1504 70 70.3737 70.0753 70.5088 70.226C70.6438 70.3766 70.7113 70.625 70.7113 70.9713V72.3868C70.7113 72.5132 70.6481 72.5764 70.5217 72.5764C70.3936 72.5764 70.3296 72.5132 70.3296 72.3868V70.9713C70.3296 70.7636 70.2915 70.6138 70.2153 70.522C70.1391 70.4285 70.0136 70.3818 69.8387 70.3818H69.6257C69.418 70.3818 69.2691 70.4285 69.179 70.522C69.0907 70.6138 69.0466 70.7636 69.0466 70.9713V72.3868C69.0466 72.5132 68.9834 72.5764 68.857 72.5764C68.7288 72.5764 68.6648 72.5132 68.6648 72.3868V70.9713C68.6648 70.7636 68.6267 70.6138 68.5505 70.522C68.4743 70.4285 68.3488 70.3818 68.1739 70.3818H67.9609C67.7532 70.3818 67.6043 70.4285 67.5142 70.522C67.4259 70.6138 67.3818 70.7636 67.3818 70.9713V72.3868C67.3818 72.5132 67.3186 72.5764 67.1922 72.5764C67.0641 72.5764 67 72.5132 67 72.3868V70.1922C67 70.0658 67.0641 70.0026 67.1922 70.0026C67.3186 70.0026 67.3818 70.0658 67.3818 70.1922V70.3402C67.4684 70.219 67.5653 70.1325 67.6727 70.0805C67.7817 70.0268 67.9142 70 68.07 70H68.1739C68.3782 70 68.5392 70.0312 68.657 70.0935C68.7765 70.1541 68.8682 70.2528 68.9323 70.3896C69.0189 70.2493 69.115 70.1498 69.2206 70.0909C69.3262 70.0303 69.4612 70 69.6257 70H69.8387Z" fill="black"/>
|
||||
<path d="M62.5185 71.3322V71.4776C62.5185 71.7079 62.5618 71.8663 62.6484 71.9529C62.7349 72.0395 62.8951 72.0827 63.1288 72.0827H63.5548C63.7452 72.0827 63.8846 72.0628 63.9729 72.023C64.0629 71.9814 64.1209 71.9096 64.1469 71.8074C64.1608 71.7503 64.1824 71.7061 64.2118 71.675C64.243 71.6438 64.2889 71.6282 64.3495 71.6282C64.4136 71.6282 64.462 71.6455 64.4949 71.6802C64.5278 71.7131 64.5391 71.7616 64.5287 71.8256C64.4958 72.042 64.398 72.2031 64.2352 72.3087C64.0742 72.4126 63.8474 72.4645 63.5548 72.4645H63.1288C62.7912 72.4645 62.541 72.384 62.3783 72.223C62.2172 72.062 62.1367 71.8135 62.1367 71.4776V70.8803C62.1367 70.5374 62.2172 70.2864 62.3783 70.1271C62.541 69.9661 62.7912 69.8873 63.1288 69.8907H63.5548C63.8924 69.8907 64.1417 69.9712 64.3027 70.1323C64.4638 70.2916 64.5443 70.5409 64.5443 70.8803V71.14C64.5443 71.2681 64.4811 71.3322 64.3547 71.3322H62.5185ZM63.1288 70.2725C62.8951 70.2691 62.7349 70.3106 62.6484 70.3972C62.5618 70.4838 62.5185 70.6448 62.5185 70.8803V70.9504H64.1625V70.8803C64.1625 70.6465 64.1192 70.4872 64.0326 70.4024C63.9478 70.3158 63.7885 70.2725 63.5548 70.2725H63.1288Z" fill="black"/>
|
||||
<path d="M59.2822 71.3322V71.4776C59.2822 71.7079 59.3255 71.8663 59.412 71.9529C59.4986 72.0395 59.6588 72.0827 59.8925 72.0827H60.3184C60.5089 72.0827 60.6483 72.0628 60.7366 72.023C60.8266 71.9814 60.8846 71.9096 60.9106 71.8074C60.9244 71.7503 60.9461 71.7061 60.9755 71.675C61.0067 71.6438 61.0526 71.6282 61.1132 71.6282C61.1772 71.6282 61.2257 71.6455 61.2586 71.6802C61.2915 71.7131 61.3028 71.7616 61.2924 71.8256C61.2595 72.042 61.1617 72.2031 60.9989 72.3087C60.8379 72.4126 60.6111 72.4645 60.3184 72.4645H59.8925C59.5549 72.4645 59.3047 72.384 59.1419 72.223C58.9809 72.062 58.9004 71.8135 58.9004 71.4776V70.8803C58.9004 70.5374 58.9809 70.2864 59.1419 70.1271C59.3047 69.9661 59.5549 69.8873 59.8925 69.8907H60.3184C60.6561 69.8907 60.9054 69.9712 61.0664 70.1323C61.2274 70.2916 61.308 70.5409 61.308 70.8803V71.14C61.308 71.2681 61.2448 71.3322 61.1184 71.3322H59.2822ZM59.8925 70.2725C59.6588 70.2691 59.4986 70.3106 59.412 70.3972C59.3255 70.4838 59.2822 70.6448 59.2822 70.8803V70.9504H60.9262V70.8803C60.9262 70.6465 60.8829 70.4872 60.7963 70.4024C60.7115 70.3158 60.5522 70.2725 60.3184 70.2725H59.8925Z" fill="black"/>
|
||||
<path d="M56.334 72.462C56.0345 72.462 55.8042 72.3997 55.6432 72.275C55.4839 72.1486 55.3887 71.953 55.3575 71.6881C55.3523 71.624 55.3662 71.5755 55.3991 71.5426C55.4337 71.508 55.4822 71.4907 55.5445 71.4907C55.6068 71.4907 55.6527 71.5063 55.6822 71.5374C55.7133 71.5686 55.7332 71.6153 55.7419 71.6777C55.7627 71.83 55.8172 71.9357 55.9055 71.9945C55.9955 72.0517 56.1384 72.0802 56.334 72.0802H57.082C57.314 72.0802 57.4725 72.0378 57.5573 71.953C57.6439 71.8664 57.6872 71.7097 57.6872 71.4829C57.6872 71.2526 57.643 71.0942 57.5547 71.0076C57.4681 70.9193 57.3106 70.8751 57.082 70.8751H56.4171C56.0968 70.8751 55.8596 70.7981 55.7055 70.644C55.5532 70.4899 55.477 70.2536 55.477 69.935C55.477 69.6164 55.5523 69.3809 55.7029 69.2286C55.8553 69.0762 56.0916 69 56.412 69H57.0664C57.3469 69 57.5625 69.0597 57.7131 69.1792C57.8655 69.2969 57.9573 69.4796 57.9884 69.7272C57.9954 69.7913 57.9815 69.8406 57.9469 69.8752C57.914 69.9081 57.8655 69.9246 57.8014 69.9246C57.7408 69.9246 57.695 69.909 57.6638 69.8778C57.6326 69.8449 57.6136 69.7982 57.6066 69.7376C57.5859 69.6043 57.5339 69.5116 57.4508 69.4597C57.3694 69.4078 57.2413 69.3818 57.0664 69.3818H56.412C56.1973 69.3818 56.0509 69.4216 55.973 69.5013C55.8969 69.5792 55.8588 69.7237 55.8588 69.935C55.8588 70.1462 55.8977 70.2925 55.9756 70.3739C56.0553 70.4535 56.2025 70.4934 56.4171 70.4934H57.082C57.4179 70.4934 57.6664 70.5739 57.8274 70.7349C57.9884 70.8959 58.0689 71.1453 58.0689 71.4829C58.0689 71.8188 57.9884 72.0664 57.8274 72.2257C57.6664 72.3832 57.4179 72.462 57.082 72.462H56.334Z" fill="black"/>
|
||||
<rect x="59.2158" y="19.2158" width="15.9692" height="17.4798" rx="2.3738" stroke="#67EEAD" stroke-opacity="0.4" stroke-width="0.431599"/>
|
||||
<path d="M244.85 35.8333C244.85 37.1844 244.338 39.1406 243.459 40.917C242.591 42.6722 241.384 44.2147 240 44.8362C238.616 44.2147 237.409 42.6722 236.541 40.917C235.662 39.1406 235.15 37.1844 235.15 35.8333C235.15 33.7761 235.702 32.3599 236.572 31.4583C237.442 30.5571 238.649 30.15 240 30.15C241.342 30.15 242.55 30.6553 243.425 31.6116C244.3 32.5685 244.85 33.9883 244.85 35.8333Z" stroke="#FAFF15" stroke-width="0.3"/>
|
||||
<circle cx="240" cy="35.833" r="2.35" stroke="#FAFF15" stroke-width="0.3"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_f_1654_6111" x="142.399" y="-16.6012" width="117.179" height="97.3254" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="12.3006" result="effect1_foregroundBlur_1654_6111"/>
|
||||
</filter>
|
||||
<filter id="filter1_f_1654_6111" x="141.399" y="-15.6012" width="117.179" height="97.3254" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="12.3006" result="effect1_foregroundBlur_1654_6111"/>
|
||||
</filter>
|
||||
<filter id="filter2_f_1654_6111" x="34.3988" y="0.398848" width="117.179" height="97.3254" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="12.3006" result="effect1_foregroundBlur_1654_6111"/>
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_1654_6111" x1="168.928" y1="46.7738" x2="156.656" y2="54.7832" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#E04D40"/>
|
||||
<stop offset="1" stop-color="#F15F56"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1654_6111" x1="168.31" y1="35.4008" x2="136.587" y2="73.8131" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FB9782"/>
|
||||
<stop offset="0.302083" stop-color="#F46639"/>
|
||||
<stop offset="0.760417" stop-color="#F44C3C"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1654_6111" x1="143.957" y1="83.4002" x2="143.961" y2="68.5088" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DA4639"/>
|
||||
<stop offset="1" stop-color="#EC5B4F"/>
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_1654_6111">
|
||||
<rect width="292" height="102.768" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 22 KiB |
@@ -0,0 +1,88 @@
|
||||
<svg width="292" height="103" viewBox="0 0 292 103" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1654_6513)">
|
||||
<rect width="292" height="102.768" fill="#1D1D26"/>
|
||||
<g filter="url(#filter0_f_1654_6513)">
|
||||
<rect x="127.061" y="24.0273" width="67.9769" height="48.1233" rx="5.39499" fill="#DBFF00" fill-opacity="0.2"/>
|
||||
</g>
|
||||
<g filter="url(#filter1_f_1654_6513)">
|
||||
<ellipse cx="114.976" cy="91.2494" rx="26.3275" ry="1.4027" fill="#270B31" fill-opacity="0.2"/>
|
||||
</g>
|
||||
<path d="M120.513 89.9435C125.201 90.5149 125.733 77.9705 125.499 76.341C122.82 74.0638 119.785 75.2706 118.531 76.7349C119.587 82.9496 115.825 89.3722 120.513 89.9435Z" fill="#DE493C"/>
|
||||
<path d="M137.124 51.4641C140.379 54.7814 129.31 62.662 127.841 63.3456C124.054 61.8307 127.668 56.6326 128.2 54.8112C133.89 52.3402 134.81 49.1059 137.124 51.4641Z" fill="url(#paint0_linear_1654_6513)"/>
|
||||
<path d="M127.48 38.3358C121.061 28.1339 111.874 28.1337 105.963 33.2491C100.361 39.1921 104.388 46.0308 104.388 51.8133C104.388 57.3707 103.782 59.7954 102.965 66.2736C102.118 72.9784 104.86 82.856 116.105 81.9736C127.351 81.0912 129.657 67.0532 130.204 62.6732C130.752 58.2932 132.784 46.7665 127.48 38.3358Z" fill="url(#paint1_linear_1654_6513)"/>
|
||||
<path d="M122.076 49.159C124.973 48.4161 126.833 46.4053 127.463 45.0828C126.675 43.4136 124.55 39.7369 122.351 38.3837C119.604 36.6921 115.953 38.5886 114.398 41.4993C113.154 43.8278 112.844 46.3799 112.439 48.1954C114.227 49.1381 118.146 50.167 122.076 49.159Z" fill="#FEF9F5"/>
|
||||
<mask id="mask0_1654_6513" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="115" y="37" width="11" height="11">
|
||||
<path d="M125.247 41.9229C125.529 44.7773 123.767 47.2881 121.31 47.5308C118.854 47.7736 115.929 45.8241 115.647 42.9696C115.365 40.1152 117.833 37.4367 120.289 37.1939C122.745 36.9512 124.965 39.0684 125.247 41.9229Z" fill="black"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_1654_6513)">
|
||||
<path d="M122.21 50.3387C125.008 49.2823 126.967 46.3731 127.597 45.0506C126.809 43.3814 124.683 39.7047 122.485 38.3515C119.738 36.6599 116.087 38.5564 114.532 41.4671C113.288 43.7956 112.484 47.2455 111.967 48.7691C113.755 49.7119 118.713 51.6592 122.21 50.3387Z" fill="black"/>
|
||||
</g>
|
||||
<path d="M125.952 51.6163C128.943 55.1732 120.016 61.6141 118.548 62.2977C113.631 62.4983 113.466 58.9056 113.999 57.0842C119.689 54.6132 122.96 48.0595 125.952 51.6163Z" fill="url(#paint2_linear_1654_6513)"/>
|
||||
<path d="M111.121 89.9435C115.808 90.5149 116.34 77.9705 116.107 76.341C113.428 74.0638 110.393 75.2706 109.138 76.7349C110.194 82.9496 106.433 89.3722 111.121 89.9435Z" fill="url(#paint3_linear_1654_6513)"/>
|
||||
<path d="M125.871 55.6191C120.72 61.8301 118.296 62.4865 117.539 62.8905C118.095 62.941 119.873 62.5966 121.478 61.5271C122.841 60.6182 125.568 57.5885 125.871 55.6191Z" fill="#DB422A"/>
|
||||
<rect x="131.915" y="27.3725" width="58.2659" height="41.4335" rx="5.28709" fill="#58FFD7" fill-opacity="0.2" stroke="#7FFF00" stroke-width="0.2158"/>
|
||||
<rect x="181.009" y="22.3008" width="15.9692" height="17.4798" rx="2.3738" stroke="#67EEAD" stroke-opacity="0.4" stroke-width="0.431599"/>
|
||||
<circle cx="161.088" cy="44.2323" r="8.65953" stroke="#76FF9C" stroke-width="0.2158" stroke-dasharray="1.08 1.08"/>
|
||||
<path d="M157.76 52.1875L156.217 61.0361H152.727" stroke="#76FF9C" stroke-width="0.2158" stroke-dasharray="1.08 1.08"/>
|
||||
<path d="M164.498 52.1875L166.041 61.0361H169.531" stroke="#76FF9C" stroke-width="0.2158" stroke-dasharray="1.08 1.08"/>
|
||||
<path d="M152.483 42.9326L147.369 46.5857L153.295 48.2905C153.376 48.9399 153.328 50.32 152.483 50.6447" stroke="#76FF9C" stroke-width="0.2158" stroke-dasharray="1.08 1.08"/>
|
||||
<path d="M169.722 42.9326L174.836 46.5857L168.91 48.2905C168.829 48.9399 168.877 50.32 169.722 50.6447" stroke="#76FF9C" stroke-width="0.2158" stroke-dasharray="1.08 1.08"/>
|
||||
<path d="M155.324 42.6895C155.811 43.1765 165.228 43.5013 167.014 42.6895" stroke="#76FF9C" stroke-width="0.2158" stroke-dasharray="1.08 1.08"/>
|
||||
<circle cx="158.167" cy="39.686" r="0.32472" fill="#76FF9C"/>
|
||||
<circle cx="163.038" cy="39.686" r="0.32472" fill="#76FF9C"/>
|
||||
<rect x="107.961" y="10.1079" width="44.2389" height="22.659" rx="5.28709" fill="#ACFF58" fill-opacity="0.2" stroke="#7FFF00" stroke-width="0.2158"/>
|
||||
<path d="M138.711 20.1368V20.6109C138.572 20.5301 138.433 20.4695 138.292 20.4292C138.152 20.3888 138.009 20.3686 137.863 20.3686C137.643 20.3686 137.479 20.4046 137.37 20.4766C137.263 20.5468 137.209 20.6548 137.209 20.8006C137.209 20.9323 137.25 21.0306 137.331 21.0956C137.411 21.1606 137.613 21.2238 137.934 21.2853L138.129 21.3222C138.369 21.3678 138.551 21.4592 138.674 21.5961C138.799 21.7331 138.861 21.9114 138.861 22.1309C138.861 22.4224 138.758 22.6507 138.55 22.8158C138.343 22.9791 138.055 23.0608 137.686 23.0608C137.541 23.0608 137.388 23.045 137.228 23.0134C137.068 22.9835 136.895 22.9379 136.709 22.8764V22.3759C136.89 22.469 137.063 22.5392 137.228 22.5866C137.393 22.6323 137.549 22.6551 137.697 22.6551C137.911 22.6551 138.077 22.6121 138.195 22.526C138.312 22.4382 138.371 22.3162 138.371 22.1599C138.371 21.9351 138.156 21.7797 137.726 21.6936L137.705 21.6883L137.523 21.6515C137.244 21.597 137.04 21.5057 136.912 21.3775C136.784 21.2475 136.72 21.071 136.72 20.848C136.72 20.5653 136.815 20.3475 137.007 20.1947C137.198 20.0402 137.471 19.9629 137.826 19.9629C137.984 19.9629 138.136 19.9778 138.282 20.0077C138.427 20.0358 138.571 20.0788 138.711 20.1368Z" fill="#76FF9C"/>
|
||||
<path d="M134.305 21.918C134.305 22.1357 134.344 22.2999 134.423 22.4106C134.504 22.5212 134.623 22.5765 134.779 22.5765H135.345V22.9849H134.732C134.442 22.9849 134.217 22.8927 134.057 22.7083C133.899 22.5221 133.82 22.2587 133.82 21.918V19.2495H133.043V18.8701H134.305V21.918Z" fill="#76FF9C"/>
|
||||
<path d="M130.297 20.3738C130.051 20.3738 129.865 20.4695 129.739 20.661C129.612 20.8524 129.549 21.136 129.549 21.5118C129.549 21.8859 129.612 22.1695 129.739 22.3627C129.865 22.5541 130.051 22.6498 130.297 22.6498C130.545 22.6498 130.732 22.5541 130.858 22.3627C130.985 22.1695 131.048 21.8859 131.048 21.5118C131.048 21.136 130.985 20.8524 130.858 20.661C130.732 20.4695 130.545 20.3738 130.297 20.3738ZM130.297 19.9629C130.706 19.9629 131.019 20.0955 131.235 20.3607C131.453 20.6258 131.561 21.0096 131.561 21.5118C131.561 22.0159 131.453 22.4005 131.237 22.6657C131.021 22.9291 130.708 23.0608 130.297 23.0608C129.888 23.0608 129.575 22.9291 129.359 22.6657C129.143 22.4005 129.035 22.0159 129.035 21.5118C129.035 21.0096 129.143 20.6258 129.359 20.3607C129.575 20.0955 129.888 19.9629 130.297 19.9629Z" fill="#76FF9C"/>
|
||||
<path d="M126.561 20.3738C126.315 20.3738 126.129 20.4695 126.002 20.661C125.876 20.8524 125.813 21.136 125.813 21.5118C125.813 21.8859 125.876 22.1695 126.002 22.3627C126.129 22.5541 126.315 22.6498 126.561 22.6498C126.808 22.6498 126.995 22.5541 127.122 22.3627C127.248 22.1695 127.311 21.8859 127.311 21.5118C127.311 21.136 127.248 20.8524 127.122 20.661C126.995 20.4695 126.808 20.3738 126.561 20.3738ZM126.561 19.9629C126.97 19.9629 127.282 20.0955 127.498 20.3607C127.716 20.6258 127.825 21.0096 127.825 21.5118C127.825 22.0159 127.717 22.4005 127.501 22.6657C127.285 22.9291 126.972 23.0608 126.561 23.0608C126.151 23.0608 125.839 22.9291 125.623 22.6657C125.407 22.4005 125.299 22.0159 125.299 21.5118C125.299 21.0096 125.407 20.6258 125.623 20.3607C125.839 20.0955 126.151 19.9629 126.561 19.9629Z" fill="#76FF9C"/>
|
||||
<path d="M121.326 19.0518H124.327V19.4996H123.096V22.9847H122.562V19.4996H121.326V19.0518Z" fill="#76FF9C"/>
|
||||
<rect x="152.309" y="65.8926" width="28.0288" height="10.3828" rx="5.02676" fill="#16CF89"/>
|
||||
<path d="M161.659 70.6972C161.756 70.7638 161.756 70.9066 161.659 70.9732L158.226 73.3387C158.115 73.4153 157.964 73.3358 157.964 73.2008L157.964 68.4696C157.964 68.3346 158.115 68.255 158.226 68.3316L161.659 70.6972Z" fill="black"/>
|
||||
<path d="M175.645 69.1954C175.649 69.2128 175.649 69.2301 175.645 69.2474C175.645 69.2647 175.64 69.2837 175.629 69.3045C175.616 69.353 175.6 69.3963 175.583 69.4344C175.562 69.4829 175.536 69.5244 175.505 69.559C175.491 69.5798 175.477 69.6006 175.463 69.6214C175.453 69.6387 175.442 69.656 175.432 69.6733L175.365 69.7616L174.7 70.7226L174.58 70.8732V72.2549C174.573 72.2722 174.57 72.2895 174.57 72.3068C174.57 72.3241 174.568 72.3432 174.565 72.364C174.558 72.3813 174.553 72.3986 174.549 72.4159C174.546 72.4298 174.54 72.4453 174.533 72.4627C174.527 72.4765 174.523 72.4869 174.523 72.4938C174.52 72.5008 174.516 72.5059 174.513 72.5094C174.513 72.5129 174.511 72.5181 174.508 72.525C174.487 72.5596 174.457 72.5908 174.419 72.6185C174.343 72.6566 174.256 72.6652 174.159 72.6445C174.104 72.6375 174.063 72.6202 174.035 72.5925C174.018 72.5821 174.004 72.57 173.993 72.5562C173.983 72.5423 173.972 72.5267 173.962 72.5094C173.955 72.4886 173.948 72.4696 173.941 72.4523C173.934 72.435 173.929 72.4176 173.926 72.4003C173.919 72.383 173.915 72.3674 173.915 72.3536C173.915 72.3363 173.915 72.3207 173.915 72.3068V70.8888L173.801 70.7122L173.126 69.7564L173.069 69.6629C173.048 69.6318 173.022 69.5954 172.991 69.5538C172.963 69.5158 172.939 69.4742 172.918 69.4292C172.904 69.4084 172.892 69.3876 172.882 69.3668C172.875 69.3426 172.868 69.3184 172.861 69.2941C172.851 69.2595 172.849 69.2249 172.856 69.1902C172.866 69.1452 172.887 69.1071 172.918 69.076C172.953 69.0448 172.989 69.0206 173.027 69.0032C173.076 68.9686 173.131 68.9548 173.193 68.9617C173.231 68.9617 173.264 68.9686 173.292 68.9825C173.32 68.9963 173.347 69.0119 173.375 69.0292C173.406 69.0535 173.436 69.0794 173.463 69.1071C173.495 69.1348 173.522 69.1643 173.547 69.1954C173.574 69.2301 173.6 69.263 173.624 69.2941C173.649 69.3218 173.673 69.3547 173.697 69.3928L173.713 69.4136C173.796 69.5244 173.874 69.6318 173.947 69.7356C174.019 69.8361 174.095 69.9452 174.175 70.0629C174.182 70.0698 174.192 70.0837 174.206 70.1044C174.22 70.1252 174.236 70.1495 174.253 70.1772C174.267 70.1529 174.279 70.1321 174.289 70.1148C174.303 70.0941 174.314 70.0802 174.321 70.0733C174.4 69.9555 174.476 69.8447 174.549 69.7408C174.622 69.637 174.7 69.5296 174.783 69.4188L174.793 69.398C174.821 69.3668 174.845 69.3357 174.866 69.3045C174.89 69.2699 174.916 69.2353 174.944 69.2006C174.989 69.1383 175.049 69.0846 175.126 69.0396C175.181 69.0015 175.238 68.9773 175.297 68.9669C175.363 68.96 175.42 68.9738 175.468 69.0084C175.489 69.0223 175.508 69.0344 175.526 69.0448C175.546 69.0552 175.564 69.0673 175.578 69.0812C175.605 69.1123 175.628 69.1504 175.645 69.1954Z" fill="black"/>
|
||||
<path d="M172.939 72.296C172.943 72.3168 172.944 72.3376 172.944 72.3584C172.948 72.3757 172.95 72.3965 172.95 72.4207C172.95 72.4623 172.938 72.5004 172.913 72.535C172.903 72.5523 172.889 72.5696 172.872 72.5869C172.854 72.6008 172.834 72.6129 172.809 72.6233C172.723 72.6718 172.631 72.6891 172.534 72.6752C172.486 72.6614 172.442 72.6389 172.404 72.6077C172.397 72.6008 172.392 72.5973 172.389 72.5973C172.385 72.5939 172.382 72.5887 172.378 72.5817C172.375 72.5783 172.371 72.5748 172.368 72.5713C172.364 72.5644 172.359 72.5592 172.352 72.5558C172.335 72.5384 172.321 72.5229 172.311 72.509C172.3 72.4917 172.29 72.4744 172.28 72.4571C172.273 72.4398 172.264 72.4242 172.254 72.4103C172.247 72.393 172.238 72.3757 172.228 72.3584C172.221 72.3445 172.214 72.3324 172.207 72.322C172.2 72.3082 172.195 72.2943 172.191 72.2805C172.177 72.2493 172.169 72.2216 172.165 72.1974L172.056 71.9428C171.817 71.9428 171.578 71.9446 171.339 71.948C171.104 71.948 170.867 71.9463 170.628 71.9428L170.519 72.1974C170.512 72.2112 170.507 72.2251 170.503 72.2389C170.503 72.2528 170.5 72.2666 170.493 72.2805C170.486 72.2943 170.479 72.3082 170.472 72.322C170.469 72.3324 170.463 72.3445 170.456 72.3584C170.446 72.3757 170.436 72.393 170.425 72.4103C170.418 72.4242 170.41 72.4398 170.399 72.4571C170.392 72.4744 170.384 72.4917 170.373 72.509C170.363 72.5229 170.349 72.5384 170.332 72.5558C170.325 72.5592 170.32 72.5644 170.316 72.5713C170.313 72.5748 170.309 72.5783 170.306 72.5817C170.302 72.5887 170.299 72.5939 170.295 72.5973C170.292 72.5973 170.287 72.6008 170.28 72.6077C170.242 72.6389 170.198 72.6614 170.15 72.6752C170.053 72.6891 169.961 72.6718 169.875 72.6233C169.85 72.6129 169.83 72.6008 169.812 72.5869C169.795 72.5696 169.781 72.5523 169.771 72.535C169.746 72.5004 169.734 72.4623 169.734 72.4207C169.734 72.3965 169.734 72.3757 169.734 72.3584C169.738 72.3376 169.741 72.3168 169.745 72.296C169.752 72.2649 169.76 72.2337 169.771 72.2025C169.781 72.1714 169.786 72.1558 169.786 72.1558L170.867 69.4963L170.898 69.4132C170.905 69.3924 170.913 69.3734 170.924 69.3561C170.934 69.3387 170.943 69.318 170.95 69.2937C170.967 69.2487 170.986 69.2089 171.007 69.1743C171.017 69.1535 171.029 69.1344 171.043 69.1171C171.057 69.0998 171.071 69.0825 171.085 69.0652C171.106 69.0375 171.135 69.015 171.173 68.9977C171.222 68.9803 171.277 68.9717 171.339 68.9717C171.405 68.9717 171.462 68.9803 171.511 68.9977C171.549 69.015 171.578 69.0375 171.599 69.0652C171.623 69.0963 171.649 69.1327 171.677 69.1743C171.698 69.2089 171.717 69.2487 171.734 69.2937C171.741 69.318 171.75 69.3387 171.76 69.3561C171.771 69.3734 171.779 69.3924 171.786 69.4132L171.817 69.4963L172.898 72.1558C172.898 72.1558 172.903 72.1714 172.913 72.2025C172.924 72.2337 172.932 72.2649 172.939 72.296ZM171.708 71.0234C171.663 70.923 171.616 70.8191 171.568 70.7118C171.523 70.6044 171.474 70.4953 171.423 70.3845C171.409 70.3534 171.395 70.3222 171.381 70.291C171.367 70.2564 171.353 70.2235 171.339 70.1923C171.329 70.2235 171.317 70.2564 171.303 70.291C171.289 70.3222 171.275 70.3534 171.262 70.3845C171.21 70.4953 171.159 70.6044 171.111 70.7118C171.066 70.8191 171.021 70.923 170.976 71.0234L170.882 71.252H171.802L171.708 71.0234Z" fill="black"/>
|
||||
<path d="M169.309 72.2545C169.316 72.2718 169.319 72.2978 169.319 72.3324C169.319 72.3636 169.319 72.3896 169.319 72.4104C169.319 72.4381 169.314 72.464 169.304 72.4883C169.293 72.5125 169.28 72.535 169.262 72.5558C169.231 72.5974 169.186 72.6285 169.127 72.6493C169.044 72.677 168.966 72.6909 168.893 72.6909C168.855 72.6943 168.816 72.696 168.774 72.696C168.732 72.696 168.691 72.6995 168.649 72.7064H168.629C168.362 72.7099 168.087 72.7099 167.803 72.7064C167.733 72.703 167.655 72.703 167.569 72.7064C167.482 72.7134 167.398 72.7116 167.314 72.7012C167.231 72.6943 167.155 72.6753 167.086 72.6441C167.02 72.6095 166.973 72.5558 166.946 72.4831C166.939 72.4658 166.933 72.4502 166.93 72.4363C166.927 72.419 166.925 72.4017 166.925 72.3844C166.911 72.2667 166.906 72.1506 166.909 72.0364C166.913 71.9221 166.914 71.8096 166.914 71.6987L166.925 70.9456V70.2495C166.925 70.1249 166.925 70.014 166.925 69.9171C166.928 69.8201 166.932 69.7128 166.935 69.595V69.5691C166.939 69.5344 166.94 69.4998 166.94 69.4652C166.944 69.4306 166.946 69.3959 166.946 69.3613C166.953 69.2816 166.972 69.2141 167.003 69.1587C167.024 69.1068 167.06 69.0652 167.112 69.0341C167.157 69.0029 167.211 68.9873 167.273 68.9873C167.297 68.9873 167.32 68.989 167.34 68.9925C167.365 68.9925 167.387 68.9942 167.408 68.9977C167.429 69.0012 167.448 69.0081 167.465 69.0185C167.486 69.0289 167.507 69.0427 167.527 69.06C167.548 69.0843 167.567 69.1137 167.585 69.1483C167.598 69.1864 167.607 69.2245 167.61 69.2626C167.614 69.2868 167.617 69.3094 167.621 69.3301C167.624 69.3509 167.626 69.3717 167.626 69.3925C167.619 69.4132 167.616 69.434 167.616 69.4548C167.616 69.4756 167.616 69.4946 167.616 69.5119V69.6054L167.595 72.052L168.623 72.0623H168.868C168.888 72.0623 168.911 72.0641 168.935 72.0675C168.959 72.0675 168.984 72.0693 169.008 72.0727C169.035 72.0762 169.06 72.0797 169.08 72.0831C169.101 72.0866 169.122 72.0918 169.143 72.0987C169.181 72.1091 169.212 72.1264 169.236 72.1506C169.274 72.1853 169.299 72.2199 169.309 72.2545Z" fill="black"/>
|
||||
<path d="M166.12 69.2989C166.252 69.4201 166.349 69.5655 166.411 69.7352C166.473 69.9014 166.498 70.0676 166.484 70.2338C166.47 70.3931 166.42 70.5403 166.333 70.6754C166.247 70.8069 166.115 70.9074 165.938 70.9766C165.8 71.0355 165.663 71.077 165.528 71.1013C165.393 71.1255 165.244 71.1446 165.081 71.1584C165.009 71.1654 164.946 71.1705 164.894 71.174C164.846 71.174 164.789 71.1757 164.723 71.1792C164.709 71.1792 164.685 71.1792 164.65 71.1792C164.619 71.1792 164.597 71.1809 164.583 71.1844V72.2596C164.572 72.3254 164.558 72.3929 164.541 72.4622C164.527 72.5315 164.487 72.5851 164.422 72.6232C164.384 72.644 164.337 72.6561 164.281 72.6596C164.226 72.663 164.176 72.6613 164.131 72.6544C164.082 72.6475 164.041 72.6353 164.006 72.618C163.975 72.5973 163.949 72.5626 163.928 72.5141C163.914 72.483 163.901 72.4483 163.887 72.4103C163.876 72.3687 163.871 72.3185 163.871 72.2596V69.3872C163.871 69.3629 163.873 69.3404 163.876 69.3196C163.88 69.2989 163.883 69.2781 163.887 69.2573C163.894 69.24 163.899 69.2209 163.902 69.2002C163.906 69.1794 163.911 69.1603 163.918 69.143C163.925 69.1257 163.932 69.1101 163.939 69.0963C163.949 69.0824 163.961 69.0703 163.975 69.0599C163.992 69.0426 164.018 69.027 164.053 69.0132C164.091 68.9993 164.146 68.9924 164.219 68.9924H164.23C164.337 68.9855 164.456 68.9803 164.588 68.9768C164.719 68.9699 164.829 68.9716 164.915 68.982C164.964 68.9889 165.009 68.9941 165.05 68.9976C165.092 68.9976 165.132 68.9993 165.17 69.0028C165.211 69.0062 165.253 69.0097 165.294 69.0132C165.336 69.0166 165.377 69.0218 165.419 69.0288C165.454 69.0357 165.485 69.0409 165.512 69.0443C165.544 69.0478 165.575 69.053 165.606 69.0599C165.634 69.0668 165.663 69.0738 165.694 69.0807C165.729 69.0876 165.76 69.0997 165.788 69.1171C165.861 69.1378 165.921 69.1638 165.97 69.195C166.018 69.2261 166.068 69.2608 166.12 69.2989ZM165.809 70.1559C165.812 70.0728 165.795 70.0001 165.757 69.9378C165.722 69.8754 165.672 69.8235 165.606 69.7819C165.54 69.7404 165.466 69.7075 165.383 69.6832C165.3 69.659 165.216 69.6417 165.133 69.6313C165.113 69.6313 165.083 69.6313 165.045 69.6313C165.01 69.6278 164.972 69.6261 164.931 69.6261C164.889 69.6226 164.849 69.6209 164.811 69.6209C164.777 69.6174 164.749 69.6157 164.728 69.6157C164.711 69.6122 164.69 69.6105 164.666 69.6105C164.642 69.6105 164.614 69.6105 164.583 69.6105C164.586 69.7179 164.588 69.8218 164.588 69.9222C164.588 70.0191 164.588 70.1248 164.588 70.239C164.584 70.3014 164.583 70.3637 164.583 70.426C164.583 70.4884 164.583 70.549 164.583 70.6078L164.905 70.6026C164.988 70.6026 165.08 70.5974 165.18 70.5871C165.28 70.5767 165.376 70.5559 165.466 70.5247C165.556 70.4936 165.632 70.4485 165.694 70.3897C165.76 70.3308 165.798 70.2529 165.809 70.1559Z" fill="black"/>
|
||||
<rect x="160.401" y="17.23" width="40.7861" height="2.5896" rx="1.2948" fill="#F2A632" fill-opacity="0.2" stroke="#FFAB49" stroke-width="0.2158"/>
|
||||
<rect x="160.293" y="17.1221" width="27.5687" height="2.80539" rx="1.4027" fill="#F2A632" fill-opacity="0.7"/>
|
||||
<rect x="121.989" y="79.812" width="40.7861" height="2.5896" rx="1.2948" fill="#32F28B" fill-opacity="0.2" stroke="#49FF92" stroke-width="0.2158"/>
|
||||
<rect x="121.881" y="79.7041" width="15.106" height="2.80539" rx="1.4027" fill="#32F296" fill-opacity="0.7"/>
|
||||
<line x1="196.224" y1="43.9887" x2="196.224" y2="56.0735" stroke="#E27526" stroke-opacity="0.3" stroke-width="0.647399" stroke-linecap="round"/>
|
||||
<circle cx="196.224" cy="49.3832" r="1.1869" fill="#F57600"/>
|
||||
<line x1="199.46" y1="43.9887" x2="199.46" y2="56.0735" stroke="#E27526" stroke-opacity="0.3" stroke-width="0.647399" stroke-linecap="round"/>
|
||||
<circle cx="199.46" cy="52.4047" r="1.1869" fill="#F57600"/>
|
||||
<line x1="202.699" y1="43.9887" x2="202.699" y2="56.0735" stroke="#E27526" stroke-opacity="0.3" stroke-width="0.647399" stroke-linecap="round"/>
|
||||
<circle cx="202.699" cy="46.5775" r="1.1869" fill="#F57600"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_f_1654_6513" x="102.459" y="-0.573809" width="117.179" height="97.3254" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="12.3006" result="effect1_foregroundBlur_1654_6513"/>
|
||||
</filter>
|
||||
<filter id="filter1_f_1654_6513" x="84.9798" y="86.1781" width="59.9915" height="10.1428" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="1.8343" result="effect1_foregroundBlur_1654_6513"/>
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_1654_6513" x1="137.928" y1="53.0961" x2="125.656" y2="61.1054" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#E04D40"/>
|
||||
<stop offset="1" stop-color="#F15F56"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1654_6513" x1="137.31" y1="41.723" x2="105.587" y2="80.1354" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FB9782"/>
|
||||
<stop offset="0.302083" stop-color="#F46639"/>
|
||||
<stop offset="0.760417" stop-color="#F44C3C"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1654_6513" x1="126.757" y1="53.2485" x2="114.484" y2="61.2579" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF6F66"/>
|
||||
<stop offset="1" stop-color="#EF6058"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1654_6513" x1="112.956" y1="89.7225" x2="112.96" y2="74.8311" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DA4639"/>
|
||||
<stop offset="1" stop-color="#EC5B4F"/>
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_1654_6513">
|
||||
<rect width="292" height="102.768" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 21 KiB |
47
newIDE/app/public/res/questionnaire/lack-of-graphics.svg
Normal file
After Width: | Height: | Size: 44 KiB |
159
newIDE/app/public/res/questionnaire/lack-of-marketing.svg
Normal file
@@ -0,0 +1,159 @@
|
||||
<svg width="292" height="103" viewBox="0 0 292 103" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1668_6934)">
|
||||
<rect width="292" height="102.768" fill="#1D1D26"/>
|
||||
<rect x="122.537" y="33.0781" width="42.3709" height="59.253" transform="rotate(-27.8398 122.537 33.0781)" fill="#6B6A79"/>
|
||||
<rect x="125.737" y="33.8213" width="37.4055" height="54.7842" transform="rotate(-27.8398 125.737 33.8213)" fill="url(#paint0_linear_1668_6934)"/>
|
||||
<path d="M150.131 85.3257L187.598 65.5385L186.608 74.2969L149.141 94.0841L150.131 85.3257Z" fill="#35353E"/>
|
||||
<path d="M121.324 41.7669L122.683 33.0002L150.355 85.3951L148.995 94.1617L121.324 41.7669Z" fill="#4F4F58"/>
|
||||
<path d="M147.896 44.7669L153.615 55.5971L150.469 57.2589L152.362 60.8446L153.972 59.9944L153.238 58.604L154.775 57.7924L158.214 64.3052L160.483 63.1072L158.898 60.1069L163.362 57.7494L164.947 60.7497L166.996 59.6676L163.556 53.1548L167.654 50.9906L165.606 47.1122L163.703 48.117L164.592 49.8001L162.397 50.9595L156.677 40.1293L147.896 44.7669Z" fill="#F55C3B" stroke="#BB3D22" stroke-width="0.165511"/>
|
||||
<rect x="151.263" y="46.3574" width="6.12391" height="5.29636" transform="rotate(-27.8398 151.263 46.3574)" fill="white"/>
|
||||
<rect x="153.422" y="46.9014" width="2.81369" height="2.31716" transform="rotate(-27.8398 153.422 46.9014)" fill="#1A1A1A"/>
|
||||
<path d="M159.746 13.3331L122.938 32.7725L137.856 42.7687L177.226 21.9766L159.746 13.3331Z" fill="url(#paint1_linear_1668_6934)"/>
|
||||
<path d="M143.638 39.715L137.93 42.7295L139.54 45.7789C140.051 46.7458 141.586 46.6009 143.439 45.6222C145.292 44.6435 145.602 43.4339 145.248 42.7645L143.638 39.715Z" fill="url(#paint2_linear_1668_6934)"/>
|
||||
<path d="M154.761 33.841L149.053 36.8555L150.663 39.9049C151.174 40.8718 152.709 40.7269 154.562 39.7482C156.415 38.7695 156.725 37.5598 156.371 36.8905L154.761 33.841Z" fill="url(#paint3_linear_1668_6934)"/>
|
||||
<path d="M166.029 27.8898L160.321 30.9043L161.932 33.9537C162.442 34.9206 163.978 34.7758 165.831 33.797C167.684 32.8183 167.993 31.6087 167.64 30.9393L166.029 27.8898Z" fill="url(#paint4_linear_1668_6934)"/>
|
||||
<path d="M177.152 22.0158L171.444 25.0303L173.055 28.0797C173.565 29.0466 175.101 28.9017 176.954 27.923C178.807 26.9443 179.116 25.7347 178.763 25.0653L177.152 22.0158Z" fill="url(#paint5_linear_1668_6934)"/>
|
||||
<path d="M149.198 36.7785L143.49 39.793L145.101 42.8424C145.611 43.8093 147.147 43.6644 149 42.6857C150.853 41.707 151.162 40.4973 150.809 39.828L149.198 36.7785Z" fill="url(#paint6_linear_1668_6934)"/>
|
||||
<path d="M149.052 36.8562L143.49 39.7933L127.84 30.1836L133.109 27.401L149.052 36.8562Z" fill="url(#paint7_linear_1668_6934)"/>
|
||||
<path d="M160.321 30.9056L154.76 33.8428L156.37 36.8922C156.881 37.8591 158.384 37.7313 160.189 36.7777C161.995 35.824 162.285 34.6244 161.932 33.9551L160.321 30.9056Z" fill="url(#paint8_linear_1668_6934)"/>
|
||||
<path d="M160.248 30.9441L154.687 33.8812L139.036 24.2715L144.305 21.4889L160.248 30.9441Z" fill="url(#paint9_linear_1668_6934)"/>
|
||||
<path d="M171.591 24.9533L165.883 27.9678L167.493 31.0172C168.004 31.9841 169.539 31.8392 171.392 30.8605C173.245 29.8818 173.555 28.6722 173.201 28.0028L171.591 24.9533Z" fill="url(#paint10_linear_1668_6934)"/>
|
||||
<path d="M171.518 24.9919L165.956 27.9291L150.306 18.3193L155.574 15.5368L171.518 24.9919Z" fill="url(#paint11_linear_1668_6934)"/>
|
||||
<path d="M175.242 65.0115L174.628 63.8501L174.982 63.6631L173.299 60.4763L172.945 60.6633L172.332 59.502L177.112 56.9774L178.242 59.1161L176.655 59.9539L176.139 58.9766L175.282 59.4291L175.873 60.548L176.496 60.2189L176.923 61.0262L176.3 61.3554L176.965 62.6159L177.822 62.1633L177.231 61.0444L178.818 60.2067L180.022 62.487L175.242 65.0115Z" fill="#861AAC"/>
|
||||
<path d="M172.028 61.1485L171.674 61.3355L173.357 64.5222L173.711 64.3352L174.324 65.4966L171.647 66.9103L171.034 65.7489L171.374 65.5694L170.065 63.0908L170.783 67.3666L169.735 67.9201L166.592 64.9701L167.883 67.4132L168.223 67.2337L168.836 68.3951L166.513 69.6218L165.9 68.4604L166.254 68.2734L164.571 65.0867L164.217 65.2737L163.604 64.1123L166.847 62.3994L168.75 64.2199L168.292 61.6364L171.415 59.9871L172.028 61.1485Z" fill="#861AAC"/>
|
||||
<path d="M164.755 69.0652L165.038 68.9156L165.652 70.077L162.876 71.5431L162.262 70.3817L162.687 70.1573L162.275 69.6506L161.312 70.1593L161.498 70.7856L161.922 70.5612L162.536 71.7226L160.114 73.0017L159.5 71.8403L159.784 71.6907L158.684 66.7105L161.262 65.3492L164.755 69.0652ZM161.071 69.3263L161.722 68.9822L160.688 67.7263L160.617 67.7637L161.071 69.3263Z" fill="#861AAC"/>
|
||||
<path d="M158.398 71.6433L158.044 71.8303L158.792 73.2466C158.647 73.4744 158.399 73.7414 158.047 74.0478C157.698 74.3469 157.292 74.6187 156.829 74.863C155.946 75.3293 155.133 75.4632 154.388 75.2648C153.641 75.0617 153.01 74.4739 152.496 73.5014C151.97 72.5052 151.836 71.6496 152.092 70.9346C152.353 70.2171 152.946 69.614 153.871 69.1253C154.32 68.8884 154.765 68.7137 155.207 68.6012C155.649 68.4887 156 68.439 156.26 68.4524L157.154 70.1449L155.384 71.0799L155.208 70.747C155.103 70.5488 154.986 70.4296 154.856 70.3895C154.729 70.3421 154.575 70.3659 154.396 70.4606C154.216 70.5554 154.108 70.67 154.07 70.8046C154.035 70.932 154.069 71.0948 154.174 71.2931L155.266 73.3609C155.371 73.5592 155.487 73.682 155.615 73.7293C155.745 73.7694 155.899 73.7421 156.079 73.6474C156.258 73.5526 156.365 73.4416 156.401 73.3142C156.438 73.1796 156.405 73.0132 156.3 72.8149L156.274 72.7653L155.892 72.9673L155.334 71.9121L157.841 70.5881L158.398 71.6433Z" fill="#861AAC"/>
|
||||
<g opacity="0.2" filter="url(#filter0_f_1668_6934)">
|
||||
<path d="M165.55 87.7098L141.039 81.6848C139.267 81.2491 137.804 80.0015 137.095 78.3198L123.274 45.5559C122.579 43.9101 122.686 42.0358 123.561 40.4788L136.22 17.9628C137.492 15.701 140.116 14.5645 142.635 15.1837L166.888 21.1441C168.661 21.5797 170.123 22.8274 170.833 24.5092L184.666 57.3027C185.353 58.9316 185.257 60.7855 184.404 62.3342L171.991 84.8854C170.73 87.1755 168.089 88.3338 165.55 87.7098Z" fill="#F9E05C"/>
|
||||
</g>
|
||||
<rect x="30" y="22" width="67" height="48" rx="2" fill="#5B47D3"/>
|
||||
<path d="M76.6406 59.5701C76.6406 55.7889 75.0336 55.4537 74.8617 54.2764C74.6898 53.099 75.7469 52.5061 75.2656 51.217C74.7758 49.9279 73.0312 49.2748 73.0312 47.4443V43.5771H54.9844V47.4443C54.9844 49.2748 53.2398 49.9365 52.75 51.2256C52.2602 52.5146 53.3258 53.099 53.1539 54.2678C52.982 55.4451 51.375 55.7803 51.375 59.5615H76.6406V59.5701Z" fill="#B24E10"/>
|
||||
<path d="M73.0313 39.8047C73.4867 36.9688 73.7789 32.543 69.6797 30.2312C69.6797 30.2312 67.1875 27.9023 64.0078 27.9023C60.8281 27.9023 58.3359 30.2312 58.3359 30.2312C54.2367 32.543 54.5289 36.9688 54.9844 39.8047L55.8438 41.1797H72.1719L73.0313 39.8047Z" fill="#E36415"/>
|
||||
<path d="M66.5859 51.2344H61.4297V54.5L52.9734 58.4359C51.1602 59.2867 50 61.1086 50 63.1109V70.1406H78.0156V63.1109C78.0156 61.1086 76.8555 59.2867 75.0422 58.4359L66.5859 54.5V51.2344Z" fill="#D84861"/>
|
||||
<path d="M72.1719 57.1039C72.1719 57.1039 70.1953 63.0078 64.0078 63.0078C57.8203 63.0078 55.8438 57.1039 55.8438 57.1039L61.4297 54.5V51.2344H66.5859V54.5L72.1719 57.1039Z" fill="#F6C9AA"/>
|
||||
<path d="M61.4297 51.2344V53.7523C62.8219 54.4227 64.0078 54.7578 64.0078 54.7578C64.0078 54.7578 65.1937 54.4227 66.5859 53.7523V51.2344H61.4297Z" fill="#F3AB7D"/>
|
||||
<path d="M72.1719 41.1797C72.1719 41.1797 71.8797 47.0063 70.1094 49.4039C68.3047 51.8359 64.0078 53.0391 64.0078 53.0391C64.0078 53.0391 59.7109 51.8359 57.9062 49.4039C56.1359 47.0148 55.8438 41.1797 55.8438 41.1797C55.8438 37.3727 64.0078 33.2734 64.0078 33.2734C64.0078 33.2734 72.1719 37.4242 72.1719 41.1797Z" fill="#F6C9AA"/>
|
||||
<path d="M65.3828 63.6094H66.2422V70.1406H65.3828V63.6094Z" fill="#35322B"/>
|
||||
<path d="M61.2578 66.3594H65.8125V67.2188H61.2578V66.3594Z" fill="#35322B"/>
|
||||
<path d="M60.8281 62.8359H61.6875V66.875H60.8281V62.8359Z" fill="#35322B"/>
|
||||
<path d="M65.8125 65.0703C67.3313 65.0703 68.5625 63.1465 68.5625 60.7734C68.5625 58.4003 67.3313 56.4766 65.8125 56.4766C64.2937 56.4766 63.0625 58.4003 63.0625 60.7734C63.0625 63.1465 64.2937 65.0703 65.8125 65.0703Z" fill="#504C43"/>
|
||||
<path d="M61.2578 63.6094C62.2547 63.6094 63.0625 62.8016 63.0625 61.8047V59.7422C63.0625 58.7453 62.2547 57.9375 61.2578 57.9375C60.2609 57.9375 59.4531 58.7453 59.4531 59.7422V61.8047C59.4531 62.8016 60.2609 63.6094 61.2578 63.6094Z" fill="#D8D6C1"/>
|
||||
<path d="M59.4531 59.3125H60.7422V60.1719H59.4531V59.3125Z" fill="#C5C2A1"/>
|
||||
<path d="M59.4531 61.4609H60.7422V62.3203H59.4531V61.4609Z" fill="#C5C2A1"/>
|
||||
<path d="M61.7734 59.3125H63.0625V60.1719H61.7734V59.3125Z" fill="#C5C2A1"/>
|
||||
<path d="M61.7734 61.4609H63.0625V62.3203H61.7734V61.4609Z" fill="#C5C2A1"/>
|
||||
<path d="M61.2578 67.6484C61.7324 67.6484 62.1172 67.2637 62.1172 66.7891C62.1172 66.3144 61.7324 65.9297 61.2578 65.9297C60.7832 65.9297 60.3984 66.3144 60.3984 66.7891C60.3984 67.2637 60.7832 67.6484 61.2578 67.6484Z" fill="#D8D6C1"/>
|
||||
<path d="M56.6172 45.9922C54.4258 45.9922 53.2656 44.5484 53.2656 42.993C53.2656 41.4375 55.5086 41.1797 55.8438 41.1797L56.6172 45.9922Z" fill="#F3AB7D"/>
|
||||
<path d="M71.3984 45.9922C73.5898 45.9922 74.75 44.5484 74.75 42.993C74.75 41.4375 72.507 41.1797 72.1719 41.1797L71.3984 45.9922Z" fill="#F3AB7D"/>
|
||||
<path d="M73.4528 39.8732L72.602 39.7357C73.0661 36.8396 73.2551 32.749 69.4653 30.6092C69.4223 30.5834 69.3793 30.549 69.345 30.5146C69.3364 30.4889 67.4457 28.3318 64.0082 28.3318C60.5536 28.3318 58.6801 30.4889 58.6629 30.5061C58.6286 30.5404 58.5942 30.5748 58.5426 30.6006C54.7528 32.7404 54.9332 36.8396 55.4059 39.7271L54.5551 39.8646C54.3489 38.567 54.1168 36.6162 54.5293 34.7256C54.9934 32.5943 56.1793 30.9701 58.0614 29.8873C58.4137 29.5006 60.4504 27.4639 64.0082 27.4639C67.5661 27.4639 69.5942 29.492 69.9551 29.8873C71.8286 30.9701 73.0145 32.6029 73.4872 34.7342C73.8997 36.6248 73.6676 38.5756 73.4528 39.8732Z" fill="#C22945"/>
|
||||
<path d="M54.125 39.5469H55.8438V47.4531H54.125V39.5469Z" fill="#D84861"/>
|
||||
<path d="M52.6297 46.1727L54.125 46.5938V40.4062L52.6297 40.8273C51.8906 41.0336 51.375 41.7125 51.375 42.4859V44.5227C51.375 45.2875 51.8906 45.9664 52.6297 46.1727Z" fill="#C22945"/>
|
||||
<path d="M72.1719 39.5469H73.8906V47.4531H72.1719V39.5469Z" fill="#D84861"/>
|
||||
<path d="M75.3859 46.1727L73.8906 46.5938V40.4062L75.3859 40.8273C76.125 41.0336 76.6406 41.7125 76.6406 42.4859V44.5227C76.6406 45.2875 76.125 45.9664 75.3859 46.1727Z" fill="#C22945"/>
|
||||
<path d="M70.2385 29.707L68.9924 30.9016C67.7979 29.432 66.1564 28.7188 64.008 28.7188C61.8596 28.7188 60.2182 29.432 59.0236 30.9016L57.7861 29.6984C59.1697 28.0656 61.1721 27 64.008 27C66.8525 27 68.8549 28.0656 70.2385 29.707Z" fill="#D84861"/>
|
||||
<path d="M64.0074 49.0939C62.409 49.0939 61.4551 48.1143 61.2832 47.9166L61.9277 47.3408C62.0137 47.4354 62.7613 48.226 64.016 48.226H64.0418C65.2535 48.2174 65.9668 47.4869 66.0957 47.3408L66.7402 47.9166C66.5684 48.1143 65.623 49.0768 64.0504 49.0939C64.0332 49.0939 64.016 49.0939 64.0074 49.0939Z" fill="#D84861"/>
|
||||
<path d="M69.3359 42.6408C69.1039 42.4775 68.5453 42.1337 67.7891 42.1251C67.0156 42.1165 66.4742 42.5376 66.2422 42.6236L65.8984 43.672H68.3047C68.8719 43.672 69.3359 43.2079 69.3359 42.6408Z" fill="#EBEBDF"/>
|
||||
<path d="M58.6797 42.6408C58.9117 42.4775 59.4703 42.1337 60.2266 42.1251C61 42.1165 61.5414 42.5376 61.7734 42.6236L62.1172 43.672H59.7109C59.1438 43.672 58.6797 43.2079 58.6797 42.6408Z" fill="#EBEBDF"/>
|
||||
<path d="M59.5391 42.125H60.3984V43.6719H59.5391V42.125Z" fill="#B24E10"/>
|
||||
<path d="M60.0547 42.125H60.9141V43.6719H60.0547V42.125Z" fill="#B24E10"/>
|
||||
<path d="M67.6172 42.125H68.4766V43.6719H67.6172V42.125Z" fill="#B24E10"/>
|
||||
<path d="M67.1016 42.125H67.9609V43.6719H67.1016V42.125Z" fill="#B24E10"/>
|
||||
<path d="M58.6797 43.0703H58.3359V42.2109H58.5508C59.0664 41.8758 59.6422 41.6953 60.2266 41.6953H60.2437C60.9398 41.6953 61.4555 41.9703 61.7648 42.1336C61.825 42.168 61.9023 42.2023 61.9281 42.2109L61.6359 43.0187C61.55 42.9844 61.4641 42.9414 61.3609 42.8898C61.0945 42.7437 60.725 42.5461 60.2523 42.5461H60.2437C59.7969 42.5461 59.3414 42.7008 58.9375 42.9844C58.8516 43.0445 58.7656 43.0703 58.6797 43.0703Z" fill="#B24E10"/>
|
||||
<path d="M69.6793 43.0697H69.3355C69.2496 43.0697 69.1637 43.0439 69.0863 42.9924C68.6824 42.7088 68.2355 42.5541 67.7801 42.5541H67.7715C67.2902 42.5541 66.9293 42.7518 66.6629 42.8978C66.5598 42.9494 66.4738 43.001 66.3879 43.0268L66.0957 42.2189C66.1215 42.2103 66.1988 42.1674 66.259 42.1416C66.5684 41.9783 67.0926 41.6947 67.7973 41.7033C68.3816 41.7033 68.9574 41.8838 69.473 42.2189H69.6879V43.0697H69.6793Z" fill="#B24E10"/>
|
||||
<path d="M58.5506 40.432L58.1123 39.693C58.5592 39.4266 59.2811 39.1172 60.2178 39.1172H60.2436C61.1717 39.1258 61.885 39.4352 62.3318 39.693L61.8936 40.432C61.5412 40.2258 60.974 39.9766 60.2436 39.9766C59.4873 39.968 58.9115 40.2258 58.5506 40.432Z" fill="#B24E10"/>
|
||||
<path d="M69.4648 40.4322C69.1039 40.226 68.5195 39.9681 67.7719 39.9767C67.0414 39.9767 66.4656 40.226 66.1219 40.4322L65.6836 39.6931C66.1219 39.4353 66.8437 39.126 67.7719 39.1174C68.7172 39.1088 69.4563 39.4267 69.9031 39.6931L69.4648 40.4322Z" fill="#B24E10"/>
|
||||
<path d="M37.6306 75.2512C37.8071 75.3701 37.8071 75.6299 37.6306 75.7488L33.9676 78.2161C33.7683 78.3503 33.5 78.2076 33.5 77.9673L33.5 73.0327C33.5 72.7924 33.7683 72.6497 33.9676 72.7839L37.6306 75.2512Z" fill="#D9D9D9"/>
|
||||
<line opacity="0.3" x1="41.35" y1="75.65" x2="95.65" y2="75.65" stroke="#D9D9D9" stroke-width="0.7" stroke-linecap="round"/>
|
||||
<circle cx="73.5" cy="75.5" r="1.5" fill="#D9D9D9"/>
|
||||
<path d="M196.687 18.4255C199.566 18.4255 201.9 16.0917 201.9 13.2128C201.9 10.3338 199.566 8 196.687 8C193.808 8 191.475 10.3338 191.475 13.2128C191.475 16.0917 193.808 18.4255 196.687 18.4255Z" fill="#EEEEFF"/>
|
||||
<path d="M196.688 14.5155C196.465 14.5155 196.243 14.4307 196.073 14.2609L195.205 13.3921C194.865 13.0528 194.865 12.5029 195.205 12.1636C195.543 11.8244 196.094 11.8244 196.433 12.1636L196.688 12.4182L196.942 12.1641C197.281 11.8248 197.832 11.8248 198.171 12.1641C198.51 12.5033 198.51 13.0533 198.171 13.3925L197.302 14.2613C197.132 14.4307 196.91 14.5155 196.688 14.5155Z" fill="#F24327"/>
|
||||
<path d="M197.991 21.4661H188.869C188.389 21.4661 188 21.0769 188 20.5973C188 20.1177 188.389 19.7285 188.869 19.7285H197.991C198.471 19.7285 198.86 20.1177 198.86 20.5973C198.86 21.0769 198.471 21.4661 197.991 21.4661Z" fill="#6D6DFC"/>
|
||||
<path d="M195.385 24.5071H188.869C188.389 24.5071 188 24.1179 188 23.6383C188 23.1588 188.389 22.7695 188.869 22.7695H195.385C195.864 22.7695 196.254 23.1588 196.254 23.6383C196.254 24.1179 195.864 24.5071 195.385 24.5071Z" fill="#6D6DFC"/>
|
||||
<path d="M192.778 27.5481H188.869C188.389 27.5481 188 27.1589 188 26.6793C188 26.1998 188.389 25.8105 188.869 25.8105H192.778C193.258 25.8105 193.647 26.1998 193.647 26.6793C193.647 27.1589 193.258 27.5481 192.778 27.5481Z" fill="#6D6DFC"/>
|
||||
<path d="M191.475 30.5882H188.869C188.389 30.5882 188 30.199 188 29.7194C188 29.2398 188.389 28.8506 188.869 28.8506H191.475C191.955 28.8506 192.344 29.2398 192.344 29.7194C192.344 30.199 191.955 30.5882 191.475 30.5882Z" fill="#6D6DFC"/>
|
||||
<path d="M215.801 15.2367C215.801 16.1098 215.445 16.9699 214.824 17.5868L214.203 18.2079C210.654 17.8995 210.806 21.6049 210.806 21.6049L198.169 34.2415L193.647 33.6117L193.469 29.5414L206.105 16.9047C206.105 16.9047 206.11 16.9047 206.11 16.9004C206.244 16.8483 208.386 15.9882 209.072 15.3018C209.78 14.5938 209.502 13.5078 209.502 13.5078L210.124 12.8866C210.74 12.2654 211.6 11.9092 212.474 11.9092C213.368 11.9092 214.203 12.2567 214.828 12.8866C215.454 13.5078 215.801 14.3418 215.801 15.2367Z" fill="#0F0FED"/>
|
||||
<path d="M198.17 34.2422C198.065 34.3508 197.931 34.429 197.787 34.4681L194.512 35.3629C194.512 35.3629 194.503 35.3629 194.49 35.3673C194.356 35.3846 193.582 35.4672 192.992 34.8764C192.37 34.2552 192.349 33.2952 192.349 33.204V33.1996L193.243 29.9243C193.283 29.7809 193.361 29.6462 193.469 29.542L198.17 34.2422Z" fill="#F49625"/>
|
||||
<path d="M194.511 35.3625L193.008 35.7709C192.93 35.7926 192.856 35.8013 192.778 35.8013C192.552 35.8013 192.331 35.71 192.166 35.545C191.944 35.3278 191.857 35.0063 191.94 34.7022L192.348 33.1992L194.511 35.3625Z" fill="#0F0FED"/>
|
||||
<path d="M206.103 16.9062L209.499 13.5098L214.198 18.2094L210.802 21.6058L206.103 16.9062Z" fill="#02CFC4"/>
|
||||
<path d="M248.179 51.5859L245.71 53.8889L219.41 47.2643L217.321 43.8131L218.62 38.655C218.711 38.2932 219.078 38.0739 219.44 38.165L248.212 45.4122C248.574 45.5033 248.793 45.8704 248.702 46.2321L248.179 51.5859Z" fill="#FD8087"/>
|
||||
<path d="M250.103 45.8882L247.295 45.1811C247.657 45.2722 247.876 45.6393 247.785 46.001L246.486 51.1591L242.904 53.1816L245.711 53.8887L249.293 51.8662L250.593 46.7081C250.684 46.3464 250.464 45.9793 250.103 45.8882Z" fill="#FE646F"/>
|
||||
<path d="M239.09 80.2063L210 72.879L217.321 43.8135L246.411 51.1408L247.461 54.3301L241.434 78.2583L239.09 80.2063Z" fill="#F0FCFF"/>
|
||||
<path d="M246.411 51.1406L249.293 51.8666L241.972 80.9321L239.09 80.2061L246.411 51.1406Z" fill="#D7ECFE"/>
|
||||
<path d="M230.925 57.2952L223.547 59.725L217.635 57.2058L219.711 48.9652C219.799 48.6139 220.156 48.4008 220.507 48.4893L231.753 51.322C232.104 51.4105 232.317 51.767 232.229 52.1183L230.925 57.2952Z" fill="#C6E5FD"/>
|
||||
<path d="M217.635 57.2061L220.185 55.3251L224.306 57.1476L226.761 55.2999L229.335 57.1922L230.328 59.665L229.621 62.4725C229.532 62.8238 229.176 63.0369 228.824 62.9484L227.942 62.726L226.203 61.6706L225.277 62.0548L217.578 60.1157C217.227 60.0272 217.014 59.6707 217.103 59.3194L217.635 57.2061Z" fill="#ABDC94"/>
|
||||
<path d="M225.278 62.0556L228.403 62.8429L222.405 54.5085C222.191 54.2116 221.776 54.1469 221.482 54.3647L220.185 55.3257L225.278 62.0556Z" fill="#8CCF75"/>
|
||||
<path d="M227.962 54.3968L226.761 55.2999L230.328 59.665L230.931 57.2721L228.882 54.5285C228.665 54.2375 228.252 54.1784 227.962 54.3968Z" fill="#8CCF75"/>
|
||||
<path d="M237.396 70.8269C236.389 70.5733 235.586 71.6643 236.105 72.5486L236.732 73.5955L236.779 73.5922C237.696 73.5281 238.373 72.7113 238.266 71.7986C238.203 71.3416 237.871 70.9465 237.396 70.8269Z" fill="#FD8087"/>
|
||||
<path d="M239.493 71.3555C239.018 71.2358 238.538 71.4263 238.266 71.799C238.266 71.7984 238.266 71.7978 238.266 71.7972C238.255 71.8663 238.241 71.9354 238.224 72.0046C238.027 72.785 237.445 73.3664 236.731 73.5965L237.156 74.3066C237.342 74.6171 237.744 74.7183 238.055 74.533L239.814 73.4838C240.691 72.951 240.501 71.6092 239.493 71.3555Z" fill="#FE646F"/>
|
||||
<path d="M221.342 42.4907C221.725 42.5874 222.122 42.3566 222.22 41.9657C222.319 41.5742 222.078 41.1843 221.692 41.0872C221.317 40.9926 220.916 41.2179 220.817 41.6122C220.718 42.0033 220.957 42.3938 221.342 42.4907Z" fill="#F0FCFF"/>
|
||||
<path d="M224.249 43.2222C224.644 43.3218 225.031 43.0787 225.127 42.6972C225.225 42.3112 224.991 41.9174 224.602 41.8194C224.214 41.7215 223.821 41.9597 223.724 42.3437C223.628 42.7238 223.855 43.1231 224.249 43.2222Z" fill="#F0FCFF"/>
|
||||
<path d="M227.154 43.9553C227.548 44.0546 227.936 43.8131 228.033 43.4303C228.129 43.0475 227.901 42.6516 227.505 42.552C227.124 42.4559 226.728 42.6877 226.63 43.077C226.532 43.4678 226.769 43.8584 227.154 43.9553Z" fill="#F0FCFF"/>
|
||||
<path d="M230.954 44.9123L246.362 48.7934C246.75 48.8911 247.143 48.6561 247.241 48.2685C247.338 47.8808 247.103 47.4876 246.716 47.3899L231.307 43.5088C230.92 43.4112 230.526 43.6462 230.429 44.0338C230.331 44.4214 230.566 44.8147 230.954 44.9123Z" fill="#F0FCFF"/>
|
||||
<path d="M243.626 59.7242L240.433 58.9199C240.046 58.8223 239.652 59.0573 239.555 59.4449C239.457 59.8325 239.692 60.2258 240.08 60.3234L243.273 61.1277C243.66 61.2253 244.053 60.9903 244.151 60.6027C244.249 60.2151 244.014 59.8218 243.626 59.7242Z" fill="#B9DEF9"/>
|
||||
<path d="M244.34 56.8892L241.147 56.085C240.76 55.9873 240.366 56.2223 240.269 56.61C240.171 56.9976 240.406 57.3909 240.794 57.4885L243.986 58.2927C244.374 58.3903 244.767 58.1553 244.865 57.7677C244.963 57.3801 244.728 56.9868 244.34 56.8892Z" fill="#B9DEF9"/>
|
||||
<path d="M242.89 62.643L233.46 60.2676C233.072 60.17 232.679 60.4049 232.581 60.7926C232.483 61.1802 232.719 61.5735 233.106 61.6711L242.537 64.0465C242.924 64.1441 243.317 63.9091 243.415 63.5215C243.513 63.134 243.278 62.7406 242.89 62.643Z" fill="#B9DEF9"/>
|
||||
<path d="M242.156 65.5606L232.545 63.1397C232.157 63.042 231.764 63.277 231.666 63.6646C231.568 64.0523 231.803 64.4455 232.191 64.5432L241.803 66.9642C242.19 67.0618 242.583 66.8268 242.681 66.4392C242.779 66.0515 242.544 65.6583 242.156 65.5606Z" fill="#B9DEF9"/>
|
||||
<path d="M232.9 67.8655L216.022 63.6143C215.635 63.5166 215.241 63.7516 215.144 64.1393C215.046 64.5269 215.281 64.9202 215.669 65.0178L232.546 69.2691C232.934 69.3667 233.327 69.1317 233.425 68.7441C233.523 68.3564 233.288 67.9632 232.9 67.8655Z" fill="#B9DEF9"/>
|
||||
<path d="M232.168 70.7718L215.29 66.5205C214.902 66.4229 214.509 66.6579 214.411 67.0455C214.313 67.4331 214.549 67.8264 214.936 67.924L231.814 72.1753C232.202 72.2729 232.595 72.0379 232.693 71.6503C232.79 71.2627 232.555 70.8694 232.168 70.7718Z" fill="#B9DEF9"/>
|
||||
<path d="M231.435 73.678L214.557 69.4268C214.17 69.3291 213.776 69.5641 213.679 69.9518C213.581 70.3394 213.816 70.7327 214.204 70.8303L231.082 75.0816C231.469 75.1792 231.862 74.9442 231.96 74.5566C232.058 74.1689 231.823 73.7757 231.435 73.678Z" fill="#B9DEF9"/>
|
||||
<path d="M235.821 59.268C237.071 59.5828 238.344 58.8221 238.659 57.5725C238.84 56.8527 238.665 56.1254 238.245 55.5776C238.541 55.3088 238.763 54.9531 238.868 54.537C239.151 53.4124 238.467 52.2672 237.342 51.9839L235.654 51.5586C235.266 51.461 234.873 51.696 234.775 52.0836L233.311 57.8967C233.264 58.0834 233.293 58.2811 233.392 58.4462C233.604 58.7984 233.71 58.7361 235.821 59.268ZM236.175 57.8644C235.939 57.8051 235.364 57.6624 234.892 57.5456L235.328 55.8171C236.01 55.9861 235.728 55.9172 236.61 56.1385C237.085 56.2584 237.375 56.743 237.255 57.2188C237.135 57.6946 236.651 57.9843 236.175 57.8644ZM236.989 53.3875C237.339 53.4758 237.553 53.8329 237.465 54.1834C237.376 54.5341 237.019 54.7474 236.669 54.6591C236.654 54.6554 236.616 54.6458 235.682 54.4121L236.002 53.1389L236.989 53.3875Z" fill="#B9DEF9"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_f_1668_6934" x="74.5993" y="-33.2034" width="158.741" height="169.3" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="24.11" result="effect1_foregroundBlur_1668_6934"/>
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_1668_6934" x1="144.44" y1="33.8213" x2="144.44" y2="88.6055" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#BABABA"/>
|
||||
<stop offset="1" stop-color="#DFE1E3"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1668_6934" x1="155.01" y1="11.8096" x2="158.906" y2="32.466" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#35A5C9"/>
|
||||
<stop offset="1" stop-color="#68A1D6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1668_6934" x1="140.816" y1="40.1731" x2="144.619" y2="45.2298" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#3582C9"/>
|
||||
<stop offset="1" stop-color="#68A1D6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1668_6934" x1="151.939" y1="34.2991" x2="155.743" y2="39.3558" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#3582C9"/>
|
||||
<stop offset="1" stop-color="#68A1D6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_1668_6934" x1="163.208" y1="28.3479" x2="167.011" y2="33.4046" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#3582C9"/>
|
||||
<stop offset="1" stop-color="#68A1D6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_1668_6934" x1="174.331" y1="22.4739" x2="178.134" y2="27.5306" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#3582C9"/>
|
||||
<stop offset="1" stop-color="#68A1D6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_1668_6934" x1="145.582" y1="38.4132" x2="150.784" y2="40.552" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#CBCD54"/>
|
||||
<stop offset="1" stop-color="#E09C4D"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint7_linear_1668_6934" x1="132.833" y1="26.6989" x2="147.752" y2="30.8361" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#CBCD54"/>
|
||||
<stop offset="1" stop-color="#E09C4D"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint8_linear_1668_6934" x1="156.795" y1="32.4929" x2="161.968" y2="34.5426" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#CBCD54"/>
|
||||
<stop offset="1" stop-color="#E09C4D"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint9_linear_1668_6934" x1="144.029" y1="20.7868" x2="158.948" y2="24.924" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#CBCD54"/>
|
||||
<stop offset="1" stop-color="#E09C4D"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint10_linear_1668_6934" x1="167.974" y1="26.588" x2="173.177" y2="28.7268" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#CBCD54"/>
|
||||
<stop offset="1" stop-color="#E09C4D"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint11_linear_1668_6934" x1="155.299" y1="14.8346" x2="170.217" y2="18.9718" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#CBCD54"/>
|
||||
<stop offset="1" stop-color="#E09C4D"/>
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_1668_6934">
|
||||
<rect width="292" height="102.768" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 24 KiB |
51
newIDE/app/public/res/questionnaire/lack-of-sounds.svg
Normal file
@@ -0,0 +1,51 @@
|
||||
<svg width="292" height="103" viewBox="0 0 292 103" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="292" height="102.768" fill="#1D1D26"/>
|
||||
<path d="M227.064 45.0092C226.268 45.0092 225.623 45.4542 225.623 46.003V46.9968C225.623 47.5456 224.978 47.9906 224.182 47.9906C223.386 47.9906 222.741 47.5456 222.741 46.9968L219.859 43.0218C219.859 43.5706 219.214 44.0156 218.418 44.0156C217.622 44.0156 216.977 43.5706 216.977 43.0218L214.095 44.0156C214.095 44.5644 213.45 45.0094 212.654 45.0094C211.859 45.0094 211.213 44.5644 211.213 44.0156L208.332 38.0529C208.332 38.6017 207.686 39.0467 206.891 39.0467C206.095 39.0467 205.449 38.6017 205.449 38.0529H202.568C202.568 38.6017 201.922 39.0467 201.127 39.0467C200.331 39.0467 199.686 38.6017 199.686 38.0529L196.804 33.0841C196.804 33.6329 196.159 34.0779 195.363 34.0779C194.567 34.0779 193.922 33.6329 193.922 33.0841L191.04 31.0966C191.04 31.6454 190.395 32.0904 189.599 32.0904C188.803 32.0904 188.158 31.6454 188.158 31.0966L185.276 28.1152C185.276 28.664 184.631 29.109 183.835 29.109C183.039 29.109 182.394 28.664 182.394 28.1152L179.512 38.0529C179.512 38.6017 178.867 39.0467 178.071 39.0467C177.275 39.0467 176.63 38.6017 176.63 38.0529L173.748 37.0591C173.748 37.6079 173.103 38.0529 172.307 38.0529C171.511 38.0529 170.866 37.6079 170.866 37.0591L167.984 43.0218C167.984 43.5706 167.339 44.0156 166.543 44.0156C165.747 44.0156 165.102 43.5706 165.102 43.0218L162.22 42.0279C162.22 42.5767 161.575 43.0218 160.779 43.0218C159.983 43.0218 159.338 42.5767 159.338 42.0279L156.456 44.0155C156.456 44.5643 155.811 45.0093 155.015 45.0093C154.219 45.0093 153.574 44.5643 153.574 44.0155L150.693 46.9967C150.693 47.5455 150.048 47.9905 149.252 47.9905C148.457 47.9905 147.811 47.5455 147.811 46.9967C147.811 46.4479 147.167 46.0029 146.37 46.0029C145.574 46.0029 144.93 46.4479 144.93 46.9967V50.9717C144.93 51.5205 145.574 51.9655 146.371 51.9655C147.167 51.9655 147.812 51.5205 147.812 50.9717C147.812 50.4228 148.457 49.9779 149.253 49.9779C150.049 49.9779 150.694 50.4228 150.694 50.9717L153.576 53.953C153.576 53.4041 154.221 52.9592 155.017 52.9592C155.813 52.9592 156.458 53.4041 156.458 53.953L159.34 55.9405C159.34 55.3916 159.985 54.9467 160.781 54.9467C161.577 54.9467 162.222 55.3916 162.222 55.9405L165.104 54.9467C165.104 54.3978 165.749 53.9529 166.545 53.9529C167.341 53.9529 167.986 54.3978 167.986 54.9467L170.868 60.9094C170.868 60.3605 171.513 59.9156 172.309 59.9156C173.105 59.9156 173.75 60.3605 173.75 60.9094L176.632 59.9156C176.632 59.3666 177.277 58.9218 178.073 58.9218C178.868 58.9218 179.514 59.3666 179.514 59.9156L182.395 69.8532C182.395 69.3043 183.041 68.8594 183.836 68.8594C184.632 68.8594 185.278 69.3043 185.278 69.8532L188.159 66.8719C188.159 66.323 188.805 65.8781 189.6 65.8781C190.396 65.8781 191.041 66.323 191.041 66.8719L193.923 64.8844C193.923 64.3355 194.568 63.8906 195.364 63.8906C196.16 63.8906 196.805 64.3355 196.805 64.8844L199.687 59.9156C199.687 59.3666 200.332 58.9218 201.128 58.9218C201.924 58.9218 202.569 59.3666 202.569 59.9156H205.451C205.451 59.3666 206.096 58.9218 206.892 58.9218C207.688 58.9218 208.333 59.3666 208.333 59.9156L211.215 53.9529C211.215 53.404 211.86 52.9591 212.656 52.9591C213.452 52.9591 214.097 53.404 214.097 53.9529L216.979 54.9467C216.979 54.3978 217.624 53.9529 218.42 53.9529C219.216 53.9529 219.861 54.3978 219.861 54.9467L222.743 50.9717C222.743 50.4228 223.388 49.9779 224.184 49.9779C224.98 49.9779 225.625 50.4228 225.625 50.9717V51.9655C225.625 52.5143 226.27 52.9593 227.066 52.9593C227.863 52.9593 228.507 52.5143 228.507 51.9655V46.0029C228.505 45.4541 227.861 45.0092 227.064 45.0092Z" fill="#8961FF"/>
|
||||
<path d="M186.717 75.8158C185.921 75.8158 185.276 75.3708 185.276 74.822V23.1462C185.276 22.5974 185.921 22.1523 186.717 22.1523C187.514 22.1523 188.158 22.5974 188.158 23.1462V74.822C188.158 75.3708 187.514 75.8158 186.717 75.8158Z" fill="#6AEF97"/>
|
||||
<path d="M192.482 67.8657C191.686 67.8657 191.041 67.4207 191.041 66.8719V31.0964C191.041 30.5475 191.685 30.1025 192.482 30.1025C193.278 30.1025 193.923 30.5475 193.923 31.0964V66.8719C193.923 67.4208 193.279 67.8657 192.482 67.8657Z" fill="#98DB7C"/>
|
||||
<path d="M198.246 70.8468C197.449 70.8468 196.805 70.4018 196.805 69.853V28.1149C196.805 27.5661 197.449 27.1211 198.246 27.1211C199.042 27.1211 199.687 27.5661 199.687 28.1149V69.8531C199.687 70.4018 199.042 70.8468 198.246 70.8468Z" fill="#8DE386"/>
|
||||
<path d="M169.426 67.8657C168.63 67.8657 167.985 67.4207 167.985 66.8719V31.0964C167.985 30.5475 168.63 30.1025 169.426 30.1025C170.223 30.1025 170.867 30.5475 170.867 31.0964V66.8719C170.867 67.4208 170.223 67.8657 169.426 67.8657Z" fill="#7AEAA0"/>
|
||||
<path d="M204.009 61.9025C203.213 61.9025 202.568 61.4575 202.568 60.9087V37.0583C202.568 36.5095 203.213 36.0645 204.009 36.0645C204.806 36.0645 205.45 36.5095 205.45 37.0583V60.9087C205.45 61.4575 204.806 61.9025 204.009 61.9025Z" fill="#D5FF5F"/>
|
||||
<path d="M175.19 61.9025C174.394 61.9025 173.749 61.4575 173.749 60.9087V37.0583C173.749 36.5095 174.393 36.0645 175.19 36.0645C175.986 36.0645 176.631 36.5095 176.631 37.0583V60.9087C176.631 61.4575 175.987 61.9025 175.19 61.9025Z" fill="#D5FF5F"/>
|
||||
<path d="M157.899 60.91C157.103 60.91 156.458 60.4649 156.458 59.9161V38.0534C156.458 37.5046 157.102 37.0596 157.899 37.0596C158.696 37.0596 159.34 37.5046 159.34 38.0534V59.9163C159.34 60.465 158.696 60.91 157.899 60.91Z" fill="#79EB7E"/>
|
||||
<path d="M209.773 65.8789C208.977 65.8789 208.332 65.4339 208.332 64.8851V33.0846C208.332 32.5358 208.976 32.0908 209.773 32.0908C210.569 32.0908 211.214 32.5358 211.214 33.0846V64.8852C211.214 65.4339 210.57 65.8789 209.773 65.8789Z" fill="#5FE2AB"/>
|
||||
<path d="M215.537 55.9411C214.74 55.9411 214.096 55.4961 214.096 54.9473V43.0221C214.096 42.4733 214.74 42.0283 215.537 42.0283C216.333 42.0283 216.978 42.4733 216.978 43.0221V54.9473C216.978 55.4962 216.333 55.9411 215.537 55.9411Z" fill="#D5FF5F"/>
|
||||
<path d="M163.663 56.9345C162.866 56.9345 162.222 56.4895 162.222 55.9407V42.028C162.222 41.4792 162.866 41.0342 163.663 41.0342C164.459 41.0342 165.104 41.4792 165.104 42.028V55.9407C165.104 56.4895 164.459 56.9345 163.663 56.9345Z" fill="#D5FF5F"/>
|
||||
<path d="M152.134 54.9468C151.338 54.9468 150.693 54.5018 150.693 53.953V44.0153C150.693 43.4665 151.338 43.0215 152.134 43.0215C152.931 43.0215 153.575 43.4665 153.575 44.0153V53.953C153.575 54.5018 152.931 54.9468 152.134 54.9468Z" fill="#C7EE97"/>
|
||||
<path d="M221.301 59.9156C220.505 59.9156 219.86 59.4706 219.86 58.9218V39.0465C219.86 38.4977 220.505 38.0527 221.301 38.0527C222.098 38.0527 222.742 38.4977 222.742 39.0465V58.9219C222.742 59.4707 222.098 59.9156 221.301 59.9156Z" fill="#B8EB7C"/>
|
||||
<path d="M180.954 70.8468C180.157 70.8468 179.513 70.4018 179.513 69.853V28.1149C179.513 27.5661 180.157 27.1211 180.954 27.1211C181.75 27.1211 182.395 27.5661 182.395 28.1149V69.8531C182.395 70.4018 181.75 70.8468 180.954 70.8468Z" fill="#8DE386"/>
|
||||
<path d="M150.694 46.003V46.9968C150.694 47.5456 150.049 47.9906 149.253 47.9906C148.457 47.9906 147.812 47.5456 147.812 46.9968L144.93 43.0218C144.93 43.5706 144.285 44.0156 143.489 44.0156C142.693 44.0156 142.048 43.5706 142.048 43.0218L139.166 44.0156C139.166 44.5644 138.521 45.0094 137.725 45.0094C136.929 45.0094 136.284 44.5644 136.284 44.0156L133.402 38.0529C133.402 38.6017 132.757 39.0467 131.961 39.0467C131.165 39.0467 130.52 38.6017 130.52 38.0529H127.638C127.638 38.6017 126.993 39.0467 126.197 39.0467C125.401 39.0467 124.756 38.6017 124.756 38.0529L121.874 33.0841C121.874 33.6329 121.229 34.0779 120.433 34.0779C119.637 34.0779 118.992 33.6329 118.992 33.0841L116.11 31.0966C116.11 31.6454 115.465 32.0904 114.669 32.0904C113.873 32.0904 113.228 31.6454 113.228 31.0966L110.346 28.1152C110.346 28.664 109.701 29.109 108.905 29.109C108.109 29.109 107.464 28.664 107.464 28.1152L104.582 38.0529C104.582 38.6017 103.937 39.0467 103.141 39.0467C102.345 39.0467 101.7 38.6017 101.7 38.0529L98.8181 37.0591C98.8181 37.6079 98.173 38.0529 97.3771 38.0529C96.5812 38.0529 95.9361 37.6079 95.9361 37.0591L93.0542 43.0218C93.0542 43.5706 92.4091 44.0156 91.6132 44.0156C90.8172 44.0156 90.1721 43.5706 90.1721 43.0218L87.2902 42.0279C87.2902 42.5767 86.6451 43.0218 85.8492 43.0218C85.0533 43.0218 84.4082 42.5767 84.4082 42.0279L81.5263 44.0155C81.5263 44.5643 80.8812 45.0093 80.0852 45.0093C79.2893 45.0093 78.6442 44.5643 78.6442 44.0155L75.7638 46.9967C75.7638 47.5455 75.1187 47.9905 74.3228 47.9905C73.5268 47.9905 72.8817 47.5455 72.8817 46.9967C72.8817 46.4479 72.2373 46.0029 71.4407 46.0029C70.6441 46.0029 70 46.4479 70 46.9967V50.9717C70 51.5205 70.6444 51.9655 71.441 51.9655C72.2376 51.9655 72.8821 51.5205 72.8821 50.9717C72.8821 50.4228 73.5272 49.9779 74.3231 49.9779C75.119 49.9779 75.7641 50.4228 75.7641 50.9717L78.646 53.953C78.646 53.4041 79.2911 52.9592 80.087 52.9592C80.883 52.9592 81.5281 53.4041 81.5281 53.953L84.41 55.9405C84.41 55.3916 85.0551 54.9467 85.851 54.9467C86.6469 54.9467 87.292 55.3916 87.292 55.9405L90.1739 54.9467C90.1739 54.3978 90.819 53.9529 91.6149 53.9529C92.4109 53.9529 93.056 54.3978 93.056 54.9467L95.9379 60.9094C95.9379 60.3605 96.583 59.9156 97.3789 59.9156C98.1748 59.9156 98.8199 60.3605 98.8199 60.9094L101.702 59.9156C101.702 59.3667 102.347 58.9218 103.143 58.9218C103.939 58.9218 104.584 59.3667 104.584 59.9156L107.466 69.8532C107.466 69.3043 108.111 68.8594 108.907 68.8594C109.703 68.8594 110.348 69.3043 110.348 69.8532L113.23 66.8719C113.23 66.323 113.875 65.8781 114.671 65.8781C115.467 65.8781 116.112 66.323 116.112 66.8719L118.994 64.8844C118.994 64.3355 119.639 63.8906 120.435 63.8906C121.231 63.8906 121.876 64.3355 121.876 64.8844L124.758 59.9156C124.758 59.3667 125.403 58.9218 126.199 58.9218C126.995 58.9218 127.64 59.3667 127.64 59.9156H130.522C130.522 59.3667 131.167 58.9218 131.963 58.9218C132.759 58.9218 133.404 59.3667 133.404 59.9156L136.286 53.9529C136.286 53.404 136.931 52.9591 137.727 52.9591C138.522 52.9591 139.168 53.404 139.168 53.9529L142.049 54.9467C142.049 54.3978 142.695 53.9529 143.491 53.9529C144.286 53.9529 144.932 54.3978 144.932 54.9467L147.813 50.9717C147.813 50.4228 148.459 49.9779 149.254 49.9779C150.05 49.9779 150.696 50.4228 150.696 50.9717V51.9655C150.696 54.8665 150.694 41.5 150.694 46.003Z" fill="#8961FF"/>
|
||||
<path d="M111.788 75.8158C110.991 75.8158 110.347 75.3708 110.347 74.822V23.1462C110.347 22.5974 110.991 22.1523 111.788 22.1523C112.584 22.1523 113.229 22.5974 113.229 23.1462V74.822C113.229 75.3708 112.584 75.8158 111.788 75.8158Z" fill="#6AEF97"/>
|
||||
<path d="M117.551 67.8657C116.755 67.8657 116.11 67.4207 116.11 66.8719V31.0964C116.11 30.5475 116.755 30.1025 117.551 30.1025C118.348 30.1025 118.992 30.5475 118.992 31.0964V66.8719C118.992 67.4208 118.348 67.8657 117.551 67.8657Z" fill="#98DB7C"/>
|
||||
<path d="M123.316 70.8468C122.52 70.8468 121.875 70.4018 121.875 69.853V28.1149C121.875 27.5661 122.519 27.1211 123.316 27.1211C124.113 27.1211 124.757 27.5661 124.757 28.1149V69.8531C124.757 70.4018 124.112 70.8468 123.316 70.8468Z" fill="#8DE386"/>
|
||||
<path d="M94.4967 67.8657C93.7003 67.8657 93.0557 67.4207 93.0557 66.8719V31.0964C93.0557 30.5475 93.7001 30.1025 94.4967 30.1025C95.2931 30.1025 95.9377 30.5475 95.9377 31.0964V66.8719C95.9377 67.4208 95.2931 67.8657 94.4967 67.8657Z" fill="#5FE2AB"/>
|
||||
<path d="M129.08 61.9025C128.283 61.9025 127.639 61.4575 127.639 60.9087V37.0583C127.639 36.5095 128.283 36.0645 129.08 36.0645C129.876 36.0645 130.521 36.5095 130.521 37.0583V60.9087C130.521 61.4575 129.876 61.9025 129.08 61.9025Z" fill="#B8EB7C"/>
|
||||
<path d="M100.26 61.9025C99.4639 61.9025 98.8193 61.4575 98.8193 60.9087V37.0583C98.8193 36.5095 99.4638 36.0645 100.26 36.0645C101.057 36.0645 101.701 36.5095 101.701 37.0583V60.9087C101.701 61.4575 101.057 61.9025 100.26 61.9025Z" fill="#D5FF5F"/>
|
||||
<path d="M82.9684 60.91C82.172 60.91 81.5273 60.4649 81.5273 59.9161V38.0534C81.5273 37.5046 82.1718 37.0596 82.9684 37.0596C83.765 37.0596 84.4094 37.5046 84.4094 38.0534V59.9163C84.4094 60.465 83.765 60.91 82.9684 60.91Z" fill="#98E68C"/>
|
||||
<path d="M134.843 65.8789C134.047 65.8789 133.402 65.4339 133.402 64.8851V33.0846C133.402 32.5358 134.047 32.0908 134.843 32.0908C135.64 32.0908 136.284 32.5358 136.284 33.0846V64.8852C136.284 65.4339 135.64 65.8789 134.843 65.8789Z" fill="#7AEAA0"/>
|
||||
<path d="M140.607 55.9411C139.811 55.9411 139.166 55.4961 139.166 54.9473V43.0221C139.166 42.4733 139.81 42.0283 140.607 42.0283C141.404 42.0283 142.048 42.4733 142.048 43.0221V54.9473C142.048 55.4962 141.403 55.9411 140.607 55.9411Z" fill="#D5FF5F"/>
|
||||
<path d="M88.732 56.9345C87.9356 56.9345 87.291 56.4895 87.291 55.9407V42.028C87.291 41.4792 87.9355 41.0342 88.732 41.0342C89.5286 41.0342 90.1731 41.4792 90.1731 42.028V55.9407C90.1729 56.4895 89.5285 56.9345 88.732 56.9345Z" fill="#D5FF5F"/>
|
||||
<path d="M77.2047 54.9468C76.4083 54.9468 75.7637 54.5018 75.7637 53.953V44.0153C75.7637 43.4665 76.4081 43.0215 77.2047 43.0215C78.0013 43.0215 78.6457 43.4665 78.6457 44.0153V53.953C78.6457 54.5018 78.0011 54.9468 77.2047 54.9468Z" fill="#D5FF5F"/>
|
||||
<path d="M146.371 59.9156C145.574 59.9156 144.93 59.4706 144.93 58.9218V39.0465C144.93 38.4977 145.574 38.0527 146.371 38.0527C147.167 38.0527 147.812 38.4977 147.812 39.0465V58.9219C147.812 59.4707 147.167 59.9156 146.371 59.9156Z" fill="#5FE2AB"/>
|
||||
<path d="M106.024 70.8468C105.228 70.8468 104.583 70.4018 104.583 69.853V28.1149C104.583 27.5661 105.227 27.1211 106.024 27.1211C106.82 27.1211 107.465 27.5661 107.465 28.1149V69.8531C107.465 70.4018 106.82 70.8468 106.024 70.8468Z" fill="#8DE386"/>
|
||||
<g clip-path="url(#clip0_1668_7193)">
|
||||
<circle cx="38.5672" cy="48.644" r="14.9419" transform="rotate(19.4698 38.5672 48.644)" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M38.497 32C29.4005 32 22 39.4005 22 48.497C22 57.5936 29.4005 64.994 38.497 64.994C47.5935 64.994 54.994 57.5936 54.994 48.497C54.994 39.4005 47.5936 32 38.497 32ZM40.7402 41.5934C40.87 41.6776 40.9764 41.7932 41.0497 41.9295C41.1229 42.0658 41.1605 42.2184 41.1591 42.3731V54.6209C41.1605 54.7757 41.1227 54.9285 41.0494 55.0649C40.9761 55.2013 40.8695 55.317 40.7396 55.4013C40.5991 55.4926 40.4351 55.5412 40.2676 55.5411C40.1 55.541 39.9361 55.4922 39.7958 55.4006L35.1984 52.4408L31.5446 52.4312C31.5166 52.4312 31.4886 52.4292 31.4608 52.4254C30.5127 52.2991 29.7974 51.451 29.7974 50.4528V46.4155C29.7974 45.4174 30.5127 44.5693 31.4612 44.443C31.489 44.4391 31.517 44.4372 31.545 44.4372L35.394 44.4275L39.7961 41.5934C39.9365 41.5016 40.1006 41.4528 40.2683 41.4528C40.436 41.4528 40.6001 41.5016 40.7405 41.5934H40.7402ZM39.8703 53.9159L35.7376 51.2551C35.6341 51.1885 35.5136 51.1529 35.3905 51.1526L31.5984 51.1423C31.3084 51.085 31.0863 50.7892 31.0863 50.4528V46.4155C31.0863 46.0791 31.3086 45.7834 31.5984 45.726L35.5857 45.7157C35.7089 45.7155 35.8293 45.6799 35.9329 45.6133L39.8703 43.0781V53.9159ZM44.7556 48.3533C44.7547 48.8963 44.6422 49.4334 44.4253 49.9312C44.2084 50.429 43.8916 50.877 43.4945 51.2474C43.4329 51.307 43.3601 51.3538 43.2802 51.385C43.2003 51.4161 43.1151 51.431 43.0294 51.4288C42.9437 51.4266 42.8593 51.4073 42.7811 51.372C42.703 51.3368 42.6326 51.2863 42.5742 51.2235C42.5158 51.1608 42.4706 51.087 42.441 51.0065C42.4115 50.926 42.3984 50.8404 42.4023 50.7548C42.4063 50.6692 42.4273 50.5852 42.4641 50.5078C42.501 50.4303 42.5529 50.361 42.6168 50.3039C42.885 50.0546 43.0988 49.7527 43.2451 49.417C43.3913 49.0813 43.4668 48.7191 43.4668 48.353C43.4668 47.9868 43.3913 47.6246 43.2451 47.2889C43.0988 46.9533 42.885 46.6513 42.6168 46.402C42.5529 46.3449 42.501 46.2756 42.4641 46.1982C42.4273 46.1208 42.4063 46.0368 42.4023 45.9512C42.3984 45.8655 42.4115 45.78 42.441 45.6995C42.4706 45.619 42.5158 45.5452 42.5742 45.4824C42.6326 45.4197 42.703 45.3692 42.7811 45.3339C42.8593 45.2987 42.9437 45.2794 43.0294 45.2772C43.1151 45.2749 43.2003 45.2898 43.2802 45.321C43.3601 45.3522 43.4329 45.3989 43.4945 45.4586C43.8916 45.8291 44.2085 46.2772 44.4254 46.7751C44.6423 47.273 44.7547 47.8102 44.7556 48.3533ZM47.1967 48.3533C47.1961 49.1099 47.0365 49.8578 46.7284 50.5488C46.4202 51.2397 45.9703 51.8582 45.4078 52.3641C45.3452 52.4225 45.2715 52.4678 45.1912 52.4974C45.1109 52.5269 45.0255 52.5402 44.94 52.5365C44.8545 52.5327 44.7706 52.5119 44.6932 52.4753C44.6158 52.4388 44.5465 52.3872 44.4893 52.3235C44.432 52.2599 44.3881 52.1855 44.3599 52.1047C44.3318 52.0238 44.32 51.9382 44.3253 51.8528C44.3306 51.7673 44.3529 51.6838 44.3908 51.6071C44.4287 51.5304 44.4815 51.462 44.5462 51.4059C44.9747 51.0211 45.3174 50.5504 45.552 50.0244C45.7866 49.4984 45.9078 48.9289 45.9078 48.353C45.9078 47.777 45.7866 47.2076 45.552 46.6816C45.3174 46.1556 44.9747 45.6849 44.5462 45.3001C44.4226 45.1849 44.3492 45.0258 44.3417 44.8571C44.3342 44.6883 44.3933 44.5234 44.5063 44.3977C44.6192 44.2721 44.777 44.1959 44.9456 44.1854C45.1142 44.175 45.2802 44.2311 45.4078 44.3418C45.9702 44.8479 46.4201 45.4665 46.7282 46.1576C47.0364 46.8486 47.1959 47.5967 47.1966 48.3533H47.1967Z" fill="#C059F0"/>
|
||||
</g>
|
||||
<path d="M255.738 44.3825C255.834 44.7522 256.211 44.9736 256.581 44.8775C256.951 44.7814 257.172 44.4044 257.076 44.0347L255.115 36.4894L253.545 35.9453L255.738 44.3825Z" fill="#6CD604"/>
|
||||
<path d="M248.318 49.1683C248.414 49.538 248.791 49.7595 249.161 49.6633C249.531 49.5672 249.752 49.1903 249.656 48.8205L247.347 39.9374L246.473 42.069L248.318 49.1683Z" fill="#6CD604"/>
|
||||
<path d="M247.501 51.5231C248.979 51.1389 249.943 49.929 249.655 48.8207C249.367 47.7124 247.936 47.1253 246.458 47.5095C244.98 47.8937 244.016 49.1035 244.304 50.2119C244.592 51.3202 246.024 51.9072 247.501 51.5231Z" fill="#A0E65C"/>
|
||||
<path d="M253.879 42.7235C253.068 42.9345 252.384 43.3936 252.004 43.9352C251.683 44.3947 251.547 44.9209 251.681 45.4375C251.815 45.954 252.191 46.3471 252.695 46.5919C253.29 46.8803 254.111 46.948 254.923 46.7371C256.423 46.3472 257.369 45.1602 257.077 44.0347C256.784 42.9092 255.379 42.3336 253.879 42.7235Z" fill="#A0E65C"/>
|
||||
<path d="M253.597 34.265L250.08 36.5322L246.176 39.0506C245.926 39.2124 245.809 39.5157 245.883 39.8038L246.472 42.0695L250.794 39.2798L255.115 36.4901L254.642 34.6704C254.523 34.2128 253.987 34.0069 253.597 34.265Z" fill="#46B486"/>
|
||||
<path d="M262.158 57.1434C261.672 57.2698 261.381 57.7656 261.507 58.2518L264.251 68.8091C264.378 69.2953 264.874 69.5865 265.36 69.4601C265.846 69.3337 266.137 68.8379 266.011 68.3516L263.537 58.8363C264.654 58.935 265.643 59.7106 265.941 60.8561L266.398 62.6156C266.525 63.1019 267.021 63.3931 267.507 63.2667C267.993 63.1403 268.284 62.6445 268.158 62.1582L267.7 60.3987C267.07 57.9733 264.584 56.5126 262.158 57.1434Z" fill="#6BD604"/>
|
||||
<path d="M261.806 66.6272C259.834 67.14 258.588 68.701 258.973 70.1813C259.358 71.6616 261.206 72.4186 263.178 71.9058C265.151 71.393 264.763 70.2566 264.378 68.7763C263.993 67.296 263.779 66.1144 261.806 66.6272Z" fill="#A0E65C"/>
|
||||
<path d="M266.011 68.3514C265.626 66.8711 263.778 66.1142 261.806 66.627L263.178 71.9056C265.15 71.3928 266.396 69.8317 266.011 68.3514Z" fill="#A0E65C"/>
|
||||
<path d="M159.735 74.921C158.311 74.0983 157.821 72.27 158.643 70.8451C158.918 70.369 158.755 69.7613 158.279 69.4865C157.803 69.2116 157.196 69.3744 156.921 69.8505C156.098 71.2754 154.27 71.7653 152.845 70.9426C152.369 70.6678 151.761 70.8306 151.486 71.3067C151.211 71.7828 151.374 72.3904 151.85 72.6653C153.275 73.488 153.765 75.3163 152.942 76.7412C152.667 77.2173 152.83 77.8249 153.306 78.0998C153.782 78.3747 154.39 78.2118 154.665 77.7358C155.488 76.3109 157.316 75.821 158.741 76.6436C159.217 76.9185 159.825 76.7557 160.1 76.2796C160.374 75.8035 160.212 75.1958 159.735 74.921Z" fill="#FFDB5A"/>
|
||||
<path d="M228.443 29.0534C227.466 29.3075 226.464 28.719 226.21 27.7415C226.125 27.4149 225.792 27.2193 225.465 27.3042C225.139 27.3891 224.943 27.7221 225.028 28.0487C225.282 29.0262 224.694 30.0281 223.716 30.2822C223.389 30.3672 223.194 30.7001 223.279 31.0268C223.364 31.3534 223.697 31.549 224.023 31.464C225.001 31.2099 226.003 31.7984 226.257 32.7759C226.342 33.1025 226.675 33.2981 227.001 33.2132C227.328 33.1283 227.524 32.7953 227.439 32.4687C227.185 31.4912 227.773 30.4893 228.75 30.2352C229.077 30.1503 229.273 29.8173 229.188 29.4907C229.103 29.1641 228.77 28.9685 228.443 29.0534Z" fill="#FFCA40"/>
|
||||
<path d="M89.4316 20.6013C87.2563 21.1668 85.0267 19.8572 84.4612 17.6819C84.2722 16.9551 83.5312 16.5198 82.8044 16.7088C82.0775 16.8977 81.6423 17.6388 81.8312 18.3656C82.3967 20.5409 81.0871 22.7705 78.9118 23.336C78.185 23.525 77.7497 24.266 77.9387 24.9928C78.1276 25.7197 78.8687 26.1549 79.5955 25.966C81.7708 25.4005 84.0004 26.7101 84.5659 28.8854C84.7549 29.6122 85.4959 30.0474 86.2227 29.8585C86.9496 29.6696 87.3848 28.9285 87.1959 28.2017C86.6304 26.0264 87.94 23.7967 90.1153 23.2313C90.8421 23.0423 91.2774 22.3013 91.0884 21.5744C90.8995 20.8476 90.1584 20.4124 89.4316 20.6013Z" fill="#FFBE40"/>
|
||||
<defs>
|
||||
<clipPath id="clip0_1668_7193">
|
||||
<rect width="32.994" height="32.994" fill="white" transform="translate(22 32)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 20 KiB |
362
newIDE/app/public/res/questionnaire/learning-or-teaching.svg
Normal file
@@ -0,0 +1,362 @@
|
||||
<svg width="292" height="103" viewBox="0 0 292 103" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="292" height="102.768" fill="#1D1D26"/>
|
||||
<g filter="url(#filter0_f_1629_965)">
|
||||
<ellipse cx="152.263" cy="94.5287" rx="70.3507" ry="1.4027" fill="#270B31" fill-opacity="0.2"/>
|
||||
</g>
|
||||
<path d="M84.9943 76.0613C78.9626 81.3492 83.7424 86.0825 83.3441 87.5282H211.318C208.586 87.2906 216.325 86.9935 214.39 78.8538C212.456 70.7141 203.067 66.971 202.953 65.3074C202.839 63.6438 208.302 57.4647 204.148 53.3652C199.994 49.2656 200.279 50.4539 200.051 43.9777C199.823 37.5016 196.239 24.6682 181.785 22.4104C167.332 20.1527 164.146 26.0941 159.707 30.7878C155.269 35.4815 155.155 38.7493 152.253 39.5217C149.351 40.2941 145.937 38.0363 142.181 39.5217C138.426 41.007 138.539 43.0865 136.32 43.0865C134.101 43.0865 131.142 40.1752 124.428 43.0865C119.056 45.4155 117.561 54.7119 117.486 59.0689C115.153 57.1676 111.852 55.7417 107.812 55.5041C103.772 55.2664 99.6751 57.8212 96.0902 64.1191C92.5054 70.417 93.7003 73.0312 92.2209 73.9818C90.7414 74.9325 87.257 74.0776 84.9943 76.0613Z" fill="url(#paint0_radial_1629_965)"/>
|
||||
<path d="M77.8968 78.0029C71.4201 83.6173 76.5525 88.6429 76.1248 90.1779H224.939C222.006 89.9256 230.316 89.6102 228.238 80.9678C226.161 72.3254 204.682 68.3511 204.56 66.5848C204.437 64.8184 210.303 58.2578 205.843 53.905C201.382 49.5523 201.688 50.814 201.444 43.9379C201.199 37.0618 197.35 23.4358 181.83 21.0386C166.31 18.6415 162.889 24.9498 158.123 29.9334C153.357 34.917 153.235 38.3865 150.118 39.2066C147.002 40.0267 143.336 37.6295 139.304 39.2066C135.271 40.7837 135.393 42.9916 133.01 42.9916C130.627 42.9916 127.45 39.9005 120.24 42.9916C114.472 45.4645 112.867 55.3349 112.786 59.961C110.28 57.9424 106.737 56.4284 102.398 56.176C98.0602 55.9237 93.6609 58.6363 89.8115 65.3231C85.9621 72.0099 87.2453 74.7856 85.6566 75.7949C84.068 76.8043 80.3265 75.8967 77.8968 78.0029Z" fill="url(#paint1_linear_1629_965)"/>
|
||||
<path d="M64 92.5154C64.4274 90.9916 63.0518 84.0631 69.2954 78.1816C73.9075 73.837 82.3452 74.8389 83.9325 73.837C85.5198 72.835 84.2377 70.0797 88.0839 63.4418C91.9302 56.8039 96.3258 54.1112 100.66 54.3617C104.995 54.6122 108.536 56.1151 111.039 58.119C111.121 53.5267 112.724 43.7285 118.487 41.2738C125.691 38.2053 126.815 39.5809 129.196 39.5809C131.577 39.5809 131.202 36.4314 135.232 34.8658C139.261 33.3003 142.253 36.6229 145.367 35.8088C148.481 34.9948 151.577 33.2582 156.339 28.3111C161.101 23.364 167.574 20.6722 179.36 22.4809C194.867 24.8606 197.621 32.8181 197.866 39.6438C198.11 46.4695 202.195 45.8764 204.02 52.1073C205.78 58.1189 202.616 62.9408 202.738 64.6942C202.86 66.4476 216.573 70.0425 218.649 78.6217C220.081 84.5405 217.423 89.5048 217.095 91.1471L218.649 91.1332C217.271 91.9522 216.948 91.8852 217.095 91.1471L64 92.5154Z" fill="url(#paint2_linear_1629_965)" fill-opacity="0.4"/>
|
||||
<path d="M180.975 26.8375C180.996 26.7532 181.061 26.6968 181.12 26.7117C181.178 26.7265 181.208 26.8069 181.187 26.8912C181.166 26.9756 181.101 27.0319 181.042 27.0171C180.984 27.0022 180.954 26.9218 180.975 26.8375Z" fill="#D1FEF9"/>
|
||||
<path d="M184.535 25.9435C184.558 25.8514 184.629 25.7899 184.693 25.8061C184.757 25.8223 184.79 25.9101 184.767 26.0022C184.744 26.0943 184.673 26.1558 184.609 26.1396C184.545 26.1234 184.512 26.0356 184.535 25.9435Z" fill="#D1FEF9"/>
|
||||
<path d="M185.143 26.6014C185.174 26.4773 185.27 26.3944 185.356 26.4162C185.442 26.4381 185.487 26.5564 185.455 26.6805C185.424 26.8047 185.329 26.8876 185.242 26.8657C185.156 26.8439 185.112 26.7255 185.143 26.6014Z" fill="#D1FEF9"/>
|
||||
<path d="M187.117 25.8526C187.131 25.7964 187.174 25.7588 187.213 25.7687C187.252 25.7786 187.272 25.8322 187.258 25.8884C187.244 25.9447 187.201 25.9822 187.162 25.9723C187.123 25.9624 187.102 25.9088 187.117 25.8526Z" fill="#D1FEF9"/>
|
||||
<path d="M189.227 24.4391C189.272 24.2598 189.41 24.1401 189.535 24.1716C189.659 24.2032 189.723 24.3741 189.678 24.5533C189.633 24.7326 189.495 24.8524 189.37 24.8208C189.246 24.7893 189.181 24.6184 189.227 24.4391Z" fill="#D1FEF9"/>
|
||||
<path d="M189.8 25.0576C189.815 24.9974 189.861 24.9571 189.903 24.9677C189.945 24.9783 189.967 25.0358 189.951 25.096C189.936 25.1562 189.89 25.1965 189.848 25.1859C189.806 25.1753 189.785 25.1179 189.8 25.0576Z" fill="#D1FEF9"/>
|
||||
<path d="M186.436 28.2017C186.459 28.1077 186.532 28.045 186.597 28.0615C186.662 28.078 186.696 28.1676 186.672 28.2615C186.648 28.3555 186.576 28.4182 186.511 28.4017C186.445 28.3852 186.412 28.2956 186.436 28.2017Z" fill="#D1FEF9"/>
|
||||
<path d="M182.181 28.0253C182.188 28.0006 182.207 27.9841 182.224 27.9884C182.241 27.9928 182.25 28.0164 182.244 28.0411C182.238 28.0659 182.218 28.0824 182.201 28.0781C182.184 28.0737 182.175 28.0501 182.181 28.0253Z" fill="#D1FEF9"/>
|
||||
<path d="M180.573 27.8108C180.598 27.7104 180.675 27.6434 180.745 27.661C180.815 27.6787 180.851 27.7744 180.825 27.8748C180.8 27.9752 180.723 28.0423 180.653 28.0246C180.583 28.007 180.547 27.9113 180.573 27.8108Z" fill="#D1FEF9"/>
|
||||
<path d="M182.555 26.8076C182.591 26.6684 182.698 26.5754 182.794 26.5999C182.891 26.6244 182.941 26.7571 182.906 26.8964C182.87 27.0356 182.763 27.1286 182.667 27.1041C182.57 27.0796 182.52 26.9469 182.555 26.8076Z" fill="#D1FEF9"/>
|
||||
<path d="M183.695 27.445C183.705 27.403 183.738 27.3749 183.767 27.3823C183.796 27.3897 183.811 27.4298 183.801 27.4718C183.79 27.5138 183.758 27.5419 183.728 27.5345C183.699 27.5271 183.684 27.487 183.695 27.445Z" fill="#D1FEF9"/>
|
||||
<path d="M184.761 22.7638C184.797 22.619 184.909 22.5223 185.009 22.5478C185.11 22.5733 185.162 22.7113 185.125 22.856C185.088 23.0008 184.977 23.0975 184.876 23.072C184.776 23.0466 184.724 22.9086 184.761 22.7638Z" fill="#D1FEF9"/>
|
||||
<path d="M197.228 32.2228C197.28 32.0185 197.437 31.8821 197.579 31.9181C197.721 31.954 197.794 32.1487 197.742 32.3529C197.69 32.5571 197.533 32.6935 197.392 32.6576C197.25 32.6216 197.177 32.427 197.228 32.2228Z" fill="#D1FEF9"/>
|
||||
<path d="M186.886 23.4332C186.903 23.3653 186.955 23.3199 187.002 23.3318C187.049 23.3438 187.074 23.4086 187.057 23.4766C187.039 23.5445 186.987 23.5899 186.94 23.578C186.893 23.566 186.868 23.5012 186.886 23.4332Z" fill="#D1FEF9"/>
|
||||
<path d="M184.456 23.2937C184.473 23.2297 184.522 23.187 184.566 23.1982C184.611 23.2095 184.633 23.2705 184.617 23.3344C184.601 23.3984 184.552 23.4411 184.507 23.4298C184.463 23.4186 184.44 23.3576 184.456 23.2937Z" fill="#D1FEF9"/>
|
||||
<path d="M186.028 23.8093C186.044 23.7481 186.091 23.7072 186.133 23.718C186.176 23.7288 186.198 23.7871 186.182 23.8482C186.167 23.9094 186.12 23.9503 186.077 23.9395C186.035 23.9287 186.013 23.8704 186.028 23.8093Z" fill="#D1FEF9"/>
|
||||
<path d="M183.201 24.0046C183.224 23.9104 183.297 23.8474 183.362 23.864C183.428 23.8806 183.462 23.9704 183.438 24.0647C183.414 24.1589 183.341 24.2219 183.276 24.2053C183.21 24.1887 183.177 24.0989 183.201 24.0046Z" fill="#D1FEF9"/>
|
||||
<path d="M193.886 25.5764C193.915 25.4612 194.004 25.3842 194.084 25.4045C194.164 25.4248 194.205 25.5346 194.176 25.6498C194.147 25.765 194.058 25.842 193.978 25.8217C193.898 25.8014 193.857 25.6916 193.886 25.5764Z" fill="#D1FEF9"/>
|
||||
<path d="M195.254 26.0376C195.269 25.978 195.315 25.9382 195.357 25.9487C195.398 25.9592 195.419 26.016 195.404 26.0756C195.389 26.1353 195.343 26.1751 195.302 26.1646C195.261 26.1541 195.239 26.0973 195.254 26.0376Z" fill="#D1FEF9"/>
|
||||
<path d="M196.425 27.9678C196.442 27.8979 196.496 27.8513 196.545 27.8636C196.593 27.8759 196.618 27.9424 196.6 28.0123C196.583 28.0821 196.529 28.1287 196.481 28.1164C196.432 28.1041 196.407 28.0376 196.425 27.9678Z" fill="#D1FEF9"/>
|
||||
<path d="M194.119 27.3598C194.14 27.2771 194.203 27.2217 194.261 27.2363C194.318 27.2509 194.348 27.3298 194.327 27.4126C194.306 27.4954 194.242 27.5507 194.185 27.5361C194.127 27.5215 194.098 27.4426 194.119 27.3598Z" fill="#D1FEF9"/>
|
||||
<path d="M192.066 27.5246C192.086 27.4477 192.145 27.3963 192.198 27.4098C192.252 27.4234 192.279 27.4967 192.26 27.5736C192.24 27.6505 192.181 27.7019 192.128 27.6884C192.074 27.6748 192.047 27.6015 192.066 27.5246Z" fill="#D1FEF9"/>
|
||||
<path d="M196.029 32.9516C196.048 32.8743 196.108 32.8227 196.161 32.8363C196.215 32.8499 196.242 32.9235 196.223 33.0008C196.203 33.078 196.144 33.1296 196.09 33.116C196.037 33.1024 196.009 33.0288 196.029 32.9516Z" fill="#D1FEF9"/>
|
||||
<path d="M198.736 32.7852C198.759 32.6919 198.831 32.6295 198.896 32.646C198.961 32.6624 198.994 32.7514 198.971 32.8447C198.947 32.938 198.875 33.0004 198.81 32.9839C198.745 32.9675 198.712 32.8785 198.736 32.7852Z" fill="#D1FEF9"/>
|
||||
<path d="M192.613 32.3536C192.646 32.2224 192.747 32.1347 192.838 32.1578C192.929 32.1809 192.976 32.306 192.943 32.4372C192.91 32.5684 192.809 32.6561 192.718 32.633C192.627 32.6099 192.58 32.4848 192.613 32.3536Z" fill="#D1FEF9"/>
|
||||
<path d="M192.696 30.9826C192.708 30.9344 192.745 30.9022 192.778 30.9107C192.812 30.9192 192.829 30.9651 192.817 31.0133C192.805 31.0615 192.768 31.0937 192.734 31.0852C192.701 31.0767 192.684 31.0308 192.696 30.9826Z" fill="#D1FEF9"/>
|
||||
<path d="M195.364 32.527C195.378 32.4714 195.421 32.4342 195.46 32.444C195.498 32.4538 195.518 32.5068 195.504 32.5624C195.49 32.618 195.447 32.6552 195.409 32.6454C195.37 32.6356 195.35 32.5826 195.364 32.527Z" fill="#D1FEF9"/>
|
||||
<path d="M196.458 33.6049C196.476 33.5372 196.528 33.492 196.575 33.504C196.622 33.5159 196.646 33.5804 196.629 33.648C196.612 33.7157 196.56 33.7609 196.513 33.749C196.466 33.737 196.441 33.6726 196.458 33.6049Z" fill="#D1FEF9"/>
|
||||
<path d="M191.139 26.396C191.162 26.4858 191.114 26.5595 191.031 26.5606C190.948 26.5617 190.862 26.4898 190.839 26.4C190.816 26.3101 190.864 26.2364 190.947 26.2353C191.03 26.2342 191.116 26.3061 191.139 26.396Z" fill="#D1FEF9"/>
|
||||
<path d="M187.178 28.2533C187.204 28.3514 187.151 28.4319 187.06 28.4331C186.97 28.4344 186.876 28.3558 186.851 28.2577C186.825 28.1596 186.878 28.0791 186.968 28.0779C187.059 28.0767 187.153 28.1552 187.178 28.2533Z" fill="#D1FEF9"/>
|
||||
<path d="M186.017 27.7618C186.051 27.894 185.98 28.0025 185.858 28.0042C185.736 28.0058 185.61 27.8999 185.576 27.7677C185.541 27.6355 185.612 27.527 185.734 27.5254C185.856 27.5237 185.983 27.6296 186.017 27.7618Z" fill="#D1FEF9"/>
|
||||
<path d="M183.972 29.0433C183.988 29.1031 183.955 29.1523 183.9 29.153C183.845 29.1538 183.788 29.1058 183.772 29.0459C183.757 28.986 183.789 28.9369 183.844 28.9362C183.899 28.9354 183.957 28.9834 183.972 29.0433Z" fill="#D1FEF9"/>
|
||||
<path d="M182.151 31.0247C182.2 31.2157 182.098 31.3724 181.922 31.3747C181.746 31.3771 181.563 31.2242 181.513 31.0332C181.464 30.8423 181.567 30.6856 181.743 30.6832C181.919 30.6809 182.101 30.8338 182.151 31.0247Z" fill="#D1FEF9"/>
|
||||
<path d="M181.059 30.5635C181.075 30.6277 181.041 30.6803 180.982 30.6811C180.923 30.6819 180.861 30.6305 180.845 30.5664C180.828 30.5022 180.862 30.4496 180.922 30.4488C180.981 30.448 181.042 30.4993 181.059 30.5635Z" fill="#D1FEF9"/>
|
||||
<path d="M183.434 26.5185C183.46 26.6186 183.406 26.7007 183.314 26.7019C183.221 26.7032 183.126 26.6231 183.1 26.523C183.074 26.4229 183.128 26.3408 183.22 26.3396C183.312 26.3383 183.408 26.4185 183.434 26.5185Z" fill="#D1FEF9"/>
|
||||
<path d="M188.907 25.5407C188.914 25.5671 188.9 25.5887 188.875 25.589C188.851 25.5894 188.826 25.5682 188.819 25.5419C188.812 25.5155 188.826 25.4939 188.851 25.4936C188.875 25.4932 188.9 25.5143 188.907 25.5407Z" fill="#D1FEF9"/>
|
||||
<path d="M191.067 25.3168C191.095 25.4238 191.038 25.5115 190.939 25.5129C190.84 25.5142 190.738 25.4285 190.71 25.3216C190.683 25.2146 190.74 25.1269 190.839 25.1255C190.937 25.1242 191.04 25.2099 191.067 25.3168Z" fill="#D1FEF9"/>
|
||||
<path d="M189.16 26.8547C189.199 27.003 189.119 27.1247 188.982 27.1265C188.846 27.1283 188.704 27.0096 188.665 26.8613C188.627 26.713 188.707 26.5913 188.843 26.5895C188.98 26.5876 189.122 26.7064 189.16 26.8547Z" fill="#D1FEF9"/>
|
||||
<path d="M187.344 26.5283C187.356 26.573 187.332 26.6097 187.29 26.6103C187.249 26.6108 187.206 26.575 187.195 26.5303C187.183 26.4855 187.207 26.4488 187.249 26.4482C187.29 26.4477 187.333 26.4835 187.344 26.5283Z" fill="#D1FEF9"/>
|
||||
<path d="M188.786 31.4823C188.826 31.6365 188.743 31.763 188.601 31.7649C188.459 31.7668 188.311 31.6434 188.272 31.4892C188.232 31.335 188.314 31.2084 188.457 31.2065C188.599 31.2046 188.746 31.3281 188.786 31.4823Z" fill="#D1FEF9"/>
|
||||
<path d="M167.416 25.4379C167.472 25.6554 167.355 25.8339 167.155 25.8366C166.954 25.8392 166.746 25.6651 166.69 25.4476C166.634 25.23 166.75 25.0515 166.951 25.0489C167.151 25.0462 167.36 25.2203 167.416 25.4379Z" fill="#D1FEF9"/>
|
||||
<path d="M185.705 31.3925C185.724 31.4649 185.685 31.5243 185.618 31.5252C185.552 31.5261 185.482 31.4681 185.464 31.3957C185.445 31.3233 185.484 31.2639 185.551 31.263C185.617 31.2621 185.687 31.3201 185.705 31.3925Z" fill="#D1FEF9"/>
|
||||
<path d="M188.855 30.8713C188.873 30.9394 188.836 30.9953 188.773 30.9961C188.71 30.997 188.645 30.9424 188.628 30.8743C188.61 30.8062 188.647 30.7503 188.709 30.7495C188.772 30.7486 188.837 30.8032 188.855 30.8713Z" fill="#D1FEF9"/>
|
||||
<path d="M186.564 30.783C186.581 30.8482 186.546 30.9016 186.486 30.9024C186.426 30.9032 186.364 30.8511 186.347 30.7859C186.33 30.7208 186.365 30.6673 186.425 30.6665C186.485 30.6657 186.548 30.7179 186.564 30.783Z" fill="#D1FEF9"/>
|
||||
<path d="M190.017 29.8228C190.043 29.9232 189.989 30.0056 189.896 30.0068C189.804 30.0081 189.708 29.9277 189.682 29.8273C189.656 29.7269 189.71 29.6445 189.802 29.6433C189.895 29.642 189.991 29.7224 190.017 29.8228Z" fill="#D1FEF9"/>
|
||||
<path d="M175.592 31.1552C175.624 31.2779 175.558 31.3786 175.445 31.3801C175.332 31.3816 175.214 31.2834 175.183 31.1607C175.151 31.0379 175.217 30.9373 175.33 30.9357C175.443 30.9342 175.56 31.0325 175.592 31.1552Z" fill="#D1FEF9"/>
|
||||
<path d="M173.591 31.0672C173.608 31.1307 173.574 31.1829 173.515 31.1836C173.457 31.1844 173.396 31.1336 173.379 31.0701C173.363 31.0066 173.397 30.9544 173.456 30.9537C173.514 30.9529 173.575 31.0037 173.591 31.0672Z" fill="#D1FEF9"/>
|
||||
<path d="M170.963 29.4604C170.982 29.5348 170.942 29.5958 170.874 29.5967C170.805 29.5977 170.734 29.5381 170.715 29.4638C170.695 29.3894 170.735 29.3284 170.804 29.3274C170.872 29.3265 170.944 29.3861 170.963 29.4604Z" fill="#D1FEF9"/>
|
||||
<path d="M174.238 29.4409C174.261 29.5291 174.214 29.6014 174.132 29.6025C174.051 29.6036 173.967 29.533 173.944 29.4448C173.921 29.3566 173.968 29.2843 174.05 29.2832C174.131 29.2821 174.215 29.3527 174.238 29.4409Z" fill="#D1FEF9"/>
|
||||
<path d="M176.73 28.7189C176.751 28.8008 176.707 28.8681 176.632 28.8691C176.556 28.8701 176.478 28.8045 176.456 28.7226C176.435 28.6406 176.479 28.5734 176.555 28.5724C176.63 28.5714 176.709 28.637 176.73 28.7189Z" fill="#D1FEF9"/>
|
||||
<path d="M168.497 24.3865C168.518 24.4688 168.474 24.5363 168.398 24.5373C168.322 24.5383 168.243 24.4724 168.222 24.3902C168.201 24.3079 168.245 24.2404 168.321 24.2394C168.397 24.2384 168.475 24.3042 168.497 24.3865Z" fill="#D1FEF9"/>
|
||||
<path d="M165.177 25.2869C165.203 25.3863 165.15 25.4679 165.058 25.4691C164.966 25.4703 164.871 25.3907 164.845 25.2913C164.82 25.1919 164.873 25.1103 164.965 25.1091C165.056 25.1079 165.152 25.1875 165.177 25.2869Z" fill="#D1FEF9"/>
|
||||
<path d="M173.165 24.0564C173.201 24.1962 173.126 24.3109 172.997 24.3126C172.868 24.3143 172.735 24.2024 172.698 24.0626C172.662 23.9229 172.737 23.8082 172.866 23.8065C172.995 23.8047 173.129 23.9166 173.165 24.0564Z" fill="#D1FEF9"/>
|
||||
<path d="M173.875 25.4451C173.888 25.4965 173.861 25.5386 173.814 25.5392C173.766 25.5399 173.717 25.4988 173.704 25.4474C173.69 25.3961 173.718 25.354 173.765 25.3533C173.813 25.3527 173.862 25.3938 173.875 25.4451Z" fill="#D1FEF9"/>
|
||||
<path d="M169.589 24.629C169.604 24.6882 169.572 24.7368 169.518 24.7376C169.463 24.7383 169.406 24.6909 169.391 24.6317C169.376 24.5724 169.408 24.5238 169.462 24.5231C169.517 24.5224 169.573 24.5698 169.589 24.629Z" fill="#D1FEF9"/>
|
||||
<path d="M167.565 23.8528C167.584 23.9249 167.545 23.9841 167.479 23.9849C167.412 23.9858 167.343 23.9281 167.325 23.8561C167.306 23.784 167.345 23.7249 167.411 23.724C167.478 23.7231 167.547 23.7808 167.565 23.8528Z" fill="#D1FEF9"/>
|
||||
<path d="M169.428 23.8784C169.457 23.9554 169.538 23.9963 169.611 23.9697C169.684 23.943 169.72 23.859 169.692 23.782C169.663 23.705 169.582 23.6642 169.509 23.6908C169.436 23.7174 169.4 23.8014 169.428 23.8784Z" fill="#D1FEF9"/>
|
||||
<path d="M172.161 22.7394C172.214 22.8836 172.367 22.9601 172.503 22.9103C172.639 22.8604 172.707 22.7031 172.654 22.5589C172.601 22.4147 172.448 22.3383 172.312 22.3881C172.176 22.4379 172.108 22.5952 172.161 22.7394Z" fill="#D1FEF9"/>
|
||||
<path d="M171.352 23.6618C171.391 23.7686 171.505 23.8252 171.606 23.7883C171.706 23.7514 171.756 23.635 171.717 23.5282C171.678 23.4215 171.565 23.3649 171.464 23.4018C171.363 23.4387 171.313 23.5551 171.352 23.6618Z" fill="#D1FEF9"/>
|
||||
<path d="M172.037 21.0867C172.057 21.1421 172.116 21.1715 172.168 21.1523C172.221 21.1332 172.246 21.0727 172.226 21.0173C172.206 20.9619 172.147 20.9325 172.095 20.9517C172.042 20.9708 172.016 21.0313 172.037 21.0867Z" fill="#D1FEF9"/>
|
||||
<path d="M174.065 20.7249C174.081 20.7709 174.13 20.7953 174.174 20.7794C174.217 20.7635 174.239 20.7133 174.222 20.6673C174.205 20.6213 174.156 20.5969 174.113 20.6128C174.069 20.6287 174.048 20.6789 174.065 20.7249Z" fill="#D1FEF9"/>
|
||||
<path d="M175.056 25.8841C175.113 26.0417 175.281 26.1253 175.43 26.0708C175.579 26.0163 175.652 25.8444 175.595 25.6868C175.537 25.5291 175.37 25.4455 175.221 25.5C175.072 25.5545 174.998 25.7264 175.056 25.8841Z" fill="#D1FEF9"/>
|
||||
<path d="M173.985 25.5796C174.013 25.656 174.094 25.6965 174.166 25.6701C174.238 25.6437 174.274 25.5604 174.246 25.484C174.218 25.4076 174.137 25.3671 174.065 25.3935C173.993 25.4199 173.957 25.5032 173.985 25.5796Z" fill="#D1FEF9"/>
|
||||
<path d="M175.964 25.9833C175.984 26.0359 176.04 26.0638 176.089 26.0456C176.139 26.0275 176.163 25.9701 176.144 25.9175C176.125 25.8649 176.069 25.837 176.019 25.8552C175.97 25.8734 175.945 25.9307 175.964 25.9833Z" fill="#D1FEF9"/>
|
||||
<path d="M170.703 26.8093C170.78 27.019 171.003 27.1303 171.201 27.0578C171.399 26.9853 171.497 26.7565 171.42 26.5468C171.343 26.337 171.121 26.2258 170.923 26.2983C170.725 26.3708 170.626 26.5996 170.703 26.8093Z" fill="#D1FEF9"/>
|
||||
<path d="M163.571 30.6017C163.619 30.7319 163.757 30.8009 163.88 30.7559C164.003 30.7109 164.064 30.5689 164.016 30.4388C163.968 30.3086 163.83 30.2396 163.707 30.2846C163.584 30.3296 163.523 30.4716 163.571 30.6017Z" fill="#D1FEF9"/>
|
||||
<path d="M165.864 30.6569C165.885 30.7142 165.945 30.7446 165.999 30.7247C166.054 30.7049 166.08 30.6425 166.059 30.5852C166.038 30.5279 165.978 30.4975 165.924 30.5173C165.869 30.5371 165.843 30.5996 165.864 30.6569Z" fill="#D1FEF9"/>
|
||||
<path d="M164.873 27.2667C164.927 27.4119 165.081 27.4888 165.218 27.4387C165.355 27.3885 165.423 27.2302 165.37 27.0851C165.317 26.9399 165.162 26.8629 165.025 26.9131C164.888 26.9633 164.82 27.1216 164.873 27.2667Z" fill="#D1FEF9"/>
|
||||
<path d="M161.484 30.2822C161.543 30.4439 161.715 30.5297 161.868 30.4738C162.02 30.4179 162.096 30.2415 162.037 30.0799C161.978 29.9182 161.806 29.8324 161.653 29.8883C161.501 29.9442 161.425 30.1205 161.484 30.2822Z" fill="#D1FEF9"/>
|
||||
<path d="M165.579 26.2633C165.6 26.3212 165.661 26.3519 165.716 26.3319C165.771 26.3119 165.798 26.2487 165.777 26.1908C165.755 26.1329 165.694 26.1022 165.639 26.1222C165.585 26.1422 165.557 26.2054 165.579 26.2633Z" fill="#D1FEF9"/>
|
||||
<path d="M182.65 21.9145C182.666 21.9586 182.713 21.982 182.755 21.9668C182.796 21.9515 182.817 21.9034 182.801 21.8592C182.785 21.8151 182.738 21.7917 182.696 21.8069C182.654 21.8222 182.634 21.8703 182.65 21.9145Z" fill="#D1FEF9"/>
|
||||
<path d="M179.544 24.0921C179.59 24.2195 179.725 24.287 179.846 24.243C179.966 24.199 180.026 24.0601 179.979 23.9327C179.932 23.8054 179.797 23.7378 179.677 23.7818C179.557 23.8259 179.497 23.9648 179.544 24.0921Z" fill="#D1FEF9"/>
|
||||
<path d="M177.504 23.1241C177.547 23.2408 177.671 23.3027 177.781 23.2624C177.892 23.222 177.946 23.0947 177.904 22.978C177.861 22.8612 177.737 22.7993 177.627 22.8397C177.516 22.88 177.462 23.0073 177.504 23.1241Z" fill="#D1FEF9"/>
|
||||
<path d="M178.633 21.8978C178.649 21.9432 178.698 21.9673 178.74 21.9516C178.783 21.9359 178.805 21.8864 178.788 21.841C178.771 21.7956 178.723 21.7715 178.68 21.7872C178.637 21.8029 178.616 21.8524 178.633 21.8978Z" fill="#D1FEF9"/>
|
||||
<path d="M177.177 20.452C177.21 20.5431 177.307 20.5914 177.393 20.5599C177.479 20.5284 177.522 20.429 177.488 20.3379C177.455 20.2467 177.358 20.1984 177.272 20.2299C177.186 20.2614 177.143 20.3608 177.177 20.452Z" fill="#D1FEF9"/>
|
||||
<path d="M175.4 22.5249C175.461 22.6932 175.64 22.7824 175.799 22.7243C175.958 22.6661 176.036 22.4826 175.975 22.3144C175.913 22.1461 175.735 22.0569 175.576 22.1151C175.417 22.1732 175.338 22.3567 175.4 22.5249Z" fill="#D1FEF9"/>
|
||||
<path d="M185.627 23.6536C185.673 23.7813 185.809 23.849 185.93 23.8049C186.05 23.7607 186.11 23.6215 186.063 23.4938C186.016 23.3662 185.881 23.2985 185.76 23.3426C185.64 23.3867 185.58 23.526 185.627 23.6536Z" fill="#D1FEF9"/>
|
||||
<path d="M184.044 27.4083C184.102 27.5681 184.272 27.6529 184.423 27.5977C184.574 27.5424 184.649 27.3681 184.59 27.2083C184.532 27.0485 184.362 26.9637 184.211 27.019C184.06 27.0742 183.985 27.2485 184.044 27.4083Z" fill="#D1FEF9"/>
|
||||
<path d="M179.558 27.7555C179.585 27.8309 179.665 27.8709 179.737 27.8449C179.808 27.8188 179.843 27.7365 179.816 27.661C179.788 27.5856 179.708 27.5456 179.637 27.5716C179.565 27.5977 179.53 27.68 179.558 27.7555Z" fill="#D1FEF9"/>
|
||||
<path d="M181.19 26.5137C181.221 26.5985 181.311 26.6435 181.391 26.6142C181.471 26.5849 181.511 26.4924 181.48 26.4075C181.449 26.3227 181.359 26.2777 181.279 26.307C181.199 26.3363 181.159 26.4289 181.19 26.5137Z" fill="#D1FEF9"/>
|
||||
<path d="M169.557 20.7719C169.579 20.8335 169.645 20.8662 169.703 20.8449C169.761 20.8236 169.79 20.7563 169.767 20.6947C169.745 20.633 169.679 20.6003 169.621 20.6216C169.563 20.6429 169.534 20.7102 169.557 20.7719Z" fill="#D1FEF9"/>
|
||||
<path d="M183.5 24.4671C183.536 24.5654 183.641 24.6176 183.734 24.5836C183.827 24.5496 183.873 24.4424 183.837 24.344C183.801 24.2457 183.696 24.1936 183.603 24.2275C183.511 24.2615 183.465 24.3688 183.5 24.4671Z" fill="#D1FEF9"/>
|
||||
<path d="M169.352 21.6356C169.401 21.7701 169.544 21.8415 169.671 21.795C169.798 21.7485 169.861 21.6017 169.812 21.4672C169.763 21.3327 169.62 21.2613 169.493 21.3078C169.366 21.3543 169.303 21.5011 169.352 21.6356Z" fill="#D1FEF9"/>
|
||||
<path d="M204.809 58.2468C204.86 58.2145 204.882 58.1598 204.86 58.1248C204.837 58.0899 204.778 58.0877 204.728 58.1201C204.678 58.1525 204.655 58.2071 204.677 58.2421C204.7 58.2771 204.759 58.2792 204.809 58.2468Z" fill="#D1FEF9"/>
|
||||
<path d="M204.615 55.7279C204.67 55.6925 204.695 55.6327 204.67 55.5943C204.646 55.556 204.581 55.5537 204.526 55.5891C204.471 55.6246 204.446 55.6844 204.47 55.7227C204.495 55.7611 204.56 55.7634 204.615 55.7279Z" fill="#D1FEF9"/>
|
||||
<path d="M204.052 55.4746C204.126 55.4268 204.159 55.3462 204.126 55.2945C204.093 55.2429 204.006 55.2397 203.931 55.2875C203.857 55.3353 203.824 55.4159 203.857 55.4676C203.89 55.5192 203.977 55.5224 204.052 55.4746Z" fill="#D1FEF9"/>
|
||||
<path d="M204.109 54.023C204.143 54.0014 204.158 53.965 204.143 53.9416C204.128 53.9183 204.089 53.9169 204.055 53.9385C204.021 53.96 204.006 53.9965 204.021 54.0198C204.036 54.0431 204.076 54.0445 204.109 54.023Z" fill="#D1FEF9"/>
|
||||
<path d="M204.57 52.3372C204.677 52.2684 204.725 52.1523 204.677 52.0779C204.63 52.0035 204.504 51.999 204.397 52.0678C204.29 52.1366 204.242 52.2527 204.29 52.3271C204.337 52.4015 204.463 52.406 204.57 52.3372Z" fill="#D1FEF9"/>
|
||||
<path d="M204.041 52.0975C204.077 52.0744 204.093 52.0354 204.077 52.0104C204.061 51.9854 204.019 51.9838 203.983 52.007C203.947 52.0301 203.931 52.0691 203.947 52.0941C203.963 52.1191 204.005 52.1206 204.041 52.0975Z" fill="#D1FEF9"/>
|
||||
<path d="M202.726 54.9804C202.782 54.9442 202.808 54.8832 202.782 54.8441C202.757 54.805 202.691 54.8026 202.635 54.8388C202.579 54.875 202.554 54.936 202.579 54.9751C202.604 55.0142 202.67 55.0166 202.726 54.9804Z" fill="#D1FEF9"/>
|
||||
<path d="M203.772 57.7183C203.786 57.7088 203.793 57.6927 203.786 57.6824C203.78 57.6721 203.762 57.6715 203.748 57.681C203.733 57.6905 203.726 57.7066 203.733 57.7169C203.739 57.7272 203.757 57.7278 203.772 57.7183Z" fill="#D1FEF9"/>
|
||||
<path d="M204.263 58.722C204.323 58.6833 204.35 58.6181 204.323 58.5763C204.296 58.5345 204.226 58.532 204.166 58.5706C204.105 58.6093 204.078 58.6745 204.105 58.7163C204.132 58.7581 204.203 58.7606 204.263 58.722Z" fill="#D1FEF9"/>
|
||||
<path d="M204.482 57.2072C204.565 57.1537 204.603 57.0636 204.566 57.0058C204.528 56.948 204.431 56.9445 204.348 56.998C204.265 57.0514 204.227 57.1416 204.264 57.1993C204.302 57.2571 204.399 57.2606 204.482 57.2072Z" fill="#D1FEF9"/>
|
||||
<path d="M203.818 56.6041C203.843 56.5881 203.854 56.5609 203.843 56.5436C203.832 56.5262 203.803 56.5251 203.778 56.5412C203.753 56.5573 203.741 56.5844 203.753 56.6018C203.764 56.6192 203.793 56.6202 203.818 56.6041Z" fill="#D1FEF9"/>
|
||||
<path d="M206.64 54.8855C206.727 54.8299 206.765 54.7362 206.727 54.6761C206.688 54.616 206.587 54.6124 206.5 54.6679C206.414 54.7235 206.375 54.8173 206.414 54.8773C206.452 54.9374 206.554 54.941 206.64 54.8855Z" fill="#D1FEF9"/>
|
||||
<path d="M197.742 48.8173C197.864 48.7389 197.919 48.6067 197.864 48.5219C197.81 48.4372 197.667 48.432 197.545 48.5104C197.423 48.5888 197.368 48.721 197.423 48.8058C197.477 48.8905 197.62 48.8957 197.742 48.8173Z" fill="#D1FEF9"/>
|
||||
<path d="M205.739 53.6447C205.779 53.6187 205.798 53.5746 205.779 53.5464C205.761 53.5182 205.714 53.5165 205.673 53.5426C205.633 53.5687 205.614 53.6127 205.632 53.6409C205.651 53.6691 205.698 53.6708 205.739 53.6447Z" fill="#D1FEF9"/>
|
||||
<path d="M206.361 55.2001C206.4 55.1755 206.417 55.1341 206.4 55.1076C206.383 55.0811 206.338 55.0795 206.3 55.104C206.261 55.1285 206.244 55.1699 206.261 55.1965C206.278 55.223 206.323 55.2246 206.361 55.2001Z" fill="#D1FEF9"/>
|
||||
<path d="M205.68 54.2867C205.716 54.2632 205.733 54.2236 205.717 54.1982C205.7 54.1729 205.657 54.1713 205.621 54.1948C205.584 54.2183 205.568 54.2579 205.584 54.2833C205.601 54.3086 205.643 54.3102 205.68 54.2867Z" fill="#D1FEF9"/>
|
||||
<path d="M206.172 56.175C206.228 56.1387 206.254 56.0775 206.229 56.0383C206.203 55.999 206.137 55.9967 206.081 56.0329C206.024 56.0692 205.999 56.1304 206.024 56.1697C206.049 56.2089 206.116 56.2113 206.172 56.175Z" fill="#D1FEF9"/>
|
||||
<path d="M202.811 49.5445C202.88 49.5001 202.911 49.4253 202.88 49.3774C202.849 49.3294 202.768 49.3265 202.699 49.3709C202.63 49.4152 202.599 49.49 202.63 49.538C202.661 49.5859 202.742 49.5888 202.811 49.5445Z" fill="#D1FEF9"/>
|
||||
<path d="M202.21 48.7532C202.246 48.7304 202.262 48.6917 202.246 48.667C202.23 48.6423 202.188 48.6408 202.152 48.6636C202.117 48.6865 202.101 48.7251 202.117 48.7499C202.133 48.7746 202.174 48.7761 202.21 48.7532Z" fill="#D1FEF9"/>
|
||||
<path d="M200.696 48.4109C200.737 48.3841 200.756 48.3389 200.737 48.3099C200.719 48.2809 200.67 48.2792 200.628 48.306C200.587 48.3328 200.568 48.378 200.586 48.4069C200.605 48.4359 200.654 48.4377 200.696 48.4109Z" fill="#D1FEF9"/>
|
||||
<path d="M201.597 49.7837C201.647 49.7519 201.669 49.6983 201.647 49.6639C201.625 49.6296 201.567 49.6275 201.517 49.6593C201.468 49.691 201.446 49.7446 201.468 49.779C201.49 49.8134 201.548 49.8155 201.597 49.7837Z" fill="#D1FEF9"/>
|
||||
<path d="M201.937 51.1588C201.983 51.1293 202.003 51.0795 201.983 51.0476C201.962 51.0156 201.908 51.0137 201.862 51.0432C201.817 51.0727 201.796 51.1226 201.816 51.1545C201.837 51.1864 201.891 51.1883 201.937 51.1588Z" fill="#D1FEF9"/>
|
||||
<path d="M197.529 49.7596C197.575 49.73 197.596 49.68 197.575 49.6479C197.555 49.6159 197.501 49.6139 197.455 49.6436C197.408 49.6732 197.388 49.7232 197.408 49.7553C197.429 49.7873 197.483 49.7893 197.529 49.7596Z" fill="#D1FEF9"/>
|
||||
<path d="M197.047 47.9565C197.103 47.9205 197.128 47.8599 197.103 47.8211C197.078 47.7822 197.013 47.7799 196.957 47.8158C196.901 47.8517 196.876 47.9123 196.901 47.9512C196.926 47.99 196.991 47.9924 197.047 47.9565Z" fill="#D1FEF9"/>
|
||||
<path d="M198.667 51.857C198.745 51.8066 198.781 51.7216 198.746 51.6672C198.711 51.6127 198.619 51.6094 198.54 51.6598C198.462 51.7101 198.427 51.7951 198.462 51.8496C198.497 51.904 198.589 51.9073 198.667 51.857Z" fill="#D1FEF9"/>
|
||||
<path d="M199.542 51.5038C199.571 51.4853 199.584 51.4541 199.571 51.4341C199.558 51.4141 199.524 51.4129 199.495 51.4314C199.467 51.4499 199.454 51.4811 199.467 51.5011C199.479 51.5211 199.513 51.5223 199.542 51.5038Z" fill="#D1FEF9"/>
|
||||
<path d="M197.952 50.1006C197.985 50.0792 198 50.0432 197.985 50.0202C197.97 49.9971 197.931 49.9957 197.898 50.017C197.865 50.0384 197.85 50.0744 197.865 50.0974C197.88 50.1205 197.919 50.1219 197.952 50.1006Z" fill="#D1FEF9"/>
|
||||
<path d="M197.01 49.622C197.05 49.5961 197.068 49.5523 197.05 49.5242C197.032 49.4961 196.985 49.4944 196.944 49.5204C196.904 49.5463 196.886 49.5901 196.904 49.6182C196.922 49.6463 196.969 49.648 197.01 49.622Z" fill="#D1FEF9"/>
|
||||
<path d="M150.282 45.5535C150.332 45.5211 150.355 45.4665 150.332 45.4315C150.31 45.3965 150.251 45.3944 150.201 45.4267C150.15 45.4591 150.128 45.5137 150.15 45.5487C150.173 45.5837 150.232 45.5858 150.282 45.5535Z" fill="#D1FEF9"/>
|
||||
<path d="M150.088 43.0355C150.143 43.0001 150.167 42.9403 150.143 42.9019C150.118 42.8636 150.053 42.8613 149.998 42.8967C149.943 42.9322 149.918 42.992 149.943 43.0303C149.968 43.0687 150.032 43.071 150.088 43.0355Z" fill="#D1FEF9"/>
|
||||
<path d="M149.526 42.7832C149.601 42.7354 149.634 42.6548 149.601 42.6031C149.568 42.5515 149.48 42.5483 149.406 42.5961C149.332 42.6439 149.298 42.7245 149.332 42.7762C149.365 42.8278 149.452 42.831 149.526 42.7832Z" fill="#D1FEF9"/>
|
||||
<path d="M149.582 41.3306C149.615 41.309 149.631 41.2726 149.616 41.2493C149.601 41.2259 149.561 41.2245 149.528 41.2461C149.494 41.2677 149.479 41.3041 149.494 41.3274C149.509 41.3507 149.548 41.3522 149.582 41.3306Z" fill="#D1FEF9"/>
|
||||
<path d="M150.045 39.6448C150.152 39.576 150.2 39.4599 150.152 39.3855C150.104 39.3111 149.979 39.3066 149.872 39.3754C149.765 39.4442 149.716 39.5603 149.764 39.6347C149.812 39.7091 149.938 39.7136 150.045 39.6448Z" fill="#D1FEF9"/>
|
||||
<path d="M149.514 39.4051C149.55 39.382 149.566 39.343 149.55 39.318C149.534 39.293 149.492 39.2915 149.456 39.3146C149.42 39.3377 149.404 39.3767 149.42 39.4017C149.436 39.4267 149.478 39.4282 149.514 39.4051Z" fill="#D1FEF9"/>
|
||||
<path d="M148.199 42.289C148.255 42.2528 148.28 42.1918 148.255 42.1527C148.23 42.1136 148.164 42.1112 148.108 42.1474C148.051 42.1836 148.026 42.2446 148.051 42.2837C148.076 42.3228 148.142 42.3252 148.199 42.289Z" fill="#D1FEF9"/>
|
||||
<path d="M149.244 45.0249C149.259 45.0154 149.266 44.9993 149.259 44.989C149.252 44.9787 149.235 44.9781 149.22 44.9876C149.205 44.9972 149.199 45.0132 149.205 45.0235C149.212 45.0338 149.229 45.0345 149.244 45.0249Z" fill="#D1FEF9"/>
|
||||
<path d="M149.735 46.0296C149.796 45.9909 149.823 45.9257 149.796 45.8839C149.769 45.8421 149.698 45.8396 149.638 45.8783C149.578 45.9169 149.551 45.9821 149.578 46.0239C149.605 46.0657 149.675 46.0682 149.735 46.0296Z" fill="#D1FEF9"/>
|
||||
<path d="M149.957 44.5158C150.04 44.4623 150.077 44.3722 150.04 44.3144C150.003 44.2566 149.906 44.2531 149.822 44.3066C149.739 44.36 149.702 44.4502 149.739 44.5079C149.776 44.5657 149.874 44.5692 149.957 44.5158Z" fill="#D1FEF9"/>
|
||||
<path d="M149.291 43.9108C149.316 43.8947 149.327 43.8676 149.316 43.8502C149.305 43.8328 149.275 43.8318 149.25 43.8478C149.225 43.8639 149.214 43.891 149.225 43.9084C149.236 43.9258 149.266 43.9269 149.291 43.9108Z" fill="#D1FEF9"/>
|
||||
<path d="M152.113 42.1931C152.199 42.1375 152.238 42.0438 152.199 41.9837C152.161 41.9236 152.059 41.92 151.973 41.9756C151.886 42.0311 151.848 42.1249 151.886 42.1849C151.925 42.245 152.026 42.2487 152.113 42.1931Z" fill="#D1FEF9"/>
|
||||
<path d="M143.215 36.1249C143.337 36.0465 143.392 35.9143 143.337 35.8296C143.283 35.7448 143.14 35.7397 143.018 35.818C142.896 35.8964 142.841 36.0287 142.895 36.1134C142.95 36.1981 143.093 36.2033 143.215 36.1249Z" fill="#D1FEF9"/>
|
||||
<path d="M151.211 40.9524C151.252 40.9263 151.27 40.8823 151.252 40.8541C151.234 40.8259 151.186 40.8241 151.146 40.8502C151.105 40.8763 151.087 40.9203 151.105 40.9485C151.123 40.9767 151.171 40.9784 151.211 40.9524Z" fill="#D1FEF9"/>
|
||||
<path d="M151.834 42.5077C151.872 42.4832 151.889 42.4418 151.872 42.4152C151.855 42.3887 151.81 42.3871 151.772 42.4116C151.734 42.4362 151.717 42.4776 151.734 42.5041C151.751 42.5306 151.796 42.5323 151.834 42.5077Z" fill="#D1FEF9"/>
|
||||
<path d="M151.155 41.5953C151.191 41.5718 151.207 41.5322 151.191 41.5068C151.175 41.4815 151.132 41.4799 151.095 41.5034C151.059 41.5269 151.043 41.5665 151.059 41.5919C151.075 41.6172 151.118 41.6188 151.155 41.5953Z" fill="#D1FEF9"/>
|
||||
<path d="M151.645 43.4826C151.701 43.4463 151.726 43.3851 151.701 43.3459C151.676 43.3067 151.61 43.3043 151.553 43.3406C151.497 43.3768 151.472 43.438 151.497 43.4773C151.522 43.5165 151.588 43.5189 151.645 43.4826Z" fill="#D1FEF9"/>
|
||||
<path d="M148.283 36.8531C148.352 36.8087 148.383 36.7339 148.353 36.686C148.322 36.638 148.241 36.6351 148.172 36.6795C148.103 36.7238 148.072 36.7986 148.103 36.8466C148.133 36.8945 148.214 36.8974 148.283 36.8531Z" fill="#D1FEF9"/>
|
||||
<path d="M147.685 36.0618C147.72 36.0389 147.736 36.0003 147.72 35.9756C147.704 35.9509 147.663 35.9494 147.627 35.9722C147.591 35.9951 147.575 36.0337 147.591 36.0585C147.607 36.0832 147.649 36.0847 147.685 36.0618Z" fill="#D1FEF9"/>
|
||||
<path d="M146.168 35.7185C146.21 35.6917 146.229 35.6465 146.21 35.6175C146.191 35.5886 146.143 35.5868 146.101 35.6136C146.059 35.6404 146.04 35.6856 146.059 35.7146C146.078 35.7435 146.127 35.7453 146.168 35.7185Z" fill="#D1FEF9"/>
|
||||
<path d="M147.07 37.0913C147.119 37.0595 147.141 37.0059 147.119 36.9716C147.097 36.9372 147.039 36.9351 146.99 36.9669C146.94 36.9987 146.918 37.0523 146.94 37.0866C146.962 37.121 147.02 37.1231 147.07 37.0913Z" fill="#D1FEF9"/>
|
||||
<path d="M147.409 38.4664C147.455 38.4369 147.476 38.3871 147.455 38.3552C147.435 38.3233 147.381 38.3213 147.335 38.3508C147.289 38.3804 147.269 38.4302 147.289 38.4621C147.31 38.494 147.363 38.496 147.409 38.4664Z" fill="#D1FEF9"/>
|
||||
<path d="M143.002 37.0673C143.048 37.0376 143.069 36.9876 143.048 36.9556C143.027 36.9235 142.973 36.9216 142.927 36.9512C142.881 36.9809 142.86 37.0309 142.881 37.0629C142.902 37.095 142.956 37.0969 143.002 37.0673Z" fill="#D1FEF9"/>
|
||||
<path d="M142.52 35.2631C142.576 35.2272 142.601 35.1666 142.576 35.1277C142.551 35.0889 142.485 35.0865 142.429 35.1224C142.373 35.1584 142.348 35.219 142.373 35.2578C142.398 35.2967 142.464 35.299 142.52 35.2631Z" fill="#D1FEF9"/>
|
||||
<path d="M144.14 39.1656C144.218 39.1152 144.253 39.0302 144.218 38.9758C144.183 38.9213 144.091 38.918 144.013 38.9684C143.935 39.0187 143.899 39.1037 143.934 39.1582C143.969 39.2126 144.061 39.2159 144.14 39.1656Z" fill="#D1FEF9"/>
|
||||
<path d="M145.015 38.8104C145.043 38.7919 145.056 38.7607 145.044 38.7407C145.031 38.7207 144.997 38.7195 144.968 38.738C144.939 38.7565 144.926 38.7877 144.939 38.8077C144.952 38.8277 144.986 38.8289 145.015 38.8104Z" fill="#D1FEF9"/>
|
||||
<path d="M143.424 37.4082C143.458 37.3869 143.472 37.3508 143.458 37.3278C143.443 37.3047 143.404 37.3033 143.371 37.3246C143.337 37.346 143.323 37.382 143.337 37.4051C143.352 37.4281 143.391 37.4295 143.424 37.4082Z" fill="#D1FEF9"/>
|
||||
<path d="M142.482 36.9296C142.523 36.9037 142.541 36.8599 142.523 36.8318C142.505 36.8037 142.457 36.802 142.417 36.828C142.377 36.854 142.358 36.8978 142.376 36.9258C142.394 36.9539 142.442 36.9556 142.482 36.9296Z" fill="#D1FEF9"/>
|
||||
<path d="M202.71 69.7177C202.715 69.6541 202.764 69.6174 202.817 69.6358C202.871 69.6542 202.91 69.7207 202.905 69.7843C202.899 69.8479 202.851 69.8845 202.797 69.8661C202.743 69.8478 202.704 69.7813 202.71 69.7177Z" fill="#D1FEF9"/>
|
||||
<path d="M205.704 69.4279C205.71 69.3583 205.763 69.3181 205.822 69.3383C205.881 69.3584 205.924 69.4312 205.917 69.5008C205.911 69.5705 205.858 69.6106 205.799 69.5905C205.74 69.5704 205.697 69.4976 205.704 69.4279Z" fill="#D1FEF9"/>
|
||||
<path d="M206.343 70.0128C206.351 69.9192 206.422 69.8653 206.502 69.8923C206.581 69.9194 206.639 70.0172 206.63 70.1108C206.622 70.2044 206.551 70.2583 206.472 70.2313C206.392 70.2043 206.335 70.1064 206.343 70.0128Z" fill="#D1FEF9"/>
|
||||
<path d="M207.965 69.6543C207.968 69.6119 208.001 69.5874 208.036 69.5997C208.072 69.6119 208.099 69.6562 208.095 69.6986C208.091 69.741 208.059 69.7655 208.023 69.7532C207.987 69.741 207.961 69.6967 207.965 69.6543Z" fill="#D1FEF9"/>
|
||||
<path d="M209.601 68.7895C209.613 68.6544 209.716 68.5764 209.83 68.6155C209.945 68.6546 210.028 68.7958 210.016 68.931C210.004 69.0662 209.901 69.1441 209.787 69.1051C209.672 69.066 209.589 68.9247 209.601 68.7895Z" fill="#D1FEF9"/>
|
||||
<path d="M210.204 69.3409C210.208 69.2955 210.242 69.2693 210.281 69.2824C210.319 69.2956 210.347 69.343 210.343 69.3885C210.339 69.4339 210.305 69.4601 210.266 69.4469C210.228 69.4338 210.2 69.3863 210.204 69.3409Z" fill="#D1FEF9"/>
|
||||
<path d="M207.729 71.4152C207.735 71.3441 207.789 71.3031 207.849 71.3237C207.91 71.3442 207.953 71.4185 207.947 71.4895C207.941 71.5606 207.887 71.6015 207.826 71.581C207.766 71.5605 207.723 71.4862 207.729 71.4152Z" fill="#D1FEF9"/>
|
||||
<path d="M203.957 70.7869C203.958 70.768 203.973 70.7571 203.989 70.7625C204.005 70.768 204.016 70.7877 204.015 70.8066C204.013 70.8255 203.999 70.8364 203.983 70.8309C203.967 70.8255 203.955 70.8057 203.957 70.7869Z" fill="#D1FEF9"/>
|
||||
<path d="M202.506 70.4334C202.512 70.3575 202.57 70.3137 202.635 70.3356C202.699 70.3576 202.746 70.4369 202.739 70.5129C202.732 70.5888 202.674 70.6326 202.61 70.6107C202.546 70.5887 202.499 70.5094 202.506 70.4334Z" fill="#D1FEF9"/>
|
||||
<path d="M204.097 69.8768C204.106 69.7718 204.186 69.7113 204.275 69.7416C204.364 69.772 204.429 69.8817 204.419 69.9867C204.41 70.0916 204.33 70.1522 204.241 70.1218C204.152 70.0915 204.088 69.9818 204.097 69.8768Z" fill="#D1FEF9"/>
|
||||
<path d="M205.199 70.5071C205.202 70.4755 205.226 70.4572 205.253 70.4663C205.279 70.4755 205.299 70.5086 205.296 70.5403C205.293 70.572 205.269 70.5902 205.242 70.5811C205.216 70.5719 205.196 70.5388 205.199 70.5071Z" fill="#D1FEF9"/>
|
||||
<path d="M205.409 66.9635C205.419 66.8543 205.502 66.7914 205.594 66.8229C205.687 66.8545 205.754 66.9686 205.744 67.0777C205.734 67.1869 205.652 67.2498 205.559 67.2183C205.466 67.1867 205.399 67.0727 205.409 66.9635Z" fill="#D1FEF9"/>
|
||||
<path d="M217.859 75.809C217.872 75.6551 217.989 75.5663 218.12 75.6108C218.251 75.6553 218.345 75.8162 218.331 75.9702C218.318 76.1242 218.201 76.213 218.07 76.1685C217.94 76.124 217.845 75.963 217.859 75.809Z" fill="#D1FEF9"/>
|
||||
<path d="M207.384 67.7325C207.389 67.6812 207.428 67.6517 207.471 67.6665C207.515 67.6813 207.546 67.7349 207.541 67.7861C207.537 67.8374 207.498 67.8669 207.455 67.8521C207.411 67.8373 207.38 67.7837 207.384 67.7325Z" fill="#D1FEF9"/>
|
||||
<path d="M205.223 67.3437C205.227 67.2955 205.264 67.2677 205.305 67.2816C205.346 67.2955 205.375 67.3459 205.371 67.3941C205.367 67.4424 205.33 67.4701 205.289 67.4562C205.248 67.4423 205.219 67.3919 205.223 67.3437Z" fill="#D1FEF9"/>
|
||||
<path d="M206.686 67.9288C206.69 67.8826 206.725 67.8561 206.764 67.8694C206.804 67.8827 206.832 67.9309 206.828 67.977C206.824 68.0232 206.789 68.0497 206.75 68.0364C206.71 68.0231 206.682 67.9749 206.686 67.9288Z" fill="#D1FEF9"/>
|
||||
<path d="M204.228 67.7543C204.235 67.683 204.289 67.642 204.349 67.6626C204.41 67.6832 204.453 67.7576 204.447 67.8289C204.441 67.9002 204.387 67.9413 204.326 67.9207C204.266 67.9001 204.222 67.8256 204.228 67.7543Z" fill="#D1FEF9"/>
|
||||
<path d="M213.881 70.2169C213.889 70.1298 213.955 70.0795 214.029 70.1047C214.103 70.1299 214.157 70.2209 214.149 70.3081C214.141 70.3952 214.075 70.4454 214.001 70.4202C213.927 70.3951 213.874 70.304 213.881 70.2169Z" fill="#D1FEF9"/>
|
||||
<path d="M215.156 70.7358C215.16 70.6908 215.194 70.6649 215.233 70.6779C215.271 70.6909 215.298 70.7379 215.294 70.7829C215.29 70.8278 215.256 70.8537 215.218 70.8407C215.18 70.8277 215.152 70.7808 215.156 70.7358Z" fill="#D1FEF9"/>
|
||||
<path d="M216.489 72.3838C216.494 72.3311 216.534 72.3008 216.579 72.316C216.623 72.3312 216.656 72.3862 216.651 72.4389C216.646 72.4915 216.606 72.5218 216.562 72.5066C216.517 72.4914 216.485 72.4364 216.489 72.3838Z" fill="#D1FEF9"/>
|
||||
<path d="M214.363 71.641C214.369 71.5785 214.416 71.5426 214.469 71.5606C214.522 71.5786 214.561 71.6439 214.555 71.7063C214.549 71.7687 214.502 71.8047 214.449 71.7867C214.396 71.7686 214.358 71.7034 214.363 71.641Z" fill="#D1FEF9"/>
|
||||
<path d="M212.581 71.5345C212.586 71.4765 212.631 71.443 212.68 71.4598C212.729 71.4766 212.765 71.5372 212.759 71.5952C212.754 71.6532 212.71 71.6866 212.661 71.6698C212.612 71.6531 212.576 71.5925 212.581 71.5345Z" fill="#D1FEF9"/>
|
||||
<path d="M216.917 76.2418C216.922 76.1836 216.966 76.15 217.015 76.1668C217.065 76.1836 217.101 76.2445 217.095 76.3027C217.09 76.361 217.046 76.3946 216.997 76.3777C216.947 76.3609 216.911 76.3 216.917 76.2418Z" fill="#D1FEF9"/>
|
||||
<path d="M219.275 76.4223C219.281 76.3518 219.335 76.3111 219.395 76.3315C219.455 76.3519 219.498 76.4256 219.492 76.4962C219.486 76.5668 219.432 76.6075 219.372 76.5871C219.312 76.5667 219.269 76.4929 219.275 76.4223Z" fill="#D1FEF9"/>
|
||||
<path d="M213.816 75.3794C213.825 75.2805 213.9 75.2234 213.984 75.252C214.067 75.2806 214.128 75.384 214.119 75.483C214.111 75.5819 214.036 75.6389 213.952 75.6103C213.868 75.5818 213.807 75.4784 213.816 75.3794Z" fill="#D1FEF9"/>
|
||||
<path d="M213.676 74.3151C213.679 74.2788 213.706 74.2578 213.737 74.2683C213.768 74.2788 213.79 74.3168 213.787 74.3531C213.784 74.3895 213.756 74.4104 213.725 74.3999C213.695 74.3894 213.672 74.3515 213.676 74.3151Z" fill="#D1FEF9"/>
|
||||
<path d="M216.265 75.8333C216.269 75.7914 216.3 75.7672 216.336 75.7793C216.371 75.7915 216.397 75.8353 216.393 75.8772C216.39 75.9191 216.358 75.9433 216.322 75.9312C216.287 75.9191 216.261 75.8753 216.265 75.8333Z" fill="#D1FEF9"/>
|
||||
<path d="M217.397 76.8035C217.401 76.7524 217.44 76.723 217.483 76.7378C217.526 76.7525 217.558 76.8058 217.553 76.8568C217.549 76.9079 217.51 76.9373 217.467 76.9225C217.423 76.9078 217.392 76.8545 217.397 76.8035Z" fill="#D1FEF9"/>
|
||||
<path d="M119.086 52.5404C119.034 52.5036 119.026 52.4434 119.069 52.406C119.112 52.3686 119.189 52.3682 119.241 52.405C119.294 52.4418 119.301 52.502 119.258 52.5394C119.215 52.5768 119.138 52.5773 119.086 52.5404Z" fill="#D1FEF9"/>
|
||||
<path d="M120.338 49.8048C120.28 49.7644 120.272 49.6985 120.319 49.6576C120.366 49.6166 120.451 49.6161 120.508 49.6565C120.565 49.6968 120.573 49.7627 120.526 49.8037C120.479 49.8446 120.395 49.8451 120.338 49.8048Z" fill="#D1FEF9"/>
|
||||
<path d="M121.165 49.5465C121.088 49.4923 121.078 49.4037 121.141 49.3487C121.204 49.2936 121.317 49.293 121.394 49.3472C121.471 49.4014 121.482 49.4899 121.419 49.545C121.356 49.6 121.242 49.6007 121.165 49.5465Z" fill="#D1FEF9"/>
|
||||
<path d="M121.669 47.9638C121.635 47.9393 121.63 47.8991 121.658 47.8742C121.687 47.8493 121.738 47.849 121.773 47.8735C121.808 47.8981 121.813 47.9382 121.784 47.9631C121.755 47.988 121.704 47.9884 121.669 47.9638Z" fill="#D1FEF9"/>
|
||||
<path d="M121.742 46.1139C121.631 46.0356 121.615 45.9077 121.707 45.8282C121.798 45.7487 121.962 45.7477 122.073 45.826C122.184 45.9043 122.199 46.0322 122.108 46.1117C122.017 46.1912 121.853 46.1922 121.742 46.1139Z" fill="#D1FEF9"/>
|
||||
<path d="M122.521 45.8704C122.483 45.8441 122.478 45.8011 122.509 45.7744C122.539 45.7477 122.595 45.7474 122.632 45.7737C122.669 45.8 122.674 45.8429 122.644 45.8697C122.613 45.8964 122.558 45.8967 122.521 45.8704Z" fill="#D1FEF9"/>
|
||||
<path d="M123.074 49.0504C123.016 49.0093 123.008 48.9421 123.056 48.9003C123.104 48.8585 123.19 48.858 123.248 48.8991C123.306 48.9403 123.315 49.0075 123.267 49.0493C123.219 49.0911 123.132 49.0916 123.074 49.0504Z" fill="#D1FEF9"/>
|
||||
<path d="M120.637 51.998C120.621 51.987 120.619 51.9691 120.632 51.958C120.645 51.9469 120.667 51.9468 120.683 51.9577C120.698 51.9687 120.701 51.9865 120.688 51.9977C120.675 52.0088 120.652 52.0089 120.637 51.998Z" fill="#D1FEF9"/>
|
||||
<path d="M119.602 53.0753C119.54 53.0313 119.531 52.9594 119.582 52.9148C119.633 52.8701 119.725 52.8696 119.788 52.9135C119.85 52.9575 119.859 53.0294 119.808 53.074C119.756 53.1187 119.664 53.1192 119.602 53.0753Z" fill="#D1FEF9"/>
|
||||
<path d="M119.919 51.4201C119.833 51.3593 119.821 51.26 119.892 51.1983C119.963 51.1365 120.09 51.1358 120.176 51.1966C120.262 51.2574 120.275 51.3567 120.204 51.4184C120.133 51.4802 120.005 51.4809 119.919 51.4201Z" fill="#D1FEF9"/>
|
||||
<path d="M121.018 50.7833C120.992 50.7649 120.988 50.7349 121.01 50.7163C121.031 50.6977 121.07 50.6975 121.096 50.7158C121.122 50.7341 121.125 50.7641 121.104 50.7828C121.082 50.8014 121.044 50.8016 121.018 50.7833Z" fill="#D1FEF9"/>
|
||||
<path d="M118.059 48.8241C117.97 48.7608 117.957 48.6576 118.031 48.5934C118.104 48.5292 118.237 48.5284 118.326 48.5916C118.416 48.6548 118.429 48.7581 118.355 48.8223C118.281 48.8865 118.149 48.8873 118.059 48.8241Z" fill="#D1FEF9"/>
|
||||
<path d="M131.959 42.4956C131.833 42.4064 131.815 42.2607 131.919 42.1701C132.023 42.0796 132.209 42.0785 132.336 42.1676C132.462 42.2568 132.48 42.4025 132.376 42.4931C132.272 42.5836 132.085 42.5847 131.959 42.4956Z" fill="#D1FEF9"/>
|
||||
<path d="M119.715 47.5007C119.673 47.471 119.667 47.4225 119.701 47.3924C119.736 47.3623 119.798 47.3619 119.84 47.3916C119.882 47.4213 119.888 47.4697 119.853 47.4999C119.819 47.53 119.757 47.5304 119.715 47.5007Z" fill="#D1FEF9"/>
|
||||
<path d="M118.293 49.1752C118.253 49.1473 118.248 49.1016 118.28 49.0733C118.313 49.0449 118.371 49.0446 118.411 49.0725C118.45 49.1004 118.456 49.146 118.423 49.1744C118.391 49.2028 118.332 49.2031 118.293 49.1752Z" fill="#D1FEF9"/>
|
||||
<path d="M119.535 48.2022C119.498 48.1755 119.492 48.1319 119.523 48.1047C119.555 48.0776 119.61 48.0773 119.648 48.104C119.686 48.1307 119.692 48.1743 119.66 48.2015C119.629 48.2286 119.573 48.2289 119.535 48.2022Z" fill="#D1FEF9"/>
|
||||
<path d="M118.149 50.2421C118.091 50.2008 118.083 50.1334 118.131 50.0914C118.179 50.0495 118.265 50.049 118.324 50.0903C118.382 50.1316 118.391 50.199 118.343 50.2409C118.294 50.2829 118.208 50.2834 118.149 50.2421Z" fill="#D1FEF9"/>
|
||||
<path d="M125.124 43.1284C125.053 43.0779 125.043 42.9955 125.101 42.9442C125.16 42.893 125.266 42.8924 125.337 42.9428C125.409 42.9933 125.419 43.0757 125.36 43.1269C125.301 43.1782 125.196 43.1788 125.124 43.1284Z" fill="#D1FEF9"/>
|
||||
<path d="M126.216 42.2859C126.179 42.2599 126.174 42.2173 126.204 42.1909C126.234 42.1645 126.289 42.1641 126.326 42.1902C126.363 42.2162 126.368 42.2587 126.338 42.2852C126.307 42.3116 126.253 42.3119 126.216 42.2859Z" fill="#D1FEF9"/>
|
||||
<path d="M128.309 41.9612C128.265 41.9307 128.259 41.8809 128.295 41.85C128.33 41.819 128.394 41.8186 128.437 41.8491C128.481 41.8796 128.487 41.9294 128.451 41.9604C128.416 41.9913 128.352 41.9917 128.309 41.9612Z" fill="#D1FEF9"/>
|
||||
<path d="M126.598 43.4269C126.547 43.3907 126.54 43.3316 126.582 43.2949C126.624 43.2582 126.7 43.2578 126.751 43.2939C126.802 43.3301 126.81 43.3891 126.767 43.4259C126.725 43.4626 126.65 43.463 126.598 43.4269Z" fill="#D1FEF9"/>
|
||||
<path d="M125.614 44.9133C125.566 44.8797 125.559 44.8248 125.599 44.7907C125.638 44.7566 125.708 44.7562 125.756 44.7898C125.803 44.8234 125.81 44.8782 125.771 44.9124C125.732 44.9465 125.661 44.9469 125.614 44.9133Z" fill="#D1FEF9"/>
|
||||
<path d="M131.859 43.5278C131.811 43.4941 131.804 43.439 131.844 43.4047C131.883 43.3705 131.954 43.37 132.001 43.4038C132.049 43.4375 132.056 43.4926 132.017 43.5269C131.977 43.5611 131.907 43.5615 131.859 43.5278Z" fill="#D1FEF9"/>
|
||||
<path d="M133.201 41.5792C133.143 41.5384 133.135 41.4716 133.183 41.4301C133.23 41.3885 133.316 41.388 133.374 41.4289C133.432 41.4698 133.44 41.5366 133.392 41.5781C133.345 41.6196 133.259 41.6201 133.201 41.5792Z" fill="#D1FEF9"/>
|
||||
<path d="M129.558 45.7769C129.477 45.7196 129.466 45.626 129.532 45.5678C129.599 45.5096 129.719 45.5089 129.8 45.5662C129.881 45.6235 129.893 45.7171 129.826 45.7753C129.759 45.8335 129.639 45.8342 129.558 45.7769Z" fill="#D1FEF9"/>
|
||||
<path d="M128.566 45.3635C128.536 45.3425 128.532 45.3081 128.557 45.2867C128.581 45.2653 128.625 45.2651 128.655 45.2861C128.685 45.3072 128.689 45.3415 128.665 45.3629C128.64 45.3843 128.596 45.3846 128.566 45.3635Z" fill="#D1FEF9"/>
|
||||
<path d="M131.179 43.8862C131.145 43.8619 131.14 43.8222 131.168 43.7975C131.196 43.7729 131.247 43.7726 131.281 43.7969C131.316 43.8211 131.321 43.8608 131.292 43.8855C131.264 43.9101 131.213 43.9104 131.179 43.8862Z" fill="#D1FEF9"/>
|
||||
<path d="M132.587 43.394C132.545 43.3645 132.539 43.3162 132.573 43.2862C132.608 43.2562 132.67 43.2558 132.711 43.2854C132.753 43.3149 132.759 43.3632 132.725 43.3932C132.69 43.4232 132.628 43.4236 132.587 43.394Z" fill="#D1FEF9"/>
|
||||
<path d="M83.3454 88.775C83.744 87.2434 78.96 82.229 84.997 76.6272C87.2618 74.5257 90.7493 75.4313 92.2301 74.4242C93.7109 73.4171 92.5149 70.6477 96.1029 63.9758C99.691 57.3039 103.792 54.5974 107.835 54.8492C111.879 55.101 115.182 56.6116 117.517 58.6257C117.593 54.0099 119.089 44.1616 124.466 41.6943C131.186 38.6101 134.148 41.6943 136.369 41.6943C138.59 41.6943 138.476 39.4913 142.235 37.9177C145.994 36.3442 149.411 38.736 152.316 37.9177C155.22 37.0995 155.334 33.6377 159.777 28.6652C164.219 23.6928 167.408 17.3986 181.875 19.7904C196.341 22.1822 201.694 33.6377 201.922 40.4984C202.15 47.3591 202.093 46.7296 206.251 51.0727C210.408 55.4157 206.137 62.2134 206.251 63.9758C206.364 65.7382 222.653 67.1859 222.653 88.6491" stroke="#5EE1EA" stroke-width="0.155848"/>
|
||||
<path d="M193.299 41.0847C184.844 41.0847 181.412 45.4425 179.719 49.582C180.481 50.3761 183.109 51.8443 187.628 50.8823C192.148 49.9204 193.3 43.9096 193.299 41.0847Z" fill="#D9D9D9"/>
|
||||
<mask id="mask0_1629_965" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="181" y="44" width="8" height="9">
|
||||
<path d="M181.434 47.941C181.224 50.2203 182.47 52.1987 184.536 52.3892C186.602 52.5797 188.189 50.8625 188.399 48.5832C188.609 46.3038 187.232 44.3133 185.297 44.1349C183.362 43.9566 181.644 45.6616 181.434 47.941Z" fill="black"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_1629_965)">
|
||||
<path d="M193.418 41.2146C185.688 38.3241 181.144 45.6751 179.839 49.7119C180.6 50.506 183.253 51.8536 187.773 50.8917C192.292 49.9297 193.419 44.0395 193.418 41.2146Z" fill="black"/>
|
||||
</g>
|
||||
<path d="M163.029 33.7861C169.236 36.8946 171.383 43.8239 170.476 47.9685C169.418 48.2707 166.448 48.098 163.029 44.9896C159.609 41.8811 161.604 36.2254 163.029 33.7861Z" fill="#D9D9D9"/>
|
||||
<mask id="mask1_1629_965" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="163" y="39" width="8" height="10">
|
||||
<path d="M170.336 44.0499C170.336 46.3389 168.913 48.1945 166.839 48.1945C164.764 48.1945 163.342 46.3389 163.342 44.0499C163.342 41.7609 164.896 39.9053 166.839 39.9053C168.782 39.9053 170.336 41.7609 170.336 44.0499Z" fill="#4A36C3"/>
|
||||
</mask>
|
||||
<g mask="url(#mask1_1629_965)">
|
||||
<path d="M163.148 33.915C171.282 35.3139 171.502 43.9528 170.595 48.0974C169.537 48.3996 166.567 48.2269 163.148 45.1185C159.728 42.01 161.723 36.3543 163.148 33.915Z" fill="#4A36C3"/>
|
||||
</g>
|
||||
<path d="M167.449 41.8867C167.474 41.8612 167.518 41.8733 167.527 41.9084L167.883 43.3166C167.887 43.33 167.896 43.3412 167.908 43.3472L169.25 43.9982C169.284 44.0145 169.286 44.0619 169.254 44.0807L167.99 44.8137C167.978 44.8209 167.97 44.8335 167.968 44.8477L167.768 46.2696C167.763 46.306 167.72 46.3225 167.692 46.299L166.551 45.3452C166.54 45.3366 166.527 45.3329 166.513 45.3349L165.044 45.5641C165.008 45.5697 164.98 45.5333 164.994 45.4996L165.556 44.1782C165.561 44.165 165.561 44.1499 165.554 44.1373L164.849 42.8581C164.831 42.8253 164.857 42.7856 164.894 42.789L166.38 42.9229C166.394 42.9242 166.407 42.9193 166.417 42.9096L167.449 41.8867Z" fill="#2D1D8E"/>
|
||||
<path d="M162.677 81.1924C163.174 82.5723 165.492 86.3808 164.499 93.1699L161.463 94.329" stroke="#CF0A80" stroke-width="0.647399" stroke-linecap="round"/>
|
||||
<path d="M168.361 82.627C168.803 83.5653 170.624 87.429 171.011 93.6109L174.047 94.3837" stroke="#CF0A80" stroke-width="0.647399" stroke-linecap="round"/>
|
||||
<path d="M160.027 78.708C159.769 80.0695 159.409 83.8412 160.027 88.0361" stroke="#CF0A80" stroke-width="0.647399" stroke-linecap="round"/>
|
||||
<path d="M169.411 68.7181C164.222 67.3382 161.628 73.7409 161.573 75.0104C157.709 75.0104 157.995 78.4465 158.813 79.5917C159.365 80.3644 160.745 81.6891 163.836 82.7378C166.927 83.7866 170.294 84.2281 171.232 84.1177C172.17 84.0073 173.385 84.1177 174.268 82.0203C174.974 80.3423 173.753 79.0029 173.164 78.5429C173.826 75.452 174.599 70.098 169.411 68.7181Z" fill="url(#paint3_linear_1629_965)"/>
|
||||
<ellipse cx="163.701" cy="75.6211" rx="0.717546" ry="0.772742" transform="rotate(23.8851 163.701 75.6211)" fill="#3B314F"/>
|
||||
<ellipse cx="168.558" cy="77.0557" rx="0.717546" ry="0.772742" transform="rotate(23.8851 168.558 77.0557)" fill="#3B314F"/>
|
||||
<path d="M173.053 79.4258C173.789 81.284 175.117 85.8947 174.543 89.4714" stroke="#CF0A80" stroke-width="0.647399" stroke-linecap="round"/>
|
||||
<path d="M116.801 85.1504C117.058 86.9167 117.419 91.2661 116.801 94.5337H119.837" stroke="#CF0A80" stroke-width="0.647399" stroke-linecap="round"/>
|
||||
<path d="M121.381 84.4883C122.135 86.181 123.699 90.1735 123.92 92.6021H127.563" stroke="#CF0A80" stroke-width="0.647399" stroke-linecap="round"/>
|
||||
<path d="M123.535 78.6371C125.357 78.0115 129.121 75.6013 129.607 70.9648" stroke="#CF0A80" stroke-width="0.647399" stroke-linecap="round"/>
|
||||
<path d="M116.635 70.4683C121.878 69.3644 124.086 76.8158 124.086 79.0236C124.804 79.0236 126.184 79.962 126.404 81.0107C126.625 82.0594 126.018 83.5206 124.638 84.1017C124.001 84.3701 121.492 85.2056 119.45 85.6471C117.408 86.0887 114.813 86.0335 113.378 86.0335C111.943 86.0335 110.453 85.0952 110.398 83.4393C110.354 82.1146 111.557 81.1947 112.164 80.9003C111.17 76.595 111.391 71.5722 116.635 70.4683Z" fill="url(#paint4_linear_1629_965)"/>
|
||||
<ellipse cx="121.856" cy="78.1552" rx="0.717546" ry="0.772742" transform="rotate(-17.4862 121.856 78.1552)" fill="#3B314F"/>
|
||||
<ellipse cx="117.993" cy="79.1484" rx="0.717546" ry="0.772742" transform="rotate(-17.4862 117.993 79.1484)" fill="#3B314F"/>
|
||||
<path d="M112.938 80.4043C113.618 83.0537 114.571 88.9707 112.938 91.4435" stroke="#CF0A80" stroke-width="0.647399" stroke-linecap="round"/>
|
||||
<path d="M170.065 16.6291C168.754 17.4106 164.86 18.3935 159.766 16.0726" stroke="#CF0A80" stroke-width="0.647399" stroke-linecap="round"/>
|
||||
<path d="M172.666 20.8911C171.414 21.6206 169.157 24.5255 169.446 26.9881C169.677 28.9582 172.092 29.6476 173.271 29.746L172.122 33.3534" stroke="#CF0A80" stroke-width="0.647399" stroke-linecap="round"/>
|
||||
<path d="M170.883 7.33867C165.98 9.52624 167.986 16.1368 168.741 17.1589C165.736 19.5873 168.118 22.0802 169.474 22.4568C170.389 22.711 172.295 22.8741 175.358 21.7472C178.422 20.6202 181.318 18.8476 181.978 18.172C182.639 17.4964 183.653 16.8191 183.021 14.6326C182.516 12.8834 180.724 12.6094 179.977 12.6217C178.55 9.80118 175.786 5.15109 170.883 7.33867Z" fill="url(#paint5_linear_1629_965)"/>
|
||||
<ellipse cx="170.78" cy="16.2962" rx="0.717546" ry="0.772742" transform="rotate(-15.0539 170.78 16.2962)" fill="#3B314F"/>
|
||||
<ellipse cx="175.46" cy="14.3597" rx="0.717546" ry="0.772742" transform="rotate(-15.0539 175.46 14.3597)" fill="#3B314F"/>
|
||||
<path d="M179.513 18.7354C177.829 18.6717 175.532 19.3265 174.626 21.1775C173.901 22.6583 175.86 24.9912 176.931 25.9725L174.096 27.7288" stroke="#CF0A80" stroke-width="0.647399" stroke-linecap="round"/>
|
||||
<path d="M179.253 13.9214C180.761 14.4139 183.932 16.8273 184.553 22.5403" stroke="#CF0A80" stroke-width="0.647399" stroke-linecap="round"/>
|
||||
<path d="M152.139 46.4104C152.563 43.809 150.523 42.1407 150.523 42.1407L148.058 43.0732L148.098 42.8271L150.556 41.881C152.896 43.795 152.39 46.3154 152.39 46.3154L151.974 48.9135L151.711 49.0072L152.139 46.4104Z" fill="url(#paint6_linear_1629_965)"/>
|
||||
<path d="M150.521 42.1399C150.521 42.1399 152.562 43.8085 152.137 46.4097C151.712 49.0114 151.712 49.0114 151.712 49.0114L149.247 49.9437L149.671 47.3425C149.671 47.3425 150.096 44.7414 148.056 43.0724L150.521 42.1399Z" fill="url(#paint7_linear_1629_965)"/>
|
||||
<path d="M128.344 85.3361L129.107 85.0476C129.107 85.0476 130.479 87.1675 132.652 87.9476L132.552 88.6457C132.552 88.6457 129.684 87.4816 128.344 85.3361Z" fill="url(#paint8_linear_1629_965)"/>
|
||||
<path d="M154.606 45.475L149.505 76.6916L127.317 85.0854L127.373 84.7415L132.418 53.8701L154.279 45.5994L154.284 45.5977L154.599 45.4778L154.604 45.4752L154.606 45.475Z" fill="#9C7AF3"/>
|
||||
<path d="M159.222 49.2506L159.773 49.7009L154.672 80.9178L132.485 89.3116L131.347 88.7108C130.161 88.0849 129.109 87.2332 128.25 86.2034L127.319 85.0861L149.417 76.6192L154.606 45.4755L155.139 45.9114L155.081 46.2633L155.029 46.5836L150.039 77.1285L128.345 85.3357L128.685 85.7398C129.514 86.7245 130.521 87.5443 131.652 88.1575L132.553 88.6452C132.771 88.5634 154.159 80.498 154.159 80.498L159.222 49.2506Z" fill="url(#paint9_linear_1629_965)"/>
|
||||
<path d="M154.604 45.4764L154.604 45.4786L149.416 76.6194L127.318 85.0866L127.373 84.7426L149.152 76.4001L154.283 45.5999L154.284 45.5989L154.6 45.479L154.604 45.4764Z" fill="url(#paint10_linear_1629_965)"/>
|
||||
<path d="M158.011 49.1782C158.219 49.2964 158.416 49.3987 158.599 49.4892L153.608 80.0292L153.585 80.029C153.115 79.8494 152.457 79.5433 151.772 79.0194C151.722 78.9814 151.671 78.9425 151.621 78.9007C151.546 78.8403 151.47 78.7771 151.394 78.7102C151.079 78.4336 150.809 78.1475 150.584 77.8763C150.358 77.6061 150.178 77.3485 150.038 77.128L155.03 46.5709C155.134 46.7059 155.251 46.8498 155.38 47.0021C155.412 47.0379 155.443 47.0756 155.478 47.1126C155.681 47.3425 155.915 47.585 156.179 47.8287C156.211 47.86 156.244 47.8904 156.278 47.9204C156.391 48.0232 156.51 48.1255 156.633 48.2263C156.682 48.2669 156.733 48.308 156.784 48.3487L156.788 48.3521C156.846 48.398 156.905 48.4433 156.964 48.4869L157.065 48.5632C157.356 48.7776 157.638 48.9599 157.907 49.1175C157.942 49.1387 157.977 49.1591 158.011 49.1782Z" fill="url(#paint11_linear_1629_965)"/>
|
||||
<path d="M151.395 78.7099C150.765 78.1562 150.318 77.5689 150.039 77.128L129.108 85.0466C129.418 85.5168 129.914 86.159 130.664 86.7712C131.41 87.3805 132.134 87.7382 132.655 87.948L151.838 80.6905L153.332 80.1251L153.586 80.0291C153.031 79.8172 152.212 79.4271 151.395 78.7099Z" fill="url(#paint12_linear_1629_965)"/>
|
||||
<path d="M132.553 88.6447C132.771 88.5633 154.159 80.4976 154.159 80.4976L159.222 49.2501L158.579 49.4721L153.572 80.0178L132.653 87.9467L132.553 88.6447Z" fill="url(#paint13_linear_1629_965)"/>
|
||||
<path d="M156.784 48.3492L151.772 79.0198C151.722 78.9818 151.671 78.9429 151.621 78.9011L156.632 48.2271C156.682 48.2677 156.732 48.3088 156.784 48.3492Z" fill="url(#paint14_linear_1629_965)"/>
|
||||
<path d="M147.555 60.0699L134.439 65.0316L134.507 64.6455L147.623 59.6839L147.555 60.0699Z" fill="#422D97"/>
|
||||
<path d="M147.866 58.0806L134.75 63.0423L134.818 62.6563L147.933 57.6949L147.866 58.0806Z" fill="#422D97"/>
|
||||
<path d="M148.207 56.1109L135.092 61.0726L135.16 60.6865L148.275 55.7252L148.207 56.1109Z" fill="#422D97"/>
|
||||
<path d="M148.534 54.1461L135.418 59.1077L135.486 58.7217L148.601 53.7604L148.534 54.1461Z" fill="#422D97"/>
|
||||
<path d="M135.905 46.567C134.745 47.0638 129.226 51.0931 124.424 44.8008" stroke="#CF0A80" stroke-width="0.647399" stroke-linecap="round"/>
|
||||
<path d="M137.063 35.7474C132.559 38.0877 134.008 44.1188 135.296 46.8418C133.144 48.4424 134.303 53.4101 137.725 52.7478C141.147 52.0854 146.998 49.6568 148.764 48.1113C150.53 46.5658 150.641 44.8547 149.868 43.4197C149.25 42.2716 147.513 41.911 146.722 41.8742C146.391 40.6047 142.693 32.822 137.063 35.7474Z" fill="url(#paint15_linear_1629_965)"/>
|
||||
<ellipse cx="137.891" cy="47.9689" rx="0.717546" ry="0.772742" transform="rotate(-27.358 137.891 47.9689)" fill="#3B314F"/>
|
||||
<ellipse cx="143.19" cy="46.6437" rx="0.717546" ry="0.772742" transform="rotate(-27.358 143.19 46.6437)" fill="#3B314F"/>
|
||||
<path d="M137.67 52.3623C136.235 53.2454 134.69 55.0669 134.966 57.1091C135.187 58.7429 138.112 59.593 139.547 59.8137L138.167 62.8495" stroke="#CF0A80" stroke-width="0.647399" stroke-linecap="round"/>
|
||||
<path d="M144.018 50.3193C142.914 51.2577 141.203 54.5142 141.92 56.8876C142.495 58.7864 144.993 59.0403 146.171 58.9299L145.674 62.6832" stroke="#CF0A80" stroke-width="0.647399" stroke-linecap="round"/>
|
||||
<path d="M145.895 41.985C148.82 40.9915 152.297 40.3843 150.752 32.2705" stroke="#CF0A80" stroke-width="0.647399" stroke-linecap="round"/>
|
||||
<defs>
|
||||
<filter id="filter0_f_1629_965" x="78.2435" y="89.4574" width="148.038" height="10.1428" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="1.8343" result="effect1_foregroundBlur_1629_965"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1629_965" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(177.062 20.4498) rotate(92.148) scale(65.2825 132.132)">
|
||||
<stop stop-color="#51DCFA" stop-opacity="0.79"/>
|
||||
<stop offset="0.760998" stop-color="#58DFFC" stop-opacity="0.0655291"/>
|
||||
<stop offset="1" stop-color="#59DFFC" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="paint1_linear_1629_965" x1="179.567" y1="16.0172" x2="185.691" y2="105.174" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#8CFFEA" stop-opacity="0.36"/>
|
||||
<stop offset="0.78125" stop-color="#CDFF8C" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1629_965" x1="177.766" y1="14.4968" x2="195.534" y2="71.4066" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#CDFF8C" stop-opacity="0.36"/>
|
||||
<stop offset="0.78125" stop-color="#CDFF8C" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1629_965" x1="166.393" y1="68.5244" x2="166.393" y2="84.1342" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F783F2"/>
|
||||
<stop offset="1" stop-color="#E040DA"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_1629_965" x1="118.423" y1="70.3574" x2="118.423" y2="86.0357" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F783F2"/>
|
||||
<stop offset="1" stop-color="#E040DA"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_1629_965" x1="168.414" y1="9.08446" x2="178.225" y2="21.226" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F783F2"/>
|
||||
<stop offset="1" stop-color="#E040DA"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_1629_965" x1="152.199" y1="43.2251" x2="149.17" y2="46.9291" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="2.1e-07" stop-color="#4E5FA8"/>
|
||||
<stop offset="0.0911" stop-color="#5B6BAF"/>
|
||||
<stop offset="0.3189" stop-color="#7883BE"/>
|
||||
<stop offset="0.5473" stop-color="#8C94C9"/>
|
||||
<stop offset="0.7747" stop-color="#989FCF"/>
|
||||
<stop offset="1" stop-color="#9CA2D1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint7_linear_1629_965" x1="151.37" y1="49.1409" x2="148.947" y2="42.7358" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="2.1e-07" stop-color="#95D6DE"/>
|
||||
<stop offset="0.2852" stop-color="#CFEBEB"/>
|
||||
<stop offset="0.2982" stop-color="#D2ECEC"/>
|
||||
<stop offset="0.5193" stop-color="#C3E6E9"/>
|
||||
<stop offset="0.9456" stop-color="#9BD8E1"/>
|
||||
<stop offset="1" stop-color="#95D6E0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint8_linear_1629_965" x1="132.793" y1="87.1673" x2="128.168" y2="86.4119" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="1e-07" stop-color="#43499D"/>
|
||||
<stop offset="0.3238" stop-color="#726FB3"/>
|
||||
<stop offset="0.6107" stop-color="#958BC3"/>
|
||||
<stop offset="0.8459" stop-color="#AA9CCD"/>
|
||||
<stop offset="1" stop-color="#B2A2D1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint9_linear_1629_965" x1="161.367" y1="65.6078" x2="125.725" y2="69.1796" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="1.1e-07" stop-color="#33224E"/>
|
||||
<stop offset="0.1989" stop-color="#392453"/>
|
||||
<stop offset="0.4452" stop-color="#2F2A63"/>
|
||||
<stop offset="0.7164" stop-color="#50357C"/>
|
||||
<stop offset="1" stop-color="#50439E"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint10_linear_1629_965" x1="139.131" y1="47.0271" x2="142.79" y2="83.536" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="1e-07" stop-color="#43499D"/>
|
||||
<stop offset="0.5971" stop-color="#777DBB"/>
|
||||
<stop offset="1" stop-color="#9CA2D1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint11_linear_1629_965" x1="156.29" y1="63.6236" x2="152.349" y2="62.9799" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="1.1e-07" stop-color="#CFE0EF"/>
|
||||
<stop offset="0.3105" stop-color="#C7D5EA"/>
|
||||
<stop offset="0.8534" stop-color="#B0B8DC"/>
|
||||
<stop offset="1" stop-color="#A9AFD8"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint12_linear_1629_965" x1="142.05" y1="84.3937" x2="140.645" y2="80.6818" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFFDF7"/>
|
||||
<stop offset="0.3511" stop-color="#E8EFF3"/>
|
||||
<stop offset="0.7303" stop-color="#D6E4F0"/>
|
||||
<stop offset="1" stop-color="#CFE0EF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint13_linear_1629_965" x1="141.031" y1="56.1108" x2="150.745" y2="81.7889" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="1e-07" stop-color="#43499D"/>
|
||||
<stop offset="0.3185" stop-color="#454B9E"/>
|
||||
<stop offset="0.4941" stop-color="#4D51A2"/>
|
||||
<stop offset="0.635" stop-color="#5B5CA8"/>
|
||||
<stop offset="0.7574" stop-color="#6F6CB1"/>
|
||||
<stop offset="0.8678" stop-color="#8880BD"/>
|
||||
<stop offset="0.9681" stop-color="#A799CC"/>
|
||||
<stop offset="1" stop-color="#B2A2D1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint14_linear_1629_965" x1="162.722" y1="53.2058" x2="145.681" y2="74.0431" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="2.1e-07" stop-color="#9DA3C9"/>
|
||||
<stop offset="0.0387" stop-color="#9397BB"/>
|
||||
<stop offset="0.1977" stop-color="#9FA5C5"/>
|
||||
<stop offset="0.7287" stop-color="#C2D0E3"/>
|
||||
<stop offset="1" stop-color="#CFE0EF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint15_linear_1629_965" x1="142.165" y1="35.0947" x2="142.165" y2="52.8082" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F783F2"/>
|
||||
<stop offset="1" stop-color="#E040DA"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 64 KiB |
167
newIDE/app/public/res/questionnaire/learning.svg
Normal file
@@ -0,0 +1,167 @@
|
||||
<svg width="292" height="103" viewBox="0 0 292 103" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1642_5307)">
|
||||
<rect width="292" height="102.768" fill="#1D1D26"/>
|
||||
<g opacity="0.2" filter="url(#filter0_f_1642_5307)">
|
||||
<path d="M165.65 53.6341L173.183 50.3033C174.847 49.5675 176.067 48.0906 176.476 46.3175L179.648 32.5626C180.048 30.8276 179.626 29.005 178.503 27.6227L173.097 20.9634C171.454 18.9397 168.659 18.2669 166.275 19.3209L158.839 22.6086C157.175 23.3445 155.954 24.8214 155.545 26.5946L152.367 40.3807C151.971 42.0979 152.38 43.9019 153.478 45.28L158.796 51.9512C160.433 54.0048 163.248 54.6961 165.65 53.6341Z" fill="#5CF9D3"/>
|
||||
</g>
|
||||
<path d="M154.55 72.8272C152.651 72.3983 150.134 73.0059 149.113 73.3632C143.14 75.9668 147.428 79.4129 148.194 79.566C148.96 79.7192 151.104 77.8813 151.793 78.1876C152.482 78.4939 152.329 82.0165 152.635 83.0886C152.942 84.1607 154.55 84.0075 155.775 83.8543C157 83.7012 157.919 82.3994 157.996 80.5615C158.072 78.7237 156.924 73.3632 154.55 72.8272Z" fill="url(#paint0_linear_1642_5307)"/>
|
||||
<path d="M118.219 57.4353C121.204 46.0447 128.021 43.0082 134.3 44.264C142.341 45.8721 142.366 54.1612 141.575 58.9669C140.579 65.0165 142.304 66.321 147.395 69.6877C152.143 72.8274 152.372 82.7825 143.489 86.1519C132.951 90.1492 123.732 81.7104 121.741 78.5707L121.699 78.5044C119.689 75.3345 115.329 68.4615 118.219 57.4353Z" fill="url(#paint1_linear_1642_5307)"/>
|
||||
<path d="M114.467 82.0811C115.862 79.7655 119.112 75.3078 120.15 73.7159C122.085 71.8223 126.206 73.7159 124.632 77.8985C123.058 82.0811 120.78 85.1085 119.386 85.5666C118.785 85.7643 116.938 85.7216 115.976 85.4892C115.014 85.2568 113.122 84.3139 114.467 82.0811Z" fill="url(#paint2_linear_1642_5307)"/>
|
||||
<path d="M149.405 79.2483C147.661 78.3829 145.072 78.3785 143.996 78.4845C137.577 79.603 140.929 83.9647 141.637 84.2945C142.345 84.6243 144.863 83.3451 145.46 83.8056C146.057 84.2661 145.076 87.6527 145.12 88.7668C145.165 89.8809 146.764 90.1121 147.99 90.2528C149.217 90.3934 150.418 89.3456 150.926 87.5779C151.435 85.8102 151.585 80.3301 149.405 79.2483Z" fill="url(#paint3_linear_1642_5307)"/>
|
||||
<path d="M124.838 77.499C124.777 78.1116 123.842 79.7963 123.383 80.5621C123.505 80.6846 124.404 81.5321 124.838 81.9405C125.389 79.9189 125.068 78.1372 124.838 77.499Z" fill="#DB422A"/>
|
||||
<path d="M145.592 83.0889C145.775 83.7015 145.668 84.3907 145.592 85.1565C145.285 84.5438 142.605 84.4673 142.299 84.3141C142.988 84.0844 145.439 83.3186 145.592 83.0889Z" fill="#DB422A"/>
|
||||
<path d="M134.638 61.6526C137.154 61.5496 139.492 59.7433 140.346 58.8531C140.159 57.3097 139.434 53.8069 138.036 52.1424C136.287 50.0616 132.866 50.6099 130.851 52.5246C129.239 54.0564 127.682 56.6013 126.865 57.6823C128.045 58.91 131.492 61.7812 134.638 61.6526Z" fill="#FEF9F5"/>
|
||||
<mask id="mask0_1642_5307" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="131" y="50" width="9" height="10">
|
||||
<path d="M139.411 55.7352C138.88 58.0919 136.806 59.6319 134.778 59.1749C132.75 58.7178 130.928 56.3839 131.46 54.0272C131.991 51.6704 134.673 50.1832 136.701 50.6403C138.729 51.0973 139.943 53.3784 139.411 55.7352Z" fill="black"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_1642_5307)">
|
||||
<path d="M134.753 61.6584C137.27 61.5555 139.607 59.7492 140.461 58.8589C140.274 57.3156 139.549 53.8128 138.151 52.1482C136.403 50.0675 132.981 50.6158 130.966 52.5305C129.355 54.0622 127.798 56.6072 126.98 57.6882C128.16 58.9158 131.607 61.7871 134.753 61.6584Z" fill="black"/>
|
||||
</g>
|
||||
<path d="M148.884 79.0311C145.438 77.959 144.289 77.8824 142.451 77.8824C143.493 77.3311 146.433 77.5761 148.884 79.0311Z" fill="#DB422A"/>
|
||||
<path d="M180.353 15.6136C180.778 13.0121 178.738 11.3438 178.738 11.3438L176.273 12.2763L176.313 12.0303L178.771 11.0842C181.111 12.9981 180.605 15.5185 180.605 15.5185L180.188 18.1166L179.926 18.2103L180.353 15.6136Z" fill="url(#paint4_linear_1642_5307)"/>
|
||||
<path d="M178.736 11.343C178.736 11.343 180.777 13.0117 180.352 15.6128C179.927 18.2146 179.927 18.2146 179.927 18.2146L177.461 19.1468L177.886 16.5457C177.886 16.5457 178.311 13.9445 176.271 12.2756L178.736 11.343Z" fill="url(#paint5_linear_1642_5307)"/>
|
||||
<path d="M156.559 54.5393L157.322 54.2507C157.322 54.2507 158.693 56.3706 160.867 57.1508L160.766 57.8488C160.766 57.8488 157.898 56.6848 156.559 54.5393Z" fill="url(#paint6_linear_1642_5307)"/>
|
||||
<path d="M182.82 14.6781L177.72 45.8947L155.532 54.2885L155.588 53.9446L160.632 23.0732L182.494 14.8026L182.498 14.8008L182.814 14.6809L182.819 14.6783L182.82 14.6781Z" fill="#9C7AF3"/>
|
||||
<path d="M187.437 18.4537L187.987 18.9041L182.887 50.1209L160.7 58.5147L159.562 57.9139C158.376 57.288 157.324 56.4363 156.465 55.4066L155.533 54.2892L177.632 45.8223L182.821 14.6786L183.354 15.1145L183.296 15.4665L183.244 15.7867L178.254 46.3317L156.56 54.5388L156.9 54.9429C157.729 55.9277 158.735 56.7474 159.867 57.3607L160.768 57.8483C160.986 57.7666 182.374 49.7011 182.374 49.7011L187.437 18.4537Z" fill="url(#paint7_linear_1642_5307)"/>
|
||||
<path d="M182.819 14.6795L182.819 14.6817L177.63 45.8226L155.532 54.2897L155.588 53.9458L177.367 45.6032L182.498 14.803L182.499 14.802L182.814 14.6821L182.819 14.6795Z" fill="url(#paint8_linear_1642_5307)"/>
|
||||
<path d="M186.226 18.3813C186.434 18.4996 186.631 18.6018 186.813 18.6923L181.823 49.2323L181.8 49.2321C181.33 49.0525 180.672 48.7464 179.987 48.2225C179.937 48.1845 179.886 48.1456 179.836 48.1038C179.761 48.0434 179.685 47.9802 179.609 47.9133C179.293 47.6368 179.024 47.3506 178.798 47.0795C178.573 46.8092 178.393 46.5516 178.253 46.3311L183.245 15.7741C183.348 15.909 183.465 16.0529 183.595 16.2052C183.627 16.241 183.658 16.2787 183.693 16.3158C183.896 16.5456 184.13 16.7881 184.393 17.0318C184.426 17.0632 184.459 17.0935 184.493 17.1235C184.606 17.2263 184.724 17.3286 184.848 17.4295C184.897 17.47 184.948 17.5111 184.999 17.5519L185.003 17.5552C185.061 17.6011 185.12 17.6464 185.179 17.6901L185.28 17.7663C185.571 17.9807 185.853 18.163 186.122 18.3207C186.157 18.3418 186.192 18.3623 186.226 18.3813Z" fill="url(#paint9_linear_1642_5307)"/>
|
||||
<path d="M179.61 47.913C178.98 47.3594 178.532 46.772 178.254 46.3312L157.323 54.2498C157.632 54.7199 158.129 55.3622 158.879 55.9744C159.625 56.5836 160.349 56.9414 160.87 57.1512L180.053 49.8936L181.547 49.3282L181.801 49.2322C181.245 49.0203 180.427 48.6302 179.61 47.913Z" fill="url(#paint10_linear_1642_5307)"/>
|
||||
<path d="M160.768 57.8479C160.986 57.7664 182.374 49.7007 182.374 49.7007L187.437 18.4533L186.794 18.6752L181.787 49.2209L160.868 57.1498L160.768 57.8479Z" fill="url(#paint11_linear_1642_5307)"/>
|
||||
<path d="M184.999 17.5523L179.987 48.223C179.937 48.1849 179.886 48.1461 179.836 48.1043L184.847 17.4303C184.897 17.4708 184.947 17.5119 184.999 17.5523Z" fill="url(#paint12_linear_1642_5307)"/>
|
||||
<path d="M175.77 29.273L162.654 34.2347L162.722 33.8486L175.838 28.887L175.77 29.273Z" fill="#422D97"/>
|
||||
<path d="M176.08 27.2838L162.965 32.2454L163.033 31.8594L176.148 26.8981L176.08 27.2838Z" fill="#422D97"/>
|
||||
<path d="M176.422 25.314L163.307 30.2757L163.375 29.8897L176.49 24.9283L176.422 25.314Z" fill="#422D97"/>
|
||||
<path d="M176.748 23.3492L163.633 28.3109L163.701 27.9248L176.816 22.9635L176.748 23.3492Z" fill="#422D97"/>
|
||||
<path d="M109.006 74.668C108.51 76.0479 106.191 79.8564 107.185 86.6455L110.221 87.8046" stroke="#CF0A80" stroke-width="0.647399" stroke-linecap="round"/>
|
||||
<path d="M103.322 76.1025C102.881 77.0409 101.059 80.9046 100.673 87.0865L97.6371 87.8593" stroke="#CF0A80" stroke-width="0.647399" stroke-linecap="round"/>
|
||||
<path d="M111.657 72.1836C111.914 73.5451 112.275 77.3168 111.657 81.5117" stroke="#CF0A80" stroke-width="0.647399" stroke-linecap="round"/>
|
||||
<path d="M102.273 62.1937C107.461 60.8138 110.056 67.2165 110.111 68.486C113.975 68.486 113.689 71.9221 112.871 73.0673C112.319 73.84 110.939 75.1647 107.848 76.2134C104.757 77.2621 101.39 77.7037 100.452 77.5933C99.5133 77.4829 98.299 77.5933 97.4158 75.4959C96.7093 73.8179 97.931 72.4785 98.5198 72.0185C97.8574 68.9276 97.0847 63.5736 102.273 62.1937Z" fill="url(#paint13_linear_1642_5307)"/>
|
||||
<ellipse cx="0.717546" cy="0.772742" rx="0.717546" ry="0.772742" transform="matrix(-0.914359 0.404904 0.404904 0.914359 108.326 68.0996)" fill="#3B314F"/>
|
||||
<ellipse cx="0.717546" cy="0.772742" rx="0.717546" ry="0.772742" transform="matrix(-0.914359 0.404904 0.404904 0.914359 103.469 69.5342)" fill="#3B314F"/>
|
||||
<path d="M98.6309 72.9014C97.8949 74.7596 96.5665 79.3703 97.1406 82.947" stroke="#CF0A80" stroke-width="0.647399" stroke-linecap="round"/>
|
||||
<g filter="url(#filter1_f_1642_5307)">
|
||||
<ellipse cx="146.351" cy="89.4027" rx="70.3507" ry="1.4027" fill="#270B31" fill-opacity="0.2"/>
|
||||
</g>
|
||||
<path d="M176.258 79.6992C176.32 81.4831 176.742 85.827 177.934 88.9316L174.947 89.4739" stroke="#CF0A80" stroke-width="0.647399" stroke-linecap="round"/>
|
||||
<path d="M171.631 79.8652C171.191 81.6654 170.365 85.8731 170.582 88.3021L166.998 88.9528" stroke="#CF0A80" stroke-width="0.647399" stroke-linecap="round"/>
|
||||
<path d="M168.177 84.4951C167.489 82.6963 166.925 78.2622 170.171 74.9163" stroke="#CF0A80" stroke-width="0.647399" stroke-linecap="round"/>
|
||||
<path d="M173.798 65.2234C168.441 65.0739 167.6 72.7999 167.994 74.9722C167.288 75.1004 166.098 76.2701 166.068 77.3414C166.039 78.4127 166.897 79.7419 168.358 80.0672C169.034 80.2174 171.651 80.5913 173.739 80.661C175.828 80.7306 178.37 80.2129 179.782 79.9566C181.194 79.7002 182.493 78.5108 182.252 76.8717C182.058 75.5604 180.71 74.8702 180.06 74.689C180.269 70.2755 179.154 65.3729 173.798 65.2234Z" fill="url(#paint14_linear_1642_5307)"/>
|
||||
<ellipse cx="0.717546" cy="0.772742" rx="0.717546" ry="0.772742" transform="matrix(-0.992122 -0.125272 -0.125272 0.992122 170.842 73.043)" fill="#3B314F"/>
|
||||
<ellipse cx="0.717546" cy="0.772742" rx="0.717546" ry="0.772742" transform="matrix(-0.992122 -0.125272 -0.125272 0.992122 174.82 73.3301)" fill="#3B314F"/>
|
||||
<path d="M179.211 74.3389C179.014 77.0673 179.134 83.0593 181.183 85.2005" stroke="#CF0A80" stroke-width="0.647399" stroke-linecap="round"/>
|
||||
<path d="M135.749 37.6669C137.274 37.696 141.144 36.6191 144.417 32.0786" stroke="#CF0A80" stroke-width="0.647399" stroke-linecap="round"/>
|
||||
<path d="M135.601 42.6581C137.049 42.6713 140.45 44.0753 141.419 46.3573C142.195 48.183 140.439 49.9787 139.465 50.6484L142.251 53.2119" stroke="#CF0A80" stroke-width="0.647399" stroke-linecap="round"/>
|
||||
<path d="M130.434 30.0047C135.777 29.4743 137.311 36.2101 137.162 37.472C140.976 38.0914 140.143 41.4372 139.152 42.4364C138.483 43.1107 136.909 44.1971 133.69 44.7368C130.471 45.2764 127.077 45.1726 126.168 44.9132C125.26 44.6538 124.043 44.5682 123.508 42.3563C123.079 40.5868 124.5 39.4605 125.155 39.1009C124.996 35.9437 125.092 30.535 130.434 30.0047Z" fill="url(#paint15_linear_1642_5307)"/>
|
||||
<ellipse cx="0.717546" cy="0.772742" rx="0.717546" ry="0.772742" transform="matrix(-0.96744 0.253099 0.253099 0.96744 135.463 36.8047)" fill="#3B314F"/>
|
||||
<ellipse cx="0.717546" cy="0.772742" rx="0.717546" ry="0.772742" transform="matrix(-0.96744 0.253099 0.253099 0.96744 130.438 37.4414)" fill="#3B314F"/>
|
||||
<path d="M128.587 44.1806C130.018 43.2905 132.338 42.7205 134.042 43.879C135.405 44.8058 134.86 47.8031 134.417 49.1858L137.75 49.306" stroke="#CF0A80" stroke-width="0.647399" stroke-linecap="round"/>
|
||||
<path d="M126.427 39.8697C125.362 41.0449 123.804 44.7127 126.097 49.9822" stroke="#CF0A80" stroke-width="0.647399" stroke-linecap="round"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_f_1642_5307" x="128.219" y="-5.17285" width="75.5762" height="83.3008" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="12" result="effect1_foregroundBlur_1642_5307"/>
|
||||
</filter>
|
||||
<filter id="filter1_f_1642_5307" x="72.3314" y="84.3314" width="148.038" height="10.1428" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="1.8343" result="effect1_foregroundBlur_1642_5307"/>
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_1642_5307" x1="148.424" y1="77.575" x2="157.996" y2="83.012" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#E13023"/>
|
||||
<stop offset="1" stop-color="#FA7070"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1642_5307" x1="126.217" y1="44.8006" x2="146.434" y2="87.2245" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF7171"/>
|
||||
<stop offset="1" stop-color="#F15141"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1642_5307" x1="121.699" y1="76.8093" x2="115.113" y2="85.6923" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F26158"/>
|
||||
<stop offset="1" stop-color="#FF7171"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1642_5307" x1="140.384" y1="84.0081" x2="151.87" y2="91.7424" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F45649"/>
|
||||
<stop offset="1" stop-color="#FF8282"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_1642_5307" x1="180.414" y1="12.4282" x2="177.385" y2="16.1322" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="2.1e-07" stop-color="#4E5FA8"/>
|
||||
<stop offset="0.0911" stop-color="#5B6BAF"/>
|
||||
<stop offset="0.3189" stop-color="#7883BE"/>
|
||||
<stop offset="0.5473" stop-color="#8C94C9"/>
|
||||
<stop offset="0.7747" stop-color="#989FCF"/>
|
||||
<stop offset="1" stop-color="#9CA2D1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_1642_5307" x1="179.585" y1="18.344" x2="177.161" y2="11.9389" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="2.1e-07" stop-color="#95D6DE"/>
|
||||
<stop offset="0.2852" stop-color="#CFEBEB"/>
|
||||
<stop offset="0.2982" stop-color="#D2ECEC"/>
|
||||
<stop offset="0.5193" stop-color="#C3E6E9"/>
|
||||
<stop offset="0.9456" stop-color="#9BD8E1"/>
|
||||
<stop offset="1" stop-color="#95D6E0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_1642_5307" x1="161.008" y1="56.3704" x2="156.383" y2="55.615" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="1e-07" stop-color="#43499D"/>
|
||||
<stop offset="0.3238" stop-color="#726FB3"/>
|
||||
<stop offset="0.6107" stop-color="#958BC3"/>
|
||||
<stop offset="0.8459" stop-color="#AA9CCD"/>
|
||||
<stop offset="1" stop-color="#B2A2D1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint7_linear_1642_5307" x1="189.582" y1="34.811" x2="153.94" y2="38.3828" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="1.1e-07" stop-color="#33224E"/>
|
||||
<stop offset="0.1989" stop-color="#392453"/>
|
||||
<stop offset="0.4452" stop-color="#2F2A63"/>
|
||||
<stop offset="0.7164" stop-color="#50357C"/>
|
||||
<stop offset="1" stop-color="#50439E"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint8_linear_1642_5307" x1="167.346" y1="16.2302" x2="171.005" y2="52.7391" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="1e-07" stop-color="#43499D"/>
|
||||
<stop offset="0.5971" stop-color="#777DBB"/>
|
||||
<stop offset="1" stop-color="#9CA2D1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint9_linear_1642_5307" x1="184.505" y1="32.8268" x2="180.564" y2="32.183" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="1.1e-07" stop-color="#CFE0EF"/>
|
||||
<stop offset="0.3105" stop-color="#C7D5EA"/>
|
||||
<stop offset="0.8534" stop-color="#B0B8DC"/>
|
||||
<stop offset="1" stop-color="#A9AFD8"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint10_linear_1642_5307" x1="170.265" y1="53.5968" x2="168.86" y2="49.8849" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFFDF7"/>
|
||||
<stop offset="0.3511" stop-color="#E8EFF3"/>
|
||||
<stop offset="0.7303" stop-color="#D6E4F0"/>
|
||||
<stop offset="1" stop-color="#CFE0EF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint11_linear_1642_5307" x1="169.246" y1="25.3139" x2="178.96" y2="50.9921" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="1e-07" stop-color="#43499D"/>
|
||||
<stop offset="0.3185" stop-color="#454B9E"/>
|
||||
<stop offset="0.4941" stop-color="#4D51A2"/>
|
||||
<stop offset="0.635" stop-color="#5B5CA8"/>
|
||||
<stop offset="0.7574" stop-color="#6F6CB1"/>
|
||||
<stop offset="0.8678" stop-color="#8880BD"/>
|
||||
<stop offset="0.9681" stop-color="#A799CC"/>
|
||||
<stop offset="1" stop-color="#B2A2D1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint12_linear_1642_5307" x1="190.937" y1="22.4089" x2="173.896" y2="43.2462" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="2.1e-07" stop-color="#9DA3C9"/>
|
||||
<stop offset="0.0387" stop-color="#9397BB"/>
|
||||
<stop offset="0.1977" stop-color="#9FA5C5"/>
|
||||
<stop offset="0.7287" stop-color="#C2D0E3"/>
|
||||
<stop offset="1" stop-color="#CFE0EF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint13_linear_1642_5307" x1="105.29" y1="62" x2="105.29" y2="77.6098" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F783F2"/>
|
||||
<stop offset="1" stop-color="#E040DA"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint14_linear_1642_5307" x1="172.019" y1="65.4337" x2="174.82" y2="80.8598" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F783F2"/>
|
||||
<stop offset="1" stop-color="#E040DA"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint15_linear_1642_5307" x1="133.444" y1="30.2972" x2="130.942" y2="45.7052" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F783F2"/>
|
||||
<stop offset="1" stop-color="#E040DA"/>
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_1642_5307">
|
||||
<rect width="292" height="102.768" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 17 KiB |
78
newIDE/app/public/res/questionnaire/no-code-experience.svg
Normal file
@@ -0,0 +1,78 @@
|
||||
<svg width="285" height="102" viewBox="0 0 285 102" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1642_5441)">
|
||||
<rect width="285" height="102" fill="#1D1D26"/>
|
||||
<path d="M59.1108 27.0403C58.3739 26.6154 57.1804 26.615 56.4427 27.0394L46.0694 33.0057C45.329 33.4315 45.3283 34.1235 46.0678 34.5499L73.1591 50.1686C73.896 50.5934 75.0894 50.5938 75.8272 50.1695L86.8712 43.8173C87.2414 43.6044 87.2418 43.2584 86.872 43.0452L59.1108 27.0403Z" fill="#16CF89"/>
|
||||
<path d="M75.1016 50.6397L46.2409 33.9811C45.7268 33.6844 45.0843 34.0554 45.0843 34.649V41.7387L73.9477 58.2386C74.4618 58.5325 75.1016 58.1613 75.1016 57.5691V50.6397Z" fill="#009E62"/>
|
||||
<path d="M87.459 44.3292C87.459 43.7362 86.8175 43.3651 86.3033 43.6608L74.8263 50.2617C74.587 50.3993 74.4396 50.6543 74.4396 50.9302V57.5227C74.4396 58.1249 75.0989 58.4948 75.6128 58.1808L87.0899 51.1687C87.3191 51.0286 87.459 50.7793 87.459 50.5106V44.3292Z" fill="#009E62"/>
|
||||
<path d="M71.0483 11.5901C70.3114 11.1652 69.1179 11.1648 68.3802 11.5892L58.0069 17.5555C57.2665 17.9813 57.2658 18.6733 58.0053 19.0997L85.0966 34.7184C85.8335 35.1432 87.0269 35.1436 87.7647 34.7193L98.8087 28.3671C99.1789 28.1542 99.1793 27.8082 98.8095 27.595L71.0483 11.5901Z" fill="#16CF89"/>
|
||||
<path d="M87.0391 35.1895L58.1784 18.5309C57.6643 18.2342 57.0218 18.6052 57.0218 19.1988V26.2885L85.8852 42.7884C86.3993 43.0823 87.0391 42.7111 87.0391 42.1189V35.1895Z" fill="#009E62"/>
|
||||
<path d="M99.3965 28.88C99.3965 28.2869 98.755 27.9159 98.2408 28.2115L86.7638 34.8125C86.5245 34.9501 86.3771 35.205 86.3771 35.481V42.0735C86.3771 42.6757 87.0364 43.0455 87.5503 42.7316L99.0274 35.7195C99.2566 35.5794 99.3965 35.3301 99.3965 35.0614V28.88Z" fill="#009E62"/>
|
||||
<rect x="120.301" y="60" width="132.692" height="23.6206" rx="2.7789" fill="#4C97FF"/>
|
||||
<path d="M158.624 73.6271C158.819 73.6271 158.981 73.6919 159.111 73.8216C159.24 73.9513 159.305 74.1101 159.305 74.2982C159.305 74.4862 159.24 74.6483 159.111 74.7845C158.981 74.9142 158.819 74.979 158.624 74.979C158.436 74.979 158.277 74.9142 158.148 74.7845C158.018 74.6483 157.953 74.4862 157.953 74.2982C157.953 74.1101 158.018 73.9513 158.148 73.8216C158.277 73.6919 158.436 73.6271 158.624 73.6271ZM158.624 70.0479C158.819 70.0479 158.981 70.1127 159.111 70.2424C159.24 70.3721 159.305 70.5309 159.305 70.719C159.305 70.907 159.24 71.0691 159.111 71.2053C158.981 71.3349 158.819 71.3998 158.624 71.3998C158.436 71.3998 158.277 71.3349 158.148 71.2053C158.018 71.0691 157.953 70.907 157.953 70.719C157.953 70.5309 158.018 70.3721 158.148 70.2424C158.277 70.1127 158.436 70.0479 158.624 70.0479Z" fill="white"/>
|
||||
<path d="M155.5 72.1202L157.28 74.863H156.2L154.946 72.6941L153.672 74.863H152.66L154.45 72.1591L152.864 69.7373H153.915L154.985 71.6145L156.064 69.7373H157.076L155.5 72.1202Z" fill="white"/>
|
||||
<path d="M147.012 69.6201C147.732 69.6201 148.29 69.86 148.685 70.3399C149.087 70.8197 149.288 71.4713 149.288 72.2948C149.288 72.8265 149.197 73.2966 149.016 73.7051C148.834 74.1071 148.572 74.4216 148.228 74.6485C147.884 74.869 147.476 74.9792 147.002 74.9792C146.283 74.9792 145.722 74.7393 145.32 74.2595C144.918 73.7797 144.717 73.128 144.717 72.3045C144.717 71.7728 144.808 71.306 144.989 70.904C145.171 70.4955 145.433 70.181 145.777 69.9605C146.121 69.7336 146.532 69.6201 147.012 69.6201ZM147.012 70.3399C146.124 70.3399 145.68 70.9947 145.68 72.3045C145.68 73.6078 146.121 74.2595 147.002 74.2595C147.884 74.2595 148.325 73.6046 148.325 72.2948C148.325 70.9915 147.888 70.3399 147.012 70.3399Z" fill="white"/>
|
||||
<path d="M144.205 74.6293C143.868 74.8627 143.485 74.9794 143.057 74.9794C142.623 74.9794 142.282 74.8563 142.036 74.6099C141.796 74.357 141.676 73.9939 141.676 73.5205V70.4276H140.781V69.7371H141.676V68.5796L142.571 68.4727V69.7371H143.787L143.689 70.4276H142.571V73.4816C142.571 73.7475 142.616 73.942 142.707 74.0652C142.804 74.1819 142.963 74.2403 143.184 74.2403C143.385 74.2403 143.612 74.1722 143.864 74.036L144.205 74.6293Z" fill="white"/>
|
||||
<path d="M135.094 69.6201C135.814 69.6201 136.372 69.86 136.767 70.3399C137.169 70.8197 137.37 71.4713 137.37 72.2948C137.37 72.8265 137.279 73.2966 137.098 73.7051C136.916 74.1071 136.654 74.4216 136.31 74.6485C135.966 74.869 135.558 74.9792 135.084 74.9792C134.365 74.9792 133.804 74.7393 133.402 74.2595C133 73.7797 132.799 73.128 132.799 72.3045C132.799 71.7728 132.89 71.306 133.071 70.904C133.253 70.4955 133.515 70.181 133.859 69.9605C134.203 69.7336 134.614 69.6201 135.094 69.6201ZM135.094 70.3399C134.206 70.3399 133.762 70.9947 133.762 72.3045C133.762 73.6078 134.203 74.2595 135.084 74.2595C135.966 74.2595 136.407 73.6046 136.407 72.2948C136.407 70.9915 135.97 70.3399 135.094 70.3399Z" fill="white"/>
|
||||
<path d="M132.305 69.9704C132.11 70.0352 131.896 70.0773 131.663 70.0968C131.429 70.1162 131.144 70.126 130.807 70.126C131.41 70.3983 131.711 70.8295 131.711 71.4196C131.711 71.9318 131.536 72.35 131.186 72.6742C130.836 72.9984 130.359 73.1605 129.756 73.1605C129.523 73.1605 129.306 73.1281 129.105 73.0633C129.027 73.1151 128.965 73.1865 128.92 73.2772C128.875 73.3615 128.852 73.4491 128.852 73.5399C128.852 73.8187 129.076 73.9581 129.523 73.9581H130.34C130.684 73.9581 130.988 74.0197 131.254 74.1429C131.52 74.2661 131.724 74.4347 131.867 74.6486C132.016 74.8626 132.091 75.1058 132.091 75.3781C132.091 75.8774 131.886 76.2599 131.478 76.5258C131.069 76.7981 130.473 76.9343 129.688 76.9343C129.137 76.9343 128.7 76.8759 128.375 76.7592C128.058 76.649 127.831 76.4804 127.694 76.2534C127.558 76.0265 127.49 75.7347 127.49 75.3781H128.298C128.298 75.5856 128.336 75.7477 128.414 75.8644C128.492 75.9876 128.631 76.0784 128.832 76.1367C129.033 76.2016 129.319 76.234 129.688 76.234C130.227 76.234 130.609 76.1659 130.836 76.0297C131.069 75.9001 131.186 75.7023 131.186 75.4365C131.186 75.1965 131.095 75.015 130.914 74.8918C130.732 74.7686 130.479 74.707 130.155 74.707H129.348C128.913 74.707 128.583 74.6162 128.356 74.4347C128.135 74.2466 128.025 74.0132 128.025 73.7344C128.025 73.5658 128.074 73.4037 128.171 73.2481C128.268 73.0924 128.408 72.953 128.589 72.8298C128.291 72.6742 128.071 72.4829 127.928 72.256C127.792 72.0226 127.724 71.7405 127.724 71.4098C127.724 71.0662 127.808 70.7582 127.977 70.4858C128.152 70.2135 128.388 70.0028 128.687 69.8536C128.991 69.698 129.328 69.6202 129.698 69.6202C130.1 69.6267 130.437 69.6137 130.71 69.5813C130.982 69.5424 131.206 69.4938 131.381 69.4354C131.562 69.3706 131.783 69.2798 132.042 69.1631L132.305 69.9704ZM129.698 70.2621C129.361 70.2621 129.098 70.3691 128.91 70.5831C128.729 70.7906 128.638 71.0662 128.638 71.4098C128.638 71.76 128.732 72.042 128.92 72.256C129.108 72.4635 129.374 72.5672 129.718 72.5672C130.068 72.5672 130.334 72.4667 130.515 72.2657C130.703 72.0582 130.797 71.7697 130.797 71.4001C130.797 70.6415 130.431 70.2621 129.698 70.2621Z" fill="white"/>
|
||||
<rect x="161.984" y="63.4736" width="26.3995" height="16.6734" rx="8.3367" fill="#FAFAFA"/>
|
||||
<path d="M180.194 68.4502C180.914 68.4502 181.455 68.7387 181.819 69.3158C182.188 69.8864 182.373 70.7164 182.373 71.8057C182.373 72.895 182.188 73.7283 181.819 74.3053C181.455 74.8824 180.914 75.171 180.194 75.171C179.475 75.171 178.93 74.8824 178.56 74.3053C178.197 73.7283 178.016 72.895 178.016 71.8057C178.016 70.7164 178.197 69.8864 178.56 69.3158C178.93 68.7387 179.475 68.4502 180.194 68.4502ZM180.194 69.1602C179.773 69.1602 179.458 69.3677 179.251 69.7827C179.05 70.1977 178.949 70.872 178.949 71.8057C178.949 72.7394 179.05 73.417 179.251 73.8385C179.458 74.2535 179.773 74.461 180.194 74.461C180.609 74.461 180.921 74.2535 181.128 73.8385C181.335 73.417 181.439 72.7394 181.439 71.8057C181.439 70.8785 181.335 70.2074 181.128 69.7924C180.921 69.3709 180.609 69.1602 180.194 69.1602Z" fill="#605D5D"/>
|
||||
<path d="M174.675 68.4502C175.394 68.4502 175.936 68.7387 176.299 69.3158C176.669 69.8864 176.853 70.7164 176.853 71.8057C176.853 72.895 176.669 73.7283 176.299 74.3053C175.936 74.8824 175.394 75.171 174.675 75.171C173.955 75.171 173.41 74.8824 173.041 74.3053C172.678 73.7283 172.496 72.895 172.496 71.8057C172.496 70.7164 172.678 69.8864 173.041 69.3158C173.41 68.7387 173.955 68.4502 174.675 68.4502ZM174.675 69.1602C174.253 69.1602 173.939 69.3677 173.731 69.7827C173.53 70.1977 173.43 70.872 173.43 71.8057C173.43 72.7394 173.53 73.417 173.731 73.8385C173.939 74.2535 174.253 74.461 174.675 74.461C175.09 74.461 175.401 74.2535 175.608 73.8385C175.816 73.417 175.92 72.7394 175.92 71.8057C175.92 70.8785 175.816 70.2074 175.608 69.7924C175.401 69.3709 175.09 69.1602 174.675 69.1602Z" fill="#605D5D"/>
|
||||
<path d="M170.797 68.5479V75.0546H169.902V69.501L168.385 70.425L167.996 69.7928L170.009 68.5479H170.797Z" fill="#605D5D"/>
|
||||
<path d="M216.314 73.6271C216.508 73.6271 216.67 73.6919 216.8 73.8216C216.93 73.9513 216.995 74.1101 216.995 74.2982C216.995 74.4862 216.93 74.6483 216.8 74.7845C216.67 74.9142 216.508 74.979 216.314 74.979C216.126 74.979 215.967 74.9142 215.837 74.7845C215.707 74.6483 215.643 74.4862 215.643 74.2982C215.643 74.1101 215.707 73.9513 215.837 73.8216C215.967 73.6919 216.126 73.6271 216.314 73.6271ZM216.314 70.0479C216.508 70.0479 216.67 70.1127 216.8 70.2424C216.93 70.3721 216.995 70.5309 216.995 70.719C216.995 70.907 216.93 71.0691 216.8 71.2053C216.67 71.3349 216.508 71.3998 216.314 71.3998C216.126 71.3998 215.967 71.3349 215.837 71.2053C215.707 71.0691 215.643 70.907 215.643 70.719C215.643 70.5309 215.707 70.3721 215.837 70.2424C215.967 70.1127 216.126 70.0479 216.314 70.0479Z" fill="white"/>
|
||||
<path d="M213.211 74.8912C213.01 75.4877 212.728 75.9578 212.365 76.3015C212.008 76.6516 211.496 76.8624 210.828 76.9337L210.731 76.2334C211.068 76.175 211.337 76.0907 211.538 75.9805C211.739 75.8703 211.898 75.7276 212.015 75.5526C212.138 75.384 212.251 75.1538 212.355 74.862H212.054L210.332 69.7363H211.285L212.657 74.2104L213.999 69.7363H214.923L213.211 74.8912Z" fill="white"/>
|
||||
<path d="M206.545 67.6744V74.862H205.757L205.67 74.152C205.501 74.4113 205.29 74.6156 205.038 74.7647C204.785 74.9074 204.503 74.9787 204.191 74.9787C203.582 74.9787 203.105 74.7388 202.762 74.259C202.424 73.7791 202.256 73.134 202.256 72.3235C202.256 71.7983 202.337 71.3314 202.499 70.9229C202.661 70.5144 202.895 70.1967 203.199 69.9697C203.504 69.7363 203.861 69.6196 204.269 69.6196C204.794 69.6196 205.255 69.8303 205.65 70.2518V67.5674L206.545 67.6744ZM204.386 74.2687C204.658 74.2687 204.892 74.2071 205.086 74.0839C205.281 73.9542 205.469 73.7629 205.65 73.5101V71.0007C205.482 70.7803 205.3 70.6149 205.106 70.5047C204.918 70.388 204.704 70.3296 204.464 70.3296C204.068 70.3296 203.76 70.495 203.54 70.8256C203.326 71.1563 203.219 71.6491 203.219 72.304C203.219 72.9654 203.319 73.4582 203.52 73.7824C203.721 74.1066 204.01 74.2687 204.386 74.2687Z" fill="white"/>
|
||||
<path d="M199.193 69.6191C199.66 69.6191 200.023 69.7585 200.283 70.0374C200.549 70.3162 200.681 70.6987 200.681 71.1851V74.8615H199.787V71.3115C199.787 70.9484 199.719 70.6923 199.582 70.5431C199.446 70.394 199.245 70.3194 198.979 70.3194C198.707 70.3194 198.467 70.3972 198.26 70.5529C198.052 70.7085 197.858 70.9322 197.676 71.224V74.8615H196.781V69.7359H197.55L197.627 70.4945C197.809 70.2222 198.033 70.0082 198.299 69.8526C198.571 69.6969 198.869 69.6191 199.193 69.6191Z" fill="white"/>
|
||||
<path d="M194.845 73.6652C194.845 73.8727 194.881 74.0283 194.952 74.1321C195.024 74.2293 195.131 74.3039 195.273 74.3558L195.069 74.9782C194.803 74.9458 194.589 74.8713 194.427 74.7545C194.265 74.6378 194.145 74.4563 194.067 74.2099C193.724 74.7221 193.215 74.9782 192.54 74.9782C192.034 74.9782 191.636 74.8356 191.344 74.5503C191.052 74.265 190.906 73.8922 190.906 73.4318C190.906 72.8871 191.101 72.4689 191.49 72.1771C191.885 71.8853 192.443 71.7394 193.163 71.7394H193.951V71.3601C193.951 70.997 193.863 70.7376 193.688 70.582C193.513 70.4264 193.244 70.3486 192.881 70.3486C192.505 70.3486 192.044 70.4394 191.5 70.6209L191.276 69.9693C191.911 69.7359 192.501 69.6191 193.046 69.6191C193.649 69.6191 194.1 69.7683 194.398 70.0665C194.696 70.3583 194.845 70.7766 194.845 71.3212V73.6652ZM192.744 74.3071C193.257 74.3071 193.659 74.0413 193.951 73.5096V72.3327H193.279C192.333 72.3327 191.859 72.6829 191.859 73.3832C191.859 73.6879 191.934 73.9181 192.083 74.0737C192.232 74.2293 192.453 74.3071 192.744 74.3071Z" fill="white"/>
|
||||
<rect x="219.646" y="63.4736" width="26.3995" height="16.6734" rx="8.3367" fill="#FAFAFA"/>
|
||||
<path d="M237.856 68.4502C238.576 68.4502 239.118 68.7387 239.481 69.3158C239.85 69.8864 240.035 70.7164 240.035 71.8057C240.035 72.895 239.85 73.7283 239.481 74.3053C239.118 74.8824 238.576 75.171 237.856 75.171C237.137 75.171 236.592 74.8824 236.222 74.3053C235.859 73.7283 235.678 72.895 235.678 71.8057C235.678 70.7164 235.859 69.8864 236.222 69.3158C236.592 68.7387 237.137 68.4502 237.856 68.4502ZM237.856 69.1602C237.435 69.1602 237.12 69.3677 236.913 69.7827C236.712 70.1977 236.611 70.872 236.611 71.8057C236.611 72.7394 236.712 73.417 236.913 73.8385C237.12 74.2535 237.435 74.461 237.856 74.461C238.271 74.461 238.583 74.2535 238.79 73.8385C238.998 73.417 239.101 72.7394 239.101 71.8057C239.101 70.8785 238.998 70.2074 238.79 69.7924C238.583 69.3709 238.271 69.1602 237.856 69.1602Z" fill="#605D5D"/>
|
||||
<path d="M232.337 68.4502C233.057 68.4502 233.598 68.7387 233.961 69.3158C234.331 69.8864 234.516 70.7164 234.516 71.8057C234.516 72.895 234.331 73.7283 233.961 74.3053C233.598 74.8824 233.057 75.171 232.337 75.171C231.617 75.171 231.072 74.8824 230.703 74.3053C230.34 73.7283 230.158 72.895 230.158 71.8057C230.158 70.7164 230.34 69.8864 230.703 69.3158C231.072 68.7387 231.617 68.4502 232.337 68.4502ZM232.337 69.1602C231.915 69.1602 231.601 69.3677 231.393 69.7827C231.192 70.1977 231.092 70.872 231.092 71.8057C231.092 72.7394 231.192 73.417 231.393 73.8385C231.601 74.2535 231.915 74.461 232.337 74.461C232.752 74.461 233.063 74.2535 233.271 73.8385C233.478 73.417 233.582 72.7394 233.582 71.8057C233.582 70.8785 233.478 70.2074 233.271 69.7924C233.063 69.3709 232.752 69.1602 232.337 69.1602Z" fill="#605D5D"/>
|
||||
<path d="M228.459 68.5479V75.0546H227.565V69.501L226.047 70.425L225.658 69.7928L227.672 68.5479H228.459Z" fill="#605D5D"/>
|
||||
<path d="M129.221 60.1537C128.819 59.2356 129.492 58.207 130.494 58.207H145.072C146.074 58.207 146.747 59.2356 146.345 60.1537L145.208 62.7538C144.987 63.2596 144.487 63.5865 143.935 63.5865H131.632C131.079 63.5865 130.58 63.2596 130.358 62.7538L129.221 60.1537Z" fill="#1D1D26"/>
|
||||
<g filter="url(#filter0_d_1642_5441)">
|
||||
<rect x="120.301" y="34" width="89.439" height="24.2882" rx="2.7789" fill="#DE6876"/>
|
||||
<path d="M148.461 44.4814C148.928 44.4814 149.291 44.6209 149.55 44.8997C149.816 45.1785 149.949 45.561 149.949 46.0474V49.7238H149.054V46.1738C149.054 45.8107 148.986 45.5546 148.85 45.4054C148.714 45.2563 148.513 45.1817 148.247 45.1817C147.975 45.1817 147.735 45.2595 147.527 45.4152C147.32 45.5708 147.125 45.7945 146.944 46.0863V49.7238H146.049V44.5982H146.817L146.895 45.3568C147.077 45.0845 147.3 44.8705 147.566 44.7149C147.838 44.5593 148.137 44.4814 148.461 44.4814Z" fill="white"/>
|
||||
<path d="M144.522 47.0102C144.522 47.1594 144.515 47.3118 144.502 47.4674H141.234C141.273 48.0315 141.416 48.4465 141.662 48.7123C141.909 48.9782 142.226 49.1111 142.616 49.1111C142.862 49.1111 143.089 49.0754 143.296 49.0041C143.504 48.9328 143.721 48.8193 143.948 48.6637L144.337 49.1986C143.792 49.6266 143.196 49.8406 142.547 49.8406C141.834 49.8406 141.277 49.6071 140.875 49.1403C140.479 48.6734 140.281 48.0315 140.281 47.2145C140.281 46.6828 140.366 46.2127 140.534 45.8042C140.709 45.3892 140.956 45.065 141.273 44.8316C141.598 44.5982 141.977 44.4814 142.411 44.4814C143.092 44.4814 143.614 44.7051 143.977 45.1525C144.34 45.6 144.522 46.2192 144.522 47.0102ZM143.637 46.7476C143.637 46.2419 143.536 45.8561 143.335 45.5902C143.134 45.3244 142.833 45.1915 142.431 45.1915C141.698 45.1915 141.299 45.7296 141.234 46.806H143.637V46.7476Z" fill="white"/>
|
||||
<path d="M137.268 44.481C137.734 44.481 138.098 44.6204 138.357 44.8992C138.623 45.178 138.756 45.5606 138.756 46.0469V49.7234H137.861V46.1734C137.861 45.8102 137.79 45.5541 137.647 45.405C137.511 45.2559 137.31 45.1813 137.044 45.1813C136.778 45.1813 136.541 45.2591 136.334 45.4147C136.126 45.5703 135.932 45.7908 135.75 46.0761V49.7234H134.855V42.5455L135.75 42.4482V45.3077C136.152 44.7566 136.658 44.481 137.268 44.481Z" fill="white"/>
|
||||
<path d="M133.589 43.0225L132.227 49.7238H131.04L129.805 44.1118L128.56 49.7238H127.403L126.041 43.0225H126.946L128.025 48.9165L129.319 43.0225H130.301L131.624 48.9165L132.742 43.0225H133.589Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M161.233 41.9137C161.303 41.7582 161.458 41.6582 161.629 41.6582C162.069 41.6582 162.493 41.8304 162.807 42.139C163.121 42.4479 163.298 42.8683 163.298 43.3082V44.495H165.193C165.373 44.4933 165.552 44.5301 165.717 44.603C165.883 44.6763 166.031 44.7844 166.151 44.9203C166.271 45.0562 166.36 45.2167 166.411 45.3908C166.463 45.5649 166.475 45.748 166.447 45.9274L165.879 49.5747C165.879 49.5748 165.879 49.5745 165.879 49.5747C165.833 49.8731 165.679 50.1441 165.448 50.3376C165.217 50.5306 164.925 50.6344 164.624 50.6317H158.746C158.415 50.6317 158.096 50.5022 157.859 50.2696C157.623 50.0367 157.488 49.7193 157.488 49.387V46.5502C157.488 46.2178 157.623 45.9005 157.859 45.6676C158.096 45.435 158.415 45.3055 158.746 45.3055H159.701L161.233 41.9137ZM159.547 46.1739H158.746C158.641 46.1739 158.541 46.2152 158.468 46.2866C158.396 46.3577 158.357 46.4527 158.357 46.5502V49.387C158.357 49.4845 158.396 49.5795 158.468 49.6506C158.541 49.722 158.641 49.7633 158.746 49.7633H159.547V46.1739ZM160.416 49.7633H164.631C164.727 49.7643 164.819 49.7312 164.891 49.6715C164.962 49.612 165.007 49.5303 165.021 49.4424L165.589 45.7951C165.589 45.7951 165.589 45.795 165.589 45.7951C165.597 45.7422 165.594 45.6881 165.578 45.6365C165.563 45.5849 165.537 45.5367 165.5 45.4953C165.464 45.4539 165.418 45.4203 165.366 45.3974C165.314 45.3744 165.257 45.3627 165.2 45.3634L165.195 45.3634L162.864 45.3634C162.624 45.3634 162.43 45.169 162.43 44.9292V43.3082C162.43 43.1031 162.347 42.9051 162.198 42.758C162.111 42.6723 162.005 42.6081 161.89 42.5693L160.416 45.8332V49.7633Z" fill="#FAFAFA"/>
|
||||
<rect x="154.749" y="38.9194" width="14.4503" height="14.4503" rx="2.36206" stroke="#EBEBED" stroke-opacity="0.5" stroke-width="0.55578"/>
|
||||
<path d="M203.998 42.6919V49.8796H203.21L203.123 49.1696C202.954 49.4289 202.744 49.6332 202.491 49.7823C202.238 49.925 201.956 49.9963 201.644 49.9963C201.035 49.9963 200.558 49.7564 200.215 49.2766C199.878 48.7967 199.709 48.1516 199.709 47.341C199.709 46.8158 199.79 46.349 199.952 45.9405C200.114 45.532 200.348 45.2143 200.652 44.9873C200.957 44.7539 201.314 44.6372 201.722 44.6372C202.248 44.6372 202.708 44.8479 203.103 45.2694V42.585L203.998 42.6919ZM201.839 49.2863C202.111 49.2863 202.345 49.2247 202.539 49.1015C202.734 48.9718 202.922 48.7805 203.103 48.5276V46.0183C202.935 45.7978 202.753 45.6325 202.559 45.5223C202.371 45.4055 202.157 45.3472 201.917 45.3472C201.521 45.3472 201.213 45.5125 200.993 45.8432C200.779 46.1739 200.672 46.6667 200.672 47.3216C200.672 47.983 200.772 48.4758 200.973 48.8C201.174 49.1242 201.463 49.2863 201.839 49.2863Z" fill="white"/>
|
||||
<path d="M198.504 47.1655C198.504 47.3147 198.498 47.467 198.485 47.6226H195.217C195.256 48.1868 195.398 48.6017 195.645 48.8676C195.891 49.1334 196.209 49.2664 196.598 49.2664C196.844 49.2664 197.071 49.2307 197.279 49.1594C197.486 49.0881 197.703 48.9746 197.93 48.819L198.319 49.3539C197.775 49.7819 197.178 49.9958 196.53 49.9958C195.817 49.9958 195.259 49.7624 194.857 49.2955C194.461 48.8287 194.264 48.1868 194.264 47.3698C194.264 46.8381 194.348 46.368 194.517 45.9595C194.692 45.5445 194.938 45.2203 195.256 44.9869C195.58 44.7534 195.959 44.6367 196.394 44.6367C197.075 44.6367 197.596 44.8604 197.96 45.3078C198.323 45.7552 198.504 46.3745 198.504 47.1655ZM197.619 46.9029C197.619 46.3972 197.519 46.0113 197.318 45.7455C197.117 45.4797 196.815 45.3467 196.413 45.3467C195.68 45.3467 195.282 45.8849 195.217 46.9613H197.619V46.9029Z" fill="white"/>
|
||||
<path d="M190.539 42.585V49.8796H189.645V42.6919L190.539 42.585ZM193.486 44.7539L191.599 47.0201L193.7 49.8796H192.63L190.598 47.0784L192.485 44.7539H193.486Z" fill="white"/>
|
||||
<path d="M186.77 44.6367C187.075 44.6367 187.354 44.6821 187.607 44.7729C187.86 44.8572 188.103 44.9966 188.336 45.1911L187.908 45.7552C187.727 45.6255 187.548 45.5315 187.373 45.4732C187.205 45.4083 187.017 45.3759 186.809 45.3759C186.394 45.3759 186.07 45.5413 185.837 45.8719C185.61 46.2026 185.496 46.6922 185.496 47.3406C185.496 47.989 185.61 48.4688 185.837 48.7801C186.063 49.0848 186.388 49.2372 186.809 49.2372C187.01 49.2372 187.195 49.208 187.364 49.1497C187.532 49.0848 187.72 48.9843 187.928 48.8481L188.336 49.4317C187.869 49.8078 187.347 49.9958 186.77 49.9958C186.076 49.9958 185.529 49.7624 185.126 49.2955C184.731 48.8287 184.533 48.1835 184.533 47.36C184.533 46.8154 184.624 46.3388 184.806 45.9303C184.987 45.5218 185.243 45.2041 185.574 44.9771C185.911 44.7502 186.31 44.6367 186.77 44.6367Z" fill="white"/>
|
||||
<path d="M182.955 44.7537V49.8794H182.06V44.7537H182.955ZM182.497 42.293C182.686 42.293 182.838 42.3513 182.955 42.468C183.071 42.5848 183.13 42.7306 183.13 42.9057C183.13 43.0808 183.071 43.2267 182.955 43.3434C182.838 43.4536 182.686 43.5087 182.497 43.5087C182.316 43.5087 182.167 43.4536 182.05 43.3434C181.933 43.2267 181.875 43.0808 181.875 42.9057C181.875 42.7306 181.933 42.5848 182.05 42.468C182.167 42.3513 182.316 42.293 182.497 42.293Z" fill="white"/>
|
||||
<path d="M180.134 49.9963C179.804 49.9963 179.541 49.899 179.347 49.7045C179.158 49.5035 179.064 49.2247 179.064 48.8681V42.6919L179.959 42.585V48.8486C179.959 48.9913 179.982 49.095 180.027 49.1598C180.079 49.2247 180.164 49.2571 180.28 49.2571C180.403 49.2571 180.514 49.2376 180.611 49.1987L180.844 49.8212C180.63 49.9379 180.394 49.9963 180.134 49.9963Z" fill="white"/>
|
||||
<path d="M176.239 44.6367C176.544 44.6367 176.823 44.6821 177.075 44.7729C177.328 44.8572 177.571 44.9966 177.805 45.1911L177.377 45.7552C177.195 45.6255 177.017 45.5315 176.842 45.4732C176.673 45.4083 176.485 45.3759 176.278 45.3759C175.863 45.3759 175.539 45.5413 175.305 45.8719C175.078 46.2026 174.965 46.6922 174.965 47.3406C174.965 47.989 175.078 48.4688 175.305 48.7801C175.532 49.0848 175.856 49.2372 176.278 49.2372C176.479 49.2372 176.664 49.208 176.832 49.1497C177.001 49.0848 177.189 48.9843 177.396 48.8481L177.805 49.4317C177.338 49.8078 176.816 49.9958 176.239 49.9958C175.545 49.9958 174.997 49.7624 174.595 49.2955C174.2 48.8287 174.002 48.1835 174.002 47.36C174.002 46.8154 174.093 46.3388 174.274 45.9303C174.456 45.5218 174.712 45.2041 175.043 44.9771C175.38 44.7502 175.779 44.6367 176.239 44.6367Z" fill="white"/>
|
||||
<path d="M130.036 58.1088C129.695 57.2004 130.367 56.2314 131.337 56.2314H144C144.971 56.2314 145.642 57.2004 145.301 58.1088L144.259 60.8877C144.056 61.43 143.538 61.7892 142.958 61.7892H132.379C131.8 61.7892 131.281 61.43 131.078 60.8877L130.036 58.1088Z" fill="#DE6876"/>
|
||||
</g>
|
||||
<path d="M32.457 52.4156L-4.16406 73.557C-4.53291 73.7699 -4.53291 74.1152 -4.16406 74.3281L32.5294 95.5113L69.8184 73.9844L32.457 52.4156Z" fill="#009E62" stroke="#009E62" stroke-width="1.54233" stroke-linejoin="bevel"/>
|
||||
<path d="M32.4551 51.8141L32.4551 51.8141L-4.16601 72.9554C-4.53486 73.1684 -4.53486 73.5136 -4.16601 73.7266L32.4568 94.8689L69.7458 73.342L32.4551 51.8141Z" fill="#009E62" stroke="#009E62" stroke-width="1.54233" stroke-linejoin="bevel"/>
|
||||
<path d="M32.4551 51.2252L32.4551 51.2252L-4.16601 72.3666C-4.53486 72.5795 -4.53486 72.9248 -4.16601 73.1377L32.4568 94.2801L69.7458 72.7531L32.4551 51.2252Z" fill="#009E62" stroke="#009E62" stroke-width="1.54233" stroke-linejoin="bevel"/>
|
||||
<path d="M32.4551 50.6373L32.4551 50.6373L-4.16601 71.7787C-4.53486 71.9916 -4.53486 72.3369 -4.16601 72.5498L32.4568 93.6922L69.7458 72.1653L32.4551 50.6373Z" fill="#009E62" stroke="#009E62" stroke-width="1.54233" stroke-linejoin="bevel"/>
|
||||
<path d="M32.4551 50.0494L32.4551 50.0494L-4.16601 71.1908C-4.53486 71.4037 -4.53486 71.749 -4.16601 71.9619L32.4568 93.1043L69.7458 71.5774L32.4551 50.0494Z" fill="#009E62" stroke="#009E62" stroke-width="1.54233" stroke-linejoin="bevel"/>
|
||||
<path d="M32.4551 49.4606L32.4551 49.4606L-4.16601 70.6019C-4.53486 70.8149 -4.53486 71.1601 -4.16601 71.373L32.4568 92.5154L69.7458 70.9885L32.4551 49.4606Z" fill="#009E62" stroke="#009E62" stroke-width="1.54233" stroke-linejoin="bevel"/>
|
||||
<path d="M32.4551 48.8737L32.4551 48.8737L-4.16601 70.015C-4.53486 70.2279 -4.53486 70.5732 -4.16601 70.7861L32.4568 91.9285L69.7458 70.4016L32.4551 48.8737Z" fill="#009E62" stroke="#009E62" stroke-width="1.54233" stroke-linejoin="bevel"/>
|
||||
<path d="M32.4551 48.2848L32.4551 48.2848L-4.16601 69.4261C-4.53486 69.6391 -4.53486 69.9843 -4.16601 70.1973L32.4568 91.3396L69.7458 69.8127L32.4551 48.2848Z" fill="#009E62" stroke="#009E62" stroke-width="1.54233" stroke-linejoin="bevel"/>
|
||||
<path d="M32.4551 47.6959L32.4551 47.6959L-4.16601 68.8373C-4.53486 69.0502 -4.53486 69.3955 -4.16601 69.6084L32.4568 90.7508L69.7458 69.2239L32.4551 47.6959Z" fill="#009E62" stroke="#009E62" stroke-width="1.54233" stroke-linejoin="bevel"/>
|
||||
<path d="M32.4551 47.108L32.4551 47.108L-4.16601 68.2494C-4.53486 68.4623 -4.53486 68.8076 -4.16601 69.0205L32.4568 90.1629L69.7458 68.636L32.4551 47.108Z" fill="#009E62" stroke="#009E62" stroke-width="1.54233" stroke-linejoin="bevel"/>
|
||||
<path d="M33.1445 46.7701L33.1445 46.7701L-3.04144 67.6603C-3.41029 67.8732 -3.41029 68.2185 -3.04144 68.4314L33.1463 89.3226L70.0001 68.0469L33.1445 46.7701Z" fill="#009E62" stroke="#009E62" stroke-width="1.54233" stroke-linejoin="bevel"/>
|
||||
<path d="M34.3788 46.0682C34.01 45.8552 33.4119 45.8552 33.0431 46.0682L-3.16372 66.9704C-3.90142 67.3962 -3.90143 68.0867 -3.16373 68.5126L32.4581 89.0772C32.8269 89.2902 33.425 89.2902 33.7938 89.0772L70.6685 67.7895C71.0373 67.5766 71.0373 67.2313 70.6685 67.0184L34.3788 46.0682Z" fill="#16CF89"/>
|
||||
<path d="M50.0078 58.5151C50.1964 60.7777 52.3269 65.2463 59.3409 65.02C58.681 62.5689 55.8905 57.8363 50.0078 58.5151Z" fill="#009E62"/>
|
||||
<path d="M68.2159 60.5729C66.4566 60.0987 62.5029 60.4894 60.7625 65.8457C62.7926 66.0154 67.1254 65.1985 68.2159 60.5729Z" fill="#009E62"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_d_1642_5441" x="117.522" y="31.9158" width="94.9973" height="33.3469" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="0.694725"/>
|
||||
<feGaussianBlur stdDeviation="1.38945"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.13 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1642_5441"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1642_5441" result="shape"/>
|
||||
</filter>
|
||||
<clipPath id="clip0_1642_5441">
|
||||
<rect width="285" height="102" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 26 KiB |
90
newIDE/app/public/res/questionnaire/on-my-own.svg
Normal file
@@ -0,0 +1,90 @@
|
||||
<svg width="292" height="103" viewBox="0 0 292 103" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="292" height="102.768" fill="#1D1D26"/>
|
||||
<rect x="83.0715" y="44.1315" width="27.9334" height="12.7303" rx="1.65535" transform="rotate(-2.71669 83.0715 44.1315)" stroke="#67EEAD" stroke-opacity="0.4" stroke-width="0.300972"/>
|
||||
<path d="M192.718 16.9342C192.485 18.1153 190.917 20.1966 190.163 21.0896C189.819 20.9525 186.666 18.9632 185.132 17.9857L186.075 16.8694C184.867 16.4868 182.349 15.4813 181.937 14.5203C181.421 13.3191 181.678 11.4308 183.685 10.6401C185.693 9.84929 188.544 11.6842 190.707 12.7472C192.87 13.8101 193.009 15.4579 192.718 16.9342Z" fill="url(#paint0_linear_1649_5807)"/>
|
||||
<path d="M188.543 17.7805L188.489 17.7607C187.901 17.5789 186.925 18.3861 185.249 17.994L185.859 16.7882L188.489 17.7607C188.508 17.7663 188.525 17.7729 188.543 17.7805Z" fill="#DB422A"/>
|
||||
<path d="M198.099 20.7299C197.647 21.2384 194.384 24.6269 192.809 26.2575L194.419 35.1107C197.208 32.6106 203.043 27.1519 204.067 25.3174C205.346 23.0243 204.627 20.4201 202.601 19.5016C200.574 18.583 198.663 20.0943 198.099 20.7299Z" fill="url(#paint1_linear_1649_5807)"/>
|
||||
<path d="M196.371 32.5066C196.466 39.7877 190.95 45.3251 187.309 48.0102C167.875 61.9962 158.088 56.9335 152.109 52.6951C146.129 48.4568 144.59 42.5003 144.532 35.9712C144.473 29.4421 149.953 23.1527 156.458 22.5928C161.663 22.1448 166.098 24.5639 167.666 25.8294C168.096 24.3017 175.462 15.4104 184.103 17.5127C192.745 19.6149 196.277 25.2255 196.371 32.5066Z" fill="url(#paint2_linear_1649_5807)"/>
|
||||
<path d="M152.853 59.5587C153.319 59.2209 155.519 56.7125 156.674 55.3077C154.872 54.3883 152.538 52.9957 151.584 52.216C151.536 51.2134 149.962 49.7965 148.496 49.866C146.425 49.9643 145.847 52.0166 145.661 52.9254C145.475 53.8342 145.332 55.6409 145.645 57.4259C145.959 59.2109 147.821 59.7975 148.986 60.1922C150.151 60.5869 152.188 60.0402 152.853 59.5587Z" fill="url(#paint3_linear_1649_5807)"/>
|
||||
<path d="M165.297 59.9698C166.016 58.8767 167.043 57.5715 167.452 56.6906C169.633 56.2377 174.434 54.796 176.563 54.1317C175.497 58.3504 171.472 63.3503 169.153 65.0535C166.834 66.7567 164.135 66.6512 163.305 64.825C162.476 62.9987 164.681 60.9071 165.297 59.9698Z" fill="url(#paint4_linear_1649_5807)"/>
|
||||
<path d="M151.707 54.7898L151.588 52.2832L154.954 54.3845C153.975 54.9334 151.719 55.0405 151.707 54.7898Z" fill="#EB6338"/>
|
||||
<path d="M174.696 31.0225C173.683 30.8696 169.587 27.4965 167.666 25.8291C174.875 29.5067 177.596 28.6238 177.62 29.1252C177.644 29.6265 175.961 31.2137 174.696 31.0225Z" fill="#E84F37"/>
|
||||
<path d="M154.563 47.8812C151.746 47.8139 149.753 45.3459 149.108 44.1204C149.789 42.5807 150.804 37.508 156.832 37.4732C161.654 37.4454 164.538 41.0434 165.378 42.8459C162.297 46.7605 158.084 47.9653 154.563 47.8812Z" fill="#FEF9F5"/>
|
||||
<mask id="mask0_1649_5807" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="149" y="37" width="17" height="11">
|
||||
<path d="M154.563 47.8821C151.746 47.8148 149.753 45.3469 149.108 44.1213C149.789 42.5817 150.804 37.509 156.832 37.4742C161.654 37.4463 164.538 41.0444 165.378 42.8469C162.297 46.7614 158.084 47.9663 154.563 47.8821Z" fill="#FEF9F5"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_1649_5807)">
|
||||
<ellipse cx="156.465" cy="44.2393" rx="4.98296" ry="5.31516" transform="rotate(-19.9595 156.465 44.2393)" fill="black"/>
|
||||
</g>
|
||||
<path d="M132.605 58.5475L164.937 75.7813L147.565 88.869L115.233 71.6352L132.605 58.5475Z" fill="url(#paint5_linear_1649_5807)"/>
|
||||
<path d="M147.479 88.7966L165.008 75.6943L164.634 77.4289L147.356 90.5489L147.479 88.7966Z" fill="#606972"/>
|
||||
<path d="M147.481 88.7973L116.447 72.2676L116.324 74.0198L147.358 90.5495L147.481 88.7973Z" fill="#49525B"/>
|
||||
<path d="M134.11 62.2265C134.432 61.9845 134.864 61.9507 135.219 62.1399L159.003 74.8179C159.671 75.1735 159.743 76.1013 159.139 76.5562L147.1 85.6264C146.779 85.8684 146.347 85.9022 145.992 85.713L122.207 73.035C121.54 72.6794 121.467 71.7516 122.071 71.2967L134.11 62.2265Z" fill="url(#paint6_linear_1649_5807)" fill-opacity="0.6"/>
|
||||
<path d="M113.845 72.2465L146.236 89.3694L147.589 64.1432L115.199 47.0202L113.845 72.2465Z" fill="url(#paint7_linear_1649_5807)"/>
|
||||
<path d="M148.585 63.2123L147.513 64.1429L146.23 89.4607L147.302 88.5301L148.585 63.2123Z" fill="#677079"/>
|
||||
<path d="M148.586 63.2124L147.514 64.1431L115.263 47.0244L116.318 46.3441L148.586 63.2124Z" fill="#9AA2A9"/>
|
||||
<g filter="url(#filter0_f_1649_5807)">
|
||||
<path d="M126.421 20.6246L115.689 47.8546L149.296 63.7019L147.476 89.4877L170.519 71.4192C168.879 62.8381 163.681 43.4674 156.012 34.6336C148.343 25.7997 133.089 21.6135 126.421 20.6246Z" fill="url(#paint8_linear_1649_5807)" fill-opacity="0.3"/>
|
||||
</g>
|
||||
<rect x="113.506" y="23.0259" width="23.7747" height="12.1773" rx="2.84136" transform="rotate(-2.71669 113.506 23.0259)" fill="#ACFF58" fill-opacity="0.2" stroke="#FFF500" stroke-width="0.115974"/>
|
||||
<path d="M130.23 28.0287L130.242 28.2832C130.165 28.2434 130.089 28.2144 130.012 28.1963C129.936 28.1782 129.858 28.171 129.78 28.1747C129.662 28.1803 129.575 28.2038 129.518 28.2452C129.463 28.2857 129.437 28.345 129.44 28.4233C129.444 28.494 129.468 28.5457 129.513 28.5786C129.558 28.6114 129.668 28.6402 129.842 28.665L129.947 28.6798C130.078 28.6982 130.177 28.7426 130.247 28.813C130.317 28.8834 130.355 28.9775 130.361 29.0953C130.368 29.2518 130.319 29.377 130.212 29.4709C130.104 29.5639 129.952 29.615 129.754 29.6244C129.676 29.6281 129.593 29.6235 129.507 29.6106C129.42 29.5987 129.326 29.5786 129.225 29.5503L129.212 29.2817C129.311 29.327 129.406 29.3603 129.496 29.3816C129.586 29.4019 129.67 29.4101 129.749 29.4064C129.864 29.4009 129.952 29.3736 130.013 29.3244C130.074 29.2743 130.103 29.2073 130.099 29.1234C130.093 29.0027 129.973 28.9247 129.74 28.8895L129.729 28.8872L129.63 28.872C129.479 28.8499 129.367 28.8061 129.295 28.7405C129.223 28.674 129.184 28.5809 129.179 28.4612C129.171 28.3094 129.217 28.1901 129.316 28.1032C129.415 28.0154 129.56 27.9669 129.75 27.9579C129.835 27.9539 129.917 27.958 129.996 27.9703C130.075 27.9817 130.153 28.0011 130.23 28.0287Z" fill="#76FF9C"/>
|
||||
<path d="M127.909 29.0962C127.915 29.2131 127.94 29.3002 127.985 29.3576C128.032 29.4149 128.097 29.4416 128.181 29.4376L128.485 29.4232L128.495 29.6424L128.166 29.658C128.01 29.6654 127.887 29.6216 127.796 29.5267C127.707 29.4308 127.658 29.2914 127.649 29.1085L127.581 27.676L127.164 27.6958L127.154 27.4922L127.832 27.46L127.909 29.0962Z" fill="#76FF9C"/>
|
||||
<path d="M125.719 28.3701C125.587 28.3764 125.49 28.4325 125.427 28.5385C125.364 28.6444 125.337 28.7983 125.346 29.0001C125.356 29.2009 125.397 29.3515 125.47 29.452C125.543 29.5515 125.645 29.5982 125.777 29.5919C125.91 29.5856 126.008 29.5294 126.071 29.4235C126.134 29.3165 126.161 29.1627 126.151 28.9619C126.142 28.7601 126.1 28.6095 126.028 28.5099C125.955 28.4104 125.852 28.3638 125.719 28.3701ZM125.709 28.1495C125.928 28.1391 126.099 28.2023 126.222 28.3391C126.346 28.4759 126.414 28.6792 126.427 28.9488C126.44 29.2194 126.391 29.4286 126.282 29.5764C126.173 29.7233 126.008 29.802 125.788 29.8125C125.568 29.8229 125.397 29.7602 125.274 29.6243C125.151 29.4874 125.084 29.2837 125.071 29.0131C125.058 28.7435 125.106 28.5348 125.215 28.3869C125.325 28.2391 125.489 28.1599 125.709 28.1495Z" fill="#76FF9C"/>
|
||||
<path d="M123.713 28.4648C123.581 28.4711 123.484 28.5272 123.421 28.6332C123.358 28.7392 123.331 28.893 123.341 29.0948C123.35 29.2956 123.391 29.4462 123.464 29.5467C123.537 29.6462 123.639 29.6929 123.771 29.6866C123.904 29.6803 124.002 29.6242 124.065 29.5182C124.128 29.4113 124.155 29.2574 124.145 29.0566C124.136 28.8549 124.094 28.7042 124.022 28.6047C123.949 28.5051 123.846 28.4585 123.713 28.4648ZM123.703 28.2442C123.922 28.2338 124.094 28.297 124.216 28.4339C124.34 28.5707 124.408 28.7739 124.421 29.0435C124.434 29.3141 124.386 29.5233 124.276 29.6711C124.167 29.8181 124.002 29.8967 123.782 29.9072C123.562 29.9176 123.391 29.8549 123.268 29.719C123.145 29.5821 123.078 29.3784 123.065 29.1079C123.052 28.8382 123.1 28.6295 123.209 28.4816C123.319 28.3338 123.483 28.2546 123.703 28.2442Z" fill="#76FF9C"/>
|
||||
<path d="M120.869 27.8887L122.48 27.8122L122.491 28.0526L121.831 28.084L121.92 29.9548L121.633 29.9685L121.544 28.0976L120.881 28.1291L120.869 27.8887Z" fill="#76FF9C"/>
|
||||
<line x1="103.131" y1="39.9892" x2="103.53" y2="48.4069" stroke="#E27526" stroke-opacity="0.3" stroke-width="0.451458" stroke-linecap="round"/>
|
||||
<circle cx="103.309" cy="43.7465" r="0.827673" transform="rotate(-2.71669 103.309 43.7465)" fill="#F57600"/>
|
||||
<line x1="105.385" y1="39.8818" x2="105.784" y2="48.2995" stroke="#E27526" stroke-opacity="0.3" stroke-width="0.451458" stroke-linecap="round"/>
|
||||
<circle cx="105.663" cy="45.7436" r="0.827673" transform="rotate(-2.71669 105.663 45.7436)" fill="#F57600"/>
|
||||
<line x1="107.633" y1="39.7792" x2="108.032" y2="48.197" stroke="#E27526" stroke-opacity="0.3" stroke-width="0.451458" stroke-linecap="round"/>
|
||||
<circle cx="107.718" cy="41.5824" r="0.827673" transform="rotate(-2.71669 107.718 41.5824)" fill="#F57600"/>
|
||||
<rect x="79.5807" y="63.7903" width="28.4418" height="1.80583" rx="0.902916" transform="rotate(-2.71669 79.5807 63.7903)" fill="#32F28B" fill-opacity="0.2" stroke="#49FF92" stroke-width="0.150486"/>
|
||||
<rect x="79.502" y="63.7188" width="10.534" height="1.95632" rx="0.978158" transform="rotate(-2.71669 79.502 63.7188)" fill="#32F296" fill-opacity="0.7"/>
|
||||
<rect x="93.9908" y="69.6292" width="28.4418" height="1.80583" rx="0.902916" transform="rotate(-2.71669 93.9908 69.6292)" fill="#F2A632" fill-opacity="0.2" stroke="#FFAB49" stroke-width="0.150486"/>
|
||||
<rect x="93.9121" y="69.5576" width="19.2248" height="1.95632" rx="0.978158" transform="rotate(-2.71669 93.9121 69.5576)" fill="#F2A632" fill-opacity="0.7"/>
|
||||
<defs>
|
||||
<filter id="filter0_f_1649_5807" x="114.655" y="19.591" width="56.8981" height="70.9303" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="0.517" result="effect1_foregroundBlur_1649_5807"/>
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_1649_5807" x1="186.904" y1="10.2561" x2="187.83" y2="21.2854" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FE6F6D"/>
|
||||
<stop offset="1" stop-color="#F3514F"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1649_5807" x1="198.51" y1="19.3405" x2="199.247" y2="34.8816" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FE6F6D"/>
|
||||
<stop offset="1" stop-color="#F3514F"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1649_5807" x1="183.098" y1="14.685" x2="150.729" y2="52.4516" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FE6F6D"/>
|
||||
<stop offset="0.532636" stop-color="#F45351"/>
|
||||
<stop offset="1" stop-color="#FA987A"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1649_5807" x1="150.964" y1="49.7489" x2="146.425" y2="59.9015" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FE6F6D"/>
|
||||
<stop offset="0.09375" stop-color="#FD8D6A"/>
|
||||
<stop offset="1" stop-color="#F3514F"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_1649_5807" x1="171.067" y1="55.6276" x2="163.27" y2="65.8316" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0998039" stop-color="#F45351"/>
|
||||
<stop offset="1" stop-color="#F38A4F"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_1649_5807" x1="144.723" y1="65.0069" x2="135.447" y2="82.4096" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#818B94"/>
|
||||
<stop offset="1" stop-color="#858C92"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_1649_5807" x1="144.306" y1="66.9836" x2="136.904" y2="80.8693" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#677179"/>
|
||||
<stop offset="1" stop-color="#6A747B"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint7_linear_1649_5807" x1="125.358" y1="78.3327" x2="136.077" y2="58.057" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#8E9092"/>
|
||||
<stop offset="1" stop-color="#BCC6CF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint8_linear_1649_5807" x1="152.742" y1="44.2502" x2="129.158" y2="77.311" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F4FFB4" stop-opacity="0"/>
|
||||
<stop offset="0.651042" stop-color="#CF80FF"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 12 KiB |
13
newIDE/app/public/res/questionnaire/other.svg
Normal file
@@ -0,0 +1,13 @@
|
||||
<svg width="292" height="103" viewBox="0 0 292 103" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="292" height="102.768" fill="#1D1D26"/>
|
||||
<path d="M157.636 20.8929L151.579 16.8828L119.417 66.1497C119.171 66.5589 119.744 68.2775 121.054 69.5869C122.363 70.8963 125.309 70.6508 125.555 70.3235L157.636 20.8929Z" fill="#2F4CB6"/>
|
||||
<ellipse cx="154.539" cy="19.0073" rx="3.64254" ry="2.3788" transform="rotate(33.9423 154.539 19.0073)" fill="#5F80D1"/>
|
||||
<path d="M151.279 59.5203L148.169 63.9396L136.057 46.1806L139.003 41.1885L151.279 59.5203Z" fill="#1E368A"/>
|
||||
<path d="M141.95 41.2705L153.326 56.6562L151.362 59.6842L139.004 41.2705H141.95Z" fill="#5F80D1"/>
|
||||
<path d="M141.622 74.5789L138.513 78.9982L126.4 61.2392L129.347 56.2471L141.622 74.5789Z" fill="#1E368A"/>
|
||||
<path d="M132.292 56.3291L143.667 71.7148L141.703 74.7428L129.346 56.3291H132.292Z" fill="#5F80D1"/>
|
||||
<path d="M161.099 46.0985L157.989 50.5178L145.877 32.7588L148.823 27.7666L161.099 46.0985Z" fill="#1E368A"/>
|
||||
<path d="M151.77 27.8486L163.146 43.2343L161.182 46.2623L148.824 27.8486H151.77Z" fill="#5F80D1"/>
|
||||
<path d="M171.386 38.5706L165.329 34.5605L133.167 83.8274C132.921 84.2366 133.494 85.9552 134.804 87.2647C136.113 88.5741 139.059 88.3286 139.305 88.0012L171.386 38.5706Z" fill="#2F4CB6"/>
|
||||
<ellipse cx="168.289" cy="36.685" rx="3.64254" ry="2.3788" transform="rotate(33.9423 168.289 36.685)" fill="#5F80D1"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
75
newIDE/app/public/res/questionnaire/serious-game.svg
Normal file
@@ -0,0 +1,75 @@
|
||||
<svg width="292" height="103" viewBox="0 0 292 103" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="292" height="102.768" fill="#1D1D26"/>
|
||||
<line x1="120" y1="25.9" x2="238" y2="25.9" stroke="white" stroke-width="0.2"/>
|
||||
<line x1="120" y1="33.9" x2="238" y2="33.9" stroke="white" stroke-width="0.2"/>
|
||||
<line x1="120" y1="41.9" x2="238" y2="41.9" stroke="white" stroke-width="0.2"/>
|
||||
<line x1="120" y1="49.9" x2="238" y2="49.9" stroke="white" stroke-width="0.2"/>
|
||||
<line x1="120" y1="57.9" x2="238" y2="57.9" stroke="white" stroke-width="0.2"/>
|
||||
<path d="M92.0843 68.3882C92.4235 69.9893 90.7186 70.9273 89.7684 71.071C88.8182 71.2146 87.4554 70.9663 85.4847 69.0942C84.6902 68.3396 83.4527 66.5828 83.4527 66.5828C83.4527 66.5828 84.4995 65.5776 85.4173 64.1475C86.5126 62.4408 86.8349 61.309 86.8349 61.309C86.8349 61.309 87.3885 63.3083 88.711 64.7188C90.0553 66.1524 91.8298 67.187 92.0843 68.3882Z" fill="url(#paint0_linear_1654_6565)"/>
|
||||
<path d="M92.0843 68.3882C92.4235 69.9893 90.7186 70.9273 89.7684 71.071C88.8182 71.2146 87.4554 70.9663 85.4847 69.0942C84.6902 68.3396 83.4527 66.5828 83.4527 66.5828C83.4527 66.5828 84.4995 65.5776 85.4173 64.1475C86.5126 62.4408 86.8349 61.309 86.8349 61.309C86.8349 61.309 87.3885 63.3083 88.711 64.7188C90.0553 66.1524 91.8298 67.187 92.0843 68.3882Z" fill="url(#paint1_linear_1654_6565)"/>
|
||||
<path d="M87.6543 63.2395C87.6543 63.2395 87.0581 65.3574 86.6029 66.2038C86.1476 67.0502 85.0077 68.5886 85.0077 68.5886C84.8603 68.4486 85.1748 68.7799 85.0077 68.5886C84.2738 67.7484 83.4527 66.5828 83.4527 66.5828C83.4527 66.5828 84.4995 65.5776 85.4173 64.1475C86.5126 62.4408 86.8349 61.309 86.8349 61.309C86.8349 61.309 87.0861 62.2162 87.6543 63.2395Z" fill="#007156"/>
|
||||
<path d="M87.6543 63.2395C87.6543 63.2395 87.0581 65.3574 86.6029 66.2038C86.1476 67.0502 85.0077 68.5886 85.0077 68.5886C84.8603 68.4486 85.1748 68.7799 85.0077 68.5886C84.2738 67.7484 83.4527 66.5828 83.4527 66.5828C83.4527 66.5828 84.4995 65.5776 85.4173 64.1475C86.5126 62.4408 86.8349 61.309 86.8349 61.309C86.8349 61.309 87.0861 62.2162 87.6543 63.2395Z" fill="#007156"/>
|
||||
<path d="M54.6222 74.5365L57.0265 66.0088C57.676 66.2703 58.1831 65.9782 59.1225 66.3723C60.1292 66.7946 61.4326 67.4129 61.6616 67.738C62.1566 68.4407 64.2648 66.9557 65.0195 66.1613L70.7484 68.6971C70.6965 68.9965 68.6281 72.0306 65.5697 73.6593C63.7267 74.3266 61.009 73.2795 59.8805 72.6726C58.9126 73.9852 55.9716 74.4621 54.6222 74.5365Z" fill="url(#paint2_linear_1654_6565)"/>
|
||||
<path d="M65.0194 66.161L70.7483 68.6968C70.7163 68.8818 69.9148 70.1102 68.5859 71.4062C68.5859 71.4062 66.851 70.3014 65.9972 69.415C65.1434 68.5286 64.2131 66.8665 64.2131 66.8665C64.5382 66.6184 64.8241 66.3666 65.0194 66.161Z" fill="#007156"/>
|
||||
<circle cx="74.8186" cy="57.6823" r="13.9795" transform="rotate(9.83929 74.8186 57.6823)" fill="url(#paint3_linear_1654_6565)"/>
|
||||
<path d="M62.5823 64.5258L63.2721 65.5708C63.2721 65.5708 63.7276 64.1151 64.5339 63.6305C64.5339 63.6305 65.1512 63.0539 65.6435 62.5676C66.8021 61.4233 68.6388 60.7292 68.6388 60.7292C67.1009 61.2781 65.652 60.5521 63.8989 61.9565C63.1603 62.5483 62.7381 63.6275 62.5823 64.5258Z" fill="#007156"/>
|
||||
<path d="M61.0728 67.2822C60.228 68.8625 58.654 68.7357 57.5571 67.9211C56.4601 67.1065 56.5729 65.5652 57.4965 62.9158C58.4202 60.2664 61.4 57.6614 62.2063 57.1769C64.6252 55.7234 66.1517 55.9881 67.3824 55.8894C67.3824 55.8894 68.9707 55.6541 69.9817 56.9646C70.9926 58.275 69.7566 60.0473 69.7566 60.0473C68.2918 61.3541 66.6151 60.7488 64.3704 62.5471C62.5816 63.9802 61.9892 65.568 61.0728 67.2822Z" fill="url(#paint4_linear_1654_6565)"/>
|
||||
<rect x="75.4648" y="57.5166" width="8.81751" height="9.09832" rx="1.122" transform="rotate(-36.8176 75.4648 57.5166)" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M77.1961 56.2208L79.2868 54.6557C79.4923 54.6501 79.7046 54.665 79.9199 54.7024C81.2429 54.9318 82.1759 55.9222 82.0038 56.9144C81.8317 57.9066 80.6197 58.525 79.2967 58.2956C78.0348 58.0767 77.1277 57.1655 77.1961 56.2208Z" fill="white"/>
|
||||
<path d="M84.8543 81.6298C83.3052 81.6696 78.0591 81.6851 75.2603 81.8165C75.2661 80.939 75.1945 77.8662 74.3068 74.8655L72.1175 69.9135C71.9219 69.5057 71.7578 69.1445 71.6484 68.8525L79.4337 70.2028C80.8148 72.9098 81.5838 74.9966 81.6368 77.0621C82.793 77.5094 84.5111 80.645 84.8543 81.6298Z" fill="url(#paint5_linear_1654_6565)"/>
|
||||
<rect x="75" y="14" width="8.83095" height="11.9316" rx="4.41548" fill="white"/>
|
||||
<path d="M78.6719 18.5762H79.2852V16.373L78.5508 16.7266V16.3477L79.2812 16H79.6758V18.5762H80.2812V18.9062H78.6719V18.5762Z" fill="black"/>
|
||||
<line x1="82.0446" y1="18.1206" x2="77.0446" y2="21.1206" stroke="black" stroke-width="0.5"/>
|
||||
<path d="M80.2441 22.3145C80.4355 22.3652 80.582 22.4557 80.6836 22.5859C80.7852 22.7148 80.8359 22.8763 80.8359 23.0703C80.8359 23.3385 80.7454 23.5495 80.5645 23.7031C80.3848 23.8555 80.1354 23.9316 79.8164 23.9316C79.6823 23.9316 79.5456 23.9193 79.4062 23.8945C79.2669 23.8698 79.1302 23.834 78.9961 23.7871V23.3945C79.1289 23.4635 79.2598 23.515 79.3887 23.5488C79.5176 23.5827 79.6458 23.5996 79.7734 23.5996C79.9896 23.5996 80.1556 23.5508 80.2715 23.4531C80.3874 23.3555 80.4453 23.2148 80.4453 23.0312C80.4453 22.862 80.3874 22.7279 80.2715 22.6289C80.1556 22.5286 79.9987 22.4785 79.8008 22.4785H79.5V22.1543H79.8008C79.9818 22.1543 80.123 22.1146 80.2246 22.0352C80.3262 21.9557 80.377 21.8451 80.377 21.7031C80.377 21.5534 80.3294 21.4388 80.2344 21.3594C80.1406 21.2786 80.0065 21.2383 79.832 21.2383C79.7161 21.2383 79.5964 21.2513 79.4727 21.2773C79.349 21.3034 79.2194 21.3424 79.084 21.3945V21.0312C79.2415 20.9896 79.3815 20.9583 79.5039 20.9375C79.6276 20.9167 79.737 20.9062 79.832 20.9062C80.1159 20.9062 80.3424 20.9779 80.5117 21.1211C80.6823 21.263 80.7676 21.4518 80.7676 21.6875C80.7676 21.8477 80.7227 21.9811 80.6328 22.0879C80.5443 22.1947 80.4147 22.2702 80.2441 22.3145Z" fill="black"/>
|
||||
<rect x="89.832" y="19" width="8.83095" height="11.9941" rx="4.41548" fill="white"/>
|
||||
<path d="M93.793 23.6367H95.1328V23.9688H93.3613V23.6367C93.6048 23.3802 93.8177 23.1536 94 22.957C94.1823 22.7604 94.3079 22.6217 94.377 22.541C94.5072 22.3822 94.5951 22.2539 94.6406 22.1562C94.6862 22.0573 94.709 21.9564 94.709 21.8535C94.709 21.6908 94.6608 21.5632 94.5645 21.4707C94.4694 21.3783 94.3385 21.332 94.1719 21.332C94.0534 21.332 93.929 21.3535 93.7988 21.3965C93.6686 21.4395 93.5306 21.5046 93.3848 21.5918V21.1934C93.5189 21.1296 93.6504 21.0814 93.7793 21.0488C93.9095 21.0163 94.0378 21 94.1641 21C94.4492 21 94.6784 21.0762 94.8516 21.2285C95.026 21.3796 95.1133 21.5781 95.1133 21.8242C95.1133 21.9492 95.084 22.0742 95.0254 22.1992C94.9681 22.3242 94.8743 22.4622 94.7441 22.6133C94.6712 22.6979 94.5651 22.8151 94.4258 22.9648C94.2878 23.1146 94.0768 23.3385 93.793 23.6367Z" fill="black"/>
|
||||
<line x1="96.8767" y1="23.1831" x2="91.8767" y2="26.1831" stroke="black" stroke-width="0.5"/>
|
||||
<path d="M95.0762 27.377C95.2676 27.4277 95.4141 27.5182 95.5156 27.6484C95.6172 27.7773 95.668 27.9388 95.668 28.1328C95.668 28.401 95.5775 28.612 95.3965 28.7656C95.2168 28.918 94.9674 28.9941 94.6484 28.9941C94.5143 28.9941 94.3776 28.9818 94.2383 28.957C94.099 28.9323 93.9622 28.8965 93.8281 28.8496V28.457C93.9609 28.526 94.0918 28.5775 94.2207 28.6113C94.3496 28.6452 94.4779 28.6621 94.6055 28.6621C94.8216 28.6621 94.9876 28.6133 95.1035 28.5156C95.2194 28.418 95.2773 28.2773 95.2773 28.0938C95.2773 27.9245 95.2194 27.7904 95.1035 27.6914C94.9876 27.5911 94.8307 27.541 94.6328 27.541H94.332V27.2168H94.6328C94.8138 27.2168 94.9551 27.1771 95.0566 27.0977C95.1582 27.0182 95.209 26.9076 95.209 26.7656C95.209 26.6159 95.1615 26.5013 95.0664 26.4219C94.9727 26.3411 94.8385 26.3008 94.6641 26.3008C94.5482 26.3008 94.4284 26.3138 94.3047 26.3398C94.181 26.3659 94.0514 26.4049 93.916 26.457V26.0938C94.0736 26.0521 94.2135 26.0208 94.3359 26C94.4596 25.9792 94.569 25.9688 94.6641 25.9688C94.9479 25.9688 95.1745 26.0404 95.3438 26.1836C95.5143 26.3255 95.5996 26.5143 95.5996 26.75C95.5996 26.9102 95.5547 27.0436 95.4648 27.1504C95.3763 27.2572 95.2467 27.3327 95.0762 27.377Z" fill="black"/>
|
||||
<rect x="104.662" y="28" width="8.83095" height="11.832" rx="4.41548" fill="white"/>
|
||||
<path d="M109.305 30.3594L108.385 31.9004H109.305V30.3594ZM109.24 30H109.697V31.9004H110.086V32.2207H109.697V32.916H109.305V32.2207H108.068V31.8477L109.24 30Z" fill="black"/>
|
||||
<line x1="111.707" y1="32.1304" x2="106.707" y2="35.1304" stroke="black" stroke-width="0.5"/>
|
||||
<path d="M109.805 35.2754L108.885 36.8164H109.805V35.2754ZM109.74 34.916H110.197V36.8164H110.586V37.1367H110.197V37.832H109.805V37.1367H108.568V36.7637L109.74 34.916Z" fill="black"/>
|
||||
<path d="M142.498 51.8848C143.365 49.6652 143.095 47.2216 141.793 45.5076C140.514 43.8217 138.498 42.8748 136.398 42.9894C136.367 42.9904 136.337 42.9928 136.307 42.9943V39.6038C139.931 36.8916 142.264 34.3626 142.264 30.902V27.8822C142.264 25.7417 140.546 24 138.435 24C136.323 24 134.605 25.7417 134.605 27.8822V38.7276C133.445 39.5638 132.144 40.443 130.729 41.3998C127.671 43.4663 126.004 47.577 126.766 51.1739C127.406 54.1961 129.592 56.2369 132.763 56.7725C133.408 56.8816 134.022 56.9355 134.605 56.9409V62.3919C134.605 64.533 132.887 66.2746 130.775 66.2746C129.246 66.2746 127.905 65.3712 127.292 63.9895C128.405 63.5141 129.188 62.3974 129.188 61.098C129.188 59.3682 127.801 57.9613 126.094 57.9613C124.388 57.9613 123 59.3682 123 61.098C123 62.6348 124.098 63.9115 125.539 64.178C126.298 66.4672 128.38 68 130.775 68C133.825 68 136.306 65.4843 136.306 62.3919V56.8115C139.611 56.2577 141.661 54.0283 142.498 51.8848ZM136.306 27.8822C136.306 26.693 137.261 25.7254 138.434 25.7254C139.608 25.7254 140.562 26.693 140.562 27.8822V30.902C140.562 33.351 138.98 35.3119 136.306 37.4435V27.8822ZM124.702 61.098C124.702 60.32 125.327 59.6867 126.094 59.6867C126.862 59.6867 127.486 60.32 127.486 61.098C127.486 61.8761 126.862 62.5094 126.094 62.5094C125.327 62.5094 124.702 61.8761 124.702 61.098ZM134.604 43.3522C132.332 44.1742 130.627 46.2762 130.381 48.7944C130.297 49.6578 130.378 50.5104 130.623 51.3289C130.759 51.7845 131.232 52.0427 131.684 51.9045C132.134 51.7663 132.388 51.2845 132.251 50.8288C132.072 50.2285 132.013 49.6015 132.076 48.9642C132.231 47.3682 133.237 45.9696 134.604 45.2415V55.2121C134.113 55.2081 133.592 55.1632 133.042 55.0709C129.693 54.5051 128.716 52.1597 128.43 50.812C127.809 47.8796 129.172 44.5252 131.672 42.8358C132.702 42.1403 133.684 41.4768 134.604 40.8316V43.3522ZM136.306 55.0462V44.7251C136.365 44.7202 136.425 44.7157 136.484 44.7123C138.027 44.6259 139.505 45.3224 140.445 46.5596C141.382 47.7952 141.563 49.5922 140.916 51.2494C140.287 52.8583 138.766 54.5244 136.306 55.0462Z" fill="white"/>
|
||||
<circle cx="148" cy="74" r="9" fill="#076ADF"/>
|
||||
<path d="M148.369 79.1682C147.52 79.1682 146.768 78.9676 146.115 78.5662C145.462 78.1556 144.953 77.5769 144.589 76.8302C144.225 76.0742 144.043 75.1782 144.043 74.1422C144.043 73.1436 144.225 72.2616 144.589 71.4962C144.962 70.7216 145.485 70.1196 146.157 69.6902C146.838 69.2516 147.632 69.0322 148.537 69.0322C149.004 69.0322 149.428 69.0789 149.811 69.1722C150.194 69.2562 150.553 69.3776 150.889 69.5362L150.483 70.6562C150.194 70.5162 149.895 70.4042 149.587 70.3202C149.288 70.2362 148.934 70.1942 148.523 70.1942C147.926 70.1942 147.389 70.3482 146.913 70.6562C146.446 70.9642 146.078 71.4076 145.807 71.9862C145.536 72.5649 145.401 73.2649 145.401 74.0862C145.401 74.8702 145.532 75.5562 145.793 76.1442C146.064 76.7322 146.432 77.1896 146.899 77.5162C147.375 77.8429 147.916 78.0062 148.523 78.0062C148.98 78.0062 149.377 77.9502 149.713 77.8382C150.049 77.7262 150.376 77.5816 150.693 77.4042L151.099 78.5102C150.754 78.6969 150.357 78.8556 149.909 78.9862C149.47 79.1076 148.957 79.1682 148.369 79.1682Z" fill="#1D1D26"/>
|
||||
<circle cx="173" cy="69" r="9" fill="#DF5407"/>
|
||||
<path d="M172.064 74.1119C171.532 74.1119 171.066 74.0979 170.664 74.0699C170.272 74.0419 169.88 74.0092 169.488 73.9719V64.2279C169.927 64.1812 170.356 64.1486 170.776 64.1299C171.196 64.1019 171.677 64.0879 172.218 64.0879C173.058 64.0879 173.782 64.2186 174.388 64.4799C175.004 64.7412 175.508 65.1006 175.9 65.5579C176.302 66.0152 176.596 66.5472 176.782 67.1539C176.978 67.7512 177.076 68.3952 177.076 69.0859C177.076 69.7672 176.978 70.4112 176.782 71.0179C176.586 71.6246 176.283 72.1612 175.872 72.6279C175.471 73.0852 174.953 73.4492 174.318 73.7199C173.693 73.9812 172.942 74.1119 172.064 74.1119ZM172.106 72.9499C172.946 72.9499 173.632 72.7866 174.164 72.4599C174.696 72.1332 175.088 71.6806 175.34 71.1019C175.592 70.5139 175.718 69.8419 175.718 69.0859C175.718 68.4139 175.592 67.7839 175.34 67.1959C175.088 66.6079 174.701 66.1366 174.178 65.7819C173.656 65.4179 172.988 65.2359 172.176 65.2359C171.906 65.2359 171.658 65.2452 171.434 65.2639C171.21 65.2732 171.005 65.2872 170.818 65.3059V72.8799C171.014 72.9079 171.22 72.9266 171.434 72.9359C171.649 72.9452 171.873 72.9499 172.106 72.9499Z" fill="#1D1D26"/>
|
||||
<circle cx="198" cy="64" r="9" fill="#C050F5"/>
|
||||
<path d="M195.377 69.0002V59.2002H201.257V60.3482H196.707V63.3302H200.627V64.4502H196.707V67.8522H201.257V69.0002H195.377Z" fill="#1D1D26"/>
|
||||
<circle cx="223" cy="57" r="9" fill="#1AA975"/>
|
||||
<path d="M220.514 62.0002V52.2002H226.324V53.3482H221.844V56.3442H225.582V57.4362H221.844V62.0002H220.514Z" fill="#1D1D26"/>
|
||||
<path d="M208.388 18.7379L208.07 18.5579C208.222 18.2139 208.35 17.8359 208.454 17.4239C208.558 17.0119 208.61 16.5639 208.61 16.0799C208.61 15.5919 208.558 15.1419 208.454 14.7299C208.35 14.3139 208.222 13.9379 208.07 13.6019L208.388 13.4219C208.636 13.8419 208.83 14.2659 208.97 14.6939C209.11 15.1179 209.18 15.5799 209.18 16.0799C209.18 16.5439 209.11 16.9939 208.97 17.4299C208.83 17.8619 208.636 18.2979 208.388 18.7379Z" fill="white"/>
|
||||
<path d="M205.154 18.0716C204.894 18.0716 204.658 18.0056 204.446 17.8736C204.234 17.7416 204.064 17.5556 203.936 17.3156C203.812 17.0716 203.75 16.7856 203.75 16.4576C203.75 16.1456 203.812 15.8656 203.936 15.6176C204.064 15.3696 204.238 15.1736 204.458 15.0296C204.682 14.8816 204.938 14.8076 205.226 14.8076C205.406 14.8076 205.568 14.8396 205.712 14.9036C205.86 14.9636 205.988 15.0396 206.096 15.1316V14.8796H206.588V17.2436C206.588 17.3956 206.624 17.4956 206.696 17.5436C206.772 17.5876 206.854 17.6096 206.942 17.6096L206.828 18.0296C206.444 18.0296 206.212 17.8736 206.132 17.5616C206.04 17.6896 205.914 17.8076 205.754 17.9156C205.598 18.0196 205.398 18.0716 205.154 18.0716ZM205.274 17.5916C205.426 17.5916 205.57 17.5556 205.706 17.4836C205.842 17.4076 205.956 17.3136 206.048 17.2016V15.5276C205.94 15.4516 205.82 15.3916 205.688 15.3476C205.56 15.2996 205.424 15.2756 205.28 15.2756C205.088 15.2756 204.918 15.3256 204.77 15.4256C204.626 15.5216 204.512 15.6576 204.428 15.8336C204.344 16.0056 204.302 16.2076 204.302 16.4396C204.302 16.6636 204.344 16.8636 204.428 17.0396C204.512 17.2116 204.628 17.3476 204.776 17.4476C204.924 17.5436 205.09 17.5916 205.274 17.5916Z" fill="white"/>
|
||||
<path d="M219.818 18.7379L219.5 18.5579C219.652 18.2139 219.78 17.8359 219.884 17.4239C219.988 17.0119 220.04 16.5639 220.04 16.0799C220.04 15.5919 219.988 15.1419 219.884 14.7299C219.78 14.3139 219.652 13.9379 219.5 13.6019L219.818 13.4219C220.066 13.8419 220.26 14.2659 220.4 14.6939C220.54 15.1179 220.61 15.5799 220.61 16.0799C220.61 16.5439 220.54 16.9939 220.4 17.4299C220.26 17.8619 220.066 18.2979 219.818 18.7379Z" fill="white"/>
|
||||
<path d="M216.933 18.0716C216.753 18.0716 216.583 18.0396 216.423 17.9756C216.267 17.9076 216.137 17.8296 216.033 17.7416V17.9996H215.529V13.5596H216.069V15.2036C216.149 15.1116 216.265 15.0236 216.417 14.9396C216.573 14.8516 216.757 14.8076 216.969 14.8076C217.209 14.8076 217.433 14.8716 217.641 14.9996C217.853 15.1236 218.023 15.3056 218.151 15.5456C218.279 15.7816 218.343 16.0696 218.343 16.4096C218.343 16.6576 218.303 16.8836 218.223 17.0876C218.143 17.2916 218.035 17.4676 217.899 17.6156C217.767 17.7596 217.617 17.8716 217.449 17.9516C217.281 18.0316 217.109 18.0716 216.933 18.0716ZM216.789 17.5916C216.985 17.5916 217.157 17.5436 217.305 17.4476C217.457 17.3516 217.575 17.2156 217.659 17.0396C217.747 16.8636 217.791 16.6596 217.791 16.4276C217.791 16.1876 217.747 15.9816 217.659 15.8096C217.575 15.6376 217.461 15.5056 217.317 15.4136C217.177 15.3216 217.021 15.2756 216.849 15.2756C216.677 15.2756 216.521 15.3196 216.381 15.4076C216.245 15.4916 216.141 15.5836 216.069 15.6836V17.3516C216.161 17.4236 216.269 17.4816 216.393 17.5256C216.517 17.5696 216.649 17.5916 216.789 17.5916Z" fill="white"/>
|
||||
<path d="M230.451 18.7379L230.133 18.5579C230.285 18.2139 230.413 17.8359 230.517 17.4239C230.621 17.0119 230.673 16.5639 230.673 16.0799C230.673 15.5919 230.621 15.1419 230.517 14.7299C230.413 14.3139 230.285 13.9379 230.133 13.6019L230.451 13.4219C230.699 13.8419 230.893 14.2659 231.033 14.6939C231.173 15.1179 231.243 15.5799 231.243 16.0799C231.243 16.5439 231.173 16.9939 231.033 17.4299C230.893 17.8619 230.699 18.2979 230.451 18.7379Z" fill="white"/>
|
||||
<path d="M228.156 18.0716C227.86 18.0716 227.6 18.0036 227.376 17.8676C227.156 17.7276 226.986 17.5356 226.866 17.2916C226.746 17.0436 226.686 16.7596 226.686 16.4396C226.686 16.1396 226.746 15.8656 226.866 15.6176C226.99 15.3696 227.166 15.1736 227.394 15.0296C227.622 14.8816 227.89 14.8076 228.198 14.8076C228.374 14.8076 228.528 14.8236 228.66 14.8556C228.796 14.8876 228.926 14.9336 229.05 14.9936L228.888 15.4496C228.776 15.3936 228.668 15.3536 228.564 15.3296C228.464 15.3016 228.352 15.2876 228.228 15.2876C227.948 15.2876 227.712 15.3896 227.52 15.5936C227.332 15.7936 227.238 16.0716 227.238 16.4276C227.238 16.6436 227.278 16.8396 227.358 17.0156C227.438 17.1916 227.548 17.3316 227.688 17.4356C227.832 17.5396 228 17.5916 228.192 17.5916C228.344 17.5916 228.474 17.5756 228.582 17.5436C228.69 17.5076 228.806 17.4576 228.93 17.3936L229.098 17.8496C228.974 17.9176 228.834 17.9716 228.678 18.0116C228.526 18.0516 228.352 18.0716 228.156 18.0716Z" fill="white"/>
|
||||
<path d="M242.377 18.7379L242.059 18.5579C242.211 18.2139 242.339 17.8359 242.443 17.4239C242.547 17.0119 242.599 16.5639 242.599 16.0799C242.599 15.5919 242.547 15.1419 242.443 14.7299C242.339 14.3139 242.211 13.9379 242.059 13.6019L242.377 13.4219C242.625 13.8419 242.819 14.2659 242.959 14.6939C243.099 15.1179 243.169 15.5799 243.169 16.0799C243.169 16.5439 243.099 16.9939 242.959 17.4299C242.819 17.8619 242.625 18.2979 242.377 18.7379Z" fill="white"/>
|
||||
<path d="M239.154 18.0716C238.898 18.0716 238.664 18.0056 238.452 17.8736C238.24 17.7416 238.072 17.5556 237.948 17.3156C237.824 17.0716 237.762 16.7856 237.762 16.4576C237.762 16.1416 237.824 15.8596 237.948 15.6116C238.076 15.3636 238.244 15.1676 238.452 15.0236C238.664 14.8796 238.896 14.8076 239.148 14.8076C239.356 14.8076 239.534 14.8496 239.682 14.9336C239.834 15.0176 239.952 15.1036 240.036 15.1916V13.5596H240.576V17.2436C240.576 17.3956 240.612 17.4956 240.684 17.5436C240.76 17.5876 240.842 17.6096 240.93 17.6096L240.816 18.0296C240.436 18.0296 240.204 17.8776 240.12 17.5736C240.032 17.6976 239.908 17.8116 239.748 17.9156C239.592 18.0196 239.394 18.0716 239.154 18.0716ZM239.274 17.5916C239.422 17.5916 239.562 17.5576 239.694 17.4896C239.83 17.4176 239.944 17.3256 240.036 17.2136V15.6656C239.96 15.5696 239.854 15.4816 239.718 15.4016C239.582 15.3176 239.432 15.2756 239.268 15.2756C239.076 15.2756 238.908 15.3276 238.764 15.4316C238.62 15.5356 238.508 15.6756 238.428 15.8516C238.352 16.0236 238.314 16.2196 238.314 16.4396C238.314 16.6596 238.356 16.8576 238.44 17.0336C238.524 17.2056 238.638 17.3416 238.782 17.4416C238.93 17.5416 239.094 17.5916 239.274 17.5916Z" fill="white"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_1654_6565" x1="84.8704" y1="63.7442" x2="91.7208" y2="70.4843" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01AD6C"/>
|
||||
<stop offset="1" stop-color="#1FF073"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1654_6565" x1="84.8704" y1="63.7442" x2="91.7208" y2="70.4843" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01AD6C"/>
|
||||
<stop offset="1" stop-color="#1FF073"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1654_6565" x1="66.1929" y1="70.0661" x2="57.0143" y2="67.8573" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01AD6C"/>
|
||||
<stop offset="1" stop-color="#1FF073"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1654_6565" x1="78.4654" y1="44.9184" x2="71.7796" y2="70.4462" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1FF073"/>
|
||||
<stop offset="1" stop-color="#04795D"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_1654_6565" x1="65.2639" y1="57.395" x2="66.7145" y2="61.6894" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#20AD78"/>
|
||||
<stop offset="0.929244" stop-color="#1FF073"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_1654_6565" x1="79.1342" y1="70.1508" x2="77.0569" y2="82.1281" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#06805E"/>
|
||||
<stop offset="1" stop-color="#1FF073"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 20 KiB |
10
newIDE/app/public/res/questionnaire/target-app-store.svg
Normal file
After Width: | Height: | Size: 82 KiB |
40
newIDE/app/public/res/questionnaire/target-client.svg
Normal file
@@ -0,0 +1,40 @@
|
||||
<svg width="292" height="103" viewBox="0 0 292 103" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1677_8144)">
|
||||
<rect width="292" height="102.768" fill="#1D1D26"/>
|
||||
<path d="M97.4762 77.3293L54.4817 86.947C54.4624 86.947 54.4237 86.9668 54.4044 86.9668C51.6232 87.5459 48.8995 85.7889 48.3012 83.0067C48.2818 82.9879 48.2818 82.9879 48.2818 82.969L39.5322 41.4802L44.0907 33.3488C44.8438 32.0361 46.1184 31.0892 47.625 30.7997L57.9005 28.8107L69.0257 26.6472L82.1786 24.0971C83.6272 23.8075 85.1532 24.1744 86.3122 25.0826L92.6475 29.9499L101.416 71.1869C101.996 73.9681 100.257 76.7106 97.4762 77.3293Z" fill="#FA990E"/>
|
||||
<path d="M97.4699 77.3346L54.4731 86.9423C54.4556 86.9423 54.4206 86.9594 54.403 86.9594C51.6204 87.537 48.8904 85.7871 48.2957 83.0049C48.2782 82.9869 48.2782 82.9869 48.2782 82.9698L39.5283 41.4782L92.6396 29.9453L101.407 71.1926C102.002 73.9748 100.252 76.7048 97.4699 77.3346Z" fill="#FBAD3E"/>
|
||||
<path d="M59.0039 37.3398L71.5164 34.4494L82.1955 80.678L69.683 83.5684L59.0039 37.3398Z" fill="#B53016"/>
|
||||
<path d="M56.1088 68.3465L-2.49951 34.5005C-4.16913 33.5534 -6.26665 34.5968 -6.51863 36.4997L-9.30553 57.5456C-9.46858 58.7769 -8.77275 59.9612 -7.61777 60.4182L30.5444 80.2931C34.9982 82.055 39.7448 82.9598 44.5345 82.9598H51.0684L56.1088 68.3465Z" fill="#51504F"/>
|
||||
<path d="M197.448 41.6385L191.838 57.1999C191.222 58.9095 189.331 59.8019 187.63 59.1861L158.166 48.5156C156.465 47.8998 155.58 46.0018 156.196 44.2922L161.806 28.7308C162.428 27.0042 164.313 26.1288 166.014 26.7446L195.478 37.4151C197.179 38.0309 198.07 39.9119 197.448 41.6385Z" fill="#617F4D"/>
|
||||
<path d="M193.966 43.3162L190.231 53.677C188.753 53.1418 187.117 53.9148 186.582 55.4L161.387 46.2758C161.922 44.7907 161.157 43.1482 159.68 42.6131L163.415 32.2523C164.892 32.7874 166.528 32.0154 167.064 30.5293L192.258 39.6534C191.722 41.1395 192.488 42.781 193.966 43.3162Z" fill="#3D5E2A"/>
|
||||
<path d="M168.017 39.2093C168.194 38.331 167.628 37.4764 166.753 37.3006C165.879 37.1248 165.027 37.6943 164.85 38.5727C164.673 39.451 165.239 40.3056 166.114 40.4814C166.988 40.6572 167.84 40.0877 168.017 39.2093Z" fill="#255299"/>
|
||||
<path d="M189.528 47.0091C189.704 46.1308 189.139 45.2762 188.264 45.1004C187.389 44.9246 186.537 45.4941 186.361 46.3725C186.184 47.2508 186.75 48.1054 187.625 48.2812C188.499 48.457 189.351 47.8875 189.528 47.0091Z" fill="#255299"/>
|
||||
<path d="M182.087 44.8132C183.228 41.5815 181.793 38.1282 178.882 37.1003C175.971 36.0723 172.686 37.8589 171.545 41.0907C170.404 44.3225 171.838 47.7757 174.749 48.8037C177.66 49.8316 180.945 48.045 182.087 44.8132Z" fill="#8A9BEA"/>
|
||||
<path d="M178.266 44.4435C178.254 43.6405 177.696 42.8912 176.945 42.624C176.453 42.4585 176.089 41.9798 176.062 41.4565C176.015 40.9324 176.318 40.3934 176.802 40.138C177.282 39.8777 177.934 39.9207 178.394 40.2932C178.866 40.6499 179.11 41.3206 178.956 41.9686C179.267 41.3758 179.147 40.5535 178.635 40.0295C178.51 39.9013 178.365 39.7926 178.207 39.7051C178.255 39.6731 178.298 39.6394 178.336 39.6041C178.423 39.5174 178.484 39.4209 178.523 39.3161C178.561 39.2115 178.576 39.0981 178.564 38.9751C178.547 38.8508 178.514 38.7201 178.409 38.5635C178.229 38.6168 178.12 38.696 178.028 38.7812C177.94 38.8681 177.879 38.9646 177.842 39.0696C177.805 39.1747 177.79 39.288 177.802 39.4109C177.808 39.4563 177.818 39.5032 177.831 39.5512C177.78 39.5359 177.73 39.518 177.678 39.5068C177.31 39.4302 176.917 39.4762 176.564 39.6237C175.844 39.9123 175.352 40.6904 175.377 41.4886C175.391 42.2914 175.947 43.0416 176.699 43.3081C177.192 43.4727 177.555 43.9522 177.583 44.4756C177.63 44.9995 177.327 45.5397 176.843 45.795C176.362 46.0553 175.71 46.0124 175.249 45.6395C174.778 45.2824 174.534 44.6113 174.688 43.9635C174.378 44.5564 174.498 45.3782 175.01 45.9019C175.133 46.0319 175.277 46.1407 175.435 46.2275C175.388 46.259 175.345 46.2924 175.308 46.3275C175.22 46.4144 175.159 46.5107 175.122 46.6159C175.084 46.721 175.07 46.8342 175.082 46.9572C175.098 47.0818 175.131 47.2122 175.235 47.3685C175.415 47.3149 175.523 47.2357 175.615 47.1504C175.703 47.0635 175.764 46.9672 175.802 46.8624C175.841 46.7576 175.855 46.6444 175.843 46.5214C175.837 46.4754 175.827 46.4281 175.814 46.3795C176.222 46.4984 176.675 46.4875 177.08 46.3074C177.8 46.0189 178.292 45.2415 178.266 44.4435Z" fill="white"/>
|
||||
<path d="M167.637 39.4027C167.814 38.5243 167.248 37.6698 166.373 37.494C165.499 37.3182 164.647 37.8877 164.47 38.766C164.294 39.6444 164.859 40.499 165.734 40.6748C166.608 40.8506 167.461 40.281 167.637 39.4027Z" fill="#8A9BEA"/>
|
||||
<path d="M189.151 47.2025C189.327 46.3241 188.762 45.4696 187.887 45.2938C187.012 45.118 186.16 45.6875 185.984 46.5658C185.807 47.4442 186.373 48.2988 187.248 48.4746C188.122 48.6504 188.974 48.0809 189.151 47.2025Z" fill="#8A9BEA"/>
|
||||
<path d="M200.292 42.0747L191.835 56.2252C190.906 57.7797 188.879 58.29 187.325 57.361L160.389 41.2644C158.835 40.3354 158.324 38.3083 159.253 36.7538L167.709 22.6033C168.647 21.0333 170.665 20.5385 172.22 21.4675L199.155 37.5641C200.71 38.4931 201.23 40.5047 200.292 42.0747Z" fill="#AEC46E"/>
|
||||
<path d="M196.552 43.0487L190.922 52.4701C189.571 51.6628 187.817 52.1052 187.01 53.4557L163.978 39.6918C164.785 38.3413 164.344 36.5873 162.993 35.78L168.623 26.3586C169.974 27.166 171.727 26.7244 172.535 25.373L195.567 39.1369C194.759 40.4882 195.201 42.2414 196.552 43.0487Z" fill="#617F4D"/>
|
||||
<path d="M190.017 46.7925C190.91 46.7925 191.634 46.0686 191.634 45.1756C191.634 44.2825 190.91 43.5586 190.017 43.5586C189.124 43.5586 188.4 44.2825 188.4 45.1756C188.4 46.0686 189.124 46.7925 190.017 46.7925Z" fill="#255299"/>
|
||||
<path d="M184.567 42.3087C186.319 39.3782 185.59 35.7172 182.938 34.1316C180.286 32.546 176.716 33.6363 174.964 36.5668C173.211 39.4974 173.941 43.1584 176.593 44.744C179.245 46.3296 182.815 45.2393 184.567 42.3087Z" fill="white"/>
|
||||
<path d="M180.912 41.1374C181.052 40.3492 180.646 39.5091 179.959 39.1035C179.506 38.847 179.239 38.3088 179.312 37.7915C179.364 37.2696 179.764 36.8004 180.288 36.6434C180.809 36.4808 181.441 36.648 181.823 37.1008C182.219 37.5404 182.332 38.2435 182.059 38.8481C182.476 38.3277 182.513 37.5 182.109 36.8889C182.011 36.7395 181.889 36.6053 181.751 36.4895C181.804 36.4673 181.852 36.4425 181.896 36.4153C181.999 36.3473 182.077 36.2646 182.134 36.1694C182.192 36.0743 182.228 35.9662 182.239 35.8435C182.247 35.7188 182.239 35.5845 182.165 35.4111C181.978 35.4286 181.856 35.4852 181.75 35.551C181.647 35.6192 181.569 35.7019 181.512 35.7975C181.456 35.8931 181.42 36.0013 181.408 36.1238C181.406 36.1694 181.407 36.2172 181.41 36.2667C181.363 36.242 181.317 36.2148 181.268 36.1938C180.921 36.0483 180.527 36.0179 180.151 36.0944C179.389 36.2385 178.758 36.9055 178.632 37.6914C178.494 38.4797 178.899 39.3204 179.587 39.7256C180.04 39.9813 180.306 40.5201 180.235 41.0377C180.182 41.5594 179.782 42.0298 179.258 42.1866C178.737 42.3491 178.104 42.182 177.722 41.7286C177.326 41.2887 177.213 40.5852 177.487 39.9809C177.07 40.5015 177.033 41.3289 177.437 41.9395C177.533 42.0903 177.654 42.2244 177.793 42.3397C177.74 42.3614 177.693 42.386 177.649 42.4131C177.546 42.4813 177.468 42.5638 177.411 42.6595C177.355 42.7552 177.319 42.8632 177.308 42.9859C177.3 43.111 177.308 43.2449 177.381 43.4177C177.567 43.3998 177.689 43.3431 177.795 43.2774C177.898 43.2092 177.976 43.1266 178.034 43.0314C178.091 42.9362 178.127 42.8282 178.138 42.7056C178.141 42.6595 178.14 42.6112 178.136 42.5611C178.515 42.7559 178.963 42.8321 179.394 42.7336C180.156 42.5894 180.787 41.9232 180.912 41.1374Z" fill="#617F4D"/>
|
||||
<path d="M169.938 35.1539C170.831 35.1539 171.555 34.4299 171.555 33.5369C171.555 32.6439 170.831 31.9199 169.938 31.9199C169.045 31.9199 168.321 32.6439 168.321 33.5369C168.321 34.4299 169.045 35.1539 169.938 35.1539Z" fill="white"/>
|
||||
<path d="M189.608 46.9058C190.501 46.9058 191.225 46.1819 191.225 45.2888C191.225 44.3958 190.501 43.6719 189.608 43.6719C188.715 43.6719 187.991 44.3958 187.991 45.2888C187.991 46.1819 188.715 46.9058 189.608 46.9058Z" fill="white"/>
|
||||
<path d="M296.607 32.6446C296.663 33.1797 296.312 33.6787 295.795 33.8267C240 56 221.099 53.4039 221.099 53.4039V38.8603C226.218 38.8603 290.048 14.22 293.319 12.15C294.021 11.707 294.945 12.169 295 13L296.607 32.6446Z" fill="#4269C4"/>
|
||||
<path d="M216.035 40.4482L215.277 49.965L205.113 51.111C201.879 51.4809 198.609 50.889 195.689 49.448L191.198 47.2301C189.79 46.5345 188.293 46.0341 186.75 45.7427L182.494 44.939C181.012 44.6592 180.339 42.9032 181.264 41.7122C182.523 40.0935 184.698 39.2857 186.837 39.9492L187.946 40.2821C192.12 41.4597 194.846 41.5509 196.626 41.1775C198.798 40.7217 199.301 37.8476 197.419 36.6689L191.919 33.2223C193.785 31.6893 196.447 31.6153 198.387 33.0373L207.7 39.8012C208.791 40.5961 210.121 40.9652 211.452 40.8551L216.035 40.4482Z" fill="#FFCECF"/>
|
||||
<path d="M223.994 55.2739C224.046 56.0438 223.398 56.6744 222.629 56.6043L217.029 56.0797C216.451 56.0267 215.979 55.5721 215.909 54.9945L213.914 39.1568C213.844 38.5621 214.211 37.9844 214.789 37.8093L221.176 35.8491C221.946 35.6047 222.733 36.1473 222.786 36.9522L223.994 55.2739Z" fill="#8A9BEA"/>
|
||||
<path d="M218.564 53.6884C219.433 53.6884 220.138 52.9841 220.138 52.1152C220.138 51.2463 219.433 50.542 218.564 50.542C217.696 50.542 216.991 51.2463 216.991 52.1152C216.991 52.9841 217.696 53.6884 218.564 53.6884Z" fill="white"/>
|
||||
<path d="M90.4832 78.8934C90.1937 84.1861 86.8909 83.8579 86.5434 83.8579H86.5236C86.4081 84.1276 86.2921 84.3794 86.1567 84.5916C85.0948 86.4646 83.8391 86.5617 83.5877 86.5617C83.5689 86.5617 83.5495 86.5617 83.5495 86.5617C83.4529 86.8126 83.2982 87.0446 83.1049 87.2568C81.8303 88.6667 78.9137 89.0921 78.9137 89.0921C78.9137 89.1109 78.8944 89.1109 78.8944 89.1307C78.7402 89.4014 78.5469 89.6325 78.3347 89.8447C78.3149 89.8447 78.3149 89.8447 78.3149 89.8447C77.6391 90.5595 76.6541 90.9651 75.669 90.9651C75.1088 90.9651 74.5486 90.8302 74.0275 90.5595L69.1602 88.0679C66.3979 86.6579 63.5394 85.48 60.5842 84.5143L55.9102 82.9695L59.2709 71.1487L62.4388 72.5388C64.1962 73.2923 66.1857 73.2735 67.9045 72.3841L74.9348 68.7919C76.4994 68.0006 78.2762 67.8846 79.9181 68.4448L88.8031 71.4957C89.4981 71.7475 89.9037 72.4237 89.9037 73.0801C89.9037 73.2923 89.8461 73.563 89.7495 73.7752C89.1119 75.1078 87.7793 75.9 86.3501 75.9C85.9445 75.9 85.5579 75.8415 85.1523 75.7067C82.97 74.9918 80.5943 75.436 78.7789 76.8271V76.8469L90.4832 78.8934Z" fill="#FFCECF"/>
|
||||
<path d="M64.5535 71.245L58.8836 86.4871C58.5157 87.4151 57.5711 87.8876 56.626 87.6073L52.0935 86.3299C51.1134 86.0676 50.5537 85.1225 50.7985 84.1424L54.4736 68.3227C54.7535 67.3075 55.7861 66.6949 56.8008 66.9922L63.311 68.7952C64.3432 69.0925 64.9034 70.1948 64.5535 71.245Z" fill="#3A3A3A"/>
|
||||
<path d="M55.9094 84.3539C56.6797 84.3539 57.3041 83.7295 57.3041 82.9592C57.3041 82.1889 56.6797 81.5645 55.9094 81.5645C55.1391 81.5645 54.5146 82.1889 54.5146 82.9592C54.5146 83.7295 55.1391 84.3539 55.9094 84.3539Z" fill="white"/>
|
||||
<path d="M86.5233 83.859C86.4077 84.1288 86.2917 84.3806 86.1564 84.5928C85.6349 84.4381 85.1133 84.2259 84.6116 83.9939C83.3559 83.3564 82.1775 82.468 81.3857 81.29C82.0426 81.5796 82.6217 81.9276 83.2399 82.2171L85.036 83.1253L86.5233 83.859Z" fill="#FEA9AD"/>
|
||||
<path d="M83.5871 86.5622C83.5683 86.5622 83.5489 86.5622 83.5489 86.5622C83.4523 86.813 83.2976 87.045 83.1043 87.2572C82.5832 87.1026 82.1003 86.9102 81.6175 86.6782C80.3617 86.0406 79.2031 85.1711 78.3916 83.9932C79.0485 84.2638 79.6473 84.6109 80.2457 84.9202L82.0423 85.8086L83.5871 86.5622Z" fill="#FEA9AD"/>
|
||||
<path d="M78.8935 89.1318C78.7393 89.4025 78.546 89.6335 78.3338 89.8457C78.314 89.8457 78.314 89.8457 78.314 89.8457C77.9858 89.7307 77.6382 89.576 77.3294 89.4213C76.0736 88.8027 74.915 87.9143 74.1035 86.7363C74.7604 87.0259 75.3592 87.3739 75.9581 87.6634L77.7542 88.5716L78.8935 89.1318Z" fill="#FEA9AD"/>
|
||||
<path d="M71.5545 34.4507L59.0387 37.3478L57.8994 28.8109L69.0247 26.6475L71.5545 34.4507Z" fill="#912010"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1677_8144">
|
||||
<rect width="292" height="102.768" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 12 KiB |
14
newIDE/app/public/res/questionnaire/target-console.svg
Normal file
@@ -0,0 +1,14 @@
|
||||
<svg width="292" height="103" viewBox="0 0 292 103" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="292" height="102.768" fill="#1D1D26"/>
|
||||
<path d="M125.368 83.9341H108.917V13.3833L125.368 12V83.9341Z" fill="#526877"/>
|
||||
<path d="M128.134 89.467H106L108.767 83.9336H125.367L128.134 89.467Z" fill="#425969"/>
|
||||
<path d="M145.011 78.9609C145.228 75.7972 144.853 76.7988 144.364 73.6655C144.155 72.3347 144.271 68.8072 144.802 67.3339C145.973 64.0913 149.193 62.0716 152.639 62.1201C153.577 62.1325 154.475 62.2515 155.309 62.5019C158.223 63.3734 161.236 63.8617 164.278 63.8617C165.144 63.8617 166.006 63.8147 167.016 63.7414V20.3001L125.366 12V83.9341H144.669L145.011 78.9609Z" fill="#AFBDC7"/>
|
||||
<path d="M155.712 79.783C155.712 79.7345 154.593 82.0918 153.722 83.933H165.632V79.783H155.712Z" fill="#38454F"/>
|
||||
<path d="M166.868 83.9336H144.67H140.774H125.367L128.134 89.467H135.2H149.383H169.634L166.868 83.9336Z" fill="#677A88"/>
|
||||
<path d="M167.017 39.667H125.517V42.4337H167.017V39.667Z" fill="#526877"/>
|
||||
<path d="M125.517 39.6666H118.451V12.582L115.684 12.8144V39.6666H108.917V42.4333H115.684V83.9337H118.451V42.4333H125.517V39.6666Z" fill="#AFBDC7"/>
|
||||
<path d="M184.424 66.733C183.169 63.2677 179.729 61.1083 176.044 61.1581C175.425 61.1664 174.696 61.3268 173.974 61.5523C170.842 62.5234 167.582 63.0228 164.303 63.0228C161.047 63.0228 157.822 62.4999 154.703 61.5675C153.81 61.3006 152.849 61.1733 151.845 61.1595C148.155 61.1083 144.709 63.2691 143.456 66.7399C142.886 68.3155 142.763 72.092 142.987 73.5155C143.513 76.8687 143.913 75.798 143.68 79.1831L143.258 85.3279C143.258 88.1444 145.542 90.4283 148.359 90.4283C150.611 90.4283 152.597 88.9509 153.245 86.7929C153.245 86.7929 156.455 79.9799 156.455 80.0643H171.483L174.637 86.7929C175.284 88.9509 177.269 90.4283 179.523 90.4283C182.339 90.4283 184.623 88.1444 184.623 85.3279C184.623 85.3279 184.416 82.3164 184.201 79.1845C183.969 75.7994 184.369 76.8687 184.894 73.5155C185.12 72.0893 184.995 68.3114 184.424 66.733Z" fill="#E5EAEE"/>
|
||||
<path d="M175.167 75.6341C177.459 75.6341 179.317 73.776 179.317 71.484C179.317 69.192 177.459 67.334 175.167 67.334C172.875 67.334 171.017 69.192 171.017 71.484C171.017 73.776 172.875 75.6341 175.167 75.6341Z" fill="#AFBDC7"/>
|
||||
<path d="M152.869 75.6341C155.161 75.6341 157.019 73.776 157.019 71.484C157.019 69.192 155.161 67.334 152.869 67.334C150.577 67.334 148.719 69.192 148.719 71.484C148.719 73.776 150.577 75.6341 152.869 75.6341Z" fill="#AFBDC7"/>
|
||||
<path d="M166.868 67.334C166.103 67.334 165.485 67.9523 165.485 68.7173H162.718C162.718 67.9523 162.1 67.334 161.335 67.334C160.57 67.334 159.951 67.9523 159.951 68.7173V70.1007C159.951 70.8657 160.57 71.484 161.335 71.484H166.868C167.633 71.484 168.251 70.8657 168.251 70.1007V68.7173C168.251 67.9537 167.633 67.334 166.868 67.334Z" fill="#AFBDC7"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.8 KiB |
29
newIDE/app/public/res/questionnaire/target-itch.svg
Normal file
After Width: | Height: | Size: 59 KiB |
103
newIDE/app/public/res/questionnaire/target-personal.svg
Normal file
@@ -0,0 +1,103 @@
|
||||
<svg width="292" height="103" viewBox="0 0 292 103" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="292" height="102.768" fill="#1D1D26"/>
|
||||
<path d="M129.682 73.0156H110.697V81.1315H129.682V73.0156Z" fill="#7E8CAE"/>
|
||||
<path d="M114.185 73.0156H110.697V81.1315H114.185V73.0156Z" fill="#5A657E"/>
|
||||
<path d="M138.559 85.3506C138.559 85.834 138.164 86.2295 137.68 86.2295H102.699C102.216 86.2295 101.82 85.834 101.82 85.3506V81.835C101.82 81.3516 102.216 80.9561 102.699 80.9561H137.68C138.164 80.9561 138.559 81.3516 138.559 81.835V85.3506Z" fill="#4E5567"/>
|
||||
<path d="M105.308 85.3506V81.835C105.308 81.3516 105.704 80.9561 106.187 80.9561H102.699C102.216 80.9561 101.82 81.3516 101.82 81.835V85.3506C101.82 85.834 102.216 86.2295 102.699 86.2295H106.187C105.704 86.2295 105.308 85.834 105.308 85.3506Z" fill="#3B3D44"/>
|
||||
<path d="M80 71.4348C80 72.4016 80.791 73.1926 81.7578 73.1926H134.523V61.4238H80V71.4348Z" fill="#4E5567"/>
|
||||
<path d="M83.4879 71.4348V61.4238H80V71.4348C80 72.4016 80.791 73.1926 81.7578 73.1926H85.2457C84.2789 73.1926 83.4879 72.4016 83.4879 71.4348Z" fill="#3B3D44"/>
|
||||
<path d="M134.523 56.6959C134.523 56.3081 134.838 55.9927 135.226 55.9927H160.379V17.9322C160.379 16.8694 159.509 16 158.447 16H81.9322C80.8694 16 80 16.8694 80 17.9322V61.5995H134.523V56.6959Z" fill="#7E8CAE"/>
|
||||
<path d="M134.523 56.6957C134.523 56.308 134.838 55.9926 135.226 55.9926H156.514V20.7432C156.514 20.2598 156.119 19.8643 155.635 19.8643H84.7432C84.2598 19.8643 83.8643 20.2598 83.8643 20.7432V56.8559C83.8643 57.3393 84.2598 57.7348 84.7432 57.7348H134.523L134.523 56.6957Z" fill="#EEF6FF"/>
|
||||
<path d="M120.189 69.9033C121.54 69.9033 122.635 68.8085 122.635 67.458C122.635 66.1075 121.54 65.0127 120.189 65.0127C118.839 65.0127 117.744 66.1075 117.744 67.458C117.744 68.8085 118.839 69.9033 120.189 69.9033Z" fill="#7E8CAE"/>
|
||||
<path d="M153.189 42.5256C153.189 43.009 152.793 43.4045 152.31 43.4045H124.456C123.973 43.4045 123.577 43.009 123.577 42.5256V29.7432C123.577 29.2598 123.973 28.8643 124.456 28.8643H152.31C152.793 28.8643 153.189 29.2598 153.189 29.7432V42.5256Z" fill="#FFAF10"/>
|
||||
<path d="M127.065 42.5256V29.7432C127.065 29.2598 127.461 28.8643 127.944 28.8643H124.456C123.973 28.8643 123.577 29.2598 123.577 29.7432V42.5256C123.577 43.009 123.973 43.4045 124.456 43.4045H127.944C127.461 43.4045 127.065 43.009 127.065 42.5256Z" fill="#FF9518"/>
|
||||
<path d="M132.606 48.458H125.027C124.299 48.458 123.709 47.8679 123.709 47.1396C123.709 46.4114 124.299 45.8213 125.027 45.8213H132.606C133.334 45.8213 133.924 46.4114 133.924 47.1396C133.924 47.8679 133.334 48.458 132.606 48.458Z" fill="#C3DDF4"/>
|
||||
<path d="M132.606 52.4648H125.027C124.299 52.4648 123.709 51.8747 123.709 51.1465C123.709 50.4182 124.299 49.8281 125.027 49.8281H132.606C133.334 49.8281 133.924 50.4182 133.924 51.1465C133.924 51.8747 133.334 52.4648 132.606 52.4648Z" fill="#C3DDF4"/>
|
||||
<path d="M141.749 48.458H136.113C135.385 48.458 134.795 47.8679 134.795 47.1396C134.795 46.4114 135.385 45.8213 136.113 45.8213H141.749C142.477 45.8213 143.067 46.4114 143.067 47.1396C143.067 47.8679 142.477 48.458 141.749 48.458Z" fill="#C3DDF4"/>
|
||||
<path d="M141.749 52.4648H136.113C135.385 52.4648 134.795 51.8747 134.795 51.1465C134.795 50.4182 135.385 49.8281 136.113 49.8281H141.749C142.477 49.8281 143.067 50.4182 143.067 51.1465C143.067 51.8747 142.477 52.4648 141.749 52.4648Z" fill="#C3DDF4"/>
|
||||
<path d="M152.382 48.458H145.204C144.476 48.458 143.886 47.8679 143.886 47.1396C143.886 46.4114 144.476 45.8213 145.204 45.8213H152.382C153.11 45.8213 153.701 46.4114 153.701 47.1396C153.701 47.8679 153.11 48.458 152.382 48.458Z" fill="#C3DDF4"/>
|
||||
<path d="M152.382 52.4648H145.204C144.476 52.4648 143.886 51.8747 143.886 51.1465C143.886 50.4182 144.476 49.8281 145.204 49.8281H152.382C153.11 49.8281 153.701 50.4182 153.701 51.1465C153.701 51.8747 153.11 52.4648 152.382 52.4648Z" fill="#C3DDF4"/>
|
||||
<path d="M143.171 25.7752C143.171 26.2586 142.775 26.6541 142.292 26.6541H140.358C139.875 26.6541 139.479 26.2586 139.479 25.7752V23.8418C139.479 23.3584 139.875 22.9629 140.358 22.9629H142.292C142.775 22.9629 143.171 23.3584 143.171 23.8418V25.7752Z" fill="#EF8318"/>
|
||||
<path d="M148.092 25.7752C148.092 26.2586 147.696 26.6541 147.213 26.6541H145.279C144.796 26.6541 144.4 26.2586 144.4 25.7752V23.8418C144.4 23.3584 144.796 22.9629 145.279 22.9629H147.213C147.696 22.9629 148.092 23.3584 148.092 23.8418V25.7752Z" fill="#EF8318"/>
|
||||
<path d="M153.013 25.7752C153.013 26.2586 152.618 26.6541 152.135 26.6541H150.201C149.718 26.6541 149.322 26.2586 149.322 25.7752V23.8418C149.322 23.3584 149.718 22.9629 150.201 22.9629H152.135C152.618 22.9629 153.013 23.3584 153.013 23.8418V25.7752Z" fill="#EF8318"/>
|
||||
<path d="M113.556 51.4248H111.974C111.246 51.4248 110.655 50.8347 110.655 50.1064C110.655 49.3782 111.246 48.7881 111.974 48.7881H113.556C114.284 48.7881 114.874 49.3782 114.874 50.1064C114.874 50.8347 114.284 51.4248 113.556 51.4248Z" fill="#69CDFF"/>
|
||||
<path d="M107.579 51.4248H105.997C105.269 51.4248 104.679 50.8347 104.679 50.1064C104.679 49.3782 105.269 48.7881 105.997 48.7881H107.579C108.307 48.7881 108.897 49.3782 108.897 50.1064C108.897 50.8347 108.307 51.4248 107.579 51.4248Z" fill="#69CDFF"/>
|
||||
<path d="M101.603 51.4248H100.021C99.2924 51.4248 98.7021 50.8347 98.7021 50.1064C98.7021 49.3782 99.2924 48.7881 100.021 48.7881H101.603C102.331 48.7881 102.921 49.3782 102.921 50.1064C102.921 50.8347 102.331 51.4248 101.603 51.4248Z" fill="#69CDFF"/>
|
||||
<path d="M95.626 51.4248H94.0439C93.3159 51.4248 92.7256 50.8347 92.7256 50.1064C92.7256 49.3782 93.3159 48.7881 94.0439 48.7881H95.626C96.3541 48.7881 96.9443 49.3782 96.9443 50.1064C96.9443 50.8347 96.3542 51.4248 95.626 51.4248Z" fill="#69CDFF"/>
|
||||
<path d="M118.697 45.9932C117.969 45.9932 117.379 45.4031 117.379 44.6748V43.0928C117.379 42.3647 117.969 41.7744 118.697 41.7744C119.425 41.7744 120.016 42.3647 120.016 43.0928V44.6748C120.016 45.4031 119.425 45.9932 118.697 45.9932Z" fill="#69CDFF"/>
|
||||
<path d="M118.697 40.0166C117.969 40.0166 117.379 39.4265 117.379 38.6982V37.1162C117.379 36.3881 117.969 35.7979 118.697 35.7979C119.425 35.7979 120.016 36.3881 120.016 37.1162V38.6982C120.016 39.4265 119.425 40.0166 118.697 40.0166Z" fill="#69CDFF"/>
|
||||
<path d="M118.697 34.04C117.969 34.04 117.379 33.4499 117.379 32.7217V31.1396C117.379 30.4116 117.969 29.8213 118.697 29.8213C119.425 29.8213 120.016 30.4116 120.016 31.1396V32.7217C120.016 33.4499 119.425 34.04 118.697 34.04Z" fill="#69CDFF"/>
|
||||
<path d="M88.8145 45.9932C88.0864 45.9932 87.4961 45.4031 87.4961 44.6748V43.0928C87.4961 42.3647 88.0864 41.7744 88.8145 41.7744C89.5425 41.7744 90.1328 42.3647 90.1328 43.0928V44.6748C90.1328 45.4031 89.5427 45.9932 88.8145 45.9932Z" fill="#69CDFF"/>
|
||||
<path d="M88.8145 40.0166C88.0864 40.0166 87.4961 39.4265 87.4961 38.6982V37.1162C87.4961 36.3881 88.0864 35.7979 88.8145 35.7979C89.5425 35.7979 90.1328 36.3881 90.1328 37.1162V38.6982C90.1328 39.4265 89.5427 40.0166 88.8145 40.0166Z" fill="#69CDFF"/>
|
||||
<path d="M88.8145 34.04C88.0864 34.04 87.4961 33.4499 87.4961 32.7217V31.1396C87.4961 30.4116 88.0864 29.8213 88.8145 29.8213C89.5425 29.8213 90.1328 30.4116 90.1328 31.1396V32.7217C90.1328 33.4499 89.5427 34.04 88.8145 34.04Z" fill="#69CDFF"/>
|
||||
<path d="M113.556 27.5186H111.974C111.246 27.5186 110.655 26.9285 110.655 26.2002C110.655 25.4719 111.246 24.8818 111.974 24.8818H113.556C114.284 24.8818 114.874 25.4719 114.874 26.2002C114.874 26.9285 114.284 27.5186 113.556 27.5186Z" fill="#69CDFF"/>
|
||||
<path d="M107.579 27.5186H105.997C105.269 27.5186 104.679 26.9285 104.679 26.2002C104.679 25.4719 105.269 24.8818 105.997 24.8818H107.579C108.307 24.8818 108.897 25.4719 108.897 26.2002C108.897 26.9285 108.307 27.5186 107.579 27.5186Z" fill="#69CDFF"/>
|
||||
<path d="M101.603 27.5186H100.021C99.2924 27.5186 98.7021 26.9285 98.7021 26.2002C98.7021 25.4719 99.2924 24.8818 100.021 24.8818H101.603C102.331 24.8818 102.921 25.4719 102.921 26.2002C102.921 26.9285 102.331 27.5186 101.603 27.5186Z" fill="#69CDFF"/>
|
||||
<path d="M95.626 27.5186H94.0439C93.3159 27.5186 92.7256 26.9285 92.7256 26.2002C92.7256 25.4719 93.3159 24.8818 94.0439 24.8818H95.626C96.3541 24.8818 96.9443 25.4719 96.9443 26.2002C96.9443 26.9285 96.3542 27.5186 95.626 27.5186Z" fill="#69CDFF"/>
|
||||
<path d="M115.183 45.7129C115.183 46.1963 114.787 46.5918 114.304 46.5918H93.21C92.7266 46.5918 92.3311 46.1963 92.3311 45.7129V30.5957C92.3311 30.1123 92.7266 29.7168 93.21 29.7168H114.304C114.787 29.7168 115.183 30.1123 115.183 30.5957V45.7129Z" fill="#5DC1D8"/>
|
||||
<path d="M95.8191 45.7129V30.5957C95.8191 30.1123 96.2146 29.7168 96.698 29.7168H93.21C92.7266 29.7168 92.3311 30.1123 92.3311 30.5957V45.7129C92.3311 46.1963 92.7266 46.5918 93.21 46.5918H96.698C96.2146 46.5918 95.8191 46.1963 95.8191 45.7129Z" fill="#28A5A5"/>
|
||||
<path d="M121.158 27.5205C121.158 28.0039 120.763 28.3994 120.279 28.3994H116.588C116.104 28.3994 115.709 28.0039 115.709 27.5205V23.8291C115.709 23.3457 116.104 22.9502 116.588 22.9502H120.279C120.763 22.9502 121.158 23.3457 121.158 23.8291V27.5205Z" fill="#52BBEF"/>
|
||||
<path d="M91.9785 27.8721C91.9785 28.3555 91.583 28.751 91.0996 28.751H87.4082C86.9248 28.751 86.5293 28.3555 86.5293 27.8721V24.1807C86.5293 23.6973 86.9248 23.3018 87.4082 23.3018H91.0996C91.583 23.3018 91.9785 23.6973 91.9785 24.1807V27.8721Z" fill="#52BBEF"/>
|
||||
<path d="M121.158 52.1084C121.158 52.5918 120.763 52.9873 120.279 52.9873H116.588C116.104 52.9873 115.709 52.5918 115.709 52.1084V48.417C115.709 47.9336 116.104 47.5381 116.588 47.5381H120.279C120.763 47.5381 121.158 47.9336 121.158 48.417V52.1084Z" fill="#52BBEF"/>
|
||||
<path d="M91.9785 52.1084C91.9785 52.5918 91.583 52.9873 91.0996 52.9873H87.4082C86.9248 52.9873 86.5293 52.5918 86.5293 52.1084V48.417C86.5293 47.9336 86.9248 47.5381 87.4082 47.5381H91.0996C91.583 47.5381 91.9785 47.9336 91.9785 48.417V52.1084Z" fill="#52BBEF"/>
|
||||
<path d="M117.646 27.5205V23.8291C117.646 23.3457 118.042 22.9502 118.525 22.9502H116.588C116.104 22.9502 115.709 23.3457 115.709 23.8291V27.5205C115.709 28.0039 116.104 28.3994 116.588 28.3994H118.525C118.042 28.3994 117.646 28.0039 117.646 27.5205Z" fill="#1E99D6"/>
|
||||
<path d="M88.4668 27.8721V24.1807C88.4668 23.6973 88.8623 23.3018 89.3457 23.3018H87.4082C86.9248 23.3018 86.5293 23.6973 86.5293 24.1807V27.8721C86.5293 28.3555 86.9248 28.751 87.4082 28.751H89.3457C88.8623 28.751 88.4668 28.3555 88.4668 27.8721Z" fill="#1E99D6"/>
|
||||
<path d="M117.646 52.1084V48.417C117.646 47.9336 118.042 47.5381 118.525 47.5381H116.588C116.104 47.5381 115.709 47.9336 115.709 48.417V52.1084C115.709 52.5918 116.104 52.9873 116.588 52.9873H118.525C118.042 52.9873 117.646 52.5918 117.646 52.1084Z" fill="#1E99D6"/>
|
||||
<path d="M88.4668 52.1084V48.417C88.4668 47.9336 88.8623 47.5381 89.3457 47.5381H87.4082C86.9248 47.5381 86.5293 47.9336 86.5293 48.417V52.1084C86.5293 52.5918 86.9248 52.9873 87.4082 52.9873H89.3457C88.8623 52.9873 88.4668 52.5918 88.4668 52.1084Z" fill="#1E99D6"/>
|
||||
<path d="M156.545 70.721C156.518 70.6468 156.52 70.6046 156.524 70.5909C156.524 70.5909 156.535 70.5899 156.545 70.5899C156.565 70.5899 156.6 70.5939 156.653 70.6134L164.054 73.3319V56.6963C164.054 56.2129 163.658 55.8174 163.175 55.8174H135.226C134.742 55.8174 134.347 56.2129 134.347 56.6963V76.876C134.347 77.3594 134.742 77.7549 135.226 77.7549H159.128L156.545 70.721Z" fill="#5DC1D8"/>
|
||||
<path d="M137.835 76.876V56.6963C137.835 56.2129 138.23 55.8174 138.713 55.8174H135.226C134.742 55.8174 134.347 56.2129 134.347 56.6963V76.876C134.347 77.3594 134.742 77.7549 135.226 77.7549H138.713C138.23 77.7549 137.835 77.3594 137.835 76.876Z" fill="#28A5A5"/>
|
||||
<circle cx="216" cy="54" r="27" fill="#BA4383"/>
|
||||
<mask id="mask0_1677_8050" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="189" y="27" width="54" height="54">
|
||||
<circle cx="216" cy="54" r="27" fill="#FA61B3"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_1677_8050)">
|
||||
<path d="M191 78.8994C191 81.3847 192.565 83.3994 195.05 83.3994C197.535 83.3994 198.277 82.345 199.55 79.7994C200 78.8994 201.35 75.2995 201.35 75.2995C201.35 75.2995 199.627 72.6682 198.65 70.3495C197.483 67.5823 195.95 61.3496 195.95 61.3496C194.6 64.0496 191 76.4142 191 78.8994Z" fill="#16CF89"/>
|
||||
<path d="M191 78.8994C191 81.3847 192.565 83.3994 195.05 83.3994C197.535 83.3994 198.277 82.345 199.55 79.7994C200 78.8994 201.35 75.2995 201.35 75.2995C201.35 75.2995 199.627 72.6682 198.65 70.3495C197.483 67.5823 195.95 61.3496 195.95 61.3496C194.6 64.0496 191 76.4142 191 78.8994Z" fill="url(#paint0_linear_1677_8050)"/>
|
||||
<path d="M195.048 63.5996C195.048 63.5996 195.05 72.5995 200.309 77.9994C200.817 76.72 201.35 75.2995 201.35 75.2995C201.35 75.2995 199.627 72.6682 198.65 70.3495C197.483 67.5823 195.95 61.3496 195.95 61.3496C195.709 61.8302 195.398 62.6169 195.048 63.5996Z" fill="#278050"/>
|
||||
<path d="M230.599 73.0498C230.599 73.0498 228.078 75.0089 226.099 76.1998C223.834 77.5634 219.349 77.9998 219.349 77.9998C219.349 77.9998 219.137 83.3468 219.349 85.3982C219.562 87.4497 219.799 89.6996 219.799 89.6996C219.799 89.6996 218.622 91.4176 217.999 92.3996C217.129 93.7714 216.649 95.9996 216.649 95.9996L231.949 95.9996C231.949 95.9996 231.939 93.3579 231.499 91.7551C231.238 90.802 230.599 89.3971 230.599 89.3971C230.149 86.5675 229.699 85.2505 229.699 82.9497C229.699 80.6802 230.149 75.7498 230.599 73.0498Z" fill="url(#paint1_linear_1677_8050)"/>
|
||||
<path d="M230.6 73.5C230.6 73.5 227.178 78.1591 225.2 79.3499C222.934 80.7135 219.35 78 219.35 78C219.35 78 219.239 80.7819 219.257 83.1024C219.261 83.5337 219.261 83.9312 219.27 84.2999C219.27 84.2999 224.75 83.3999 230.009 78.0988C230.024 77.9538 230.039 77.8086 230.054 77.6636C230.212 76.158 230.406 74.6637 230.6 73.5Z" fill="#278050"/>
|
||||
<path d="M212.148 78.9013C212.148 78.9013 208.098 78.2445 206.298 77.1013C204.499 75.9581 202.699 74.4014 202.699 74.4014C202.699 74.4014 200.638 78.9243 199.999 83.4013C199.549 86.5512 199.999 89.7012 199.999 89.7012C199.999 89.7012 198.822 91.4191 198.199 92.4012C197.328 93.773 196.849 96.0011 196.849 96.0011L212.148 96.0011C212.148 96.0011 212.138 93.3595 211.698 91.7567C211.437 90.8036 210.798 89.3987 210.798 89.3987C209.898 87.0012 210.798 83.4013 210.798 83.4013C210.798 83.4013 211.698 79.8013 212.148 78.9013Z" fill="url(#paint2_linear_1677_8050)"/>
|
||||
<path d="M212.148 78.9013C212.148 78.9013 208.098 78.2445 206.298 77.1013C204.499 75.9581 202.699 74.4014 202.699 74.4014C202.699 74.4014 202.057 75.8105 201.378 77.8342C201.378 77.8342 201.349 78.4513 204.049 80.7013C206.748 82.9513 210.619 84.3013 210.619 84.3013C210.711 83.7494 210.798 83.4013 210.798 83.4013C210.798 83.4013 211.698 79.8013 212.148 78.9013Z" fill="#278050"/>
|
||||
<circle cx="20.6998" cy="20.6998" r="20.6998" transform="matrix(-1 -8.74228e-08 -8.74228e-08 1 236.448 42)" fill="url(#paint3_linear_1677_8050)"/>
|
||||
<rect width="13.0563" height="13.4721" rx="1.41544" transform="matrix(-0.686366 -0.727256 -0.727256 0.686366 216.648 61.3955)" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M214.45 59.0668L211.796 56.2541C211.497 56.1941 211.184 56.1621 210.86 56.1621C208.872 56.1621 207.26 57.3709 207.26 58.8621C207.26 60.3532 208.872 61.5621 210.86 61.5621C212.757 61.5621 214.311 60.4623 214.45 59.0668Z" fill="white"/>
|
||||
<circle cx="20.6998" cy="20.6998" r="20.6998" transform="matrix(-1 -8.74228e-08 -8.74228e-08 1 236.448 42)" fill="url(#paint4_linear_1677_8050)"/>
|
||||
<rect width="13.0563" height="13.4721" rx="1.41544" transform="matrix(-0.686366 -0.727256 -0.727256 0.686366 214.849 61.3955)" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M212.65 59.0668L209.996 56.2541C209.698 56.1941 209.384 56.1621 209.061 56.1621C207.072 56.1621 205.461 57.3709 205.461 58.8621C205.461 60.3532 207.072 61.5621 209.061 61.5621C210.957 61.5621 212.511 60.4623 212.65 59.0668Z" fill="white"/>
|
||||
<path d="M230.599 77.0999C230.239 77.0999 228.499 68.1 227.899 64.5C227.899 64.5 231.349 72.2999 232.399 75.2999L230.599 77.0999Z" fill="#007156"/>
|
||||
<path d="M232.849 81.5993C234.121 84.1449 236.899 84.7493 238.249 84.2993C239.599 83.8493 241.399 82.9493 241.849 80.2494C242.299 77.5494 241.022 73.4367 239.599 68.0995C237.349 61.7996 236.899 59.5496 235.549 56.8496L227.449 62.6995C228.349 65.8495 231.949 79.7994 232.849 81.5993Z" fill="url(#paint5_linear_1677_8050)"/>
|
||||
</g>
|
||||
<path d="M152.961 8.00043L153.424 9.4252H154.922L153.71 10.3057L154.173 11.7305L152.961 10.85L151.749 11.7305L152.212 10.3057L151 9.4252H152.498L152.961 8.00043Z" stroke="#FF9C33" stroke-width="1.78274" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M173.634 27.2675C173.416 27.2675 173.199 27.1846 173.033 27.0186L171.249 25.2344C170.917 24.9027 170.917 24.3648 171.249 24.0331L173.033 22.2489C173.365 21.917 173.903 21.917 174.235 22.2489L176.019 24.0331C176.351 24.3648 176.351 24.9027 176.019 25.2344L174.235 27.0186C174.069 27.1844 173.851 27.2675 173.634 27.2675ZM173.051 24.6337L173.634 25.2164L174.217 24.6337L173.634 24.0511L173.051 24.6337Z" fill="#8282FF"/>
|
||||
<path d="M53.0206 68.0976C53.0206 66.9818 53.9252 66.0772 55.041 66.0772C53.9252 66.0772 53.0206 65.1726 53.0206 64.0566C53.0206 65.1726 52.1161 66.0772 51.0002 66.0772C52.1161 66.0772 53.0206 66.9818 53.0206 68.0976Z" stroke="#8282FF" stroke-width="1.78274" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M67.4922 35C68.8976 35 70.041 36.1434 70.041 37.5488C70.041 38.9543 68.8976 40.0977 67.4922 40.0977C66.0868 40.0977 64.9434 38.9543 64.9434 37.5488C64.9434 36.1434 66.0868 35 67.4922 35ZM67.4922 38.3984C67.9607 38.3984 68.3418 38.0173 68.3418 37.5488C68.3418 37.0804 67.9607 36.6992 67.4922 36.6992C67.0237 36.6992 66.6426 37.0804 66.6426 37.5488C66.6426 38.0173 67.0237 38.3984 67.4922 38.3984Z" fill="#FFAA66"/>
|
||||
<path d="M74.4071 81.8301C74.6246 81.8301 74.8419 81.913 75.0079 82.0791L76.7921 83.8632C77.124 84.1949 77.124 84.7329 76.7921 85.0646L75.0079 86.8488C74.6761 87.1806 74.1383 87.1806 73.8064 86.8488L72.0222 85.0646C71.6904 84.7329 71.6904 84.1949 72.0222 83.8632L73.8064 82.0791C73.9723 81.9132 74.1896 81.8301 74.4071 81.8301ZM74.9898 84.4639L74.4071 83.8812L73.8244 84.4639L74.4071 85.0466L74.9898 84.4639Z" fill="#FFAA66"/>
|
||||
<path d="M160.1 84.8654L155.626 72.4947C155.022 70.8257 156.73 69.2557 158.342 69.9975L170.702 75.683C172.652 76.5798 172.012 79.5 169.866 79.5H166.626C165.679 79.5 164.862 80.1647 164.668 81.0921L163.939 84.593C163.528 86.5664 160.786 86.761 160.1 84.8654Z" fill="#FA61B3"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_1677_8050" x1="194.6" y1="65.8496" x2="193.25" y2="83.3994" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1EB67C"/>
|
||||
<stop offset="1" stop-color="#1FF073"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1677_8050" x1="224.749" y1="82.4997" x2="224.749" y2="95.9996" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#14B678"/>
|
||||
<stop offset="0.8125" stop-color="#1FF073"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1677_8050" x1="204.499" y1="80.2513" x2="204.499" y2="96.0011" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#00AB6A"/>
|
||||
<stop offset="1" stop-color="#1FF073"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1677_8050" x1="31.9497" y1="1.79998" x2="8.54991" y2="35.0996" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.234375" stop-color="#16CF89"/>
|
||||
<stop offset="1" stop-color="#14B578"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_1677_8050" x1="35.0996" y1="5.39994" x2="17.0998" y2="40.9496" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1FF073"/>
|
||||
<stop offset="1" stop-color="#04795D"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_1677_8050" x1="230.149" y1="66.7495" x2="239.599" y2="84.2993" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#0FA866"/>
|
||||
<stop offset="0.994297" stop-color="#1FF073"/>
|
||||
<stop offset="0.994397" stop-color="#1EB57C"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 19 KiB |
42
newIDE/app/public/res/questionnaire/target-play-store.svg
Normal file
After Width: | Height: | Size: 71 KiB |
20
newIDE/app/public/res/questionnaire/target-poki.svg
Normal file
@@ -0,0 +1,20 @@
|
||||
<svg width="292" height="103" viewBox="0 0 292 103" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="292" height="102.768" fill="#1D1D26"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M199.793 41.9097C199.793 42.4682 199.979 42.9017 200.35 43.2101C200.721 43.5192 201.115 43.6731 201.533 43.6731C201.95 43.6731 202.341 43.5517 202.706 43.3084C203.07 43.0657 203.365 42.9441 203.59 42.9441C203.988 42.9441 204.472 43.2923 205.042 43.9884C205.347 44.3696 205.499 44.711 205.499 45.0129C205.499 45.5122 205.134 45.9784 204.405 46.4119C203.65 46.9374 202.722 47.2001 201.622 47.2001C200.39 47.2001 199.203 46.7601 198.064 45.88C197.52 45.4596 197.076 44.898 196.732 44.195C196.387 43.4926 196.215 42.7174 196.215 41.8703C196.215 41.0232 196.387 40.2546 196.732 39.565C197.076 38.8756 197.52 38.3207 198.064 37.9C199.163 37.0331 200.337 36.5996 201.582 36.5996C202.086 36.5996 202.576 36.6687 203.054 36.8065C203.531 36.9445 203.882 37.0792 204.108 37.2106L204.426 37.4075C204.664 37.5653 204.85 37.69 204.982 37.7819C205.327 38.0447 205.499 38.3433 205.499 38.6785C205.499 39.0134 205.36 39.3909 205.082 39.8112C204.604 40.5338 204.147 40.8949 203.71 40.8949C203.458 40.8949 203.1 40.7506 202.636 40.4616C202.398 40.2382 202.056 40.1266 201.612 40.1266C201.168 40.1266 200.754 40.2841 200.37 40.5994C199.985 40.9146 199.793 41.3515 199.793 41.9097Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M213.908 36.837C214.16 36.9156 214.369 37.0508 214.535 37.2408C214.7 37.4316 214.783 37.7369 214.783 38.1571C214.783 38.5773 214.657 39.0372 214.406 39.5364C214.154 40.0354 213.789 40.2849 213.312 40.2849C213.074 40.2849 212.845 40.2326 212.626 40.1276C212.408 40.0224 212.119 39.9699 211.761 39.9699C211.404 39.9699 211.069 40.0948 210.758 40.3441C210.446 40.5939 210.29 40.8957 210.29 41.2503V45.3883C210.29 45.6905 210.28 45.9169 210.261 46.068C210.24 46.2193 210.177 46.393 210.071 46.5899C209.873 46.9316 209.356 47.1023 208.521 47.1023C207.885 47.1023 207.427 46.9909 207.149 46.7674C206.937 46.5837 206.817 46.3012 206.791 45.9202V45.3489V38.4329C206.791 38.131 206.801 37.9043 206.821 37.7533C206.841 37.6024 206.897 37.4349 206.99 37.2506C207.175 36.8961 207.692 36.7187 208.541 36.7187C209.336 36.7187 209.833 36.8698 210.032 37.172C210.177 37.3822 210.25 37.5988 210.25 37.8219C210.317 37.7302 210.412 37.6186 210.539 37.4872C210.665 37.356 210.933 37.1786 211.344 36.9551C211.754 36.732 212.116 36.6201 212.427 36.6201C212.739 36.6201 213 36.637 213.213 36.6695C213.425 36.7025 213.657 36.7581 213.908 36.837Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M218.462 41.9206C218.462 42.3538 218.634 42.7448 218.979 43.0927C219.323 43.4409 219.741 43.6146 220.231 43.6146C220.721 43.6146 221.129 43.4376 221.454 43.0827C221.779 42.7282 221.94 42.3374 221.94 41.9105C221.94 41.4837 221.785 41.0863 221.473 40.7183C221.162 40.351 220.744 40.1666 220.221 40.1666C219.697 40.1666 219.273 40.351 218.949 40.7183C218.624 41.0863 218.462 41.487 218.462 41.9206ZM222.08 37.822C222.159 37.0867 222.683 36.7188 223.65 36.7188C224.167 36.7188 224.552 36.758 224.803 36.8371C225.055 36.9157 225.231 37.0537 225.331 37.2506C225.43 37.4478 225.49 37.6222 225.509 37.7728C225.529 37.9239 225.539 38.1505 225.539 38.4527V45.349C225.539 45.6509 225.529 45.8775 225.509 46.0284C225.49 46.1797 225.433 46.3536 225.34 46.5505C225.155 46.8923 224.701 47.0629 223.979 47.0629C223.256 47.0629 222.772 46.9741 222.527 46.7971C222.282 46.6196 222.14 46.3604 222.1 46.0186C221.609 46.7152 220.791 47.0629 219.644 47.0629C218.498 47.0629 217.434 46.5441 216.454 45.5065C215.473 44.4688 214.982 43.2635 214.982 41.8909C214.982 40.5185 215.476 39.3164 216.464 38.2852C217.451 37.2542 218.534 36.7382 219.714 36.7382C220.165 36.7382 220.576 36.8173 220.947 36.9748C221.317 37.1326 221.576 37.2803 221.722 37.4183C221.867 37.5561 221.987 37.6908 222.08 37.822Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M232.358 43.6338H235.758C236.288 43.6338 236.669 43.6996 236.9 43.8307C237.132 43.9621 237.289 44.1528 237.368 44.4023C237.448 44.6519 237.487 44.9803 237.487 45.3874C237.487 45.7946 237.448 46.1231 237.368 46.3723C237.289 46.622 237.149 46.7962 236.95 46.8947C236.752 46.9931 236.576 47.0522 236.423 47.0719C236.271 47.0914 236.042 47.1014 235.738 47.1014H228.561C228.097 47.1014 227.693 46.9308 227.348 46.5892C227.003 46.2481 226.831 45.8404 226.831 45.3677C226.831 44.8945 227.003 44.4909 227.348 44.1557C227.693 43.8209 228.223 43.3382 228.938 42.7076C229.654 42.0773 230.303 41.5093 230.886 41.0035C231.47 40.498 231.788 40.2187 231.841 40.1659H229.038C228.283 40.1659 227.805 40.0414 227.606 39.7915C227.38 39.5029 227.268 39.1216 227.268 38.6489C227.268 38.1759 227.302 37.8245 227.368 37.5948C227.434 37.3651 227.514 37.1941 227.606 37.0824C227.699 36.971 227.832 36.8824 228.004 36.8166C228.229 36.751 228.574 36.7178 229.038 36.7178H235.499C235.963 36.7178 236.367 36.8824 236.712 37.2107C237.056 37.539 237.229 37.9495 237.229 38.442C237.229 38.9344 237.03 39.3713 236.632 39.7523C236.235 40.1333 234.81 41.4269 232.358 43.6338Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M243.432 47.0629C242.093 47.0629 240.983 46.5603 240.102 45.5556C239.22 44.5508 238.779 43.3261 238.779 41.8808V38.4329C238.779 38.1177 238.79 37.888 238.809 37.7435C238.829 37.5989 238.885 37.4283 238.978 37.2311C239.164 36.8767 239.681 36.6992 240.529 36.6992C241.456 36.6992 242 36.9489 242.159 37.4478C242.238 37.658 242.279 37.993 242.279 38.4526V41.9006C242.279 42.4393 242.434 42.8596 242.746 43.1618C243.057 43.4642 243.474 43.6148 243.999 43.6148C244.522 43.6148 244.946 43.4573 245.271 43.142C245.595 42.8268 245.758 42.413 245.758 41.9006V38.4132C245.758 38.1113 245.768 37.8846 245.788 37.7336C245.808 37.5827 245.87 37.4083 245.976 37.2114C246.149 36.8698 246.659 36.6992 247.507 36.6992C248.342 36.6992 248.852 36.8767 249.038 37.2311C249.13 37.4283 249.187 37.6024 249.207 37.7533C249.227 37.9044 249.237 38.131 249.237 38.4329V45.4079C249.237 45.6044 249.232 45.7689 249.223 45.9017C249.219 45.9641 249.237 48.994 249.207 49.428C249.197 49.58 249.124 49.7465 249.018 49.9302C248.819 50.272 248.309 50.4428 247.488 50.4428C246.679 50.4428 246.182 50.2848 245.996 49.9696C245.89 49.7911 245.826 49.5828 245.805 49.3451C245.8 49.2858 245.797 45.8649 245.797 45.8019C245.744 45.8939 245.625 46.0253 245.44 46.1961C245.253 46.3668 245.075 46.5111 244.903 46.6296C244.452 46.9187 243.962 47.0629 243.432 47.0629Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M199.614 56.2788C199.614 56.7057 199.783 57.0898 200.121 57.4314C200.459 57.773 200.87 57.9438 201.354 57.9438C201.837 57.9438 202.239 57.7695 202.556 57.4215C202.875 57.0736 203.034 56.6926 203.034 56.2788C203.034 55.865 202.881 55.4778 202.576 55.1162C202.272 54.7551 201.861 54.5743 201.344 54.5743C200.827 54.5743 200.409 54.7516 200.091 55.1062C199.774 55.4613 199.614 55.8521 199.614 56.2788ZM203.153 60.308C202.649 60.9649 201.847 61.2931 200.748 61.2931C199.647 61.2931 198.617 60.7907 197.656 59.7859C196.695 58.781 196.215 57.6089 196.215 56.2688C196.215 54.929 196.698 53.7538 197.666 52.7421C198.633 51.7308 199.694 51.225 200.847 51.225C201.297 51.225 201.708 51.3072 202.079 51.4713C202.45 51.6355 202.706 51.7866 202.845 51.9244C202.984 52.0621 203.093 52.1904 203.173 52.3085C203.213 51.941 203.348 51.6616 203.581 51.4713C203.812 51.2808 204.187 51.1855 204.704 51.1855C205.221 51.1855 205.598 51.225 205.837 51.3036C206.075 51.3825 206.244 51.5174 206.344 51.7075C206.443 51.8982 206.503 52.0655 206.523 52.2099C206.543 52.3548 206.553 52.5779 206.553 52.8798V61.0371C206.553 62.5475 206.023 63.7661 204.962 64.6921C203.902 65.6181 202.709 66.0811 201.384 66.0811C200.376 66.0811 199.415 65.8379 198.501 65.3521C197.586 64.866 197.129 64.4259 197.129 64.032C197.129 63.5198 197.328 63.0667 197.726 62.6724C197.977 62.3964 198.173 62.2061 198.312 62.1011C198.451 61.9959 198.613 61.9434 198.799 61.9434C198.985 61.9434 199.177 62.0222 199.376 62.1798C200.012 62.6656 200.701 62.9088 201.443 62.9088C201.947 62.9088 202.357 62.7118 202.676 62.3179C202.994 61.9236 203.153 61.4509 203.153 60.8991V60.308Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M211.325 56.4272C211.325 56.8607 211.497 57.2517 211.842 57.5995C212.186 57.9476 212.604 58.1214 213.094 58.1214C213.584 58.1214 213.992 57.9444 214.317 57.5895C214.641 57.2349 214.804 56.8443 214.804 56.4172C214.804 55.9905 214.648 55.5929 214.337 55.2251C214.025 54.8576 213.607 54.6735 213.084 54.6735C212.56 54.6735 212.136 54.8576 211.812 55.2251C211.487 55.5929 211.325 55.9938 211.325 56.4272ZM214.943 52.3288C215.022 51.5936 215.546 51.2256 216.514 51.2256C217.03 51.2256 217.415 51.2648 217.667 51.3437C217.919 51.4226 218.094 51.5603 218.193 51.7575C218.293 51.9546 218.352 52.1288 218.372 52.2794C218.393 52.4307 218.402 52.6574 218.402 52.9593V59.8556C218.402 60.1578 218.393 60.3844 218.372 60.5352C218.352 60.6863 218.296 60.8604 218.203 61.0574C218.018 61.399 217.564 61.5698 216.841 61.5698C216.119 61.5698 215.635 61.4807 215.39 61.3037C215.145 61.1263 215.003 60.8671 214.963 60.5255C214.472 61.2218 213.654 61.5698 212.507 61.5698C211.361 61.5698 210.297 61.0508 209.316 60.0131C208.335 58.9754 207.846 57.7701 207.846 56.3975C207.846 55.0251 208.339 53.8233 209.327 52.7918C210.314 51.761 211.398 51.2451 212.577 51.2451C213.028 51.2451 213.438 51.324 213.81 51.4815C214.181 51.6394 214.439 51.7872 214.585 51.925C214.731 52.0628 214.85 52.1977 214.943 52.3288Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M223.411 52.6038C224.033 51.6714 224.783 51.2051 225.657 51.2051C227.009 51.2051 228.017 51.7764 228.68 52.9193C228.825 52.7221 229 52.5154 229.206 52.2985C229.412 52.0819 229.739 51.845 230.191 51.5892C230.641 51.3331 231.105 51.2051 231.582 51.2051C232.642 51.2051 233.53 51.6089 234.246 52.4166C234.962 53.2246 235.32 54.5612 235.32 56.4263V59.8742C235.32 60.1769 235.309 60.4033 235.289 60.5542C235.27 60.7052 235.207 60.8791 235.101 61.0763C234.929 61.4309 234.418 61.6082 233.57 61.6082C232.735 61.6082 232.225 61.4243 232.039 61.0566C231.947 60.8596 231.89 60.6853 231.87 60.5344C231.85 60.3836 231.841 60.1569 231.841 59.8546V56.4064C231.841 55.264 231.43 54.6924 230.607 54.6924C230.144 54.6924 229.829 54.8435 229.663 55.1456C229.497 55.4479 229.415 55.8745 229.415 56.4263V59.8742C229.415 60.1895 229.405 60.4195 229.385 60.5639C229.365 60.7088 229.302 60.8791 229.196 61.0763C229.01 61.4309 228.493 61.6082 227.645 61.6082C226.81 61.6082 226.3 61.4243 226.115 61.0566C226.022 60.8596 225.966 60.6853 225.946 60.5344C225.926 60.3836 225.916 60.1569 225.916 59.8546V56.4064C225.916 55.264 225.504 54.6924 224.683 54.6924C223.888 54.6924 223.49 55.264 223.49 56.4064V59.894C223.49 60.1964 223.481 60.4228 223.46 60.5738C223.441 60.7249 223.378 60.8989 223.272 61.0958C223.073 61.4376 222.556 61.6082 221.721 61.6082C220.886 61.6082 220.376 61.4309 220.191 61.0763C220.097 60.8791 220.041 60.7088 220.021 60.5639C220.001 60.4195 219.991 60.1895 219.991 59.8742V52.9388C219.991 52.6368 220.001 52.4102 220.021 52.2589C220.041 52.1083 220.104 51.9407 220.21 51.7567C220.409 51.402 220.879 51.2246 221.621 51.2246C222.364 51.2246 222.847 51.3428 223.073 51.5792C223.298 51.8158 223.411 52.1574 223.411 52.6038Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M248.381 60.6829C248.129 60.5254 248.004 60.2759 248.004 59.9341C248.004 59.5927 248.255 59.0739 248.759 58.3776C248.905 58.1543 249.14 58.0426 249.465 58.0426C249.789 58.0426 250.23 58.2037 250.786 58.5256C251.344 58.8475 251.847 59.0081 252.298 59.0081C253.106 59.0081 253.511 58.8506 253.511 58.5353C253.511 58.2859 253.066 58.1018 252.179 57.9835C251.344 57.8652 250.515 57.5568 249.694 57.0575C249.309 56.8209 248.991 56.4503 248.739 55.9443C248.487 55.4387 248.361 54.8377 248.361 54.1415C248.361 52.0661 249.799 51.0283 252.676 51.0283C253.617 51.0283 254.584 51.2518 255.578 51.698C256.042 51.9086 256.274 52.1712 256.274 52.4864C256.274 52.8017 256.128 53.1893 255.836 53.649C255.545 54.1087 255.247 54.3384 254.942 54.3384C254.783 54.3384 254.488 54.2398 254.058 54.0427C253.626 53.846 253.159 53.7474 252.656 53.7474C251.873 53.7474 251.482 53.8921 251.482 54.1809C251.482 54.5748 251.933 54.8311 252.835 54.9492C253.709 55.0414 254.558 55.291 255.379 55.6979C255.764 55.882 256.085 56.2004 256.344 56.6536C256.602 57.1064 256.731 57.6751 256.731 58.3581C256.731 59.0411 256.602 59.6222 256.344 60.1016C256.085 60.5814 255.724 60.9389 255.26 61.1755C254.411 61.5827 253.348 61.7863 252.07 61.7863C250.79 61.7863 249.561 61.4186 248.381 60.6829Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M242.815 55.7563C243.318 55.7563 243.57 55.5463 243.57 55.1256C243.57 54.8239 243.454 54.5809 243.222 54.3968C242.991 54.213 242.659 54.121 242.229 54.121C241.797 54.121 241.37 54.2951 240.947 54.6432C240.522 54.9914 240.31 55.3624 240.31 55.7563H242.815ZM247.01 55.1751C247.01 55.983 246.807 56.5811 246.403 56.9681C245.999 57.3558 245.551 57.5494 245.061 57.5494H240.35C240.35 57.9174 240.568 58.226 241.006 58.4754C241.443 58.7251 241.88 58.8498 242.318 58.8498C243.086 58.8498 243.689 58.771 244.127 58.6132L244.346 58.5346C244.664 58.3902 244.929 58.3179 245.141 58.3179C245.565 58.3179 245.929 58.6132 246.235 59.2045C246.406 59.5591 246.493 59.8615 246.493 60.1108C246.493 61.2802 245.082 61.8642 242.258 61.8642C241.277 61.8642 240.406 61.6967 239.644 61.362C238.882 61.027 238.289 60.5835 237.864 60.0319C237.03 58.9679 236.612 57.7794 236.612 56.4657C236.612 54.8106 237.152 53.4876 238.232 52.4954C239.312 51.5041 240.66 51.0078 242.278 51.0078C244.12 51.0078 245.472 51.6518 246.333 52.9387C246.785 53.6219 247.01 54.3673 247.01 55.1751Z" fill="white"/>
|
||||
<path d="M187.691 42.324C187.752 39.7282 187.599 35.2046 185.946 33.3175C185.041 32.2837 182.889 34.0134 181.496 35.3494C179.188 34.2293 176.353 33.6781 172.905 33.6781C169.457 33.6781 166.624 34.2318 164.319 35.3494C162.921 34.0109 160.772 32.2812 159.866 33.3149C158.216 35.1995 158.061 39.7079 158.122 42.3062C157.377 44.3381 157 46.7104 157 49.4205C157 55.1149 158.637 59.3312 161.863 61.9702C164.036 63.743 166.874 64.7641 170.49 65.0714C170.067 65.2822 169.628 65.4879 169.177 65.7191L167.866 66.3591L167.121 66.7223C166.4 67.0982 165.655 67.4309 164.854 67.9211L164.655 68.0253C164.599 68.0659 164.546 68.1345 164.536 68.2107C164.51 68.3555 164.61 68.4926 164.755 68.513C165.484 68.6222 166.206 68.7644 166.945 68.8279L167.496 68.8889C167.677 68.9092 167.861 68.9244 168.047 68.9346L169.154 68.9956C170.635 69.0209 172.127 68.9396 173.606 68.7085C175.083 68.4875 176.534 68.0761 177.929 67.5046C179.316 66.9331 180.645 66.1889 181.846 65.2822C184.227 63.4408 186.099 60.9618 187.214 58.1984C187.622 57.1976 187.925 56.1589 188.144 55.1048C188.586 53.4132 188.81 51.5185 188.81 49.4205C188.81 46.7206 188.433 44.3534 187.693 42.324H187.691Z" fill="#6842FF"/>
|
||||
<path d="M172.902 59.471C178.997 59.471 183.054 57.7641 183.054 49.4205C183.054 45.4811 182.144 42.8219 180.282 41.2928C178.706 40.0026 176.289 39.3701 172.902 39.3701C169.515 39.3701 167.098 39.9975 165.522 41.2928C163.655 42.8193 162.75 45.4837 162.75 49.4205C162.75 57.7641 166.807 59.471 172.902 59.471Z" fill="white"/>
|
||||
<path d="M169.664 47.2849C169.664 46.5356 170.163 45.9006 170.849 45.6873C170.472 45.3393 169.967 45.126 169.411 45.126C168.246 45.126 167.292 46.0708 167.292 47.2239V51.4199C167.292 52.5729 168.246 53.5178 169.411 53.5178C170.577 53.5178 171.53 52.5755 171.53 51.4199V48.951C171.472 48.9561 171.413 48.9612 171.354 48.9612C170.418 48.9612 169.661 48.212 169.661 47.2874L169.664 47.2849Z" fill="#6842FF"/>
|
||||
<path d="M176.57 47.1321C176.57 46.4082 177.034 45.7935 177.684 45.5599C177.327 45.2881 176.881 45.123 176.397 45.123C175.231 45.123 174.277 46.0679 174.277 47.221V51.4169C174.277 52.57 175.231 53.5149 176.397 53.5149C177.562 53.5149 178.516 52.5726 178.516 51.4169V48.7881C178.434 48.8008 178.35 48.8084 178.263 48.8084C177.327 48.8084 176.57 48.0591 176.57 47.1346V47.1321Z" fill="#6842FF"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M120.089 42.2701C122.785 42.2701 124.979 39.9905 124.979 37.1893C124.979 34.4999 122.739 32.2295 120.089 32.2295C117.439 32.2295 115.199 34.5012 115.199 37.1893C115.199 39.9905 117.392 42.2701 120.089 42.2701Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M115.288 44.0533V58.565L110.883 48.8634C112.874 46.3368 113.685 42.7723 113.776 40.2089V38.1067H105.974V40.1301C105.865 42.7105 105.039 43.914 102.764 44.6642V31L94.8277 31.0079V36.8296C91.9352 33.8366 87.9443 32.26 83.2267 32.26C78.0622 32.26 73.7837 34.0745 70.8562 37.5037C69.9684 38.5515 69.2226 39.7149 68.6386 40.9631C66.7202 38.9647 64.0505 38.112 60.8808 38.112H50V66.891H57.2539V60.022H60.8808C64.0402 60.022 66.7098 58.9526 68.6373 56.9292C69.2346 58.2187 70.0068 59.4172 70.9313 60.4898C73.8614 63.8572 78.1127 65.6323 83.2267 65.6323C88.2319 65.6323 92.4236 63.8585 95.3523 60.5003C95.5557 60.2677 95.7487 60.0247 95.9365 59.7803H102.764V52.6394L103.811 52.395L107.179 59.7842H124.891V44.0533H115.288ZM61.1425 52.4371H57.2461V45.5104H61.035C62.0168 45.5104 63.6554 46.1818 63.6554 48.8371C63.6619 50.5464 62.965 52.4371 61.1477 52.4371H61.1425ZM83.1529 60.3387C77.035 60.3387 72.0583 55.166 72.0583 48.8095C72.0583 42.7105 77.1373 37.5562 83.1529 37.5562C89.1684 37.5562 94.2474 42.7105 94.2474 48.8095C94.2474 55.166 89.2707 60.3387 83.1529 60.3387Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M83.1518 49.6426C78.2451 49.6426 75.7684 50.5163 74.7412 50.7843C75.5987 54.7903 79.043 57.7951 83.1518 57.7951C87.2606 57.7951 90.7062 54.7903 91.5625 50.7843C90.5404 50.5163 88.0586 49.6426 83.1518 49.6426Z" fill="#009CFF"/>
|
||||
</svg>
|
After Width: | Height: | Size: 17 KiB |
22
newIDE/app/public/res/questionnaire/target-steam.svg
Normal file
After Width: | Height: | Size: 30 KiB |
327
newIDE/app/public/res/questionnaire/teaching.svg
Normal file
@@ -0,0 +1,327 @@
|
||||
<svg width="292" height="103" viewBox="0 0 292 103" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1642_5068)">
|
||||
<rect width="292" height="102.768" fill="#1D1D26"/>
|
||||
<g filter="url(#filter0_f_1642_5068)">
|
||||
<path d="M176.316 70.0752C162.592 64.9472 160.2 53.0944 165.988 45.2673C173.305 35.3729 173.08 26.343 171.291 20.909C169.058 14.1239 163.196 5.07125 145.332 6.07705C127.423 7.08532 121.414 15.7359 118.396 20.909C108.126 23.8104 100.519 31.0976 99.2116 38.3174C97.9046 45.5372 93.8903 47.5614 90.8095 48.0338C87.7288 48.5061 69.8461 47.6783 63.9646 57.1247C59.2595 64.6819 50.008 63.2179 51.8224 76.4877C46.1001 81.7685 50.2871 85.4147 53.7762 85.4147L242.47 85.4147C240.79 77.5202 226.42 74.7274 220.14 70.0752C214.986 66.2579 217.539 63.4857 216.232 56.8732C214.925 50.2607 209.92 47.5079 205.346 46.5632C200.771 45.6186 201.25 50.3352 201.25 52.5546C201.25 58.0722 190.039 75.2033 176.316 70.0752Z" fill="url(#paint0_linear_1642_5068)" fill-opacity="0.15"/>
|
||||
</g>
|
||||
<path d="M171.54 73.029C159.954 68.2234 157.934 57.116 162.821 49.7812C168.998 40.509 168.808 32.0471 167.298 26.9548C165.413 20.5964 160.464 12.1131 145.383 13.0556C130.264 14.0005 125.191 22.1071 122.642 26.9548C113.973 29.6737 107.55 36.5027 106.447 43.2684C105.343 50.0342 101.954 51.9311 99.3534 52.3737C96.7526 52.8163 81.6555 52.0406 76.6902 60.8929C72.718 67.9748 64.9076 66.6029 66.4394 79.0382C61.6085 83.9869 65.1432 87.4038 68.0889 87.4038L227.39 87.4038C225.971 80.0058 213.84 77.3886 208.537 73.029C204.187 69.4517 206.342 66.8539 205.238 60.6573C204.135 54.4606 199.91 51.8809 196.048 50.9956C192.186 50.1104 192.59 54.5304 192.59 56.6102C192.59 61.7808 183.126 77.8346 171.54 73.029Z" fill="url(#paint1_linear_1642_5068)" fill-opacity="0.6"/>
|
||||
<path d="M55.3633 85.9903C57.9555 82.102 61.7259 78.4494 66.5568 78.2137C66.0854 76.6427 65.6141 72.8173 67.4994 70.0838C69.8559 66.6668 73.5085 65.9598 76.572 64.1925C79.6354 62.4251 77.2789 55.002 84.5841 50.7603C90.4283 47.3669 97.6235 50.2104 100.491 52.0564C100.805 44.2798 104.921 28.3497 118.872 26.8415C124.331 17.5726 139.821 2.21591 158.108 14.9411C180.966 30.8476 156.222 58.3011 155.28 59.5972C154.337 60.8933 151.038 69.1412 159.875 70.0838C161.446 69.2196 165.719 67.7507 170.244 68.7876C175.899 70.0838 181.201 71.9688 183.087 71.0263C184.972 70.0838 191.217 71.2621 191.806 64.1925C192.395 57.1228 188.86 54.6486 191.806 50.7603C194.751 46.872 198.993 48.5217 202.528 52.0564C206.063 55.5911 208.773 68.1986 209.126 70.0838C214.86 70.2016 226.942 73.7127 229.392 86.815" stroke="#5EE1EA" stroke-width="0.215808"/>
|
||||
<path d="M171.555 68.0855C159.97 63.2799 155.578 57.5891 160.465 50.2543C166.642 40.9821 166.452 32.5202 164.942 27.4279C163.057 21.0695 160.465 13.293 143.419 11.6201C127.448 10.0527 118.303 22.5801 115.755 27.4279C107.085 30.1468 105.194 36.9758 104.09 43.7415C102.987 50.5073 99.598 52.4042 96.9972 52.8468C94.3963 53.2894 86.4361 52.2145 81.4708 61.0669C77.4985 68.1487 81.3394 75.3149 83.7564 78.0128C79.2798 80.4915 79.5267 85.6216 80.2098 87.8769H242.472C241.053 80.4788 230.807 71.7595 220.909 68.0855C215.629 66.1254 208.598 68.0855 207.494 61.8889C206.391 55.6922 199.377 51.1396 195.515 50.2543C191.653 49.3691 189.525 51.9616 190.234 57.0833C190.943 62.205 183.141 72.8911 171.555 68.0855Z" fill="url(#paint2_linear_1642_5068)" fill-opacity="0.73"/>
|
||||
<path d="M136.24 28.4893C142.681 28.4893 145.825 33.554 145.825 38.8601C140.172 40.5454 136.24 37.3045 135.625 35.2303C135.134 33.571 134.631 30.021 136.24 28.4893Z" fill="#D9D9D9"/>
|
||||
<path d="M145.036 34.6383C145.036 36.7857 143.742 38.5265 141.855 38.5265C139.968 38.5265 138.674 36.7857 138.674 34.6383C138.674 32.4908 140.088 30.75 141.855 30.75C143.623 30.75 145.036 32.4908 145.036 34.6383Z" fill="#4A36C3"/>
|
||||
<path d="M142.392 32.8316C142.418 32.8061 142.462 32.8182 142.471 32.8532L142.781 34.0739C142.784 34.0872 142.793 34.0984 142.806 34.1044L143.973 34.6684C144.006 34.6847 144.008 34.7321 143.976 34.7509L142.878 35.3857C142.866 35.3929 142.857 35.4054 142.855 35.4197L142.681 36.6514C142.676 36.6877 142.633 36.7043 142.605 36.6809L141.612 35.854C141.602 35.8455 141.589 35.8417 141.575 35.8438L140.297 36.0424C140.261 36.0481 140.232 36.0117 140.247 35.978L140.735 34.8334C140.741 34.8201 140.74 34.805 140.733 34.7925L140.121 33.6847C140.103 33.6519 140.129 33.6122 140.166 33.6155L141.458 33.7316C141.472 33.7328 141.485 33.7279 141.495 33.7182L142.392 32.8316Z" fill="#2D1D8E"/>
|
||||
<path d="M153.277 40.5111C155.177 31.2947 160.583 31.9884 162.468 31.792C162.468 38.5081 159.522 40.7468 157.755 41.1002C156.341 41.383 154.338 41.1788 153.277 40.5111Z" fill="#D9D9D9"/>
|
||||
<mask id="mask0_1642_5068" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="153" y="31" width="10" height="11">
|
||||
<path d="M153.279 40.5111C153.977 30.8938 160.938 31.6349 162.823 31.4385C162.823 38.1546 159.524 40.7467 157.757 41.1002C156.343 41.383 154.34 41.1788 153.279 40.5111Z" fill="#D9D9D9"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_1642_5068)">
|
||||
<ellipse cx="158.386" cy="36.5178" rx="2.88085" ry="3.69629" transform="rotate(7.04524 158.386 36.5178)" fill="black"/>
|
||||
</g>
|
||||
<path d="M131.799 17.8749C131.765 17.777 131.811 17.6891 131.9 17.6787C131.99 17.6683 132.09 17.7393 132.124 17.8373C132.158 17.9352 132.113 18.0231 132.023 18.0335C131.933 18.0439 131.833 17.9729 131.799 17.8749Z" fill="#FDFFFF"/>
|
||||
<path d="M135.934 15.3499C135.897 15.2426 135.947 15.1464 136.045 15.135C136.143 15.1236 136.253 15.2013 136.29 15.3086C136.327 15.4159 136.278 15.5122 136.179 15.5236C136.081 15.535 135.971 15.4572 135.934 15.3499Z" fill="#FDFFFF"/>
|
||||
<path d="M137.244 15.7733C137.194 15.6287 137.261 15.499 137.394 15.4836C137.526 15.4682 137.674 15.573 137.724 15.7176C137.774 15.8623 137.707 15.9919 137.574 16.0073C137.442 16.0227 137.294 15.9179 137.244 15.7733Z" fill="#FDFFFF"/>
|
||||
<path d="M139.35 14.108C139.327 14.0427 139.357 13.9842 139.417 13.9772C139.477 13.9703 139.544 14.0176 139.567 14.0829C139.589 14.1482 139.559 14.2068 139.499 14.2137C139.439 14.2207 139.372 14.1734 139.35 14.108Z" fill="#FDFFFF"/>
|
||||
<path d="M141.141 11.6807C141.069 11.4718 141.166 11.2845 141.357 11.2623C141.548 11.2401 141.762 11.3915 141.834 11.6003C141.906 11.8092 141.81 11.9965 141.618 12.0187C141.427 12.0409 141.213 11.8895 141.141 11.6807Z" fill="#FDFFFF"/>
|
||||
<path d="M142.376 12.078C142.352 12.008 142.385 11.9452 142.449 11.9378C142.513 11.9303 142.584 11.9811 142.609 12.051C142.633 12.121 142.6 12.1838 142.536 12.1912C142.472 12.1986 142.401 12.1479 142.376 12.078Z" fill="#FDFFFF"/>
|
||||
<path d="M140.178 16.883C140.14 16.7735 140.191 16.6754 140.291 16.6637C140.391 16.6521 140.503 16.7314 140.541 16.8409C140.579 16.9503 140.528 17.0485 140.428 17.0601C140.327 17.0717 140.215 16.9924 140.178 16.883Z" fill="#FDFFFF"/>
|
||||
<path d="M134.31 18.5888C134.3 18.5599 134.313 18.5341 134.34 18.531C134.366 18.5279 134.396 18.5488 134.406 18.5777C134.416 18.6065 134.402 18.6324 134.376 18.6354C134.35 18.6385 134.32 18.6176 134.31 18.5888Z" fill="#FDFFFF"/>
|
||||
<path d="M131.982 19.0783C131.942 18.9613 131.996 18.8564 132.103 18.844C132.21 18.8315 132.33 18.9163 132.37 19.0333C132.411 19.1503 132.356 19.2552 132.249 19.2676C132.142 19.28 132.022 19.1953 131.982 19.0783Z" fill="#FDFFFF"/>
|
||||
<path d="M133.911 17.1417C133.855 16.9795 133.93 16.8341 134.079 16.8168C134.227 16.7996 134.393 16.9171 134.449 17.0793C134.505 17.2416 134.43 17.387 134.282 17.4042C134.133 17.4215 133.967 17.304 133.911 17.1417Z" fill="#FDFFFF"/>
|
||||
<path d="M135.919 17.3054C135.902 17.2566 135.925 17.2128 135.969 17.2076C136.014 17.2025 136.064 17.2378 136.081 17.2866C136.098 17.3354 136.075 17.3792 136.03 17.3844C135.986 17.3896 135.936 17.3542 135.919 17.3054Z" fill="#FDFFFF"/>
|
||||
<path d="M133.874 11.905C133.816 11.7363 133.894 11.5851 134.048 11.5671C134.203 11.5492 134.375 11.6714 134.434 11.8401C134.492 12.0088 134.414 12.16 134.259 12.178C134.105 12.1959 133.932 12.0737 133.874 11.905Z" fill="#FDFFFF"/>
|
||||
<path d="M157.72 16.317C157.638 16.0791 157.748 15.8657 157.966 15.8404C158.184 15.8151 158.427 15.9875 158.509 16.2254C158.592 16.4634 158.481 16.6767 158.263 16.702C158.045 16.7273 157.802 16.5549 157.72 16.317Z" fill="#FDFFFF"/>
|
||||
<path d="M137.237 11.6628C137.21 11.5839 137.247 11.5131 137.319 11.5047C137.391 11.4963 137.472 11.5535 137.499 11.6324C137.527 11.7114 137.49 11.7822 137.418 11.7906C137.345 11.799 137.265 11.7418 137.237 11.6628Z" fill="#FDFFFF"/>
|
||||
<path d="M133.857 12.5982C133.832 12.5239 133.866 12.4573 133.934 12.4494C134.002 12.4415 134.078 12.4953 134.104 12.5696C134.13 12.6439 134.095 12.7105 134.027 12.7184C133.959 12.7263 133.883 12.6725 133.857 12.5982Z" fill="#FDFFFF"/>
|
||||
<path d="M136.36 12.4417C136.336 12.3706 136.369 12.3069 136.434 12.2993C136.499 12.2918 136.572 12.3433 136.596 12.4143C136.621 12.4854 136.588 12.5491 136.523 12.5566C136.458 12.5642 136.385 12.5127 136.36 12.4417Z" fill="#FDFFFF"/>
|
||||
<path d="M132.694 13.904C132.656 13.7941 132.707 13.6957 132.807 13.684C132.908 13.6723 133.02 13.7519 133.058 13.8617C133.096 13.9715 133.045 14.07 132.945 14.0817C132.844 14.0933 132.732 14.0138 132.694 13.904Z" fill="#FDFFFF"/>
|
||||
<path d="M148.269 10.8057C148.223 10.6715 148.285 10.5511 148.408 10.5368C148.531 10.5226 148.669 10.6198 148.715 10.754C148.761 10.8883 148.699 11.0086 148.576 11.0229C148.453 11.0371 148.316 10.9399 148.269 10.8057Z" fill="#FDFFFF"/>
|
||||
<path d="M150.457 10.6825C150.433 10.6132 150.465 10.5511 150.529 10.5438C150.592 10.5364 150.663 10.5866 150.687 10.6558C150.711 10.7251 150.679 10.7872 150.616 10.7946C150.552 10.8019 150.481 10.7518 150.457 10.6825Z" fill="#FDFFFF"/>
|
||||
<path d="M153.475 12.1949C153.447 12.1138 153.485 12.0411 153.559 12.0325C153.633 12.0238 153.716 12.0826 153.744 12.1637C153.772 12.2448 153.735 12.3175 153.66 12.3261C153.586 12.3348 153.503 12.276 153.475 12.1949Z" fill="#FDFFFF"/>
|
||||
<path d="M149.91 12.5797C149.877 12.4835 149.921 12.3973 150.009 12.387C150.097 12.3768 150.196 12.4465 150.229 12.5427C150.262 12.6388 150.218 12.7251 150.129 12.7353C150.041 12.7455 149.943 12.6758 149.91 12.5797Z" fill="#FDFFFF"/>
|
||||
<path d="M147.267 13.6675C147.236 13.5782 147.277 13.498 147.359 13.4885C147.441 13.4791 147.532 13.5438 147.563 13.6331C147.594 13.7225 147.553 13.8026 147.471 13.8121C147.389 13.8216 147.298 13.7569 147.267 13.6675Z" fill="#FDFFFF"/>
|
||||
<path d="M156.646 17.6172C156.615 17.5275 156.657 17.447 156.739 17.4375C156.821 17.4279 156.913 17.4929 156.944 17.5827C156.975 17.6724 156.933 17.7528 156.851 17.7624C156.769 17.7719 156.677 17.7069 156.646 17.6172Z" fill="#FDFFFF"/>
|
||||
<path d="M160.173 16.2365C160.135 16.1278 160.185 16.0303 160.285 16.0187C160.385 16.0072 160.496 16.086 160.534 16.1947C160.571 16.3034 160.521 16.401 160.421 16.4125C160.321 16.4241 160.21 16.3453 160.173 16.2365Z" fill="#FDFFFF"/>
|
||||
<path d="M151.594 18.5056C151.541 18.3528 151.612 18.2157 151.752 18.1994C151.892 18.1832 152.049 18.294 152.102 18.4468C152.154 18.5997 152.084 18.7368 151.944 18.753C151.803 18.7693 151.647 18.6585 151.594 18.5056Z" fill="#FDFFFF"/>
|
||||
<path d="M150.687 17.0266C150.668 16.9706 150.694 16.9204 150.745 16.9145C150.797 16.9085 150.854 16.9491 150.873 17.0051C150.893 17.0611 150.867 17.1113 150.815 17.1172C150.764 17.1232 150.707 17.0826 150.687 17.0266Z" fill="#FDFFFF"/>
|
||||
<path d="M155.435 17.4665C155.412 17.4019 155.442 17.344 155.501 17.3371C155.561 17.3302 155.627 17.3771 155.649 17.4416C155.671 17.5062 155.641 17.5642 155.582 17.571C155.523 17.5779 155.457 17.5311 155.435 17.4665Z" fill="#FDFFFF"/>
|
||||
<path d="M157.711 18.1125C157.684 18.034 157.721 17.9635 157.793 17.9551C157.865 17.9468 157.945 18.0037 157.972 18.0823C157.999 18.1609 157.963 18.2314 157.891 18.2397C157.819 18.2481 157.739 18.1911 157.711 18.1125Z" fill="#FDFFFF"/>
|
||||
<path d="M135.744 19.1894C135.706 19.093 135.614 19.0558 135.539 19.1063C135.464 19.1567 135.434 19.2758 135.472 19.3723C135.51 19.4687 135.602 19.5059 135.677 19.4555C135.752 19.405 135.782 19.2859 135.744 19.1894Z" fill="#FDFFFF"/>
|
||||
<path d="M130.962 19.962C130.921 19.8564 130.82 19.8156 130.738 19.8709C130.656 19.9262 130.623 20.0567 130.665 20.1623C130.706 20.2679 130.807 20.3087 130.889 20.2534C130.971 20.1981 131.004 20.0676 130.962 19.962Z" fill="#FDFFFF"/>
|
||||
<path d="M130.241 21.1354C130.184 20.9931 130.049 20.9381 129.939 21.0127C129.828 21.0872 129.784 21.263 129.84 21.4054C129.896 21.5477 130.031 21.6027 130.142 21.5281C130.252 21.4536 130.297 21.2778 130.241 21.1354Z" fill="#FDFFFF"/>
|
||||
<path d="M127.559 21.2383C127.534 21.174 127.473 21.1492 127.423 21.1828C127.373 21.2165 127.353 21.2959 127.378 21.3602C127.403 21.4245 127.464 21.4493 127.514 21.4156C127.564 21.382 127.584 21.3026 127.559 21.2383Z" fill="#FDFFFF"/>
|
||||
<path d="M124.62 20.5593C124.539 20.3537 124.343 20.2743 124.183 20.3819C124.024 20.4896 123.96 20.7435 124.041 20.9491C124.122 21.1546 124.317 21.234 124.477 21.1264C124.637 21.0187 124.701 20.7648 124.62 20.5593Z" fill="#FDFFFF"/>
|
||||
<path d="M123.94 21.6646C123.913 21.5957 123.847 21.5691 123.794 21.6052C123.74 21.6413 123.719 21.7263 123.746 21.7952C123.773 21.8641 123.838 21.8907 123.892 21.8546C123.945 21.8186 123.967 21.7335 123.94 21.6646Z" fill="#FDFFFF"/>
|
||||
<path d="M128.736 23.8839C128.694 23.7761 128.591 23.7345 128.508 23.7909C128.424 23.8473 128.39 23.9804 128.433 24.0881C128.475 24.1959 128.578 24.2375 128.661 24.1811C128.745 24.1247 128.779 23.9916 128.736 23.8839Z" fill="#FDFFFF"/>
|
||||
<path d="M134.302 21.3635C134.291 21.3352 134.264 21.3242 134.242 21.3391C134.22 21.3539 134.211 21.389 134.222 21.4174C134.233 21.4457 134.26 21.4567 134.282 21.4418C134.304 21.427 134.313 21.3919 134.302 21.3635Z" fill="#FDFFFF"/>
|
||||
<path d="M136.39 20.2216C136.345 20.1065 136.236 20.062 136.146 20.1223C136.057 20.1826 136.021 20.3248 136.066 20.4399C136.112 20.5551 136.221 20.5996 136.311 20.5393C136.4 20.479 136.436 20.3367 136.39 20.2216Z" fill="#FDFFFF"/>
|
||||
<path d="M133.664 20.0039C133.601 19.8442 133.449 19.7826 133.325 19.8662C133.201 19.9498 133.151 20.147 133.214 20.3066C133.277 20.4663 133.429 20.5279 133.553 20.4443C133.677 20.3607 133.727 20.1635 133.664 20.0039Z" fill="#FDFFFF"/>
|
||||
<path d="M132.244 21.4362C132.225 21.3881 132.179 21.3696 132.142 21.3948C132.104 21.4199 132.089 21.4792 132.108 21.5273C132.127 21.5753 132.173 21.5939 132.21 21.5687C132.248 21.5436 132.262 21.4842 132.244 21.4362Z" fill="#FDFFFF"/>
|
||||
<path d="M130.286 16.0038C130.221 15.8378 130.063 15.7736 129.934 15.8606C129.805 15.9475 129.754 16.1525 129.819 16.3186C129.884 16.4846 130.042 16.5487 130.171 16.4617C130.3 16.3748 130.352 16.1698 130.286 16.0038Z" fill="#FDFFFF"/>
|
||||
<path d="M115.041 34.8643C114.949 34.6302 114.726 34.5397 114.544 34.6624C114.362 34.785 114.289 35.0742 114.382 35.3084C114.474 35.5426 114.696 35.633 114.879 35.5104C115.061 35.3878 115.133 35.0985 115.041 34.8643Z" fill="#FDFFFF"/>
|
||||
<path d="M127.573 18.0069C127.543 17.9292 127.469 17.8992 127.409 17.9399C127.348 17.9806 127.324 18.0765 127.355 18.1542C127.385 18.2319 127.459 18.2619 127.52 18.2212C127.58 18.1806 127.604 18.0846 127.573 18.0069Z" fill="#FDFFFF"/>
|
||||
<path d="M130.749 16.52C130.721 16.4469 130.651 16.4186 130.594 16.4569C130.537 16.4952 130.515 16.5855 130.544 16.6586C130.572 16.7317 130.642 16.76 130.699 16.7217C130.755 16.6834 130.778 16.5931 130.749 16.52Z" fill="#FDFFFF"/>
|
||||
<path d="M128.747 18.0288C128.719 17.9589 128.653 17.9319 128.598 17.9685C128.544 18.0052 128.522 18.0915 128.55 18.1615C128.577 18.2314 128.644 18.2584 128.698 18.2218C128.752 18.1852 128.774 18.0988 128.747 18.0288Z" fill="#FDFFFF"/>
|
||||
<path d="M132.483 16.7536C132.44 16.6456 132.338 16.6038 132.254 16.6604C132.17 16.717 132.136 16.8505 132.179 16.9586C132.221 17.0667 132.324 17.1084 132.408 17.0518C132.492 16.9952 132.526 16.8617 132.483 16.7536Z" fill="#FDFFFF"/>
|
||||
<path d="M118.635 24.5308C118.583 24.3987 118.457 24.3477 118.355 24.4169C118.252 24.486 118.211 24.6492 118.263 24.7813C118.315 24.9134 118.441 24.9644 118.543 24.8953C118.646 24.8261 118.687 24.6629 118.635 24.5308Z" fill="#FDFFFF"/>
|
||||
<path d="M116.895 25.8616C116.868 25.7934 116.804 25.7671 116.751 25.8028C116.698 25.8385 116.676 25.9227 116.703 25.9908C116.73 26.059 116.795 26.0853 116.848 26.0496C116.901 26.0139 116.922 25.9297 116.895 25.8616Z" fill="#FDFFFF"/>
|
||||
<path d="M115.586 28.9707C115.554 28.8909 115.478 28.8601 115.416 28.9019C115.354 28.9437 115.33 29.0422 115.361 29.1221C115.392 29.2019 115.468 29.2327 115.53 29.1909C115.592 29.1491 115.617 29.0505 115.586 28.9707Z" fill="#FDFFFF"/>
|
||||
<path d="M118.545 26.946C118.507 26.8513 118.417 26.8148 118.344 26.8644C118.27 26.9139 118.241 27.0308 118.278 27.1255C118.315 27.2201 118.405 27.2567 118.479 27.2071C118.553 27.1576 118.582 27.0406 118.545 26.946Z" fill="#FDFFFF"/>
|
||||
<path d="M121.259 26.0529C121.224 25.965 121.141 25.931 121.072 25.9771C121.004 26.0231 120.977 26.1317 121.011 26.2197C121.046 26.3076 121.13 26.3416 121.198 26.2955C121.266 26.2495 121.294 26.1408 121.259 26.0529Z" fill="#FDFFFF"/>
|
||||
<path d="M116.703 35.1522C116.668 35.0638 116.584 35.0297 116.516 35.076C116.447 35.1222 116.42 35.2313 116.455 35.3196C116.489 35.4079 116.573 35.442 116.642 35.3958C116.711 35.3495 116.738 35.2405 116.703 35.1522Z" fill="#FDFFFF"/>
|
||||
<path d="M113.127 36.3992C113.085 36.2921 112.983 36.2508 112.9 36.3068C112.817 36.3629 112.784 36.4951 112.826 36.6021C112.868 36.7091 112.97 36.7505 113.053 36.6944C113.136 36.6384 113.169 36.5062 113.127 36.3992Z" fill="#FDFFFF"/>
|
||||
<path d="M121.117 32.5428C121.058 32.3924 120.915 32.3342 120.798 32.413C120.681 32.4918 120.634 32.6777 120.693 32.8281C120.753 32.9786 120.896 33.0367 121.013 32.9579C121.13 32.8791 121.176 32.6933 121.117 32.5428Z" fill="#FDFFFF"/>
|
||||
<path d="M120.844 30.829C120.823 30.7739 120.77 30.7526 120.727 30.7814C120.685 30.8103 120.667 30.8783 120.689 30.9334C120.711 30.9885 120.763 31.0098 120.806 30.981C120.849 30.9521 120.866 30.8841 120.844 30.829Z" fill="#FDFFFF"/>
|
||||
<path d="M117.526 34.2497C117.501 34.1861 117.441 34.1616 117.391 34.1948C117.342 34.2281 117.322 34.3067 117.347 34.3702C117.372 34.4338 117.433 34.4584 117.482 34.4251C117.532 34.3918 117.551 34.3133 117.526 34.2497Z" fill="#FDFFFF"/>
|
||||
<path d="M116.217 36.223C116.187 36.1457 116.113 36.1158 116.053 36.1563C115.993 36.1968 115.969 36.2924 115.999 36.3697C116.03 36.4471 116.103 36.4769 116.164 36.4364C116.224 36.3959 116.248 36.3004 116.217 36.223Z" fill="#FDFFFF"/>
|
||||
<path d="M83.9741 67.8584C83.9361 67.7619 83.8445 67.7247 83.7696 67.7752C83.6946 67.8257 83.6646 67.9448 83.7027 68.0412C83.7407 68.1376 83.8323 68.1749 83.9072 68.1244C83.9822 68.0739 84.0122 67.9548 83.9741 67.8584Z" fill="#FDFFFF"/>
|
||||
<path d="M79.1907 68.63C79.1491 68.5244 79.0488 68.4836 78.9666 68.5389C78.8845 68.5942 78.8517 68.7246 78.8934 68.8303C78.935 68.9359 79.0353 68.9767 79.1174 68.9214C79.1995 68.8661 79.2323 68.7356 79.1907 68.63Z" fill="#FDFFFF"/>
|
||||
<path d="M78.471 69.8034C78.4149 69.6611 78.2797 69.6061 78.169 69.6806C78.0584 69.7552 78.0142 69.931 78.0703 70.0733C78.1264 70.2157 78.2616 70.2706 78.3723 70.1961C78.4829 70.1216 78.5272 69.9458 78.471 69.8034Z" fill="#FDFFFF"/>
|
||||
<path d="M75.7894 69.9062C75.7641 69.842 75.703 69.8171 75.653 69.8508C75.603 69.8845 75.5831 69.9639 75.6084 70.0281C75.6338 70.0924 75.6948 70.1172 75.7448 70.0836C75.7948 70.0499 75.8147 69.9705 75.7894 69.9062Z" fill="#FDFFFF"/>
|
||||
<path d="M72.85 69.2282C72.769 69.0226 72.5737 68.9432 72.4139 69.0509C72.254 69.1585 72.1902 69.4124 72.2712 69.618C72.3523 69.8236 72.5475 69.903 72.7074 69.7953C72.8672 69.6877 72.9311 69.4338 72.85 69.2282Z" fill="#FDFFFF"/>
|
||||
<path d="M72.1701 70.3326C72.143 70.2637 72.0776 70.2371 72.024 70.2732C71.9705 70.3092 71.9491 70.3943 71.9762 70.4632C72.0034 70.5321 72.0688 70.5587 72.1224 70.5226C72.1759 70.4865 72.1973 70.4015 72.1701 70.3326Z" fill="#FDFFFF"/>
|
||||
<path d="M76.9647 72.5518C76.9222 72.4441 76.8199 72.4025 76.7361 72.4589C76.6524 72.5153 76.6189 72.6484 76.6614 72.7561C76.7039 72.8638 76.8062 72.9054 76.8899 72.849C76.9737 72.7926 77.0072 72.6596 76.9647 72.5518Z" fill="#FDFFFF"/>
|
||||
<path d="M82.5304 70.0325C82.5192 70.0041 82.4922 69.9931 82.4701 70.008C82.4481 70.0229 82.4393 70.0579 82.4504 70.0863C82.4616 70.1147 82.4886 70.1256 82.5107 70.1108C82.5327 70.0959 82.5416 70.0609 82.5304 70.0325Z" fill="#FDFFFF"/>
|
||||
<path d="M84.619 68.8905C84.5736 68.7754 84.4642 68.7309 84.3747 68.7912C84.2851 68.8515 84.2494 68.9937 84.2948 69.1089C84.3402 69.224 84.4495 69.2685 84.5391 69.2082C84.6286 69.1479 84.6644 69.0057 84.619 68.8905Z" fill="#FDFFFF"/>
|
||||
<path d="M81.8941 68.6719C81.8312 68.5122 81.6796 68.4506 81.5554 68.5342C81.4313 68.6178 81.3817 68.8149 81.4446 68.9746C81.5076 69.1342 81.6592 69.1959 81.7833 69.1123C81.9075 69.0287 81.9571 68.8315 81.8941 68.6719Z" fill="#FDFFFF"/>
|
||||
<path d="M80.474 70.1042C80.4551 70.0561 80.4094 70.0376 80.3721 70.0627C80.3347 70.0879 80.3198 70.1472 80.3388 70.1952C80.3577 70.2433 80.4033 70.2618 80.4407 70.2367C80.478 70.2115 80.4929 70.1522 80.474 70.1042Z" fill="#FDFFFF"/>
|
||||
<path d="M78.5149 64.6717C78.4495 64.5057 78.2918 64.4416 78.1627 64.5285C78.0336 64.6155 77.9821 64.8205 78.0475 64.9865C78.113 65.1525 78.2706 65.2166 78.3997 65.1297C78.5288 65.0428 78.5804 64.8377 78.5149 64.6717Z" fill="#FDFFFF"/>
|
||||
<path d="M63.2715 83.5323C63.1792 83.2981 62.9567 83.2077 62.7746 83.3303C62.5926 83.453 62.5198 83.7422 62.6121 83.9764C62.7045 84.2106 62.9269 84.301 63.109 84.1784C63.291 84.0557 63.3638 83.7665 63.2715 83.5323Z" fill="#FDFFFF"/>
|
||||
<path d="M75.8039 66.6758C75.7733 66.5981 75.6995 66.5681 75.6391 66.6088C75.5787 66.6495 75.5545 66.7455 75.5852 66.8232C75.6158 66.9009 75.6896 66.9309 75.75 66.8902C75.8104 66.8495 75.8346 66.7535 75.8039 66.6758Z" fill="#FDFFFF"/>
|
||||
<path d="M78.9779 65.188C78.9491 65.1149 78.8796 65.0866 78.8228 65.1249C78.7659 65.1632 78.7432 65.2535 78.772 65.3266C78.8009 65.3997 78.8703 65.4279 78.9271 65.3897C78.984 65.3514 79.0067 65.2611 78.9779 65.188Z" fill="#FDFFFF"/>
|
||||
<path d="M76.9751 66.6968C76.9475 66.6269 76.8811 66.5999 76.8267 66.6365C76.7724 66.6731 76.7506 66.7595 76.7782 66.8294C76.8058 66.8994 76.8722 66.9264 76.9266 66.8897C76.981 66.8531 77.0027 66.7667 76.9751 66.6968Z" fill="#FDFFFF"/>
|
||||
<path d="M80.7115 65.4216C80.6689 65.3135 80.5663 65.2718 80.4822 65.3284C80.3982 65.385 80.3646 65.5185 80.4072 65.6266C80.4498 65.7346 80.5525 65.7764 80.6365 65.7198C80.7206 65.6632 80.7541 65.5297 80.7115 65.4216Z" fill="#FDFFFF"/>
|
||||
<path d="M66.8655 73.1998C66.8134 73.0677 66.688 73.0166 66.5853 73.0858C66.4826 73.155 66.4415 73.3181 66.4936 73.4503C66.5457 73.5824 66.6712 73.6334 66.7739 73.5642C66.8766 73.495 66.9176 73.3319 66.8655 73.1998Z" fill="#FDFFFF"/>
|
||||
<path d="M65.1237 74.5295C65.0969 74.4614 65.0321 74.435 64.9791 74.4707C64.9261 74.5064 64.9049 74.5906 64.9318 74.6588C64.9587 74.727 65.0234 74.7533 65.0764 74.7176C65.1294 74.6819 65.1506 74.5977 65.1237 74.5295Z" fill="#FDFFFF"/>
|
||||
<path d="M63.8143 77.6396C63.7828 77.5598 63.707 77.529 63.6449 77.5708C63.5828 77.6126 63.558 77.7112 63.5895 77.791C63.621 77.8708 63.6968 77.9017 63.7589 77.8599C63.8209 77.8181 63.8457 77.7195 63.8143 77.6396Z" fill="#FDFFFF"/>
|
||||
<path d="M66.7732 75.614C66.7359 75.5193 66.6459 75.4828 66.5723 75.5323C66.4987 75.5819 66.4693 75.6988 66.5067 75.7935C66.544 75.8881 66.6339 75.9247 66.7075 75.8751C66.7811 75.8255 66.8105 75.7086 66.7732 75.614Z" fill="#FDFFFF"/>
|
||||
<path d="M69.4876 74.7218C69.4529 74.6339 69.3694 74.5999 69.301 74.646C69.2326 74.692 69.2053 74.8007 69.24 74.8886C69.2746 74.9766 69.3582 75.0105 69.4265 74.9645C69.4949 74.9184 69.5223 74.8098 69.4876 74.7218Z" fill="#FDFFFF"/>
|
||||
<path d="M64.9317 83.8211C64.8969 83.7328 64.813 83.6987 64.7443 83.7449C64.6757 83.7912 64.6482 83.9002 64.6831 83.9885C64.7179 84.0768 64.8017 84.111 64.8704 84.0647C64.9391 84.0185 64.9665 83.9094 64.9317 83.8211Z" fill="#FDFFFF"/>
|
||||
<path d="M61.3558 85.0671C61.3136 84.9601 61.2119 84.9188 61.1287 84.9748C61.0455 85.0309 61.0123 85.1631 61.0545 85.2701C61.0967 85.3771 61.1983 85.4184 61.2815 85.3624C61.3647 85.3064 61.398 85.1742 61.3558 85.0671Z" fill="#FDFFFF"/>
|
||||
<path d="M69.3475 81.2118C69.2882 81.0613 69.1452 81.0032 69.0283 81.082C68.9113 81.1608 68.8645 81.3466 68.9238 81.4971C68.9832 81.6476 69.1261 81.7057 69.2431 81.6269C69.3601 81.5481 69.4068 81.3622 69.3475 81.2118Z" fill="#FDFFFF"/>
|
||||
<path d="M69.0728 79.4969C69.0511 79.4418 68.9988 79.4205 68.9559 79.4494C68.9131 79.4782 68.896 79.5463 68.9177 79.6014C68.9394 79.6565 68.9918 79.6778 69.0346 79.6489C69.0774 79.6201 69.0946 79.552 69.0728 79.4969Z" fill="#FDFFFF"/>
|
||||
<path d="M65.7547 82.9186C65.7297 82.8551 65.6693 82.8305 65.6198 82.8638C65.5704 82.8971 65.5507 82.9756 65.5757 83.0392C65.6008 83.1028 65.6612 83.1273 65.7106 83.094C65.76 83.0607 65.7798 82.9822 65.7547 82.9186Z" fill="#FDFFFF"/>
|
||||
<path d="M64.4458 84.891C64.4153 84.8136 64.3418 84.7838 64.2817 84.8243C64.2215 84.8648 64.1975 84.9603 64.228 85.0377C64.2585 85.115 64.332 85.1449 64.3921 85.1044C64.4522 85.0639 64.4763 84.9684 64.4458 84.891Z" fill="#FDFFFF"/>
|
||||
<path d="M104.931 40.9781C104.867 40.9496 104.847 40.8868 104.885 40.8379C104.923 40.789 105.005 40.7724 105.069 40.8009C105.132 40.8294 105.153 40.8922 105.115 40.9411C105.076 40.99 104.994 41.0066 104.931 40.9781Z" fill="#EEFFFD"/>
|
||||
<path d="M105.702 37.784C105.632 37.7527 105.61 37.684 105.651 37.6304C105.693 37.5769 105.783 37.5588 105.853 37.59C105.922 37.6212 105.945 37.6899 105.903 37.7435C105.861 37.797 105.771 37.8152 105.702 37.784Z" fill="#EEFFFD"/>
|
||||
<path d="M106.535 37.3347C106.441 37.2926 106.411 37.2 106.467 37.1278C106.524 37.0556 106.645 37.0312 106.739 37.0732C106.832 37.1153 106.863 37.2079 106.806 37.2801C106.75 37.3523 106.629 37.3768 106.535 37.3347Z" fill="#EEFFFD"/>
|
||||
<path d="M106.744 35.5329C106.701 35.5139 106.688 35.4721 106.713 35.4395C106.738 35.4069 106.793 35.3958 106.836 35.4148C106.878 35.4338 106.892 35.4757 106.866 35.5083C106.841 35.5409 106.786 35.5519 106.744 35.5329Z" fill="#EEFFFD"/>
|
||||
<path d="M106.436 33.5352C106.3 33.4744 106.257 33.3406 106.338 33.2364C106.419 33.1321 106.595 33.0968 106.73 33.1576C106.865 33.2183 106.909 33.3521 106.827 33.4564C106.746 33.5606 106.571 33.5959 106.436 33.5352Z" fill="#EEFFFD"/>
|
||||
<path d="M107.22 33.1111C107.174 33.0908 107.16 33.046 107.187 33.011C107.214 32.9761 107.273 32.9643 107.318 32.9846C107.364 33.005 107.378 33.0498 107.351 33.0847C107.324 33.1197 107.265 33.1315 107.22 33.1111Z" fill="#EEFFFD"/>
|
||||
<path d="M108.477 36.4049C108.406 36.373 108.384 36.3029 108.426 36.2483C108.469 36.1936 108.561 36.1752 108.631 36.207C108.702 36.2388 108.725 36.3089 108.683 36.3636C108.64 36.4182 108.548 36.4367 108.477 36.4049Z" fill="#EEFFFD"/>
|
||||
<path d="M106.479 40.0726C106.461 40.0644 106.455 40.0461 106.466 40.0319C106.477 40.0176 106.501 40.0128 106.519 40.0211C106.538 40.0294 106.544 40.0477 106.533 40.0619C106.522 40.0761 106.498 40.0809 106.479 40.0726Z" fill="#EEFFFD"/>
|
||||
<path d="M105.596 41.4438C105.521 41.4098 105.496 41.3349 105.542 41.2765C105.587 41.2181 105.686 41.1983 105.761 41.2323C105.837 41.2664 105.862 41.3413 105.816 41.3997C105.77 41.4581 105.672 41.4779 105.596 41.4438Z" fill="#EEFFFD"/>
|
||||
<path d="M105.591 39.6033C105.486 39.5561 105.452 39.4522 105.515 39.3713C105.578 39.2903 105.715 39.2629 105.82 39.3101C105.925 39.3573 105.959 39.4612 105.895 39.5421C105.832 39.6231 105.696 39.6505 105.591 39.6033Z" fill="#EEFFFD"/>
|
||||
<path d="M106.634 38.6914C106.602 38.6772 106.592 38.646 106.611 38.6216C106.63 38.5972 106.671 38.589 106.703 38.6032C106.734 38.6174 106.744 38.6487 106.725 38.673C106.706 38.6974 106.665 38.7056 106.634 38.6914Z" fill="#EEFFFD"/>
|
||||
<path d="M103.053 37.2093C102.944 37.1602 102.908 37.0522 102.974 36.968C103.04 36.8837 103.181 36.8553 103.291 36.9043C103.4 36.9534 103.435 37.0614 103.369 37.1456C103.304 37.2298 103.162 37.2583 103.053 37.2093Z" fill="#EEFFFD"/>
|
||||
<path d="M116.63 27.5246C116.476 27.4554 116.426 27.303 116.519 27.1842C116.611 27.0654 116.811 27.0252 116.965 27.0944C117.119 27.1636 117.169 27.316 117.077 27.4348C116.984 27.5536 116.784 27.5938 116.63 27.5246Z" fill="#EEFFFD"/>
|
||||
<path d="M104.554 35.4449C104.503 35.4219 104.486 35.3714 104.517 35.332C104.548 35.2925 104.614 35.2792 104.665 35.3022C104.716 35.3251 104.733 35.3757 104.702 35.4151C104.671 35.4545 104.605 35.4679 104.554 35.4449Z" fill="#EEFFFD"/>
|
||||
<path d="M103.379 37.5366C103.331 37.515 103.315 37.4674 103.344 37.4303C103.373 37.3932 103.435 37.3807 103.483 37.4023C103.531 37.4239 103.547 37.4715 103.518 37.5086C103.489 37.5456 103.427 37.5582 103.379 37.5366Z" fill="#EEFFFD"/>
|
||||
<path d="M104.506 36.2346C104.46 36.2139 104.445 36.1684 104.473 36.1329C104.501 36.0975 104.56 36.0855 104.606 36.1061C104.652 36.1268 104.667 36.1723 104.639 36.2078C104.612 36.2433 104.552 36.2553 104.506 36.2346Z" fill="#EEFFFD"/>
|
||||
<path d="M103.447 38.7091C103.376 38.6771 103.353 38.6068 103.396 38.5519C103.438 38.4971 103.531 38.4786 103.602 38.5105C103.673 38.5425 103.696 38.6128 103.653 38.6676C103.61 38.7224 103.518 38.741 103.447 38.7091Z" fill="#EEFFFD"/>
|
||||
<path d="M109.439 29.629C109.352 29.5899 109.324 29.504 109.376 29.437C109.428 29.37 109.541 29.3473 109.628 29.3863C109.715 29.4254 109.743 29.5114 109.691 29.5784C109.638 29.6454 109.526 29.668 109.439 29.629Z" fill="#EEFFFD"/>
|
||||
<path d="M110.431 28.4979C110.386 28.4778 110.371 28.4334 110.398 28.3988C110.425 28.3643 110.483 28.3526 110.528 28.3727C110.573 28.3928 110.588 28.4372 110.561 28.4718C110.534 28.5064 110.475 28.5181 110.431 28.4979Z" fill="#EEFFFD"/>
|
||||
<path d="M112.607 27.7123C112.555 27.6887 112.538 27.6368 112.569 27.5963C112.601 27.5558 112.669 27.5421 112.721 27.5657C112.774 27.5893 112.791 27.6412 112.759 27.6817C112.728 27.7222 112.66 27.7359 112.607 27.7123Z" fill="#EEFFFD"/>
|
||||
<path d="M111.08 29.6418C111.018 29.6138 110.998 29.5522 111.035 29.5042C111.072 29.4562 111.153 29.4399 111.215 29.4679C111.278 29.4959 111.298 29.5575 111.26 29.6055C111.223 29.6535 111.142 29.6698 111.08 29.6418Z" fill="#EEFFFD"/>
|
||||
<path d="M110.334 31.4407C110.276 31.4147 110.257 31.3574 110.292 31.3128C110.327 31.2682 110.402 31.2531 110.46 31.2791C110.518 31.3051 110.536 31.3623 110.501 31.4069C110.467 31.4516 110.392 31.4667 110.334 31.4407Z" fill="#EEFFFD"/>
|
||||
<path d="M116.741 28.6511C116.683 28.625 116.664 28.5675 116.699 28.5227C116.734 28.4779 116.809 28.4628 116.868 28.4889C116.926 28.515 116.944 28.5724 116.909 28.6172C116.875 28.662 116.799 28.6772 116.741 28.6511Z" fill="#EEFFFD"/>
|
||||
<path d="M117.77 26.2819C117.7 26.2503 117.677 26.1806 117.719 26.1263C117.762 26.072 117.853 26.0537 117.923 26.0853C117.994 26.1169 118.016 26.1866 117.974 26.2409C117.932 26.2952 117.841 26.3135 117.77 26.2819Z" fill="#EEFFFD"/>
|
||||
<path d="M114.742 31.5425C114.643 31.4981 114.611 31.4002 114.671 31.3238C114.73 31.2475 114.859 31.2217 114.958 31.2662C115.057 31.3106 115.088 31.4085 115.029 31.4849C114.97 31.5612 114.841 31.587 114.742 31.5425Z" fill="#EEFFFD"/>
|
||||
<path d="M113.594 31.3061C113.558 31.2898 113.546 31.254 113.568 31.226C113.589 31.1981 113.636 31.1886 113.673 31.2049C113.709 31.2212 113.721 31.257 113.699 31.285C113.677 31.3129 113.63 31.3224 113.594 31.3061Z" fill="#EEFFFD"/>
|
||||
<path d="M116.085 29.1765C116.043 29.1577 116.03 29.1163 116.055 29.0841C116.08 29.0519 116.134 29.0409 116.176 29.0597C116.218 29.0785 116.232 29.1199 116.206 29.1521C116.181 29.1844 116.127 29.1953 116.085 29.1765Z" fill="#EEFFFD"/>
|
||||
<path d="M117.491 28.3556C117.44 28.3327 117.423 28.2824 117.454 28.2431C117.484 28.2039 117.55 28.1906 117.601 28.2135C117.652 28.2364 117.669 28.2867 117.638 28.3259C117.607 28.3652 117.541 28.3784 117.491 28.3556Z" fill="#EEFFFD"/>
|
||||
<path d="M79.9624 61.0649C79.9051 61.0139 79.9002 60.9405 79.9515 60.9009C80.0028 60.8613 80.0909 60.8705 80.1482 60.9214C80.2055 60.9724 80.2104 61.0458 80.1591 61.0854C80.1077 61.125 80.0197 61.1158 79.9624 61.0649Z" fill="#EEFFFD"/>
|
||||
<path d="M81.5637 57.9184C81.501 57.8626 81.4956 57.7822 81.5518 57.7388C81.608 57.6954 81.7045 57.7055 81.7672 57.7613C81.83 57.8171 81.8353 57.8975 81.7791 57.9409C81.7229 57.9842 81.6265 57.9742 81.5637 57.9184Z" fill="#EEFFFD"/>
|
||||
<path d="M82.5257 57.7123C82.4411 57.6371 82.4339 57.5287 82.5097 57.4703C82.5854 57.4118 82.7154 57.4254 82.8 57.5006C82.8846 57.5758 82.8917 57.6841 82.816 57.7426C82.7402 57.8011 82.6103 57.7875 82.5257 57.7123Z" fill="#EEFFFD"/>
|
||||
<path d="M83.1995 55.8642C83.1613 55.8302 83.1581 55.7813 83.1923 55.7549C83.2265 55.7285 83.2852 55.7346 83.3234 55.7686C83.3616 55.8025 83.3648 55.8515 83.3306 55.8779C83.2964 55.9043 83.2377 55.8982 83.1995 55.8642Z" fill="#EEFFFD"/>
|
||||
<path d="M83.3964 53.6404C83.2742 53.5318 83.2638 53.3753 83.3732 53.2908C83.4826 53.2064 83.6703 53.226 83.7925 53.3346C83.9146 53.4432 83.925 53.5997 83.8156 53.6841C83.7062 53.7686 83.5185 53.749 83.3964 53.6404Z" fill="#EEFFFD"/>
|
||||
<path d="M84.3029 53.4438C84.262 53.4074 84.2585 53.355 84.2952 53.3267C84.3318 53.2984 84.3947 53.305 84.4357 53.3413C84.4766 53.3777 84.4801 53.4302 84.4434 53.4585C84.4068 53.4867 84.3439 53.4802 84.3029 53.4438Z" fill="#EEFFFD"/>
|
||||
<path d="M84.7409 57.3541C84.6769 57.2972 84.6715 57.2151 84.7288 57.1709C84.7861 57.1266 84.8845 57.1369 84.9485 57.1938C85.0126 57.2507 85.018 57.3327 84.9607 57.377C84.9033 57.4212 84.805 57.411 84.7409 57.3541Z" fill="#EEFFFD"/>
|
||||
<path d="M81.7712 60.6047C81.7546 60.5899 81.7532 60.5686 81.7681 60.557C81.783 60.5455 81.8086 60.5482 81.8253 60.563C81.842 60.5778 81.8434 60.5992 81.8284 60.6107C81.8135 60.6222 81.7879 60.6196 81.7712 60.6047Z" fill="#EEFFFD"/>
|
||||
<path d="M80.5234 61.776C80.4549 61.7151 80.4491 61.6275 80.5104 61.5802C80.5717 61.5329 80.6768 61.5439 80.7452 61.6047C80.8137 61.6655 80.8195 61.7532 80.7582 61.8005C80.6969 61.8478 80.5918 61.8368 80.5234 61.776Z" fill="#EEFFFD"/>
|
||||
<path d="M80.9854 59.8162C80.8905 59.7319 80.8825 59.6103 80.9675 59.5447C81.0524 59.4792 81.1982 59.4944 81.2931 59.5787C81.3879 59.6631 81.396 59.7846 81.311 59.8502C81.2261 59.9158 81.0803 59.9005 80.9854 59.8162Z" fill="#EEFFFD"/>
|
||||
<path d="M82.2835 59.1866C82.2549 59.1613 82.2525 59.1247 82.2781 59.105C82.3036 59.0852 82.3475 59.0898 82.376 59.1152C82.4046 59.1406 82.407 59.1771 82.3815 59.1969C82.3559 59.2166 82.312 59.212 82.2835 59.1866Z" fill="#EEFFFD"/>
|
||||
<path d="M79.0132 56.4446C78.9145 56.3569 78.9062 56.2305 78.9945 56.1623C79.0829 56.0941 79.2344 56.1099 79.3331 56.1976C79.4317 56.2853 79.4401 56.4117 79.3518 56.4799C79.2634 56.5481 79.1119 56.5323 79.0132 56.4446Z" fill="#EEFFFD"/>
|
||||
<path d="M95.3124 50.5648C95.1732 50.441 95.1614 50.2628 95.286 50.1666C95.4107 50.0704 95.6245 50.0927 95.7636 50.2164C95.9028 50.3401 95.9146 50.5184 95.79 50.6146C95.6654 50.7108 95.4516 50.6885 95.3124 50.5648Z" fill="#EEFFFD"/>
|
||||
<path d="M80.9913 55.0579C80.9451 55.0168 80.9412 54.9577 80.9825 54.9257C81.0239 54.8938 81.0948 54.9012 81.141 54.9423C81.1872 54.9833 81.1911 55.0425 81.1497 55.0744C81.1084 55.1063 81.0374 55.0989 80.9913 55.0579Z" fill="#EEFFFD"/>
|
||||
<path d="M79.2609 56.9001C79.2175 56.8615 79.2138 56.8059 79.2527 56.7758C79.2916 56.7458 79.3584 56.7528 79.4018 56.7914C79.4452 56.83 79.4489 56.8857 79.41 56.9157C79.3711 56.9457 79.3044 56.9388 79.2609 56.9001Z" fill="#EEFFFD"/>
|
||||
<path d="M80.7412 55.8819C80.6996 55.8449 80.6961 55.7917 80.7333 55.7629C80.7705 55.7342 80.8344 55.7409 80.8759 55.7778C80.9175 55.8148 80.921 55.868 80.8838 55.8967C80.8466 55.9255 80.7827 55.9188 80.7412 55.8819Z" fill="#EEFFFD"/>
|
||||
<path d="M79.0329 58.1707C78.9686 58.1136 78.9632 58.0313 79.0207 57.9869C79.0782 57.9425 79.1769 57.9528 79.2411 58.0099C79.3054 58.067 79.3108 58.1493 79.2533 58.1937C79.1958 58.2381 79.0971 58.2278 79.0329 58.1707Z" fill="#EEFFFD"/>
|
||||
<path d="M87.451 50.4627C87.3725 50.3929 87.3658 50.2924 87.4361 50.2381C87.5064 50.1838 87.627 50.1964 87.7055 50.2662C87.784 50.336 87.7907 50.4366 87.7204 50.4908C87.6501 50.5451 87.5295 50.5325 87.451 50.4627Z" fill="#EEFFFD"/>
|
||||
<path d="M88.7523 49.5831C88.7118 49.5471 88.7084 49.4952 88.7447 49.4672C88.7809 49.4392 88.8432 49.4457 88.8837 49.4817C88.9242 49.5177 88.9276 49.5696 88.8914 49.5976C88.8551 49.6256 88.7928 49.6191 88.7523 49.5831Z" fill="#EEFFFD"/>
|
||||
<path d="M91.1685 49.4555C91.1211 49.4133 91.117 49.3525 91.1595 49.3197C91.202 49.287 91.2749 49.2946 91.3223 49.3367C91.3697 49.3789 91.3738 49.4397 91.3313 49.4725C91.2888 49.5052 91.2159 49.4976 91.1685 49.4555Z" fill="#EEFFFD"/>
|
||||
<path d="M89.12 51.0102C89.0638 50.9602 89.059 50.8882 89.1094 50.8493C89.1598 50.8104 89.2462 50.8194 89.3025 50.8694C89.3587 50.9194 89.3635 50.9915 89.3131 51.0304C89.2627 51.0692 89.1763 51.0602 89.12 51.0102Z" fill="#EEFFFD"/>
|
||||
<path d="M87.9019 52.6805C87.8497 52.634 87.8452 52.5671 87.892 52.531C87.9388 52.4948 88.0191 52.5032 88.0714 52.5497C88.1237 52.5961 88.1281 52.6631 88.0813 52.6992C88.0345 52.7353 87.9542 52.7269 87.9019 52.6805Z" fill="#EEFFFD"/>
|
||||
<path d="M95.1372 51.7988C95.0847 51.7522 95.0802 51.6849 95.1272 51.6487C95.1742 51.6124 95.2548 51.6208 95.3073 51.6675C95.3598 51.7141 95.3643 51.7814 95.3173 51.8176C95.2703 51.8539 95.1896 51.8455 95.1372 51.7988Z" fill="#EEFFFD"/>
|
||||
<path d="M96.7919 49.6154C96.7283 49.5589 96.7229 49.4774 96.7798 49.4334C96.8368 49.3895 96.9345 49.3997 96.9981 49.4562C97.0617 49.5128 97.0671 49.5942 97.0102 49.6382C96.9532 49.6822 96.8555 49.672 96.7919 49.6154Z" fill="#EEFFFD"/>
|
||||
<path d="M92.3646 54.2225C92.2751 54.143 92.2676 54.0284 92.3476 53.9666C92.4277 53.9048 92.5651 53.9192 92.6545 53.9986C92.7439 54.0781 92.7515 54.1927 92.6714 54.2545C92.5914 54.3163 92.454 54.302 92.3646 54.2225Z" fill="#EEFFFD"/>
|
||||
<path d="M91.2564 53.5986C91.2237 53.5695 91.2209 53.5275 91.2502 53.5049C91.2795 53.4823 91.3298 53.4875 91.3626 53.5166C91.3953 53.5457 91.3981 53.5877 91.3688 53.6103C91.3395 53.6329 91.2892 53.6277 91.2564 53.5986Z" fill="#EEFFFD"/>
|
||||
<path d="M94.3364 52.1451C94.2986 52.1115 94.2954 52.0631 94.3293 52.037C94.3631 52.0109 94.4212 52.0169 94.4589 52.0505C94.4967 52.0841 94.4999 52.1325 94.4661 52.1586C94.4323 52.1847 94.3742 52.1787 94.3364 52.1451Z" fill="#EEFFFD"/>
|
||||
<path d="M95.9787 51.7295C95.9327 51.6887 95.9288 51.6298 95.9699 51.598C96.0111 51.5662 96.0817 51.5736 96.1277 51.6145C96.1737 51.6554 96.1776 51.7142 96.1364 51.746C96.0952 51.7778 96.0246 51.7704 95.9787 51.7295Z" fill="#EEFFFD"/>
|
||||
<path d="M209.775 72.81C209.794 72.7333 209.861 72.7008 209.924 72.7373C209.988 72.7739 210.023 72.8656 210.004 72.9423C209.984 73.0189 209.917 73.0514 209.854 73.0149C209.791 72.9784 209.755 72.8866 209.775 72.81Z" fill="#EEFFFD"/>
|
||||
<path d="M213.557 73.2324C213.578 73.1485 213.651 73.1128 213.721 73.1528C213.79 73.1929 213.829 73.2933 213.808 73.3773C213.787 73.4612 213.713 73.4969 213.644 73.4569C213.575 73.4168 213.536 73.3164 213.557 73.2324Z" fill="#EEFFFD"/>
|
||||
<path d="M214.239 74.1184C214.267 74.0053 214.366 73.9573 214.46 74.0112C214.553 74.0651 214.606 74.2006 214.577 74.3137C214.549 74.4268 214.45 74.4748 214.356 74.4209C214.263 74.367 214.21 74.2315 214.239 74.1184Z" fill="#EEFFFD"/>
|
||||
<path d="M216.326 74.0976C216.339 74.0465 216.383 74.0248 216.425 74.0492C216.468 74.0735 216.491 74.1347 216.478 74.1858C216.466 74.2369 216.421 74.2586 216.379 74.2342C216.336 74.2099 216.313 74.1487 216.326 74.0976Z" fill="#EEFFFD"/>
|
||||
<path d="M218.529 73.4573C218.571 73.2938 218.714 73.2245 218.849 73.3024C218.984 73.3803 219.059 73.5759 219.018 73.7393C218.977 73.9027 218.834 73.972 218.699 73.8941C218.564 73.8163 218.488 73.6207 218.529 73.4573Z" fill="#EEFFFD"/>
|
||||
<path d="M219.172 74.2927C219.186 74.238 219.234 74.2147 219.279 74.2408C219.324 74.2669 219.349 74.3325 219.336 74.3872C219.322 74.4419 219.274 74.4652 219.229 74.4391C219.183 74.413 219.158 74.3475 219.172 74.2927Z" fill="#EEFFFD"/>
|
||||
<path d="M215.689 76.2059C215.711 76.1203 215.786 76.084 215.857 76.1248C215.927 76.1656 215.967 76.2681 215.945 76.3537C215.924 76.4394 215.849 76.4757 215.778 76.4349C215.707 76.3941 215.668 76.2916 215.689 76.2059Z" fill="#EEFFFD"/>
|
||||
<path d="M211.119 74.4524C211.125 74.4301 211.144 74.4207 211.163 74.4313C211.181 74.4419 211.192 74.4686 211.186 74.4909C211.18 74.5132 211.161 74.5226 211.142 74.512C211.124 74.5014 211.114 74.4747 211.119 74.4524Z" fill="#EEFFFD"/>
|
||||
<path d="M209.381 73.6392C209.405 73.5477 209.485 73.5088 209.56 73.5525C209.636 73.5961 209.678 73.7056 209.655 73.7972C209.632 73.8887 209.552 73.9275 209.476 73.8839C209.401 73.8403 209.358 73.7307 209.381 73.6392Z" fill="#EEFFFD"/>
|
||||
<path d="M211.47 73.3666C211.502 73.2397 211.613 73.1859 211.717 73.2464C211.822 73.3069 211.881 73.4588 211.849 73.5857C211.817 73.7126 211.706 73.7664 211.601 73.7059C211.496 73.6454 211.437 73.4935 211.47 73.3666Z" fill="#EEFFFD"/>
|
||||
<path d="M212.718 74.4294C212.727 74.3912 212.761 74.375 212.792 74.3932C212.824 74.4114 212.842 74.4571 212.832 74.4953C212.822 74.5335 212.789 74.5497 212.757 74.5315C212.726 74.5133 212.708 74.4676 212.718 74.4294Z" fill="#EEFFFD"/>
|
||||
<path d="M213.668 70.1183C213.701 69.9863 213.816 69.9303 213.925 69.9932C214.034 70.0561 214.096 70.2141 214.062 70.346C214.029 70.478 213.914 70.534 213.805 70.4711C213.696 70.4082 213.634 70.2502 213.668 70.1183Z" fill="#EEFFFD"/>
|
||||
<path d="M227.437 84.2489C227.484 84.0628 227.646 83.9838 227.8 84.0725C227.954 84.1612 228.04 84.3841 227.993 84.5702C227.946 84.7563 227.784 84.8353 227.63 84.7466C227.476 84.6579 227.39 84.435 227.437 84.2489Z" fill="#EEFFFD"/>
|
||||
<path d="M215.978 71.5784C215.994 71.5167 216.048 71.4905 216.099 71.5199C216.15 71.5493 216.179 71.6233 216.163 71.685C216.147 71.7468 216.093 71.773 216.042 71.7436C215.991 71.7141 215.963 71.6402 215.978 71.5784Z" fill="#EEFFFD"/>
|
||||
<path d="M213.363 70.5376C213.377 70.4795 213.428 70.4549 213.476 70.4826C213.524 70.5103 213.551 70.5798 213.536 70.6379C213.522 70.6961 213.471 70.7207 213.423 70.693C213.375 70.6653 213.348 70.5957 213.363 70.5376Z" fill="#EEFFFD"/>
|
||||
<path d="M215.07 71.6403C215.084 71.5847 215.133 71.5611 215.179 71.5876C215.225 71.6141 215.25 71.6807 215.236 71.7363C215.222 71.7919 215.174 71.8154 215.128 71.7889C215.082 71.7624 215.056 71.6959 215.07 71.6403Z" fill="#EEFFFD"/>
|
||||
<path d="M212.046 70.787C212.068 70.7011 212.143 70.6646 212.214 70.7056C212.285 70.7465 212.325 70.8494 212.303 70.9353C212.281 71.0212 212.206 71.0576 212.135 71.0167C212.064 70.9757 212.024 70.8729 212.046 70.787Z" fill="#EEFFFD"/>
|
||||
<path d="M223.576 76.3279C223.602 76.2228 223.694 76.1783 223.781 76.2283C223.868 76.2784 223.916 76.4041 223.89 76.5091C223.863 76.6141 223.771 76.6586 223.685 76.6086C223.598 76.5586 223.549 76.4329 223.576 76.3279Z" fill="#EEFFFD"/>
|
||||
<path d="M225.064 77.2986C225.078 77.2444 225.125 77.2214 225.17 77.2472C225.214 77.2731 225.24 77.3379 225.226 77.3921C225.212 77.4463 225.165 77.4693 225.12 77.4435C225.075 77.4176 225.05 77.3528 225.064 77.2986Z" fill="#EEFFFD"/>
|
||||
<path d="M226.402 79.674C226.418 79.6106 226.473 79.5837 226.526 79.6139C226.578 79.6442 226.608 79.7201 226.592 79.7836C226.576 79.847 226.52 79.8739 226.468 79.8437C226.415 79.8134 226.386 79.7375 226.402 79.674Z" fill="#EEFFFD"/>
|
||||
<path d="M223.899 78.2075C223.918 78.1323 223.984 78.1004 224.046 78.1362C224.108 78.1721 224.143 78.2622 224.124 78.3374C224.105 78.4126 224.039 78.4446 223.977 78.4087C223.915 78.3728 223.88 78.2828 223.899 78.2075Z" fill="#EEFFFD"/>
|
||||
<path d="M221.704 77.6131C221.721 77.5432 221.783 77.5136 221.84 77.5469C221.898 77.5802 221.931 77.6639 221.913 77.7338C221.895 77.8037 221.834 77.8333 221.776 77.8C221.719 77.7667 221.686 77.683 221.704 77.6131Z" fill="#EEFFFD"/>
|
||||
<path d="M226.18 84.5379C226.197 84.4677 226.259 84.4379 226.317 84.4714C226.375 84.5048 226.407 84.5888 226.39 84.659C226.372 84.7292 226.31 84.759 226.252 84.7256C226.194 84.6921 226.162 84.6081 226.18 84.5379Z" fill="#EEFFFD"/>
|
||||
<path d="M229.081 85.3739C229.103 85.2889 229.177 85.2528 229.248 85.2933C229.318 85.3339 229.357 85.4357 229.336 85.5208C229.314 85.6058 229.24 85.6419 229.17 85.6014C229.099 85.5608 229.06 85.459 229.081 85.3739Z" fill="#EEFFFD"/>
|
||||
<path d="M222.492 82.6698C222.522 82.5502 222.627 82.4994 222.726 82.5564C222.824 82.6135 222.88 82.7566 222.85 82.8762C222.819 82.9958 222.715 83.0466 222.616 82.9896C222.517 82.9326 222.462 82.7894 222.492 82.6698Z" fill="#EEFFFD"/>
|
||||
<path d="M222.524 81.3226C222.535 81.2788 222.573 81.2603 222.609 81.2811C222.646 81.302 222.666 81.3544 222.655 81.3982C222.644 81.442 222.605 81.4606 222.569 81.4397C222.533 81.4189 222.513 81.3664 222.524 81.3226Z" fill="#EEFFFD"/>
|
||||
<path d="M225.45 83.8642C225.463 83.8137 225.507 83.7923 225.549 83.8164C225.591 83.8404 225.614 83.9009 225.601 83.9515C225.588 84.002 225.544 84.0234 225.503 83.9994C225.461 83.9753 225.437 83.9148 225.45 83.8642Z" fill="#EEFFFD"/>
|
||||
<path d="M226.668 85.3538C226.684 85.2924 226.738 85.2663 226.789 85.2956C226.839 85.3249 226.868 85.3985 226.852 85.46C226.837 85.5214 226.783 85.5475 226.732 85.5182C226.681 85.4889 226.653 85.4153 226.668 85.3538Z" fill="#EEFFFD"/>
|
||||
<path d="M193.223 51.8575C193.255 51.7877 193.324 51.7615 193.377 51.7988C193.43 51.8362 193.447 51.923 193.415 51.9928C193.383 52.0626 193.314 52.0889 193.262 52.0515C193.209 52.0141 193.191 51.9273 193.223 51.8575Z" fill="#F5FFFE"/>
|
||||
<path d="M196.703 52.4615C196.737 52.3851 196.813 52.3563 196.871 52.3972C196.929 52.4381 196.947 52.5333 196.913 52.6097C196.878 52.6861 196.803 52.7149 196.745 52.674C196.687 52.633 196.668 52.5379 196.703 52.4615Z" fill="#F5FFFE"/>
|
||||
<path d="M197.183 53.3199C197.23 53.2169 197.331 53.1781 197.409 53.2332C197.487 53.2884 197.513 53.4166 197.466 53.5196C197.419 53.6226 197.317 53.6613 197.239 53.6062C197.161 53.551 197.136 53.4228 197.183 53.3199Z" fill="#F5FFFE"/>
|
||||
<path d="M199.147 53.4193C199.168 53.3728 199.214 53.3553 199.249 53.3802C199.284 53.4051 199.296 53.463 199.275 53.5095C199.254 53.556 199.208 53.5736 199.172 53.5487C199.137 53.5237 199.126 53.4659 199.147 53.4193Z" fill="#F5FFFE"/>
|
||||
<path d="M201.331 52.951C201.399 52.8023 201.545 52.7463 201.658 52.8259C201.771 52.9056 201.808 53.0907 201.74 53.2395C201.672 53.3882 201.526 53.4442 201.413 53.3646C201.3 53.2849 201.263 53.0998 201.331 52.951Z" fill="#F5FFFE"/>
|
||||
<path d="M201.785 53.7604C201.808 53.7106 201.857 53.6918 201.895 53.7185C201.932 53.7452 201.945 53.8072 201.922 53.857C201.899 53.9069 201.85 53.9256 201.812 53.8989C201.775 53.8723 201.762 53.8102 201.785 53.7604Z" fill="#F5FFFE"/>
|
||||
<path d="M198.178 55.3327C198.214 55.2548 198.29 55.2254 198.35 55.2671C198.409 55.3089 198.428 55.4059 198.392 55.4839C198.357 55.5618 198.28 55.5912 198.221 55.5494C198.162 55.5077 198.143 55.4107 198.178 55.3327Z" fill="#F5FFFE"/>
|
||||
<path d="M194.195 53.4532C194.205 53.4329 194.225 53.4253 194.24 53.4361C194.255 53.447 194.26 53.4723 194.251 53.4926C194.242 53.5128 194.222 53.5205 194.206 53.5096C194.191 53.4988 194.186 53.4735 194.195 53.4532Z" fill="#F5FFFE"/>
|
||||
<path d="M192.709 52.6026C192.747 52.5193 192.829 52.4879 192.892 52.5326C192.955 52.5772 192.976 52.6809 192.938 52.7642C192.9 52.8475 192.818 52.8789 192.755 52.8343C192.691 52.7896 192.671 52.6859 192.709 52.6026Z" fill="#F5FFFE"/>
|
||||
<path d="M194.719 52.4682C194.772 52.3527 194.886 52.3092 194.973 52.371C195.061 52.4329 195.089 52.5767 195.037 52.6922C194.984 52.8077 194.87 52.8512 194.783 52.7894C194.695 52.7275 194.666 52.5837 194.719 52.4682Z" fill="#F5FFFE"/>
|
||||
<path d="M195.703 53.522C195.718 53.4873 195.753 53.4742 195.779 53.4928C195.805 53.5114 195.814 53.5547 195.798 53.5894C195.782 53.6242 195.748 53.6373 195.722 53.6186C195.695 53.6 195.687 53.5568 195.703 53.522Z" fill="#F5FFFE"/>
|
||||
<path d="M197.359 49.5887C197.413 49.4685 197.532 49.4233 197.623 49.4876C197.714 49.5519 197.744 49.7015 197.689 49.8216C197.634 49.9417 197.516 49.9869 197.425 49.9226C197.334 49.8583 197.304 49.7088 197.359 49.5887Z" fill="#F5FFFE"/>
|
||||
<path d="M207.781 63.434C207.859 63.2645 208.025 63.2007 208.154 63.2915C208.283 63.3822 208.324 63.5931 208.247 63.7625C208.17 63.932 208.003 63.9958 207.875 63.9051C207.746 63.8143 207.704 63.6034 207.781 63.434Z" fill="#F5FFFE"/>
|
||||
<path d="M199.267 51.0704C199.292 51.0142 199.348 50.993 199.39 51.0231C199.433 51.0532 199.447 51.1232 199.421 51.1794C199.396 51.2357 199.34 51.2568 199.298 51.2267C199.255 51.1966 199.241 51.1266 199.267 51.0704Z" fill="#F5FFFE"/>
|
||||
<path d="M196.998 49.9598C197.022 49.9069 197.074 49.887 197.114 49.9153C197.154 49.9437 197.167 50.0095 197.143 50.0624C197.119 50.1153 197.067 50.1352 197.027 50.1069C196.987 50.0786 196.974 50.0127 196.998 49.9598Z" fill="#F5FFFE"/>
|
||||
<path d="M198.407 51.0759C198.43 51.0253 198.479 51.0062 198.518 51.0333C198.556 51.0604 198.569 51.1234 198.546 51.174C198.523 51.2246 198.473 51.2437 198.434 51.2166C198.396 51.1895 198.383 51.1265 198.407 51.0759Z" fill="#F5FFFE"/>
|
||||
<path d="M195.717 50.1159C195.752 50.0377 195.829 50.0083 195.889 50.0502C195.948 50.092 195.967 50.1894 195.932 50.2676C195.896 50.3458 195.819 50.3752 195.76 50.3334C195.7 50.2915 195.681 50.1941 195.717 50.1159Z" fill="#F5FFFE"/>
|
||||
<path d="M205.562 55.8916C205.606 55.796 205.7 55.76 205.772 55.8112C205.845 55.8624 205.869 55.9813 205.825 56.0769C205.781 56.1725 205.687 56.2085 205.615 56.1573C205.542 56.1061 205.519 55.9872 205.562 55.8916Z" fill="#F5FFFE"/>
|
||||
<path d="M206.786 56.8727C206.808 56.8233 206.857 56.8048 206.894 56.8312C206.932 56.8576 206.944 56.919 206.922 56.9683C206.899 57.0176 206.851 57.0362 206.813 57.0098C206.776 56.9834 206.763 56.922 206.786 56.8727Z" fill="#F5FFFE"/>
|
||||
<path d="M207.619 59.1448C207.646 59.087 207.703 59.0653 207.746 59.0962C207.79 59.1271 207.804 59.199 207.778 59.2568C207.752 59.3145 207.695 59.3363 207.651 59.3053C207.607 59.2744 207.593 59.2025 207.619 59.1448Z" fill="#F5FFFE"/>
|
||||
<path d="M205.53 57.6465C205.562 57.578 205.629 57.5522 205.681 57.5889C205.733 57.6256 205.75 57.7108 205.719 57.7793C205.687 57.8478 205.62 57.8736 205.568 57.8369C205.516 57.8002 205.499 57.715 205.53 57.6465Z" fill="#F5FFFE"/>
|
||||
<path d="M203.577 56.9743C203.606 56.9106 203.668 56.8867 203.717 56.9208C203.765 56.9548 203.781 57.034 203.752 57.0977C203.723 57.1613 203.66 57.1853 203.612 57.1512C203.563 57.1171 203.548 57.0379 203.577 56.9743Z" fill="#F5FFFE"/>
|
||||
<path d="M206.549 63.6296C206.578 63.5657 206.641 63.5416 206.689 63.5758C206.738 63.61 206.754 63.6896 206.725 63.7534C206.695 63.8173 206.633 63.8414 206.584 63.8072C206.536 63.773 206.52 63.6934 206.549 63.6296Z" fill="#F5FFFE"/>
|
||||
<path d="M209.124 64.5661C209.16 64.4886 209.236 64.4595 209.295 64.5009C209.354 64.5424 209.373 64.6388 209.337 64.7162C209.302 64.7937 209.226 64.8228 209.167 64.7814C209.108 64.7399 209.089 64.6435 209.124 64.5661Z" fill="#F5FFFE"/>
|
||||
<path d="M203.417 61.6933C203.467 61.5845 203.574 61.5435 203.657 61.6018C203.74 61.6601 203.766 61.7956 203.717 61.9044C203.667 62.0133 203.56 62.0543 203.477 61.996C203.395 61.9377 203.368 61.8022 203.417 61.6933Z" fill="#F5FFFE"/>
|
||||
<path d="M203.687 60.4501C203.705 60.4102 203.744 60.3952 203.775 60.4166C203.805 60.4379 203.815 60.4876 203.797 60.5274C203.778 60.5673 203.739 60.5823 203.709 60.561C203.679 60.5396 203.669 60.49 203.687 60.4501Z" fill="#F5FFFE"/>
|
||||
<path d="M205.984 62.9662C206.005 62.9202 206.05 62.9029 206.085 62.9275C206.12 62.9521 206.131 63.0094 206.11 63.0554C206.089 63.1014 206.044 63.1187 206.009 63.0941C205.974 63.0694 205.963 63.0122 205.984 62.9662Z" fill="#F5FFFE"/>
|
||||
<path d="M206.863 64.4103C206.889 64.3543 206.944 64.3332 206.986 64.3632C207.029 64.3931 207.042 64.4628 207.017 64.5188C206.991 64.5747 206.936 64.5958 206.894 64.5659C206.851 64.5359 206.838 64.4662 206.863 64.4103Z" fill="#F5FFFE"/>
|
||||
<g filter="url(#filter1_f_1642_5068)">
|
||||
<ellipse cx="152.263" cy="94.5287" rx="70.3507" ry="1.4027" fill="#270B31" fill-opacity="0.2"/>
|
||||
</g>
|
||||
<path d="M198.025 28.8654C199.6 27.0384 198.806 24.7612 198.806 24.7612L196.436 24.3101L196.585 24.1374L198.955 24.5742C199.866 27.1867 198.266 28.9113 198.266 28.9113L196.699 30.7397L196.449 30.6872L198.025 28.8654Z" fill="url(#paint3_linear_1642_5068)"/>
|
||||
<path d="M198.805 24.76C198.805 24.76 199.599 27.0376 198.024 28.8642C196.448 30.6913 196.448 30.6913 196.448 30.6913L194.079 30.2398L195.654 28.4133C195.654 28.4133 197.229 26.5867 196.435 24.3089L198.805 24.76Z" fill="url(#paint4_linear_1642_5068)"/>
|
||||
<path d="M160.846 47.8624L161.579 48.0022C161.579 48.0022 161.636 50.3121 162.958 51.9601L162.546 52.4568C162.546 52.4568 160.865 50.1772 160.846 47.8624Z" fill="url(#paint5_linear_1642_5068)"/>
|
||||
<path d="M200.397 29.3155L181.49 51.2351L160.163 47.1757L160.371 46.934L179.069 25.2569L200.082 29.2563L200.087 29.2573L200.39 29.3147L200.395 29.3148L200.397 29.3155Z" fill="#9C7AF3"/>
|
||||
<path d="M202.193 34.4692L202.407 35.084L183.501 57.0039L162.174 52.9448L161.574 51.9319C160.947 50.8764 160.534 49.7088 160.356 48.4945L160.163 47.1772L181.455 51.1368L200.396 29.3163L200.603 29.9113L200.39 30.1584L200.196 30.3833L181.697 51.8317L160.845 47.8626L160.917 48.3405C161.093 49.5054 161.486 50.6263 162.076 51.646L162.546 52.4572C162.755 52.4977 183.301 56.4309 183.301 56.4309L202.193 34.4692Z" fill="url(#paint6_linear_1642_5068)"/>
|
||||
<path d="M200.394 29.3163L200.393 29.318L181.454 51.1365L160.163 47.1772L160.371 46.9355L181.354 50.8394L200.085 29.2592L200.086 29.2588L200.39 29.3162L200.394 29.3163Z" fill="url(#paint7_linear_1642_5068)"/>
|
||||
<path d="M201.283 33.833C201.389 34.0248 201.494 34.1985 201.593 34.3566L183.096 55.8011L183.078 55.7899C182.797 55.4251 182.43 54.8714 182.146 54.135C182.125 54.0815 182.104 54.0268 182.085 53.9704C182.055 53.8872 182.026 53.8016 181.999 53.713C181.885 53.3464 181.812 52.9943 181.765 52.6749C181.718 52.3561 181.701 52.069 181.697 51.83L200.204 30.3732C200.22 30.5279 200.242 30.6962 200.271 30.8769C200.278 30.9201 200.285 30.9646 200.295 31.0102C200.343 31.2864 200.41 31.5877 200.499 31.9037C200.509 31.9439 200.52 31.9833 200.532 32.0229C200.572 32.1573 200.615 32.2936 200.663 32.4313C200.682 32.4866 200.702 32.5428 200.722 32.599L200.724 32.6035C200.747 32.6672 200.772 32.7307 200.797 32.7929L200.839 32.9009C200.964 33.2072 201.096 33.4842 201.231 33.7359C201.248 33.7691 201.266 33.802 201.283 33.833Z" fill="url(#paint8_linear_1642_5068)"/>
|
||||
<path d="M182 53.7132C181.773 52.9796 181.705 52.3075 181.699 51.8304L161.58 48.0011C161.596 48.5159 161.677 49.2546 161.969 50.0909C162.26 50.9228 162.654 51.5484 162.96 51.9611L181.399 55.4703L182.835 55.7436L183.079 55.7903C182.747 55.3592 182.295 54.6633 182 53.7132Z" fill="url(#paint9_linear_1642_5068)"/>
|
||||
<path d="M162.546 52.4561C162.756 52.497 183.301 56.4299 183.301 56.4299L202.193 34.4682L201.585 34.3339L183.073 55.7749L162.959 51.9594L162.546 52.4561Z" fill="url(#paint10_linear_1642_5068)"/>
|
||||
<path d="M200.722 32.5999L182.146 54.1359C182.125 54.0824 182.104 54.0277 182.085 53.9713L200.662 32.4323C200.682 32.4877 200.701 32.5438 200.722 32.5999Z" fill="url(#paint11_linear_1642_5068)"/>
|
||||
<path d="M187.916 37.332L175.31 34.9323L175.547 34.6636L188.154 37.0633L187.916 37.332Z" fill="#422D97"/>
|
||||
<path d="M189.11 35.9277L176.503 33.528L176.741 33.2593L189.347 35.6591L189.11 35.9277Z" fill="#422D97"/>
|
||||
<path d="M190.317 34.5547L177.71 32.155L177.948 31.8862L190.554 34.2861L190.317 34.5547Z" fill="#422D97"/>
|
||||
<path d="M191.512 33.1777L178.905 30.778L179.143 30.5093L191.749 32.9091L191.512 33.1777Z" fill="#422D97"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_f_1642_5068" x="41.6625" y="-1.33747" width="208.146" height="94.09" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="3.66873" result="effect1_foregroundBlur_1642_5068"/>
|
||||
</filter>
|
||||
<filter id="filter1_f_1642_5068" x="78.2435" y="89.4574" width="148.038" height="10.1428" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="1.8343" result="effect1_foregroundBlur_1642_5068"/>
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_1642_5068" x1="145.735" y1="6" x2="145.735" y2="85.4147" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#5AFFC4"/>
|
||||
<stop offset="1" stop-color="#2BDA9B" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1642_5068" x1="155.162" y1="11.0123" x2="155.162" y2="87.4039" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.161458" stop-color="#8CFFEA" stop-opacity="0.72"/>
|
||||
<stop offset="0.541667" stop-color="#9FDCFF" stop-opacity="0.3"/>
|
||||
<stop offset="1" stop-color="#ADFFAB" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1642_5068" x1="152.806" y1="11.4854" x2="152.806" y2="87.8769" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#8CFFEA" stop-opacity="0.72"/>
|
||||
<stop offset="0.390625" stop-color="#9FFFC5" stop-opacity="0.3"/>
|
||||
<stop offset="1" stop-color="#ADFFAB" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1642_5068" x1="199.595" y1="26.4088" x2="195.46" y2="27.8506" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="2.1e-07" stop-color="#4E5FA8"/>
|
||||
<stop offset="0.0911" stop-color="#5B6BAF"/>
|
||||
<stop offset="0.3189" stop-color="#7883BE"/>
|
||||
<stop offset="0.5473" stop-color="#8C94C9"/>
|
||||
<stop offset="0.7747" stop-color="#989FCF"/>
|
||||
<stop offset="1" stop-color="#9CA2D1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_1642_5068" x1="196.119" y1="30.6286" x2="197.291" y2="24.4719" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="2.1e-07" stop-color="#95D6DE"/>
|
||||
<stop offset="0.2852" stop-color="#CFEBEB"/>
|
||||
<stop offset="0.2982" stop-color="#D2ECEC"/>
|
||||
<stop offset="0.5193" stop-color="#C3E6E9"/>
|
||||
<stop offset="0.9456" stop-color="#9BD8E1"/>
|
||||
<stop offset="1" stop-color="#95D6E0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_1642_5068" x1="163.442" y1="51.4186" x2="160.194" y2="48.6179" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="1e-07" stop-color="#43499D"/>
|
||||
<stop offset="0.3238" stop-color="#726FB3"/>
|
||||
<stop offset="0.6107" stop-color="#958BC3"/>
|
||||
<stop offset="0.8459" stop-color="#AA9CCD"/>
|
||||
<stop offset="1" stop-color="#B2A2D1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_1642_5068" x1="196.045" y1="48.2585" x2="166.525" y2="34.0031" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="1.1e-07" stop-color="#33224E"/>
|
||||
<stop offset="0.1989" stop-color="#392453"/>
|
||||
<stop offset="0.4452" stop-color="#2F2A63"/>
|
||||
<stop offset="0.7164" stop-color="#50357C"/>
|
||||
<stop offset="1" stop-color="#50439E"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint7_linear_1642_5068" x1="187.58" y1="23.128" x2="172.977" y2="53.3656" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="1e-07" stop-color="#43499D"/>
|
||||
<stop offset="0.5971" stop-color="#777DBB"/>
|
||||
<stop offset="1" stop-color="#9CA2D1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint8_linear_1642_5068" x1="193.033" y1="44.2818" x2="190.266" y2="41.8951" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="1.1e-07" stop-color="#CFE0EF"/>
|
||||
<stop offset="0.3105" stop-color="#C7D5EA"/>
|
||||
<stop offset="0.8534" stop-color="#B0B8DC"/>
|
||||
<stop offset="1" stop-color="#A9AFD8"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint9_linear_1642_5068" x1="171.99" y1="53.6797" x2="172.669" y2="50.1117" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFFDF7"/>
|
||||
<stop offset="0.3511" stop-color="#E8EFF3"/>
|
||||
<stop offset="0.7303" stop-color="#D6E4F0"/>
|
||||
<stop offset="1" stop-color="#CFE0EF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint10_linear_1642_5068" x1="184.718" y1="31.1234" x2="180.02" y2="55.8054" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="1e-07" stop-color="#43499D"/>
|
||||
<stop offset="0.3185" stop-color="#454B9E"/>
|
||||
<stop offset="0.4941" stop-color="#4D51A2"/>
|
||||
<stop offset="0.635" stop-color="#5B5CA8"/>
|
||||
<stop offset="0.7574" stop-color="#6F6CB1"/>
|
||||
<stop offset="0.8678" stop-color="#8880BD"/>
|
||||
<stop offset="0.9681" stop-color="#A799CC"/>
|
||||
<stop offset="1" stop-color="#B2A2D1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint11_linear_1642_5068" x1="203.034" y1="39.229" x2="179.772" y2="47.3401" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="2.1e-07" stop-color="#9DA3C9"/>
|
||||
<stop offset="0.0387" stop-color="#9397BB"/>
|
||||
<stop offset="0.1977" stop-color="#9FA5C5"/>
|
||||
<stop offset="0.7287" stop-color="#C2D0E3"/>
|
||||
<stop offset="1" stop-color="#CFE0EF"/>
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_1642_5068">
|
||||
<rect width="292" height="102.768" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 58 KiB |
307
newIDE/app/public/res/questionnaire/through-a-teacher.svg
Normal file
@@ -0,0 +1,307 @@
|
||||
<svg width="292" height="103" viewBox="0 0 292 103" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="292" height="102.768" fill="#1D1D26"/>
|
||||
<g filter="url(#filter0_f_1649_5538)">
|
||||
<ellipse cx="152.263" cy="94.5287" rx="70.3507" ry="1.4027" fill="#270B31" fill-opacity="0.2"/>
|
||||
</g>
|
||||
<path d="M207.582 76.0613C213.614 81.3492 208.834 86.0825 209.232 87.5282H81.2585C83.9898 87.2906 76.2511 86.9935 78.1858 78.8538C80.1204 70.7141 89.5093 66.971 89.6232 65.3074C89.737 63.6438 84.2743 57.4647 88.4282 53.3652C92.5821 49.2656 92.2976 50.4539 92.5252 43.9777C92.7528 37.5016 96.3376 24.6682 110.791 22.4104C125.244 20.1527 128.431 26.0941 132.869 30.7878C137.307 35.4815 137.421 38.7493 140.323 39.5217C143.225 40.2941 146.639 38.0363 150.395 39.5217C154.15 41.007 154.037 43.0865 156.256 43.0865C158.475 43.0865 161.434 40.1752 168.149 43.0865C173.52 45.4155 175.015 54.7119 175.091 59.0689C177.424 57.1676 180.724 55.7417 184.764 55.5041C188.804 55.2664 192.901 57.8212 196.486 64.1191C200.071 70.417 198.876 73.0312 200.355 73.9818C201.835 74.9325 205.319 74.0776 207.582 76.0613Z" fill="url(#paint0_radial_1649_5538)"/>
|
||||
<path d="M214.679 78.0029C221.156 83.6173 216.024 88.6429 216.451 90.1779H67.6373C70.5701 89.9256 62.2603 89.6102 64.3378 80.9678C66.4152 72.3254 87.8943 68.3511 88.0165 66.5848C88.1387 64.8184 82.273 58.2578 86.7334 53.905C91.1938 49.5523 90.8883 50.814 91.1327 43.9379C91.3771 37.0618 95.2264 23.4358 110.746 21.0386C126.266 18.6415 129.688 24.9498 134.453 29.9334C139.219 34.917 139.342 38.3865 142.458 39.2066C145.574 40.0267 149.24 37.6295 153.273 39.2066C157.305 40.7837 157.183 42.9916 159.566 42.9916C161.949 42.9916 165.126 39.9005 172.336 42.9916C178.104 45.4645 179.709 55.3349 179.791 59.961C182.296 57.9424 185.84 56.4284 190.178 56.176C194.516 55.9237 198.915 58.6363 202.765 65.3231C206.614 72.0099 205.331 74.7856 206.92 75.7949C208.508 76.8043 212.25 75.8967 214.679 78.0029Z" fill="url(#paint1_linear_1649_5538)"/>
|
||||
<path d="M228.576 92.5154C228.149 90.9916 229.524 84.0631 223.281 78.1816C218.669 73.837 210.231 74.8389 208.644 73.837C207.056 72.835 208.338 70.0797 204.492 63.4418C200.646 56.8039 196.25 54.1112 191.916 54.3617C187.581 54.6122 184.04 56.1151 181.537 58.119C181.456 53.5267 179.852 43.7285 174.089 41.2738C166.885 38.2053 165.761 39.5809 163.38 39.5809C160.999 39.5809 161.374 36.4314 157.344 34.8658C153.315 33.3003 150.323 36.6229 147.209 35.8088C144.095 34.9948 140.999 33.2582 136.237 28.3111C131.475 23.364 125.003 20.6722 113.216 22.4809C97.7091 24.8606 94.9547 32.8181 94.7105 39.6438C94.4663 46.4695 90.3812 45.8764 88.5565 52.1073C86.7959 58.1189 89.9606 62.9408 89.8385 64.6942C89.7164 66.4476 76.0032 70.0425 73.9275 78.6217C72.4954 84.5405 75.1533 89.5048 75.4809 91.1471L73.9275 91.1332C75.3047 91.9522 75.6282 91.8852 75.4809 91.1471L228.576 92.5154Z" fill="url(#paint2_linear_1649_5538)" fill-opacity="0.4"/>
|
||||
<path d="M111.601 26.8375C111.58 26.7532 111.515 26.6968 111.456 26.7117C111.398 26.7265 111.368 26.8069 111.389 26.8912C111.41 26.9756 111.475 27.0319 111.534 27.0171C111.592 27.0022 111.623 26.9218 111.601 26.8375Z" fill="#D1FEF9"/>
|
||||
<path d="M108.041 25.9435C108.018 25.8514 107.947 25.7899 107.883 25.8061C107.819 25.8223 107.786 25.9101 107.809 26.0022C107.833 26.0943 107.903 26.1558 107.967 26.1396C108.031 26.1234 108.064 26.0356 108.041 25.9435Z" fill="#D1FEF9"/>
|
||||
<path d="M107.433 26.6014C107.402 26.4773 107.306 26.3944 107.22 26.4162C107.134 26.4381 107.089 26.5564 107.121 26.6805C107.152 26.8047 107.248 26.8876 107.334 26.8657C107.42 26.8439 107.465 26.7255 107.433 26.6014Z" fill="#D1FEF9"/>
|
||||
<path d="M105.459 25.8526C105.445 25.7964 105.402 25.7588 105.363 25.7687C105.324 25.7786 105.304 25.8322 105.318 25.8884C105.332 25.9447 105.375 25.9822 105.414 25.9723C105.454 25.9624 105.474 25.9088 105.459 25.8526Z" fill="#D1FEF9"/>
|
||||
<path d="M103.349 24.4391C103.304 24.2598 103.166 24.1401 103.042 24.1716C102.917 24.2032 102.853 24.3741 102.898 24.5533C102.944 24.7326 103.081 24.8524 103.206 24.8208C103.331 24.7893 103.395 24.6184 103.349 24.4391Z" fill="#D1FEF9"/>
|
||||
<path d="M102.776 25.0576C102.761 24.9974 102.715 24.9571 102.673 24.9677C102.631 24.9783 102.609 25.0358 102.625 25.096C102.64 25.1562 102.686 25.1965 102.728 25.1859C102.77 25.1753 102.792 25.1179 102.776 25.0576Z" fill="#D1FEF9"/>
|
||||
<path d="M106.141 28.2017C106.117 28.1077 106.045 28.045 105.979 28.0615C105.914 28.078 105.88 28.1676 105.904 28.2615C105.928 28.3555 106 28.4182 106.065 28.4017C106.131 28.3852 106.164 28.2956 106.141 28.2017Z" fill="#D1FEF9"/>
|
||||
<path d="M110.395 28.0253C110.388 28.0006 110.369 27.9841 110.352 27.9884C110.335 27.9928 110.326 28.0164 110.332 28.0411C110.339 28.0659 110.358 28.0824 110.375 28.0781C110.392 28.0737 110.401 28.0501 110.395 28.0253Z" fill="#D1FEF9"/>
|
||||
<path d="M112.003 27.8108C111.978 27.7104 111.901 27.6434 111.831 27.661C111.761 27.6787 111.725 27.7744 111.751 27.8748C111.776 27.9752 111.853 28.0423 111.923 28.0246C111.993 28.007 112.029 27.9113 112.003 27.8108Z" fill="#D1FEF9"/>
|
||||
<path d="M110.021 26.8076C109.986 26.6684 109.879 26.5754 109.782 26.5999C109.685 26.6244 109.635 26.7571 109.671 26.8964C109.706 27.0356 109.813 27.1286 109.91 27.1041C110.006 27.0796 110.056 26.9469 110.021 26.8076Z" fill="#D1FEF9"/>
|
||||
<path d="M108.881 27.445C108.871 27.403 108.838 27.3749 108.809 27.3823C108.78 27.3897 108.765 27.4298 108.776 27.4718C108.786 27.5138 108.819 27.5419 108.848 27.5345C108.877 27.5271 108.892 27.487 108.881 27.445Z" fill="#D1FEF9"/>
|
||||
<path d="M107.815 22.7638C107.779 22.619 107.668 22.5223 107.567 22.5478C107.466 22.5733 107.415 22.7113 107.451 22.856C107.488 23.0008 107.599 23.0975 107.7 23.072C107.8 23.0466 107.852 22.9086 107.815 22.7638Z" fill="#D1FEF9"/>
|
||||
<path d="M95.3479 32.2228C95.2962 32.0185 95.1393 31.8821 94.9974 31.9181C94.8555 31.954 94.7824 32.1487 94.8341 32.3529C94.8858 32.5571 95.0428 32.6935 95.1847 32.6576C95.3266 32.6216 95.3997 32.427 95.3479 32.2228Z" fill="#D1FEF9"/>
|
||||
<path d="M105.691 23.4332C105.673 23.3653 105.621 23.3199 105.574 23.3318C105.527 23.3438 105.502 23.4086 105.52 23.4766C105.537 23.5445 105.589 23.5899 105.636 23.578C105.684 23.566 105.708 23.5012 105.691 23.4332Z" fill="#D1FEF9"/>
|
||||
<path d="M108.12 23.2937C108.104 23.2297 108.055 23.187 108.01 23.1982C107.966 23.2095 107.943 23.2705 107.959 23.3344C107.975 23.3984 108.024 23.4411 108.069 23.4298C108.113 23.4186 108.136 23.3576 108.12 23.2937Z" fill="#D1FEF9"/>
|
||||
<path d="M106.548 23.8093C106.532 23.7481 106.485 23.7072 106.443 23.718C106.4 23.7288 106.378 23.7871 106.394 23.8482C106.409 23.9094 106.456 23.9503 106.499 23.9395C106.541 23.9287 106.563 23.8704 106.548 23.8093Z" fill="#D1FEF9"/>
|
||||
<path d="M109.376 24.0046C109.352 23.9104 109.279 23.8474 109.214 23.864C109.148 23.8806 109.115 23.9704 109.138 24.0647C109.162 24.1589 109.235 24.2219 109.3 24.2053C109.366 24.1887 109.399 24.0989 109.376 24.0046Z" fill="#D1FEF9"/>
|
||||
<path d="M98.6902 25.5764C98.661 25.4612 98.5724 25.3842 98.4924 25.4045C98.4124 25.4248 98.3711 25.5346 98.4003 25.6498C98.4295 25.765 98.518 25.842 98.5981 25.8217C98.6781 25.8014 98.7193 25.6916 98.6902 25.5764Z" fill="#D1FEF9"/>
|
||||
<path d="M97.3219 26.0376C97.3068 25.978 97.261 25.9382 97.2195 25.9487C97.1781 25.9592 97.1568 26.016 97.1719 26.0756C97.187 26.1353 97.2328 26.1751 97.2742 26.1646C97.3157 26.1541 97.337 26.0973 97.3219 26.0376Z" fill="#D1FEF9"/>
|
||||
<path d="M96.1515 27.9678C96.1338 27.8979 96.0801 27.8513 96.0316 27.8636C95.9831 27.8759 95.9581 27.9424 95.9758 28.0123C95.9935 28.0821 96.0471 28.1287 96.0957 28.1164C96.1442 28.1041 96.1692 28.0376 96.1515 27.9678Z" fill="#D1FEF9"/>
|
||||
<path d="M98.4575 27.3598C98.4365 27.2771 98.3729 27.2217 98.3153 27.2363C98.2578 27.2509 98.2282 27.3298 98.2491 27.4126C98.2701 27.4954 98.3337 27.5507 98.3913 27.5361C98.4488 27.5215 98.4784 27.4426 98.4575 27.3598Z" fill="#D1FEF9"/>
|
||||
<path d="M100.51 27.5246C100.49 27.4477 100.431 27.3963 100.378 27.4098C100.324 27.4234 100.297 27.4967 100.316 27.5736C100.336 27.6505 100.395 27.7019 100.448 27.6884C100.502 27.6748 100.529 27.6015 100.51 27.5246Z" fill="#D1FEF9"/>
|
||||
<path d="M96.5476 32.9516C96.528 32.8743 96.4687 32.8227 96.415 32.8363C96.3613 32.8499 96.3337 32.9235 96.3533 33.0008C96.3728 33.078 96.4322 33.1296 96.4858 33.116C96.5395 33.1024 96.5671 33.0288 96.5476 32.9516Z" fill="#D1FEF9"/>
|
||||
<path d="M93.8405 32.7852C93.8168 32.6919 93.7451 32.6295 93.6803 32.646C93.6154 32.6624 93.582 32.7514 93.6056 32.8447C93.6293 32.938 93.701 33.0004 93.7659 32.9839C93.8307 32.9675 93.8641 32.8785 93.8405 32.7852Z" fill="#D1FEF9"/>
|
||||
<path d="M99.9633 32.3536C99.9301 32.2224 99.8293 32.1347 99.7381 32.1578C99.6469 32.1809 99.6 32.306 99.6332 32.4372C99.6664 32.5684 99.7673 32.6561 99.8584 32.633C99.9496 32.6099 99.9966 32.4848 99.9633 32.3536Z" fill="#D1FEF9"/>
|
||||
<path d="M99.8804 30.9826C99.8682 30.9344 99.8312 30.9022 99.7977 30.9107C99.7642 30.9192 99.7469 30.9651 99.7592 31.0133C99.7714 31.0615 99.8084 31.0937 99.8419 31.0852C99.8754 31.0767 99.8926 31.0308 99.8804 30.9826Z" fill="#D1FEF9"/>
|
||||
<path d="M97.2121 32.527C97.198 32.4714 97.1553 32.4342 97.1166 32.444C97.078 32.4538 97.0581 32.5068 97.0722 32.5624C97.0862 32.618 97.129 32.6552 97.1676 32.6454C97.2063 32.6356 97.2262 32.5826 97.2121 32.527Z" fill="#D1FEF9"/>
|
||||
<path d="M96.1177 33.6049C96.1006 33.5372 96.0486 33.492 96.0016 33.504C95.9546 33.5159 95.9304 33.5804 95.9475 33.648C95.9646 33.7157 96.0166 33.7609 96.0636 33.749C96.1106 33.737 96.1349 33.6726 96.1177 33.6049Z" fill="#D1FEF9"/>
|
||||
<path d="M101.437 26.396C101.414 26.4858 101.462 26.5595 101.545 26.5606C101.628 26.5617 101.714 26.4898 101.737 26.4C101.76 26.3101 101.712 26.2364 101.629 26.2353C101.547 26.2342 101.461 26.3061 101.437 26.396Z" fill="#D1FEF9"/>
|
||||
<path d="M105.398 28.2533C105.373 28.3514 105.425 28.4319 105.516 28.4331C105.606 28.4344 105.7 28.3558 105.725 28.2577C105.751 28.1596 105.698 28.0791 105.608 28.0779C105.517 28.0767 105.423 28.1552 105.398 28.2533Z" fill="#D1FEF9"/>
|
||||
<path d="M106.559 27.7618C106.525 27.894 106.596 28.0025 106.718 28.0042C106.84 28.0058 106.966 27.8999 107 27.7677C107.035 27.6355 106.964 27.527 106.842 27.5254C106.72 27.5237 106.593 27.6296 106.559 27.7618Z" fill="#D1FEF9"/>
|
||||
<path d="M108.604 29.0433C108.589 29.1031 108.621 29.1523 108.676 29.153C108.731 29.1538 108.788 29.1058 108.804 29.0459C108.819 28.986 108.787 28.9369 108.732 28.9362C108.677 28.9354 108.62 28.9834 108.604 29.0433Z" fill="#D1FEF9"/>
|
||||
<path d="M110.425 31.0247C110.376 31.2157 110.479 31.3724 110.655 31.3747C110.831 31.3771 111.013 31.2242 111.063 31.0332C111.112 30.8423 111.01 30.6856 110.834 30.6832C110.658 30.6809 110.475 30.8338 110.425 31.0247Z" fill="#D1FEF9"/>
|
||||
<path d="M111.517 30.5635C111.501 30.6277 111.535 30.6803 111.594 30.6811C111.654 30.6819 111.715 30.6305 111.732 30.5664C111.748 30.5022 111.714 30.4496 111.655 30.4488C111.595 30.448 111.534 30.4993 111.517 30.5635Z" fill="#D1FEF9"/>
|
||||
<path d="M109.142 26.5185C109.117 26.6186 109.17 26.7007 109.263 26.7019C109.355 26.7032 109.451 26.6231 109.477 26.523C109.502 26.4229 109.449 26.3408 109.356 26.3396C109.264 26.3383 109.168 26.4185 109.142 26.5185Z" fill="#D1FEF9"/>
|
||||
<path d="M103.669 25.5407C103.662 25.5671 103.676 25.5887 103.701 25.589C103.725 25.5894 103.75 25.5682 103.757 25.5419C103.764 25.5155 103.75 25.4939 103.726 25.4936C103.701 25.4932 103.676 25.5143 103.669 25.5407Z" fill="#D1FEF9"/>
|
||||
<path d="M101.509 25.3168C101.481 25.4238 101.539 25.5115 101.637 25.5129C101.736 25.5142 101.838 25.4285 101.866 25.3216C101.894 25.2146 101.836 25.1269 101.738 25.1255C101.639 25.1242 101.537 25.2099 101.509 25.3168Z" fill="#D1FEF9"/>
|
||||
<path d="M103.416 26.8547C103.377 27.003 103.457 27.1247 103.594 27.1265C103.731 27.1283 103.873 27.0096 103.911 26.8613C103.949 26.713 103.87 26.5913 103.733 26.5895C103.596 26.5876 103.454 26.7064 103.416 26.8547Z" fill="#D1FEF9"/>
|
||||
<path d="M105.232 26.5283C105.22 26.573 105.244 26.6097 105.286 26.6103C105.327 26.6108 105.37 26.575 105.381 26.5303C105.393 26.4855 105.369 26.4488 105.328 26.4482C105.286 26.4477 105.244 26.4835 105.232 26.5283Z" fill="#D1FEF9"/>
|
||||
<path d="M103.79 31.4823C103.75 31.6365 103.833 31.763 103.975 31.7649C104.117 31.7668 104.265 31.6434 104.305 31.4892C104.345 31.335 104.262 31.2084 104.12 31.2065C103.977 31.2046 103.83 31.3281 103.79 31.4823Z" fill="#D1FEF9"/>
|
||||
<path d="M125.16 25.4379C125.104 25.6554 125.221 25.8339 125.421 25.8366C125.622 25.8392 125.83 25.6651 125.886 25.4476C125.943 25.23 125.826 25.0515 125.625 25.0489C125.425 25.0462 125.217 25.2203 125.16 25.4379Z" fill="#D1FEF9"/>
|
||||
<path d="M106.871 31.3925C106.852 31.4649 106.891 31.5243 106.958 31.5252C107.024 31.5261 107.094 31.4681 107.113 31.3957C107.131 31.3233 107.092 31.2639 107.026 31.263C106.959 31.2621 106.89 31.3201 106.871 31.3925Z" fill="#D1FEF9"/>
|
||||
<path d="M103.721 30.8713C103.704 30.9394 103.74 30.9953 103.803 30.9961C103.866 30.997 103.931 30.9424 103.949 30.8743C103.966 30.8062 103.93 30.7503 103.867 30.7495C103.804 30.7486 103.739 30.8032 103.721 30.8713Z" fill="#D1FEF9"/>
|
||||
<path d="M106.012 30.783C105.995 30.8482 106.03 30.9016 106.09 30.9024C106.15 30.9032 106.212 30.8511 106.229 30.7859C106.246 30.7208 106.211 30.6673 106.151 30.6665C106.091 30.6657 106.029 30.7179 106.012 30.783Z" fill="#D1FEF9"/>
|
||||
<path d="M102.559 29.8228C102.533 29.9232 102.587 30.0056 102.68 30.0068C102.772 30.0081 102.868 29.9277 102.894 29.8273C102.92 29.7269 102.866 29.6445 102.774 29.6433C102.681 29.642 102.585 29.7224 102.559 29.8228Z" fill="#D1FEF9"/>
|
||||
<path d="M116.984 31.1552C116.952 31.2779 117.018 31.3786 117.131 31.3801C117.244 31.3816 117.362 31.2834 117.394 31.1607C117.425 31.0379 117.359 30.9373 117.246 30.9357C117.133 30.9342 117.016 31.0325 116.984 31.1552Z" fill="#D1FEF9"/>
|
||||
<path d="M118.985 31.0672C118.968 31.1307 119.002 31.1829 119.061 31.1836C119.12 31.1844 119.18 31.1336 119.197 31.0701C119.213 31.0066 119.179 30.9544 119.121 30.9537C119.062 30.9529 119.001 31.0037 118.985 31.0672Z" fill="#D1FEF9"/>
|
||||
<path d="M121.613 29.4604C121.594 29.5348 121.634 29.5958 121.703 29.5967C121.771 29.5977 121.842 29.5381 121.862 29.4638C121.881 29.3894 121.841 29.3284 121.772 29.3274C121.704 29.3265 121.633 29.3861 121.613 29.4604Z" fill="#D1FEF9"/>
|
||||
<path d="M118.338 29.4409C118.315 29.5291 118.363 29.6014 118.444 29.6025C118.525 29.6036 118.61 29.533 118.632 29.4448C118.655 29.3566 118.608 29.2843 118.527 29.2832C118.445 29.2821 118.361 29.3527 118.338 29.4409Z" fill="#D1FEF9"/>
|
||||
<path d="M115.846 28.7189C115.825 28.8008 115.869 28.8681 115.945 28.8691C116.02 28.8701 116.099 28.8045 116.12 28.7226C116.141 28.6406 116.097 28.5734 116.021 28.5724C115.946 28.5714 115.867 28.637 115.846 28.7189Z" fill="#D1FEF9"/>
|
||||
<path d="M124.079 24.3865C124.058 24.4688 124.102 24.5363 124.178 24.5373C124.254 24.5383 124.333 24.4724 124.354 24.3902C124.375 24.3079 124.331 24.2404 124.255 24.2394C124.179 24.2384 124.101 24.3042 124.079 24.3865Z" fill="#D1FEF9"/>
|
||||
<path d="M127.399 25.2869C127.373 25.3863 127.427 25.4679 127.518 25.4691C127.61 25.4703 127.705 25.3907 127.731 25.2913C127.756 25.1919 127.703 25.1103 127.611 25.1091C127.52 25.1079 127.425 25.1875 127.399 25.2869Z" fill="#D1FEF9"/>
|
||||
<path d="M119.411 24.0564C119.375 24.1962 119.45 24.3109 119.579 24.3126C119.708 24.3143 119.842 24.2024 119.878 24.0626C119.914 23.9229 119.839 23.8082 119.71 23.8065C119.581 23.8047 119.447 23.9166 119.411 24.0564Z" fill="#D1FEF9"/>
|
||||
<path d="M118.701 25.4451C118.688 25.4965 118.715 25.5386 118.763 25.5392C118.81 25.5399 118.859 25.4988 118.872 25.4474C118.886 25.3961 118.858 25.354 118.811 25.3533C118.763 25.3527 118.714 25.3938 118.701 25.4451Z" fill="#D1FEF9"/>
|
||||
<path d="M122.987 24.629C122.972 24.6882 123.004 24.7368 123.058 24.7376C123.113 24.7383 123.17 24.6909 123.185 24.6317C123.2 24.5724 123.169 24.5238 123.114 24.5231C123.059 24.5224 123.003 24.5698 122.987 24.629Z" fill="#D1FEF9"/>
|
||||
<path d="M125.011 23.8528C124.992 23.9249 125.031 23.9841 125.097 23.9849C125.164 23.9858 125.233 23.9281 125.251 23.8561C125.27 23.784 125.231 23.7249 125.165 23.724C125.098 23.7231 125.029 23.7808 125.011 23.8528Z" fill="#D1FEF9"/>
|
||||
<path d="M123.148 23.8784C123.12 23.9554 123.038 23.9963 122.965 23.9697C122.892 23.943 122.856 23.859 122.884 23.782C122.913 23.705 122.994 23.6642 123.067 23.6908C123.14 23.7174 123.176 23.8014 123.148 23.8784Z" fill="#D1FEF9"/>
|
||||
<path d="M120.415 22.7394C120.362 22.8836 120.209 22.9601 120.073 22.9103C119.937 22.8604 119.869 22.7031 119.922 22.5589C119.975 22.4147 120.128 22.3383 120.264 22.3881C120.4 22.4379 120.468 22.5952 120.415 22.7394Z" fill="#D1FEF9"/>
|
||||
<path d="M121.224 23.6618C121.185 23.7686 121.071 23.8252 120.971 23.7883C120.87 23.7514 120.82 23.635 120.859 23.5282C120.898 23.4215 121.011 23.3649 121.112 23.4018C121.213 23.4387 121.263 23.5551 121.224 23.6618Z" fill="#D1FEF9"/>
|
||||
<path d="M120.539 21.0867C120.519 21.1421 120.46 21.1715 120.408 21.1523C120.356 21.1332 120.33 21.0727 120.35 21.0173C120.37 20.9619 120.429 20.9325 120.481 20.9517C120.534 20.9708 120.56 21.0313 120.539 21.0867Z" fill="#D1FEF9"/>
|
||||
<path d="M118.512 20.7249C118.495 20.7709 118.446 20.7953 118.402 20.7794C118.359 20.7635 118.337 20.7133 118.354 20.6673C118.371 20.6213 118.42 20.5969 118.463 20.6128C118.507 20.6287 118.528 20.6789 118.512 20.7249Z" fill="#D1FEF9"/>
|
||||
<path d="M117.52 25.8841C117.463 26.0417 117.295 26.1253 117.146 26.0708C116.998 26.0163 116.924 25.8444 116.981 25.6868C117.039 25.5291 117.207 25.4455 117.355 25.5C117.504 25.5545 117.578 25.7264 117.52 25.8841Z" fill="#D1FEF9"/>
|
||||
<path d="M118.591 25.5796C118.563 25.656 118.482 25.6965 118.41 25.6701C118.338 25.6437 118.302 25.5604 118.33 25.484C118.358 25.4076 118.439 25.3671 118.511 25.3935C118.584 25.4199 118.619 25.5032 118.591 25.5796Z" fill="#D1FEF9"/>
|
||||
<path d="M116.612 25.9833C116.593 26.0359 116.537 26.0638 116.487 26.0456C116.437 26.0275 116.413 25.9701 116.432 25.9175C116.451 25.8649 116.507 25.837 116.557 25.8552C116.606 25.8734 116.631 25.9307 116.612 25.9833Z" fill="#D1FEF9"/>
|
||||
<path d="M121.873 26.8093C121.796 27.019 121.573 27.1303 121.375 27.0578C121.177 26.9853 121.079 26.7565 121.156 26.5468C121.233 26.337 121.455 26.2258 121.653 26.2983C121.852 26.3708 121.95 26.5996 121.873 26.8093Z" fill="#D1FEF9"/>
|
||||
<path d="M129.005 30.6017C128.958 30.7319 128.819 30.8009 128.696 30.7559C128.574 30.7109 128.513 30.5689 128.56 30.4388C128.608 30.3086 128.746 30.2396 128.869 30.2846C128.992 30.3296 129.053 30.4716 129.005 30.6017Z" fill="#D1FEF9"/>
|
||||
<path d="M126.713 30.6569C126.692 30.7142 126.631 30.7446 126.577 30.7247C126.523 30.7049 126.496 30.6425 126.517 30.5852C126.538 30.5279 126.599 30.4975 126.653 30.5173C126.707 30.5371 126.734 30.5996 126.713 30.6569Z" fill="#D1FEF9"/>
|
||||
<path d="M127.703 27.2667C127.65 27.4119 127.495 27.4888 127.358 27.4387C127.221 27.3885 127.153 27.2302 127.207 27.0851C127.26 26.9399 127.414 26.8629 127.551 26.9131C127.688 26.9633 127.756 27.1216 127.703 27.2667Z" fill="#D1FEF9"/>
|
||||
<path d="M131.092 30.2822C131.033 30.4439 130.861 30.5297 130.709 30.4738C130.556 30.4179 130.48 30.2415 130.539 30.0799C130.599 29.9182 130.77 29.8324 130.923 29.8883C131.076 29.9442 131.151 30.1205 131.092 30.2822Z" fill="#D1FEF9"/>
|
||||
<path d="M126.998 26.2633C126.976 26.3212 126.915 26.3519 126.86 26.3319C126.805 26.3119 126.778 26.2487 126.8 26.1908C126.821 26.1329 126.882 26.1022 126.937 26.1222C126.992 26.1422 127.019 26.2054 126.998 26.2633Z" fill="#D1FEF9"/>
|
||||
<path d="M109.926 21.9145C109.91 21.9586 109.863 21.982 109.822 21.9668C109.78 21.9515 109.759 21.9034 109.775 21.8592C109.792 21.8151 109.838 21.7917 109.88 21.8069C109.922 21.8222 109.943 21.8703 109.926 21.9145Z" fill="#D1FEF9"/>
|
||||
<path d="M113.033 24.0921C112.986 24.2195 112.851 24.287 112.731 24.243C112.61 24.199 112.551 24.0601 112.597 23.9327C112.644 23.8054 112.779 23.7378 112.899 23.7818C113.02 23.8259 113.079 23.9648 113.033 24.0921Z" fill="#D1FEF9"/>
|
||||
<path d="M115.072 23.1241C115.029 23.2408 114.905 23.3027 114.795 23.2624C114.685 23.222 114.63 23.0947 114.673 22.978C114.715 22.8612 114.839 22.7993 114.95 22.8397C115.06 22.88 115.114 23.0073 115.072 23.1241Z" fill="#D1FEF9"/>
|
||||
<path d="M113.943 21.8978C113.927 21.9432 113.879 21.9673 113.836 21.9516C113.793 21.9359 113.772 21.8864 113.788 21.841C113.805 21.7956 113.853 21.7715 113.896 21.7872C113.939 21.8029 113.96 21.8524 113.943 21.8978Z" fill="#D1FEF9"/>
|
||||
<path d="M115.4 20.452C115.366 20.5431 115.269 20.5914 115.183 20.5599C115.097 20.5284 115.055 20.429 115.088 20.3379C115.121 20.2467 115.218 20.1984 115.304 20.2299C115.39 20.2614 115.433 20.3608 115.4 20.452Z" fill="#D1FEF9"/>
|
||||
<path d="M117.177 22.5249C117.115 22.6932 116.936 22.7824 116.777 22.7243C116.619 22.6661 116.54 22.4826 116.601 22.3144C116.663 22.1461 116.842 22.0569 117 22.1151C117.159 22.1732 117.238 22.3567 117.177 22.5249Z" fill="#D1FEF9"/>
|
||||
<path d="M106.95 23.6536C106.903 23.7813 106.767 23.849 106.647 23.8049C106.526 23.7607 106.466 23.6215 106.513 23.4938C106.56 23.3662 106.695 23.2985 106.816 23.3426C106.936 23.3867 106.996 23.526 106.95 23.6536Z" fill="#D1FEF9"/>
|
||||
<path d="M108.532 27.4083C108.474 27.5681 108.304 27.6529 108.153 27.5977C108.002 27.5424 107.927 27.3681 107.986 27.2083C108.044 27.0485 108.214 26.9637 108.365 27.019C108.516 27.0742 108.591 27.2485 108.532 27.4083Z" fill="#D1FEF9"/>
|
||||
<path d="M113.018 27.7555C112.991 27.8309 112.911 27.8709 112.839 27.8449C112.768 27.8188 112.733 27.7365 112.761 27.661C112.788 27.5856 112.868 27.5456 112.94 27.5716C113.011 27.5977 113.046 27.68 113.018 27.7555Z" fill="#D1FEF9"/>
|
||||
<path d="M111.386 26.5137C111.355 26.5985 111.265 26.6435 111.185 26.6142C111.105 26.5849 111.065 26.4924 111.096 26.4075C111.127 26.3227 111.217 26.2777 111.297 26.307C111.377 26.3363 111.417 26.4289 111.386 26.5137Z" fill="#D1FEF9"/>
|
||||
<path d="M123.02 20.7719C122.997 20.8335 122.932 20.8662 122.873 20.8449C122.815 20.8236 122.786 20.7563 122.809 20.6947C122.831 20.633 122.897 20.6003 122.955 20.6216C123.013 20.6429 123.042 20.7102 123.02 20.7719Z" fill="#D1FEF9"/>
|
||||
<path d="M109.076 24.4671C109.04 24.5654 108.935 24.6176 108.842 24.5836C108.75 24.5496 108.704 24.4424 108.74 24.344C108.776 24.2457 108.88 24.1936 108.973 24.2275C109.066 24.2615 109.112 24.3688 109.076 24.4671Z" fill="#D1FEF9"/>
|
||||
<path d="M123.224 21.6356C123.175 21.7701 123.032 21.8415 122.905 21.795C122.778 21.7485 122.715 21.6017 122.764 21.4672C122.814 21.3327 122.956 21.2613 123.083 21.3078C123.211 21.3543 123.274 21.5011 123.224 21.6356Z" fill="#D1FEF9"/>
|
||||
<path d="M87.7668 58.2468C87.7164 58.2145 87.6938 58.1598 87.7163 58.1248C87.7388 58.0899 87.7979 58.0877 87.8483 58.1201C87.8986 58.1525 87.9212 58.2071 87.8987 58.2421C87.8762 58.2771 87.8172 58.2792 87.7668 58.2468Z" fill="#D1FEF9"/>
|
||||
<path d="M87.9613 55.7279C87.9061 55.6925 87.8814 55.6327 87.906 55.5943C87.9307 55.556 87.9953 55.5537 88.0505 55.5891C88.1057 55.6246 88.1304 55.6844 88.1058 55.7227C88.0812 55.7611 88.0165 55.7634 87.9613 55.7279Z" fill="#D1FEF9"/>
|
||||
<path d="M88.5244 55.4746C88.4501 55.4268 88.4167 55.3462 88.4499 55.2945C88.4831 55.2429 88.5703 55.2397 88.6447 55.2875C88.719 55.3353 88.7524 55.4159 88.7192 55.4676C88.686 55.5192 88.5988 55.5224 88.5244 55.4746Z" fill="#D1FEF9"/>
|
||||
<path d="M88.4669 54.023C88.4334 54.0014 88.4183 53.965 88.4333 53.9416C88.4483 53.9183 88.4877 53.9169 88.5212 53.9385C88.5548 53.96 88.5699 53.9965 88.5549 54.0198C88.5399 54.0431 88.5005 54.0445 88.4669 54.023Z" fill="#D1FEF9"/>
|
||||
<path d="M88.0061 52.3372C87.899 52.2684 87.851 52.1523 87.8988 52.0779C87.9466 52.0035 88.0721 51.999 88.1792 52.0678C88.2863 52.1366 88.3343 52.2527 88.2865 52.3271C88.2387 52.4015 88.1131 52.406 88.0061 52.3372Z" fill="#D1FEF9"/>
|
||||
<path d="M88.5349 52.0975C88.4989 52.0744 88.4828 52.0354 88.4988 52.0104C88.5149 51.9854 88.5571 51.9838 88.5931 52.007C88.629 52.0301 88.6452 52.0691 88.6291 52.0941C88.613 52.1191 88.5709 52.1206 88.5349 52.0975Z" fill="#D1FEF9"/>
|
||||
<path d="M89.8501 54.9804C89.7938 54.9442 89.7686 54.8832 89.7937 54.8441C89.8188 54.805 89.8848 54.8026 89.9411 54.8388C89.9974 54.875 90.0226 54.936 89.9975 54.9751C89.9723 55.0142 89.9064 55.0166 89.8501 54.9804Z" fill="#D1FEF9"/>
|
||||
<path d="M88.8046 57.7183C88.7898 57.7088 88.7832 57.6927 88.7898 57.6824C88.7964 57.6721 88.8138 57.6715 88.8286 57.681C88.8435 57.6905 88.8501 57.7066 88.8435 57.7169C88.8369 57.7272 88.8195 57.7278 88.8046 57.7183Z" fill="#D1FEF9"/>
|
||||
<path d="M88.3134 58.722C88.2532 58.6833 88.2262 58.6181 88.2531 58.5763C88.28 58.5345 88.3505 58.532 88.4106 58.5706C88.4708 58.6093 88.4978 58.6745 88.4709 58.7163C88.444 58.7581 88.3735 58.7606 88.3134 58.722Z" fill="#D1FEF9"/>
|
||||
<path d="M88.0939 57.2072C88.0108 57.1537 87.9735 57.0636 88.0106 57.0058C88.0477 56.948 88.1452 56.9445 88.2284 56.998C88.3115 57.0514 88.3488 57.1416 88.3117 57.1993C88.2745 57.2571 88.177 57.2606 88.0939 57.2072Z" fill="#D1FEF9"/>
|
||||
<path d="M88.758 56.6041C88.733 56.5881 88.7218 56.5609 88.7329 56.5436C88.7441 56.5262 88.7734 56.5251 88.7985 56.5412C88.8235 56.5573 88.8347 56.5844 88.8235 56.6018C88.8123 56.6192 88.783 56.6202 88.758 56.6041Z" fill="#D1FEF9"/>
|
||||
<path d="M85.9361 54.8855C85.8496 54.8299 85.8108 54.7362 85.8494 54.6761C85.888 54.616 85.9894 54.6124 86.0759 54.6679C86.1623 54.7235 86.2011 54.8173 86.1625 54.8773C86.1239 54.9374 86.0225 54.941 85.9361 54.8855Z" fill="#D1FEF9"/>
|
||||
<path d="M94.8339 48.8173C94.712 48.7389 94.6572 48.6067 94.7117 48.5219C94.7662 48.4372 94.9092 48.432 95.0311 48.5104C95.1531 48.5888 95.2078 48.721 95.1533 48.8058C95.0989 48.8905 94.9559 48.8957 94.8339 48.8173Z" fill="#D1FEF9"/>
|
||||
<path d="M86.8374 53.6447C86.7968 53.6187 86.7786 53.5746 86.7968 53.5464C86.8149 53.5182 86.8625 53.5165 86.9031 53.5426C86.9437 53.5687 86.9619 53.6127 86.9437 53.6409C86.9256 53.6691 86.878 53.6708 86.8374 53.6447Z" fill="#D1FEF9"/>
|
||||
<path d="M86.2148 55.2001C86.1766 55.1755 86.1595 55.1341 86.1765 55.1076C86.1936 55.0811 86.2384 55.0795 86.2766 55.104C86.3147 55.1285 86.3319 55.1699 86.3148 55.1965C86.2978 55.223 86.253 55.2246 86.2148 55.2001Z" fill="#D1FEF9"/>
|
||||
<path d="M86.8963 54.2867C86.8597 54.2632 86.8434 54.2236 86.8597 54.1982C86.876 54.1729 86.9188 54.1713 86.9553 54.1948C86.9919 54.2183 87.0083 54.2579 86.9919 54.2833C86.9756 54.3086 86.9328 54.3102 86.8963 54.2867Z" fill="#D1FEF9"/>
|
||||
<path d="M86.4041 56.175C86.3477 56.1387 86.3224 56.0775 86.3476 56.0383C86.3728 55.999 86.439 55.9967 86.4954 56.0329C86.5519 56.0692 86.5772 56.1304 86.552 56.1697C86.5268 56.2089 86.4606 56.2113 86.4041 56.175Z" fill="#D1FEF9"/>
|
||||
<path d="M89.7654 49.5445C89.6964 49.5001 89.6655 49.4253 89.6963 49.3774C89.7271 49.3294 89.808 49.3265 89.877 49.3709C89.946 49.4152 89.977 49.49 89.9462 49.538C89.9153 49.5859 89.8344 49.5888 89.7654 49.5445Z" fill="#D1FEF9"/>
|
||||
<path d="M90.3662 48.7532C90.3306 48.7304 90.3146 48.6917 90.3305 48.667C90.3464 48.6423 90.3882 48.6408 90.4238 48.6636C90.4594 48.6865 90.4754 48.7251 90.4595 48.7499C90.4436 48.7746 90.4018 48.7761 90.3662 48.7532Z" fill="#D1FEF9"/>
|
||||
<path d="M91.8805 48.4109C91.8388 48.3841 91.8201 48.3389 91.8387 48.3099C91.8574 48.2809 91.9063 48.2792 91.9479 48.306C91.9896 48.3328 92.0083 48.378 91.9897 48.4069C91.9711 48.4359 91.9222 48.4377 91.8805 48.4109Z" fill="#D1FEF9"/>
|
||||
<path d="M90.979 49.7837C90.9295 49.7519 90.9073 49.6983 90.9294 49.6639C90.9515 49.6296 91.0095 49.6275 91.0589 49.6593C91.1084 49.691 91.1305 49.7446 91.1085 49.779C91.0864 49.8134 91.0284 49.8155 90.979 49.7837Z" fill="#D1FEF9"/>
|
||||
<path d="M90.6394 51.1588C90.5935 51.1293 90.5729 51.0795 90.5934 51.0476C90.6139 51.0156 90.6678 51.0137 90.7137 51.0432C90.7596 51.0727 90.7802 51.1226 90.7597 51.1545C90.7392 51.1864 90.6853 51.1883 90.6394 51.1588Z" fill="#D1FEF9"/>
|
||||
<path d="M95.047 49.7596C95.0008 49.73 94.9801 49.68 95.0007 49.6479C95.0213 49.6159 95.0754 49.6139 95.1216 49.6436C95.1677 49.6732 95.1884 49.7232 95.1678 49.7553C95.1472 49.7873 95.0931 49.7893 95.047 49.7596Z" fill="#D1FEF9"/>
|
||||
<path d="M95.5291 47.9565C95.4732 47.9205 95.4481 47.8599 95.4731 47.8211C95.498 47.7822 95.5636 47.7799 95.6195 47.8158C95.6754 47.8517 95.7005 47.9123 95.6755 47.9512C95.6505 47.99 95.585 47.9924 95.5291 47.9565Z" fill="#D1FEF9"/>
|
||||
<path d="M93.9091 51.857C93.8308 51.8066 93.7956 51.7216 93.8306 51.6672C93.8656 51.6127 93.9575 51.6094 94.0359 51.6598C94.1142 51.7101 94.1494 51.7951 94.1144 51.8496C94.0794 51.904 93.9875 51.9073 93.9091 51.857Z" fill="#D1FEF9"/>
|
||||
<path d="M93.0342 51.5038C93.0054 51.4853 92.9925 51.4541 93.0053 51.4341C93.0182 51.4141 93.0519 51.4129 93.0807 51.4314C93.1095 51.4499 93.1224 51.4811 93.1095 51.5011C93.0967 51.5211 93.0629 51.5223 93.0342 51.5038Z" fill="#D1FEF9"/>
|
||||
<path d="M94.6245 50.1006C94.5912 50.0792 94.5763 50.0432 94.5912 50.0202C94.606 49.9971 94.645 49.9957 94.6782 50.017C94.7114 50.0384 94.7263 50.0744 94.7114 50.0974C94.6966 50.1205 94.6577 50.1219 94.6245 50.1006Z" fill="#D1FEF9"/>
|
||||
<path d="M95.5666 49.622C95.5262 49.5961 95.5081 49.5523 95.5261 49.5242C95.5441 49.4961 95.5915 49.4944 95.6319 49.5204C95.6723 49.5463 95.6905 49.5901 95.6724 49.6182C95.6544 49.6463 95.607 49.648 95.5666 49.622Z" fill="#D1FEF9"/>
|
||||
<path d="M142.294 45.5535C142.244 45.5211 142.221 45.4665 142.244 45.4315C142.266 45.3965 142.325 45.3944 142.376 45.4267C142.426 45.4591 142.449 45.5137 142.426 45.5487C142.404 45.5837 142.345 45.5858 142.294 45.5535Z" fill="#D1FEF9"/>
|
||||
<path d="M142.489 43.0355C142.433 43.0001 142.409 42.9403 142.433 42.9019C142.458 42.8636 142.523 42.8613 142.578 42.8967C142.633 42.9322 142.658 42.992 142.633 43.0303C142.608 43.0687 142.544 43.071 142.489 43.0355Z" fill="#D1FEF9"/>
|
||||
<path d="M143.05 42.7832C142.975 42.7354 142.942 42.6548 142.975 42.6031C143.009 42.5515 143.096 42.5483 143.17 42.5961C143.244 42.6439 143.278 42.7245 143.245 42.7762C143.211 42.8278 143.124 42.831 143.05 42.7832Z" fill="#D1FEF9"/>
|
||||
<path d="M142.994 41.3306C142.961 41.309 142.946 41.2726 142.961 41.2493C142.976 41.2259 143.015 41.2245 143.049 41.2461C143.082 41.2677 143.097 41.3041 143.082 41.3274C143.067 41.3507 143.028 41.3522 142.994 41.3306Z" fill="#D1FEF9"/>
|
||||
<path d="M142.531 39.6448C142.424 39.576 142.376 39.4599 142.424 39.3855C142.472 39.3111 142.598 39.3066 142.705 39.3754C142.812 39.4442 142.86 39.5603 142.812 39.6347C142.764 39.7091 142.639 39.7136 142.531 39.6448Z" fill="#D1FEF9"/>
|
||||
<path d="M143.062 39.4051C143.026 39.382 143.01 39.343 143.026 39.318C143.042 39.293 143.084 39.2915 143.12 39.3146C143.156 39.3377 143.173 39.3767 143.156 39.4017C143.14 39.4267 143.098 39.4282 143.062 39.4051Z" fill="#D1FEF9"/>
|
||||
<path d="M144.377 42.289C144.321 42.2528 144.296 42.1918 144.321 42.1527C144.346 42.1136 144.412 42.1112 144.468 42.1474C144.525 42.1836 144.55 42.2446 144.525 42.2837C144.5 42.3228 144.434 42.3252 144.377 42.289Z" fill="#D1FEF9"/>
|
||||
<path d="M143.332 45.0249C143.317 45.0154 143.311 44.9993 143.317 44.989C143.324 44.9787 143.341 44.9781 143.356 44.9876C143.371 44.9972 143.377 45.0132 143.371 45.0235C143.364 45.0338 143.347 45.0345 143.332 45.0249Z" fill="#D1FEF9"/>
|
||||
<path d="M142.841 46.0296C142.781 45.9909 142.754 45.9257 142.78 45.8839C142.807 45.8421 142.878 45.8396 142.938 45.8783C142.998 45.9169 143.025 45.9821 142.998 46.0239C142.971 46.0657 142.901 46.0682 142.841 46.0296Z" fill="#D1FEF9"/>
|
||||
<path d="M142.619 44.5158C142.536 44.4623 142.499 44.3722 142.536 44.3144C142.573 44.2566 142.671 44.2531 142.754 44.3066C142.837 44.36 142.874 44.4502 142.837 44.5079C142.8 44.5657 142.702 44.5692 142.619 44.5158Z" fill="#D1FEF9"/>
|
||||
<path d="M143.285 43.9108C143.26 43.8947 143.249 43.8676 143.26 43.8502C143.271 43.8328 143.301 43.8318 143.326 43.8478C143.351 43.8639 143.362 43.891 143.351 43.9084C143.34 43.9258 143.31 43.9269 143.285 43.9108Z" fill="#D1FEF9"/>
|
||||
<path d="M140.463 42.1931C140.377 42.1375 140.338 42.0438 140.377 41.9837C140.415 41.9236 140.517 41.92 140.603 41.9756C140.69 42.0311 140.728 42.1249 140.69 42.1849C140.651 42.245 140.55 42.2487 140.463 42.1931Z" fill="#D1FEF9"/>
|
||||
<path d="M149.361 36.1249C149.239 36.0465 149.185 35.9143 149.239 35.8296C149.294 35.7448 149.437 35.7397 149.558 35.818C149.68 35.8964 149.735 36.0287 149.681 36.1134C149.626 36.1981 149.483 36.2033 149.361 36.1249Z" fill="#D1FEF9"/>
|
||||
<path d="M141.365 40.9524C141.324 40.9263 141.306 40.8823 141.324 40.8541C141.342 40.8259 141.39 40.8241 141.43 40.8502C141.471 40.8763 141.489 40.9203 141.471 40.9485C141.453 40.9767 141.405 40.9784 141.365 40.9524Z" fill="#D1FEF9"/>
|
||||
<path d="M140.742 42.5077C140.704 42.4832 140.687 42.4418 140.704 42.4152C140.721 42.3887 140.766 42.3871 140.804 42.4116C140.842 42.4362 140.859 42.4776 140.842 42.5041C140.825 42.5306 140.78 42.5323 140.742 42.5077Z" fill="#D1FEF9"/>
|
||||
<path d="M141.422 41.5953C141.385 41.5718 141.369 41.5322 141.385 41.5068C141.401 41.4815 141.444 41.4799 141.481 41.5034C141.517 41.5269 141.534 41.5665 141.517 41.5919C141.501 41.6172 141.458 41.6188 141.422 41.5953Z" fill="#D1FEF9"/>
|
||||
<path d="M140.931 43.4826C140.875 43.4463 140.85 43.3851 140.875 43.3459C140.9 43.3067 140.966 43.3043 141.023 43.3406C141.079 43.3768 141.105 43.438 141.079 43.4773C141.054 43.5165 140.988 43.5189 140.931 43.4826Z" fill="#D1FEF9"/>
|
||||
<path d="M144.293 36.8531C144.224 36.8087 144.193 36.7339 144.224 36.686C144.254 36.638 144.335 36.6351 144.404 36.6795C144.473 36.7238 144.504 36.7986 144.474 36.8466C144.443 36.8945 144.362 36.8974 144.293 36.8531Z" fill="#D1FEF9"/>
|
||||
<path d="M144.892 36.0618C144.856 36.0389 144.84 36.0003 144.856 35.9756C144.872 35.9509 144.914 35.9494 144.949 35.9722C144.985 35.9951 145.001 36.0337 144.985 36.0585C144.969 36.0832 144.927 36.0847 144.892 36.0618Z" fill="#D1FEF9"/>
|
||||
<path d="M146.408 35.7185C146.366 35.6917 146.347 35.6465 146.366 35.6175C146.385 35.5886 146.434 35.5868 146.475 35.6136C146.517 35.6404 146.536 35.6856 146.517 35.7146C146.498 35.7435 146.45 35.7453 146.408 35.7185Z" fill="#D1FEF9"/>
|
||||
<path d="M145.506 37.0913C145.457 37.0595 145.435 37.0059 145.457 36.9716C145.479 36.9372 145.537 36.9351 145.586 36.9669C145.636 36.9987 145.658 37.0523 145.636 37.0866C145.614 37.121 145.556 37.1231 145.506 37.0913Z" fill="#D1FEF9"/>
|
||||
<path d="M145.167 38.4664C145.121 38.4369 145.1 38.3871 145.121 38.3552C145.141 38.3233 145.195 38.3213 145.241 38.3508C145.287 38.3804 145.308 38.4302 145.287 38.4621C145.267 38.494 145.213 38.496 145.167 38.4664Z" fill="#D1FEF9"/>
|
||||
<path d="M149.574 37.0673C149.528 37.0376 149.507 36.9876 149.528 36.9556C149.549 36.9235 149.603 36.9216 149.649 36.9512C149.695 36.9809 149.716 37.0309 149.695 37.0629C149.675 37.095 149.62 37.0969 149.574 37.0673Z" fill="#D1FEF9"/>
|
||||
<path d="M150.056 35.2631C150.001 35.2272 149.975 35.1666 150 35.1277C150.025 35.0889 150.091 35.0865 150.147 35.1224C150.203 35.1584 150.228 35.219 150.203 35.2578C150.178 35.2967 150.112 35.299 150.056 35.2631Z" fill="#D1FEF9"/>
|
||||
<path d="M148.436 39.1656C148.358 39.1152 148.323 39.0302 148.358 38.9758C148.393 38.9213 148.485 38.918 148.563 38.9684C148.642 39.0187 148.677 39.1037 148.642 39.1582C148.607 39.2126 148.515 39.2159 148.436 39.1656Z" fill="#D1FEF9"/>
|
||||
<path d="M147.562 38.8104C147.533 38.7919 147.52 38.7607 147.533 38.7407C147.546 38.7207 147.579 38.7195 147.608 38.738C147.637 38.7565 147.65 38.7877 147.637 38.8077C147.624 38.8277 147.59 38.8289 147.562 38.8104Z" fill="#D1FEF9"/>
|
||||
<path d="M149.152 37.4082C149.119 37.3869 149.104 37.3508 149.119 37.3278C149.133 37.3047 149.172 37.3033 149.206 37.3246C149.239 37.346 149.254 37.382 149.239 37.4051C149.224 37.4281 149.185 37.4295 149.152 37.4082Z" fill="#D1FEF9"/>
|
||||
<path d="M150.094 36.9296C150.054 36.9037 150.035 36.8599 150.053 36.8318C150.071 36.8037 150.119 36.802 150.159 36.828C150.2 36.854 150.218 36.8978 150.2 36.9258C150.182 36.9539 150.134 36.9556 150.094 36.9296Z" fill="#D1FEF9"/>
|
||||
<path d="M89.8666 69.7177C89.8609 69.6541 89.8126 69.6174 89.7587 69.6358C89.7048 69.6542 89.6657 69.7207 89.6714 69.7843C89.677 69.8479 89.7253 69.8845 89.7793 69.8661C89.8332 69.8478 89.8723 69.7813 89.8666 69.7177Z" fill="#D1FEF9"/>
|
||||
<path d="M86.8725 69.4279C86.8663 69.3583 86.8134 69.3181 86.7544 69.3383C86.6953 69.3584 86.6525 69.4312 86.6587 69.5008C86.6649 69.5705 86.7178 69.6106 86.7768 69.5905C86.8359 69.5704 86.8787 69.4976 86.8725 69.4279Z" fill="#D1FEF9"/>
|
||||
<path d="M86.2332 70.0128C86.2248 69.9192 86.1537 69.8653 86.0744 69.8923C85.9951 69.9194 85.9375 70.0172 85.9458 70.1108C85.9542 70.2044 86.0253 70.2583 86.1046 70.2313C86.1839 70.2043 86.2415 70.1064 86.2332 70.0128Z" fill="#D1FEF9"/>
|
||||
<path d="M84.6116 69.6543C84.6078 69.6119 84.5756 69.5874 84.5397 69.5997C84.5037 69.6119 84.4777 69.6562 84.4814 69.6986C84.4852 69.741 84.5174 69.7655 84.5534 69.7532C84.5893 69.741 84.6154 69.6967 84.6116 69.6543Z" fill="#D1FEF9"/>
|
||||
<path d="M82.9752 68.7895C82.9631 68.6544 82.8605 68.5764 82.7459 68.6155C82.6313 68.6546 82.5482 68.7958 82.5602 68.931C82.5723 69.0662 82.6749 69.1441 82.7895 69.1051C82.9041 69.066 82.9872 68.9247 82.9752 68.7895Z" fill="#D1FEF9"/>
|
||||
<path d="M82.3723 69.3409C82.3683 69.2955 82.3338 69.2693 82.2953 69.2824C82.2568 69.2956 82.2289 69.343 82.2329 69.3885C82.237 69.4339 82.2715 69.4601 82.31 69.4469C82.3485 69.4338 82.3764 69.3863 82.3723 69.3409Z" fill="#D1FEF9"/>
|
||||
<path d="M84.8473 71.4152C84.8409 71.3441 84.787 71.3031 84.7267 71.3237C84.6665 71.3442 84.6228 71.4185 84.6292 71.4895C84.6355 71.5606 84.6895 71.6015 84.7497 71.581C84.8099 71.5605 84.8536 71.4862 84.8473 71.4152Z" fill="#D1FEF9"/>
|
||||
<path d="M88.6194 70.7869C88.6177 70.768 88.6034 70.7571 88.5873 70.7625C88.5713 70.768 88.5597 70.7877 88.5614 70.8066C88.5631 70.8255 88.5774 70.8364 88.5934 70.8309C88.6095 70.8255 88.6211 70.8057 88.6194 70.7869Z" fill="#D1FEF9"/>
|
||||
<path d="M90.0705 70.4334C90.0637 70.3575 90.006 70.3137 89.9417 70.3356C89.8773 70.3576 89.8306 70.4369 89.8374 70.5129C89.8441 70.5888 89.9018 70.6326 89.9662 70.6107C90.0306 70.5887 90.0773 70.5094 90.0705 70.4334Z" fill="#D1FEF9"/>
|
||||
<path d="M88.4792 69.8768C88.4698 69.7718 88.3901 69.7113 88.3011 69.7416C88.2121 69.772 88.1475 69.8817 88.1569 69.9867C88.1662 70.0916 88.246 70.1522 88.335 70.1218C88.424 70.0915 88.4885 69.9818 88.4792 69.8768Z" fill="#D1FEF9"/>
|
||||
<path d="M87.3773 70.5071C87.3745 70.4755 87.3504 70.4572 87.3236 70.4663C87.2967 70.4755 87.2772 70.5086 87.28 70.5403C87.2829 70.572 87.3069 70.5902 87.3338 70.5811C87.3606 70.5719 87.3801 70.5388 87.3773 70.5071Z" fill="#D1FEF9"/>
|
||||
<path d="M87.1671 66.9635C87.1574 66.8543 87.0745 66.7914 86.9819 66.8229C86.8894 66.8545 86.8223 66.9686 86.832 67.0777C86.8417 67.1869 86.9246 67.2498 87.0172 67.2183C87.1097 67.1867 87.1768 67.0727 87.1671 66.9635Z" fill="#D1FEF9"/>
|
||||
<path d="M74.7174 75.809C74.7037 75.6551 74.5867 75.5663 74.4562 75.6108C74.3257 75.6553 74.231 75.8162 74.2447 75.9702C74.2584 76.1242 74.3754 76.213 74.5059 76.1685C74.6364 76.124 74.7311 75.963 74.7174 75.809Z" fill="#D1FEF9"/>
|
||||
<path d="M85.192 67.7325C85.1875 67.6812 85.1485 67.6517 85.1051 67.6665C85.0616 67.6813 85.0301 67.7349 85.0347 67.7861C85.0393 67.8374 85.0782 67.8669 85.1216 67.8521C85.1651 67.8373 85.1966 67.7837 85.192 67.7325Z" fill="#D1FEF9"/>
|
||||
<path d="M87.3531 67.3437C87.3488 67.2955 87.3122 67.2677 87.2713 67.2816C87.2305 67.2955 87.2008 67.3459 87.2051 67.3941C87.2094 67.4424 87.246 67.4701 87.2869 67.4562C87.3278 67.4423 87.3574 67.3919 87.3531 67.3437Z" fill="#D1FEF9"/>
|
||||
<path d="M85.89 67.9288C85.8859 67.8826 85.8509 67.8561 85.8118 67.8694C85.7727 67.8827 85.7443 67.9309 85.7484 67.977C85.7525 68.0232 85.7876 68.0497 85.8267 68.0364C85.8658 68.0231 85.8941 67.9749 85.89 67.9288Z" fill="#D1FEF9"/>
|
||||
<path d="M88.3479 67.7543C88.3416 67.683 88.2875 67.642 88.227 67.6626C88.1666 67.6832 88.1228 67.7576 88.1291 67.8289C88.1355 67.9002 88.1896 67.9413 88.25 67.9207C88.3105 67.9001 88.3543 67.8256 88.3479 67.7543Z" fill="#D1FEF9"/>
|
||||
<path d="M78.6948 70.2169C78.687 70.1298 78.6209 70.0795 78.547 70.1047C78.4732 70.1299 78.4196 70.2209 78.4273 70.3081C78.4351 70.3952 78.5013 70.4454 78.5751 70.4202C78.649 70.3951 78.7026 70.304 78.6948 70.2169Z" fill="#D1FEF9"/>
|
||||
<path d="M77.4198 70.7358C77.4158 70.6908 77.3817 70.6649 77.3436 70.6779C77.3054 70.6909 77.2778 70.7379 77.2818 70.7829C77.2858 70.8278 77.32 70.8537 77.3581 70.8407C77.3962 70.8277 77.4238 70.7808 77.4198 70.7358Z" fill="#D1FEF9"/>
|
||||
<path d="M76.0867 72.3838C76.082 72.3311 76.042 72.3008 75.9974 72.316C75.9528 72.3312 75.9204 72.3862 75.9251 72.4389C75.9298 72.4915 75.9698 72.5218 76.0144 72.5066C76.059 72.4914 76.0914 72.4364 76.0867 72.3838Z" fill="#D1FEF9"/>
|
||||
<path d="M78.2128 71.641C78.2073 71.5785 78.1599 71.5426 78.1069 71.5606C78.054 71.5786 78.0156 71.6439 78.0212 71.7063C78.0267 71.7687 78.0742 71.8047 78.1271 71.7867C78.18 71.7686 78.2184 71.7034 78.2128 71.641Z" fill="#D1FEF9"/>
|
||||
<path d="M79.9949 71.5345C79.9897 71.4765 79.9457 71.443 79.8965 71.4598C79.8473 71.4766 79.8116 71.5372 79.8168 71.5952C79.822 71.6532 79.866 71.6866 79.9152 71.6698C79.9644 71.6531 80 71.5925 79.9949 71.5345Z" fill="#D1FEF9"/>
|
||||
<path d="M75.6596 76.2418C75.6544 76.1836 75.6102 76.15 75.5608 76.1668C75.5115 76.1836 75.4756 76.2445 75.4808 76.3027C75.486 76.361 75.5303 76.3946 75.5796 76.3777C75.629 76.3609 75.6648 76.3 75.6596 76.2418Z" fill="#D1FEF9"/>
|
||||
<path d="M73.301 76.4223C73.2947 76.3518 73.2411 76.3111 73.1813 76.3315C73.1214 76.3519 73.078 76.4256 73.0843 76.4962C73.0906 76.5668 73.1442 76.6075 73.204 76.5871C73.2639 76.5667 73.3073 76.4929 73.301 76.4223Z" fill="#D1FEF9"/>
|
||||
<path d="M78.7604 75.3794C78.7516 75.2805 78.6765 75.2234 78.5926 75.252C78.5087 75.2806 78.4479 75.384 78.4567 75.483C78.4655 75.5819 78.5406 75.6389 78.6245 75.6103C78.7084 75.5818 78.7692 75.4784 78.7604 75.3794Z" fill="#D1FEF9"/>
|
||||
<path d="M78.9006 74.3151C78.8974 74.2788 78.8698 74.2578 78.839 74.2683C78.8082 74.2788 78.7858 74.3168 78.7891 74.3531C78.7923 74.3895 78.8199 74.4104 78.8507 74.3999C78.8815 74.3894 78.9039 74.3515 78.9006 74.3151Z" fill="#D1FEF9"/>
|
||||
<path d="M76.3114 75.8333C76.3077 75.7914 76.2758 75.7672 76.2403 75.7793C76.2047 75.7915 76.179 75.8353 76.1827 75.8772C76.1864 75.9191 76.2183 75.9433 76.2538 75.9312C76.2894 75.9191 76.3151 75.8753 76.3114 75.8333Z" fill="#D1FEF9"/>
|
||||
<path d="M75.1796 76.8035C75.1751 76.7524 75.1363 76.723 75.0931 76.7378C75.0498 76.7525 75.0185 76.8058 75.023 76.8568C75.0276 76.9079 75.0663 76.9373 75.1096 76.9225C75.1528 76.9078 75.1842 76.8545 75.1796 76.8035Z" fill="#D1FEF9"/>
|
||||
<path d="M173.49 52.5404C173.542 52.5036 173.55 52.4434 173.507 52.406C173.464 52.3686 173.387 52.3682 173.335 52.405C173.283 52.4418 173.275 52.502 173.318 52.5394C173.361 52.5768 173.438 52.5773 173.49 52.5404Z" fill="#D1FEF9"/>
|
||||
<path d="M172.239 49.8048C172.296 49.7644 172.304 49.6985 172.257 49.6576C172.21 49.6166 172.125 49.6161 172.068 49.6565C172.011 49.6968 172.003 49.7627 172.05 49.8037C172.097 49.8446 172.182 49.8451 172.239 49.8048Z" fill="#D1FEF9"/>
|
||||
<path d="M171.411 49.5465C171.488 49.4923 171.499 49.4037 171.435 49.3487C171.372 49.2936 171.259 49.293 171.182 49.3472C171.105 49.4014 171.094 49.4899 171.157 49.545C171.221 49.6 171.334 49.6007 171.411 49.5465Z" fill="#D1FEF9"/>
|
||||
<path d="M170.907 47.9638C170.942 47.9393 170.947 47.8991 170.918 47.8742C170.889 47.8493 170.838 47.849 170.803 47.8735C170.768 47.8981 170.763 47.9382 170.792 47.9631C170.821 47.988 170.872 47.9884 170.907 47.9638Z" fill="#D1FEF9"/>
|
||||
<path d="M170.834 46.1139C170.945 46.0356 170.961 45.9077 170.87 45.8282C170.778 45.7487 170.614 45.7477 170.503 45.826C170.393 45.9043 170.377 46.0322 170.468 46.1117C170.559 46.1912 170.723 46.1922 170.834 46.1139Z" fill="#D1FEF9"/>
|
||||
<path d="M170.056 45.8704C170.093 45.8441 170.098 45.8011 170.067 45.7744C170.037 45.7477 169.982 45.7474 169.944 45.7737C169.907 45.8 169.902 45.8429 169.933 45.8697C169.963 45.8964 170.018 45.8967 170.056 45.8704Z" fill="#D1FEF9"/>
|
||||
<path d="M169.502 49.0504C169.56 49.0093 169.569 48.9421 169.521 48.9003C169.473 48.8585 169.386 48.858 169.328 48.8991C169.27 48.9403 169.262 49.0075 169.31 49.0493C169.358 49.0911 169.444 49.0916 169.502 49.0504Z" fill="#D1FEF9"/>
|
||||
<path d="M171.939 51.998C171.955 51.987 171.957 51.9691 171.944 51.958C171.932 51.9469 171.909 51.9468 171.893 51.9577C171.878 51.9687 171.876 51.9865 171.888 51.9977C171.901 52.0088 171.924 52.0089 171.939 51.998Z" fill="#D1FEF9"/>
|
||||
<path d="M172.974 53.0753C173.037 53.0313 173.046 52.9594 172.994 52.9148C172.943 52.8701 172.851 52.8696 172.789 52.9135C172.726 52.9575 172.717 53.0294 172.769 53.074C172.82 53.1187 172.912 53.1192 172.974 53.0753Z" fill="#D1FEF9"/>
|
||||
<path d="M172.657 51.4201C172.743 51.3593 172.755 51.26 172.684 51.1983C172.613 51.1365 172.486 51.1358 172.4 51.1966C172.314 51.2574 172.302 51.3567 172.373 51.4184C172.443 51.4802 172.571 51.4809 172.657 51.4201Z" fill="#D1FEF9"/>
|
||||
<path d="M171.558 50.7833C171.584 50.7649 171.588 50.7349 171.566 50.7163C171.545 50.6977 171.507 50.6975 171.481 50.7158C171.455 50.7341 171.451 50.7641 171.472 50.7828C171.494 50.8014 171.532 50.8016 171.558 50.7833Z" fill="#D1FEF9"/>
|
||||
<path d="M174.517 48.8241C174.607 48.7608 174.619 48.6576 174.546 48.5934C174.472 48.5292 174.34 48.5284 174.25 48.5916C174.16 48.6548 174.148 48.7581 174.221 48.8223C174.295 48.8865 174.427 48.8873 174.517 48.8241Z" fill="#D1FEF9"/>
|
||||
<path d="M160.617 42.4956C160.743 42.4064 160.761 42.2607 160.657 42.1701C160.553 42.0796 160.367 42.0785 160.24 42.1676C160.114 42.2568 160.096 42.4025 160.2 42.4931C160.304 42.5836 160.491 42.5847 160.617 42.4956Z" fill="#D1FEF9"/>
|
||||
<path d="M172.862 47.5007C172.904 47.471 172.91 47.4225 172.875 47.3924C172.84 47.3623 172.778 47.3619 172.736 47.3916C172.694 47.4213 172.688 47.4697 172.723 47.4999C172.757 47.53 172.82 47.5304 172.862 47.5007Z" fill="#D1FEF9"/>
|
||||
<path d="M174.283 49.1752C174.323 49.1473 174.329 49.1016 174.296 49.0733C174.263 49.0449 174.205 49.0446 174.165 49.0725C174.126 49.1004 174.12 49.146 174.153 49.1744C174.185 49.2028 174.244 49.2031 174.283 49.1752Z" fill="#D1FEF9"/>
|
||||
<path d="M173.041 48.2022C173.079 48.1755 173.084 48.1319 173.053 48.1047C173.022 48.0776 172.966 48.0773 172.928 48.104C172.89 48.1307 172.885 48.1743 172.916 48.2015C172.947 48.2286 173.003 48.2289 173.041 48.2022Z" fill="#D1FEF9"/>
|
||||
<path d="M174.427 50.2421C174.485 50.2008 174.494 50.1334 174.445 50.0914C174.397 50.0495 174.311 50.049 174.252 50.0903C174.194 50.1316 174.186 50.199 174.234 50.2409C174.282 50.2829 174.368 50.2834 174.427 50.2421Z" fill="#D1FEF9"/>
|
||||
<path d="M167.452 43.1284C167.523 43.0779 167.534 42.9955 167.475 42.9442C167.416 42.893 167.31 42.8924 167.239 42.9428C167.167 42.9933 167.157 43.0757 167.216 43.1269C167.275 43.1782 167.38 43.1788 167.452 43.1284Z" fill="#D1FEF9"/>
|
||||
<path d="M166.36 42.2859C166.397 42.2599 166.402 42.2173 166.372 42.1909C166.342 42.1645 166.287 42.1641 166.25 42.1902C166.213 42.2162 166.208 42.2587 166.239 42.2852C166.269 42.3116 166.323 42.3119 166.36 42.2859Z" fill="#D1FEF9"/>
|
||||
<path d="M164.268 41.9612C164.311 41.9307 164.317 41.8809 164.281 41.85C164.246 41.819 164.182 41.8186 164.139 41.8491C164.096 41.8796 164.089 41.9294 164.125 41.9604C164.16 41.9913 164.224 41.9917 164.268 41.9612Z" fill="#D1FEF9"/>
|
||||
<path d="M165.978 43.4269C166.029 43.3907 166.036 43.3316 165.994 43.2949C165.952 43.2582 165.876 43.2578 165.825 43.2939C165.774 43.3301 165.767 43.3891 165.809 43.4259C165.851 43.4626 165.927 43.463 165.978 43.4269Z" fill="#D1FEF9"/>
|
||||
<path d="M166.962 44.9133C167.01 44.8797 167.017 44.8248 166.978 44.7907C166.938 44.7566 166.868 44.7562 166.821 44.7898C166.773 44.8234 166.766 44.8782 166.805 44.9124C166.844 44.9465 166.915 44.9469 166.962 44.9133Z" fill="#D1FEF9"/>
|
||||
<path d="M160.717 43.5278C160.765 43.4941 160.772 43.439 160.732 43.4047C160.693 43.3705 160.623 43.37 160.575 43.4038C160.527 43.4375 160.52 43.4926 160.56 43.5269C160.599 43.5611 160.669 43.5615 160.717 43.5278Z" fill="#D1FEF9"/>
|
||||
<path d="M159.375 41.5792C159.433 41.5384 159.441 41.4716 159.394 41.4301C159.346 41.3885 159.26 41.388 159.202 41.4289C159.145 41.4698 159.136 41.5366 159.184 41.5781C159.232 41.6196 159.317 41.6201 159.375 41.5792Z" fill="#D1FEF9"/>
|
||||
<path d="M163.018 45.7769C163.099 45.7196 163.111 45.626 163.044 45.5678C162.977 45.5096 162.857 45.5089 162.776 45.5662C162.695 45.6235 162.683 45.7171 162.75 45.7753C162.817 45.8335 162.937 45.8342 163.018 45.7769Z" fill="#D1FEF9"/>
|
||||
<path d="M164.01 45.3635C164.04 45.3425 164.044 45.3081 164.02 45.2867C163.995 45.2653 163.951 45.2651 163.921 45.2861C163.891 45.3072 163.887 45.3415 163.912 45.3629C163.936 45.3843 163.98 45.3846 164.01 45.3635Z" fill="#D1FEF9"/>
|
||||
<path d="M161.397 43.8862C161.432 43.8619 161.437 43.8222 161.408 43.7975C161.38 43.7729 161.329 43.7726 161.295 43.7969C161.26 43.8211 161.255 43.8608 161.284 43.8855C161.312 43.9101 161.363 43.9104 161.397 43.8862Z" fill="#D1FEF9"/>
|
||||
<path d="M159.99 43.394C160.031 43.3645 160.037 43.3162 160.003 43.2862C159.969 43.2562 159.907 43.2558 159.865 43.2854C159.823 43.3149 159.817 43.3632 159.851 43.3932C159.886 43.4232 159.948 43.4236 159.99 43.394Z" fill="#D1FEF9"/>
|
||||
<path d="M209.231 88.775C208.832 87.2434 213.616 82.229 207.579 76.6272C205.314 74.5257 201.827 75.4313 200.346 74.4242C198.865 73.4171 200.061 70.6477 196.473 63.9758C192.885 57.3039 188.785 54.5974 184.741 54.8492C180.697 55.101 177.394 56.6116 175.059 58.6257C174.983 54.0099 173.487 44.1616 168.111 41.6943C161.39 38.6101 158.428 41.6943 156.207 41.6943C153.986 41.6943 154.1 39.4913 150.341 37.9177C146.582 36.3442 143.165 38.736 140.26 37.9177C137.356 37.0995 137.242 33.6377 132.8 28.6652C128.357 23.6928 125.168 17.3986 110.702 19.7904C96.2355 22.1822 90.8819 33.6377 90.6541 40.4984C90.4263 47.3591 90.4832 46.7296 86.3257 51.0727C82.1681 55.4157 86.4396 62.2134 86.3257 63.9758C86.2117 65.7382 69.9231 67.1859 69.9231 88.6491" stroke="#5EE1EA" stroke-width="0.155848"/>
|
||||
<path d="M99.2776 41.0847C107.732 41.0847 111.165 45.4425 112.857 49.582C112.096 50.3761 109.468 51.8443 104.948 50.8823C100.428 49.9204 99.2762 43.9096 99.2776 41.0847Z" fill="#D9D9D9"/>
|
||||
<mask id="mask0_1649_5538" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="104" y="44" width="8" height="9">
|
||||
<path d="M111.142 47.941C111.352 50.2203 110.106 52.1987 108.04 52.3892C105.975 52.5797 104.388 50.8625 104.177 48.5832C103.967 46.3038 105.345 44.3133 107.279 44.1349C109.214 43.9566 110.932 45.6616 111.142 47.941Z" fill="black"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_1649_5538)">
|
||||
<path d="M99.1581 41.2146C106.889 38.3241 111.432 45.6751 112.737 49.7119C111.976 50.506 109.323 51.8536 104.804 50.8917C100.284 49.9297 99.1567 44.0395 99.1581 41.2146Z" fill="black"/>
|
||||
</g>
|
||||
<path d="M129.548 33.7861C123.341 36.8946 121.194 43.8239 122.1 47.9685C123.158 48.2707 126.128 48.098 129.548 44.9896C132.967 41.8811 130.972 36.2254 129.548 33.7861Z" fill="#D9D9D9"/>
|
||||
<mask id="mask1_1649_5538" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="122" y="39" width="8" height="10">
|
||||
<path d="M122.24 44.0499C122.24 46.3389 123.663 48.1945 125.737 48.1945C127.812 48.1945 129.234 46.3389 129.234 44.0499C129.234 41.7609 127.68 39.9053 125.737 39.9053C123.795 39.9053 122.24 41.7609 122.24 44.0499Z" fill="#4A36C3"/>
|
||||
</mask>
|
||||
<g mask="url(#mask1_1649_5538)">
|
||||
<path d="M129.428 33.915C121.295 35.3139 121.074 43.9528 121.981 48.0974C123.039 48.3996 126.009 48.2269 129.428 45.1185C132.848 42.01 130.853 36.3543 129.428 33.915Z" fill="#4A36C3"/>
|
||||
</g>
|
||||
<path d="M125.128 41.8867C125.102 41.8612 125.058 41.8733 125.049 41.9084L124.693 43.3166C124.689 43.33 124.68 43.3412 124.668 43.3472L123.326 43.9982C123.292 44.0145 123.29 44.0619 123.323 44.0807L124.586 44.8137C124.598 44.8209 124.607 44.8335 124.609 44.8477L124.808 46.2696C124.813 46.306 124.856 46.3225 124.885 46.299L126.026 45.3452C126.036 45.3366 126.049 45.3329 126.063 45.3349L127.532 45.5641C127.568 45.5697 127.597 45.5333 127.582 45.4996L127.02 44.1782C127.015 44.165 127.016 44.1499 127.023 44.1373L127.727 42.8581C127.745 42.8253 127.719 42.7856 127.682 42.789L126.196 42.9229C126.182 42.9242 126.169 42.9193 126.159 42.9096L125.128 41.8867Z" fill="#2D1D8E"/>
|
||||
<path d="M161.583 90.6047C158.928 90.9283 158.626 83.8227 158.759 82.8996C160.276 81.6097 161.996 82.2933 162.706 83.1227C162.108 86.643 164.239 90.281 161.583 90.6047Z" fill="#DE493C"/>
|
||||
<path d="M152.174 68.8071C150.33 70.6861 156.6 75.15 157.432 75.5372C159.577 74.6791 157.53 71.7347 157.228 70.703C154.005 69.3033 153.485 67.4713 152.174 68.8071Z" fill="url(#paint3_linear_1649_5538)"/>
|
||||
<path d="M157.636 61.3714C161.272 55.5926 166.476 55.5925 169.824 58.4901C172.997 61.8565 170.716 65.7301 170.716 69.0056C170.716 72.1535 171.059 73.527 171.522 77.1964C172.002 80.9944 170.449 86.5894 164.079 86.0896C157.709 85.5898 156.403 77.6381 156.093 75.1571C155.783 72.6761 154.632 66.1469 157.636 61.3714Z" fill="url(#paint4_linear_1649_5538)"/>
|
||||
<path d="M160.696 67.5025C159.055 67.0817 158.002 65.9427 157.645 65.1936C158.091 64.2481 159.295 62.1655 160.54 61.3989C162.097 60.4408 164.165 61.515 165.046 63.1637C165.75 64.4827 165.926 65.9283 166.155 66.9567C165.142 67.4907 162.923 68.0735 160.696 67.5025Z" fill="#FEF9F5"/>
|
||||
<mask id="mask2_1649_5538" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="158" y="60" width="7" height="7">
|
||||
<path d="M158.9 63.4033C158.741 65.0202 159.739 66.4424 161.13 66.5799C162.522 66.7174 164.178 65.6132 164.338 63.9963C164.498 62.3794 163.1 60.8622 161.709 60.7247C160.318 60.5872 159.06 61.7865 158.9 63.4033Z" fill="black"/>
|
||||
</mask>
|
||||
<g mask="url(#mask2_1649_5538)">
|
||||
<path d="M160.62 68.1704C159.036 67.572 157.926 65.9242 157.569 65.1751C158.015 64.2296 159.219 62.1469 160.464 61.3804C162.021 60.4222 164.089 61.4965 164.97 63.1452C165.674 64.4642 166.129 66.4183 166.422 67.2814C165.41 67.8154 162.601 68.9185 160.62 68.1704Z" fill="black"/>
|
||||
</g>
|
||||
<path d="M158.501 68.8951C156.807 70.9099 161.863 74.5582 162.695 74.9455C165.48 75.0591 165.574 73.0241 165.272 71.9923C162.049 70.5926 160.196 66.8804 158.501 68.8951Z" fill="url(#paint5_linear_1649_5538)"/>
|
||||
<path d="M166.904 90.6047C164.248 90.9283 163.947 83.8227 164.079 82.8996C165.597 81.6097 167.316 82.2933 168.027 83.1227C167.428 86.643 169.559 90.281 166.904 90.6047Z" fill="url(#paint6_linear_1649_5538)"/>
|
||||
<path d="M158.548 71.1621C161.466 74.6802 162.839 75.0521 163.268 75.2809C162.953 75.3095 161.945 75.1144 161.037 74.5086C160.264 73.9938 158.72 72.2776 158.548 71.1621Z" fill="#DB422A"/>
|
||||
<g filter="url(#filter1_f_1649_5538)">
|
||||
<rect x="115" y="54" width="43.6517" height="30.9026" rx="3.46442" fill="#DBFF00" fill-opacity="0.2"/>
|
||||
</g>
|
||||
<rect x="118.118" y="56.1484" width="37.4157" height="26.6067" rx="3.39513" fill="#F1FF50" fill-opacity="0.2" stroke="#FFF500" stroke-width="0.138577"/>
|
||||
<circle cx="136.851" cy="66.9748" r="5.56076" stroke="#76FF9C" stroke-width="0.138577" stroke-dasharray="0.69 0.69"/>
|
||||
<path d="M134.713 72.083L133.722 77.7652H131.48" stroke="#76FF9C" stroke-width="0.138577" stroke-dasharray="0.69 0.69"/>
|
||||
<path d="M139.041 72.083L140.032 77.7652H142.273" stroke="#76FF9C" stroke-width="0.138577" stroke-dasharray="0.69 0.69"/>
|
||||
<path d="M131.325 66.1396L128.041 68.4855L131.847 69.5802C131.899 69.9973 131.867 70.8835 131.325 71.092" stroke="#76FF9C" stroke-width="0.138577" stroke-dasharray="0.69 0.69"/>
|
||||
<path d="M142.395 66.1396L145.68 68.4855L141.874 69.5802C141.822 69.9973 141.853 70.8835 142.395 71.092" stroke="#76FF9C" stroke-width="0.138577" stroke-dasharray="0.69 0.69"/>
|
||||
<path d="M133.15 65.9844C133.463 66.2972 139.51 66.5057 140.657 65.9844" stroke="#76FF9C" stroke-width="0.138577" stroke-dasharray="0.69 0.69"/>
|
||||
<circle cx="134.974" cy="64.0552" r="0.20852" fill="#76FF9C"/>
|
||||
<circle cx="138.101" cy="64.0552" r="0.20852" fill="#76FF9C"/>
|
||||
<rect x="150.069" y="49.0693" width="26.191" height="1.66292" rx="0.831461" fill="#F2A632" fill-opacity="0.2" stroke="#FFAB49" stroke-width="0.138577"/>
|
||||
<rect x="150" y="49" width="17.7034" height="1.8015" rx="0.900749" fill="#F2A632" fill-opacity="0.7"/>
|
||||
<rect x="180.053" y="60.0534" width="21.8932" height="11.2136" rx="2.61651" fill="#ACFF58" fill-opacity="0.2" stroke="#FFF500" stroke-width="0.106796"/>
|
||||
<path d="M195.571 65.5421V65.7768C195.502 65.7368 195.433 65.7068 195.364 65.6868C195.294 65.6668 195.223 65.6568 195.151 65.6568C195.042 65.6568 194.961 65.6746 194.907 65.7103C194.854 65.745 194.828 65.7985 194.828 65.8706C194.828 65.9358 194.848 65.9845 194.888 66.0166C194.928 66.0488 195.027 66.0801 195.186 66.1105L195.283 66.1287C195.402 66.1513 195.492 66.1965 195.553 66.2643C195.614 66.3321 195.645 66.4203 195.645 66.529C195.645 66.6732 195.594 66.7862 195.491 66.8679C195.389 66.9487 195.246 66.9892 195.064 66.9892C194.992 66.9892 194.916 66.9813 194.837 66.9657C194.758 66.9509 194.672 66.9283 194.58 66.8979V66.6502C194.67 66.6963 194.755 66.731 194.837 66.7545C194.919 66.7771 194.996 66.7884 195.069 66.7884C195.175 66.7884 195.257 66.7671 195.315 66.7245C195.374 66.6811 195.403 66.6207 195.403 66.5433C195.403 66.4321 195.296 66.3551 195.083 66.3126L195.073 66.31L194.983 66.2917C194.845 66.2648 194.744 66.2196 194.68 66.1561C194.617 66.0918 194.585 66.0045 194.585 65.8941C194.585 65.7542 194.633 65.6464 194.727 65.5708C194.822 65.4943 194.957 65.4561 195.133 65.4561C195.211 65.4561 195.286 65.4634 195.358 65.4782C195.431 65.4921 195.501 65.5134 195.571 65.5421Z" fill="#76FF9C"/>
|
||||
<path d="M193.39 66.4234C193.39 66.5311 193.41 66.6124 193.449 66.6672C193.489 66.7219 193.547 66.7493 193.625 66.7493H193.905V66.9514H193.601C193.458 66.9514 193.347 66.9057 193.268 66.8145C193.189 66.7224 193.15 66.592 193.15 66.4234V65.1028H192.766V64.915H193.39V66.4234Z" fill="#76FF9C"/>
|
||||
<path d="M191.406 65.6594C191.284 65.6594 191.192 65.7068 191.129 65.8015C191.067 65.8963 191.035 66.0366 191.035 66.2226C191.035 66.4077 191.067 66.5481 191.129 66.6437C191.192 66.7384 191.284 66.7858 191.406 66.7858C191.528 66.7858 191.621 66.7384 191.683 66.6437C191.746 66.5481 191.777 66.4077 191.777 66.2226C191.777 66.0366 191.746 65.8963 191.683 65.8015C191.621 65.7068 191.528 65.6594 191.406 65.6594ZM191.406 65.4561C191.608 65.4561 191.763 65.5217 191.87 65.6529C191.978 65.7841 192.031 65.974 192.031 66.2226C192.031 66.472 191.978 66.6624 191.871 66.7936C191.764 66.924 191.609 66.9892 191.406 66.9892C191.203 66.9892 191.049 66.924 190.942 66.7936C190.835 66.6624 190.781 66.472 190.781 66.2226C190.781 65.974 190.835 65.7841 190.942 65.6529C191.049 65.5217 191.203 65.4561 191.406 65.4561Z" fill="#76FF9C"/>
|
||||
<path d="M189.558 65.6594C189.436 65.6594 189.344 65.7068 189.282 65.8015C189.219 65.8963 189.188 66.0366 189.188 66.2226C189.188 66.4077 189.219 66.5481 189.282 66.6437C189.344 66.7384 189.436 66.7858 189.558 66.7858C189.681 66.7858 189.773 66.7384 189.836 66.6437C189.898 66.5481 189.93 66.4077 189.93 66.2226C189.93 66.0366 189.898 65.8963 189.836 65.8015C189.773 65.7068 189.681 65.6594 189.558 65.6594ZM189.558 65.4561C189.761 65.4561 189.915 65.5217 190.022 65.6529C190.13 65.7841 190.184 65.974 190.184 66.2226C190.184 66.472 190.13 66.6624 190.023 66.7936C189.917 66.924 189.761 66.9892 189.558 66.9892C189.356 66.9892 189.201 66.924 189.094 66.7936C188.987 66.6624 188.934 66.472 188.934 66.2226C188.934 65.974 188.987 65.7841 189.094 65.6529C189.201 65.5217 189.356 65.4561 189.558 65.4561Z" fill="#76FF9C"/>
|
||||
<path d="M186.967 65.0049H188.452V65.2265H187.843V66.9513H187.578V65.2265H186.967V65.0049Z" fill="#76FF9C"/>
|
||||
<line x1="180.763" y1="74.2079" x2="180.763" y2="81.9682" stroke="#E27526" stroke-opacity="0.3" stroke-width="0.41573" stroke-linecap="round"/>
|
||||
<circle cx="180.762" cy="77.6723" r="0.762173" fill="#F57600"/>
|
||||
<line x1="182.841" y1="74.2079" x2="182.841" y2="81.9682" stroke="#E27526" stroke-opacity="0.3" stroke-width="0.41573" stroke-linecap="round"/>
|
||||
<circle cx="182.84" cy="79.6118" r="0.762173" fill="#F57600"/>
|
||||
<line x1="184.921" y1="74.2079" x2="184.921" y2="81.9682" stroke="#E27526" stroke-opacity="0.3" stroke-width="0.41573" stroke-linecap="round"/>
|
||||
<circle cx="184.92" cy="75.8706" r="0.762173" fill="#F57600"/>
|
||||
<rect x="110.139" y="76.1386" width="10.2547" height="11.2247" rx="1.52435" stroke="#67EEAD" stroke-opacity="0.4" stroke-width="0.277154"/>
|
||||
<rect x="136" y="80" width="18.7851" height="6.02552" rx="3.01276" fill="#16CF89"/>
|
||||
<path d="M142.397 83.0856C142.459 83.1283 142.459 83.22 142.397 83.2628L140.192 84.7818C140.121 84.831 140.024 84.7799 140.024 84.6932L140.024 81.6551C140.024 81.5684 140.121 81.5173 140.192 81.5665L142.397 83.0856Z" fill="black"/>
|
||||
<path d="M151.378 82.1209C151.38 82.1321 151.38 82.1432 151.378 82.1543C151.378 82.1654 151.375 82.1776 151.368 82.191C151.359 82.2221 151.349 82.2499 151.338 82.2744C151.324 82.3055 151.308 82.3322 151.288 82.3544C151.279 82.3678 151.27 82.3811 151.261 82.3945C151.254 82.4056 151.248 82.4167 151.241 82.4278L151.198 82.4845L150.771 83.1016L150.694 83.1983V84.0856C150.69 84.0967 150.687 84.1078 150.687 84.1189C150.687 84.1301 150.686 84.1423 150.684 84.1556C150.68 84.1667 150.676 84.1779 150.674 84.189C150.672 84.1979 150.668 84.2079 150.664 84.219C150.66 84.2279 150.657 84.2346 150.657 84.239C150.655 84.2435 150.653 84.2468 150.651 84.249C150.651 84.2512 150.65 84.2546 150.647 84.259C150.634 84.2813 150.615 84.3013 150.591 84.3191C150.542 84.3435 150.486 84.3491 150.424 84.3357C150.388 84.3313 150.362 84.3202 150.344 84.3024C150.333 84.2957 150.324 84.2879 150.317 84.279C150.31 84.2701 150.304 84.2601 150.297 84.249C150.293 84.2357 150.288 84.2235 150.284 84.2123C150.279 84.2012 150.276 84.1901 150.274 84.179C150.269 84.1679 150.267 84.1579 150.267 84.149C150.267 84.1378 150.267 84.1278 150.267 84.1189V83.2083L150.194 83.0949L149.76 82.4812L149.723 82.4211C149.71 82.4011 149.693 82.3778 149.673 82.3511C149.656 82.3266 149.64 82.2999 149.627 82.271C149.618 82.2577 149.61 82.2444 149.603 82.231C149.599 82.2154 149.594 82.1999 149.59 82.1843C149.583 82.1621 149.582 82.1398 149.587 82.1176C149.593 82.0887 149.607 82.0642 149.627 82.0442C149.649 82.0242 149.672 82.0086 149.697 81.9975C149.728 81.9753 149.763 81.9664 149.803 81.9708C149.828 81.9708 149.849 81.9753 149.867 81.9842C149.885 81.9931 149.902 82.0031 149.92 82.0142C149.94 82.0298 149.959 82.0464 149.977 82.0642C149.997 82.082 150.015 82.1009 150.03 82.1209C150.048 82.1432 150.065 82.1643 150.08 82.1843C150.096 82.2021 150.111 82.2232 150.127 82.2477L150.137 82.261C150.19 82.3322 150.24 82.4011 150.287 82.4678C150.334 82.5323 150.383 82.6024 150.434 82.678C150.438 82.6824 150.445 82.6913 150.454 82.7047C150.463 82.718 150.473 82.7336 150.484 82.7514C150.493 82.7358 150.501 82.7225 150.507 82.7113C150.516 82.698 150.523 82.6891 150.527 82.6846C150.578 82.609 150.627 82.5379 150.674 82.4712C150.721 82.4045 150.771 82.3355 150.824 82.2644L150.831 82.251C150.849 82.231 150.864 82.211 150.878 82.191C150.893 82.1687 150.91 82.1465 150.928 82.1243C150.956 82.0842 150.995 82.0498 151.044 82.0209C151.08 81.9964 151.117 81.9808 151.154 81.9742C151.197 81.9697 151.233 81.9786 151.264 82.0009C151.278 82.0098 151.29 82.0175 151.301 82.0242C151.314 82.0309 151.326 82.0387 151.334 82.0476C151.352 82.0676 151.367 82.092 151.378 82.1209Z" fill="black"/>
|
||||
<path d="M149.642 84.1123C149.644 84.1256 149.645 84.139 149.645 84.1523C149.648 84.1634 149.649 84.1768 149.649 84.1923C149.649 84.219 149.641 84.2435 149.625 84.2657C149.619 84.2769 149.61 84.288 149.599 84.2991C149.588 84.308 149.574 84.3158 149.559 84.3224C149.503 84.3536 149.444 84.3647 149.382 84.3558C149.351 84.3469 149.323 84.3324 149.298 84.3124C149.294 84.308 149.291 84.3058 149.288 84.3058C149.286 84.3035 149.284 84.3002 149.282 84.2958C149.28 84.2935 149.277 84.2913 149.275 84.2891C149.273 84.2846 149.27 84.2813 149.265 84.2791C149.254 84.268 149.245 84.2579 149.238 84.2491C149.232 84.2379 149.225 84.2268 149.218 84.2157C149.214 84.2046 149.208 84.1946 149.202 84.1857C149.197 84.1746 149.192 84.1634 149.185 84.1523C149.181 84.1434 149.176 84.1356 149.172 84.129C149.167 84.1201 149.164 84.1112 149.162 84.1023C149.153 84.0823 149.147 84.0645 149.145 84.0489L149.075 83.8855C148.922 83.8855 148.768 83.8866 148.615 83.8888C148.463 83.8888 148.311 83.8877 148.158 83.8855L148.088 84.0489C148.083 84.0578 148.08 84.0667 148.078 84.0756C148.078 84.0845 148.075 84.0934 148.071 84.1023C148.067 84.1112 148.062 84.1201 148.058 84.129C148.055 84.1356 148.052 84.1434 148.048 84.1523C148.041 84.1634 148.034 84.1746 148.028 84.1857C148.023 84.1946 148.018 84.2046 148.011 84.2157C148.006 84.2268 148.001 84.2379 147.994 84.2491C147.988 84.2579 147.979 84.268 147.968 84.2791C147.963 84.2813 147.96 84.2846 147.958 84.2891C147.955 84.2913 147.953 84.2935 147.951 84.2958C147.949 84.3002 147.946 84.3035 147.944 84.3058C147.942 84.3058 147.939 84.308 147.934 84.3124C147.91 84.3324 147.882 84.3469 147.851 84.3558C147.789 84.3647 147.73 84.3536 147.674 84.3224C147.658 84.3158 147.645 84.308 147.634 84.2991C147.623 84.288 147.614 84.2769 147.607 84.2657C147.592 84.2435 147.584 84.219 147.584 84.1923C147.584 84.1768 147.584 84.1634 147.584 84.1523C147.586 84.139 147.588 84.1256 147.591 84.1123C147.595 84.0923 147.601 84.0723 147.607 84.0523C147.614 84.0322 147.617 84.0222 147.617 84.0222L148.311 82.3144L148.331 82.2611C148.336 82.2477 148.341 82.2355 148.348 82.2244C148.354 82.2133 148.36 82.1999 148.365 82.1843C148.376 82.1554 148.388 82.1299 148.401 82.1076C148.408 82.0943 148.416 82.0821 148.425 82.0709C148.433 82.0598 148.442 82.0487 148.451 82.0376C148.465 82.0198 148.483 82.0053 148.508 81.9942C148.539 81.9831 148.575 81.9775 148.615 81.9775C148.657 81.9775 148.694 81.9831 148.725 81.9942C148.749 82.0053 148.768 82.0198 148.781 82.0376C148.797 82.0576 148.814 82.0809 148.831 82.1076C148.845 82.1299 148.857 82.1554 148.868 82.1843C148.873 82.1999 148.878 82.2133 148.885 82.2244C148.892 82.2355 148.897 82.2477 148.902 82.2611L148.922 82.3144L149.615 84.0222C149.615 84.0222 149.619 84.0322 149.625 84.0523C149.632 84.0723 149.638 84.0923 149.642 84.1123ZM148.851 83.2951C148.823 83.2306 148.793 83.1639 148.761 83.095C148.733 83.026 148.701 82.956 148.668 82.8848C148.659 82.8648 148.65 82.8448 148.641 82.8248C148.632 82.8025 148.624 82.7814 148.615 82.7614C148.608 82.7814 148.6 82.8025 148.591 82.8248C148.582 82.8448 148.574 82.8648 148.565 82.8848C148.531 82.956 148.499 83.026 148.468 83.095C148.439 83.1639 148.41 83.2306 148.381 83.2951L148.321 83.4418H148.912L148.851 83.2951Z" fill="black"/>
|
||||
<path d="M147.311 84.0854C147.316 84.0965 147.318 84.1132 147.318 84.1354C147.318 84.1554 147.318 84.1721 147.318 84.1854C147.318 84.2032 147.315 84.2199 147.308 84.2355C147.301 84.251 147.292 84.2655 147.281 84.2788C147.261 84.3055 147.232 84.3255 147.194 84.3389C147.141 84.3567 147.091 84.3656 147.044 84.3656C147.02 84.3678 146.994 84.3689 146.968 84.3689C146.941 84.3689 146.914 84.3711 146.888 84.3756H146.874C146.703 84.3778 146.526 84.3778 146.344 84.3756C146.299 84.3733 146.249 84.3733 146.194 84.3756C146.138 84.38 146.084 84.3789 146.03 84.3722C145.977 84.3678 145.928 84.3556 145.884 84.3355C145.841 84.3133 145.811 84.2788 145.794 84.2321C145.789 84.221 145.786 84.211 145.784 84.2021C145.781 84.191 145.78 84.1799 145.78 84.1688C145.771 84.0932 145.768 84.0187 145.77 83.9453C145.772 83.8719 145.774 83.7996 145.774 83.7285L145.78 83.2448V82.7978C145.78 82.7178 145.78 82.6466 145.78 82.5844C145.782 82.5221 145.785 82.4532 145.787 82.3776V82.3609C145.789 82.3387 145.79 82.3164 145.79 82.2942C145.792 82.2719 145.794 82.2497 145.794 82.2275C145.798 82.1763 145.81 82.133 145.83 82.0974C145.844 82.064 145.867 82.0373 145.9 82.0173C145.929 81.9973 145.964 81.9873 146.004 81.9873C146.019 81.9873 146.034 81.9884 146.047 81.9906C146.063 81.9906 146.077 81.9918 146.09 81.994C146.104 81.9962 146.116 82.0006 146.127 82.0073C146.14 82.014 146.154 82.0229 146.167 82.034C146.18 82.0496 146.193 82.0685 146.204 82.0907C146.213 82.1152 146.218 82.1396 146.22 82.1641C146.223 82.1797 146.225 82.1941 146.227 82.2075C146.229 82.2208 146.231 82.2341 146.231 82.2475C146.226 82.2608 146.224 82.2742 146.224 82.2875C146.224 82.3008 146.224 82.3131 146.224 82.3242V82.3842L146.21 83.9553L146.871 83.962H147.028C147.041 83.962 147.056 83.9631 147.071 83.9653C147.087 83.9653 147.102 83.9664 147.118 83.9686C147.136 83.9708 147.151 83.9731 147.164 83.9753C147.178 83.9775 147.191 83.9809 147.204 83.9853C147.229 83.992 147.249 84.0031 147.265 84.0187C147.289 84.0409 147.305 84.0631 147.311 84.0854Z" fill="black"/>
|
||||
<path d="M145.263 82.188C145.347 82.2658 145.409 82.3592 145.449 82.4682C145.489 82.5749 145.505 82.6817 145.496 82.7884C145.487 82.8907 145.455 82.9852 145.399 83.0719C145.344 83.1564 145.259 83.2209 145.146 83.2654C145.057 83.3032 144.969 83.3299 144.882 83.3454C144.796 83.361 144.7 83.3732 144.596 83.3821C144.549 83.3866 144.509 83.3899 144.475 83.3921C144.444 83.3921 144.408 83.3932 144.365 83.3955C144.356 83.3955 144.341 83.3955 144.319 83.3955C144.299 83.3955 144.284 83.3966 144.275 83.3988V84.0893C144.269 84.1315 144.26 84.1749 144.249 84.2193C144.24 84.2638 144.214 84.2983 144.172 84.3227C144.147 84.3361 144.117 84.3439 144.082 84.3461C144.046 84.3483 144.014 84.3472 143.985 84.3428C143.954 84.3383 143.927 84.3305 143.905 84.3194C143.885 84.3061 143.868 84.2838 143.855 84.2527C143.846 84.2327 143.837 84.2104 143.828 84.186C143.822 84.1593 143.818 84.1271 143.818 84.0893V82.2447C143.818 82.2291 143.819 82.2147 143.822 82.2013C143.824 82.188 143.826 82.1746 143.828 82.1613C143.833 82.1502 143.836 82.138 143.838 82.1246C143.841 82.1113 143.844 82.099 143.848 82.0879C143.853 82.0768 143.857 82.0668 143.862 82.0579C143.868 82.049 143.876 82.0412 143.885 82.0346C143.896 82.0234 143.913 82.0134 143.935 82.0045C143.96 81.9956 143.995 81.9912 144.042 81.9912H144.049C144.117 81.9867 144.194 81.9834 144.279 81.9812C144.363 81.9767 144.433 81.9778 144.489 81.9845C144.52 81.989 144.549 81.9923 144.576 81.9945C144.602 81.9945 144.628 81.9956 144.652 81.9979C144.679 82.0001 144.706 82.0023 144.732 82.0045C144.759 82.0068 144.786 82.0101 144.812 82.0145C144.835 82.019 144.855 82.0223 144.872 82.0245C144.892 82.0268 144.912 82.0301 144.932 82.0346C144.95 82.039 144.969 82.0434 144.989 82.0479C145.011 82.0523 145.031 82.0601 145.049 82.0712C145.096 82.0846 145.135 82.1013 145.166 82.1213C145.197 82.1413 145.229 82.1635 145.263 82.188ZM145.063 82.7384C145.065 82.685 145.054 82.6383 145.029 82.5983C145.007 82.5582 144.975 82.5249 144.932 82.4982C144.89 82.4715 144.842 82.4504 144.789 82.4348C144.736 82.4193 144.682 82.4081 144.629 82.4015C144.616 82.4015 144.597 82.4015 144.572 82.4015C144.55 82.3992 144.525 82.3981 144.499 82.3981C144.472 82.3959 144.447 82.3948 144.422 82.3948C144.4 82.3926 144.382 82.3915 144.369 82.3915C144.358 82.3892 144.344 82.3881 144.329 82.3881C144.313 82.3881 144.295 82.3881 144.275 82.3881C144.278 82.4571 144.279 82.5238 144.279 82.5883C144.279 82.6505 144.279 82.7183 144.279 82.7917C144.276 82.8318 144.275 82.8718 144.275 82.9118C144.275 82.9518 144.275 82.9907 144.275 83.0285L144.482 83.0252C144.536 83.0252 144.594 83.0219 144.659 83.0152C144.723 83.0085 144.785 82.9952 144.842 82.9752C144.9 82.9552 144.949 82.9263 144.989 82.8885C145.031 82.8507 145.056 82.8006 145.063 82.7384Z" fill="black"/>
|
||||
<defs>
|
||||
<filter id="filter0_f_1649_5538" x="78.2435" y="89.4574" width="148.038" height="10.1428" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="1.8343" result="effect1_foregroundBlur_1649_5538"/>
|
||||
</filter>
|
||||
<filter id="filter1_f_1649_5538" x="99.2022" y="38.2022" width="75.2479" height="62.4979" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="7.89888" result="effect1_foregroundBlur_1649_5538"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1649_5538" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(115.514 20.4498) rotate(87.852) scale(65.2825 132.132)">
|
||||
<stop stop-color="#51DCFA" stop-opacity="0.79"/>
|
||||
<stop offset="0.760998" stop-color="#58DFFC" stop-opacity="0.0655291"/>
|
||||
<stop offset="1" stop-color="#59DFFC" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="paint1_linear_1649_5538" x1="113.009" y1="16.0172" x2="106.886" y2="105.174" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#8CFFEA" stop-opacity="0.36"/>
|
||||
<stop offset="0.78125" stop-color="#CDFF8C" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1649_5538" x1="114.811" y1="14.4968" x2="97.0423" y2="71.4066" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#CDFF8C" stop-opacity="0.36"/>
|
||||
<stop offset="0.78125" stop-color="#CDFF8C" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1649_5538" x1="151.718" y1="69.7315" x2="158.67" y2="74.2683" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#E04D40"/>
|
||||
<stop offset="1" stop-color="#F15F56"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_1649_5538" x1="165.441" y1="55.9816" x2="165.562" y2="87.5865" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F46A6A"/>
|
||||
<stop offset="1" stop-color="#EA5749"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_1649_5538" x1="158.045" y1="69.8196" x2="164.997" y2="74.3565" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF6F66"/>
|
||||
<stop offset="1" stop-color="#EF6058"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_1649_5538" x1="165.864" y1="90.4795" x2="165.862" y2="82.0444" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DA4639"/>
|
||||
<stop offset="1" stop-color="#EC5B4F"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 71 KiB |
111
newIDE/app/public/res/questionnaire/video-game.svg
Normal file
@@ -0,0 +1,111 @@
|
||||
<svg width="292" height="103" viewBox="0 0 292 103" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="292" height="102.768" fill="#1D1D26"/>
|
||||
<path d="M86.4043 59.599L67.1693 70.7034C66.9542 70.8275 66.9542 71.0288 67.1693 71.153L86.4425 82.2794L106.067 70.9503L86.4043 59.599Z" fill="#009E62" stroke="#009E62" stroke-width="0.899247" stroke-linejoin="bevel"/>
|
||||
<path d="M86.4023 59.2816L67.1673 70.386C66.9523 70.5101 66.9523 70.7114 67.1673 70.8356L86.4033 81.9405L106.028 70.6113L86.4023 59.2816Z" fill="#009E62" stroke="#009E62" stroke-width="0.899247" stroke-linejoin="bevel"/>
|
||||
<path d="M86.4023 58.9701L67.1673 70.0745C66.9523 70.1986 66.9523 70.3999 67.1673 70.5241L86.4033 81.629L106.028 70.2998L86.4023 58.9701Z" fill="#009E62" stroke="#009E62" stroke-width="0.899247" stroke-linejoin="bevel"/>
|
||||
<path d="M86.4023 58.6596L67.1673 69.7639C66.9523 69.8881 66.9523 70.0894 67.1673 70.2135L86.4033 81.3184L106.028 69.9893L86.4023 58.6596Z" fill="#009E62" stroke="#009E62" stroke-width="0.899247" stroke-linejoin="bevel"/>
|
||||
<path d="M86.4023 58.349L67.1673 69.4534C66.9523 69.5775 66.9523 69.7788 67.1673 69.903L86.4033 81.0079L106.028 69.6787L86.4023 58.349Z" fill="#009E62" stroke="#009E62" stroke-width="0.899247" stroke-linejoin="bevel"/>
|
||||
<path d="M86.4023 58.0385L67.1673 69.1428C66.9523 69.267 66.9523 69.4683 67.1673 69.5924L86.4033 80.6973L106.028 69.3682L86.4023 58.0385Z" fill="#009E62" stroke="#009E62" stroke-width="0.899247" stroke-linejoin="bevel"/>
|
||||
<path d="M86.4023 57.7279L67.1673 68.8323C66.9523 68.9564 66.9523 69.1577 67.1673 69.2819L86.4033 80.3868L106.028 69.0576L86.4023 57.7279Z" fill="#009E62" stroke="#009E62" stroke-width="0.899247" stroke-linejoin="bevel"/>
|
||||
<path d="M86.4023 57.4174L67.1673 68.5217C66.9523 68.6459 66.9523 68.8472 67.1673 68.9713L86.4033 80.0762L106.028 68.7471L86.4023 57.4174Z" fill="#009E62" stroke="#009E62" stroke-width="0.899247" stroke-linejoin="bevel"/>
|
||||
<path d="M86.4023 57.1058L67.1673 68.2102C66.9523 68.3344 66.9523 68.5357 67.1673 68.6598L86.4033 79.7647L106.028 68.4355L86.4023 57.1058Z" fill="#009E62" stroke="#009E62" stroke-width="0.899247" stroke-linejoin="bevel"/>
|
||||
<path d="M86.4023 56.7953L67.1673 67.8997C66.9523 68.0238 66.9523 68.2251 67.1673 68.3493L86.4033 79.4542L106.028 68.125L86.4023 56.7953Z" fill="#009E62" stroke="#009E62" stroke-width="0.899247" stroke-linejoin="bevel"/>
|
||||
<path d="M86.7676 56.6166L67.7624 67.5883C67.5474 67.7124 67.5474 67.9137 67.7624 68.0379L86.7685 79.0101L106.163 67.8136L86.7676 56.6166Z" fill="#009E62" stroke="#009E62" stroke-width="0.899247" stroke-linejoin="bevel"/>
|
||||
<path d="M87.4558 56.2248C87.2407 56.1006 86.8921 56.1006 86.677 56.2248L67.6609 67.2028C67.2307 67.4511 67.2307 67.8537 67.6609 68.102L86.368 78.9017C86.5831 79.0259 86.9317 79.0259 87.1468 78.9017L106.552 67.6989C106.767 67.5748 106.767 67.3735 106.552 67.2493L87.4558 56.2248Z" fill="#16CF89"/>
|
||||
<path d="M87.377 22L72.2532 30.7309L87.2615 39.6877L102.272 30.7309L87.377 22Z" fill="#FED501"/>
|
||||
<path d="M87.293 59.2734L78.6011 64.2912L87.2266 69.4388L95.8531 64.2912L87.293 59.2734Z" fill="#F6FAFF"/>
|
||||
<rect width="3.0962" height="9.40539" transform="matrix(-0.859406 0.511293 0 1 89.9219 55.3467)" fill="#AE8A42"/>
|
||||
<rect width="3.0962" height="9.41803" transform="matrix(0.859406 0.511293 0 1 84.6016 55.3467)" fill="#CAA459"/>
|
||||
<rect width="17.463" height="21.5425" transform="matrix(-0.859406 0.511293 0 1 102.27 30.7305)" fill="#D39902"/>
|
||||
<rect width="10.0363" height="2.31178" transform="matrix(-0.859406 0.511293 0 1 95.8496 64.292)" fill="#B5C8E6"/>
|
||||
<rect width="17.463" height="21.5443" transform="matrix(0.859406 0.511293 0 1 72.2539 30.7305)" fill="#FFF69B"/>
|
||||
<rect width="10.0363" height="2.2906" transform="matrix(0.859406 0.511293 0 1 78.6016 64.292)" fill="#D0DCEF"/>
|
||||
<path d="M75.1836 45.9137C75.1039 46.8627 75.3782 48.8002 77.1126 48.9588C77.2716 48.5821 77.1083 47.4458 75.1836 45.9137Z" fill="#FFFACB"/>
|
||||
<path d="M80.5263 38.1844C79.5891 38.353 77.7886 39.1194 78.0843 40.8358C78.4892 40.8919 79.5446 40.44 80.5263 38.1844Z" fill="#D39902"/>
|
||||
<path d="M92.8496 31.4085C92.0676 30.8651 90.2525 30.1338 89.2479 31.5566C89.4947 31.8826 90.5604 32.3093 92.8496 31.4085Z" fill="#D39902"/>
|
||||
<path d="M94.5166 43.0506C93.5793 43.2193 91.7788 43.9857 92.0745 45.702C92.4795 45.7581 93.5348 45.3062 94.5166 43.0506Z" fill="#FED501"/>
|
||||
<path d="M80.4347 51.3866C80.1121 52.2826 79.8756 54.2251 81.5099 54.8272C81.7609 54.5045 81.8973 53.3646 80.4347 51.3866Z" fill="#D39902"/>
|
||||
<path d="M98.0734 47.1298C97.7508 48.0257 97.5143 49.9682 99.1486 50.5704C99.3996 50.2477 99.536 49.1078 98.0734 47.1298Z" fill="#FED501"/>
|
||||
<path d="M189.527 44.4302L169.62 55.7595C169.506 55.8243 169.506 55.9295 169.62 55.9943L189.528 67.3241L209.642 55.8774L189.527 44.4302L189.527 44.4302Z" fill="#009E62" stroke="#009E62" stroke-width="0.474868" stroke-linejoin="bevel"/>
|
||||
<path d="M189.527 44.1216L169.62 55.4509C169.506 55.5157 169.506 55.6209 169.62 55.6857L189.528 67.0155L209.642 55.5688L189.527 44.1216L189.527 44.1216Z" fill="#009E62" stroke="#009E62" stroke-width="0.474868" stroke-linejoin="bevel"/>
|
||||
<path d="M189.527 43.813L169.62 55.1423C169.506 55.2071 169.506 55.3123 169.62 55.3771L189.528 66.7069L209.642 55.2602L189.527 43.813L189.527 43.813Z" fill="#009E62" stroke="#009E62" stroke-width="0.474868" stroke-linejoin="bevel"/>
|
||||
<path d="M189.527 43.5054L169.62 54.8346C169.506 54.8995 169.506 55.0047 169.62 55.0695L189.528 66.3993L209.642 54.9526L189.527 43.5054L189.527 43.5054Z" fill="#009E62" stroke="#009E62" stroke-width="0.474868" stroke-linejoin="bevel"/>
|
||||
<path d="M189.527 43.1968L169.62 54.5261C169.506 54.5909 169.506 54.6961 169.62 54.7609L189.528 66.0907L209.642 54.644L189.527 43.1968L189.527 43.1968Z" fill="#009E62" stroke="#009E62" stroke-width="0.474868" stroke-linejoin="bevel"/>
|
||||
<path d="M189.527 42.8892L169.62 54.2184C169.506 54.2833 169.506 54.3885 169.62 54.4533L189.528 65.7831L209.642 54.3364L189.527 42.8892L189.527 42.8892Z" fill="#009E62" stroke="#009E62" stroke-width="0.474868" stroke-linejoin="bevel"/>
|
||||
<path d="M189.527 42.5816L169.62 53.9108C169.506 53.9757 169.506 54.0808 169.62 54.1457L189.528 65.4755L209.642 54.0288L189.527 42.5816L189.527 42.5816Z" fill="#009E62" stroke="#009E62" stroke-width="0.474868" stroke-linejoin="bevel"/>
|
||||
<path d="M189.527 42.273L169.62 53.6022C169.506 53.6671 169.506 53.7722 169.62 53.8371L189.528 65.1669L209.642 53.7202L189.527 42.273L189.527 42.273Z" fill="#009E62" stroke="#009E62" stroke-width="0.474868" stroke-linejoin="bevel"/>
|
||||
<path d="M189.527 41.9644L169.62 53.2936C169.506 53.3585 169.506 53.4636 169.62 53.5285L189.528 64.8583L209.642 53.4116L189.527 41.9644L189.527 41.9644Z" fill="#009E62" stroke="#009E62" stroke-width="0.474868" stroke-linejoin="bevel"/>
|
||||
<path d="M189.527 41.6558L169.62 52.985C169.506 53.0499 169.506 53.1551 169.62 53.2199L189.528 64.5497L209.642 53.103L189.527 41.6558L189.527 41.6558Z" fill="#009E62" stroke="#009E62" stroke-width="0.474868" stroke-linejoin="bevel"/>
|
||||
<path d="M189.527 41.3482L169.62 52.6774C169.506 52.7423 169.506 52.8474 169.62 52.9123L189.528 64.2421L209.642 52.7954L189.527 41.3482L189.527 41.3482Z" fill="#009E62" stroke="#009E62" stroke-width="0.474868" stroke-linejoin="bevel"/>
|
||||
<path d="M189.527 41.0405L169.62 52.3698C169.506 52.4347 169.506 52.5398 169.62 52.6047L189.528 63.9345L209.642 52.4878L189.527 41.0405L189.527 41.0405Z" fill="#009E62" stroke="#009E62" stroke-width="0.474868" stroke-linejoin="bevel"/>
|
||||
<path d="M189.527 40.7319L169.62 52.0612C169.506 52.1261 169.506 52.2312 169.62 52.2961L189.528 63.6259L209.642 52.1792L189.527 40.7319L189.527 40.7319Z" fill="#009E62" stroke="#009E62" stroke-width="0.474868" stroke-linejoin="bevel"/>
|
||||
<path d="M189.734 40.3059C189.62 40.2411 189.435 40.2411 189.321 40.3059L169.413 51.6352C169.185 51.7649 169.185 51.9752 169.413 52.1049L189.322 63.4347C189.436 63.4996 189.621 63.4996 189.735 63.4347L209.849 51.988C209.963 51.9232 209.963 51.818 209.849 51.7531L189.734 40.3059Z" fill="#16CF89"/>
|
||||
<path d="M143.942 73.082L163.952 61.5018C164.065 61.4364 164.066 61.3307 163.953 61.2651L123.849 37.8886L103.773 49.6073L143.942 73.082Z" fill="#009E62" stroke="#348334" stroke-width="0.474868" stroke-linejoin="bevel"/>
|
||||
<path d="M143.942 72.7773L163.952 61.1971C164.065 61.1317 164.066 61.026 163.953 60.9604L123.849 37.5839L103.773 49.3026L143.942 72.7773Z" fill="#009E62" stroke="#348334" stroke-width="0.474868" stroke-linejoin="bevel"/>
|
||||
<path d="M143.942 72.4736L163.952 60.8934C164.065 60.828 164.066 60.7223 163.953 60.6567L123.849 37.2802L103.773 48.9989L143.942 72.4736Z" fill="#009E62" stroke="#348334" stroke-width="0.474868" stroke-linejoin="bevel"/>
|
||||
<path d="M143.942 72.1699L163.952 60.5896C164.065 60.5243 164.066 60.4185 163.953 60.3529L123.849 36.9765L103.773 48.6952L143.942 72.1699Z" fill="#009E62" stroke="#348334" stroke-width="0.474868" stroke-linejoin="bevel"/>
|
||||
<path d="M143.942 71.8652L163.952 60.285C164.065 60.2196 164.066 60.1139 163.953 60.0483L123.849 36.6718L103.773 48.3905L143.942 71.8652Z" fill="#009E62" stroke="#348334" stroke-width="0.474868" stroke-linejoin="bevel"/>
|
||||
<path d="M143.942 71.5605L163.952 59.9803C164.065 59.9149 164.066 59.8092 163.953 59.7436L123.849 36.3671L103.773 48.0858L143.942 71.5605Z" fill="#009E62" stroke="#348334" stroke-width="0.474868" stroke-linejoin="bevel"/>
|
||||
<path d="M143.942 71.2568L163.952 59.6766C164.065 59.6112 164.066 59.5055 163.953 59.4399L123.849 36.0634L103.773 47.7821L143.942 71.2568Z" fill="#009E62" stroke="#348334" stroke-width="0.474868" stroke-linejoin="bevel"/>
|
||||
<path d="M143.942 70.9531L163.952 59.3728C164.065 59.3075 164.066 59.2017 163.953 59.1361L123.849 35.7597L103.773 47.4784L143.942 70.9531Z" fill="#009E62" stroke="#348334" stroke-width="0.474868" stroke-linejoin="bevel"/>
|
||||
<path d="M143.942 70.6484L163.952 59.0682C164.065 59.0028 164.066 58.8971 163.953 58.8315L123.849 35.455L103.773 47.1737L143.942 70.6484Z" fill="#009E62" stroke="#348334" stroke-width="0.474868" stroke-linejoin="bevel"/>
|
||||
<path d="M143.942 70.3447L163.952 58.7644C164.065 58.6991 164.066 58.5933 163.953 58.5277L123.849 35.1513L103.773 46.87L143.942 70.3447Z" fill="#009E62" stroke="#348334" stroke-width="0.474868" stroke-linejoin="bevel"/>
|
||||
<path d="M143.942 70.04L163.952 58.4598C164.065 58.3944 164.066 58.2887 163.953 58.2231L123.849 34.8466L103.773 46.5653L143.942 70.04Z" fill="#009E62" stroke="#348334" stroke-width="0.474868" stroke-linejoin="bevel"/>
|
||||
<path d="M143.942 69.7363L163.952 58.156C164.065 58.0907 164.066 57.9849 163.953 57.9194L123.849 34.5429L103.773 46.2616L143.942 69.7363Z" fill="#009E62" stroke="#348334" stroke-width="0.474868" stroke-linejoin="bevel"/>
|
||||
<path d="M143.736 69.5506C143.849 69.6169 144.034 69.6172 144.148 69.5512L164.158 57.9709C164.384 57.8402 164.385 57.6287 164.16 57.4975L124.056 34.1211C123.942 34.0547 123.756 34.0548 123.642 34.1212L103.566 45.8398C103.454 45.9052 103.454 46.0105 103.566 46.0759L143.736 69.5506Z" fill="#16CF89"/>
|
||||
<path d="M170.985 67.1673C171.212 67.0365 171.58 67.0364 171.807 67.1671L179.486 71.584C179.714 71.7151 179.714 71.9282 179.487 72.0595L160.914 82.7667C160.688 82.8975 160.32 82.8976 160.093 82.767L152.207 78.2313C152.093 78.1657 152.093 78.0592 152.207 77.9936L170.985 67.1673Z" fill="#16CF89"/>
|
||||
<path d="M160.107 82.8087L179.311 71.7241C179.47 71.6327 179.667 71.747 179.667 71.9298V77.0086L160.463 87.9871C160.304 88.0776 160.107 87.9633 160.107 87.7809V82.8087Z" fill="#009E62"/>
|
||||
<path d="M152.055 78.2396C152.055 78.057 152.252 77.9427 152.41 78.0337L160.419 82.64C160.493 82.6824 160.538 82.7609 160.538 82.8458V87.7676C160.538 87.953 160.335 88.0669 160.177 87.9702L152.168 83.0771C152.098 83.0339 152.055 82.9572 152.055 82.8744V78.2396Z" fill="#009E62"/>
|
||||
<path d="M192.538 79.2533C192.765 79.1225 193.132 79.1224 193.36 79.253L201.039 83.67C201.267 83.8011 201.267 84.0141 201.039 84.1454L182.467 94.8527C182.24 94.9835 181.873 94.9836 181.646 94.8529L173.76 90.3172C173.646 90.2516 173.646 90.1451 173.76 90.0795L192.538 79.2533Z" fill="#16CF89"/>
|
||||
<path d="M181.66 94.8956L200.864 83.811C201.022 83.7197 201.22 83.8339 201.22 84.0167V89.0956L182.015 100.074C181.857 100.164 181.66 100.05 181.66 99.8679V94.8956Z" fill="#009E62"/>
|
||||
<path d="M173.607 90.3255C173.607 90.1429 173.805 90.0286 173.963 90.1197L181.972 94.726C182.046 94.7683 182.091 94.8468 182.091 94.9318V99.8535C182.091 100.039 181.888 100.153 181.73 100.056L173.721 95.163C173.65 95.1199 173.607 95.0431 173.607 94.9604V90.3255Z" fill="#009E62"/>
|
||||
<path d="M189.547 7.82812L174.423 16.5591L189.431 25.5158L204.441 16.5591L189.547 7.82812Z" fill="#FED501"/>
|
||||
<path d="M189.574 19.6357L174.45 28.3667L189.459 37.3234L204.469 28.3667L189.574 19.6357Z" fill="#FED501"/>
|
||||
<path d="M189.52 4L182.72 7.92538L189.468 11.9523L196.216 7.92538L189.52 4Z" fill="#FED501"/>
|
||||
<path d="M189.463 45.1025L180.771 50.1203L189.397 55.2679L198.023 50.1203L189.463 45.1025Z" fill="#F6FAFF"/>
|
||||
<rect width="3.0962" height="9.40539" transform="matrix(-0.859406 0.511293 0 1 192.092 41.1777)" fill="#AE8A42"/>
|
||||
<rect width="3.0962" height="9.41803" transform="matrix(0.859406 0.511293 0 1 186.771 41.1768)" fill="#CAA459"/>
|
||||
<rect width="17.463" height="8.69099" transform="matrix(-0.859406 0.511293 0 1 204.439 16.5605)" fill="#DCA502"/>
|
||||
<rect width="17.463" height="8.69099" transform="matrix(-0.859406 0.511293 0 1 204.467 28.3662)" fill="#DCA502"/>
|
||||
<rect width="7.85127" height="8.08564" transform="matrix(-0.859406 0.511293 0 1 196.215 7.9248)" fill="#DCA502"/>
|
||||
<rect width="10.0363" height="2.31178" transform="matrix(-0.859406 0.511293 0 1 198.021 50.1201)" fill="#B5C8E6"/>
|
||||
<rect width="17.463" height="8.67528" transform="matrix(0.859406 0.511293 0 1 174.424 16.5605)" fill="#FFEF7C"/>
|
||||
<rect width="17.463" height="8.67528" transform="matrix(0.859406 0.511293 0 1 174.451 28.3662)" fill="#FFEF7C"/>
|
||||
<rect width="7.85127" height="8.07616" transform="matrix(0.859406 0.511293 0 1 182.721 7.9248)" fill="#FFEF7C"/>
|
||||
<rect width="10.0363" height="2.2906" transform="matrix(0.859406 0.511293 0 1 180.771 50.1201)" fill="#D0DCEF"/>
|
||||
<path d="M140 65.0354C140.101 66.2519 141.247 68.6543 145.018 68.5327C144.663 67.2149 143.163 64.6705 140 65.0354Z" fill="#009E62"/>
|
||||
<path d="M150.01 63.9542C149.065 63.6993 146.939 63.9094 146.003 66.7891C147.095 66.8803 149.424 66.4411 150.01 63.9542Z" fill="#009E62"/>
|
||||
<path d="M148.739 43.7148C149.77 43.8435 150.78 44.1063 151.743 44.4965C152.686 44.8787 153.277 45.1272 153.834 45.7311C154.395 46.3742 154.757 47.1654 154.877 48.0092C155.006 48.7125 154.877 48.81 154.616 51.1321C154.424 52.9343 154.447 53.3414 154.029 53.8077C153.579 54.2581 152.97 54.5147 152.332 54.5225C150.964 54.5416 150.162 53.3949 150.055 53.198C150.005 53.1042 149.965 53.0056 149.936 52.9037C149.894 52.7546 149.878 52.5995 149.888 52.445C150.007 51.3327 150.08 50.4765 150.122 50.0484C150.132 49.935 150.129 49.8207 150.11 49.7082C150.063 49.4163 149.929 49.1449 149.727 48.9285L146.52 48.0742" fill="url(#paint0_linear_1654_6303)"/>
|
||||
<path opacity="0.6" d="M148.402 44.4527C149.471 44.1876 150.593 44.2138 151.647 44.5284C152.433 44.7267 153.145 45.1406 153.699 45.7215C153.949 45.9979 154.155 46.3091 154.311 46.6449C154.168 46.8684 153.95 47.1989 153.663 47.5868C153.006 48.4751 152.575 48.8796 152.368 49.14C151.088 50.7559 153.053 53.6628 152.225 54.2039C151.73 54.5271 150.137 54.011 149.859 52.6196C149.859 51.3618 150.137 50.95 150.137 49.5586C150.048 49.2916 149.828 49.0312 149.668 48.7983L146.52 47.9857" fill="#C52600" fill-opacity="0.7"/>
|
||||
<path d="M148.485 35.6963C149.071 36.5779 149.791 37.363 150.62 38.023C151.267 38.5426 151.977 38.9799 152.732 39.3249C152.751 39.3341 152.77 39.3417 152.791 39.3476C153.21 39.4588 153.651 39.4654 154.073 39.3668C154.495 39.2681 154.886 39.0673 155.212 38.7818C156.088 38.0934 156.849 37.2702 157.467 36.3427C158.124 35.3501 158.216 34.823 158.188 34.392C158.162 33.9135 157.979 33.4564 157.667 33.0917C157.626 33.0568 156.889 32.2307 155.947 32.3912C155.522 32.4658 155.256 32.7062 154.852 33.082C154.513 33.3888 154.215 33.7374 153.965 34.1195C153.938 34.1619 153.902 34.1982 153.86 34.2261C153.817 34.2541 153.77 34.273 153.72 34.2818C153.67 34.2906 153.619 34.289 153.57 34.2772C153.52 34.2654 153.474 34.2436 153.433 34.2132L151.152 32.4871" fill="url(#paint1_linear_1654_6303)"/>
|
||||
<path d="M150.791 21.7492C149.916 20.3569 148.736 19.1807 147.338 18.3091C145.161 17.0401 143.109 17 141.975 17C140.383 17 137.894 17.2783 135.904 19.3431C133.914 21.4079 133.293 24.3121 133.151 25.0995C132.785 31.5191 131.763 41.6922 132.05 42.8294C132.338 43.9665 133.1 46.2217 135.185 47.9035C136.756 49.1706 138.394 49.57 139.886 49.9217C141.418 50.3272 143.01 50.4566 144.588 50.3039C146.184 50.1338 148.782 49.0011 149.86 47.9035C150.937 46.8058 151.169 45.1303 151.251 44.2705L152.362 29.9978C152.544 28.8683 152.989 25.197 150.791 21.7492Z" fill="url(#paint2_linear_1654_6303)"/>
|
||||
<path opacity="0.69" d="M134.554 33.6966C133.214 32.5303 132.819 31.9226 131.098 31.4958C130.684 31.4555 130.274 31.5082 129.903 31.6498C129.506 31.8052 129.167 32.0557 128.914 32.3784C128.211 33.3665 129.173 34.5155 129.017 36.7338C128.993 37.1024 128.942 37.4667 128.864 37.824L128.82 38.3085C129.154 38.3775 129.493 38.3771 129.813 38.3072C130.05 38.252 130.273 38.1606 130.474 38.0366C130.658 35.9228 131.468 35.9264 132.049 35.6445C132.346 35.4996 132.349 36.6512 133.161 36.7183C133.526 36.7501 133.89 36.8001 134.253 36.8683L134.554 33.6966Z" fill="#C52600" fill-opacity="0.7"/>
|
||||
<path d="M135.453 32.3133C134.521 31.8113 133.516 31.4577 132.475 31.2652C131.659 31.1116 130.827 31.0597 129.998 31.1107C129.977 31.1115 129.956 31.114 129.936 31.1184C129.513 31.2178 129.121 31.4192 128.795 31.705C128.469 31.9907 128.219 32.3521 128.066 32.7572C127.617 33.7771 127.332 34.8618 127.224 35.9709C127.112 37.1557 127.279 37.6641 127.506 38.0313C127.754 38.4413 128.131 38.7583 128.578 38.9331C128.631 38.9446 129.67 39.3264 130.426 38.7415C130.765 38.4758 130.887 38.1386 131.066 37.6166C131.221 37.1867 131.319 36.7389 131.36 36.284C131.365 36.2336 131.379 36.1847 131.403 36.1402C131.427 36.0957 131.46 36.0567 131.5 36.0254C131.54 35.9942 131.586 35.9715 131.635 35.9587C131.684 35.9459 131.735 35.9433 131.785 35.9511L134.611 36.3999" fill="url(#paint3_linear_1654_6303)"/>
|
||||
<path opacity="0.69" d="M148.706 31.8558C148.652 32.5778 148.575 33.1511 148.534 33.4537C148.265 33.5155 148.035 33.5573 147.861 33.584C147.436 33.6519 147.004 33.6894 146.571 33.696C146.38 33.696 146.182 33.6927 145.977 33.686C144.074 33.5924 142.752 32.9322 141.657 32.3773C140.549 31.8207 139.561 31.132 138.729 30.3365C139.284 29.3443 140.024 28.4213 140.926 27.5971C142.079 26.5508 144.164 24.6504 146.753 24.5718C146.933 24.558 147.114 24.5614 147.293 24.5818C149.228 25.0398 148.839 30.181 148.706 31.8558Z" fill="#C52600" fill-opacity="0.7"/>
|
||||
<path d="M154.311 29.0842C153.712 30.423 152.568 31.574 151.054 32.3635C150.925 32.4287 150.791 32.4922 150.652 32.554C149.917 32.8836 149.118 33.1185 148.286 33.2494C147.665 33.3476 147.029 33.3818 146.396 33.3513C144.493 33.2577 143.171 32.5975 142.076 32.0426C140.972 31.4853 139.987 30.7966 139.158 30.0018C139.714 29.0097 140.454 28.0866 141.356 27.2624C142.508 26.2161 144.594 24.3157 147.183 24.2371C147.363 24.2313 147.543 24.2347 147.723 24.2472C149.624 24.3792 150.972 25.479 152.043 26.3531C152.066 26.3732 152.092 26.3933 152.114 26.4133C153.048 27.193 153.793 28.098 154.311 29.0842Z" fill="white" stroke="#FFFEF4" stroke-width="0.271073" stroke-miterlimit="10"/>
|
||||
<path d="M152.398 28.4023C152.398 30.0202 151.869 31.4576 151.054 32.3635C150.925 32.4287 150.792 32.4922 150.652 32.554C149.917 32.8836 149.118 33.1185 148.287 33.2493C146.769 32.7663 145.629 30.779 145.629 28.4023C145.629 26.6573 146.244 25.1213 147.173 24.2371C147.353 24.2313 147.533 24.2347 147.713 24.2472C149.613 24.3792 150.962 25.479 152.032 26.3531C152.056 26.3732 152.082 26.3933 152.103 26.4133C152.299 27.0654 152.398 27.7327 152.398 28.4023Z" fill="black" stroke="black" stroke-width="0.271073" stroke-miterlimit="10"/>
|
||||
<path d="M139.228 48.2395C138.923 49.325 138.618 50.408 138.315 51.4885C138.005 51.9266 137.574 52.2658 137.074 52.4651C136.416 52.7116 135.843 52.5969 134.657 52.274C130.988 51.261 130.539 50.7202 130.347 50.4526C129.993 49.9853 129.809 49.4117 129.825 48.8262C129.825 48.6351 129.877 47.928 130.412 47.4597C131.001 46.9456 131.976 46.9151 132.829 47.3948L135.111 48.5078L135.668 47.1165" fill="url(#paint4_linear_1654_6303)"/>
|
||||
<path opacity="0.69" d="M135.111 48.4453C135.249 48.7304 134.347 48.3776 134.549 48.6219C135.618 49.9138 136.945 49.8087 137.426 50.7872C137.57 51.0739 137.683 51.5402 137.461 52.2875C137.645 52.172 137.816 52.0374 137.971 51.8862C138.094 51.768 138.207 51.6401 138.309 51.5039L138.809 49.7304C138.736 49.1861 138.51 48.6737 138.155 48.253C137.26 47.2019 136.141 47.6009 135.946 47.6105C135.338 47.6392 135.111 48.4453 135.111 48.4453Z" fill="#C52600" fill-opacity="0.7"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_1654_6303" x1="154.046" y1="52.7011" x2="147.335" y2="47.6228" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF7171"/>
|
||||
<stop offset="1" stop-color="#EB574A"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1654_6303" x1="154.637" y1="40.0493" x2="150.412" y2="30.4755" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0666008" stop-color="#FF7171"/>
|
||||
<stop offset="1" stop-color="#EA5548"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1654_6303" x1="142.288" y1="17" x2="142.288" y2="50.366" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF7171"/>
|
||||
<stop offset="1" stop-color="#E85345"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1654_6303" x1="127.976" y1="31.3684" x2="136.21" y2="37.8267" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0666008" stop-color="#FF7171"/>
|
||||
<stop offset="1" stop-color="#EA5548"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_1654_6303" x1="135.22" y1="51.5237" x2="137.578" y2="48.259" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF7171"/>
|
||||
<stop offset="0.746441" stop-color="#EA5547"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 22 KiB |
354
newIDE/app/public/res/questionnaire/welcome-back.svg
Normal file
@@ -0,0 +1,354 @@
|
||||
<svg width="263" height="154" viewBox="0 0 263 154" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="253.001" height="149.162" transform="translate(10)" fill="#1D1D26"/>
|
||||
<path d="M209.715 135.157C210.427 137.358 211.201 137.79 211.412 137.684L196.376 84.4048L195.528 83.1415L209.715 135.157Z" fill="url(#paint0_linear_1679_8939)" fill-opacity="0.7"/>
|
||||
<path d="M241.35 62.8622C240.998 54.4423 236.603 46.4171 234.449 43.457L196.119 68.537L197 71.4971L241.35 62.8622Z" fill="url(#paint1_linear_1679_8939)" fill-opacity="0.2"/>
|
||||
<path d="M255.677 41.672C257.779 40.4094 256.566 39.5782 255.838 39.4148L199.339 67.9735L199.258 69.1019L255.677 41.672Z" fill="url(#paint2_linear_1679_8939)" fill-opacity="0.2"/>
|
||||
<path d="M257.559 97.2165C260.139 98.0253 261.479 97.9199 261.675 97.7789L202.092 77.2864L200.034 77.0052L257.559 97.2165Z" fill="url(#paint3_linear_1679_8939)" fill-opacity="0.4"/>
|
||||
<path d="M213.904 45.0825C214.424 44.1957 214.337 43.6581 214.239 43.5611L200.982 63.7795L200.814 64.54L213.904 45.0825Z" fill="url(#paint4_linear_1679_8939)" fill-opacity="0.7"/>
|
||||
<path d="M203.925 16.3817C204.267 14.1822 204.098 13.0786 203.99 12.9264L194.89 63.8655L194.857 65.5929L203.925 16.3817Z" fill="url(#paint5_linear_1679_8939)" fill-opacity="0.2"/>
|
||||
<path d="M224.466 120.364C231.531 115.693 236.196 106.86 237.646 103.028L196.5 73.9971L194.402 76.4563L224.466 120.364Z" fill="url(#paint6_linear_1679_8939)" fill-opacity="0.2"/>
|
||||
<path d="M214.219 9.17581C207.375 5.6524 198.326 7.56704 194.657 8.96479L192.122 68.2425L194.999 68.4977L214.219 9.17581Z" fill="url(#paint7_linear_1679_8939)" fill-opacity="0.2"/>
|
||||
<path d="M178.285 134.353C177.573 136.554 176.799 136.987 176.588 136.88L191.624 83.6011L192.472 82.3378L178.285 134.353Z" fill="url(#paint8_linear_1679_8939)" fill-opacity="0.7"/>
|
||||
<path d="M146.65 62.2743C147.002 53.8544 151.397 45.8293 153.551 42.8691L191.5 67.999L190.619 70.9591L146.65 62.2743Z" fill="url(#paint9_linear_1679_8939)" fill-opacity="0.2"/>
|
||||
<path d="M132.323 41.0841C130.221 39.8215 131.434 38.9903 132.162 38.8269L188.661 67.3856L188.742 68.514L132.323 41.0841Z" fill="url(#paint10_linear_1679_8939)" fill-opacity="0.2"/>
|
||||
<path d="M130.442 96.6286C127.862 97.4374 126.522 97.332 126.326 97.191L185.909 76.6985L187.967 76.4173L130.442 96.6286Z" fill="url(#paint11_linear_1679_8939)" fill-opacity="0.4"/>
|
||||
<path d="M174.096 44.4946C173.576 43.6078 173.663 43.0702 173.761 42.9732L187.018 63.1916L187.186 63.9521L174.096 44.4946Z" fill="url(#paint12_linear_1679_8939)" fill-opacity="0.7"/>
|
||||
<path d="M163.534 119.777C156.469 115.106 151.803 106.273 150.354 102.44L190.5 73.4971L192.598 75.9563L163.534 119.777Z" fill="url(#paint13_linear_1679_8939)" fill-opacity="0.2"/>
|
||||
<g filter="url(#filter0_f_1679_8939)">
|
||||
<circle cx="193.938" cy="75.1699" r="25" fill="url(#paint14_radial_1679_8939)" fill-opacity="0.1"/>
|
||||
</g>
|
||||
<g filter="url(#filter1_f_1679_8939)">
|
||||
<path d="M168.879 123.898C151.754 117.499 148.768 102.707 155.991 92.9397C165.122 80.5923 164.841 69.3239 162.609 62.5426C159.822 54.0755 152.507 42.7785 130.214 44.0336C107.866 45.2919 100.367 56.0871 96.5998 62.5426C83.7847 66.1634 74.2908 75.2572 72.6598 84.2669C71.0288 93.2766 66.0193 95.8026 62.1747 96.3921C58.3302 96.9815 36.0141 95.9484 28.6746 107.737C22.8029 117.167 11.2579 115.341 13.5221 131.9C6.38123 138.49 11.6062 143.04 15.9603 143.04L251.434 143.04C249.337 133.189 231.405 129.703 223.568 123.898C217.136 119.134 220.322 115.675 218.691 107.423C217.06 99.1711 210.814 95.7358 205.106 94.5569C199.397 93.3781 199.995 99.2641 199.995 102.034C199.995 108.919 186.005 130.297 168.879 123.898Z" fill="url(#paint15_linear_1679_8939)" fill-opacity="0.15"/>
|
||||
</g>
|
||||
<path d="M162.918 127.584C148.46 121.587 145.94 107.726 152.038 98.5729C159.746 87.002 159.509 76.4422 157.625 70.0874C155.272 62.1528 149.097 51.5662 130.276 52.7424C111.409 53.9216 105.078 64.0379 101.898 70.0874C91.0792 73.4804 83.0642 82.0024 81.6872 90.4455C80.3103 98.8885 76.0811 101.256 72.8354 101.808C69.5898 102.36 50.7499 101.392 44.5537 112.439C39.5967 121.277 29.8501 119.565 31.7615 135.083C25.733 141.259 30.144 145.523 33.82 145.523L232.614 145.523C230.843 136.291 215.704 133.024 209.088 127.584C203.658 123.12 206.348 119.878 204.971 112.145C203.594 104.412 198.321 101.193 193.502 100.088C188.683 98.9837 189.187 104.499 189.187 107.095C189.187 113.547 177.376 133.581 162.918 127.584Z" fill="url(#paint16_linear_1679_8939)" fill-opacity="0.6"/>
|
||||
<path d="M17.9404 143.758C21.1752 138.906 25.8804 134.348 31.9089 134.054C31.3208 132.093 30.7326 127.319 33.0852 123.908C36.026 119.644 40.5841 118.762 44.4071 116.556C48.23 114.351 45.2893 105.087 54.4056 99.794C61.6986 95.5594 70.6776 99.1079 74.2555 101.411C74.6476 91.707 79.7841 71.8276 97.1933 69.9455C104.006 58.3786 123.336 39.2148 146.157 55.0948C174.682 74.9447 143.804 109.204 142.628 110.822C141.451 112.439 137.334 122.732 148.362 123.908C150.323 122.83 155.655 120.997 161.301 122.291C168.359 123.908 174.976 126.26 177.328 125.084C179.681 123.908 187.474 125.379 188.209 116.556C188.944 107.734 184.533 104.646 188.209 99.794C191.885 94.9417 197.178 97.0004 201.589 101.411C206.001 105.822 209.382 121.556 209.823 123.908C216.979 124.055 232.055 128.437 235.114 144.787" stroke="#5EE1EA" stroke-width="0.294074"/>
|
||||
<path d="M162.937 121.413C148.479 115.416 142.999 108.315 149.097 99.1616C156.806 87.5907 156.569 77.0309 154.685 70.6762C152.332 62.7415 149.097 53.0371 127.825 50.9494C107.896 48.9935 96.4832 64.6266 93.3031 70.6762C82.4843 74.0692 80.1238 82.5911 78.7468 91.0342C77.3699 99.4772 73.1407 101.844 69.8951 102.397C66.6494 102.949 56.7157 101.608 50.5195 112.655C45.5625 121.492 50.3555 130.435 53.3717 133.802C47.7853 136.895 48.0934 143.297 48.9458 146.111H251.435C249.664 136.879 236.878 125.998 224.527 121.413C217.937 118.967 209.163 121.413 207.786 113.681C206.409 105.948 197.656 100.266 192.837 99.1616C188.017 98.0569 185.362 101.292 186.247 107.684C187.132 114.075 177.395 127.41 162.937 121.413Z" fill="url(#paint17_linear_1679_8939)" fill-opacity="0.73"/>
|
||||
<path d="M118.866 72.001C126.903 72.001 130.827 78.3213 130.827 84.943C123.773 87.046 118.866 83.0017 118.099 80.4133C117.486 78.3425 116.859 73.9125 118.866 72.001Z" fill="#D9D9D9"/>
|
||||
<path d="M129.843 79.6735C129.843 82.3533 128.228 84.5257 125.873 84.5257C123.518 84.5257 121.903 82.3533 121.903 79.6735C121.903 76.9937 123.668 74.8213 125.873 74.8213C128.079 74.8213 129.843 76.9937 129.843 79.6735Z" fill="#4A36C3"/>
|
||||
<path d="M126.538 77.4243C126.573 77.3897 126.632 77.4061 126.644 77.4538L127.028 78.9656C127.033 78.9838 127.045 78.999 127.062 79.0072L128.507 79.7056C128.553 79.7278 128.556 79.7924 128.511 79.818L127.153 80.6038C127.136 80.6136 127.124 80.6307 127.121 80.6501L126.906 82.175C126.899 82.2245 126.841 82.2472 126.802 82.2152L125.573 81.1911C125.559 81.1794 125.54 81.1743 125.522 81.1771L123.939 81.4232C123.89 81.4309 123.851 81.3813 123.871 81.3354L124.475 79.9183C124.483 79.9002 124.482 79.8797 124.472 79.8625L123.715 78.4913C123.69 78.4466 123.725 78.3924 123.776 78.397L125.376 78.5407C125.394 78.5424 125.413 78.5357 125.426 78.5225L126.538 77.4243Z" fill="#2D1D8E"/>
|
||||
<path d="M140.129 87.0028C142.5 75.5015 149.245 76.3671 151.598 76.1221C151.598 84.5032 147.922 87.2969 145.716 87.738C143.952 88.0909 141.452 87.836 140.129 87.0028Z" fill="#D9D9D9"/>
|
||||
<mask id="mask0_1679_8939" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="140" y="75" width="13" height="13">
|
||||
<path d="M140.13 87.0025C141.001 75.001 149.687 75.9257 152.04 75.6807C152.04 84.0618 147.923 87.2966 145.717 87.7377C143.953 88.0906 141.453 87.8357 140.13 87.0025Z" fill="#D9D9D9"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_1679_8939)">
|
||||
<ellipse cx="146.503" cy="82.0198" rx="3.59506" ry="4.61266" transform="rotate(7.04524 146.503 82.0198)" fill="black"/>
|
||||
</g>
|
||||
<path d="M113.325 58.7553C113.283 58.6331 113.34 58.5234 113.452 58.5105C113.564 58.4975 113.689 58.5861 113.731 58.7083C113.773 58.8306 113.717 58.9402 113.605 58.9532C113.493 58.9662 113.368 58.8776 113.325 58.7553Z" fill="#FDFFFF"/>
|
||||
<path d="M118.486 55.605C118.439 55.471 118.501 55.351 118.624 55.3367C118.747 55.3225 118.884 55.4195 118.93 55.5534C118.976 55.6873 118.914 55.8074 118.791 55.8217C118.669 55.8359 118.532 55.7389 118.486 55.605Z" fill="#FDFFFF"/>
|
||||
<path d="M120.121 56.1323C120.059 55.9518 120.142 55.79 120.308 55.7708C120.473 55.7516 120.658 55.8824 120.72 56.0629C120.782 56.2434 120.699 56.4052 120.534 56.4244C120.368 56.4435 120.183 56.3128 120.121 56.1323Z" fill="#FDFFFF"/>
|
||||
<path d="M122.748 54.0537C122.72 53.9722 122.757 53.8991 122.832 53.8905C122.907 53.8818 122.99 53.9409 123.018 54.0224C123.047 54.1039 123.009 54.1769 122.934 54.1856C122.859 54.1943 122.776 54.1352 122.748 54.0537Z" fill="#FDFFFF"/>
|
||||
<path d="M124.984 51.0258C124.894 50.7651 125.014 50.5314 125.253 50.5037C125.492 50.476 125.759 50.6649 125.849 50.9255C125.939 51.1862 125.818 51.4199 125.579 51.4476C125.34 51.4753 125.074 51.2864 124.984 51.0258Z" fill="#FDFFFF"/>
|
||||
<path d="M126.525 51.52C126.495 51.4327 126.535 51.3544 126.615 51.3451C126.695 51.3358 126.784 51.3991 126.815 51.4864C126.845 51.5737 126.804 51.6521 126.724 51.6613C126.644 51.6706 126.555 51.6073 126.525 51.52Z" fill="#FDFFFF"/>
|
||||
<path d="M123.78 57.5162C123.732 57.3796 123.796 57.2571 123.921 57.2426C124.046 57.2281 124.186 57.327 124.233 57.4636C124.28 57.6002 124.217 57.7227 124.092 57.7372C123.967 57.7517 123.827 57.6528 123.78 57.5162Z" fill="#FDFFFF"/>
|
||||
<path d="M116.459 59.645C116.446 59.609 116.463 59.5767 116.496 59.5729C116.529 59.5691 116.566 59.5951 116.578 59.6311C116.591 59.6671 116.574 59.6994 116.541 59.7032C116.508 59.707 116.471 59.681 116.459 59.645Z" fill="#FDFFFF"/>
|
||||
<path d="M113.552 60.2567C113.502 60.1107 113.569 59.9798 113.703 59.9643C113.837 59.9487 113.986 60.0545 114.037 60.2005C114.087 60.3465 114.019 60.4774 113.886 60.4929C113.752 60.5084 113.603 60.4027 113.552 60.2567Z" fill="#FDFFFF"/>
|
||||
<path d="M115.958 57.8393C115.889 57.6369 115.982 57.4553 116.168 57.4338C116.353 57.4123 116.56 57.559 116.63 57.7614C116.7 57.9638 116.606 58.1454 116.421 58.1669C116.235 58.1884 116.028 58.0417 115.958 57.8393Z" fill="#FDFFFF"/>
|
||||
<path d="M118.467 58.044C118.446 57.9831 118.474 57.9285 118.53 57.922C118.586 57.9155 118.648 57.9597 118.669 58.0206C118.69 58.0815 118.662 58.1361 118.606 58.1426C118.55 58.149 118.488 58.1049 118.467 58.044Z" fill="#FDFFFF"/>
|
||||
<path d="M115.914 51.3044C115.841 51.0939 115.939 50.9051 116.132 50.8827C116.324 50.8604 116.54 51.0129 116.613 51.2234C116.685 51.4339 116.588 51.6226 116.395 51.645C116.202 51.6673 115.987 51.5148 115.914 51.3044Z" fill="#FDFFFF"/>
|
||||
<path d="M145.673 56.81C145.57 56.5131 145.708 56.2468 145.98 56.2153C146.252 56.1838 146.556 56.3989 146.658 56.6958C146.761 56.9927 146.623 57.259 146.351 57.2905C146.079 57.3221 145.775 57.1069 145.673 56.81Z" fill="#FDFFFF"/>
|
||||
<path d="M120.112 51.0031C120.078 50.9046 120.124 50.8162 120.214 50.8057C120.305 50.7953 120.405 50.8666 120.439 50.9652C120.473 51.0637 120.428 51.152 120.337 51.1625C120.247 51.173 120.146 51.1016 120.112 51.0031Z" fill="#FDFFFF"/>
|
||||
<path d="M115.893 52.1696C115.861 52.0769 115.904 51.9937 115.989 51.9839C116.074 51.974 116.169 52.0412 116.201 52.1339C116.233 52.2266 116.19 52.3097 116.105 52.3196C116.02 52.3294 115.925 52.2623 115.893 52.1696Z" fill="#FDFFFF"/>
|
||||
<path d="M119.017 51.9751C118.987 51.8865 119.028 51.8069 119.109 51.7975C119.19 51.7881 119.281 51.8524 119.312 51.941C119.342 52.0297 119.301 52.1092 119.22 52.1186C119.139 52.128 119.048 52.0638 119.017 51.9751Z" fill="#FDFFFF"/>
|
||||
<path d="M114.44 53.7997C114.393 53.6627 114.456 53.5398 114.582 53.5252C114.707 53.5107 114.847 53.6099 114.895 53.747C114.942 53.884 114.879 54.0069 114.753 54.0215C114.627 54.036 114.487 53.9367 114.44 53.7997Z" fill="#FDFFFF"/>
|
||||
<path d="M133.878 49.933C133.821 49.7655 133.898 49.6153 134.052 49.5975C134.205 49.5797 134.376 49.7011 134.434 49.8686C134.492 50.0361 134.415 50.1863 134.261 50.2041C134.108 50.2219 133.936 50.1005 133.878 49.933Z" fill="#FDFFFF"/>
|
||||
<path d="M136.609 49.7801C136.579 49.6936 136.619 49.6161 136.699 49.607C136.778 49.5978 136.866 49.6604 136.896 49.7468C136.926 49.8333 136.886 49.9108 136.807 49.9199C136.728 49.9291 136.639 49.8665 136.609 49.7801Z" fill="#FDFFFF"/>
|
||||
<path d="M140.373 51.6662C140.338 51.565 140.385 51.4743 140.478 51.4635C140.571 51.4528 140.674 51.5261 140.709 51.6273C140.744 51.7285 140.697 51.8193 140.605 51.83C140.512 51.8408 140.408 51.7674 140.373 51.6662Z" fill="#FDFFFF"/>
|
||||
<path d="M135.925 52.1472C135.884 52.0272 135.939 51.9196 136.049 51.9068C136.159 51.8941 136.282 51.9811 136.323 52.1011C136.365 52.2211 136.309 52.3287 136.199 52.3414C136.089 52.3542 135.967 52.2672 135.925 52.1472Z" fill="#FDFFFF"/>
|
||||
<path d="M132.627 53.5041C132.588 53.3926 132.64 53.2926 132.742 53.2808C132.844 53.2689 132.958 53.3497 132.997 53.4612C133.035 53.5727 132.984 53.6727 132.881 53.6845C132.779 53.6964 132.665 53.6156 132.627 53.5041Z" fill="#FDFFFF"/>
|
||||
<path d="M144.332 58.4331C144.293 58.3211 144.345 58.2207 144.448 58.2088C144.55 58.1969 144.665 58.2781 144.703 58.39C144.742 58.502 144.69 58.6024 144.588 58.6143C144.485 58.6262 144.371 58.5451 144.332 58.4331Z" fill="#FDFFFF"/>
|
||||
<path d="M148.733 56.7108C148.686 56.5751 148.749 56.4534 148.874 56.439C148.998 56.4246 149.137 56.5229 149.184 56.6586C149.231 56.7943 149.168 56.916 149.043 56.9304C148.919 56.9448 148.78 56.8465 148.733 56.7108Z" fill="#FDFFFF"/>
|
||||
<path d="M138.028 59.5414C137.962 59.3507 138.05 59.1796 138.225 59.1593C138.4 59.139 138.595 59.2773 138.661 59.468C138.727 59.6588 138.639 59.8299 138.464 59.8502C138.289 59.8704 138.094 59.7322 138.028 59.5414Z" fill="#FDFFFF"/>
|
||||
<path d="M136.897 57.6953C136.873 57.6254 136.906 57.5628 136.97 57.5554C137.034 57.548 137.105 57.5986 137.129 57.6684C137.153 57.7383 137.121 57.8009 137.057 57.8084C136.993 57.8158 136.921 57.7652 136.897 57.6953Z" fill="#FDFFFF"/>
|
||||
<path d="M142.82 58.2444C142.792 58.1638 142.829 58.0915 142.903 58.083C142.977 58.0744 143.059 58.1328 143.087 58.2134C143.115 58.294 143.078 58.3663 143.004 58.3749C142.93 58.3834 142.848 58.325 142.82 58.2444Z" fill="#FDFFFF"/>
|
||||
<path d="M145.661 59.0516C145.627 58.9535 145.673 58.8655 145.762 58.8551C145.852 58.8447 145.953 58.9158 145.987 59.0138C146.02 59.1119 145.975 59.1999 145.885 59.2103C145.795 59.2207 145.695 59.1496 145.661 59.0516Z" fill="#FDFFFF"/>
|
||||
<path d="M118.248 60.3957C118.201 60.2754 118.086 60.2289 117.993 60.2919C117.899 60.355 117.862 60.5036 117.909 60.6239C117.957 60.7442 118.071 60.7907 118.165 60.7277C118.258 60.6647 118.295 60.5161 118.248 60.3957Z" fill="#FDFFFF"/>
|
||||
<path d="M112.28 61.3591C112.228 61.2273 112.103 61.1764 112 61.2454C111.898 61.3144 111.857 61.4772 111.909 61.609C111.961 61.7408 112.086 61.7917 112.188 61.7227C112.291 61.6537 112.332 61.4909 112.28 61.3591Z" fill="#FDFFFF"/>
|
||||
<path d="M111.38 62.823C111.31 62.6454 111.141 62.5768 111.003 62.6698C110.865 62.7628 110.81 62.9822 110.88 63.1598C110.95 63.3375 111.119 63.406 111.257 63.313C111.395 63.22 111.45 63.0006 111.38 62.823Z" fill="#FDFFFF"/>
|
||||
<path d="M108.034 62.9517C108.002 62.8714 107.926 62.8405 107.864 62.8825C107.801 62.9245 107.776 63.0236 107.808 63.1038C107.84 63.184 107.916 63.215 107.978 63.173C108.041 63.131 108.065 63.0319 108.034 62.9517Z" fill="#FDFFFF"/>
|
||||
<path d="M104.365 62.1057C104.264 61.8491 104.021 61.7501 103.821 61.8844C103.622 62.0187 103.542 62.3356 103.643 62.5921C103.744 62.8487 103.988 62.9477 104.187 62.8134C104.387 62.6791 104.466 62.3622 104.365 62.1057Z" fill="#FDFFFF"/>
|
||||
<path d="M103.518 63.4841C103.484 63.3982 103.402 63.365 103.335 63.41C103.268 63.455 103.242 63.5612 103.276 63.6471C103.309 63.7331 103.391 63.7662 103.458 63.7212C103.525 63.6762 103.551 63.5701 103.518 63.4841Z" fill="#FDFFFF"/>
|
||||
<path d="M109.501 66.2536C109.448 66.1192 109.321 66.0672 109.216 66.1376C109.112 66.208 109.07 66.3741 109.123 66.5085C109.176 66.643 109.303 66.6949 109.408 66.6245C109.513 66.5541 109.554 66.388 109.501 66.2536Z" fill="#FDFFFF"/>
|
||||
<path d="M116.447 63.1089C116.433 63.0735 116.399 63.0598 116.371 63.0784C116.344 63.0969 116.333 63.1407 116.347 63.1761C116.361 63.2115 116.394 63.2252 116.422 63.2067C116.449 63.1881 116.46 63.1444 116.447 63.1089Z" fill="#FDFFFF"/>
|
||||
<path d="M119.053 61.6832C118.996 61.5395 118.86 61.484 118.748 61.5592C118.636 61.6345 118.592 61.812 118.648 61.9556C118.705 62.0993 118.842 62.1548 118.953 62.0796C119.065 62.0043 119.11 61.8269 119.053 61.6832Z" fill="#FDFFFF"/>
|
||||
<path d="M115.652 61.4119C115.574 61.2126 115.384 61.1357 115.229 61.24C115.075 61.3443 115.013 61.5904 115.091 61.7896C115.17 61.9889 115.359 62.0658 115.514 61.9615C115.669 61.8572 115.731 61.6111 115.652 61.4119Z" fill="#FDFFFF"/>
|
||||
<path d="M113.88 63.1987C113.856 63.1387 113.799 63.1156 113.753 63.147C113.706 63.1784 113.687 63.2524 113.711 63.3124C113.735 63.3723 113.792 63.3955 113.838 63.3641C113.885 63.3327 113.904 63.2586 113.88 63.1987Z" fill="#FDFFFF"/>
|
||||
<path d="M111.435 56.4196C111.354 56.2124 111.157 56.1324 110.996 56.2409C110.835 56.3493 110.77 56.6052 110.852 56.8124C110.934 57.0196 111.131 57.0996 111.292 56.9911C111.453 56.8826 111.517 56.6267 111.435 56.4196Z" fill="#FDFFFF"/>
|
||||
<path d="M92.4121 79.9558C92.2968 79.6635 92.0193 79.5507 91.792 79.7037C91.5648 79.8567 91.474 80.2177 91.5892 80.5099C91.7045 80.8022 91.982 80.915 92.2093 80.762C92.4365 80.609 92.5273 80.248 92.4121 79.9558Z" fill="#FDFFFF"/>
|
||||
<path d="M108.051 58.9208C108.013 58.8238 107.921 58.7864 107.846 58.8372C107.77 58.888 107.74 59.0077 107.778 59.1047C107.817 59.2017 107.909 59.2391 107.984 59.1883C108.06 59.1376 108.09 59.0178 108.051 58.9208Z" fill="#FDFFFF"/>
|
||||
<path d="M112.015 57.0632C111.979 56.9719 111.892 56.9367 111.821 56.9845C111.75 57.0322 111.722 57.1449 111.758 57.2362C111.794 57.3274 111.881 57.3626 111.952 57.3149C112.023 57.2671 112.051 57.1544 112.015 57.0632Z" fill="#FDFFFF"/>
|
||||
<path d="M109.515 58.947C109.481 58.8597 109.398 58.826 109.33 58.8717C109.262 58.9174 109.235 59.0252 109.27 59.1125C109.304 59.1998 109.387 59.2335 109.455 59.1878C109.523 59.1421 109.55 59.0343 109.515 58.947Z" fill="#FDFFFF"/>
|
||||
<path d="M114.178 57.3555C114.125 57.2206 113.997 57.1685 113.892 57.2392C113.787 57.3098 113.745 57.4764 113.798 57.6112C113.851 57.7461 113.98 57.7982 114.084 57.7276C114.189 57.657 114.231 57.4904 114.178 57.3555Z" fill="#FDFFFF"/>
|
||||
<path d="M96.8982 67.0618C96.8332 66.8969 96.6766 66.8332 96.5485 66.9196C96.4203 67.0059 96.3691 67.2095 96.4341 67.3744C96.4991 67.5392 96.6557 67.6029 96.7838 67.5166C96.912 67.4302 96.9632 67.2266 96.8982 67.0618Z" fill="#FDFFFF"/>
|
||||
<path d="M94.7257 68.7208C94.6921 68.6357 94.6113 68.6029 94.5452 68.6474C94.479 68.692 94.4526 68.797 94.4862 68.8821C94.5197 68.9672 94.6005 69 94.6666 68.9555C94.7328 68.9109 94.7592 68.8059 94.7257 68.7208Z" fill="#FDFFFF"/>
|
||||
<path d="M93.0922 72.6024C93.0529 72.5028 92.9583 72.4643 92.8808 72.5165C92.8034 72.5687 92.7724 72.6917 92.8117 72.7913C92.851 72.8909 92.9456 72.9294 93.023 72.8772C93.1005 72.8251 93.1315 72.702 93.0922 72.6024Z" fill="#FDFFFF"/>
|
||||
<path d="M96.7834 70.0748C96.7369 69.9567 96.6247 69.9111 96.5328 69.9729C96.441 70.0348 96.4043 70.1807 96.4508 70.2988C96.4974 70.4169 96.6096 70.4626 96.7015 70.4007C96.7933 70.3388 96.83 70.1929 96.7834 70.0748Z" fill="#FDFFFF"/>
|
||||
<path d="M100.172 68.9604C100.129 68.8506 100.025 68.8082 99.9392 68.8657C99.8539 68.9232 99.8198 69.0587 99.8631 69.1685C99.9063 69.2782 100.011 69.3206 100.096 69.2631C100.181 69.2057 100.215 69.0701 100.172 68.9604Z" fill="#FDFFFF"/>
|
||||
<path d="M94.4865 80.3161C94.443 80.2059 94.3384 80.1634 94.2527 80.2211C94.167 80.2788 94.1328 80.4149 94.1762 80.5251C94.2197 80.6353 94.3243 80.6778 94.41 80.6201C94.4957 80.5624 94.5299 80.4263 94.4865 80.3161Z" fill="#FDFFFF"/>
|
||||
<path d="M90.0229 81.8711C89.9702 81.7376 89.8434 81.686 89.7395 81.7559C89.6357 81.8259 89.5942 81.9908 89.6468 82.1244C89.6995 82.2579 89.8264 82.3095 89.9302 82.2396C90.034 82.1697 90.0755 82.0047 90.0229 81.8711Z" fill="#FDFFFF"/>
|
||||
<path d="M99.9952 77.0588C99.9212 76.8711 99.7428 76.7986 99.5969 76.8969C99.4509 76.9952 99.3925 77.2271 99.4666 77.4149C99.5406 77.6027 99.7189 77.6752 99.8649 77.5769C100.011 77.4785 100.069 77.2466 99.9952 77.0588Z" fill="#FDFFFF"/>
|
||||
<path d="M99.6543 74.9209C99.6272 74.8521 99.5619 74.8256 99.5084 74.8616C99.4549 74.8976 99.4336 74.9825 99.4607 75.0513C99.4878 75.12 99.5531 75.1466 99.6066 75.1106C99.66 75.0746 99.6814 74.9897 99.6543 74.9209Z" fill="#FDFFFF"/>
|
||||
<path d="M95.5125 79.1903C95.4812 79.1109 95.4058 79.0803 95.3441 79.1219C95.2824 79.1634 95.2578 79.2614 95.2891 79.3407C95.3204 79.4201 95.3957 79.4507 95.4574 79.4092C95.5191 79.3676 95.5437 79.2696 95.5125 79.1903Z" fill="#FDFFFF"/>
|
||||
<path d="M93.8787 81.6519C93.8406 81.5554 93.7489 81.5181 93.6739 81.5687C93.5988 81.6192 93.5688 81.7385 93.6069 81.835C93.6449 81.9315 93.7366 81.9688 93.8117 81.9182C93.8867 81.8677 93.9167 81.7485 93.8787 81.6519Z" fill="#FDFFFF"/>
|
||||
<path d="M53.6435 121.129C53.5961 121.009 53.4818 120.962 53.3882 121.025C53.2947 121.088 53.2573 121.237 53.3047 121.357C53.3522 121.478 53.4665 121.524 53.56 121.461C53.6536 121.398 53.691 121.249 53.6435 121.129Z" fill="#FDFFFF"/>
|
||||
<path d="M47.6744 122.093C47.6225 121.961 47.4973 121.91 47.3948 121.979C47.2924 122.048 47.2514 122.211 47.3034 122.342C47.3553 122.474 47.4805 122.525 47.583 122.456C47.6855 122.387 47.7264 122.224 47.6744 122.093Z" fill="#FDFFFF"/>
|
||||
<path d="M46.7757 123.556C46.7057 123.379 46.5369 123.31 46.3988 123.403C46.2607 123.496 46.2055 123.716 46.2755 123.893C46.3456 124.071 46.5143 124.139 46.6524 124.046C46.7905 123.953 46.8457 123.734 46.7757 123.556Z" fill="#FDFFFF"/>
|
||||
<path d="M43.4284 123.685C43.3967 123.605 43.3205 123.574 43.2582 123.616C43.1958 123.658 43.1709 123.757 43.2025 123.837C43.2341 123.917 43.3103 123.948 43.3727 123.906C43.4351 123.864 43.46 123.765 43.4284 123.685Z" fill="#FDFFFF"/>
|
||||
<path d="M39.7608 122.839C39.6597 122.583 39.416 122.483 39.2166 122.618C39.0171 122.752 38.9374 123.069 39.0386 123.326C39.1397 123.582 39.3834 123.681 39.5828 123.547C39.7823 123.412 39.862 123.096 39.7608 122.839Z" fill="#FDFFFF"/>
|
||||
<path d="M38.9121 124.218C38.8782 124.132 38.7966 124.098 38.7297 124.143C38.6629 124.188 38.6362 124.295 38.6701 124.381C38.704 124.466 38.7856 124.5 38.8524 124.455C38.9193 124.41 38.946 124.303 38.9121 124.218Z" fill="#FDFFFF"/>
|
||||
<path d="M44.8968 126.987C44.8438 126.853 44.7161 126.801 44.6116 126.871C44.5071 126.941 44.4653 127.107 44.5183 127.242C44.5713 127.376 44.699 127.428 44.8035 127.358C44.908 127.287 44.9498 127.121 44.8968 126.987Z" fill="#FDFFFF"/>
|
||||
<path d="M51.842 123.842C51.8281 123.807 51.7944 123.793 51.7669 123.812C51.7393 123.83 51.7283 123.874 51.7423 123.91C51.7563 123.945 51.7899 123.959 51.8174 123.94C51.845 123.922 51.856 123.878 51.842 123.842Z" fill="#FDFFFF"/>
|
||||
<path d="M54.4485 122.417C54.3919 122.273 54.2554 122.217 54.1436 122.293C54.0319 122.368 53.9873 122.545 54.0439 122.689C54.1006 122.833 54.2371 122.888 54.3488 122.813C54.4605 122.738 54.5051 122.56 54.4485 122.417Z" fill="#FDFFFF"/>
|
||||
<path d="M51.0476 122.145C50.9691 121.946 50.7798 121.869 50.6249 121.973C50.47 122.078 50.4081 122.324 50.4867 122.523C50.5652 122.722 50.7545 122.799 50.9094 122.695C51.0643 122.591 51.1262 122.344 51.0476 122.145Z" fill="#FDFFFF"/>
|
||||
<path d="M49.2754 123.932C49.2518 123.872 49.1948 123.849 49.1482 123.88C49.1016 123.912 49.083 123.986 49.1066 124.046C49.1303 124.106 49.1872 124.129 49.2338 124.097C49.2804 124.066 49.299 123.992 49.2754 123.932Z" fill="#FDFFFF"/>
|
||||
<path d="M46.8309 117.153C46.7492 116.946 46.5525 116.866 46.3914 116.974C46.2303 117.083 46.166 117.339 46.2476 117.546C46.3293 117.753 46.5261 117.833 46.6871 117.724C46.8482 117.616 46.9126 117.36 46.8309 117.153Z" fill="#FDFFFF"/>
|
||||
<path d="M27.8076 140.689C27.6924 140.397 27.4148 140.284 27.1876 140.437C26.9603 140.59 26.8695 140.951 26.9848 141.243C27.1 141.536 27.3776 141.648 27.6048 141.495C27.832 141.342 27.9228 140.981 27.8076 140.689Z" fill="#FDFFFF"/>
|
||||
<path d="M43.447 119.654C43.4088 119.557 43.3166 119.52 43.2412 119.571C43.1659 119.621 43.1357 119.741 43.1739 119.838C43.2122 119.935 43.3043 119.973 43.3797 119.922C43.4551 119.871 43.4852 119.751 43.447 119.654Z" fill="#FDFFFF"/>
|
||||
<path d="M47.4095 117.797C47.3736 117.705 47.2869 117.67 47.216 117.718C47.145 117.766 47.1167 117.878 47.1526 117.97C47.1886 118.061 47.2753 118.096 47.3462 118.048C47.4172 118 47.4455 117.888 47.4095 117.797Z" fill="#FDFFFF"/>
|
||||
<path d="M44.911 119.68C44.8766 119.593 44.7937 119.559 44.7258 119.605C44.658 119.651 44.6308 119.759 44.6652 119.846C44.6996 119.933 44.7825 119.967 44.8504 119.921C44.9183 119.875 44.9454 119.768 44.911 119.68Z" fill="#FDFFFF"/>
|
||||
<path d="M49.5735 118.089C49.5203 117.954 49.3922 117.902 49.2874 117.973C49.1825 118.043 49.1406 118.21 49.1938 118.345C49.2469 118.48 49.3751 118.532 49.4799 118.461C49.5848 118.39 49.6267 118.224 49.5735 118.089Z" fill="#FDFFFF"/>
|
||||
<path d="M32.2937 127.795C32.2287 127.63 32.0722 127.567 31.944 127.653C31.8158 127.739 31.7646 127.943 31.8296 128.108C31.8946 128.273 32.0512 128.336 32.1793 128.25C32.3075 128.164 32.3587 127.96 32.2937 127.795Z" fill="#FDFFFF"/>
|
||||
<path d="M30.1202 129.454C30.0867 129.369 30.0059 129.336 29.9397 129.381C29.8736 129.425 29.8471 129.53 29.8807 129.616C29.9142 129.701 29.995 129.733 30.0612 129.689C30.1273 129.644 30.1537 129.539 30.1202 129.454Z" fill="#FDFFFF"/>
|
||||
<path d="M28.4877 133.336C28.4484 133.236 28.3538 133.198 28.2763 133.25C28.1989 133.302 28.1679 133.425 28.2072 133.525C28.2465 133.624 28.3411 133.663 28.4186 133.611C28.496 133.558 28.527 133.435 28.4877 133.336Z" fill="#FDFFFF"/>
|
||||
<path d="M32.1789 130.808C32.1324 130.69 32.0202 130.644 31.9283 130.706C31.8365 130.768 31.7998 130.914 31.8463 131.032C31.8929 131.15 32.0051 131.196 32.097 131.134C32.1888 131.072 32.2255 130.926 32.1789 130.808Z" fill="#FDFFFF"/>
|
||||
<path d="M35.5666 129.694C35.5234 129.584 35.4191 129.542 35.3338 129.599C35.2484 129.657 35.2143 129.792 35.2576 129.902C35.3009 130.012 35.4051 130.054 35.4904 129.997C35.5758 129.939 35.6099 129.804 35.5666 129.694Z" fill="#FDFFFF"/>
|
||||
<path d="M29.882 141.05C29.8385 140.939 29.7339 140.897 29.6482 140.954C29.5625 141.012 29.5283 141.148 29.5717 141.258C29.6152 141.369 29.7198 141.411 29.8055 141.354C29.8912 141.296 29.9254 141.16 29.882 141.05Z" fill="#FDFFFF"/>
|
||||
<path d="M25.4184 142.605C25.3657 142.471 25.2389 142.419 25.135 142.489C25.0312 142.559 24.9897 142.724 25.0424 142.858C25.095 142.991 25.2219 143.043 25.3257 142.973C25.4296 142.903 25.471 142.738 25.4184 142.605Z" fill="#FDFFFF"/>
|
||||
<path d="M35.3907 137.792C35.3167 137.604 35.1384 137.532 34.9924 137.63C34.8464 137.729 34.788 137.961 34.8621 138.148C34.9361 138.336 35.1144 138.409 35.2604 138.31C35.4064 138.212 35.4648 137.98 35.3907 137.792Z" fill="#FDFFFF"/>
|
||||
<path d="M35.0498 135.654C35.0227 135.586 34.9574 135.559 34.9039 135.595C34.8504 135.631 34.8291 135.716 34.8562 135.785C34.8833 135.853 34.9486 135.88 35.0021 135.844C35.0555 135.808 35.0769 135.723 35.0498 135.654Z" fill="#FDFFFF"/>
|
||||
<path d="M30.908 139.924C30.8767 139.844 30.8013 139.814 30.7396 139.855C30.678 139.897 30.6533 139.995 30.6846 140.074C30.7159 140.153 30.7912 140.184 30.8529 140.143C30.9146 140.101 30.9392 140.003 30.908 139.924Z" fill="#FDFFFF"/>
|
||||
<path d="M29.2742 142.385C29.2361 142.289 29.1444 142.252 29.0694 142.302C28.9943 142.353 28.9643 142.472 29.0024 142.568C29.0404 142.665 29.1321 142.702 29.2072 142.652C29.2822 142.601 29.3122 142.482 29.2742 142.385Z" fill="#FDFFFF"/>
|
||||
<path d="M79.7977 87.5853C79.7186 87.5498 79.693 87.4715 79.7406 87.4104C79.7882 87.3494 79.8909 87.3288 79.97 87.3643C80.0491 87.3999 80.0747 87.4782 80.0271 87.5392C79.9796 87.6003 79.8769 87.6209 79.7977 87.5853Z" fill="#EEFFFD"/>
|
||||
<path d="M80.7599 83.5993C80.6732 83.5603 80.6452 83.4746 80.6973 83.4077C80.7494 83.3409 80.8619 83.3183 80.9485 83.3572C81.0352 83.3962 81.0632 83.4819 81.0111 83.5488C80.959 83.6156 80.8465 83.6382 80.7599 83.5993Z" fill="#EEFFFD"/>
|
||||
<path d="M81.7989 83.0388C81.682 82.9863 81.6443 82.8707 81.7145 82.7806C81.7847 82.6905 81.9363 82.6601 82.0532 82.7126C82.17 82.7651 82.2077 82.8807 82.1375 82.9708C82.0673 83.0609 81.9157 83.0913 81.7989 83.0388Z" fill="#EEFFFD"/>
|
||||
<path d="M82.0602 80.7909C82.0074 80.7672 81.9903 80.715 82.0221 80.6743C82.0538 80.6337 82.1222 80.6199 82.175 80.6436C82.2277 80.6673 82.2448 80.7195 82.2131 80.7602C82.1814 80.8009 82.1129 80.8147 82.0602 80.7909Z" fill="#EEFFFD"/>
|
||||
<path d="M81.6769 78.2968C81.5082 78.221 81.4537 78.0541 81.5551 77.9239C81.6565 77.7938 81.8755 77.7498 82.0442 77.8256C82.2129 77.9014 82.2674 78.0684 82.166 78.1985C82.0646 78.3286 81.8456 78.3726 81.6769 78.2968Z" fill="#EEFFFD"/>
|
||||
<path d="M82.6555 77.7681C82.599 77.7427 82.5807 77.6868 82.6147 77.6432C82.6486 77.5996 82.722 77.5849 82.7785 77.6103C82.835 77.6357 82.8533 77.6916 82.8193 77.7352C82.7854 77.7788 82.712 77.7935 82.6555 77.7681Z" fill="#EEFFFD"/>
|
||||
<path d="M84.2227 81.8781C84.1343 81.8384 84.1057 81.7509 84.1588 81.6827C84.212 81.6145 84.3267 81.5914 84.4151 81.6312C84.5035 81.6709 84.5321 81.7584 84.479 81.8266C84.4258 81.8948 84.3111 81.9179 84.2227 81.8781Z" fill="#EEFFFD"/>
|
||||
<path d="M81.7313 86.4553C81.708 86.4448 81.7005 86.4218 81.7145 86.4038C81.7285 86.3858 81.7588 86.3798 81.782 86.3902C81.8053 86.4007 81.8129 86.4237 81.7989 86.4417C81.7849 86.4597 81.7546 86.4658 81.7313 86.4553Z" fill="#EEFFFD"/>
|
||||
<path d="M80.6291 88.1665C80.5346 88.1241 80.504 88.0306 80.5608 87.9577C80.6176 87.8848 80.7403 87.8601 80.8348 87.9026C80.9293 87.9451 80.9598 88.0386 80.903 88.1115C80.8462 88.1844 80.7235 88.209 80.6291 88.1665Z" fill="#EEFFFD"/>
|
||||
<path d="M80.6211 85.8697C80.4901 85.8108 80.4478 85.6812 80.5265 85.5801C80.6053 85.479 80.7753 85.4449 80.9063 85.5037C81.0373 85.5626 81.0797 85.6923 81.0009 85.7933C80.9222 85.8944 80.7521 85.9286 80.6211 85.8697Z" fill="#EEFFFD"/>
|
||||
<path d="M81.9248 84.7314C81.8854 84.7136 81.8727 84.6746 81.8964 84.6442C81.9201 84.6138 81.9712 84.6035 82.0107 84.6212C82.0501 84.639 82.0628 84.678 82.0391 84.7084C82.0154 84.7388 81.9642 84.7491 81.9248 84.7314Z" fill="#EEFFFD"/>
|
||||
<path d="M77.4548 82.882C77.3186 82.8207 77.2745 82.6859 77.3564 82.5808C77.4383 82.4758 77.6152 82.4402 77.7514 82.5014C77.8876 82.5627 77.9317 82.6975 77.8498 82.8026C77.7679 82.9076 77.591 82.9432 77.4548 82.882Z" fill="#EEFFFD"/>
|
||||
<path d="M94.3987 70.7964C94.2066 70.7101 94.1444 70.5199 94.26 70.3716C94.3755 70.2234 94.6249 70.1733 94.8171 70.2596C95.0093 70.346 95.0714 70.5362 94.9559 70.6844C94.8403 70.8326 94.5909 70.8828 94.3987 70.7964Z" fill="#EEFFFD"/>
|
||||
<path d="M79.3268 80.6799C79.263 80.6513 79.2424 80.5882 79.2807 80.539C79.3191 80.4898 79.4018 80.4732 79.4656 80.5018C79.5294 80.5305 79.55 80.5936 79.5116 80.6428C79.4733 80.692 79.3905 80.7086 79.3268 80.6799Z" fill="#EEFFFD"/>
|
||||
<path d="M77.8613 83.2906C77.8013 83.2637 77.7819 83.2043 77.818 83.158C77.8541 83.1117 77.932 83.0961 77.992 83.1231C78.052 83.15 78.0713 83.2094 78.0353 83.2557C77.9992 83.302 77.9213 83.3176 77.8613 83.2906Z" fill="#EEFFFD"/>
|
||||
<path d="M79.2682 81.6663C79.2108 81.6406 79.1923 81.5838 79.2268 81.5395C79.2613 81.4952 79.3358 81.4802 79.3932 81.506C79.4505 81.5318 79.4691 81.5886 79.4346 81.6329C79.4001 81.6772 79.3256 81.6921 79.2682 81.6663Z" fill="#EEFFFD"/>
|
||||
<path d="M77.9471 84.7547C77.8584 84.7148 77.8297 84.627 77.883 84.5586C77.9364 84.4902 78.0515 84.4671 78.1402 84.5069C78.2289 84.5468 78.2576 84.6346 78.2042 84.703C78.1509 84.7714 78.0358 84.7945 77.9471 84.7547Z" fill="#EEFFFD"/>
|
||||
<path d="M85.4242 73.4226C85.3157 73.3739 85.2807 73.2666 85.3459 73.183C85.411 73.0994 85.5518 73.0711 85.6602 73.1198C85.7686 73.1685 85.8036 73.2758 85.7384 73.3594C85.6733 73.443 85.5326 73.4713 85.4242 73.4226Z" fill="#EEFFFD"/>
|
||||
<path d="M86.6617 72.0111C86.6058 71.986 86.5877 71.9306 86.6213 71.8875C86.6549 71.8443 86.7275 71.8297 86.7835 71.8549C86.8394 71.88 86.8575 71.9354 86.8239 71.9785C86.7902 72.0217 86.7176 72.0363 86.6617 72.0111Z" fill="#EEFFFD"/>
|
||||
<path d="M89.3775 71.031C89.312 71.0016 89.2908 70.9368 89.3302 70.8862C89.3695 70.8357 89.4546 70.8186 89.5201 70.8481C89.5856 70.8775 89.6067 70.9423 89.5674 70.9929C89.528 71.0434 89.443 71.0605 89.3775 71.031Z" fill="#EEFFFD"/>
|
||||
<path d="M87.4735 73.438C87.3958 73.403 87.3707 73.3262 87.4174 73.2663C87.4641 73.2063 87.5649 73.1861 87.6426 73.221C87.7202 73.2559 87.7453 73.3328 87.6986 73.3927C87.6519 73.4526 87.5511 73.4729 87.4735 73.438Z" fill="#EEFFFD"/>
|
||||
<path d="M86.5413 75.6829C86.4691 75.6505 86.4458 75.5791 86.4892 75.5234C86.5326 75.4677 86.6263 75.4489 86.6984 75.4813C86.7706 75.5137 86.7939 75.5852 86.7505 75.6408C86.7071 75.6965 86.6135 75.7153 86.5413 75.6829Z" fill="#EEFFFD"/>
|
||||
<path d="M94.5362 72.202C94.4638 72.1695 94.4403 72.0977 94.4839 72.0419C94.5275 71.986 94.6215 71.9671 94.694 71.9996C94.7664 72.0322 94.7899 72.1039 94.7463 72.1598C94.7028 72.2157 94.6087 72.2346 94.5362 72.202Z" fill="#EEFFFD"/>
|
||||
<path d="M95.8216 69.2461C95.7338 69.2066 95.7054 69.1197 95.7582 69.052C95.811 68.9842 95.925 68.9613 96.0129 69.0008C96.1007 69.0403 96.1291 69.1272 96.0763 69.1949C96.0235 69.2627 95.9095 69.2856 95.8216 69.2461Z" fill="#EEFFFD"/>
|
||||
<path d="M92.0418 75.8099C91.9183 75.7544 91.8784 75.6322 91.9526 75.5369C92.0269 75.4417 92.1871 75.4095 92.3106 75.4649C92.4341 75.5204 92.474 75.6426 92.3998 75.7379C92.3255 75.8331 92.1653 75.8653 92.0418 75.8099Z" fill="#EEFFFD"/>
|
||||
<path d="M90.6097 75.5153C90.5645 75.495 90.5499 75.4502 90.5771 75.4153C90.6043 75.3805 90.663 75.3687 90.7082 75.389C90.7534 75.4093 90.768 75.4541 90.7408 75.4889C90.7136 75.5238 90.6549 75.5356 90.6097 75.5153Z" fill="#EEFFFD"/>
|
||||
<path d="M93.7197 72.8582C93.6675 72.8347 93.6507 72.7831 93.682 72.7428C93.7134 72.7026 93.7811 72.689 93.8333 72.7124C93.8854 72.7359 93.9023 72.7875 93.8709 72.8278C93.8396 72.868 93.7719 72.8816 93.7197 72.8582Z" fill="#EEFFFD"/>
|
||||
<path d="M95.4725 71.8337C95.409 71.8051 95.3885 71.7423 95.4266 71.6934C95.4648 71.6444 95.5472 71.6278 95.6107 71.6564C95.6741 71.6849 95.6946 71.7477 95.6565 71.7967C95.6183 71.8456 95.5359 71.8622 95.4725 71.8337Z" fill="#EEFFFD"/>
|
||||
<path d="M48.6494 112.652C48.5779 112.588 48.5718 112.497 48.6359 112.447C48.6999 112.398 48.8098 112.409 48.8813 112.473C48.9528 112.536 48.9588 112.628 48.8948 112.677C48.8308 112.727 48.7209 112.715 48.6494 112.652Z" fill="#EEFFFD"/>
|
||||
<path d="M50.6472 108.726C50.5689 108.657 50.5622 108.556 50.6324 108.502C50.7025 108.448 50.8228 108.461 50.9012 108.53C50.9795 108.6 50.9861 108.7 50.916 108.754C50.8459 108.808 50.7255 108.796 50.6472 108.726Z" fill="#EEFFFD"/>
|
||||
<path d="M51.8484 108.468C51.7429 108.374 51.7339 108.239 51.8284 108.166C51.923 108.093 52.0851 108.11 52.1907 108.204C52.2963 108.298 52.3052 108.433 52.2107 108.506C52.1162 108.579 51.954 108.562 51.8484 108.468Z" fill="#EEFFFD"/>
|
||||
<path d="M52.6888 106.163C52.6411 106.12 52.6371 106.059 52.6798 106.026C52.7225 105.993 52.7957 106.001 52.8434 106.043C52.891 106.086 52.8951 106.147 52.8524 106.18C52.8097 106.213 52.7365 106.205 52.6888 106.163Z" fill="#EEFFFD"/>
|
||||
<path d="M52.9347 103.386C52.7823 103.251 52.7693 103.055 52.9058 102.95C53.0423 102.845 53.2766 102.869 53.429 103.005C53.5815 103.14 53.5944 103.335 53.4579 103.441C53.3214 103.546 53.0872 103.522 52.9347 103.386Z" fill="#EEFFFD"/>
|
||||
<path d="M54.0661 103.141C54.015 103.096 54.0107 103.03 54.0564 102.995C54.1022 102.96 54.1807 102.968 54.2317 103.013C54.2828 103.059 54.2871 103.124 54.2414 103.16C54.1957 103.195 54.1172 103.187 54.0661 103.141Z" fill="#EEFFFD"/>
|
||||
<path d="M54.6129 108.023C54.533 107.952 54.5262 107.849 54.5978 107.794C54.6693 107.739 54.7921 107.752 54.8719 107.823C54.9518 107.894 54.9586 107.996 54.8871 108.051C54.8155 108.106 54.6928 108.094 54.6129 108.023Z" fill="#EEFFFD"/>
|
||||
<path d="M50.9063 112.079C50.8853 112.061 50.8835 112.034 50.9023 112.019C50.9212 112.005 50.9535 112.008 50.9746 112.027C50.9956 112.045 50.9974 112.072 50.9786 112.087C50.9597 112.101 50.9274 112.098 50.9063 112.079Z" fill="#EEFFFD"/>
|
||||
<path d="M49.3478 113.54C49.2624 113.464 49.2552 113.355 49.3316 113.296C49.4081 113.237 49.5393 113.251 49.6247 113.326C49.7101 113.402 49.7173 113.512 49.6408 113.571C49.5644 113.63 49.4332 113.616 49.3478 113.54Z" fill="#EEFFFD"/>
|
||||
<path d="M49.9261 111.095C49.8077 110.99 49.7977 110.838 49.9037 110.756C50.0097 110.674 50.1916 110.693 50.31 110.799C50.4284 110.904 50.4385 111.056 50.3325 111.137C50.2264 111.219 50.0445 111.2 49.9261 111.095Z" fill="#EEFFFD"/>
|
||||
<path d="M51.5446 110.309C51.509 110.277 51.506 110.232 51.5378 110.207C51.5697 110.183 51.6245 110.188 51.6601 110.22C51.6957 110.252 51.6988 110.297 51.6669 110.322C51.635 110.347 51.5802 110.341 51.5446 110.309Z" fill="#EEFFFD"/>
|
||||
<path d="M47.4638 106.887C47.3407 106.778 47.3303 106.62 47.4405 106.535C47.5508 106.45 47.7399 106.47 47.863 106.579C47.9861 106.689 47.9966 106.846 47.8863 106.931C47.7761 107.017 47.5869 106.997 47.4638 106.887Z" fill="#EEFFFD"/>
|
||||
<path d="M67.806 99.5487C67.6324 99.3943 67.6176 99.1719 67.7731 99.0518C67.9286 98.9318 68.1955 98.9596 68.3692 99.114C68.5428 99.2684 68.5575 99.4909 68.402 99.6109C68.2465 99.7309 67.9797 99.7031 67.806 99.5487Z" fill="#EEFFFD"/>
|
||||
<path d="M49.9324 105.156C49.8748 105.105 49.8699 105.031 49.9215 104.991C49.9731 104.951 50.0617 104.961 50.1193 105.012C50.1769 105.063 50.1818 105.137 50.1302 105.177C50.0786 105.216 49.9901 105.207 49.9324 105.156Z" fill="#EEFFFD"/>
|
||||
<path d="M47.7739 107.455C47.7196 107.406 47.715 107.337 47.7636 107.3C47.8121 107.262 47.8955 107.271 47.9497 107.319C48.0039 107.367 48.0085 107.437 47.9599 107.474C47.9114 107.512 47.8281 107.503 47.7739 107.455Z" fill="#EEFFFD"/>
|
||||
<path d="M49.6217 106.185C49.5699 106.139 49.5655 106.072 49.6119 106.037C49.6583 106.001 49.738 106.009 49.7899 106.055C49.8417 106.101 49.8461 106.168 49.7997 106.204C49.7533 106.239 49.6736 106.231 49.6217 106.185Z" fill="#EEFFFD"/>
|
||||
<path d="M47.4875 109.04C47.4074 108.969 47.4006 108.866 47.4724 108.811C47.5441 108.756 47.6673 108.768 47.7474 108.84C47.8276 108.911 47.8344 109.014 47.7626 109.069C47.6909 109.124 47.5677 109.112 47.4875 109.04Z" fill="#EEFFFD"/>
|
||||
<path d="M57.9952 99.4225C57.8972 99.3354 57.8889 99.2099 57.9766 99.1422C58.0644 99.0745 58.2149 99.0902 58.3128 99.1773C58.4108 99.2644 58.4191 99.3899 58.3314 99.4576C58.2437 99.5253 58.0932 99.5096 57.9952 99.4225Z" fill="#EEFFFD"/>
|
||||
<path d="M59.6166 98.3245C59.5661 98.2795 59.5618 98.2148 59.607 98.1798C59.6523 98.1449 59.73 98.153 59.7805 98.1979C59.8311 98.2429 59.8354 98.3076 59.7901 98.3426C59.7448 98.3775 59.6672 98.3694 59.6166 98.3245Z" fill="#EEFFFD"/>
|
||||
<path d="M62.6325 98.1652C62.5733 98.1126 62.5683 98.0367 62.6213 97.9958C62.6743 97.9549 62.7653 97.9644 62.8245 98.017C62.8837 98.0696 62.8887 98.1455 62.8357 98.1864C62.7827 98.2273 62.6917 98.2178 62.6325 98.1652Z" fill="#EEFFFD"/>
|
||||
<path d="M60.0779 100.105C60.0077 100.042 60.0017 99.9524 60.0646 99.9039C60.1275 99.8553 60.2353 99.8666 60.3055 99.929C60.3757 99.9914 60.3817 100.081 60.3188 100.13C60.2559 100.178 60.1481 100.167 60.0779 100.105Z" fill="#EEFFFD"/>
|
||||
<path d="M58.5562 102.189C58.4909 102.131 58.4854 102.048 58.5438 102.003C58.6022 101.957 58.7024 101.968 58.7677 102.026C58.8329 102.084 58.8384 102.167 58.78 102.212C58.7216 102.258 58.6214 102.247 58.5562 102.189Z" fill="#EEFFFD"/>
|
||||
<path d="M67.5861 101.09C67.5206 101.032 67.515 100.948 67.5737 100.902C67.6323 100.857 67.7329 100.868 67.7984 100.926C67.8639 100.984 67.8695 101.068 67.8108 101.113C67.7522 101.158 67.6516 101.148 67.5861 101.09Z" fill="#EEFFFD"/>
|
||||
<path d="M69.6507 98.3639C69.5713 98.2933 69.5646 98.1916 69.6357 98.1368C69.7067 98.0819 69.8287 98.0946 69.908 98.1652C69.9874 98.2358 69.9941 98.3374 69.9231 98.3923C69.852 98.4472 69.7301 98.4344 69.6507 98.3639Z" fill="#EEFFFD"/>
|
||||
<path d="M64.1256 104.114C64.014 104.015 64.0045 103.872 64.1045 103.795C64.2044 103.718 64.3758 103.736 64.4874 103.835C64.599 103.934 64.6085 104.077 64.5085 104.154C64.4086 104.231 64.2372 104.214 64.1256 104.114Z" fill="#EEFFFD"/>
|
||||
<path d="M62.7427 103.335C62.7019 103.299 62.6984 103.247 62.735 103.218C62.7716 103.19 62.8344 103.197 62.8752 103.233C62.9161 103.269 62.9196 103.322 62.883 103.35C62.8464 103.378 62.7836 103.372 62.7427 103.335Z" fill="#EEFFFD"/>
|
||||
<path d="M66.5869 101.522C66.5398 101.48 66.5358 101.419 66.578 101.387C66.6202 101.354 66.6927 101.362 66.7398 101.404C66.787 101.446 66.791 101.506 66.7488 101.539C66.7065 101.571 66.6341 101.564 66.5869 101.522Z" fill="#EEFFFD"/>
|
||||
<path d="M68.6349 101.002C68.5776 100.951 68.5727 100.878 68.6241 100.838C68.6754 100.799 68.7636 100.808 68.8209 100.859C68.8783 100.91 68.8832 100.983 68.8318 101.023C68.7804 101.063 68.6923 101.053 68.6349 101.002Z" fill="#EEFFFD"/>
|
||||
<path d="M210.633 127.304C210.657 127.209 210.741 127.168 210.82 127.214C210.899 127.259 210.943 127.374 210.919 127.469C210.895 127.565 210.811 127.606 210.732 127.56C210.653 127.514 210.609 127.4 210.633 127.304Z" fill="#EEFFFD"/>
|
||||
<path d="M215.354 127.83C215.38 127.725 215.472 127.68 215.558 127.73C215.645 127.78 215.694 127.906 215.667 128.011C215.641 128.115 215.549 128.16 215.462 128.11C215.376 128.06 215.327 127.934 215.354 127.83Z" fill="#EEFFFD"/>
|
||||
<path d="M216.203 128.936C216.239 128.795 216.362 128.735 216.479 128.802C216.595 128.87 216.661 129.039 216.625 129.18C216.589 129.321 216.466 129.381 216.349 129.314C216.233 129.246 216.167 129.077 216.203 128.936Z" fill="#EEFFFD"/>
|
||||
<path d="M218.808 128.91C218.824 128.846 218.88 128.819 218.933 128.85C218.985 128.88 219.015 128.957 218.999 129.02C218.983 129.084 218.927 129.111 218.874 129.081C218.822 129.05 218.792 128.974 218.808 128.91Z" fill="#EEFFFD"/>
|
||||
<path d="M221.56 128.112C221.611 127.908 221.789 127.821 221.958 127.919C222.126 128.016 222.221 128.26 222.17 128.464C222.118 128.668 221.94 128.754 221.771 128.657C221.603 128.56 221.508 128.316 221.56 128.112Z" fill="#EEFFFD"/>
|
||||
<path d="M222.36 129.154C222.377 129.086 222.437 129.057 222.494 129.089C222.55 129.122 222.582 129.203 222.564 129.272C222.547 129.34 222.487 129.369 222.431 129.337C222.375 129.304 222.343 129.222 222.36 129.154Z" fill="#EEFFFD"/>
|
||||
<path d="M218.015 131.541C218.042 131.434 218.136 131.389 218.224 131.44C218.312 131.491 218.362 131.619 218.335 131.725C218.308 131.832 218.215 131.878 218.126 131.827C218.038 131.776 217.988 131.648 218.015 131.541Z" fill="#EEFFFD"/>
|
||||
<path d="M212.31 129.353C212.318 129.324 212.342 129.312 212.365 129.326C212.389 129.339 212.402 129.373 212.395 129.401C212.388 129.429 212.363 129.441 212.34 129.428C212.316 129.414 212.303 129.381 212.31 129.353Z" fill="#EEFFFD"/>
|
||||
<path d="M210.144 128.339C210.173 128.225 210.273 128.177 210.367 128.231C210.462 128.285 210.515 128.422 210.486 128.536C210.457 128.651 210.357 128.699 210.263 128.645C210.168 128.59 210.115 128.453 210.144 128.339Z" fill="#EEFFFD"/>
|
||||
<path d="M212.749 127.999C212.789 127.84 212.928 127.773 213.059 127.848C213.189 127.924 213.263 128.113 213.223 128.272C213.183 128.43 213.044 128.497 212.914 128.422C212.783 128.346 212.709 128.157 212.749 127.999Z" fill="#EEFFFD"/>
|
||||
<path d="M214.307 129.325C214.319 129.277 214.361 129.257 214.4 129.279C214.439 129.302 214.462 129.359 214.45 129.407C214.437 129.455 214.396 129.475 214.356 129.452C214.317 129.429 214.295 129.372 214.307 129.325Z" fill="#EEFFFD"/>
|
||||
<path d="M215.493 123.945C215.535 123.78 215.679 123.71 215.815 123.789C215.951 123.867 216.027 124.065 215.986 124.229C215.944 124.394 215.8 124.464 215.664 124.385C215.528 124.307 215.451 124.11 215.493 123.945Z" fill="#EEFFFD"/>
|
||||
<path d="M232.675 141.579C232.734 141.347 232.937 141.248 233.129 141.359C233.321 141.469 233.429 141.748 233.37 141.98C233.311 142.212 233.108 142.311 232.916 142.2C232.724 142.089 232.616 141.811 232.675 141.579Z" fill="#EEFFFD"/>
|
||||
<path d="M218.374 125.767C218.394 125.69 218.461 125.658 218.525 125.694C218.588 125.731 218.624 125.823 218.605 125.9C218.585 125.978 218.518 126.01 218.454 125.974C218.39 125.937 218.355 125.845 218.374 125.767Z" fill="#EEFFFD"/>
|
||||
<path d="M215.111 124.469C215.13 124.397 215.193 124.366 215.253 124.4C215.313 124.435 215.346 124.522 215.328 124.594C215.31 124.667 215.246 124.698 215.186 124.663C215.127 124.628 215.093 124.542 215.111 124.469Z" fill="#EEFFFD"/>
|
||||
<path d="M217.243 125.844C217.261 125.774 217.321 125.745 217.379 125.778C217.436 125.811 217.468 125.894 217.451 125.963C217.433 126.033 217.372 126.062 217.315 126.029C217.258 125.996 217.226 125.913 217.243 125.844Z" fill="#EEFFFD"/>
|
||||
<path d="M213.467 124.78C213.494 124.673 213.588 124.627 213.676 124.678C213.765 124.73 213.814 124.858 213.787 124.965C213.76 125.072 213.666 125.118 213.578 125.067C213.489 125.016 213.44 124.887 213.467 124.78Z" fill="#EEFFFD"/>
|
||||
<path d="M227.857 131.694C227.891 131.563 228.005 131.507 228.113 131.57C228.222 131.632 228.283 131.789 228.249 131.92C228.216 132.051 228.102 132.107 227.993 132.044C227.885 131.982 227.824 131.825 227.857 131.694Z" fill="#EEFFFD"/>
|
||||
<path d="M229.713 132.905C229.731 132.838 229.79 132.809 229.846 132.841C229.901 132.874 229.933 132.954 229.916 133.022C229.899 133.09 229.839 133.118 229.784 133.086C229.728 133.054 229.696 132.973 229.713 132.905Z" fill="#EEFFFD"/>
|
||||
<path d="M231.38 135.869C231.4 135.79 231.47 135.757 231.535 135.794C231.601 135.832 231.637 135.927 231.617 136.006C231.597 136.085 231.528 136.119 231.463 136.081C231.397 136.043 231.36 135.949 231.38 135.869Z" fill="#EEFFFD"/>
|
||||
<path d="M228.26 134.039C228.284 133.945 228.366 133.905 228.444 133.95C228.521 133.995 228.565 134.107 228.541 134.201C228.517 134.295 228.435 134.335 228.358 134.29C228.28 134.245 228.236 134.133 228.26 134.039Z" fill="#EEFFFD"/>
|
||||
<path d="M225.521 133.298C225.543 133.211 225.62 133.174 225.692 133.215C225.764 133.257 225.804 133.361 225.782 133.448C225.76 133.536 225.684 133.573 225.612 133.531C225.54 133.49 225.499 133.385 225.521 133.298Z" fill="#EEFFFD"/>
|
||||
<path d="M231.107 141.939C231.129 141.852 231.206 141.814 231.278 141.856C231.351 141.898 231.391 142.003 231.369 142.09C231.347 142.178 231.27 142.215 231.198 142.173C231.126 142.132 231.085 142.027 231.107 141.939Z" fill="#EEFFFD"/>
|
||||
<path d="M234.725 142.982C234.752 142.876 234.845 142.831 234.933 142.881C235.02 142.932 235.07 143.059 235.043 143.165C235.016 143.271 234.923 143.316 234.835 143.266C234.748 143.215 234.698 143.088 234.725 142.982Z" fill="#EEFFFD"/>
|
||||
<path d="M226.502 139.608C226.539 139.459 226.67 139.395 226.793 139.466C226.917 139.538 226.986 139.716 226.948 139.866C226.91 140.015 226.78 140.078 226.657 140.007C226.533 139.936 226.464 139.757 226.502 139.608Z" fill="#EEFFFD"/>
|
||||
<path d="M226.544 137.927C226.558 137.872 226.606 137.849 226.651 137.875C226.696 137.901 226.721 137.967 226.708 138.021C226.694 138.076 226.646 138.099 226.601 138.073C226.556 138.047 226.53 137.981 226.544 137.927Z" fill="#EEFFFD"/>
|
||||
<path d="M230.195 141.099C230.211 141.036 230.266 141.009 230.318 141.039C230.37 141.07 230.399 141.145 230.383 141.208C230.367 141.271 230.312 141.298 230.26 141.268C230.208 141.238 230.179 141.162 230.195 141.099Z" fill="#EEFFFD"/>
|
||||
<path d="M231.717 142.957C231.736 142.88 231.803 142.848 231.867 142.884C231.93 142.921 231.966 143.013 231.946 143.09C231.927 143.166 231.86 143.199 231.796 143.162C231.733 143.126 231.697 143.034 231.717 142.957Z" fill="#EEFFFD"/>
|
||||
<path d="M189.989 101.159C190.028 101.072 190.114 101.039 190.18 101.086C190.246 101.132 190.268 101.241 190.228 101.328C190.188 101.415 190.103 101.448 190.037 101.401C189.97 101.354 189.949 101.246 189.989 101.159Z" fill="#F5FFFE"/>
|
||||
<path d="M194.329 101.912C194.373 101.817 194.467 101.781 194.539 101.832C194.611 101.883 194.635 102.002 194.591 102.097C194.548 102.192 194.454 102.228 194.382 102.177C194.309 102.126 194.286 102.007 194.329 101.912Z" fill="#F5FFFE"/>
|
||||
<path d="M194.93 102.984C194.989 102.855 195.116 102.807 195.213 102.876C195.311 102.945 195.342 103.105 195.284 103.233C195.225 103.362 195.099 103.41 195.001 103.341C194.903 103.272 194.872 103.112 194.93 102.984Z" fill="#F5FFFE"/>
|
||||
<path d="M197.38 103.107C197.407 103.049 197.464 103.027 197.508 103.058C197.552 103.089 197.567 103.161 197.54 103.219C197.514 103.277 197.456 103.299 197.412 103.268C197.368 103.237 197.354 103.165 197.38 103.107Z" fill="#F5FFFE"/>
|
||||
<path d="M200.106 102.524C200.19 102.338 200.373 102.268 200.514 102.368C200.655 102.467 200.701 102.698 200.616 102.884C200.531 103.069 200.349 103.139 200.208 103.04C200.067 102.94 200.021 102.709 200.106 102.524Z" fill="#F5FFFE"/>
|
||||
<path d="M200.673 103.533C200.702 103.471 200.763 103.448 200.81 103.481C200.857 103.514 200.873 103.592 200.844 103.654C200.816 103.716 200.755 103.74 200.707 103.706C200.66 103.673 200.645 103.596 200.673 103.533Z" fill="#F5FFFE"/>
|
||||
<path d="M196.17 105.495C196.215 105.397 196.31 105.361 196.384 105.413C196.458 105.465 196.482 105.586 196.438 105.683C196.393 105.781 196.298 105.817 196.224 105.765C196.15 105.713 196.126 105.592 196.17 105.495Z" fill="#F5FFFE"/>
|
||||
<path d="M191.201 103.148C191.212 103.122 191.238 103.113 191.257 103.126C191.277 103.14 191.283 103.172 191.271 103.198C191.259 103.223 191.234 103.233 191.215 103.219C191.195 103.206 191.189 103.174 191.201 103.148Z" fill="#F5FFFE"/>
|
||||
<path d="M189.346 102.089C189.393 101.985 189.496 101.946 189.575 102.001C189.653 102.057 189.679 102.186 189.632 102.29C189.584 102.394 189.482 102.433 189.403 102.378C189.324 102.322 189.298 102.193 189.346 102.089Z" fill="#F5FFFE"/>
|
||||
<path d="M191.853 101.92C191.918 101.776 192.06 101.722 192.17 101.799C192.279 101.876 192.315 102.056 192.249 102.2C192.183 102.344 192.041 102.398 191.932 102.321C191.822 102.244 191.787 102.065 191.853 101.92Z" fill="#F5FFFE"/>
|
||||
<path d="M193.081 103.235C193.1 103.191 193.143 103.175 193.176 103.198C193.209 103.222 193.22 103.276 193.2 103.319C193.18 103.362 193.137 103.379 193.104 103.355C193.072 103.332 193.061 103.278 193.081 103.235Z" fill="#F5FFFE"/>
|
||||
<path d="M195.148 98.3276C195.216 98.1777 195.364 98.1212 195.478 98.2015C195.592 98.2818 195.629 98.4683 195.56 98.6182C195.492 98.7681 195.344 98.8246 195.23 98.7443C195.117 98.6641 195.08 98.4775 195.148 98.3276Z" fill="#F5FFFE"/>
|
||||
<path d="M208.156 115.605C208.252 115.393 208.46 115.314 208.621 115.427C208.781 115.54 208.833 115.803 208.737 116.015C208.641 116.226 208.432 116.306 208.272 116.192C208.111 116.079 208.059 115.816 208.156 115.605Z" fill="#F5FFFE"/>
|
||||
<path d="M197.531 100.176C197.563 100.106 197.632 100.08 197.685 100.117C197.739 100.155 197.756 100.242 197.724 100.312C197.692 100.383 197.623 100.409 197.57 100.371C197.516 100.334 197.499 100.247 197.531 100.176Z" fill="#F5FFFE"/>
|
||||
<path d="M194.698 98.7905C194.728 98.7245 194.793 98.6997 194.843 98.735C194.894 98.7704 194.91 98.8525 194.88 98.9186C194.85 98.9846 194.785 99.0094 194.734 98.9741C194.684 98.9387 194.668 98.8566 194.698 98.7905Z" fill="#F5FFFE"/>
|
||||
<path d="M196.456 100.182C196.484 100.119 196.547 100.095 196.595 100.129C196.642 100.163 196.658 100.241 196.629 100.305C196.6 100.368 196.538 100.392 196.49 100.358C196.442 100.324 196.427 100.245 196.456 100.182Z" fill="#F5FFFE"/>
|
||||
<path d="M193.098 98.9846C193.143 98.887 193.239 98.8503 193.313 98.9026C193.387 98.9548 193.411 99.0763 193.367 99.1739C193.322 99.2715 193.226 99.3082 193.152 99.256C193.078 99.2037 193.054 99.0822 193.098 98.9846Z" fill="#F5FFFE"/>
|
||||
<path d="M205.386 106.191C205.44 106.072 205.558 106.027 205.648 106.091C205.739 106.155 205.768 106.303 205.714 106.423C205.659 106.542 205.542 106.587 205.451 106.523C205.361 106.459 205.331 106.311 205.386 106.191Z" fill="#F5FFFE"/>
|
||||
<path d="M206.913 107.417C206.941 107.355 207.001 107.332 207.048 107.365C207.095 107.398 207.11 107.474 207.082 107.536C207.054 107.598 206.993 107.621 206.947 107.588C206.9 107.555 206.885 107.478 206.913 107.417Z" fill="#F5FFFE"/>
|
||||
<path d="M207.953 110.252C207.986 110.18 208.057 110.153 208.112 110.192C208.166 110.23 208.184 110.32 208.151 110.392C208.118 110.464 208.047 110.491 207.993 110.453C207.938 110.414 207.92 110.324 207.953 110.252Z" fill="#F5FFFE"/>
|
||||
<path d="M205.347 108.383C205.386 108.297 205.47 108.265 205.535 108.311C205.6 108.357 205.621 108.463 205.582 108.548C205.543 108.634 205.459 108.666 205.394 108.62C205.329 108.574 205.308 108.468 205.347 108.383Z" fill="#F5FFFE"/>
|
||||
<path d="M202.907 107.543C202.943 107.464 203.021 107.434 203.081 107.476C203.142 107.519 203.161 107.618 203.125 107.697C203.089 107.776 203.011 107.806 202.95 107.764C202.89 107.721 202.871 107.622 202.907 107.543Z" fill="#F5FFFE"/>
|
||||
<path d="M206.618 115.848C206.654 115.769 206.733 115.739 206.793 115.781C206.854 115.824 206.874 115.923 206.837 116.003C206.801 116.083 206.722 116.113 206.662 116.07C206.601 116.027 206.582 115.928 206.618 115.848Z" fill="#F5FFFE"/>
|
||||
<path d="M209.832 117.018C209.876 116.921 209.971 116.884 210.044 116.936C210.118 116.988 210.141 117.108 210.097 117.205C210.053 117.302 209.958 117.338 209.885 117.286C209.811 117.234 209.788 117.114 209.832 117.018Z" fill="#F5FFFE"/>
|
||||
<path d="M202.708 113.433C202.77 113.297 202.904 113.246 203.007 113.319C203.11 113.391 203.144 113.561 203.082 113.696C203.02 113.832 202.886 113.883 202.783 113.811C202.68 113.738 202.646 113.569 202.708 113.433Z" fill="#F5FFFE"/>
|
||||
<path d="M203.045 111.881C203.068 111.831 203.117 111.812 203.154 111.839C203.192 111.866 203.204 111.928 203.182 111.977C203.159 112.027 203.11 112.046 203.072 112.019C203.034 111.993 203.022 111.931 203.045 111.881Z" fill="#F5FFFE"/>
|
||||
<path d="M205.912 115.02C205.938 114.963 205.995 114.941 206.038 114.972C206.082 115.003 206.096 115.074 206.07 115.131C206.044 115.189 205.987 115.21 205.944 115.18C205.9 115.149 205.886 115.078 205.912 115.02Z" fill="#F5FFFE"/>
|
||||
<path d="M207.01 116.824C207.042 116.754 207.111 116.728 207.164 116.765C207.217 116.803 207.234 116.89 207.202 116.959C207.17 117.029 207.102 117.056 207.049 117.018C206.995 116.981 206.978 116.894 207.01 116.824Z" fill="#F5FFFE"/>
|
||||
<rect x="184.316" y="56.1133" width="19.8909" height="34.406" rx="9.94547" fill="url(#paint18_linear_1679_8939)"/>
|
||||
<path d="M184.327 93.083C184.4 91.9852 185.419 87.7343 185.919 85.7461L190.219 87.4112C189.816 89.314 188.887 93.3319 188.389 94.1809C187.767 95.2421 186.632 95.7178 185.827 95.3884C185.022 95.0591 184.236 94.4553 184.327 93.083Z" fill="#E05346"/>
|
||||
<path d="M203.739 93.083C203.666 91.9852 202.647 87.7343 202.147 85.7461L197.848 87.4112C198.25 89.314 199.18 93.3319 199.677 94.1809C200.3 95.2421 201.434 95.7178 202.239 95.3884C203.044 95.0591 203.831 94.4553 203.739 93.083Z" fill="#E05346"/>
|
||||
<path d="M180.702 72.7815C182.108 73.6837 183.388 74.5369 184.853 75.0385V80.3051C183.47 79.8035 181.63 78.4493 179.481 77.045C176.794 75.2895 177.283 73.7849 177.527 73.2833C177.771 72.7817 178.748 71.5276 180.702 72.7815Z" fill="#F0675F"/>
|
||||
<path d="M207.821 72.7815C206.415 73.6837 205.134 74.5369 203.669 75.0385V80.3051C205.053 79.8035 206.893 78.4493 209.042 77.045C211.728 75.2895 211.24 73.7849 210.996 73.2833C210.751 72.7817 209.775 71.5276 207.821 72.7815Z" fill="#F0675F"/>
|
||||
<path d="M194.53 63.5996C199.091 63.5996 202.527 67.9484 202.527 67.9484C202.527 67.9484 198.999 72.2973 194.53 72.2973C190.061 72.2973 186.533 67.9484 186.533 67.9484C186.533 67.9484 189.97 63.5997 194.53 63.5996Z" fill="white"/>
|
||||
<mask id="mask1_1679_8939" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="186" y="63" width="17" height="10">
|
||||
<path d="M194.53 63.5996C199.091 63.5996 202.527 67.9484 202.527 67.9484C202.527 67.9484 198.999 72.2973 194.53 72.2973C190.061 72.2973 186.533 67.9484 186.533 67.9484C186.533 67.9484 189.97 63.5997 194.53 63.5996Z" fill="white"/>
|
||||
</mask>
|
||||
<g mask="url(#mask1_1679_8939)">
|
||||
<circle cx="194.532" cy="68.0237" r="3.96999" fill="#240521"/>
|
||||
</g>
|
||||
<path d="M195.191 53.501L189.274 46.1682L195.012 44.0678L195.191 53.501Z" fill="#FFDAA4"/>
|
||||
<path d="M194.943 38.189L200.868 45.9812L195.012 44.0683L194.943 38.189Z" fill="#FFA929"/>
|
||||
<path d="M195.191 53.5004L195.012 44.0674L200.868 45.9802L195.191 53.5004Z" fill="#FFBC57"/>
|
||||
<path d="M194.944 38.189L195.012 44.0682L189.274 46.1687L194.944 38.189Z" fill="#FFBC57"/>
|
||||
<path d="M197.817 47.7738C197.868 47.7375 197.877 47.6636 197.838 47.6088C197.799 47.5539 197.726 47.5388 197.675 47.575C197.624 47.6112 197.615 47.6851 197.654 47.74C197.693 47.7949 197.766 47.81 197.817 47.7738Z" fill="#FEFAD1"/>
|
||||
<path d="M196.738 44.1028C196.794 44.0631 196.804 43.9822 196.762 43.9221C196.719 43.862 196.639 43.8455 196.583 43.8852C196.528 43.9249 196.517 44.0058 196.56 44.0659C196.603 44.126 196.683 44.1425 196.738 44.1028Z" fill="#FEFAD1"/>
|
||||
<path d="M195.964 43.6233C196.039 43.5698 196.053 43.4607 195.995 43.3797C195.938 43.2987 195.83 43.2764 195.755 43.3299C195.68 43.3834 195.666 43.4924 195.724 43.5735C195.781 43.6545 195.889 43.6768 195.964 43.6233Z" fill="#FEFAD1"/>
|
||||
<path d="M195.55 41.5429C195.584 41.5187 195.591 41.4695 195.564 41.4329C195.538 41.3963 195.49 41.3862 195.456 41.4104C195.422 41.4345 195.416 41.4838 195.442 41.5204C195.468 41.5569 195.516 41.567 195.55 41.5429Z" fill="#FEFAD1"/>
|
||||
<path d="M195.555 39.2076C195.663 39.1304 195.684 38.9729 195.6 38.8559C195.517 38.7389 195.361 38.7067 195.253 38.7839C195.144 38.8612 195.124 39.0187 195.208 39.1357C195.291 39.2527 195.447 39.2849 195.555 39.2076Z" fill="#FEFAD1"/>
|
||||
<path d="M194.826 38.7543C194.862 38.7284 194.869 38.6756 194.841 38.6364C194.813 38.5972 194.761 38.5864 194.725 38.6123C194.689 38.6382 194.682 38.691 194.71 38.7302C194.738 38.7694 194.79 38.7802 194.826 38.7543Z" fill="#FEFAD1"/>
|
||||
<path d="M194.173 42.6409C194.23 42.6004 194.241 42.5179 194.197 42.4566C194.153 42.3953 194.072 42.3784 194.015 42.4189C193.958 42.4594 193.948 42.5419 193.991 42.6032C194.035 42.6645 194.116 42.6814 194.173 42.6409Z" fill="#FEFAD1"/>
|
||||
<path d="M196.367 46.799C196.382 46.7883 196.384 46.7665 196.373 46.7504C196.361 46.7342 196.34 46.7298 196.325 46.7405C196.31 46.7511 196.307 46.7729 196.319 46.789C196.33 46.8052 196.352 46.8096 196.367 46.799Z" fill="#FEFAD1"/>
|
||||
<path d="M197.304 48.3465C197.364 48.3032 197.376 48.215 197.329 48.1495C197.282 48.0839 197.195 48.0659 197.134 48.1091C197.074 48.1524 197.062 48.2406 197.109 48.3062C197.156 48.3717 197.243 48.3898 197.304 48.3465Z" fill="#FEFAD1"/>
|
||||
<path d="M197.071 46.2097C197.155 46.1497 197.17 46.0274 197.106 45.9365C197.041 45.8456 196.92 45.8206 196.836 45.8806C196.752 45.9406 196.736 46.0629 196.801 46.1538C196.866 46.2447 196.986 46.2697 197.071 46.2097Z" fill="#FEFAD1"/>
|
||||
<path d="M196.054 45.203C196.079 45.185 196.084 45.1482 196.064 45.1208C196.045 45.0935 196.009 45.086 195.983 45.104C195.958 45.1221 195.953 45.1589 195.973 45.1862C195.992 45.2136 196.029 45.2211 196.054 45.203Z" fill="#FEFAD1"/>
|
||||
<path d="M198.941 43.3044C199.029 43.242 199.045 43.1148 198.978 43.0203C198.911 42.9259 198.785 42.8998 198.698 42.9622C198.61 43.0246 198.594 43.1518 198.661 43.2463C198.728 43.3408 198.854 43.3668 198.941 43.3044Z" fill="#FEFAD1"/>
|
||||
<path d="M197.423 41.3309C197.464 41.3017 197.471 41.2422 197.44 41.198C197.408 41.1537 197.349 41.1416 197.309 41.1708C197.268 41.2 197.26 41.2595 197.291 41.3037C197.323 41.3479 197.382 41.3601 197.423 41.3309Z" fill="#FEFAD1"/>
|
||||
<path d="M198.705 43.7006C198.743 43.6731 198.75 43.6171 198.721 43.5755C198.691 43.5338 198.636 43.5224 198.597 43.5499C198.559 43.5773 198.551 43.6333 198.581 43.675C198.611 43.7166 198.666 43.728 198.705 43.7006Z" fill="#FEFAD1"/>
|
||||
<path d="M197.565 42.246C197.602 42.2197 197.609 42.1661 197.58 42.1263C197.552 42.0865 197.499 42.0755 197.462 42.1018C197.425 42.1281 197.419 42.1817 197.447 42.2215C197.475 42.2613 197.528 42.2723 197.565 42.246Z" fill="#FEFAD1"/>
|
||||
<path d="M198.797 45.0662C198.854 45.0256 198.865 44.9428 198.821 44.8813C198.777 44.8198 198.695 44.8028 198.638 44.8434C198.581 44.8841 198.571 44.9669 198.615 45.0284C198.658 45.0899 198.74 45.1068 198.797 45.0662Z" fill="#FEFAD1"/>
|
||||
<defs>
|
||||
<filter id="filter0_f_1679_8939" x="158.939" y="40.1714" width="69.997" height="69.997" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="4.99925" result="effect1_foregroundBlur_1679_8939"/>
|
||||
</filter>
|
||||
<filter id="filter1_f_1679_8939" x="0.00149822" y="33.939" width="261.432" height="119.1" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="4.99925" result="effect1_foregroundBlur_1679_8939"/>
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_1679_8939" x1="191.25" y1="77.9226" x2="174.2" y2="92.1986" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="#CFFF68" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1679_8939" x1="200.386" y1="72.4003" x2="238.608" y2="57.6394" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FCFF68"/>
|
||||
<stop offset="1" stop-color="#FCFF68" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1679_8939" x1="200.909" y1="74.474" x2="259.054" y2="54.3701" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFD568"/>
|
||||
<stop offset="1" stop-color="#FFDE68" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1679_8939" x1="190.517" y1="76.1662" x2="189.26" y2="91.3054" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="#CFFF68" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_1679_8939" x1="200.353" y1="68.1246" x2="210.841" y2="69.3756" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="#CFFF68" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_1679_8939" x1="195.013" y1="73.547" x2="205.111" y2="73.3088" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="#CFFF68" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_1679_8939" x1="195.386" y1="81.0097" x2="232.621" y2="107.682" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FCFF68"/>
|
||||
<stop offset="1" stop-color="#FCFF68" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint7_linear_1679_8939" x1="196.228" y1="66.8994" x2="194.649" y2="10.6547" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FCFF68"/>
|
||||
<stop offset="1" stop-color="#FCFF68" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint8_linear_1679_8939" x1="196.75" y1="77.1189" x2="213.8" y2="91.3949" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="#CFFF68" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint9_linear_1679_8939" x1="187.614" y1="71.8124" x2="149.392" y2="57.0515" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FCFF68"/>
|
||||
<stop offset="1" stop-color="#FCFF68" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint10_linear_1679_8939" x1="187.091" y1="73.8861" x2="128.946" y2="53.7822" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFD568"/>
|
||||
<stop offset="1" stop-color="#FFDE68" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint11_linear_1679_8939" x1="197.484" y1="75.5783" x2="198.741" y2="90.7175" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="#CFFF68" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint12_linear_1679_8939" x1="187.647" y1="67.5367" x2="177.159" y2="68.7877" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="#CFFF68" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint13_linear_1679_8939" x1="192.614" y1="80.4218" x2="155.379" y2="107.094" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FCFF68"/>
|
||||
<stop offset="1" stop-color="#FCFF68" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="paint14_radial_1679_8939" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(193.938 75.1699) rotate(90) scale(25)">
|
||||
<stop stop-color="#FCD266"/>
|
||||
<stop offset="1" stop-color="#FFF621" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="paint15_linear_1679_8939" x1="130.717" y1="43.9375" x2="130.717" y2="143.04" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#5AFFC4"/>
|
||||
<stop offset="1" stop-color="#2BDA9B" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint16_linear_1679_8939" x1="142.48" y1="50.1926" x2="142.48" y2="145.523" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.161458" stop-color="#8CFFEA" stop-opacity="0.72"/>
|
||||
<stop offset="0.541667" stop-color="#9FDCFF" stop-opacity="0.3"/>
|
||||
<stop offset="1" stop-color="#ADFFAB" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint17_linear_1679_8939" x1="139.54" y1="50.7812" x2="139.54" y2="146.111" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#8CFFEA" stop-opacity="0.72"/>
|
||||
<stop offset="0.390625" stop-color="#9FFFC5" stop-opacity="0.3"/>
|
||||
<stop offset="1" stop-color="#ADFFAB" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint18_linear_1679_8939" x1="194.262" y1="56.1133" x2="194.262" y2="90.5192" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF7A77"/>
|
||||
<stop offset="1" stop-color="#DE5043"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 63 KiB |
166
newIDE/app/public/res/questionnaire/with-a-team.svg
Normal file
@@ -0,0 +1,166 @@
|
||||
<svg width="292" height="103" viewBox="0 0 292 103" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="292" height="102.768" fill="#1D1D26"/>
|
||||
<mask id="mask0_1703_1341" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="193" y="16" width="69" height="44">
|
||||
<rect x="193" y="16" width="69" height="44" rx="4" fill="#D9D9D9"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_1703_1341)">
|
||||
<rect x="191.5" y="14.5" width="72" height="47" rx="5.5" fill="#8E14C8" stroke="#5E1183" stroke-width="3"/>
|
||||
<path d="M216.293 54.5931C215.239 56.1772 213.945 57.5878 212.457 58.7737C211.293 59.7073 210.019 60.4931 208.662 61.113C208.628 61.1296 208.593 61.1432 208.556 61.1537C207.802 61.3536 207.011 61.3655 206.252 61.1883C205.494 61.011 204.791 60.6501 204.206 60.1372C202.631 58.9003 201.263 57.4211 200.153 55.7546C198.974 53.971 198.808 53.0239 198.858 52.2494C198.905 51.3897 199.234 50.5684 199.795 49.9132C199.868 49.8505 201.193 48.3661 202.886 48.6544C203.649 48.7885 204.126 49.2204 204.853 49.8958C205.461 50.447 205.996 51.0733 206.446 51.7598C206.495 51.8361 206.56 51.9013 206.636 51.9515C206.711 52.0016 206.797 52.0357 206.886 52.0515C206.976 52.0673 207.068 52.0645 207.156 52.0433C207.245 52.022 207.328 51.9829 207.401 51.9282L211.501 48.8267" fill="url(#paint0_linear_1703_1341)"/>
|
||||
<path d="M212.151 29.5335C213.723 27.0317 215.844 24.9182 218.355 23.3523C222.267 21.0721 225.955 21 227.992 21C230.852 21 235.325 21.5 238.9 25.2101C242.476 28.9202 243.591 34.1385 243.846 35.5533C244.504 47.0881 246.342 65.3672 245.825 67.4105C245.308 69.4537 243.939 73.5058 240.193 76.5277C237.37 78.8045 234.427 79.5222 231.745 80.154C228.993 80.8826 226.132 81.1152 223.297 80.8408C220.43 80.5352 215.761 78.5 213.825 76.5277C211.888 74.5554 211.471 71.5449 211.325 70L209.328 44.3546C209.001 42.3251 208.201 35.7284 212.151 29.5335Z" fill="url(#paint1_linear_1703_1341)"/>
|
||||
<path d="M248.651 70.0604C254.147 67.3445 246.592 54.7764 245.154 53.1645C239.256 50.2992 237.191 54.5663 236.896 57.0579C242.56 63.0878 243.154 72.7763 248.651 70.0604Z" fill="url(#paint2_linear_1703_1341)"/>
|
||||
<path d="M243.29 67.6243C242.867 64.0835 237.839 57.5411 236.518 56.649C239.109 60.2127 240.589 64.2262 241.21 65.761C241.831 67.2958 243.29 67.6243 243.29 67.6243Z" fill="#DB422A"/>
|
||||
<path opacity="0.69" d="M215.897 47.6937C215.993 48.9911 216.132 50.0212 216.206 50.5648C216.689 50.6759 217.102 50.751 217.415 50.799C218.178 50.921 218.954 50.9884 219.733 51.0002C220.076 51.0002 220.431 50.9942 220.8 50.9822C224.219 50.814 226.595 49.6278 228.562 48.6307C230.553 47.6306 232.329 46.3932 233.824 44.9638C232.826 43.1811 231.496 41.5225 229.876 40.0416C227.805 38.1616 224.057 34.7469 219.405 34.6058C219.082 34.581 218.756 34.587 218.435 34.6238C214.958 35.4467 215.657 44.6845 215.897 47.6937Z" fill="#C52600" fill-opacity="0.7"/>
|
||||
<path d="M205.825 42.7142C206.902 45.1198 208.956 47.1879 211.678 48.6065C211.91 48.7236 212.149 48.8378 212.4 48.9489C213.721 49.5411 215.156 49.963 216.65 50.1982C217.767 50.3747 218.909 50.4363 220.047 50.3814C223.466 50.2132 225.842 49.027 227.809 48.0299C229.793 47.0285 231.562 45.7912 233.052 44.363C232.054 42.5803 230.723 40.9217 229.103 39.4408C227.032 37.5608 223.284 34.1461 218.633 34.005C218.309 33.9945 217.985 34.0005 217.663 34.023C214.247 34.2602 211.825 36.2363 209.901 37.807C209.858 37.8431 209.812 37.8791 209.773 37.9151C208.094 39.3161 206.757 40.9421 205.825 42.7142Z" fill="white" stroke="#FFFEF4" stroke-miterlimit="10"/>
|
||||
<path d="M209.263 41.4889C209.263 44.396 210.213 46.9788 211.678 48.6065C211.91 48.7236 212.149 48.8378 212.4 48.9489C213.721 49.5411 215.156 49.963 216.65 50.1982C219.378 49.3303 221.426 45.7595 221.426 41.4889C221.426 38.3536 220.321 35.5937 218.652 34.005C218.328 33.9945 218.004 34.0005 217.682 34.023C214.266 34.2602 211.844 36.2363 209.92 37.807C209.877 37.8431 209.831 37.8791 209.792 37.9151C209.441 39.0869 209.264 40.2859 209.263 41.4889Z" fill="black" stroke="black" stroke-miterlimit="10"/>
|
||||
</g>
|
||||
<mask id="mask1_1703_1341" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="29" y="16" width="69" height="44">
|
||||
<rect x="29" y="16" width="69" height="44" rx="4" fill="#D9D9D9"/>
|
||||
</mask>
|
||||
<g mask="url(#mask1_1703_1341)">
|
||||
<rect x="29" y="16" width="69" height="44" rx="4" fill="#114FAD"/>
|
||||
<path d="M93.4937 64.3707C93.4937 67.2245 91.6971 69.5379 88.8433 69.5379C85.9895 69.5379 85.1377 68.3272 83.6762 65.4042C83.1595 64.3707 81.6094 60.237 81.6094 60.237C81.6094 60.237 83.5877 57.2155 84.7097 54.5531C86.0488 51.3755 87.81 44.2188 87.81 44.2188C89.3601 47.3191 93.4937 61.517 93.4937 64.3707Z" fill="#16CF89"/>
|
||||
<path d="M93.4937 64.3707C93.4937 67.2245 91.6971 69.5379 88.8433 69.5379C85.9895 69.5379 85.1377 68.3272 83.6762 65.4042C83.1595 64.3707 81.6094 60.237 81.6094 60.237C81.6094 60.237 83.5877 57.2155 84.7097 54.5531C86.0488 51.3755 87.81 44.2188 87.81 44.2188C89.3601 47.3191 93.4937 61.517 93.4937 64.3707Z" fill="url(#paint3_linear_1703_1341)"/>
|
||||
<path d="M88.8453 46.8023C88.8453 46.8023 88.8434 57.1367 82.804 63.3373C82.221 61.8681 81.6094 60.237 81.6094 60.237C81.6094 60.237 83.5877 57.2155 84.7097 54.5531C86.0488 51.3755 87.81 44.2188 87.81 44.2188C88.0859 44.7706 88.4436 45.6739 88.8453 46.8023Z" fill="#278050"/>
|
||||
<path d="M48.0228 57.6523C48.0228 57.6523 50.9182 59.9019 53.19 61.2694C55.7913 62.8352 60.9407 63.3362 60.9407 63.3362C60.9407 63.3362 61.185 69.4761 60.9407 71.8317C60.6964 74.1873 60.424 76.7709 60.424 76.7709C60.424 76.7709 61.7755 78.7435 62.4909 79.8712C63.4901 81.4464 64.041 84.0049 64.041 84.0049H46.4727C46.4727 84.0049 46.4843 80.9716 46.9894 79.1312C47.2898 78.0367 48.0228 76.4235 48.0228 76.4235C48.5395 73.1743 49.0562 71.6621 49.0562 69.0201C49.0562 66.4141 48.5395 60.7526 48.0228 57.6523Z" fill="url(#paint4_linear_1703_1341)"/>
|
||||
<path d="M48.0234 58.1699C48.0234 58.1699 51.9523 63.5198 54.224 64.8872C56.8254 66.453 60.9414 63.3371 60.9414 63.3371C60.9414 63.3371 61.0685 66.5315 61.0476 69.1961C61.0438 69.6913 61.0436 70.1478 61.0327 70.5711C61.0327 70.5711 54.7408 69.5377 48.7014 63.4506C48.6847 63.2841 48.6676 63.1174 48.6502 62.9509C48.4688 61.2221 48.2461 59.5061 48.0234 58.1699Z" fill="#278050"/>
|
||||
<path d="M69.209 64.3713C69.209 64.3713 73.8594 63.6171 75.9263 62.3044C77.9932 60.9917 80.06 59.2041 80.06 59.2041C80.06 59.2041 82.426 64.3977 83.1604 69.5384C83.6771 73.1555 83.1604 76.7725 83.1604 76.7725C83.1604 76.7725 84.5119 78.7451 85.2272 79.8728C86.2265 81.448 86.7774 84.0065 86.7774 84.0065H69.209C69.209 84.0065 69.2206 80.9732 69.7257 79.1328C70.0261 78.0383 70.7591 76.4251 70.7591 76.4251C71.7926 73.6722 70.7591 69.5384 70.7591 69.5384C70.7591 69.5384 69.7257 65.4047 69.209 64.3713Z" fill="url(#paint5_linear_1703_1341)"/>
|
||||
<path d="M69.209 64.3713C69.209 64.3713 73.8594 63.6171 75.9263 62.3044C77.9932 60.9917 80.06 59.2041 80.06 59.2041C80.06 59.2041 80.7971 60.8221 81.5762 63.1459C81.5762 63.1459 81.6102 63.8546 78.5099 66.4381C75.4096 69.0217 70.9657 70.5719 70.9657 70.5719C70.8591 69.9382 70.7591 69.5384 70.7591 69.5384C70.7591 69.5384 69.7257 65.4047 69.209 64.3713Z" fill="#278050"/>
|
||||
<circle cx="65.0756" cy="45.769" r="23.769" fill="url(#paint6_linear_1703_1341)"/>
|
||||
<rect x="64.041" y="44.2715" width="14.9922" height="15.4697" rx="2" transform="rotate(-46.6569 64.041 44.2715)" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M66.5645 41.5981L69.6138 38.3671C69.9558 38.2984 70.3154 38.2617 70.6864 38.2617C72.9694 38.2617 74.8201 39.6498 74.8201 41.362C74.8201 43.0743 72.9694 44.4623 70.6864 44.4623C68.5093 44.4623 66.7253 43.2001 66.5645 41.5981Z" fill="white"/>
|
||||
<circle cx="65.0756" cy="45.769" r="23.769" fill="url(#paint7_linear_1703_1341)"/>
|
||||
<rect x="66.1074" y="44.2715" width="14.9922" height="15.4697" rx="2" transform="rotate(-46.6569 66.1074 44.2715)" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M68.6318 41.5981L71.6811 38.3671C72.0232 38.2984 72.3828 38.2617 72.7538 38.2617C75.0368 38.2617 76.8875 39.6498 76.8875 41.362C76.8875 43.0743 75.0368 44.4623 72.7538 44.4623C70.5767 44.4623 68.7926 43.2001 68.6318 41.5981Z" fill="white"/>
|
||||
<path d="M48.0229 62.303C48.4363 62.303 50.4343 51.9687 51.1232 47.835C51.1232 47.835 47.1617 56.7914 45.9561 60.2362L48.0229 62.303Z" fill="#007156"/>
|
||||
<path d="M45.4398 67.4712C43.9784 70.3942 40.7893 71.0882 39.2392 70.5715C37.689 70.0548 35.6221 69.0214 35.1054 65.9211C34.5887 62.8208 36.0545 58.0983 37.689 51.9697C40.2726 44.7356 40.7894 42.1521 42.3395 39.0518L51.6404 45.7691C50.607 49.3861 46.4732 65.4043 45.4398 67.4712Z" fill="url(#paint8_linear_1703_1341)"/>
|
||||
</g>
|
||||
<rect x="123" y="70.8516" width="45.7109" height="24.1507" rx="12.0754" fill="#2A74E3"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M136.629 79.0862C135.845 79.0862 135.209 79.7219 135.209 80.506V82.2097C135.209 82.9938 135.845 83.6294 136.629 83.6294C137.413 83.6294 138.048 82.9938 138.048 82.2097V80.506C138.048 79.7219 137.413 79.0862 136.629 79.0862ZM134.357 80.506C134.357 79.2514 135.374 78.2344 136.629 78.2344C137.883 78.2344 138.9 79.2514 138.9 80.506V82.2097C138.9 83.4642 137.883 84.4813 136.629 84.4813C135.374 84.4813 134.357 83.4642 134.357 82.2097V80.506Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M133.504 83.1775C133.49 82.9438 133.29 82.7652 133.056 82.7782C132.821 82.7913 132.641 82.9923 132.654 83.2271L133.079 83.2035C132.654 83.2271 132.654 83.2274 132.654 83.2277L132.654 83.2284L132.654 83.2298L132.654 83.2335L132.655 83.2436C132.656 83.2515 132.657 83.2619 132.658 83.2746C132.66 83.2999 132.664 83.3344 132.671 83.3768C132.684 83.4615 132.706 83.5784 132.744 83.7168C132.821 83.9928 132.964 84.3612 133.231 84.7307C133.78 85.4905 134.801 86.185 136.629 86.185C138.456 86.185 139.478 85.4905 140.026 84.7307C140.293 84.3612 140.436 83.9928 140.513 83.7168C140.551 83.5784 140.574 83.4615 140.586 83.3768C140.593 83.3344 140.597 83.2999 140.599 83.2746C140.601 83.2619 140.602 83.2515 140.602 83.2436L140.603 83.2335L140.603 83.2298L140.603 83.2284L140.603 83.2277C140.603 83.2274 140.603 83.2271 140.178 83.2035L140.603 83.2271C140.616 82.9923 140.437 82.7913 140.202 82.7782C139.968 82.7652 139.767 82.9438 139.753 83.1775C139.753 83.1775 139.753 83.1774 139.753 83.1775M139.753 83.1775C139.753 83.1776 139.753 83.1778 139.753 83.1781C139.753 83.1798 139.752 83.1838 139.752 83.1898C139.751 83.2019 139.748 83.2223 139.744 83.2498C139.736 83.3049 139.72 83.3877 139.692 83.4888C139.636 83.692 139.53 83.9625 139.336 84.2319C138.962 84.7499 138.209 85.3331 136.629 85.3331C135.049 85.3331 134.296 84.7499 133.921 84.2319C133.727 83.9625 133.622 83.692 133.565 83.4888C133.537 83.3877 133.521 83.3049 133.513 83.2498C133.509 83.2223 133.507 83.2019 133.505 83.1898C133.505 83.1838 133.505 83.1798 133.504 83.1781C133.504 83.1778 133.504 83.1776 133.504 83.1775C133.504 83.1775 133.504 83.1775 133.504 83.1775" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M136.629 85.6171C136.864 85.6171 137.055 85.8078 137.055 86.043V86.8949C137.055 87.1301 136.864 87.3208 136.629 87.3208C136.393 87.3208 136.203 87.1301 136.203 86.8949V86.043C136.203 85.8078 136.393 85.6171 136.629 85.6171Z" fill="white"/>
|
||||
<path d="M157.836 83.956C157.974 84.0997 158.074 84.2058 158.136 84.2746C158.205 84.337 158.252 84.3839 158.277 84.4151C158.308 84.4464 158.33 84.4651 158.342 84.4713C158.355 84.4776 158.377 84.4963 158.408 84.5276C158.439 84.5588 158.489 84.6088 158.558 84.6775C158.627 84.74 158.73 84.843 158.867 84.9867C158.98 85.0992 159.07 85.2303 159.139 85.3803C159.214 85.5239 159.208 85.6801 159.12 85.8488C159.07 85.9362 159.014 85.9987 158.951 86.0362C158.889 86.0674 158.82 86.0799 158.745 86.0737C158.677 86.0674 158.602 86.0456 158.52 86.0081C158.445 85.9706 158.37 85.9237 158.296 85.8675C158.152 85.7613 158.014 85.6395 157.883 85.5021C157.752 85.3584 157.646 85.2491 157.565 85.1741C157.508 85.1179 157.474 85.0804 157.462 85.0617C157.449 85.0492 157.437 85.0398 157.424 85.0336C157.412 85.0211 157.399 85.0086 157.387 84.9961C157.343 84.9524 157.296 84.9086 157.246 84.8649C157.196 84.8212 157.146 84.7743 157.096 84.7243V85.0898C157.096 85.1585 157.099 85.2085 157.105 85.2397C157.105 85.3022 157.102 85.349 157.096 85.3803C157.077 85.449 157.068 85.5146 157.068 85.577C157.062 85.6083 157.056 85.6395 157.049 85.6707C157.043 85.6957 157.034 85.7238 157.021 85.7551C157.015 85.7676 157.009 85.7769 157.002 85.7832C157.002 85.7894 157.002 85.7988 157.002 85.8113C156.996 85.8238 156.99 85.8332 156.984 85.8394C156.984 85.8457 156.981 85.855 156.974 85.8675C156.943 85.93 156.893 85.9893 156.824 86.0456C156.706 86.1143 156.559 86.133 156.384 86.1018C156.29 86.083 156.218 86.0487 156.168 85.9987C156.112 85.9612 156.075 85.9081 156.056 85.8394C156.044 85.8082 156.031 85.7769 156.019 85.7457C156.012 85.7082 156.003 85.6739 155.99 85.6426C155.978 85.6114 155.972 85.5833 155.972 85.5583C155.972 85.5271 155.972 85.5021 155.972 85.4833V80.1516C155.972 80.1141 155.972 80.0766 155.972 80.0392C155.972 80.0017 155.975 79.9642 155.981 79.9267C155.987 79.8892 155.994 79.8549 156 79.8236C156.012 79.7862 156.025 79.7518 156.037 79.7206C156.062 79.6581 156.093 79.6081 156.131 79.5706C156.162 79.5394 156.193 79.5175 156.225 79.505C156.262 79.4863 156.297 79.4707 156.328 79.4582C156.359 79.4519 156.393 79.4488 156.431 79.4488C156.475 79.4426 156.515 79.4395 156.553 79.4395C156.64 79.4395 156.728 79.4644 156.815 79.5144C156.896 79.5706 156.956 79.6425 156.993 79.7299C157.043 79.8486 157.068 79.9642 157.068 80.0766C157.074 80.1391 157.081 80.2359 157.087 80.3671C157.093 80.4921 157.096 80.5858 157.096 80.6482V80.6857C157.102 80.8919 157.105 81.0886 157.105 81.276C157.105 81.4635 157.105 81.6665 157.105 81.8851C157.099 82.1038 157.096 82.313 157.096 82.5129C157.096 82.7066 157.096 82.9002 157.096 83.0939V83.197C157.146 83.147 157.196 83.1001 157.246 83.0564C157.296 83.0127 157.343 82.9658 157.387 82.9159C157.412 82.8971 157.437 82.8753 157.462 82.8503L157.565 82.7472C157.646 82.666 157.752 82.5567 157.883 82.4192C158.014 82.2756 158.152 82.1506 158.296 82.0444C158.452 81.932 158.602 81.8633 158.745 81.8383C158.895 81.8133 159.02 81.8882 159.12 82.0632C159.208 82.2318 159.214 82.3911 159.139 82.541C159.07 82.6847 158.98 82.819 158.867 82.944C158.73 83.0877 158.627 83.1938 158.558 83.2626C158.489 83.325 158.439 83.3719 158.408 83.4031C158.377 83.4281 158.355 83.4437 158.342 83.45C158.33 83.4562 158.308 83.475 158.277 83.5062C158.252 83.5312 158.205 83.578 158.136 83.6467C158.074 83.7092 157.974 83.8123 157.836 83.956Z" fill="white"/>
|
||||
<path d="M154.994 85.3614C154.988 85.3926 154.982 85.4238 154.976 85.4551C154.976 85.4801 154.976 85.5082 154.976 85.5394L154.919 85.7362C154.907 85.7612 154.897 85.7768 154.891 85.783L154.863 85.8393C154.832 85.908 154.776 85.9642 154.694 86.0079C154.545 86.0829 154.385 86.1016 154.217 86.0641C154.11 86.0516 154.026 86.0204 153.964 85.9704C153.901 85.9267 153.857 85.8736 153.832 85.8111C153.807 85.7487 153.789 85.6862 153.776 85.6237C153.757 85.5613 153.748 85.505 153.748 85.4551V80.2077C153.748 80.1639 153.748 80.1265 153.748 80.0952C153.754 80.0577 153.761 80.0234 153.767 79.9921C153.773 79.9484 153.779 79.9109 153.786 79.8797C153.798 79.8485 153.811 79.8141 153.823 79.7766C153.842 79.7142 153.876 79.6642 153.926 79.6267C154.001 79.5705 154.073 79.5392 154.142 79.533C154.185 79.5205 154.226 79.5143 154.263 79.5143C154.301 79.508 154.345 79.5049 154.395 79.5049C154.482 79.5049 154.582 79.5299 154.694 79.5798C154.782 79.6298 154.844 79.6985 154.882 79.786C154.944 79.9109 154.976 80.0265 154.976 80.1327C154.982 80.1952 154.985 80.2889 154.985 80.4138C154.991 80.5387 154.994 80.6325 154.994 80.6949V80.7324C155.007 80.9323 155.013 81.126 155.013 81.3134C155.013 81.4945 155.01 81.6944 155.004 81.9131C155.004 82.1255 155.001 82.3316 154.994 82.5315C154.994 82.7252 154.994 82.9188 154.994 83.1125V85.0803C154.994 85.1052 154.994 85.1302 154.994 85.1552C155.001 85.174 155.004 85.1958 155.004 85.2208C155.004 85.2833 155.001 85.3301 154.994 85.3614Z" fill="white"/>
|
||||
<path d="M149.455 82.1663C149.642 82.0725 149.839 82.007 150.045 81.9695C150.251 81.9257 150.454 81.9164 150.654 81.9414C150.86 81.9601 151.057 82.0132 151.244 82.1007C151.432 82.1819 151.607 82.3006 151.769 82.4567C151.931 82.6192 152.056 82.7972 152.144 82.9908C152.231 83.1845 152.294 83.4 152.331 83.6374C152.356 83.7998 152.397 83.9497 152.453 84.0872C152.509 84.2246 152.569 84.362 152.631 84.4995C152.7 84.6369 152.762 84.7743 152.818 84.9118C152.881 85.0492 152.931 85.1929 152.968 85.3428C153 85.4865 152.987 85.627 152.931 85.7645C152.881 85.8957 152.775 85.9769 152.612 86.0081C152.519 86.0268 152.428 86.0206 152.341 85.9894C152.259 85.9519 152.184 85.9019 152.116 85.8394C152.047 85.7707 151.985 85.6989 151.928 85.6239C151.878 85.5427 151.831 85.4677 151.788 85.399C151.644 85.5864 151.488 85.7332 151.319 85.8394C151.151 85.9394 150.948 86.005 150.71 86.0362C150.51 86.0612 150.32 86.0675 150.139 86.055C149.957 86.0425 149.764 86.0081 149.558 85.9519C149.289 85.8832 149.067 85.7645 148.892 85.5958C148.724 85.4209 148.592 85.221 148.499 84.9961C148.411 84.765 148.364 84.5182 148.358 84.2558C148.352 83.9935 148.383 83.7342 148.452 83.4781C148.539 83.1408 148.671 82.8659 148.845 82.6535C149.02 82.4411 149.223 82.2787 149.455 82.1663ZM149.689 83.2626C149.601 83.35 149.533 83.4531 149.483 83.5718C149.433 83.6905 149.401 83.8154 149.389 83.9466C149.383 84.0778 149.395 84.209 149.426 84.3402C149.458 84.4714 149.508 84.5869 149.576 84.6869C149.639 84.7743 149.745 84.8493 149.895 84.9118C150.045 84.968 150.201 85.0024 150.363 85.0148C150.551 85.0273 150.713 84.9774 150.851 84.8649C150.994 84.7525 151.101 84.6119 151.169 84.4433C151.244 84.2683 151.279 84.0841 151.272 83.8904C151.266 83.6905 151.213 83.5093 151.113 83.3469C151.038 83.2282 150.938 83.1408 150.813 83.0845C150.695 83.0283 150.566 83.0002 150.429 83.0002C150.292 82.994 150.154 83.0158 150.017 83.0658C149.886 83.1095 149.776 83.1751 149.689 83.2626Z" fill="white"/>
|
||||
<path d="M148.617 79.7678C148.685 79.849 148.72 79.9334 148.72 80.0208C148.72 80.0583 148.717 80.0989 148.71 80.1426C148.71 80.1801 148.707 80.2145 148.701 80.2457C148.682 80.3144 148.642 80.38 148.579 80.4425C148.529 80.48 148.461 80.5081 148.373 80.5268C148.329 80.5393 148.286 80.5487 148.242 80.5549C148.198 80.5612 148.151 80.5706 148.101 80.583C148.058 80.5893 148.014 80.5924 147.97 80.5924C147.926 80.5924 147.88 80.5924 147.83 80.5924H147.352C147.239 80.5987 147.127 80.6018 147.014 80.6018C146.908 80.6018 146.802 80.6018 146.696 80.6018C146.702 80.7954 146.705 81.0047 146.705 81.2296C146.705 81.4482 146.702 81.7044 146.696 81.998C146.696 82.2916 146.693 82.632 146.686 83.0193C146.686 83.4067 146.686 83.8564 146.686 84.3687V85.0808C146.686 85.1433 146.69 85.1901 146.696 85.2214C146.696 85.2464 146.696 85.2714 146.696 85.2963C146.696 85.3151 146.693 85.3401 146.686 85.3713C146.674 85.4275 146.665 85.4931 146.658 85.5681C146.658 85.5993 146.655 85.6306 146.649 85.6618C146.643 85.6868 146.633 85.7149 146.621 85.7461C146.596 85.7711 146.583 85.7898 146.583 85.8023L146.555 85.8586C146.524 85.921 146.465 85.9804 146.377 86.0366C146.24 86.1053 146.087 86.1209 145.918 86.0835C145.812 86.071 145.731 86.0428 145.674 85.9991C145.618 85.9429 145.578 85.8867 145.553 85.8305C145.515 85.7617 145.493 85.6961 145.487 85.6337C145.468 85.5775 145.459 85.5181 145.459 85.4556V80.6393C145.421 80.6393 145.343 80.6393 145.225 80.6393C145.106 80.6393 144.978 80.6393 144.841 80.6393C144.709 80.633 144.584 80.6268 144.466 80.6205C144.347 80.6143 144.266 80.608 144.222 80.6018C144.185 80.5955 144.125 80.5862 144.044 80.5737C143.969 80.5612 143.907 80.5487 143.857 80.5362C143.725 80.4987 143.622 80.4394 143.547 80.3582C143.479 80.2769 143.444 80.1864 143.444 80.0864C143.444 80.0489 143.444 80.0115 143.444 79.974C143.444 79.9365 143.451 79.9021 143.463 79.8709C143.482 79.7959 143.532 79.7335 143.613 79.6835C143.638 79.6647 143.675 79.6429 143.725 79.6179C143.782 79.5867 143.835 79.5648 143.885 79.5523C143.96 79.5273 144.053 79.5086 144.166 79.4961C144.216 79.4898 144.266 79.4867 144.316 79.4867C144.366 79.4867 144.419 79.4867 144.475 79.4867C144.694 79.4867 144.9 79.4867 145.094 79.4867C145.293 79.4867 145.503 79.4836 145.721 79.4773C146.084 79.4711 146.443 79.4711 146.799 79.4773C147.161 79.4773 147.52 79.4836 147.877 79.4961C147.958 79.5023 148.036 79.5117 148.111 79.5242C148.186 79.5367 148.261 79.5586 148.336 79.5898C148.392 79.6085 148.445 79.6335 148.495 79.6647C148.545 79.6897 148.586 79.7241 148.617 79.7678Z" fill="white"/>
|
||||
<rect x="111" y="16" width="69" height="44" rx="4" fill="#FFB906"/>
|
||||
<mask id="mask2_1703_1341" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="111" y="16" width="69" height="44">
|
||||
<rect x="111" y="16" width="69" height="44" rx="4" fill="#D9D9D9"/>
|
||||
</mask>
|
||||
<g mask="url(#mask2_1703_1341)">
|
||||
<path d="M115.214 35.6297C113.443 36.7686 108.118 38.3056 100.986 35.3426" stroke="#CF0A80" stroke-width="0.893308" stroke-linecap="round"/>
|
||||
<path d="M119.002 41.3864C117.31 42.4508 114.332 46.5621 114.846 49.9447C115.256 52.6508 118.619 53.4888 120.249 53.5696L118.832 58.5981" stroke="#CF0A80" stroke-width="0.893308" stroke-linecap="round"/>
|
||||
<path d="M115.91 22.7819C109.25 26.0273 112.325 35.0501 113.414 36.4245C109.383 39.9134 112.784 43.2402 114.671 43.6964C115.945 44.0042 118.581 44.1403 122.753 42.4433C126.925 40.7464 130.836 38.1667 131.716 37.2043C132.595 36.2418 133.962 35.2604 132.989 32.2746C132.211 29.886 129.727 29.5917 128.697 29.6434C126.597 25.8204 122.569 19.5365 115.91 22.7819Z" fill="url(#paint9_linear_1703_1341)"/>
|
||||
<ellipse cx="116.185" cy="35.1406" rx="0.9901" ry="1.06626" transform="rotate(-16.9906 116.185 35.1406)" fill="#3B314F"/>
|
||||
<ellipse cx="122.549" cy="32.2499" rx="0.9901" ry="1.06626" transform="rotate(-16.9906 122.549 32.2499)" fill="#3B314F"/>
|
||||
<path d="M128.343 38.0967C126.018 38.0873 122.88 39.0975 121.717 41.6923C120.787 43.7682 123.597 46.894 125.119 48.1975L121.291 50.7516" stroke="#CF0A80" stroke-width="0.893308" stroke-linecap="round"/>
|
||||
<path d="M127.76 31.4686C129.862 32.0776 134.347 35.2579 135.47 43.1074" stroke="#CF0A80" stroke-width="0.893308" stroke-linecap="round"/>
|
||||
<path d="M155.106 27.891C157.203 28.0734 162.631 26.9519 167.561 21.0063" stroke="#CF0A80" stroke-width="0.893308" stroke-linecap="round"/>
|
||||
<path d="M154.438 34.7491C156.431 34.9024 160.981 37.1525 162.103 40.3845C163.001 42.9702 160.417 45.2786 159.012 46.1096L162.609 49.8986" stroke="#CF0A80" stroke-width="0.893308" stroke-linecap="round"/>
|
||||
<path d="M148.504 16.8474C155.909 16.6156 157.393 26.0318 157.07 27.7552C162.262 28.9636 160.803 33.492 159.346 34.7752C158.362 35.6411 156.094 36.9898 151.612 37.4325C147.13 37.8752 142.466 37.4156 141.24 36.9738C140.013 36.532 138.347 36.3005 137.816 33.2055C137.391 30.7295 139.452 29.3115 140.387 28.8775C140.464 24.5163 141.1 17.0792 148.504 16.8474Z" fill="url(#paint10_linear_1703_1341)"/>
|
||||
<ellipse cx="0.9901" cy="1.06626" rx="0.9901" ry="1.06626" transform="matrix(-0.982338 0.187117 0.187117 0.982338 154.792 26.6777)" fill="#3B314F"/>
|
||||
<ellipse cx="0.9901" cy="1.06626" rx="0.9901" ry="1.06626" transform="matrix(-0.982338 0.187117 0.187117 0.982338 147.815 27.0859)" fill="#3B314F"/>
|
||||
<path d="M144.64 36.1913C146.692 35.0995 149.939 34.5312 152.177 36.285C153.968 37.6882 152.938 41.7635 152.199 43.6258L156.776 44.1021" stroke="#CF0A80" stroke-width="0.893308" stroke-linecap="round"/>
|
||||
<path d="M142.068 30.0551C140.491 31.5736 138.005 36.4777 140.669 43.946" stroke="#CF0A80" stroke-width="0.893308" stroke-linecap="round"/>
|
||||
<path d="M142.036 41.9736C141.331 43.9315 138.042 49.3352 139.452 58.9678L143.759 60.6124" stroke="#CF0A80" stroke-width="0.918557" stroke-linecap="round"/>
|
||||
<path d="M133.97 44.0098C133.343 45.3411 130.759 50.8231 130.211 59.5943L125.903 60.6907" stroke="#CF0A80" stroke-width="0.918557" stroke-linecap="round"/>
|
||||
<path d="M145.795 38.4492C146.16 40.381 146.672 45.7324 145.795 51.6843" stroke="#CF0A80" stroke-width="0.918557" stroke-linecap="round"/>
|
||||
<path d="M132.482 24.2748C139.843 22.3169 143.524 31.4014 143.602 33.2026C149.084 33.2026 148.679 38.0779 147.518 39.7027C146.735 40.7991 144.777 42.6786 140.392 44.1666C136.006 45.6546 131.229 46.2811 129.897 46.1245C128.566 45.9678 126.843 46.1245 125.59 43.1485C124.588 40.7678 126.321 38.8673 127.156 38.2147C126.217 33.8291 125.12 26.2326 132.482 24.2748Z" fill="url(#paint11_linear_1703_1341)"/>
|
||||
<ellipse cx="1.01809" cy="1.0964" rx="1.01809" ry="1.0964" transform="matrix(-0.914359 0.404904 0.404904 0.914359 141.069 32.6543)" fill="#3B314F"/>
|
||||
<ellipse cx="1.01809" cy="1.0964" rx="1.01809" ry="1.0964" transform="matrix(-0.914359 0.404904 0.404904 0.914359 134.178 34.6895)" fill="#3B314F"/>
|
||||
<path d="M127.313 39.4678C126.269 42.1044 124.385 48.6462 125.199 53.721" stroke="#CF0A80" stroke-width="0.918557" stroke-linecap="round"/>
|
||||
<path d="M161.203 37.9736C161.908 39.9315 165.197 45.3352 163.788 54.9678L159.48 56.6124" stroke="#CF0A80" stroke-width="0.918557" stroke-linecap="round"/>
|
||||
<path d="M169.27 40.0098C169.896 41.3411 172.48 46.8231 173.029 55.5943L177.336 56.6907" stroke="#CF0A80" stroke-width="0.918557" stroke-linecap="round"/>
|
||||
<path d="M157.444 34.4492C157.079 36.381 156.567 41.7324 157.444 47.6843" stroke="#CF0A80" stroke-width="0.918557" stroke-linecap="round"/>
|
||||
<path d="M170.757 20.2748C163.396 18.3169 159.715 27.4014 159.637 29.2026C154.155 29.2026 154.561 34.0779 155.721 35.7027C156.504 36.7991 158.462 38.6786 162.848 40.1666C167.233 41.6546 172.01 42.2811 173.342 42.1245C174.673 41.9678 176.396 42.1245 177.649 39.1485C178.652 36.7678 176.918 34.8673 176.083 34.2147C177.023 29.8291 178.119 22.2326 170.757 20.2748Z" fill="url(#paint12_linear_1703_1341)"/>
|
||||
<ellipse cx="162.657" cy="30.069" rx="1.01809" ry="1.0964" transform="rotate(23.8851 162.657 30.069)" fill="#3B314F"/>
|
||||
<ellipse cx="169.548" cy="32.1042" rx="1.01809" ry="1.0964" transform="rotate(23.8851 169.548 32.1042)" fill="#3B314F"/>
|
||||
<path d="M175.926 35.4678C176.97 38.1044 178.855 44.6462 178.04 49.721" stroke="#CF0A80" stroke-width="0.918557" stroke-linecap="round"/>
|
||||
<path d="M122.147 59.9385C122.061 62.4313 121.471 68.5014 119.805 72.8398L123.979 73.5976" stroke="#CF0A80" stroke-width="0.904674" stroke-linecap="round"/>
|
||||
<path d="M128.611 60.1699C129.226 62.6855 130.38 68.5653 130.077 71.9595L135.086 72.8689" stroke="#CF0A80" stroke-width="0.904674" stroke-linecap="round"/>
|
||||
<path d="M133.439 66.6397C134.4 64.126 135.189 57.9299 130.653 53.2544" stroke="#CF0A80" stroke-width="0.904674" stroke-linecap="round"/>
|
||||
<path d="M125.585 39.7096C133.07 39.5007 134.245 50.2969 133.694 53.3325C134.681 53.5116 136.344 55.1462 136.386 56.6432C136.428 58.1402 135.228 59.9978 133.186 60.4522C132.242 60.6621 128.584 61.1847 125.666 61.282C122.748 61.3794 119.195 60.6559 117.222 60.2977C115.249 59.9395 113.434 58.2774 113.771 55.9869C114.041 54.1545 115.925 53.19 116.834 52.9368C116.542 46.7694 118.1 39.9185 125.585 39.7096Z" fill="url(#paint13_linear_1703_1341)"/>
|
||||
<ellipse cx="130.846" cy="51.5824" rx="1.0027" ry="1.07983" transform="rotate(-7.19645 130.846 51.5824)" fill="#3B314F"/>
|
||||
<ellipse cx="125.285" cy="51.9838" rx="1.0027" ry="1.07983" transform="rotate(-7.19645 125.285 51.9838)" fill="#3B314F"/>
|
||||
<path d="M118.021 52.4473C118.295 56.2599 118.129 64.6332 115.265 67.6253" stroke="#CF0A80" stroke-width="0.904674" stroke-linecap="round"/>
|
||||
<path d="M148.079 42.4473C148.354 46.2599 148.187 54.6332 145.324 57.6253" stroke="#CF0A80" stroke-width="0.904674" stroke-linecap="round"/>
|
||||
<path d="M154.038 49.9385C154.125 52.4313 154.715 58.5014 156.38 62.8398L152.206 63.5976" stroke="#CF0A80" stroke-width="0.904674" stroke-linecap="round"/>
|
||||
<path d="M158.67 50.1699C159.285 52.6855 160.438 58.5653 160.136 61.9595L165.144 62.8689" stroke="#CF0A80" stroke-width="0.904674" stroke-linecap="round"/>
|
||||
<path d="M155.643 29.7096C163.128 29.5007 164.304 40.2969 163.753 43.3325C164.74 43.5116 166.403 45.1462 166.444 46.6432C166.486 48.1402 165.287 49.9978 163.244 50.4522C162.301 50.6621 158.643 51.1847 155.725 51.282C152.807 51.3794 149.254 50.6559 147.28 50.2977C145.307 49.9395 143.493 48.2774 143.83 45.9869C144.1 44.1545 145.984 43.19 146.892 42.9368C146.601 36.7694 148.158 29.9185 155.643 29.7096Z" fill="url(#paint14_linear_1703_1341)"/>
|
||||
<ellipse cx="157.904" cy="41.5824" rx="1.0027" ry="1.07983" transform="rotate(-7.19645 157.904 41.5824)" fill="#3B314F"/>
|
||||
<ellipse cx="152.344" cy="41.9838" rx="1.0027" ry="1.07983" transform="rotate(-7.19645 152.344 41.9838)" fill="#3B314F"/>
|
||||
<path d="M164.931 58.4316C165.025 61.2659 165.908 68.0164 168.68 72.3446" stroke="#CF0A80" stroke-width="0.918557" stroke-linecap="round"/>
|
||||
<path d="M177.602 56.0123C180.403 57.1145 184.366 66.2214 185.087 70.7746L189.693 70.5638" stroke="#CF0A80" stroke-width="0.918557" stroke-linecap="round"/>
|
||||
<path d="M172.314 59.8613C172.271 61.3321 173.867 66.7749 176.865 75.0362L173.353 77.7604" stroke="#CF0A80" stroke-width="0.918557" stroke-linecap="round"/>
|
||||
<path d="M179.143 48.2273C179.34 46.2713 179.388 40.8956 178 35.0416" stroke="#CF0A80" stroke-width="0.918557" stroke-linecap="round"/>
|
||||
<path d="M167.103 39.9806C174.048 36.8492 179.16 45.2124 179.53 46.9768C184.939 46.0835 185.333 50.9597 184.453 52.7519C183.859 53.9613 182.234 56.1347 178.149 58.3175C174.065 60.5003 169.453 61.8969 168.114 61.9593C166.775 62.0218 165.101 62.4571 163.38 59.7251C162.003 57.5395 163.403 55.382 164.121 54.602C162.479 50.4282 160.159 43.1119 167.103 39.9806Z" fill="url(#paint15_linear_1703_1341)"/>
|
||||
<ellipse cx="1.01809" cy="1.0964" rx="1.01809" ry="1.0964" transform="matrix(-0.676828 0.736141 0.736141 0.676828 175.996 45.8789)" fill="#3B314F"/>
|
||||
<ellipse cx="1.01809" cy="1.0964" rx="1.01809" ry="1.0964" transform="matrix(-0.676828 0.736141 0.736141 0.676828 168.19 49.2754)" fill="#3B314F"/>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_1703_1341" x1="205.239" y1="62.4146" x2="212.83" y2="45.2123" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.0666008" stop-color="#FF7171"/>
|
||||
<stop offset="1" stop-color="#EA5548"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1703_1341" x1="227.43" y1="21" x2="227.43" y2="80.9524" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF7171"/>
|
||||
<stop offset="1" stop-color="#E85345"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1703_1341" x1="250.48" y1="68.5112" x2="239.758" y2="52.1895" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#E04D40"/>
|
||||
<stop offset="1" stop-color="#F15F56"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1703_1341" x1="89.3601" y1="49.3859" x2="90.9103" y2="69.5379" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1EB67C"/>
|
||||
<stop offset="1" stop-color="#1FF073"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_1703_1341" x1="54.7401" y1="68.5034" x2="54.7401" y2="84.0049" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#14B678"/>
|
||||
<stop offset="0.8125" stop-color="#1FF073"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_1703_1341" x1="77.9932" y1="65.9214" x2="77.9932" y2="84.0065" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#00AB6A"/>
|
||||
<stop offset="1" stop-color="#1FF073"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_1703_1341" x1="77.9936" y1="24.0669" x2="51.1243" y2="62.3039" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.234375" stop-color="#16CF89"/>
|
||||
<stop offset="1" stop-color="#14B578"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint7_linear_1703_1341" x1="81.6106" y1="28.2006" x2="60.9419" y2="69.0213" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1FF073"/>
|
||||
<stop offset="1" stop-color="#04795D"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint8_linear_1703_1341" x1="48.5401" y1="50.4195" x2="37.689" y2="70.5715" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#0FA866"/>
|
||||
<stop offset="0.994297" stop-color="#1FF073"/>
|
||||
<stop offset="0.994397" stop-color="#1EB57C"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint9_linear_1703_1341" x1="112.586" y1="25.3046" x2="126.682" y2="41.591" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F783F2"/>
|
||||
<stop offset="1" stop-color="#E040DA"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint10_linear_1703_1341" x1="152.62" y1="17.5308" x2="147.738" y2="38.5093" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DE83DA"/>
|
||||
<stop offset="1" stop-color="#C246BD"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint11_linear_1703_1341" x1="136.763" y1="24" x2="136.763" y2="46.1479" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#E97EE4"/>
|
||||
<stop offset="1" stop-color="#D24BCD"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint12_linear_1703_1341" x1="166.476" y1="20" x2="166.476" y2="42.1479" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#CF72CB"/>
|
||||
<stop offset="1" stop-color="#B13BAD"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint13_linear_1703_1341" x1="128.07" y1="40.0034" x2="124.157" y2="61.5599" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F783F2"/>
|
||||
<stop offset="1" stop-color="#E040DA"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint14_linear_1703_1341" x1="158.129" y1="30.0034" x2="154.216" y2="51.5599" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F783F2"/>
|
||||
<stop offset="1" stop-color="#E040DA"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint15_linear_1703_1341" x1="171.283" y1="39.0118" x2="174.892" y2="60.8636" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F783F2"/>
|
||||
<stop offset="1" stop-color="#E040DA"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 32 KiB |
@@ -0,0 +1,138 @@
|
||||
<svg width="292" height="103" viewBox="0 0 292 103" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="292" height="102.768" fill="#1D1D26"/>
|
||||
<circle cx="50" cy="51" r="28" fill="#7F0AB7" stroke="#4F0174" stroke-width="2"/>
|
||||
<mask id="mask0_1703_1275" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="23" y="24" width="54" height="54">
|
||||
<circle cx="50" cy="51" r="27" fill="#D9D9D9"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_1703_1275)">
|
||||
<rect x="34" y="39" width="32.9531" height="57" rx="16.4766" fill="url(#paint0_linear_1703_1275)"/>
|
||||
<path d="M50.9219 51.4017C58.4769 51.4016 64.1705 58.6063 64.1705 58.6063C64.1705 58.6063 58.3258 65.811 50.9219 65.811C43.518 65.811 37.6733 58.6063 37.6733 58.6063C37.6733 58.6063 43.3669 51.4018 50.9219 51.4017Z" fill="white"/>
|
||||
<mask id="mask1_1703_1275" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="37" y="51" width="28" height="15">
|
||||
<path d="M50.9219 51.4017C58.4769 51.4016 64.1705 58.6063 64.1705 58.6063C64.1705 58.6063 58.3258 65.811 50.9219 65.811C43.518 65.811 37.6733 58.6063 37.6733 58.6063C37.6733 58.6063 43.3669 51.4018 50.9219 51.4017Z" fill="white"/>
|
||||
</mask>
|
||||
<g mask="url(#mask1_1703_1275)">
|
||||
<circle cx="50.9203" cy="58.6439" r="8.02378" fill="#240521"/>
|
||||
</g>
|
||||
</g>
|
||||
<circle cx="239" cy="51" r="28" fill="#114FAD" stroke="#063986" stroke-width="2"/>
|
||||
<mask id="mask2_1703_1275" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="212" y="24" width="54" height="54">
|
||||
<circle cx="239" cy="51" r="27" fill="#D9D9D9"/>
|
||||
</mask>
|
||||
<g mask="url(#mask2_1703_1275)">
|
||||
<path d="M214 75.8994C214 78.3847 215.565 80.3994 218.05 80.3994C220.535 80.3994 221.277 79.345 222.55 76.7994C223 75.8994 224.35 72.2995 224.35 72.2995C224.35 72.2995 222.627 69.6682 221.65 67.3495C220.483 64.5823 218.95 58.3496 218.95 58.3496C217.6 61.0496 214 73.4142 214 75.8994Z" fill="#16CF89"/>
|
||||
<path d="M214 75.8994C214 78.3847 215.565 80.3994 218.05 80.3994C220.535 80.3994 221.277 79.345 222.55 76.7994C223 75.8994 224.35 72.2995 224.35 72.2995C224.35 72.2995 222.627 69.6682 221.65 67.3495C220.483 64.5823 218.95 58.3496 218.95 58.3496C217.6 61.0496 214 73.4142 214 75.8994Z" fill="url(#paint1_linear_1703_1275)"/>
|
||||
<path d="M218.048 60.5996C218.048 60.5996 218.05 69.5995 223.309 74.9994C223.817 73.72 224.35 72.2995 224.35 72.2995C224.35 72.2995 222.627 69.6682 221.65 67.3495C220.483 64.5823 218.95 58.3496 218.95 58.3496C218.709 58.8302 218.398 59.6169 218.048 60.5996Z" fill="#278050"/>
|
||||
<path d="M253.599 70.0498C253.599 70.0498 251.078 72.0089 249.099 73.1998C246.834 74.5634 242.349 74.9998 242.349 74.9998C242.349 74.9998 242.137 80.3468 242.349 82.3982C242.562 84.4497 242.799 86.6996 242.799 86.6996C242.799 86.6996 241.622 88.4176 240.999 89.3996C240.129 90.7714 239.649 92.9996 239.649 92.9996L254.949 92.9996C254.949 92.9996 254.939 90.3579 254.499 88.7551C254.238 87.802 253.599 86.3971 253.599 86.3971C253.149 83.5675 252.699 82.2505 252.699 79.9497C252.699 77.6802 253.149 72.7498 253.599 70.0498Z" fill="url(#paint2_linear_1703_1275)"/>
|
||||
<path d="M253.6 70.5C253.6 70.5 250.178 75.1591 248.2 76.3499C245.934 77.7135 242.35 75 242.35 75C242.35 75 242.239 77.7819 242.257 80.1024C242.261 80.5337 242.261 80.9312 242.27 81.2999C242.27 81.2999 247.75 80.3999 253.009 75.0988C253.024 74.9538 253.039 74.8086 253.054 74.6636C253.212 73.158 253.406 71.6637 253.6 70.5Z" fill="#278050"/>
|
||||
<path d="M235.148 75.9013C235.148 75.9013 231.098 75.2445 229.298 74.1013C227.499 72.9581 225.699 71.4014 225.699 71.4014C225.699 71.4014 223.638 75.9243 222.999 80.4013C222.549 83.5512 222.999 86.7012 222.999 86.7012C222.999 86.7012 221.822 88.4191 221.199 89.4012C220.328 90.773 219.849 93.0011 219.849 93.0011L235.148 93.0011C235.148 93.0011 235.138 90.3595 234.698 88.7567C234.437 87.8036 233.798 86.3987 233.798 86.3987C232.898 84.0012 233.798 80.4013 233.798 80.4013C233.798 80.4013 234.698 76.8013 235.148 75.9013Z" fill="url(#paint3_linear_1703_1275)"/>
|
||||
<path d="M235.148 75.9013C235.148 75.9013 231.098 75.2445 229.298 74.1013C227.499 72.9581 225.699 71.4014 225.699 71.4014C225.699 71.4014 225.057 72.8105 224.378 74.8342C224.378 74.8342 224.349 75.4513 227.049 77.7013C229.748 79.9513 233.619 81.3013 233.619 81.3013C233.711 80.7494 233.798 80.4013 233.798 80.4013C233.798 80.4013 234.698 76.8013 235.148 75.9013Z" fill="#278050"/>
|
||||
<circle cx="20.6998" cy="20.6998" r="20.6998" transform="matrix(-1 -8.74228e-08 -8.74228e-08 1 259.448 39)" fill="url(#paint4_linear_1703_1275)"/>
|
||||
<rect width="13.0563" height="13.4721" rx="1.41544" transform="matrix(-0.686366 -0.727256 -0.727256 0.686366 239.648 58.3955)" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M237.45 56.067L234.795 53.2541C234.497 53.1941 234.184 53.1621 233.86 53.1621C231.872 53.1621 230.26 54.3709 230.26 55.8621C230.26 57.3532 231.872 58.5621 233.86 58.5621C235.757 58.5621 237.311 57.4624 237.45 56.067Z" fill="white"/>
|
||||
<circle cx="20.6998" cy="20.6998" r="20.6998" transform="matrix(-1 -8.74228e-08 -8.74228e-08 1 259.448 39)" fill="url(#paint5_linear_1703_1275)"/>
|
||||
<rect width="13.0563" height="13.4721" rx="1.41544" transform="matrix(-0.686366 -0.727256 -0.727256 0.686366 237.849 58.3955)" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M235.65 56.067L232.996 53.2541C232.697 53.1941 232.384 53.1621 232.061 53.1621C230.072 53.1621 228.461 54.3709 228.461 55.8621C228.461 57.3532 230.072 58.5621 232.061 58.5621C233.957 58.5621 235.511 57.4624 235.65 56.067Z" fill="white"/>
|
||||
<path d="M253.599 74.0999C253.239 74.0999 251.499 65.1 250.899 61.5C250.899 61.5 254.349 69.2999 255.399 72.2999L253.599 74.0999Z" fill="#007156"/>
|
||||
<path d="M255.849 78.5993C257.121 81.1449 259.899 81.7493 261.249 81.2993C262.599 80.8493 264.399 79.9493 264.849 77.2494C265.299 74.5494 264.022 70.4367 262.599 65.0995C260.349 58.7996 259.899 56.5496 258.549 53.8496L250.449 59.6995C251.349 62.8495 254.949 76.7994 255.849 78.5993Z" fill="url(#paint6_linear_1703_1275)"/>
|
||||
</g>
|
||||
<circle cx="156.686" cy="31.5128" r="11.4415" stroke="#76FF9C"/>
|
||||
<path d="M152.153 42.3477L150.052 54.3997H145.298" stroke="#76FF9C"/>
|
||||
<path d="M161.33 42.3477L163.431 54.3997H168.186" stroke="#76FF9C"/>
|
||||
<path d="M144.966 29.7422L138 34.7178L146.072 37.0398C146.182 37.9243 146.116 39.804 144.966 40.2463" stroke="#76FF9C"/>
|
||||
<path d="M168.444 29.7422L175.41 34.7178L167.339 37.0398C167.228 37.9243 167.294 39.804 168.444 40.2463" stroke="#76FF9C"/>
|
||||
<path d="M148.836 29.4111C149.499 30.0745 162.325 30.5168 164.758 29.4111" stroke="#76FF9C"/>
|
||||
<circle cx="152.706" cy="25.3202" r="0.442277" fill="#76FF9C"/>
|
||||
<circle cx="159.34" cy="25.3202" r="0.442277" fill="#76FF9C"/>
|
||||
<rect x="118.15" y="10.15" width="73.7" height="55.7" stroke="white" stroke-width="0.3" stroke-dasharray="4 4"/>
|
||||
<g filter="url(#filter0_d_1703_1275)">
|
||||
<rect x="116" y="9" width="4.06627" height="4.06667" rx="2" fill="white"/>
|
||||
</g>
|
||||
<g filter="url(#filter1_d_1703_1275)">
|
||||
<rect x="116" y="64" width="4.06627" height="4.06666" rx="2" fill="white"/>
|
||||
</g>
|
||||
<g filter="url(#filter2_d_1703_1275)">
|
||||
<rect x="190" y="9" width="3.95011" height="4.06667" rx="1.97506" fill="white"/>
|
||||
</g>
|
||||
<g filter="url(#filter3_d_1703_1275)">
|
||||
<rect x="190" y="64" width="4.06626" height="4.06666" rx="2" fill="white"/>
|
||||
</g>
|
||||
<path d="M193.1 40.8654L188.626 28.4947C188.022 26.8257 189.73 25.2557 191.342 25.9975L203.702 31.683C205.652 32.5798 205.012 35.5 202.866 35.5H199.626C198.679 35.5 197.862 36.1647 197.668 37.0921L196.939 40.593C196.528 42.5664 193.786 42.761 193.1 40.8654Z" fill="#5A94ED"/>
|
||||
<rect x="89" y="65" width="41.1824" height="14.7872" rx="7.38576" fill="#16CF89"/>
|
||||
<path d="M102.739 72.0598C102.881 72.1577 102.881 72.3674 102.739 72.4653L97.6951 75.941C97.5318 76.0535 97.3092 75.9366 97.3092 75.7383L97.3092 68.7868C97.3092 68.5885 97.5318 68.4716 97.6951 68.5841L102.739 72.0598Z" fill="black"/>
|
||||
<path d="M123.285 69.8528C123.29 69.8783 123.29 69.9037 123.285 69.9291C123.285 69.9546 123.277 69.9826 123.262 70.0131C123.242 70.0843 123.219 70.1479 123.194 70.2039C123.163 70.2751 123.125 70.3362 123.079 70.3871C123.059 70.4176 123.038 70.4481 123.018 70.4786C123.003 70.5041 122.987 70.5295 122.972 70.555L122.873 70.6847L121.896 72.0966L121.721 72.3179V74.348C121.71 74.3735 121.705 74.3989 121.705 74.4244C121.705 74.4498 121.703 74.4778 121.698 74.5083C121.688 74.5337 121.68 74.5592 121.675 74.5846C121.67 74.605 121.662 74.6279 121.652 74.6533C121.642 74.6737 121.637 74.6889 121.637 74.6991C121.632 74.7093 121.626 74.7169 121.621 74.722C121.621 74.7271 121.619 74.7347 121.614 74.7449C121.583 74.7958 121.54 74.8416 121.484 74.8823C121.372 74.9382 121.245 74.951 121.102 74.9204C121.021 74.9103 120.96 74.8848 120.919 74.8441C120.894 74.8288 120.873 74.811 120.858 74.7907C120.843 74.7703 120.828 74.7474 120.812 74.722C120.802 74.6915 120.792 74.6635 120.782 74.6381C120.772 74.6126 120.764 74.5872 120.759 74.5617C120.749 74.5363 120.744 74.5134 120.744 74.493C120.744 74.4676 120.744 74.4447 120.744 74.4244V72.3408L120.576 72.0813L119.584 70.6771L119.5 70.5397C119.469 70.4939 119.431 70.4405 119.385 70.3794C119.344 70.3235 119.309 70.2624 119.278 70.1963C119.258 70.1657 119.24 70.1352 119.225 70.1047C119.215 70.0691 119.205 70.0334 119.194 69.9978C119.179 69.9469 119.177 69.8961 119.187 69.8452C119.202 69.779 119.233 69.7231 119.278 69.6773C119.329 69.6315 119.383 69.5959 119.439 69.5704C119.51 69.5196 119.591 69.4992 119.683 69.5094C119.739 69.5094 119.787 69.5196 119.828 69.5399C119.869 69.5603 119.909 69.5832 119.95 69.6086C119.996 69.6442 120.039 69.6824 120.08 69.7231C120.125 69.7638 120.166 69.807 120.202 69.8528C120.243 69.9037 120.281 69.952 120.316 69.9978C120.352 70.0385 120.388 70.0869 120.423 70.1428L120.446 70.1734C120.568 70.3362 120.683 70.4939 120.789 70.6465C120.896 70.7941 121.008 70.9544 121.125 71.1274C121.135 71.1375 121.151 71.1579 121.171 71.1884C121.191 71.2189 121.214 71.2546 121.24 71.2953C121.26 71.2596 121.278 71.2291 121.293 71.2037C121.314 71.1731 121.329 71.1528 121.339 71.1426C121.456 70.9696 121.568 70.8068 121.675 70.6542C121.782 70.5015 121.896 70.3438 122.018 70.181L122.033 70.1505C122.074 70.1047 122.11 70.0589 122.14 70.0131C122.176 69.9622 122.214 69.9113 122.255 69.8604C122.321 69.7689 122.41 69.69 122.522 69.6239C122.603 69.5679 122.687 69.5323 122.774 69.517C122.87 69.5068 122.954 69.5272 123.026 69.5781C123.056 69.5984 123.084 69.6162 123.11 69.6315C123.14 69.6468 123.166 69.6646 123.186 69.6849C123.227 69.7307 123.26 69.7867 123.285 69.8528Z" fill="black"/>
|
||||
<path d="M119.312 74.4089C119.318 74.4394 119.32 74.4699 119.32 74.5004C119.325 74.5259 119.328 74.5564 119.328 74.592C119.328 74.6531 119.31 74.7091 119.274 74.7599C119.259 74.7854 119.239 74.8108 119.213 74.8363C119.188 74.8566 119.157 74.8744 119.122 74.8897C118.994 74.9609 118.86 74.9863 118.717 74.966C118.646 74.9456 118.582 74.9126 118.526 74.8668C118.516 74.8566 118.509 74.8515 118.503 74.8515C118.498 74.8464 118.493 74.8388 118.488 74.8286C118.483 74.8235 118.478 74.8184 118.473 74.8134C118.468 74.8032 118.46 74.7955 118.45 74.7905C118.425 74.765 118.404 74.7421 118.389 74.7218C118.374 74.6963 118.358 74.6709 118.343 74.6455C118.333 74.62 118.32 74.5971 118.305 74.5768C118.295 74.5513 118.282 74.5259 118.267 74.5004C118.257 74.4801 118.247 74.4623 118.236 74.447C118.226 74.4267 118.219 74.4063 118.213 74.386C118.193 74.3402 118.18 74.2995 118.175 74.2639L118.015 73.8899C117.664 73.8899 117.313 73.8924 116.962 73.8975C116.616 73.8975 116.267 73.895 115.916 73.8899L115.756 74.2639C115.746 74.2842 115.738 74.3046 115.733 74.3249C115.733 74.3453 115.728 74.3656 115.718 74.386C115.708 74.4063 115.697 74.4267 115.687 74.447C115.682 74.4623 115.675 74.4801 115.664 74.5004C115.649 74.5259 115.634 74.5513 115.619 74.5768C115.608 74.5971 115.596 74.62 115.58 74.6455C115.57 74.6709 115.558 74.6963 115.542 74.7218C115.527 74.7421 115.507 74.765 115.481 74.7905C115.471 74.7955 115.463 74.8032 115.458 74.8134C115.453 74.8184 115.448 74.8235 115.443 74.8286C115.438 74.8388 115.433 74.8464 115.428 74.8515C115.423 74.8515 115.415 74.8566 115.405 74.8668C115.349 74.9126 115.285 74.9456 115.214 74.966C115.072 74.9863 114.937 74.9609 114.81 74.8897C114.774 74.8744 114.743 74.8566 114.718 74.8363C114.693 74.8108 114.672 74.7854 114.657 74.7599C114.621 74.7091 114.604 74.6531 114.604 74.592C114.604 74.5564 114.604 74.5259 114.604 74.5004C114.609 74.4699 114.614 74.4394 114.619 74.4089C114.629 74.3631 114.642 74.3173 114.657 74.2715C114.672 74.2257 114.68 74.2028 114.68 74.2028L116.267 70.2952L116.313 70.1731C116.323 70.1426 116.336 70.1146 116.351 70.0892C116.366 70.0637 116.379 70.0332 116.389 69.9976C116.415 69.9315 116.443 69.8729 116.473 69.8221C116.489 69.7915 116.506 69.7635 116.527 69.7381C116.547 69.7127 116.567 69.6872 116.588 69.6618C116.618 69.6211 116.662 69.588 116.718 69.5626C116.789 69.5371 116.87 69.5244 116.962 69.5244C117.058 69.5244 117.142 69.5371 117.214 69.5626C117.27 69.588 117.313 69.6211 117.343 69.6618C117.379 69.7076 117.417 69.761 117.458 69.8221C117.488 69.8729 117.516 69.9315 117.542 69.9976C117.552 70.0332 117.565 70.0637 117.58 70.0892C117.595 70.1146 117.608 70.1426 117.618 70.1731L117.664 70.2952L119.251 74.2028C119.251 74.2028 119.259 74.2257 119.274 74.2715C119.29 74.3173 119.302 74.3631 119.312 74.4089ZM117.504 72.539C117.438 72.3915 117.369 72.2388 117.298 72.0811C117.231 71.9234 117.16 71.7631 117.084 71.6003C117.064 71.5545 117.043 71.5087 117.023 71.4629C117.002 71.412 116.982 71.3637 116.962 71.3179C116.947 71.3637 116.929 71.412 116.908 71.4629C116.888 71.5087 116.868 71.5545 116.847 71.6003C116.771 71.7631 116.697 71.9234 116.626 72.0811C116.56 72.2388 116.494 72.3915 116.428 72.539L116.29 72.8748H117.641L117.504 72.539Z" fill="black"/>
|
||||
<path d="M113.978 74.3483C113.988 74.3738 113.993 74.4119 113.993 74.4628C113.993 74.5086 113.993 74.5468 113.993 74.5773C113.993 74.618 113.985 74.6562 113.97 74.6918C113.955 74.7274 113.934 74.7605 113.909 74.791C113.863 74.8521 113.797 74.8978 113.711 74.9284C113.588 74.9691 113.474 74.9894 113.367 74.9894C113.311 74.9945 113.253 74.9971 113.192 74.9971C113.131 74.9971 113.069 75.0022 113.008 75.0123H112.978C112.586 75.0174 112.182 75.0174 111.764 75.0123C111.663 75.0072 111.548 75.0072 111.421 75.0123C111.294 75.0225 111.169 75.02 111.047 75.0047C110.925 74.9945 110.813 74.9665 110.711 74.9207C110.615 74.8699 110.546 74.791 110.505 74.6842C110.495 74.6587 110.487 74.6358 110.482 74.6155C110.477 74.59 110.475 74.5646 110.475 74.5391C110.454 74.3662 110.447 74.1957 110.452 74.0278C110.457 73.8599 110.459 73.6945 110.459 73.5317L110.475 72.4251V71.4024C110.475 71.2192 110.475 71.0564 110.475 70.914C110.48 70.7715 110.485 70.6138 110.49 70.4408V70.4026C110.495 70.3518 110.498 70.3009 110.498 70.25C110.503 70.1991 110.505 70.1482 110.505 70.0974C110.515 69.9803 110.543 69.8811 110.589 69.7997C110.62 69.7234 110.673 69.6623 110.749 69.6165C110.816 69.5707 110.894 69.5479 110.986 69.5479C111.022 69.5479 111.055 69.5504 111.085 69.5555C111.121 69.5555 111.154 69.558 111.184 69.5631C111.215 69.5682 111.243 69.5784 111.268 69.5936C111.299 69.6089 111.329 69.6293 111.36 69.6547C111.39 69.6903 111.418 69.7336 111.444 69.7844C111.464 69.8404 111.477 69.8964 111.482 69.9523C111.487 69.988 111.492 70.021 111.497 70.0516C111.502 70.0821 111.505 70.1126 111.505 70.1431C111.495 70.1737 111.49 70.2042 111.49 70.2347C111.49 70.2653 111.49 70.2932 111.49 70.3187V70.4561L111.459 74.0507L112.97 74.066H113.329C113.359 74.066 113.393 74.0685 113.428 74.0736C113.464 74.0736 113.499 74.0761 113.535 74.0812C113.576 74.0863 113.611 74.0914 113.642 74.0965C113.672 74.1016 113.703 74.1092 113.733 74.1194C113.789 74.1347 113.835 74.1601 113.871 74.1957C113.927 74.2466 113.962 74.2975 113.978 74.3483Z" fill="black"/>
|
||||
<path d="M109.292 70.0057C109.485 70.1837 109.628 70.3974 109.719 70.6467C109.811 70.891 109.847 71.1352 109.826 71.3794C109.806 71.6135 109.732 71.8297 109.605 72.0281C109.478 72.2215 109.284 72.369 109.025 72.4708C108.821 72.5573 108.62 72.6183 108.422 72.6539C108.223 72.6896 108.005 72.7175 107.766 72.7379C107.659 72.7481 107.567 72.7557 107.491 72.7608C107.42 72.7608 107.336 72.7633 107.239 72.7684C107.219 72.7684 107.183 72.7684 107.132 72.7684C107.086 72.7684 107.053 72.771 107.033 72.7761V74.3559C107.018 74.4525 106.997 74.5518 106.972 74.6535C106.951 74.7553 106.893 74.8341 106.796 74.8901C106.74 74.9206 106.672 74.9384 106.59 74.9435C106.509 74.9486 106.435 74.9461 106.369 74.9359C106.298 74.9257 106.237 74.9079 106.186 74.8825C106.14 74.8519 106.102 74.8011 106.071 74.7298C106.051 74.684 106.031 74.6332 106.01 74.5772C105.995 74.5161 105.987 74.4424 105.987 74.3559V70.1354C105.987 70.0998 105.99 70.0667 105.995 70.0362C106 70.0057 106.005 69.9751 106.01 69.9446C106.02 69.9192 106.028 69.8912 106.033 69.8606C106.038 69.8301 106.046 69.8021 106.056 69.7767C106.066 69.7513 106.076 69.7284 106.087 69.708C106.102 69.6877 106.12 69.6698 106.14 69.6546C106.165 69.6291 106.204 69.6062 106.254 69.5859C106.31 69.5655 106.392 69.5554 106.499 69.5554H106.514C106.672 69.5452 106.847 69.5376 107.041 69.5325C107.234 69.5223 107.394 69.5248 107.521 69.5401C107.593 69.5503 107.659 69.5579 107.72 69.563C107.781 69.563 107.839 69.5655 107.895 69.5706C107.956 69.5757 108.017 69.5808 108.078 69.5859C108.14 69.591 108.201 69.5986 108.262 69.6088C108.313 69.619 108.358 69.6266 108.399 69.6317C108.445 69.6368 108.491 69.6444 108.536 69.6546C108.577 69.6648 108.62 69.6749 108.666 69.6851C108.717 69.6953 108.763 69.7131 108.803 69.7385C108.91 69.7691 108.999 69.8072 109.071 69.853C109.142 69.8988 109.216 69.9497 109.292 70.0057ZM108.834 71.2649C108.839 71.1428 108.814 71.036 108.758 70.9444C108.707 70.8528 108.633 70.7765 108.536 70.7154C108.44 70.6544 108.33 70.606 108.208 70.5704C108.086 70.5348 107.964 70.5094 107.842 70.4941C107.811 70.4941 107.768 70.4941 107.712 70.4941C107.661 70.489 107.605 70.4865 107.544 70.4865C107.483 70.4814 107.425 70.4788 107.369 70.4788C107.318 70.4737 107.277 70.4712 107.247 70.4712C107.221 70.4661 107.191 70.4636 107.155 70.4636C107.119 70.4636 107.079 70.4636 107.033 70.4636C107.038 70.6213 107.041 70.7739 107.041 70.9215C107.041 71.064 107.041 71.2191 107.041 71.387C107.035 71.4786 107.033 71.5702 107.033 71.6618C107.033 71.7534 107.033 71.8424 107.033 71.9289L107.506 71.9213C107.628 71.9213 107.763 71.9136 107.911 71.8984C108.058 71.8831 108.198 71.8526 108.33 71.8068C108.463 71.761 108.575 71.6949 108.666 71.6084C108.763 71.5219 108.819 71.4074 108.834 71.2649Z" fill="black"/>
|
||||
<path d="M79.1365 79.5339L91.0746 74.0078C92.6853 73.2622 94.3968 74.8281 93.7971 76.4986L89.2001 89.3033C88.4751 91.323 85.5106 90.9381 85.3252 88.8002L85.0454 85.5722C84.9636 84.6284 84.2309 83.8715 83.2902 83.7591L79.7394 83.3348C77.7378 83.0956 77.3072 80.3807 79.1365 79.5339Z" fill="#B746EC"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_1703_1275" x="112" y="7" width="12.0664" height="12.0664" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1703_1275"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1703_1275" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter1_d_1703_1275" x="112" y="62" width="12.0664" height="12.0664" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1703_1275"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1703_1275" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter2_d_1703_1275" x="186" y="7" width="11.9502" height="12.0664" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1703_1275"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1703_1275" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter3_d_1703_1275" x="186" y="62" width="12.0664" height="12.0664" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1703_1275"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1703_1275" result="shape"/>
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_1703_1275" x1="50.4766" y1="39" x2="50.4766" y2="96" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF7A77"/>
|
||||
<stop offset="1" stop-color="#DE5043"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1703_1275" x1="217.6" y1="62.8496" x2="216.25" y2="80.3994" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1EB67C"/>
|
||||
<stop offset="1" stop-color="#1FF073"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1703_1275" x1="247.749" y1="79.4997" x2="247.749" y2="92.9996" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#14B678"/>
|
||||
<stop offset="0.8125" stop-color="#1FF073"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1703_1275" x1="227.499" y1="77.2513" x2="227.499" y2="93.0011" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#00AB6A"/>
|
||||
<stop offset="1" stop-color="#1FF073"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_1703_1275" x1="31.9497" y1="1.79998" x2="8.54991" y2="35.0996" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.234375" stop-color="#16CF89"/>
|
||||
<stop offset="1" stop-color="#14B578"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_1703_1275" x1="35.0996" y1="5.39994" x2="17.0998" y2="40.9496" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1FF073"/>
|
||||
<stop offset="1" stop-color="#04795D"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear_1703_1275" x1="253.149" y1="63.7495" x2="262.599" y2="81.2993" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#0FA866"/>
|
||||
<stop offset="0.994297" stop-color="#1FF073"/>
|
||||
<stop offset="0.994397" stop-color="#1EB57C"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 22 KiB |
@@ -0,0 +1,93 @@
|
||||
<svg width="286" height="103" viewBox="0 0 286 103" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1642_5365)">
|
||||
<rect width="285.652" height="102.768" fill="#1D1D26"/>
|
||||
<g opacity="0.65">
|
||||
<path d="M112.698 65.6247C112.995 65.6247 113.236 65.3887 113.236 65.0975C113.236 64.8063 112.995 64.5703 112.698 64.5703C112.401 64.5703 112.16 64.8063 112.16 65.0975C112.16 65.3887 112.401 65.6247 112.698 65.6247Z" fill="#D1FEF9"/>
|
||||
<path d="M112.227 54.4704C112.785 54.4704 113.237 54.0271 113.237 53.4803C113.237 52.9335 112.785 52.4902 112.227 52.4902C111.669 52.4902 111.217 52.9335 111.217 53.4803C111.217 54.0271 111.669 54.4704 112.227 54.4704Z" fill="#D1FEF9"/>
|
||||
<path d="M114.365 58.5283C114.778 58.5283 115.113 58.2002 115.113 57.7954C115.113 57.3906 114.778 57.0625 114.365 57.0625C113.952 57.0625 113.617 57.3906 113.617 57.7954C113.617 58.2002 113.952 58.5283 114.365 58.5283Z" fill="#D1FEF9"/>
|
||||
<path d="M106.436 52.7635C106.65 52.7635 106.823 52.5937 106.823 52.3842C106.823 52.1747 106.65 52.0049 106.436 52.0049C106.222 52.0049 106.049 52.1747 106.049 52.3842C106.049 52.5937 106.222 52.7635 106.436 52.7635Z" fill="#D1FEF9"/>
|
||||
<path d="M107.732 45.1125C107.909 45.1125 108.053 44.9714 108.053 44.7975C108.053 44.6235 107.909 44.4824 107.732 44.4824C107.554 44.4824 107.41 44.6235 107.41 44.7975C107.41 44.9714 107.554 45.1125 107.732 45.1125Z" fill="#D1FEF9"/>
|
||||
<path d="M126.571 48.2914C127.181 48.2914 127.675 47.8069 127.675 47.2092C127.675 46.6115 127.181 46.127 126.571 46.127C125.961 46.127 125.467 46.6115 125.467 47.2092C125.467 47.8069 125.961 48.2914 126.571 48.2914Z" fill="#D1FEF9"/>
|
||||
<path d="M124.194 51.6884C124.488 51.6884 124.727 51.4543 124.727 51.1655C124.727 50.8767 124.488 50.6426 124.194 50.6426C123.899 50.6426 123.66 50.8767 123.66 51.1655C123.66 51.4543 123.899 51.6884 124.194 51.6884Z" fill="#D1FEF9"/>
|
||||
<path d="M128.041 45.1996C128.244 45.1996 128.408 45.0384 128.408 44.8395C128.408 44.6407 128.244 44.4795 128.041 44.4795C127.838 44.4795 127.674 44.6407 127.674 44.8395C127.674 45.0384 127.838 45.1996 128.041 45.1996Z" fill="#D1FEF9"/>
|
||||
<path d="M124.29 64.9106C125.101 64.9106 125.759 64.2658 125.759 63.4704C125.759 62.675 125.101 62.0303 124.29 62.0303C123.478 62.0303 122.82 62.675 122.82 63.4704C122.82 64.2658 123.478 64.9106 124.29 64.9106Z" fill="#D1FEF9"/>
|
||||
<path d="M162.579 101.482C162.909 101.482 163.176 101.22 163.176 100.897C163.176 100.573 162.909 100.312 162.579 100.312C162.25 100.312 161.982 100.573 161.982 100.897C161.982 101.22 162.25 101.482 162.579 101.482Z" fill="#D1FEF9"/>
|
||||
<path d="M169.195 84.1565C169.556 84.1565 169.848 83.8697 169.848 83.5158C169.848 83.1619 169.556 82.875 169.195 82.875C168.834 82.875 168.541 83.1619 168.541 83.5158C168.541 83.8697 168.834 84.1565 169.195 84.1565Z" fill="#D1FEF9"/>
|
||||
<path d="M167.338 80.1277C167.825 80.1277 168.219 79.741 168.219 79.264C168.219 78.7871 167.825 78.4004 167.338 78.4004C166.851 78.4004 166.457 78.7871 166.457 79.264C166.457 79.741 166.851 80.1277 167.338 80.1277Z" fill="#D1FEF9"/>
|
||||
<path d="M171.937 70.8543C172.157 70.8543 172.335 70.6797 172.335 70.4642C172.335 70.2488 172.157 70.0742 171.937 70.0742C171.717 70.0742 171.539 70.2488 171.539 70.4642C171.539 70.6797 171.717 70.8543 171.937 70.8543Z" fill="#D1FEF9"/>
|
||||
<path d="M179.114 61.7553C179.817 61.7553 180.387 61.1968 180.387 60.508C180.387 59.8192 179.817 59.2607 179.114 59.2607C178.412 59.2607 177.842 59.8192 177.842 60.508C177.842 61.1968 178.412 61.7553 179.114 61.7553Z" fill="#D1FEF9"/>
|
||||
<path d="M177.37 57.9569C177.605 57.9569 177.796 57.7698 177.796 57.539C177.796 57.3082 177.605 57.1211 177.37 57.1211C177.134 57.1211 176.943 57.3082 176.943 57.539C176.943 57.7698 177.134 57.9569 177.37 57.9569Z" fill="#D1FEF9"/>
|
||||
<path d="M162.649 71.3092C163.018 71.3092 163.316 71.0166 163.316 70.6556C163.316 70.2946 163.018 70.002 162.649 70.002C162.281 70.002 161.982 70.2946 161.982 70.6556C161.982 71.0166 162.281 71.3092 162.649 71.3092Z" fill="#D1FEF9"/>
|
||||
<path d="M159.332 93.6462C159.429 93.6462 159.508 93.5691 159.508 93.474C159.508 93.3789 159.429 93.3018 159.332 93.3018C159.235 93.3018 159.156 93.3789 159.156 93.474C159.156 93.5691 159.235 93.6462 159.332 93.6462Z" fill="#D1FEF9"/>
|
||||
<path d="M158.617 102.293C159.011 102.293 159.33 101.98 159.33 101.594C159.33 101.208 159.011 100.896 158.617 100.896C158.223 100.896 157.904 101.208 157.904 101.594C157.904 101.98 158.223 102.293 158.617 102.293Z" fill="#D1FEF9"/>
|
||||
<path d="M164.164 93.3045C164.71 93.3045 165.152 92.8708 165.152 92.3358C165.152 91.8009 164.71 91.3672 164.164 91.3672C163.618 91.3672 163.176 91.8009 163.176 92.3358C163.176 92.8708 163.618 93.3045 164.164 93.3045Z" fill="#D1FEF9"/>
|
||||
<path d="M162.879 86.5448C163.044 86.5448 163.177 86.4143 163.177 86.2534C163.177 86.0924 163.044 85.9619 162.879 85.9619C162.715 85.9619 162.582 86.0924 162.582 86.2534C162.582 86.4143 162.715 86.5448 162.879 86.5448Z" fill="#D1FEF9"/>
|
||||
<path d="M128.322 95.0891C128.825 95.0891 129.234 94.689 129.234 94.1954C129.234 93.7019 128.825 93.3018 128.322 93.3018C127.818 93.3018 127.41 93.7019 127.41 94.1954C127.41 94.689 127.818 95.0891 128.322 95.0891Z" fill="#D1FEF9"/>
|
||||
<path d="M131.373 87.0402C131.594 87.0402 131.773 86.8646 131.773 86.6481C131.773 86.4315 131.594 86.2559 131.373 86.2559C131.152 86.2559 130.973 86.4315 130.973 86.6481C130.973 86.8646 131.152 87.0402 131.373 87.0402Z" fill="#D1FEF9"/>
|
||||
<path d="M118.573 86.1503C119.135 86.1503 119.59 85.7041 119.59 85.1538C119.59 84.6034 119.135 84.1572 118.573 84.1572C118.012 84.1572 117.557 84.6034 117.557 85.1538C117.557 85.7041 118.012 86.1503 118.573 86.1503Z" fill="#D1FEF9"/>
|
||||
<path d="M124.627 102.069C125.252 102.069 125.759 101.572 125.759 100.959C125.759 100.346 125.252 99.8486 124.627 99.8486C124.001 99.8486 123.494 100.346 123.494 100.959C123.494 101.572 124.001 102.069 124.627 102.069Z" fill="#D1FEF9"/>
|
||||
<path d="M116.028 82.3486C116.251 82.3486 116.432 82.1711 116.432 81.9521C116.432 81.7332 116.251 81.5557 116.028 81.5557C115.804 81.5557 115.623 81.7332 115.623 81.9521C115.623 82.1711 115.804 82.3486 116.028 82.3486Z" fill="#D1FEF9"/>
|
||||
<path d="M181.117 87.1678C181.685 87.1678 182.145 86.7168 182.145 86.1605C182.145 85.6043 181.685 85.1533 181.117 85.1533C180.55 85.1533 180.09 85.6043 180.09 86.1605C180.09 86.7168 180.55 87.1678 181.117 87.1678Z" fill="#D1FEF9"/>
|
||||
<path d="M157.903 9.93057C158.703 9.93057 159.352 9.29443 159.352 8.50972C159.352 7.725 158.703 7.08887 157.903 7.08887C157.102 7.08887 156.453 7.725 156.453 8.50972C156.453 9.29443 157.102 9.93057 157.903 9.93057Z" fill="#D1FEF9"/>
|
||||
<path d="M180.635 75.2398C180.901 75.2398 181.116 75.0287 181.116 74.7684C181.116 74.508 180.901 74.2969 180.635 74.2969C180.37 74.2969 180.154 74.508 180.154 74.7684C180.154 75.0287 180.37 75.2398 180.635 75.2398Z" fill="#D1FEF9"/>
|
||||
<path d="M178.88 88.0542C179.13 88.0542 179.333 87.8556 179.333 87.6106C179.333 87.3656 179.13 87.167 178.88 87.167C178.63 87.167 178.428 87.3656 178.428 87.6106C178.428 87.8556 178.63 88.0542 178.88 88.0542Z" fill="#D1FEF9"/>
|
||||
<path d="M178.447 79.2061C178.686 79.2061 178.879 79.0161 178.879 78.7817C178.879 78.5474 178.686 78.3574 178.447 78.3574C178.207 78.3574 178.014 78.5474 178.014 78.7817C178.014 79.0161 178.207 79.2061 178.447 79.2061Z" fill="#D1FEF9"/>
|
||||
<path d="M175.093 93.6455C175.462 93.6455 175.762 93.3519 175.762 92.9898C175.762 92.6276 175.462 92.334 175.093 92.334C174.723 92.334 174.424 92.6276 174.424 92.9898C174.424 93.3519 174.723 93.6455 175.093 93.6455Z" fill="#D1FEF9"/>
|
||||
<path d="M179.275 36.0444C179.726 36.0444 180.092 35.6856 180.092 35.2429C180.092 34.8003 179.726 34.4414 179.275 34.4414C178.823 34.4414 178.457 34.8003 178.457 35.2429C178.457 35.6856 178.823 36.0444 179.275 36.0444Z" fill="#D1FEF9"/>
|
||||
<path d="M178.85 28.3282C179.083 28.3282 179.272 28.143 179.272 27.9146C179.272 27.6862 179.083 27.501 178.85 27.501C178.617 27.501 178.428 27.6862 178.428 27.9146C178.428 28.143 178.617 28.3282 178.85 28.3282Z" fill="#D1FEF9"/>
|
||||
<path d="M172.828 19.6982C173.101 19.6982 173.322 19.4813 173.322 19.2138C173.322 18.9463 173.101 18.7295 172.828 18.7295C172.555 18.7295 172.334 18.9463 172.334 19.2138C172.334 19.4813 172.555 19.6982 172.828 19.6982Z" fill="#D1FEF9"/>
|
||||
<path d="M172.918 32.4895C173.241 32.4895 173.504 32.2324 173.504 31.9152C173.504 31.598 173.241 31.3408 172.918 31.3408C172.594 31.3408 172.332 31.598 172.332 31.9152C172.332 32.2324 172.594 32.4895 172.918 32.4895Z" fill="#D1FEF9"/>
|
||||
<path d="M170.394 42.9354C170.695 42.9354 170.938 42.6965 170.938 42.4018C170.938 42.1071 170.695 41.8682 170.394 41.8682C170.093 41.8682 169.85 42.1071 169.85 42.4018C169.85 42.6965 170.093 42.9354 170.394 42.9354Z" fill="#D1FEF9"/>
|
||||
<path d="M122.513 16.2479C122.684 16.2479 122.822 16.1126 122.822 15.9457C122.822 15.7788 122.684 15.6436 122.513 15.6436C122.343 15.6436 122.205 15.7788 122.205 15.9457C122.205 16.1126 122.343 16.2479 122.513 16.2479Z" fill="#D1FEF9"/>
|
||||
<path d="M126.064 30.0769C126.557 30.0769 126.956 29.6854 126.956 29.2025C126.956 28.7196 126.557 28.3281 126.064 28.3281C125.571 28.3281 125.172 28.7196 125.172 29.2025C125.172 29.6854 125.571 30.0769 126.064 30.0769Z" fill="#D1FEF9"/>
|
||||
<path d="M120.216 36.0444C120.668 36.0444 121.034 35.6856 121.034 35.2429C121.034 34.8003 120.668 34.4414 120.216 34.4414C119.765 34.4414 119.398 34.8003 119.398 35.2429C119.398 35.6856 119.765 36.0444 120.216 36.0444Z" fill="#D1FEF9"/>
|
||||
<path d="M117.438 30.4584C117.613 30.4584 117.755 30.3193 117.755 30.1477C117.755 29.976 117.613 29.8369 117.438 29.8369C117.263 29.8369 117.121 29.976 117.121 30.1477C117.121 30.3193 117.263 30.4584 117.438 30.4584Z" fill="#D1FEF9"/>
|
||||
<path d="M110.689 33.7418C111.042 33.7418 111.328 33.4616 111.328 33.116C111.328 32.7704 111.042 32.4902 110.689 32.4902C110.337 32.4902 110.051 32.7704 110.051 33.116C110.051 33.4616 110.337 33.7418 110.689 33.7418Z" fill="#D1FEF9"/>
|
||||
<path d="M115.544 42.7204C116.194 42.7204 116.722 42.2032 116.722 41.5653C116.722 40.9273 116.194 40.4102 115.544 40.4102C114.893 40.4102 114.365 40.9273 114.365 41.5653C114.365 42.2032 114.893 42.7204 115.544 42.7204Z" fill="#D1FEF9"/>
|
||||
<path d="M154.097 15.2014C154.399 15.2014 154.644 14.9615 154.644 14.6656C154.644 14.3698 154.399 14.1299 154.097 14.1299C153.796 14.1299 153.551 14.3698 153.551 14.6656C153.551 14.9615 153.796 15.2014 154.097 15.2014Z" fill="#D1FEF9"/>
|
||||
<path d="M132.168 7.96299C132.661 7.96299 133.062 7.57056 133.062 7.08647C133.062 6.60239 132.661 6.20996 132.168 6.20996C131.674 6.20996 131.273 6.60239 131.273 7.08647C131.273 7.57056 131.674 7.96299 132.168 7.96299Z" fill="#D1FEF9"/>
|
||||
<path d="M157.241 1.34752C157.606 1.34752 157.903 1.0568 157.903 0.698176C157.903 0.339551 157.606 0.0488281 157.241 0.0488281C156.875 0.0488281 156.578 0.339551 156.578 0.698176C156.578 1.0568 156.875 1.34752 157.241 1.34752Z" fill="#D1FEF9"/>
|
||||
<path d="M142.996 18.4425C143.615 18.4425 144.116 17.9513 144.116 17.3453C144.116 16.7393 143.615 16.248 142.996 16.248C142.378 16.248 141.877 16.7393 141.877 17.3453C141.877 17.9513 142.378 18.4425 142.996 18.4425Z" fill="#D1FEF9"/>
|
||||
<path d="M153.117 33.7419C153.631 33.7419 154.048 33.3331 154.048 32.8289C154.048 32.3247 153.631 31.916 153.117 31.916C152.603 31.916 152.186 32.3247 152.186 32.8289C152.186 33.3331 152.603 33.7419 153.117 33.7419Z" fill="#D1FEF9"/>
|
||||
<path d="M158.243 35.11C158.432 35.11 158.584 34.9604 158.584 34.7757C158.584 34.5911 158.432 34.4414 158.243 34.4414C158.055 34.4414 157.902 34.5911 157.902 34.7757C157.902 34.9604 158.055 35.11 158.243 35.11Z" fill="#D1FEF9"/>
|
||||
<path d="M138.576 34.7761C138.867 34.7761 139.103 34.5449 139.103 34.2596C139.103 33.9744 138.867 33.7432 138.576 33.7432C138.285 33.7432 138.049 33.9744 138.049 34.2596C138.049 34.5449 138.285 34.7761 138.576 34.7761Z" fill="#D1FEF9"/>
|
||||
<path d="M136.38 27.3803C136.707 27.3803 136.972 27.1203 136.972 26.7995C136.972 26.4788 136.707 26.2188 136.38 26.2188C136.052 26.2188 135.787 26.4788 135.787 26.7995C135.787 27.1203 136.052 27.3803 136.38 27.3803Z" fill="#D1FEF9"/>
|
||||
<path d="M155.042 19.2139C155.259 19.2139 155.435 19.0412 155.435 18.8281C155.435 18.6151 155.259 18.4424 155.042 18.4424C154.825 18.4424 154.648 18.6151 154.648 18.8281C154.648 19.0412 154.825 19.2139 155.042 19.2139Z" fill="#D1FEF9"/>
|
||||
<path d="M152.094 12.1076C152.358 12.1076 152.573 11.8975 152.573 11.6383C152.573 11.3791 152.358 11.1689 152.094 11.1689C151.83 11.1689 151.615 11.3791 151.615 11.6383C151.615 11.8975 151.83 12.1076 152.094 12.1076Z" fill="#D1FEF9"/>
|
||||
<path d="M102.263 61.1383C102.501 61.1383 102.693 60.9493 102.693 60.7161C102.693 60.483 102.501 60.2939 102.263 60.2939C102.025 60.2939 101.832 60.483 101.832 60.7161C101.832 60.9493 102.025 61.1383 102.263 61.1383Z" fill="#D1FEF9"/>
|
||||
<path d="M132.286 16.5523C132.667 16.5523 132.975 16.25 132.975 15.8772C132.975 15.5044 132.667 15.2021 132.286 15.2021C131.906 15.2021 131.598 15.5044 131.598 15.8772C131.598 16.25 131.906 16.5523 132.286 16.5523Z" fill="#D1FEF9"/>
|
||||
<path d="M104.954 62.987C105.474 62.987 105.896 62.5734 105.896 62.0633C105.896 61.5532 105.474 61.1396 104.954 61.1396C104.434 61.1396 104.012 61.5532 104.012 62.0633C104.012 62.5734 104.434 62.987 104.954 62.987Z" fill="#D1FEF9"/>
|
||||
</g>
|
||||
<g opacity="0.2" filter="url(#filter0_f_1642_5365)">
|
||||
<path d="M172.809 99.3038L172.248 99.6498C155.684 109.881 134.83 110.149 118.007 100.349C101.797 90.9049 91.8266 73.5577 91.8265 54.7969L91.8264 49.3873C91.8263 30.4856 101.698 12.9562 117.861 3.15675L118.67 2.66631C135.106 -7.29892 155.676 -7.47948 172.285 2.19568C188.421 11.5951 198.345 28.8618 198.345 47.5354V53.517C198.345 72.1739 188.682 89.4998 172.809 99.3038Z" fill="url(#paint0_radial_1642_5365)" fill-opacity="0.8"/>
|
||||
</g>
|
||||
<path d="M144.512 16.0947L120.233 30.1109L144.326 44.4896L168.423 30.1109L144.512 16.0947Z" fill="#FED501"/>
|
||||
<path d="M144.555 35.0469L120.276 49.0631L144.369 63.4417L168.466 49.0631L144.555 35.0469Z" fill="#FED501"/>
|
||||
<path d="M144.467 9.94727L133.551 16.2489L144.383 22.7134L155.217 16.2489L144.467 9.94727Z" fill="#FED501"/>
|
||||
<path d="M144.375 75.9297L130.422 83.985L144.269 92.2486L158.117 83.985L144.375 75.9297Z" fill="#F6FAFF"/>
|
||||
<rect width="4.97047" height="15.0989" transform="matrix(-0.859406 0.511293 0 1 148.596 69.6279)" fill="#AE8A42"/>
|
||||
<rect width="4.97047" height="15.1192" transform="matrix(0.859406 0.511293 0 1 140.053 69.6279)" fill="#CAA459"/>
|
||||
<rect width="28.0342" height="13.952" transform="matrix(-0.859406 0.511293 0 1 168.418 30.1104)" fill="#DCA502"/>
|
||||
<rect width="28.0342" height="13.952" transform="matrix(-0.859406 0.511293 0 1 168.461 49.0635)" fill="#DCA502"/>
|
||||
<rect width="12.604" height="12.9802" transform="matrix(-0.859406 0.511293 0 1 155.215 16.249)" fill="#DCA502"/>
|
||||
<rect width="16.1117" height="3.71121" transform="matrix(-0.859406 0.511293 0 1 158.113 83.9863)" fill="#B5C8E6"/>
|
||||
<rect width="28.0342" height="13.9268" transform="matrix(0.859406 0.511293 0 1 120.232 30.1104)" fill="#FFEF7C"/>
|
||||
<rect width="28.0342" height="13.9268" transform="matrix(0.859406 0.511293 0 1 120.277 49.0635)" fill="#FFEF7C"/>
|
||||
<rect width="12.604" height="12.965" transform="matrix(0.859406 0.511293 0 1 133.553 16.249)" fill="#FFEF7C"/>
|
||||
<rect width="16.1117" height="3.67721" transform="matrix(0.859406 0.511293 0 1 130.424 83.9863)" fill="#D0DCEF"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_f_1642_5365" x="79.824" y="-16.9386" width="130.524" height="136.456" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="6.00106" result="effect1_foregroundBlur_1642_5365"/>
|
||||
</filter>
|
||||
<radialGradient id="paint0_radial_1642_5365" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(145.086 51.3845) rotate(90) scale(64.8865 53.2594)">
|
||||
<stop offset="0.505208" stop-color="#FFC42C"/>
|
||||
<stop offset="1" stop-color="#F2F484" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<clipPath id="clip0_1642_5365">
|
||||
<rect width="285.652" height="102.768" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 16 KiB |
@@ -466,14 +466,14 @@ initializeGDevelopJs().then(async gd => {
|
||||
|
||||
GDevelop is built in a flexible way. In addition to [core features](/gdevelop5/all-features), new capabilities are provided by extensions. Extensions can contain objects, behaviors, actions, conditions, expressions or events.
|
||||
|
||||
[Directly from GDevelop](/gdevelop5/extensions/search), you have access to a collection of community created extensions, [listed here](/gdevelop5/extensions/extensions-list).
|
||||
You can also [create](/gdevelop5/extensions/create) directly in your project new behaviors, actions, conditions or expressions for your game.
|
||||
Community created extensions are accessible [directly from GDevelop](/gdevelop5/extensions/search).
|
||||
New extensions can also be [created](/gdevelop5/extensions/create) from scratch using events or JavaScript.
|
||||
|
||||
Read more about this:
|
||||
|
||||
* [Create your own extensions](/gdevelop5/extensions/create)
|
||||
* [Share extensions with the community](/gdevelop5/extensions/share-extension)
|
||||
* [Extend GDevelop with JavaScript or C++](/gdevelop5/extensions/extend-gdevelop)
|
||||
* [Use JavaScript in events](/gdevelop5/events/js-code)
|
||||
|
||||
`;
|
||||
|
||||
|
@@ -216,6 +216,11 @@
|
||||
}
|
||||
},
|
||||
"list-item": {
|
||||
"hover": {
|
||||
"background-color": {
|
||||
"value": "#2f2f36"
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"text": {
|
||||
"color": {
|
||||
|
@@ -38,7 +38,7 @@ import { type InstallAssetOutput } from './InstallAsset';
|
||||
|
||||
// We limit the number of assets that can be installed at once to avoid
|
||||
// timeouts especially with premium packs.
|
||||
const MAX_ASSETS_TO_INSTALL = 100;
|
||||
const MAX_ASSETS_TO_INSTALL = 200;
|
||||
|
||||
type Props = {|
|
||||
assetPack: PublicAssetPack | PrivateAssetPack | null,
|
||||
|
@@ -449,7 +449,7 @@ export const AssetStoreStateProvider = ({
|
||||
|
||||
const publicAssetPacksByTag = React.useMemo(
|
||||
() => {
|
||||
if (!publicAssetPacks) {
|
||||
if (!publicAssetPacks || !publicAssetPacks.starterPacks) {
|
||||
return null;
|
||||
}
|
||||
const publicAssetPacksByTag = {};
|
||||
|
@@ -49,7 +49,7 @@ import { getFolderTagsFromAssetShortHeaders } from './TagsHelper';
|
||||
import { PrivateGameTemplateStoreContext } from './PrivateGameTemplates/PrivateGameTemplateStoreContext';
|
||||
import { type AssetStorePageState } from './AssetStoreNavigator';
|
||||
|
||||
const ASSETS_DISPLAY_LIMIT = 200;
|
||||
const ASSETS_DISPLAY_LIMIT = 250;
|
||||
|
||||
const getAssetSize = (windowWidth: WidthType) => {
|
||||
switch (windowWidth) {
|
||||
|
@@ -19,6 +19,7 @@ import {
|
||||
import { useResponsiveWindowWidth } from '../../UI/Reponsive/ResponsiveWindowMeasurer';
|
||||
import Download from '../../UI/CustomSvgIcons/Download';
|
||||
import Add from '../../UI/CustomSvgIcons/Add';
|
||||
import ErrorBoundary from '../../UI/ErrorBoundary';
|
||||
|
||||
type Props = {|
|
||||
project: gdProject,
|
||||
@@ -31,13 +32,13 @@ type Props = {|
|
||||
/**
|
||||
* Allows to browse and install events based extensions.
|
||||
*/
|
||||
export default function ExtensionsSearchDialog({
|
||||
const ExtensionsSearchDialog = ({
|
||||
project,
|
||||
onClose,
|
||||
onInstallExtension,
|
||||
onExtensionInstalled,
|
||||
onCreateNew,
|
||||
}: Props) {
|
||||
}: Props) => {
|
||||
const windowWidth = useResponsiveWindowWidth();
|
||||
const isMobileScreen = windowWidth === 'small';
|
||||
const [isInstalling, setIsInstalling] = React.useState(false);
|
||||
@@ -171,4 +172,16 @@ export default function ExtensionsSearchDialog({
|
||||
)}
|
||||
</I18n>
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
const ExtensionsSearchDialogWithErrorBoundary = (props: Props) => (
|
||||
<ErrorBoundary
|
||||
componentTitle={<Trans>Extensions search</Trans>}
|
||||
scope="extensions-search-dialog"
|
||||
onClose={props.onClose}
|
||||
>
|
||||
<ExtensionsSearchDialog {...props} />
|
||||
</ErrorBoundary>
|
||||
);
|
||||
|
||||
export default ExtensionsSearchDialogWithErrorBoundary;
|
||||
|
@@ -36,6 +36,7 @@ import { enumerateAssetStoreIds } from './EnumerateAssetStoreIds';
|
||||
import PromisePool from '@supercharge/promise-pool';
|
||||
import NewObjectFromScratch from './NewObjectFromScratch';
|
||||
import { getAssetShortHeadersToDisplay } from './AssetsList';
|
||||
import ErrorBoundary from '../UI/ErrorBoundary';
|
||||
|
||||
const isDev = Window.isDev();
|
||||
|
||||
@@ -104,7 +105,7 @@ type Props = {|
|
||||
canInstallPrivateAsset: () => boolean,
|
||||
|};
|
||||
|
||||
export default function NewObjectDialog({
|
||||
function NewObjectDialog({
|
||||
project,
|
||||
layout,
|
||||
objectsContainer,
|
||||
@@ -501,3 +502,15 @@ export default function NewObjectDialog({
|
||||
</I18n>
|
||||
);
|
||||
}
|
||||
|
||||
const NewObjectDialogWithErrorBoundary = (props: Props) => (
|
||||
<ErrorBoundary
|
||||
componentTitle={<Trans>New Object dialog</Trans>}
|
||||
scope="new-object-dialog"
|
||||
onClose={props.onClose}
|
||||
>
|
||||
<NewObjectDialog {...props} />
|
||||
</ErrorBoundary>
|
||||
);
|
||||
|
||||
export default NewObjectDialogWithErrorBoundary;
|
||||
|