Browse Source

test: 图表调整
fix: 按钮点击 active修复
perf: 主题修改优化
refactor: 登录页 界面重构
test: 预留颜色修改
test: dashboard 页面 图表颜色调整
fix: 项目加载时 页面 loading 主题样式同步

lanceJiang 1 year ago
parent
commit
0520d1fdfa

+ 9 - 1
index.html

@@ -34,7 +34,7 @@
         }
 
         .loader {
-          color: #406eeb;
+					color: #409eff;
           font-size: 10px;
           margin: 80px auto;
           position: relative;
@@ -91,6 +91,14 @@
       </style>
       <div class="loader"></div>
     </div>
+		<script>
+			try {
+				const setting = JSON.parse(localStorage.getItem('setting'))
+				if (setting) {
+					document.querySelector('.loader').style.color = setting.themeColor || '#409eff'
+				}
+			}catch (e) {}
+		</script>
     <script type="module" src="/src/main.ts"></script>
   </body>
 </html>

+ 8 - 8
package.json

@@ -19,6 +19,9 @@
   },
   "dependencies": {
     "@element-plus/icons-vue": "^2.1.0",
+    "@form-create/component-wangeditor": "^3.1",
+    "@form-create/element-ui": "^3.1.16",
+    "@form-create/utils": "^3.1.15",
     "@vueuse/core": "^10.1.2",
     "axios": "^1.4.0",
     "colord": "^2.9.3",
@@ -37,28 +40,25 @@
     "vue-i18n": "^9.2.2",
     "vue-ls": "^4.2.0",
     "vue-router": "^4.2.1",
-    "vuedraggable": "^4.1.0",
-		"@form-create/component-wangeditor": "^3.1",
-		"@form-create/element-ui": "^3.1.16",
-		"@form-create/utils": "^3.1.15"
+    "vuedraggable": "^4.1.0"
   },
   "devDependencies": {
     "@types/js-md5": "^0.7.0",
     "@types/nprogress": "^0.2.0",
     "@types/path-browserify": "^1.0.0",
-		"@types/sortablejs": "^1.15.3",
+    "@types/sortablejs": "^1.15.3",
     "@types/vue-ls": "^3.2.3",
     "@typescript-eslint/eslint-plugin": "^5.59.7",
     "@typescript-eslint/parser": "^5.59.6",
     "@vitejs/plugin-vue": "^4.2.3",
     "@vitejs/plugin-vue-jsx": "^3.0.1",
-		"autoprefixer": "^10.4.16",
-		"codemirror": "^5.60.0",
+    "autoprefixer": "^10.4.16",
+    "codemirror": "^5.60.0",
     "eslint": "^8.40.0",
     "eslint-config-prettier": "^8.7.0",
     "eslint-plugin-prettier": "^4.2.1",
     "eslint-plugin-vue": "^9.9.0",
-		"postcss": "^8.4.30",
+    "postcss": "^8.4.30",
     "prettier": "^2.8.8",
     "rollup-plugin-visualizer": "^5.9.0",
     "sass": "^1.62.1",

+ 3 - 3
src/components/Chart.vue

@@ -84,7 +84,7 @@ const chartProps = {
 	},
 	// 图表loading
 	loading: {
-		type: [Boolean, undefined],
+		type: Boolean as PropType<boolean | undefined>,
 		default: undefined
 	},
 	// 图表配置参数对象
@@ -115,7 +115,7 @@ export const ChartComponent = defineComponent({
 		// const chartRef = ref(null)
 		const elRef = ref(null)
 		const localLoading = ref(true)
-		const { width, height, option } = props
+		// const { width, height, option } = props
 		const noData = computed(() => {
 			if (props.loading) return true
 			return !props.showChart
@@ -457,4 +457,4 @@ export const colorBase2 = [
 		}
 	}
 }
-</style>
+</style>

+ 19 - 16
src/components/ThemePicker/index.vue

@@ -1,18 +1,21 @@
 <template>
 	<el-color-picker
-		v-model="themeColor"
-		:predefine="['#409EFF', '#1890ff', '#304156', '#212121', '#11a983', '#13c2c2', '#6959CD', '#f5222d']"
+		:model-value="themeColor"
+		:predefine="predefineColors"
 		class="theme-picker"
 		popper-class="theme-picker-dropdown"
+		@update:modelValue="changeThemeColor"
 	/>
 </template>
 
 <script setup lang="ts">
 import { computed, watch } from 'vue'
 import useStore from '@/store'
-
+import { useTheme } from '@/hooks/useTheme'
+const predefineColors = ['#409eff', '#1890ff', '#304156', '#212121', '#11a983', '#13c2c2', '#6959CD', '#f5222d', '#ff9d00']
 // 参考连接:https://juejin.cn/post/7024025899813044232#heading-1
-import { ls } from '@/utils'
+// import { ls } from '@/utils'
+/*
 const mix = (color1: string, color2: string, weight: number) => {
 	weight = Math.max(Math.min(Number(weight), 1), 0)
 	const r1 = parseInt(color1.substring(1, 3), 16)
@@ -36,24 +39,24 @@ const mixBlack = '#000000'
 
 const node = document.documentElement
 
-const { setting } = useStore()
-const themeColor = computed(() => setting.themeColor)
-
 watch(themeColor, (color: string) => {
-	node.style.setProperty('--el-color-primary', color)
-	// ls.set('themeColor', color)
-
-	for (let i = 1; i < 10; i += 1) {
-		node.style.setProperty(`--el-color-primary-light-${i}`, mix(color, mixWhite, i * 0.1))
-	}
-	node.style.setProperty('--el-color-primary-dark', mix(color, mixBlack, 0.1))
-
+	// node.style.setProperty('--el-color-primary', color)
+	// // 颜色加深 :active 触发
+	// node.style.setProperty('--el-color-primary-dark-2', mix(color, mixBlack, 0.1))
+	// // ls.set('themeColor', color)
+	//
+	// for (let i = 1; i < 10; i += 1) {
+	// 	node.style.setProperty(`--el-color-primary-light-${i}`, mix(color, mixWhite, i * 0.1))
+	// }
 	// ls.set('style', node.style.cssText)
 })
+*/
+const { setting } = useStore()
+const themeColor = computed(() => setting.themeColor)
+const { changeThemeColor } = useTheme()
 </script>
 
 <style>
-.theme-message,
 .theme-picker-dropdown {
 	z-index: 99999 !important;
 }

+ 2 - 2
src/hooks/useTheme.ts

@@ -31,8 +31,8 @@ export const useTheme = () => {
 	const changeThemeColor = (val: string) => {
 		// 计算主题颜色变化
 		document.documentElement.style.setProperty('--el-color-primary', val)
-		// todo...
-		// document.documentElement.style.setProperty('--el-color-primary-dark-2', isDark.value ? `${getLightColor(val, 0.2)}` : `${getDarkColor(val, 0.3)}`)
+		// 颜色加深 :active 触发
+		document.documentElement.style.setProperty('--el-color-primary-dark-2', isDark.value ? `${getLightColor(val, 0.2)}` : `${getDarkColor(val, 0.3)}`)
 		for (let i = 1; i < 10; i++) {
 			const primaryColor = isDark.value ? `${getDarkColor(val, i / 10)}` : `${getLightColor(val, i / 10)}`
 			document.documentElement.style.setProperty(`--el-color-primary-light-${i}`, primaryColor)

+ 142 - 70
src/views/dashboard/components/Chart/BarChart.vue

@@ -34,113 +34,185 @@ const { mounted, chart, beforeDestroy, activated, deactivated } = resize()
 
 function initChart() {
 	const barChart = init(document.getElementById(props.id) as HTMLDivElement)
-
+	const category = [
+		'市区',
+		'万州',
+		'江北',
+		'南岸',
+		'北碚',
+		'綦南',
+		'长寿',
+		'永川',
+		'璧山',
+		'江津',
+		'城口',
+		'大足',
+		'垫江',
+		'丰都',
+		'奉节',
+		'合川',
+		'江津区',
+		'开州',
+		'南川',
+		'彭水',
+		'黔江',
+		'石柱',
+		'铜梁',
+		'潼南',
+		'巫山',
+		'巫溪',
+		'武隆',
+		'秀山',
+		'酉阳',
+		'云阳',
+		'忠县',
+		'川东' /*,
+		'检修'*/
+	]
+	const dottedBase = []
+	const lineData = [
+		18092, 20728, 24045, 28348, 32808, 36097, 39867, 44715, 48444, 50415, 56061, 62677, 59521, 67560, 18092, 20728, 24045, 28348, 32808, 36097, 39867,
+		44715, 48444, 50415, 36097, 39867, 44715, 48444, 50415, 50061, 32677, 49521 /*, 32808*/
+	]
+	const barData = [
+		4600, 5000, 5500, 6500, 7500, 8500, 9900, 12500, 14000, 21500, 23200, 24450, 25250, 33300, 4600, 5000, 5500, 6500, 7500, 8500, 9900, 22500, 14000,
+		21500, 8500, 9900, 12500, 14000, 21500, 23200, 24450, 25250 /*, 7500*/
+	]
+	const rateData = []
+	for (let i = 0; i < 33; i++) {
+		// var date = i+2001;
+		// category.push(date)
+		const rate = barData[i] / lineData[i]
+		rateData[i] = rate.toFixed(2)
+	}
 	barChart.setOption({
 		title: {
-			show: true,
-			text: '业绩总览',
+			// text: '增量设备贯通情况-单位',
 			x: 'center',
-			padding: 15,
+			y: 0,
 			textStyle: {
-				fontSize: 18,
-				fontStyle: 'normal',
-				fontWeight: 'bold',
-				color: '#337ecc'
+				color: '#B4B4B4',
+				fontSize: 16,
+				fontWeight: 'normal'
 			}
 		},
-		grid: {
-			left: '2%',
-			right: '2%',
-			bottom: '10%',
-			containLabel: true
-		},
+		// backgroundColor: '#3e4d8c',
+		// backgroundColor: '#f1f1fd',
+		// backgroundColor: '#D4AFFE',
 		tooltip: {
 			trigger: 'axis',
+			backgroundColor: 'rgba(255,255,255,0.1)',
+			textStyle: {
+				color: '#f6bd16'
+			},
 			axisPointer: {
-				type: 'cross',
-				crossStyle: {
-					color: '#999'
+				type: 'shadow',
+				label: {
+					show: true,
+					backgroundColor: '#7B7DDC'
 				}
 			}
 		},
 		legend: {
-			x: 'center',
-			y: 'bottom',
-			data: ['收入', '毛利润', '收入增长率', '利润增长率']
+			data: ['已贯通', '计划贯通', '贯通率'],
+			textStyle: {
+				color: '#B4B4B4'
+			},
+			top: '7%'
 		},
-		xAxis: [
-			{
-				type: 'category',
-				data: ['上海', '北京', '浙江', '广东', '深圳', '四川', '湖北', '安徽'],
-				axisPointer: {
-					type: 'shadow'
+		grid: {
+			x: '12%',
+			width: '82%',
+			y: '12%'
+		},
+		xAxis: {
+			data: category,
+			axisLine: {
+				lineStyle: {
+					color: '#B4B4B4'
 				}
+			},
+			axisTick: {
+				show: false
 			}
-		],
+		},
 		yAxis: [
 			{
-				type: 'value',
-				min: 0,
-				max: 10000,
-				interval: 2000,
+				splitLine: { show: false },
+				axisLine: {
+					lineStyle: {
+						color: '#B4B4B4'
+					}
+				},
+
 				axisLabel: {
 					formatter: '{value} '
 				}
 			},
 			{
-				type: 'value',
-				min: 0,
-				max: 100,
-				interval: 20,
+				splitLine: { show: false },
+				axisLine: {
+					lineStyle: {
+						color: '#B4B4B4'
+					}
+				},
 				axisLabel: {
-					formatter: '{value}%'
+					formatter: '{value} '
 				}
 			}
 		],
+
 		series: [
 			{
-				name: '收入',
-				type: 'bar',
-				data: [8000, 8200, 7000, 6200, 6500, 5500, 4500, 4200, 3800],
-				barWidth: 20,
+				name: '贯通率',
+				type: 'line',
+				smooth: true,
+				showAllSymbol: true,
+				symbol: 'emptyCircle',
+				symbolSize: 8,
+				yAxisIndex: 1,
 				itemStyle: {
-					color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
-						{ offset: 0, color: '#83bff6' },
-						{ offset: 0.5, color: '#188df0' },
-						{ offset: 1, color: '#188df0' }
-					])
-				}
+					normal: {
+						color: '#F02FC2'
+					}
+				},
+				data: rateData
 			},
+
 			{
-				name: '毛利润',
+				name: '已贯通',
 				type: 'bar',
-				data: [6700, 6800, 6300, 5213, 4500, 4200, 4200, 3800],
-				barWidth: 20,
-				itemStyle: {
-					color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
-						{ offset: 0, color: '#25d73c' },
-						{ offset: 0.5, color: '#1bc23d' },
-						{ offset: 1, color: '#179e61' }
-					])
-				}
-			},
-			{
-				name: '收入增长率',
-				type: 'line',
-				yAxisIndex: 1,
-				data: [65, 67, 65, 53, 47, 45, 43, 42, 41],
+				barWidth: 10,
 				itemStyle: {
-					color: '#67C23A'
-				}
+					normal: {
+						barBorderRadius: 5,
+						color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
+							{ offset: 0, color: '#956FD4' },
+							{ offset: 1, color: '#3EACE5' }
+						])
+					}
+				},
+				data: barData
 			},
+
 			{
-				name: '利润增长率',
-				type: 'line',
-				yAxisIndex: 1,
-				data: [80, 81, 78, 67, 65, 60, 56, 51, 45],
+				name: '计划贯通',
+				type: 'bar',
+				barGap: '-100%',
+				barWidth: 10,
 				itemStyle: {
-					color: '#409EFF'
-				}
+					normal: {
+						barBorderRadius: 5,
+						color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
+							{ offset: 0, color: 'rgba(156,107,211,0.5)' },
+							{ offset: 0.2, color: 'rgba(156,107,211,0.3)' },
+							{ offset: 1, color: 'rgba(156,107,211,0)' }
+						])
+					}
+				},
+				z: -12,
+
+				data: lineData
 			}
 		]
 	} as EChartsOption)

+ 167 - 65
src/views/dashboard/index.vue

@@ -1,16 +1,17 @@
 <template>
-	<div class="dashboard-container column-page-wrap">
+	<div ref="dashboardRef" class="dashboard-container column-page-wrap">
 		<!-- Echarts 图表 -->
 		<el-row :gutter="40" style="margin-top: 20px">
 			<el-col :sm="24" :lg="8" class="card-panel__col">
-				<BarChart id="barChart" height="400px" width="100%" class="chart-container" />
+				<BarChart style="background-color: var(--el-color-primary-light-9)" id="barChart" height="400px" width="100%" class="chart-container" />
 			</el-col>
 			<el-col :sm="24" :lg="8" class="card-panel__col">
 				<LeChart
-					class="local_chartWrap"
 					ref="chartRef"
+					style="background-color: var(--el-color-primary-light-9)"
+					class="local_chartWrap"
 					:loading="chartLoading"
-					:showChart="showChart"
+					:show-chart="showChart"
 					:option="chartOption"
 					:height="height"
 					label_topLeft="label_topLeft"
@@ -20,7 +21,7 @@
 				/>
 			</el-col>
 			<el-col :sm="24" :lg="8" class="card-panel__col">
-				<LeChart :loading="chartLoading2" isInitOption :option="chartOption2" height="400px" />
+				<LeChart :loading="chartLoading2" is-init-option :option="chartOption2" height="400px" />
 			</el-col>
 		</el-row>
 	</div>
@@ -29,10 +30,11 @@
 <script setup name="dashboard" lang="ts">
 // 组件引用
 import BarChart from './components/Chart/BarChart.vue'
-// import LeChart from '@/components/Chart.vue'
+import { colorBase1 } from '@/components/Chart.vue'
 import { reactive, ref, toRefs } from 'vue'
 import * as echarts from 'echarts'
-
+const dashboardRef = ref()
+window.dashboardRef = dashboardRef
 const getChartData = () => ({
 	title: {
 		show: true,
@@ -104,9 +106,8 @@ const getChartData = () => ({
 			barWidth: 20,
 			itemStyle: {
 				color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
-					{ offset: 0, color: '#83bff6' },
-					{ offset: 0.5, color: '#188df0' },
-					{ offset: 1, color: '#188df0' }
+					{ offset: 0, color: colorBase1[0] },
+					{ offset: 1, color: colorBase1[1] }
 				])
 			}
 		},
@@ -117,9 +118,8 @@ const getChartData = () => ({
 			barWidth: 20,
 			itemStyle: {
 				color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
-					{ offset: 0, color: '#25d73c' },
-					{ offset: 0.5, color: '#1bc23d' },
-					{ offset: 1, color: '#179e61' }
+					{ offset: 0, color: colorBase1[2] },
+					{ offset: 1, color: colorBase1[3] }
 				])
 			}
 		},
@@ -129,7 +129,45 @@ const getChartData = () => ({
 			yAxisIndex: 1,
 			data: [65, 67, 65, 53, 47, 45, 43, 42, 41],
 			itemStyle: {
-				color: '#67C23A'
+				color: new echarts.graphic.LinearGradient(1, 1, 0, 0, [
+					{
+						offset: 0,
+						color: colorBase1[0]
+					},
+					{
+						offset: 1,
+						color: colorBase1[1]
+					}
+				])
+			},
+			//区域填充样式
+			areaStyle: {
+				normal: {
+					//线性渐变,前4个参数分别是x0,y0,x2,y2(范围0~1);相当于图形包围盒中的百分比。如果最后一个参数是‘true’,则该四个值是绝对像素位置。
+					color: new echarts.graphic.LinearGradient(
+						0,
+						0,
+						0,
+						1,
+						[
+							{
+								offset: 0,
+								color: colorBase1[0]
+							},
+							// {
+							// 	offset: 0.5,
+							// 	color: colorBase1[2]
+							// },
+							{
+								offset: 1,
+								color: 'transparent'
+							}
+						],
+						false
+					)
+					// shadowColor: 'rgba(53,142,215, 0.9)', //阴影颜色
+					// shadowBlur: 20 //shadowBlur设图形阴影的模糊大小。配合shadowColor,shadowOffsetX/Y, 设置图形的阴影效果。
+				}
 			}
 		},
 		{
@@ -138,59 +176,120 @@ const getChartData = () => ({
 			yAxisIndex: 1,
 			data: [80, 81, 78, 67, 65, 60, 56, 51, 45],
 			itemStyle: {
-				color: '#409EFF'
+				color: new echarts.graphic.LinearGradient(1, 1, 0, 0, [
+					{
+						offset: 0,
+						color: colorBase1[2]
+					},
+					{
+						offset: 1,
+						color: colorBase1[3]
+					}
+				])
 			}
 		}
 	]
 })
-const getChartData2 = () => ({
-	title: {
-		show: true,
-		text: '产品分类总览',
-		x: 'center',
-		padding: 15,
-		textStyle: {
-			fontSize: 18,
-			fontStyle: 'normal',
-			fontWeight: 'bold',
-			color: '#337ecc'
-		}
-	},
-	grid: {
-		left: '2%',
-		right: '2%',
-		bottom: '10%',
-		containLabel: true
-	},
-	legend: {
-		top: 'bottom'
-	},
-	series: [
-		{
-			name: 'Nightingale Chart',
-			type: 'pie',
-			radius: [50, 130],
-			center: ['50%', '50%'],
-			roseType: 'area',
-			itemStyle: {
-				borderRadius: 6,
-				normal: {
-					color: function (params: any) {
-						//自定义颜色
-						const colorList = ['#409EFF', '#67C23A', '#E6A23C', '#F56C6C']
-						return colorList[params.dataIndex]
-					}
-				}
-			},
-			data: [
-				{ value: 26, name: '家用电器' },
-				{ value: 27, name: '户外运动' },
-				{ value: 24, name: '汽车用品' },
-				{ value: 23, name: '手机数码' }
-			]
-		}
+const getChartData2 = () => {
+	const data = [
+		{ value: 26, name: '家用电器' },
+		{ value: 27, name: '户外运动' },
+		{ value: 24, name: '汽车用品' },
+		{ value: 23, name: '手机数码' }
 	]
-})
+	// const backgroundColor = dashboardRef.value
+	const backgroundColor = dashboardRef.value && window.getComputedStyle(dashboardRef.value, null)?.getPropertyValue('background-color') || '#409eff'
+	return {
+		// backgroundColor: '#f69cd8',
+		backgroundColor,
+		title: {
+			show: true,
+			text: '产品分类总览',
+			x: 'center',
+			padding: 15,
+			textStyle: {
+				fontSize: 18,
+				fontStyle: 'normal',
+				fontWeight: 'bold',
+				color: '#337ecc'
+			}
+		},
+		grid: {
+			left: '2%',
+			right: '2%',
+			bottom: '10%',
+			containLabel: true
+		},
+		legend: {
+			top: 'bottom',
+			data: data.map(v => ({ name: v.name }))
+		},
+		series: [
+			{
+				// name: 'Nightingale Chart',
+				type: 'pie',
+				radius: [120, 130],
+				hoverAnimation: false,
+				center: ['50%', '50%'],
+				// roseType: 'area',
+				itemStyle: {
+					borderRadius: 12,
+					normal: {
+						color: function (params: any) {
+							// //自定义颜色
+							// const colorList = ['#409EFF', '#67C23A', '#E6A23C', '#F56C6C']
+							return colorBase1[params.dataIndex]
+						}
+					}
+				},
+				data: data
+					.map((v, i) => {
+						return [
+							{
+								...v,
+								itemStyle: {
+									normal: {
+										borderWidth: 10,
+										shadowBlur: 20,
+										// borderColor:color[i],
+										borderColor: new echarts.graphic.LinearGradient(0, 0, 1, 1, [
+											{
+												offset: 0,
+												color: colorBase1[i + 1]
+											},
+											{
+												offset: 1,
+												color: colorBase1[i]
+											}
+										]),
+										shadowColor: colorBase1[i]
+									}
+								}
+							},
+							{
+								value: 2,
+								name: '',
+								itemStyle: {
+									normal: {
+										label: {
+											show: false
+										},
+										labelLine: {
+											show: false
+										},
+										color: 'rgba(0, 0, 0, 0)',
+										borderColor: 'rgba(0, 0, 0, 0)',
+										borderWidth: 0
+									}
+								}
+							}
+						]
+					})
+					.flat(1)
+			}
+		]
+	}
+}
 const chartRef = ref()
 window.chartRef = chartRef
 const state = reactive({
@@ -200,7 +299,7 @@ const state = reactive({
 	width: '100%',
 	height: '600px',
 	chartLoading2: false,
-	chartOption2: getChartData2(),
+	chartOption2: getChartData2()
 	/*chartOption: getChartData()*/
 })
 const { chartLoading, chartOption, width, height, showChart, chartLoading2, chartOption2 } = toRefs(state)
@@ -241,7 +340,10 @@ new Promise(resolve => {
 .dashboard-container {
 	overflow-y: auto;
 	padding: 24px;
-	background-color: rgb(240, 242, 245);
+	//background-color: rgb(240, 242, 245);
+	//background: var(--el-bg-color);
+	//background: #f1f1fd;
+	background: var(--el-color-primary-light-9);
 	position: relative;
 
 	.card-panel__col {
@@ -252,4 +354,4 @@ new Promise(resolve => {
 		background: #ffffff;
 	}
 }
-</style>
+</style>

+ 7057 - 0
src/views/login/components/LoginMainSvg.vue

@@ -0,0 +1,7057 @@
+<template>
+	<svg
+		id="freepik_stories-server"
+		class="animated"
+		xmlns="http://www.w3.org/2000/svg"
+		viewBox="0 0 500 500"
+		version="1.1"
+		xmlns:xlink="http://www.w3.org/1999/xlink"
+		xmlns:svgjs="http://svgjs.com/svgjs"
+	>
+		<g id="freepik--background-simple--inject-43" class="animable" style="transform-origin: 256.578px 236.979px">
+			<polygon
+				id="elsxl5etmym7"
+				points="375.43 165.07 370.22 174.09 375.43 183.11 385.79 183.11 391 174.09 385.79 165.07 375.43 165.07"
+				style="fill: currentColor; transform-origin: 380.61px 174.09px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elwpdull37ewf"
+				points="359.35 174.37 354.15 183.38 359.35 192.4 369.71 192.4 374.92 183.38 369.71 174.37 359.35 174.37"
+				style="fill: currentColor; transform-origin: 364.535px 183.385px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elhqqwcgeq1ww"
+				points="343.28 183.66 338.07 192.68 343.28 201.7 353.64 201.7 358.85 192.68 353.64 183.66 343.28 183.66"
+				style="fill: currentColor; transform-origin: 348.46px 192.68px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elgqgj0aaqs4o"
+				points="327.2 174.37 322 183.38 327.2 192.4 337.56 192.4 342.77 183.38 337.56 174.37 327.2 174.37"
+				style="fill: currentColor; transform-origin: 332.385px 183.385px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el6dd4p3sqyg2"
+				points="401.87 192.4 407.07 183.38 401.87 174.37 391.5 174.37 386.3 183.38 391.5 192.4 401.87 192.4"
+				style="fill: currentColor; transform-origin: 396.685px 183.385px"
+				class="animable"
+			></polygon>
+			<path
+				id="el6qg3omhaqzh"
+				d="M417.94,183.11l1.67-2.89a86.8,86.8,0,0,0-2.11-15.15h-9.92l-5.21,9,5.21,9Z"
+				style="fill: currentColor; transform-origin: 410.99px 174.09px"
+				class="animable"
+			></path>
+			<polygon
+				id="elebjk9ju3yfd"
+				points="385.79 201.7 391 192.68 385.79 183.66 375.43 183.66 370.22 192.68 375.43 201.7 385.79 201.7"
+				style="fill: currentColor; transform-origin: 380.61px 192.68px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elsutaywdol89"
+				points="391.5 155.78 386.3 164.79 391.5 173.81 401.87 173.81 407.07 164.79 401.87 155.78 391.5 155.78"
+				style="fill: currentColor; transform-origin: 396.685px 164.795px"
+				class="animable"
+			></polygon>
+			<path
+				id="elp2gr6hgn5y"
+				d="M402.37,155.5l5.21,9h9.79a87.84,87.84,0,0,0-6.62-18h-3.17Z"
+				style="fill: currentColor; transform-origin: 409.87px 155.5px"
+				class="animable"
+			></path>
+			<polygon
+				id="eljj3jj3uzmf9"
+				points="198.6 174.37 193.4 183.38 198.6 192.4 208.97 192.4 214.17 183.38 208.97 174.37 198.6 174.37"
+				style="fill: currentColor; transform-origin: 203.785px 183.385px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elar3mq6zl9el"
+				points="369.71 192.96 359.35 192.96 354.15 201.97 359.35 210.99 369.71 210.99 374.92 201.97 369.71 192.96"
+				style="fill: currentColor; transform-origin: 364.535px 201.975px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elm1u9g75uq5"
+				points="230.75 174.37 225.55 183.38 230.75 192.4 241.12 192.4 246.32 183.38 241.12 174.37 230.75 174.37"
+				style="fill: currentColor; transform-origin: 235.935px 183.385px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elhng26nr6ojr"
+				points="214.68 165.07 209.47 174.09 214.68 183.11 225.04 183.11 230.25 174.09 225.04 165.07 214.68 165.07"
+				style="fill: currentColor; transform-origin: 219.86px 174.09px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elurh2h0vel6e"
+				points="166.45 155.78 161.25 164.79 166.45 173.81 176.82 173.81 182.02 164.79 176.82 155.78 166.45 155.78"
+				style="fill: currentColor; transform-origin: 171.635px 164.795px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elkygxo4g89m"
+				points="182.53 165.07 177.32 174.09 182.53 183.11 192.89 183.11 198.1 174.09 192.89 165.07 182.53 165.07"
+				style="fill: currentColor; transform-origin: 187.71px 174.09px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el2ifw9vs2zbh"
+				points="262.9 192.96 257.7 201.97 262.9 210.99 273.26 210.99 278.47 201.97 273.26 192.96 262.9 192.96"
+				style="fill: currentColor; transform-origin: 268.085px 201.975px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el846znmujz7e"
+				points="278.98 183.66 273.77 192.68 278.98 201.7 289.34 201.7 294.55 192.68 289.34 183.66 278.98 183.66"
+				style="fill: currentColor; transform-origin: 284.16px 192.68px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elf8kmin85xr6"
+				points="295.05 192.96 289.85 201.97 295.05 210.99 305.42 210.99 310.62 201.97 305.42 192.96 295.05 192.96"
+				style="fill: currentColor; transform-origin: 300.235px 201.975px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elvtbuwjr8ude"
+				points="311.13 183.66 305.92 192.68 311.13 201.7 321.49 201.7 326.7 192.68 321.49 183.66 311.13 183.66"
+				style="fill: currentColor; transform-origin: 316.31px 192.68px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elxdinkjphz0s"
+				points="246.83 183.66 241.62 192.68 246.83 201.7 257.19 201.7 262.4 192.68 257.19 183.66 246.83 183.66"
+				style="fill: currentColor; transform-origin: 252.01px 192.68px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elrr8f5zpu27b"
+				points="353.64 258.02 343.28 258.02 338.07 267.04 343.28 276.06 353.64 276.06 358.85 267.04 353.64 258.02"
+				style="fill: currentColor; transform-origin: 348.46px 267.04px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eltsv4flkrh3o"
+				points="160.74 294.65 165.95 285.63 160.74 276.61 150.38 276.61 145.17 285.63 150.38 294.65 160.74 294.65"
+				style="fill: currentColor; transform-origin: 155.56px 285.63px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el6h04typp4zi"
+				points="176.82 285.35 182.02 276.34 176.82 267.32 166.45 267.32 161.25 276.34 166.45 285.35 176.82 285.35"
+				style="fill: currentColor; transform-origin: 171.635px 276.335px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elko3hydd784"
+				points="192.89 276.06 198.1 267.04 192.89 258.02 182.53 258.02 177.32 267.04 182.53 276.06 192.89 276.06"
+				style="fill: currentColor; transform-origin: 187.71px 267.04px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elvv9duv0tco8"
+				points="208.97 266.76 214.17 257.75 208.97 248.73 198.6 248.73 193.4 257.75 198.6 266.76 208.97 266.76"
+				style="fill: currentColor; transform-origin: 203.785px 257.745px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elo7rhgbt115p"
+				points="225.04 276.06 230.25 267.04 225.04 258.02 214.68 258.02 209.47 267.04 214.68 276.06 225.04 276.06"
+				style="fill: currentColor; transform-origin: 219.86px 267.04px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elfxoqtpccen6"
+				points="128.59 294.65 133.8 285.63 128.59 276.61 118.23 276.61 113.02 285.63 118.23 294.65 128.59 294.65"
+				style="fill: currentColor; transform-origin: 123.41px 285.63px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elbopyw3md4kv"
+				points="144.67 285.35 149.87 276.34 144.67 267.32 134.3 267.32 129.1 276.34 134.3 285.35 144.67 285.35"
+				style="fill: currentColor; transform-origin: 139.485px 276.335px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elprrdumcjpad"
+				points="86.08 294.65 96.44 294.65 101.65 285.63 96.44 276.61 86.08 276.61 80.87 285.63 86.08 294.65"
+				style="fill: currentColor; transform-origin: 91.26px 285.63px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el1fud60w457x"
+				points="112.52 285.35 117.72 276.34 112.52 267.32 102.15 267.32 96.95 276.34 102.15 285.35 112.52 285.35"
+				style="fill: currentColor; transform-origin: 107.335px 276.335px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elgfgwiwvvm1a"
+				points="241.12 266.76 246.32 257.75 241.12 248.73 230.75 248.73 225.55 257.75 230.75 266.76 241.12 266.76"
+				style="fill: currentColor; transform-origin: 235.935px 257.745px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elub06a9ik9o"
+				points="353.64 220.84 343.28 220.84 338.07 229.86 343.28 238.88 353.64 238.88 358.85 229.86 353.64 220.84"
+				style="fill: currentColor; transform-origin: 348.46px 229.86px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el6i1z8gxh95g"
+				points="353.64 239.43 343.28 239.43 338.07 248.45 343.28 257.47 353.64 257.47 358.85 248.45 353.64 239.43"
+				style="fill: currentColor; transform-origin: 348.46px 248.45px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elt55e7qarvn8"
+				points="353.64 294.65 358.85 285.63 353.64 276.61 343.28 276.61 338.07 285.63 343.28 294.65 353.64 294.65"
+				style="fill: currentColor; transform-origin: 348.46px 285.63px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elc0ehsntaq6f"
+				points="273.26 266.76 278.47 257.75 273.26 248.73 262.9 248.73 257.7 257.75 262.9 266.76 273.26 266.76"
+				style="fill: currentColor; transform-origin: 268.085px 257.745px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elwb9do55h0cd"
+				points="369.71 229.58 374.92 220.57 369.71 211.55 359.35 211.55 354.15 220.57 359.35 229.58 369.71 229.58"
+				style="fill: currentColor; transform-origin: 364.535px 220.565px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el0gzbrgdlt3g"
+				points="150.38 146.48 145.17 155.5 150.38 164.52 160.74 164.52 165.95 155.5 160.74 146.48 150.38 146.48"
+				style="fill: currentColor; transform-origin: 155.56px 155.5px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el4zchb6s73g8"
+				points="305.42 266.76 310.62 257.75 305.42 248.73 295.05 248.73 289.85 257.75 295.05 266.76 305.42 266.76"
+				style="fill: currentColor; transform-origin: 300.235px 257.745px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eln4fy3x70tp"
+				points="337.56 285.35 342.77 276.34 337.56 267.32 327.2 267.32 322 276.34 327.2 285.35 337.56 285.35"
+				style="fill: currentColor; transform-origin: 332.385px 276.335px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elefc3pdadwmf"
+				points="289.34 257.47 294.55 248.45 289.34 239.43 278.98 239.43 273.77 248.45 278.98 257.47 289.34 257.47"
+				style="fill: currentColor; transform-origin: 284.16px 248.45px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elp3jcm46exri"
+				points="321.49 276.06 326.7 267.04 321.49 258.02 311.13 258.02 305.92 267.04 311.13 276.06 321.49 276.06"
+				style="fill: currentColor; transform-origin: 316.31px 267.04px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el9915iohvgqj"
+				points="262.9 174.37 257.7 183.38 262.9 192.4 273.26 192.4 278.47 183.38 273.26 174.37 262.9 174.37"
+				style="fill: currentColor; transform-origin: 268.085px 183.385px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elqae8twl1z4o"
+				points="385.79 202.25 375.43 202.25 370.22 211.27 375.43 220.29 385.79 220.29 391 211.27 385.79 202.25"
+				style="fill: currentColor; transform-origin: 380.61px 211.27px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el5kjqip6rhf"
+				points="96.44 276.06 101.65 267.04 96.44 258.02 86.08 258.02 80.87 267.04 86.08 276.06 96.44 276.06"
+				style="fill: currentColor; transform-origin: 91.26px 267.04px"
+				class="animable"
+			></polygon>
+			<path
+				id="ellvi1bg3i2q"
+				d="M417.94,201.7l2-3.52c-.11-3.77-.09-7.48-.15-11.25l-1.89-3.27H407.58l-5.21,9,5.21,9Z"
+				style="fill: currentColor; transform-origin: 411.155px 192.68px"
+				class="animable"
+			></path>
+			<path
+				id="elhj7wtlvkpn8"
+				d="M418.45,183.39l1.36,2.35c0-1.47-.08-3-.15-4.46Z"
+				style="fill: currentColor; transform-origin: 419.13px 183.51px"
+				class="animable"
+			></path>
+			<path
+				id="el3n2w7b2kljo"
+				d="M420,199.26,418.45,202l1.92,3.33C420.19,203.27,420.08,201.26,420,199.26Z"
+				style="fill: currentColor; transform-origin: 419.41px 202.295px"
+				class="animable"
+			></path>
+			<polygon
+				id="elb8gdv0uars"
+				points="385.79 238.88 391 229.86 385.79 220.84 375.43 220.84 370.22 229.86 375.43 238.88 385.79 238.88"
+				style="fill: currentColor; transform-origin: 380.61px 229.86px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="ellozig5eann"
+				points="369.71 267.32 359.35 267.32 354.15 276.34 359.35 285.35 369.71 285.35 374.92 276.34 369.71 267.32"
+				style="fill: currentColor; transform-origin: 364.535px 276.335px"
+				class="animable"
+			></polygon>
+			<path
+				id="eln1xh0vltf2a"
+				d="M128.59,145.93l3.13-5.42c-4.85,1.75-9.28,3.54-13.29,5.42Z"
+				style="fill: currentColor; transform-origin: 125.075px 143.22px"
+				class="animable"
+			></path>
+			<polygon
+				id="elgs8si3d6tyg"
+				points="369.71 248.73 359.35 248.73 354.15 257.75 359.35 266.76 369.71 266.76 374.92 257.75 369.71 248.73"
+				style="fill: currentColor; transform-origin: 364.535px 257.745px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elv6qrcpq3ni"
+				points="369.71 230.14 359.35 230.14 354.15 239.16 359.35 248.17 369.71 248.17 374.92 239.16 369.71 230.14"
+				style="fill: currentColor; transform-origin: 364.535px 239.155px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elzhjshy52aqe"
+				points="295.05 174.37 289.85 183.38 295.05 192.4 305.42 192.4 310.62 183.38 305.42 174.37 295.05 174.37"
+				style="fill: currentColor; transform-origin: 300.235px 183.385px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el9666aoe534d"
+				points="327.2 155.78 322 164.79 327.2 173.81 337.56 173.81 342.77 164.79 337.56 155.78 327.2 155.78"
+				style="fill: currentColor; transform-origin: 332.385px 164.795px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eluds438huvml"
+				points="311.13 165.07 305.92 174.09 311.13 183.11 321.49 183.11 326.7 174.09 321.49 165.07 311.13 165.07"
+				style="fill: currentColor; transform-origin: 316.31px 174.09px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el34ttmx1zkq4"
+				points="369.71 322.54 374.92 313.52 369.71 304.5 359.35 304.5 354.15 313.52 359.35 322.54 369.71 322.54"
+				style="fill: currentColor; transform-origin: 364.535px 313.52px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elv523hx0eej"
+				points="278.98 165.07 273.77 174.09 278.98 183.11 289.34 183.11 294.55 174.09 289.34 165.07 278.98 165.07"
+				style="fill: currentColor; transform-origin: 284.16px 174.09px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="ela3uajpjm1k4"
+				points="391.5 137.19 386.3 146.21 391.5 155.22 401.87 155.22 407.07 146.21 401.87 137.19 391.5 137.19"
+				style="fill: currentColor; transform-origin: 396.685px 146.205px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el0p41txhyrc9"
+				points="375.43 146.48 370.22 155.5 375.43 164.52 385.79 164.52 391 155.5 385.79 146.48 375.43 146.48"
+				style="fill: currentColor; transform-origin: 380.61px 155.5px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elxra0y3e3zi"
+				points="343.28 165.07 338.07 174.09 343.28 183.11 353.64 183.11 358.85 174.09 353.64 165.07 343.28 165.07"
+				style="fill: currentColor; transform-origin: 348.46px 174.09px"
+				class="animable"
+			></polygon>
+			<path
+				id="el0667m4i09yzr"
+				d="M407.58,145.93h2.94A49.58,49.58,0,0,0,404.05,134l-1.68,2.91Z"
+				style="fill: currentColor; transform-origin: 406.445px 139.965px"
+				class="animable"
+			></path>
+			<polygon
+				id="eln1u8nyfkew"
+				points="359.35 155.78 354.15 164.79 359.35 173.81 369.71 173.81 374.92 164.79 369.71 155.78 359.35 155.78"
+				style="fill: currentColor; transform-origin: 364.535px 164.795px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eln8o6e4ripm8"
+				points="369.71 285.91 359.35 285.91 354.15 294.93 359.35 303.94 369.71 303.94 374.92 294.93 369.71 285.91"
+				style="fill: currentColor; transform-origin: 364.535px 294.925px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elkmlosr5zh"
+				points="144.67 303.94 149.87 294.93 144.67 285.91 134.3 285.91 129.1 294.93 134.3 303.94 144.67 303.94"
+				style="fill: currentColor; transform-origin: 139.485px 294.925px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eleiv2ch5y88f"
+				points="128.59 313.24 133.8 304.22 128.59 295.2 118.23 295.2 113.02 304.22 118.23 313.24 128.59 313.24"
+				style="fill: currentColor; transform-origin: 123.41px 304.22px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el71hrw87jwmx"
+				points="112.52 303.94 117.72 294.93 112.52 285.91 102.15 285.91 96.95 294.93 102.15 303.94 112.52 303.94"
+				style="fill: currentColor; transform-origin: 107.335px 294.925px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elhc4rqxp96te"
+				points="160.74 313.24 165.95 304.22 160.74 295.2 150.38 295.2 145.17 304.22 150.38 313.24 160.74 313.24"
+				style="fill: currentColor; transform-origin: 155.56px 304.22px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elcmuvhom4xs"
+				points="176.82 303.94 182.02 294.93 176.82 285.91 166.45 285.91 161.25 294.93 166.45 303.94 176.82 303.94"
+				style="fill: currentColor; transform-origin: 171.635px 294.925px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elp13xw4onn2s"
+				points="70 303.94 80.37 303.94 85.57 294.93 80.37 285.91 70 285.91 64.8 294.93 70 303.94"
+				style="fill: currentColor; transform-origin: 75.185px 294.925px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elptqmwgqzyv"
+				points="192.89 294.65 198.1 285.63 192.89 276.61 182.53 276.61 177.32 285.63 182.53 294.65 192.89 294.65"
+				style="fill: currentColor; transform-origin: 187.71px 285.63px"
+				class="animable"
+			></polygon>
+			<path
+				id="elh9cbqbuxpho"
+				d="M70,285.35H80.37l5.2-9-5.2-9h-9c-1.09,1-2.15,2-3.15,3l-3.47,6Z"
+				style="fill: currentColor; transform-origin: 75.16px 276.35px"
+				class="animable"
+			></path>
+			<polygon
+				id="el4rw78xktffw"
+				points="70 322.54 80.37 322.54 85.57 313.52 80.37 304.5 70 304.5 64.8 313.52 70 322.54"
+				style="fill: currentColor; transform-origin: 75.185px 313.52px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el4z5pkpdb5i3"
+				points="96.44 313.24 101.65 304.22 96.44 295.2 86.08 295.2 80.87 304.22 86.08 313.24 96.44 313.24"
+				style="fill: currentColor; transform-origin: 91.26px 304.22px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el2zoxu3pm6x6"
+				points="289.34 276.06 294.55 267.04 289.34 258.02 278.98 258.02 273.77 267.04 278.98 276.06 289.34 276.06"
+				style="fill: currentColor; transform-origin: 284.16px 267.04px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el8xeblqca8xi"
+				points="321.49 294.65 326.7 285.63 321.49 276.61 311.13 276.61 305.92 285.63 311.13 294.65 321.49 294.65"
+				style="fill: currentColor; transform-origin: 316.31px 285.63px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el2iatubbv019"
+				points="353.64 313.24 358.85 304.22 353.64 295.2 343.28 295.2 338.07 304.22 343.28 313.24 353.64 313.24"
+				style="fill: currentColor; transform-origin: 348.46px 304.22px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elbr713ebdzz"
+				points="305.42 285.35 310.62 276.34 305.42 267.32 295.05 267.32 289.85 276.34 295.05 285.35 305.42 285.35"
+				style="fill: currentColor; transform-origin: 300.235px 276.335px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elkt9kzogwok"
+				points="337.56 303.94 342.77 294.93 337.56 285.91 327.2 285.91 322 294.93 327.2 303.94 337.56 303.94"
+				style="fill: currentColor; transform-origin: 332.385px 294.925px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elljxf9qwneuk"
+				points="225.04 294.65 230.25 285.63 225.04 276.61 214.68 276.61 209.47 285.63 214.68 294.65 225.04 294.65"
+				style="fill: currentColor; transform-origin: 219.86px 285.63px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elc6beddm6ds"
+				points="273.26 285.35 278.47 276.34 273.26 267.32 262.9 267.32 257.7 276.34 262.9 285.35 273.26 285.35"
+				style="fill: currentColor; transform-origin: 268.085px 276.335px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el9jl9y27qktt"
+				points="208.97 285.35 214.17 276.34 208.97 267.32 198.6 267.32 193.4 276.34 198.6 285.35 208.97 285.35"
+				style="fill: currentColor; transform-origin: 203.785px 276.335px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elvjnk7k0m3po"
+				points="241.12 285.35 246.32 276.34 241.12 267.32 230.75 267.32 225.55 276.34 230.75 285.35 241.12 285.35"
+				style="fill: currentColor; transform-origin: 235.935px 276.335px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el5f11l01l8j5"
+				points="257.19 276.06 262.4 267.04 257.19 258.02 246.83 258.02 241.62 267.04 246.83 276.06 257.19 276.06"
+				style="fill: currentColor; transform-origin: 252.01px 267.04px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el9j8b7pqendb"
+				points="401.87 210.99 407.07 201.97 401.87 192.96 391.5 192.96 386.3 201.97 391.5 210.99 401.87 210.99"
+				style="fill: currentColor; transform-origin: 396.685px 201.975px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elph5hsgw9m7"
+				points="144.67 229.58 149.87 220.57 144.67 211.55 134.3 211.55 129.1 220.57 134.3 229.58 144.67 229.58"
+				style="fill: currentColor; transform-origin: 139.485px 220.565px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elwqp4cy3nssl"
+				points="128.59 238.88 133.8 229.86 128.59 220.84 118.23 220.84 113.02 229.86 118.23 238.88 128.59 238.88"
+				style="fill: currentColor; transform-origin: 123.41px 229.86px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elt44hl6lnzvf"
+				points="192.89 238.88 198.1 229.86 192.89 220.84 182.53 220.84 177.32 229.86 182.53 238.88 192.89 238.88"
+				style="fill: currentColor; transform-origin: 187.71px 229.86px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elgoc1l83849d"
+				points="160.74 238.88 165.95 229.86 160.74 220.84 150.38 220.84 145.17 229.86 150.38 238.88 160.74 238.88"
+				style="fill: currentColor; transform-origin: 155.56px 229.86px"
+				class="animable"
+			></polygon>
+			<path
+				id="el122al56w1e6"
+				d="M87.84,183.66a34.24,34.24,0,0,0,2.28,18h6.32l5.21-9-5.21-9Z"
+				style="fill: currentColor; transform-origin: 94.5723px 192.66px"
+				class="animable"
+			></path>
+			<path
+				id="elubf4oueeh4"
+				d="M96.44,202.25H90.35c2.27,5.45,5.47,10.16,8,14.79l3.33-5.77Z"
+				style="fill: currentColor; transform-origin: 96.015px 209.645px"
+				class="animable"
+			></path>
+			<polygon
+				id="el5j1jqn13sf3"
+				points="102.15 192.96 96.95 201.97 102.15 210.99 112.52 210.99 117.72 201.97 112.52 192.96 102.15 192.96"
+				style="fill: currentColor; transform-origin: 107.335px 201.975px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elnauv8y2ftg7"
+				points="150.38 202.25 145.17 211.27 150.38 220.29 160.74 220.29 165.95 211.27 160.74 202.25 150.38 202.25"
+				style="fill: currentColor; transform-origin: 155.56px 211.27px"
+				class="animable"
+			></polygon>
+			<path
+				id="elw71pw50esel"
+				d="M117.72,220.57l-5.2-9H102.15l-3.51,6.08c2,3.89,3.56,7.74,3.58,12h10.3Z"
+				style="fill: currentColor; transform-origin: 108.18px 220.61px"
+				class="animable"
+			></path>
+			<polygon
+				id="elaigcltmlc18"
+				points="128.59 220.29 133.8 211.27 128.59 202.25 118.23 202.25 113.02 211.27 118.23 220.29 128.59 220.29"
+				style="fill: currentColor; transform-origin: 123.41px 211.27px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elhzgyzorgs5"
+				points="160.74 257.47 165.95 248.45 160.74 239.43 150.38 239.43 145.17 248.45 150.38 257.47 160.74 257.47"
+				style="fill: currentColor; transform-origin: 155.56px 248.45px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elltmib1gvzid"
+				points="128.59 257.47 133.8 248.45 128.59 239.43 118.23 239.43 113.02 248.45 118.23 257.47 128.59 257.47"
+				style="fill: currentColor; transform-origin: 123.41px 248.45px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elk74aj91ph"
+				points="134.3 192.96 129.1 201.97 134.3 210.99 144.67 210.99 149.87 201.97 144.67 192.96 134.3 192.96"
+				style="fill: currentColor; transform-origin: 139.485px 201.975px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elgd4o0u11lpe"
+				points="198.6 211.55 193.4 220.57 198.6 229.58 208.97 229.58 214.17 220.57 208.97 211.55 198.6 211.55"
+				style="fill: currentColor; transform-origin: 203.785px 220.565px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elusliw7pu968"
+				points="176.82 248.17 182.02 239.16 176.82 230.14 166.45 230.14 161.25 239.16 166.45 248.17 176.82 248.17"
+				style="fill: currentColor; transform-origin: 171.635px 239.155px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elgj5a43syjp7"
+				points="144.67 248.17 149.87 239.16 144.67 230.14 134.3 230.14 129.1 239.16 134.3 248.17 144.67 248.17"
+				style="fill: currentColor; transform-origin: 139.485px 239.155px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el21qa3l979yn"
+				points="118.23 183.66 113.02 192.68 118.23 201.7 128.59 201.7 133.8 192.68 128.59 183.66 118.23 183.66"
+				style="fill: currentColor; transform-origin: 123.41px 192.68px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elnjbcpt8rgg"
+				points="102.15 174.37 96.95 183.38 102.15 192.4 112.52 192.4 117.72 183.38 112.52 174.37 102.15 174.37"
+				style="fill: currentColor; transform-origin: 107.335px 183.385px"
+				class="animable"
+			></polygon>
+			<path
+				id="elqgp0sqvj92"
+				d="M94.32,165.07a45.62,45.62,0,0,0-6.4,18h8.52l5.21-9-5.21-9Z"
+				style="fill: currentColor; transform-origin: 94.785px 174.07px"
+				class="animable"
+			></path>
+			<path
+				id="elb0a0x1ui7j9"
+				d="M112.52,248.17l5.2-9-5.2-9H102.21a22.24,22.24,0,0,1-3.89,11.4l3.83,6.63Z"
+				style="fill: currentColor; transform-origin: 108.02px 239.185px"
+				class="animable"
+			></path>
+			<polygon
+				id="el4n1wjtf8wih"
+				points="176.82 229.58 182.02 220.57 176.82 211.55 166.45 211.55 161.25 220.57 166.45 229.58 176.82 229.58"
+				style="fill: currentColor; transform-origin: 171.635px 220.565px"
+				class="animable"
+			></polygon>
+			<path
+				id="elby7swllfdu"
+				d="M354.15,109l5.2,9h10.36l5.21-9-1.48-2.57c-3.59-2.18-7.5-4.34-11.78-6.44h-2.31Z"
+				style="fill: currentColor; transform-origin: 364.535px 108.995px"
+				class="animable"
+			></path>
+			<path
+				id="elv6gw2spa9d8"
+				d="M337.56,341.68H327.2l-5.2,9,5.2,9h4.58c2.55-1.48,5.31-2.95,8.31-4.37l2.68-4.64Z"
+				style="fill: currentColor; transform-origin: 332.385px 350.68px"
+				class="animable"
+			></path>
+			<path
+				id="elp9w62a30c6"
+				d="M214.68,108.75H225l5.21-9-.85-1.46c-2,1.12-3.83,2.25-5.48,3.39-3.39,2.35-6.54,4.47-9.62,6.44Z"
+				style="fill: currentColor; transform-origin: 222.235px 103.52px"
+				class="animable"
+			></path>
+			<polygon
+				id="el79bz9qs6pj7"
+				points="214.68 202.25 209.47 211.27 214.68 220.29 225.04 220.29 230.25 211.27 225.04 202.25 214.68 202.25"
+				style="fill: currentColor; transform-origin: 219.86px 211.27px"
+				class="animable"
+			></polygon>
+			<path
+				id="elm9255kvou1"
+				d="M385.79,332.38H375.43l-5.21,9,2.1,3.64A132.71,132.71,0,0,1,390,343.17l1-1.77Z"
+				style="fill: currentColor; transform-origin: 380.61px 338.7px"
+				class="animable"
+			></path>
+			<path
+				id="elihwx0sj8xo"
+				d="M455.46,303.34a60.7,60.7,0,0,0-1.64-14l-3.22,5.58Z"
+				style="fill: currentColor; transform-origin: 453.03px 296.34px"
+				class="animable"
+			></path>
+			<path
+				id="ellxjr45ppwrc"
+				d="M273.27,378.86H262.9l-5.22,9,.71,1.21a62.32,62.32,0,0,0,18.68,1.24l1.41-2.45Z"
+				style="fill: currentColor; transform-origin: 268.08px 384.696px"
+				class="animable"
+			></path>
+			<path
+				id="elf1dc55j91eb"
+				d="M293.23,83.43a149.38,149.38,0,0,0-17.61.9L279,90.16h10.36Z"
+				style="fill: currentColor; transform-origin: 284.425px 86.7926px"
+				class="animable"
+			></path>
+			<path
+				id="elqpcghj4hyuf"
+				d="M353.64,332.38H343.28l-5.21,9,5.21,9h8.85c.63-.22,1.25-.45,1.89-.66l4.83-8.36Z"
+				style="fill: currentColor; transform-origin: 348.46px 341.38px"
+				class="animable"
+			></path>
+			<polygon
+				id="elba9prffv1nn"
+				points="278.98 108.75 289.34 108.75 294.55 99.73 289.34 90.71 278.98 90.71 273.77 99.73 278.98 108.75"
+				style="fill: currentColor; transform-origin: 284.16px 99.73px"
+				class="animable"
+			></polygon>
+			<path
+				id="el4h42hqtpd5t"
+				d="M182.53,127.34h10.36l5.21-9-.48-.83c-4.93,2.38-10.33,4.66-16.72,7Z"
+				style="fill: currentColor; transform-origin: 189.5px 122.425px"
+				class="animable"
+			></path>
+			<path
+				id="elawbwolkty0h"
+				d="M102.15,173.81h10.37l5.2-9-5.2-9h-10l-.68.6L97,164.8Z"
+				style="fill: currentColor; transform-origin: 107.36px 164.81px"
+				class="animable"
+			></path>
+			<polygon
+				id="elrda4xd112f"
+				points="241.12 229.58 246.32 220.57 241.12 211.55 230.75 211.55 225.55 220.57 230.75 229.58 241.12 229.58"
+				style="fill: currentColor; transform-origin: 235.935px 220.565px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elyon9ocueppi"
+				points="214.68 220.84 209.47 229.86 214.68 238.88 225.04 238.88 230.25 229.86 225.04 220.84 214.68 220.84"
+				style="fill: currentColor; transform-origin: 219.86px 229.86px"
+				class="animable"
+			></polygon>
+			<path
+				id="eljxvtao032e"
+				d="M134.3,155.22h10.37l5.2-9-5.2-9h-3.16q-4.69,1.5-8.95,3l-3.46,6Z"
+				style="fill: currentColor; transform-origin: 139.485px 146.22px"
+				class="animable"
+			></path>
+			<path
+				id="el0vofeikp1ft"
+				d="M85.57,332.11l-5.2-9H70l-4.81,8.34a38.11,38.11,0,0,0,7.24,9.69h7.94Z"
+				style="fill: currentColor; transform-origin: 75.38px 332.125px"
+				class="animable"
+			></path>
+			<path
+				id="elys2c9yf28ys"
+				d="M160.74,332.38H150.38l-5.21,9,5.12,8.87a43.3,43.3,0,0,1,7.15.15h3.3l5.21-9Z"
+				style="fill: currentColor; transform-origin: 155.56px 341.39px"
+				class="animable"
+			></path>
+			<path
+				id="elp1luyglnrvo"
+				d="M85.57,257.75l-.8-1.39C80.4,260.06,76,263.3,72,266.76h8.33Z"
+				style="fill: currentColor; transform-origin: 78.785px 261.56px"
+				class="animable"
+			></path>
+			<path
+				id="elkb2167loxso"
+				d="M150.38,145.93h10.36l5.21-9-3.55-6.15c-3.41,1.07-7,2.19-11,3.36-1.94.58-3.82,1.15-5.66,1.72l-.62,1.07Z"
+				style="fill: currentColor; transform-origin: 155.535px 138.355px"
+				class="animable"
+			></path>
+			<path
+				id="elnk2xdah1ic"
+				d="M69.5,304.22l-5.21-9H57.74a58.08,58.08,0,0,0,.2,7.58c.33,3.77.79,7.24,1.37,10.46h5Z"
+				style="fill: currentColor; transform-origin: 63.598px 304.24px"
+				class="animable"
+			></path>
+			<path
+				id="elj0yvryhw77"
+				d="M101.65,341.4l-5.21-9H86.08l-5.21,9,4.89,8.46c.41.19.83.38,1.26.56h9.42Z"
+				style="fill: currentColor; transform-origin: 91.26px 341.41px"
+				class="animable"
+			></path>
+			<polygon
+				id="elbfq6bl92sj"
+				points="327.2 192.96 322 201.97 327.2 210.99 337.56 210.99 342.77 201.97 337.56 192.96 327.2 192.96"
+				style="fill: currentColor; transform-origin: 332.385px 201.975px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eley31oi6yzr6"
+				points="295.05 211.55 289.85 220.57 295.05 229.58 305.42 229.58 310.62 220.57 305.42 211.55 295.05 211.55"
+				style="fill: currentColor; transform-origin: 300.235px 220.565px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elmwajeubvjq"
+				points="311.13 202.25 305.92 211.27 311.13 220.29 321.49 220.29 326.7 211.27 321.49 202.25 311.13 202.25"
+				style="fill: currentColor; transform-origin: 316.31px 211.27px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="ele3pbnqs2arb"
+				points="246.83 202.25 241.62 211.27 246.83 220.29 257.19 220.29 262.4 211.27 257.19 202.25 246.83 202.25"
+				style="fill: currentColor; transform-origin: 252.01px 211.27px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elbfi3to418bg"
+				points="278.98 202.25 273.77 211.27 278.98 220.29 289.34 220.29 294.55 211.27 289.34 202.25 278.98 202.25"
+				style="fill: currentColor; transform-origin: 284.16px 211.27px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eltxxy1b19az"
+				points="262.9 211.55 257.7 220.57 262.9 229.58 273.26 229.58 278.47 220.57 273.26 211.55 262.9 211.55"
+				style="fill: currentColor; transform-origin: 268.085px 220.565px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elkg13oy96jy8"
+				points="337.56 266.76 342.77 257.75 337.56 248.73 327.2 248.73 322 257.75 327.2 266.76 337.56 266.76"
+				style="fill: currentColor; transform-origin: 332.385px 257.745px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el1u7n8on1svl"
+				points="321.49 257.47 326.7 248.45 321.49 239.43 311.13 239.43 305.92 248.45 311.13 257.47 321.49 257.47"
+				style="fill: currentColor; transform-origin: 316.31px 248.45px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elj8sdhfobbed"
+				points="337.56 230.14 327.2 230.14 322 239.16 327.2 248.17 337.56 248.17 342.77 239.16 337.56 230.14"
+				style="fill: currentColor; transform-origin: 332.385px 239.155px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el4jhh3mdg6ge"
+				points="337.56 211.55 327.2 211.55 322 220.57 327.2 229.58 337.56 229.58 342.77 220.57 337.56 211.55"
+				style="fill: currentColor; transform-origin: 332.385px 220.565px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elbrgcdcsj5sg"
+				points="353.64 220.29 358.85 211.27 353.64 202.25 343.28 202.25 338.07 211.27 343.28 220.29 353.64 220.29"
+				style="fill: currentColor; transform-origin: 348.46px 211.27px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el4yhjd26buef"
+				points="150.38 165.07 145.17 174.09 150.38 183.11 160.74 183.11 165.95 174.09 160.74 165.07 150.38 165.07"
+				style="fill: currentColor; transform-origin: 155.56px 174.09px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elb7ca0vsm2y5"
+				points="134.3 155.78 129.1 164.79 134.3 173.81 144.67 173.81 149.87 164.79 144.67 155.78 134.3 155.78"
+				style="fill: currentColor; transform-origin: 139.485px 164.795px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elznev44n62i"
+				points="118.23 146.48 113.02 155.5 118.23 164.52 128.59 164.52 133.8 155.5 128.59 146.48 118.23 146.48"
+				style="fill: currentColor; transform-origin: 123.41px 155.5px"
+				class="animable"
+			></polygon>
+			<path
+				id="eljejj4jk4pkb"
+				d="M112.52,155.22l5.16-8.94a70.37,70.37,0,0,0-14.52,8.94Z"
+				style="fill: currentColor; transform-origin: 110.42px 150.75px"
+				class="animable"
+			></path>
+			<polygon
+				id="el78o2vruvrba"
+				points="198.6 192.96 193.4 201.97 198.6 210.99 208.97 210.99 214.17 201.97 208.97 192.96 198.6 192.96"
+				style="fill: currentColor; transform-origin: 203.785px 201.975px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elx105nwuao"
+				points="166.45 174.37 161.25 183.38 166.45 192.4 176.82 192.4 182.02 183.38 176.82 174.37 166.45 174.37"
+				style="fill: currentColor; transform-origin: 171.635px 183.385px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el4dej1bc8hjc"
+				points="230.75 192.96 225.55 201.97 230.75 210.99 241.12 210.99 246.32 201.97 241.12 192.96 230.75 192.96"
+				style="fill: currentColor; transform-origin: 235.935px 201.975px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elt4h38bnlcao"
+				points="214.68 183.66 209.47 192.68 214.68 201.7 225.04 201.7 230.25 192.68 225.04 183.66 214.68 183.66"
+				style="fill: currentColor; transform-origin: 219.86px 192.68px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el9ljglonaoha"
+				points="182.53 183.66 177.32 192.68 182.53 201.7 192.89 201.7 198.1 192.68 192.89 183.66 182.53 183.66"
+				style="fill: currentColor; transform-origin: 187.71px 192.68px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el9562424gw77"
+				points="112.52 266.76 117.72 257.75 112.52 248.73 102.15 248.73 96.95 257.75 102.15 266.76 112.52 266.76"
+				style="fill: currentColor; transform-origin: 107.335px 257.745px"
+				class="animable"
+			></polygon>
+			<path
+				id="elm8abx8wp4k"
+				d="M94.68,164.52h1.76l3.94-6.83A41,41,0,0,0,94.68,164.52Z"
+				style="fill: currentColor; transform-origin: 97.53px 161.105px"
+				class="animable"
+			></path>
+			<polygon
+				id="eli5ffepg0frj"
+				points="160.74 276.06 165.95 267.04 160.74 258.02 150.38 258.02 145.17 267.04 150.38 276.06 160.74 276.06"
+				style="fill: currentColor; transform-origin: 155.56px 267.04px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eld33iv9wl2g7"
+				points="182.53 202.25 177.32 211.27 182.53 220.29 192.89 220.29 198.1 211.27 192.89 202.25 182.53 202.25"
+				style="fill: currentColor; transform-origin: 187.71px 211.27px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elj4pcd3kgor"
+				points="128.59 276.06 133.8 267.04 128.59 258.02 118.23 258.02 113.02 267.04 118.23 276.06 128.59 276.06"
+				style="fill: currentColor; transform-origin: 123.41px 267.04px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el1bdzuas05jd"
+				points="144.67 266.76 149.87 257.75 144.67 248.73 134.3 248.73 129.1 257.75 134.3 266.76 144.67 266.76"
+				style="fill: currentColor; transform-origin: 139.485px 257.745px"
+				class="animable"
+			></polygon>
+			<path
+				id="el585nd27ec0w"
+				d="M96.44,257.47l5.21-9L98,242.08c-.21.33-.43.66-.67,1A70.21,70.21,0,0,1,85.22,256l.86,1.49Z"
+				style="fill: currentColor; transform-origin: 93.435px 249.785px"
+				class="animable"
+			></path>
+			<polygon
+				id="eltwy2spya5sr"
+				points="150.38 183.66 145.17 192.68 150.38 201.7 160.74 201.7 165.95 192.68 160.74 183.66 150.38 183.66"
+				style="fill: currentColor; transform-origin: 155.56px 192.68px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elee3fu0aawk4"
+				points="166.45 192.96 161.25 201.97 166.45 210.99 176.82 210.99 182.02 201.97 176.82 192.96 166.45 192.96"
+				style="fill: currentColor; transform-origin: 171.635px 201.975px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elhxpztwof9af"
+				points="118.23 165.07 113.02 174.09 118.23 183.11 128.59 183.11 133.8 174.09 128.59 165.07 118.23 165.07"
+				style="fill: currentColor; transform-origin: 123.41px 174.09px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eljfa22lhaylg"
+				points="134.3 174.37 129.1 183.38 134.3 192.4 144.67 192.4 149.87 183.38 144.67 174.37 134.3 174.37"
+				style="fill: currentColor; transform-origin: 139.485px 183.385px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el62op17bz81y"
+				points="257.19 238.88 262.4 229.86 257.19 220.84 246.83 220.84 241.62 229.86 246.83 238.88 257.19 238.88"
+				style="fill: currentColor; transform-origin: 252.01px 229.86px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el243yl6b4igm"
+				points="289.34 238.88 294.55 229.86 289.34 220.84 278.98 220.84 273.77 229.86 278.98 238.88 289.34 238.88"
+				style="fill: currentColor; transform-origin: 284.16px 229.86px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eldwrpuf2rime"
+				points="273.26 248.17 278.47 239.16 273.26 230.14 262.9 230.14 257.7 239.16 262.9 248.17 273.26 248.17"
+				style="fill: currentColor; transform-origin: 268.085px 239.155px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el97simhlxqn"
+				points="305.42 248.17 310.62 239.16 305.42 230.14 295.05 230.14 289.85 239.16 295.05 248.17 305.42 248.17"
+				style="fill: currentColor; transform-origin: 300.235px 239.155px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el7zjk4qvats7"
+				points="321.49 238.88 326.7 229.86 321.49 220.84 311.13 220.84 305.92 229.86 311.13 238.88 321.49 238.88"
+				style="fill: currentColor; transform-origin: 316.31px 229.86px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el82vlmubd56m"
+				points="192.89 257.47 198.1 248.45 192.89 239.43 182.53 239.43 177.32 248.45 182.53 257.47 192.89 257.47"
+				style="fill: currentColor; transform-origin: 187.71px 248.45px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el96jnf30gwzl"
+				points="176.82 266.76 182.02 257.75 176.82 248.73 166.45 248.73 161.25 257.75 166.45 266.76 176.82 266.76"
+				style="fill: currentColor; transform-origin: 171.635px 257.745px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elv0nndlm76v8"
+				points="208.97 248.17 214.17 239.16 208.97 230.14 198.6 230.14 193.4 239.16 198.6 248.17 208.97 248.17"
+				style="fill: currentColor; transform-origin: 203.785px 239.155px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elcjjxehmo4vl"
+				points="241.12 248.17 246.32 239.16 241.12 230.14 230.75 230.14 225.55 239.16 230.75 248.17 241.12 248.17"
+				style="fill: currentColor; transform-origin: 235.935px 239.155px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eldvwjpd4kd1n"
+				points="225.04 257.47 230.25 248.45 225.04 239.43 214.68 239.43 209.47 248.45 214.68 257.47 225.04 257.47"
+				style="fill: currentColor; transform-origin: 219.86px 248.45px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elzfhlkh0e39"
+				points="257.19 257.47 262.4 248.45 257.19 239.43 246.83 239.43 241.62 248.45 246.83 257.47 257.19 257.47"
+				style="fill: currentColor; transform-origin: 252.01px 248.45px"
+				class="animable"
+			></polygon>
+			<path
+				id="elhiqe51kr6o"
+				d="M375.43,108.75h1.63c-.84-.56-1.7-1.11-2.59-1.66Z"
+				style="fill: currentColor; transform-origin: 375.765px 107.92px"
+				class="animable"
+			></path>
+			<polygon
+				id="elmtk1isb10w9"
+				points="343.28 109.3 338.07 118.32 343.28 127.34 353.64 127.34 358.85 118.32 353.64 109.3 343.28 109.3"
+				style="fill: currentColor; transform-origin: 348.46px 118.32px"
+				class="animable"
+			></polygon>
+			<path
+				id="el9gqpsn0m52a"
+				d="M431.38,239.27a100.45,100.45,0,0,1-4.61-9.13h-3.12l-5.2,9,5.2,9H434l1.2-2.08C434,243.86,432.7,241.58,431.38,239.27Z"
+				style="fill: currentColor; transform-origin: 426.825px 239.14px"
+				class="animable"
+			></path>
+			<polygon
+				id="elpnz6veu592k"
+				points="327.2 100.01 322 109.03 327.2 118.04 337.56 118.04 342.77 109.03 337.56 100.01 327.2 100.01"
+				style="fill: currentColor; transform-origin: 332.385px 109.025px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elb0hppkilgcr"
+				points="311.13 109.3 305.92 118.32 311.13 127.34 321.49 127.34 326.7 118.32 321.49 109.3 311.13 109.3"
+				style="fill: currentColor; transform-origin: 316.31px 118.32px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="ellrqnhpr0th"
+				points="434.01 266.76 439.22 257.75 434.01 248.73 423.65 248.73 418.45 257.75 423.65 266.76 434.01 266.76"
+				style="fill: currentColor; transform-origin: 428.835px 257.745px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elmeem7eppjq"
+				points="417.94 276.61 407.58 276.61 402.37 285.63 407.58 294.65 417.94 294.65 423.15 285.63 417.94 276.61"
+				style="fill: currentColor; transform-origin: 412.76px 285.63px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elqaf2u9pzb9m"
+				points="417.94 295.2 407.58 295.2 402.37 304.22 407.58 313.24 417.94 313.24 423.15 304.22 417.94 295.2"
+				style="fill: currentColor; transform-origin: 412.76px 304.22px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eli30z4nejt27"
+				points="417.94 258.02 407.58 258.02 402.37 267.04 407.58 276.06 417.94 276.06 423.15 267.04 417.94 258.02"
+				style="fill: currentColor; transform-origin: 412.76px 267.04px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eltomnttq6uqr"
+				points="295.05 118.6 289.85 127.61 295.05 136.63 305.42 136.63 310.62 127.61 305.42 118.6 295.05 118.6"
+				style="fill: currentColor; transform-origin: 300.235px 127.615px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elsyfjvjkhqae"
+				points="225.04 369.01 230.25 359.99 225.04 350.97 214.68 350.97 209.47 359.99 214.68 369.01 225.04 369.01"
+				style="fill: currentColor; transform-origin: 219.86px 359.99px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elt30p7y1rr5i"
+				points="278.98 109.3 273.77 118.32 278.98 127.34 289.34 127.34 294.55 118.32 289.34 109.3 278.98 109.3"
+				style="fill: currentColor; transform-origin: 284.16px 118.32px"
+				class="animable"
+			></polygon>
+			<path
+				id="elt3psmyl78ul"
+				d="M192.89,351H182.53l-3.41,5.91c5.22,2.2,10.75,4.75,16.48,7.44l2.5-4.33Z"
+				style="fill: currentColor; transform-origin: 188.61px 357.675px"
+				class="animable"
+			></path>
+			<polygon
+				id="el89rcw1qei78"
+				points="417.94 313.79 407.58 313.79 402.37 322.81 407.58 331.83 417.94 331.83 423.15 322.81 417.94 313.79"
+				style="fill: currentColor; transform-origin: 412.76px 322.81px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elnwrfo9fc0s"
+				points="257.19 350.42 262.4 341.4 257.19 332.38 246.83 332.38 241.62 341.4 246.83 350.42 257.19 350.42"
+				style="fill: currentColor; transform-origin: 252.01px 341.4px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elozv4s7sea4s"
+				points="241.12 359.71 246.32 350.7 241.12 341.68 230.75 341.68 225.55 350.7 230.75 359.71 241.12 359.71"
+				style="fill: currentColor; transform-origin: 235.935px 350.695px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el1r6rdqzvvc9"
+				points="208.97 359.71 214.17 350.7 208.97 341.68 198.6 341.68 193.4 350.7 198.6 359.71 208.97 359.71"
+				style="fill: currentColor; transform-origin: 203.785px 350.695px"
+				class="animable"
+			></polygon>
+			<path
+				id="el2bhvs9s4qk6"
+				d="M198.6,118H209l5.2-9-.35-.61a157.27,157.27,0,0,1-15.68,8.83Z"
+				style="fill: currentColor; transform-origin: 206.185px 113.195px"
+				class="animable"
+			></path>
+			<polygon
+				id="elizdpfrs1jdn"
+				points="262.9 118.6 257.7 127.61 262.9 136.63 273.26 136.63 278.47 127.61 273.26 118.6 262.9 118.6"
+				style="fill: currentColor; transform-origin: 268.085px 127.615px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el4dgyhjor609"
+				points="246.83 109.3 241.62 118.32 246.83 127.34 257.19 127.34 262.4 118.32 257.19 109.3 246.83 109.3"
+				style="fill: currentColor; transform-origin: 252.01px 118.32px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el7gjg9nhh7di"
+				points="230.75 100.01 225.55 109.03 230.75 118.04 241.12 118.04 246.32 109.03 241.12 100.01 230.75 100.01"
+				style="fill: currentColor; transform-origin: 235.935px 109.025px"
+				class="animable"
+			></polygon>
+			<path
+				id="elxu5xsp51di"
+				d="M407.58,332.38l-5.21,9,1,1.65c7,.1,13.31.3,19-.25l.81-1.4-5.21-9Z"
+				style="fill: currentColor; transform-origin: 412.775px 337.765px"
+				class="animable"
+			></path>
+			<path
+				id="eleojlbnri8c"
+				d="M130.76,354.73,128.59,351H118.23l-3.65,6.33A53.38,53.38,0,0,0,130.76,354.73Z"
+				style="fill: currentColor; transform-origin: 122.67px 354.165px"
+				class="animable"
+			></path>
+			<path
+				id="el3k4i6o7zfql"
+				d="M144.67,341.68H134.3l-5.2,9,2.23,3.86c5.87-1.74,11.56-3.73,18.32-4.25Z"
+				style="fill: currentColor; transform-origin: 139.375px 348.11px"
+				class="animable"
+			></path>
+			<polygon
+				id="elhhdmzoxwzz"
+				points="192.89 350.42 198.1 341.4 192.89 332.38 182.53 332.38 177.32 341.4 182.53 350.42 192.89 350.42"
+				style="fill: currentColor; transform-origin: 187.71px 341.4px"
+				class="animable"
+			></polygon>
+			<path
+				id="elwxbbx4i9dom"
+				d="M176.82,341.68H166.45l-5.2,9,.18.31a60.11,60.11,0,0,1,9.58,2.66c2.43.89,5,1.9,7.57,3l3.44-6Z"
+				style="fill: currentColor; transform-origin: 171.635px 349.165px"
+				class="animable"
+			></path>
+			<path
+				id="elep3vlzt5te5"
+				d="M112.52,341.68H102.15l-5.2,9,2.27,3.93c1.29.37,2.59.73,4,1.08a47.63,47.63,0,0,0,10.75,1.57l3.8-6.58Z"
+				style="fill: currentColor; transform-origin: 107.36px 349.47px"
+				class="animable"
+			></path>
+			<polygon
+				id="el4gsfjxwxdtf"
+				points="230.75 118.6 225.55 127.61 230.75 136.63 241.12 136.63 246.32 127.61 241.12 118.6 230.75 118.6"
+				style="fill: currentColor; transform-origin: 235.935px 127.615px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elnoj455f7eib"
+				points="214.68 109.3 209.47 118.32 214.68 127.34 225.04 127.34 230.25 118.32 225.04 109.3 214.68 109.3"
+				style="fill: currentColor; transform-origin: 219.86px 118.32px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elin11av4frtm"
+				points="246.83 127.89 241.62 136.91 246.83 145.93 257.19 145.93 262.4 136.91 257.19 127.89 246.83 127.89"
+				style="fill: currentColor; transform-origin: 252.01px 136.91px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elsl3y9cx4p1m"
+				points="208.97 341.12 214.17 332.11 208.97 323.09 198.6 323.09 193.4 332.11 198.6 341.12 208.97 341.12"
+				style="fill: currentColor; transform-origin: 203.785px 332.105px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elomwmzq3y2bf"
+				points="198.6 118.6 193.4 127.61 198.6 136.63 208.97 136.63 214.17 127.61 208.97 118.6 198.6 118.6"
+				style="fill: currentColor; transform-origin: 203.785px 127.615px"
+				class="animable"
+			></polygon>
+			<path
+				id="ela9fyuzt1ioi"
+				d="M343.28,351,341,354.92c2.93-1.36,6.09-2.68,9.54-3.95Z"
+				style="fill: currentColor; transform-origin: 345.77px 352.945px"
+				class="animable"
+			></path>
+			<polygon
+				id="el8bml59v2kw"
+				points="305.42 341.12 310.62 332.11 305.42 323.09 295.05 323.09 289.85 332.11 295.05 341.12 305.42 341.12"
+				style="fill: currentColor; transform-origin: 300.235px 332.105px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elealv8f1k9gg"
+				points="321.49 350.42 326.7 341.4 321.49 332.38 311.13 332.38 305.92 341.4 311.13 350.42 321.49 350.42"
+				style="fill: currentColor; transform-origin: 316.31px 341.4px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el8jp7nfvk7rd"
+				points="225.04 350.42 230.25 341.4 225.04 332.38 214.68 332.38 209.47 341.4 214.68 350.42 225.04 350.42"
+				style="fill: currentColor; transform-origin: 219.86px 341.4px"
+				class="animable"
+			></polygon>
+			<path
+				id="elp4l21i0c21g"
+				d="M423.05,342.72a45.65,45.65,0,0,0,6-1h-5.41Z"
+				style="fill: currentColor; transform-origin: 426.05px 342.22px"
+				class="animable"
+			></path>
+			<polygon
+				id="elg4ext1aoao"
+				points="273.26 359.71 278.47 350.7 273.26 341.68 262.9 341.68 257.7 350.7 262.9 359.71 273.26 359.71"
+				style="fill: currentColor; transform-origin: 268.085px 350.695px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elw2ugp6tfv3"
+				points="241.12 341.12 246.32 332.11 241.12 323.09 230.75 323.09 225.55 332.11 230.75 341.12 241.12 341.12"
+				style="fill: currentColor; transform-origin: 235.935px 332.105px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elsnxzw8em1tm"
+				points="257.19 331.83 262.4 322.81 257.19 313.79 246.83 313.79 241.62 322.81 246.83 331.83 257.19 331.83"
+				style="fill: currentColor; transform-origin: 252.01px 322.81px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el1coezfnb383"
+				points="289.34 331.83 294.55 322.81 289.34 313.79 278.98 313.79 273.77 322.81 278.98 331.83 289.34 331.83"
+				style="fill: currentColor; transform-origin: 284.16px 322.81px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eleb6psko0ra"
+				points="273.26 341.12 278.47 332.11 273.26 323.09 262.9 323.09 257.7 332.11 262.9 341.12 273.26 341.12"
+				style="fill: currentColor; transform-origin: 268.085px 332.105px"
+				class="animable"
+			></polygon>
+			<path
+				id="elrubsgo7k7v"
+				d="M96.44,351H88.35a103.1,103.1,0,0,0,10.08,3.44Z"
+				style="fill: currentColor; transform-origin: 93.39px 352.72px"
+				class="animable"
+			></path>
+			<polygon
+				id="el3cb6szvtrpz"
+				points="305.42 378.31 310.62 369.29 305.42 360.27 295.05 360.27 289.85 369.29 295.05 378.31 305.42 378.31"
+				style="fill: currentColor; transform-origin: 300.235px 369.29px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elr5oyxqz1p2s"
+				points="289.34 369.01 294.55 359.99 289.34 350.97 278.98 350.97 273.77 359.99 278.98 369.01 289.34 369.01"
+				style="fill: currentColor; transform-origin: 284.16px 359.99px"
+				class="animable"
+			></polygon>
+			<path
+				id="elo4ggqvpqc6n"
+				d="M311.13,369.57l-5.05,8.74c3.71-2.71,7.33-5.68,11.3-8.74Z"
+				style="fill: currentColor; transform-origin: 311.73px 373.94px"
+				class="animable"
+			></path>
+			<polygon
+				id="elotorarn3wk"
+				points="273.26 378.31 278.47 369.29 273.26 360.27 262.9 360.27 257.7 369.29 262.9 378.31 273.26 378.31"
+				style="fill: currentColor; transform-origin: 268.085px 369.29px"
+				class="animable"
+			></polygon>
+			<path
+				id="elf0ti0q2zqoe"
+				d="M305.32,378.86H295.05l-4.78,8.28A62.93,62.93,0,0,0,305.32,378.86Z"
+				style="fill: currentColor; transform-origin: 297.795px 383px"
+				class="animable"
+			></path>
+			<path
+				id="eluyxe4jo2ot"
+				d="M450.11,313.79H439.73l-5.21,9,5.21,9h5.11c.58-.69,1.15-1.41,1.72-2.18a46.3,46.3,0,0,0,6.18-11.31Z"
+				style="fill: currentColor; transform-origin: 443.63px 322.79px"
+				class="animable"
+			></path>
+			<path
+				id="elejnlt0twnw8"
+				d="M241.12,378.86H230.75l-.66,1.15c5,2.06,10,3.93,14.87,5.52Z"
+				style="fill: currentColor; transform-origin: 237.525px 382.195px"
+				class="animable"
+			></path>
+			<path
+				id="el9f7btffdb1j"
+				d="M230.25,378.58l-5.21-9H214.68L213,372.49c5.48,2.54,11,5,16.56,7.31Z"
+				style="fill: currentColor; transform-origin: 221.625px 374.69px"
+				class="animable"
+			></path>
+			<polygon
+				id="elg7vpqrjy08"
+				points="241.12 360.27 230.75 360.27 225.55 369.29 230.75 378.31 241.12 378.31 246.32 369.29 241.12 360.27"
+				style="fill: currentColor; transform-origin: 235.935px 369.29px"
+				class="animable"
+			></polygon>
+			<path
+				id="el4zyegmeuibb"
+				d="M209,360.27H198.6l-2.48,4.29c5.32,2.5,10.8,5.12,16.34,7.69l1.71-3Z"
+				style="fill: currentColor; transform-origin: 205.145px 366.26px"
+				class="animable"
+			></path>
+			<polygon
+				id="eljv2rmdh2vig"
+				points="257.19 369.01 262.4 359.99 257.19 350.97 246.83 350.97 241.62 359.99 246.83 369.01 257.19 369.01"
+				style="fill: currentColor; transform-origin: 252.01px 359.99px"
+				class="animable"
+			></polygon>
+			<path
+				id="elj91392klud"
+				d="M450.6,313.52l2.39,4.15a43.14,43.14,0,0,0,2.41-12.48Z"
+				style="fill: currentColor; transform-origin: 453px 311.43px"
+				class="animable"
+			></path>
+			<path
+				id="el122v9i59jgw9"
+				d="M257.19,388.15H254.1c1.2.3,2.38.57,3.56.82Z"
+				style="fill: currentColor; transform-origin: 255.88px 388.56px"
+				class="animable"
+			></path>
+			<path
+				id="elaew95es5cyl"
+				d="M289,387.6l.47-.17,5.11-8.85-5.21-9H279l-5.21,9,5.21,9Z"
+				style="fill: currentColor; transform-origin: 284.185px 378.59px"
+				class="animable"
+			></path>
+			<polygon
+				id="eldw2hegzean"
+				points="450.11 295.2 439.73 295.2 434.52 304.22 439.73 313.24 450.11 313.24 455.32 304.22 450.11 295.2"
+				style="fill: currentColor; transform-origin: 444.92px 304.22px"
+				class="animable"
+			></polygon>
+			<path
+				id="elfujb8l0vnyk"
+				d="M279,388.15l-1.21,2.11c.8-.1,1.6-.21,2.39-.35a60.58,60.58,0,0,0,7.11-1.76Z"
+				style="fill: currentColor; transform-origin: 282.54px 389.205px"
+				class="animable"
+			></path>
+			<path
+				id="elmiwqva5s2bm"
+				d="M449.9,276.61H439.73l-5.21,9,5.21,9h10.38l3.52-6.08A101.72,101.72,0,0,0,449.9,276.61Z"
+				style="fill: currentColor; transform-origin: 444.075px 285.61px"
+				class="animable"
+			></path>
+			<path
+				id="elche2ldrj1qt"
+				d="M289.85,90.43l5.2,9h10.37l5.2-9L307,84.17c-4.46-.44-8.84-.69-13.11-.74Z"
+				style="fill: currentColor; transform-origin: 300.235px 91.43px"
+				class="animable"
+			></path>
+			<path
+				id="el7uzj7mpi6s"
+				d="M257.7,90.43l5.2,9h10.37l5.2-9-3.48-6A142.81,142.81,0,0,0,259.67,87Z"
+				style="fill: currentColor; transform-origin: 268.085px 91.93px"
+				class="animable"
+			></path>
+			<path
+				id="elt7dl5j6bj7m"
+				d="M257.19,387.6l5.21-9-5.21-9H246.83l-5.21,9,4.16,7.21c2.08.66,4.14,1.27,6.18,1.81Z"
+				style="fill: currentColor; transform-origin: 252.01px 378.61px"
+				class="animable"
+			></path>
+			<polygon
+				id="eldjwqb58ljti"
+				points="246.83 90.71 241.62 99.73 246.83 108.75 257.19 108.75 262.4 99.73 257.19 90.71 246.83 90.71"
+				style="fill: currentColor; transform-origin: 252.01px 99.73px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elyq4z15njfgb"
+				points="434.01 285.91 423.65 285.91 418.45 294.93 423.65 303.94 434.01 303.94 439.22 294.93 434.01 285.91"
+				style="fill: currentColor; transform-origin: 428.835px 294.925px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elpv5wj9dtbsg"
+				points="434.01 304.5 423.65 304.5 418.45 313.52 423.65 322.54 434.01 322.54 439.22 313.52 434.01 304.5"
+				style="fill: currentColor; transform-origin: 428.835px 313.52px"
+				class="animable"
+			></polygon>
+			<path
+				id="eluelz553tfkp"
+				d="M423.65,323.09l-5.2,9,5.2,9H431a29.77,29.77,0,0,0,3.87-1.5l4.33-7.51-5.2-9Z"
+				style="fill: currentColor; transform-origin: 428.825px 332.085px"
+				class="animable"
+			></path>
+			<path
+				id="el0wdkepqkj65s"
+				d="M449.69,276.06a188.85,188.85,0,0,0-8.13-18h-1.83l-5.21,9,5.21,9Z"
+				style="fill: currentColor; transform-origin: 442.105px 267.06px"
+				class="animable"
+			></path>
+			<polygon
+				id="elcpea3cc074v"
+				points="434.01 267.32 423.65 267.32 418.45 276.34 423.65 285.35 434.01 285.35 439.22 276.34 434.01 267.32"
+				style="fill: currentColor; transform-origin: 428.835px 276.335px"
+				class="animable"
+			></polygon>
+			<path
+				id="elfh3pkm3832o"
+				d="M439.73,332.38l-3.91,6.77a29.35,29.35,0,0,0,8.53-6.77Z"
+				style="fill: currentColor; transform-origin: 440.085px 335.765px"
+				class="animable"
+			></path>
+			<polygon
+				id="elz31zlqsvr5"
+				points="305.42 359.71 310.62 350.7 305.42 341.68 295.05 341.68 289.85 350.7 295.05 359.71 305.42 359.71"
+				style="fill: currentColor; transform-origin: 300.235px 350.695px"
+				class="animable"
+			></polygon>
+			<path
+				id="elo07fcjsy73r"
+				d="M318.1,369c1.86-1.42,3.81-2.86,5.87-4.3L326.7,360l-5.21-9H311.13l-5.21,9,5.21,9Z"
+				style="fill: currentColor; transform-origin: 316.31px 360px"
+				class="animable"
+			></path>
+			<path
+				id="elhallsrcb8f"
+				d="M434.52,248.45l5.21,9h1.55q-2.67-5.25-5.74-10.79Z"
+				style="fill: currentColor; transform-origin: 437.9px 252.055px"
+				class="animable"
+			></path>
+			<path
+				id="elpk58hcql2s"
+				d="M327.2,360.27,325.07,364c1.82-1.24,3.74-2.47,5.79-3.69Z"
+				style="fill: currentColor; transform-origin: 327.965px 362.135px"
+				class="animable"
+			></path>
+			<path
+				id="el0nnqxy85jml"
+				d="M230.75,99.45h10.37l4.93-8.54A102.28,102.28,0,0,0,229.91,98Z"
+				style="fill: currentColor; transform-origin: 237.98px 95.18px"
+				class="animable"
+			></path>
+			<polygon
+				id="el48hifid01uc"
+				points="262.9 100.01 257.7 109.03 262.9 118.04 273.26 118.04 278.47 109.03 273.26 100.01 262.9 100.01"
+				style="fill: currentColor; transform-origin: 268.085px 109.025px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el19ckavngjbmj"
+				points="295.05 100.01 289.85 109.03 295.05 118.04 305.42 118.04 310.62 109.03 305.42 100.01 295.05 100.01"
+				style="fill: currentColor; transform-origin: 300.235px 109.025px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elehd36gmo5m4"
+				points="289.34 350.42 294.55 341.4 289.34 332.38 278.98 332.38 273.77 341.4 278.98 350.42 289.34 350.42"
+				style="fill: currentColor; transform-origin: 284.16px 341.4px"
+				class="animable"
+			></polygon>
+			<path
+				id="el7c3hb38cokj"
+				d="M248.27,90.16h8.92l1.71-3C255.17,88.07,251.62,89.07,248.27,90.16Z"
+				style="fill: currentColor; transform-origin: 253.585px 88.66px"
+				class="animable"
+			></path>
+			<path
+				id="ela1alxjakn55"
+				d="M322,90.43l5.2,9h10.36L342,91.83a157.42,157.42,0,0,0-17.91-5Z"
+				style="fill: currentColor; transform-origin: 332px 93.13px"
+				class="animable"
+			></path>
+			<path
+				id="elthvyx32skq"
+				d="M343.28,108.75h10.36l5.21-9L358,98.27q-5-2.33-10.73-4.52c-1.59-.61-3.17-1.18-4.75-1.73l-4.45,7.71Z"
+				style="fill: currentColor; transform-origin: 348.46px 100.385px"
+				class="animable"
+			></path>
+			<path
+				id="elka3xmk59t8l"
+				d="M359.35,99.45h1.17l-1.61-.76Z"
+				style="fill: currentColor; transform-origin: 359.715px 99.07px"
+				class="animable"
+			></path>
+			<path
+				id="el67bvxmdyq0q"
+				d="M311.13,90.16h10.36l2-3.44a151.15,151.15,0,0,0-15.76-2.48Z"
+				style="fill: currentColor; transform-origin: 315.61px 87.2px"
+				class="animable"
+			></path>
+			<polygon
+				id="elzuugbgmgmv"
+				points="311.13 108.75 321.49 108.75 326.7 99.73 321.49 90.71 311.13 90.71 305.92 99.73 311.13 108.75"
+				style="fill: currentColor; transform-origin: 316.31px 99.73px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elf8rcaautf6s"
+				points="311.13 127.89 305.92 136.91 311.13 145.93 321.49 145.93 326.7 136.91 321.49 127.89 311.13 127.89"
+				style="fill: currentColor; transform-origin: 316.31px 136.91px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elm51926srm9"
+				points="369.71 341.12 374.92 332.11 369.71 323.09 359.35 323.09 354.15 332.11 359.35 341.12 369.71 341.12"
+				style="fill: currentColor; transform-origin: 364.535px 332.105px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elkhm5vaiwrwm"
+				points="385.79 258.02 375.43 258.02 370.22 267.04 375.43 276.06 385.79 276.06 391 267.04 385.79 258.02"
+				style="fill: currentColor; transform-origin: 380.61px 267.04px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el6ux168mdch8"
+				points="353.64 331.83 358.85 322.81 353.64 313.79 343.28 313.79 338.07 322.81 343.28 331.83 353.64 331.83"
+				style="fill: currentColor; transform-origin: 348.46px 322.81px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el0zu2pmajj6ub"
+				points="385.79 276.61 375.43 276.61 370.22 285.63 375.43 294.65 385.79 294.65 391 285.63 385.79 276.61"
+				style="fill: currentColor; transform-origin: 380.61px 285.63px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elzn2y9xb2fx"
+				points="385.79 295.2 375.43 295.2 370.22 304.22 375.43 313.24 385.79 313.24 391 304.22 385.79 295.2"
+				style="fill: currentColor; transform-origin: 380.61px 304.22px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elm3v9too2ki9"
+				points="385.79 331.83 391 322.81 385.79 313.79 375.43 313.79 370.22 322.81 375.43 331.83 385.79 331.83"
+				style="fill: currentColor; transform-origin: 380.61px 322.81px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eliz4ibnoakag"
+				points="305.42 303.94 310.62 294.93 305.42 285.91 295.05 285.91 289.85 294.93 295.05 303.94 305.42 303.94"
+				style="fill: currentColor; transform-origin: 300.235px 294.925px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elyxwi38xs5w9"
+				points="289.34 294.65 294.55 285.63 289.34 276.61 278.98 276.61 273.77 285.63 278.98 294.65 289.34 294.65"
+				style="fill: currentColor; transform-origin: 284.16px 285.63px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el1e6wnrjz72o"
+				points="337.56 322.54 342.77 313.52 337.56 304.5 327.2 304.5 322 313.52 327.2 322.54 337.56 322.54"
+				style="fill: currentColor; transform-origin: 332.385px 313.52px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elil4e600nyy"
+				points="321.49 313.24 326.7 304.22 321.49 295.2 311.13 295.2 305.92 304.22 311.13 313.24 321.49 313.24"
+				style="fill: currentColor; transform-origin: 316.31px 304.22px"
+				class="animable"
+			></polygon>
+			<path
+				id="eluiv6ws1a28h"
+				d="M391.5,136.63h10.36l1.82-3.15a87.43,87.43,0,0,0-12.67-14l-4.71,8.16Z"
+				style="fill: currentColor; transform-origin: 394.99px 128.055px"
+				class="animable"
+			></path>
+			<polygon
+				id="elu2q9d2ymr7"
+				points="343.28 146.48 338.07 155.5 343.28 164.52 353.64 164.52 358.85 155.5 353.64 146.48 343.28 146.48"
+				style="fill: currentColor; transform-origin: 348.46px 155.5px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el4quqrzt988e"
+				points="375.43 127.89 370.22 136.91 375.43 145.93 385.79 145.93 391 136.91 385.79 127.89 375.43 127.89"
+				style="fill: currentColor; transform-origin: 380.61px 136.91px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eloe64ps16nw"
+				points="359.35 137.19 354.15 146.21 359.35 155.22 369.71 155.22 374.92 146.21 369.71 137.19 359.35 137.19"
+				style="fill: currentColor; transform-origin: 364.535px 146.205px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elp4j689p8r8s"
+				points="327.2 137.19 322 146.21 327.2 155.22 337.56 155.22 342.77 146.21 337.56 137.19 327.2 137.19"
+				style="fill: currentColor; transform-origin: 332.385px 146.205px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elxbu7tuecrc"
+				points="273.26 303.94 278.47 294.93 273.26 285.91 262.9 285.91 257.7 294.93 262.9 303.94 273.26 303.94"
+				style="fill: currentColor; transform-origin: 268.085px 294.925px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elc7tb3ghd4u"
+				points="385.79 239.43 375.43 239.43 370.22 248.45 375.43 257.47 385.79 257.47 391 248.45 385.79 239.43"
+				style="fill: currentColor; transform-origin: 380.61px 248.45px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el2dxica6cfci"
+				points="401.87 248.17 407.07 239.16 401.87 230.14 391.5 230.14 386.3 239.16 391.5 248.17 401.87 248.17"
+				style="fill: currentColor; transform-origin: 396.685px 239.155px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el0utchrkewb1"
+				points="401.87 211.55 391.5 211.55 386.3 220.57 391.5 229.58 401.87 229.58 407.07 220.57 401.87 211.55"
+				style="fill: currentColor; transform-origin: 396.685px 220.565px"
+				class="animable"
+			></polygon>
+			<path
+				id="eloj8tlwrf9w8"
+				d="M417.94,220.29l3.65-6.32c-.5-2.49-.83-4.9-1.08-7.27l-2.57-4.45H407.58l-5.21,9,5.21,9Z"
+				style="fill: currentColor; transform-origin: 411.98px 211.27px"
+				class="animable"
+			></path>
+			<polygon
+				id="el217vk08y70q"
+				points="214.68 146.48 209.47 155.5 214.68 164.52 225.04 164.52 230.25 155.5 225.04 146.48 214.68 146.48"
+				style="fill: currentColor; transform-origin: 219.86px 155.5px"
+				class="animable"
+			></polygon>
+			<path
+				id="elkdgz6a2hkkh"
+				d="M64.29,276.06l2.2-3.81a39.44,39.44,0,0,0-2.95,3.81Z"
+				style="fill: currentColor; transform-origin: 65.015px 274.155px"
+				class="animable"
+			></path>
+			<path
+				id="elbn5n1wj85xd"
+				d="M144.67,136.63l.31-.54-1.72.54Z"
+				style="fill: currentColor; transform-origin: 144.12px 136.36px"
+				class="animable"
+			></path>
+			<path
+				id="elncx2h0srn6c"
+				d="M69.5,322.81l-5.21-9H59.41a61.77,61.77,0,0,0,5.46,17Z"
+				style="fill: currentColor; transform-origin: 64.455px 322.31px"
+				class="animable"
+			></path>
+			<path
+				id="ele18m8o34ppf"
+				d="M64.29,294.65l5.21-9-5.21-9h-1.1a35.38,35.38,0,0,0-5.43,18Z"
+				style="fill: currentColor; transform-origin: 63.63px 285.65px"
+				class="animable"
+			></path>
+			<polygon
+				id="elouyxam0c959"
+				points="166.45 137.19 161.25 146.21 166.45 155.22 176.82 155.22 182.02 146.21 176.82 137.19 166.45 137.19"
+				style="fill: currentColor; transform-origin: 171.635px 146.205px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elf1mzvgtse4"
+				points="182.53 146.48 177.32 155.5 182.53 164.52 192.89 164.52 198.1 155.5 192.89 146.48 182.53 146.48"
+				style="fill: currentColor; transform-origin: 187.71px 155.5px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elb1j475bhd0d"
+				points="96.44 331.83 101.65 322.81 96.44 313.79 86.08 313.79 80.87 322.81 86.08 331.83 96.44 331.83"
+				style="fill: currentColor; transform-origin: 91.26px 322.81px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el51xdqfhevmk"
+				points="230.75 155.78 225.55 164.79 230.75 173.81 241.12 173.81 246.32 164.79 241.12 155.78 230.75 155.78"
+				style="fill: currentColor; transform-origin: 235.935px 164.795px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elxkxbtnwncsn"
+				points="311.13 146.48 305.92 155.5 311.13 164.52 321.49 164.52 326.7 155.5 321.49 146.48 311.13 146.48"
+				style="fill: currentColor; transform-origin: 316.31px 155.5px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elbx9xszn9n5f"
+				points="198.6 155.78 193.4 164.79 198.6 173.81 208.97 173.81 214.17 164.79 208.97 155.78 198.6 155.78"
+				style="fill: currentColor; transform-origin: 203.785px 164.795px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el3qbt2r44mxk"
+				points="208.97 303.94 214.17 294.93 208.97 285.91 198.6 285.91 193.4 294.93 198.6 303.94 208.97 303.94"
+				style="fill: currentColor; transform-origin: 203.785px 294.925px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elu0yqzz4zw"
+				points="112.52 322.54 117.72 313.52 112.52 304.5 102.15 304.5 96.95 313.52 102.15 322.54 112.52 322.54"
+				style="fill: currentColor; transform-origin: 107.335px 313.52px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elxl05nukgqye"
+				points="192.89 313.24 198.1 304.22 192.89 295.2 182.53 295.2 177.32 304.22 182.53 313.24 192.89 313.24"
+				style="fill: currentColor; transform-origin: 187.71px 304.22px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el4pdee9zqqc5"
+				points="262.9 137.19 257.7 146.21 262.9 155.22 273.26 155.22 278.47 146.21 273.26 137.19 262.9 137.19"
+				style="fill: currentColor; transform-origin: 268.085px 146.205px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elrevrd3zi78"
+				points="241.12 303.94 246.32 294.93 241.12 285.91 230.75 285.91 225.55 294.93 230.75 303.94 241.12 303.94"
+				style="fill: currentColor; transform-origin: 235.935px 294.925px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el7r6tnydy7aj"
+				points="257.19 294.65 262.4 285.63 257.19 276.61 246.83 276.61 241.62 285.63 246.83 294.65 257.19 294.65"
+				style="fill: currentColor; transform-origin: 252.01px 285.63px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elfk72z63awj"
+				points="128.59 331.83 133.8 322.81 128.59 313.79 118.23 313.79 113.02 322.81 118.23 331.83 128.59 331.83"
+				style="fill: currentColor; transform-origin: 123.41px 322.81px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elhva1buethsn"
+				points="144.67 322.54 149.87 313.52 144.67 304.5 134.3 304.5 129.1 313.52 134.3 322.54 144.67 322.54"
+				style="fill: currentColor; transform-origin: 139.485px 313.52px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el7bw9rvgcq1t"
+				points="160.74 331.83 165.95 322.81 160.74 313.79 150.38 313.79 145.17 322.81 150.38 331.83 160.74 331.83"
+				style="fill: currentColor; transform-origin: 155.56px 322.81px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el0rnrhqjzo1c"
+				points="176.82 322.54 182.02 313.52 176.82 304.5 166.45 304.5 161.25 313.52 166.45 322.54 176.82 322.54"
+				style="fill: currentColor; transform-origin: 171.635px 313.52px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elnbulqym81is"
+				points="225.04 313.24 230.25 304.22 225.04 295.2 214.68 295.2 209.47 304.22 214.68 313.24 225.04 313.24"
+				style="fill: currentColor; transform-origin: 219.86px 304.22px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elm99p3536ndq"
+				points="401.87 304.5 391.5 304.5 386.3 313.52 391.5 322.54 401.87 322.54 407.07 313.52 401.87 304.5"
+				style="fill: currentColor; transform-origin: 396.685px 313.52px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eled07sn3n2u"
+				points="401.87 285.91 391.5 285.91 386.3 294.93 391.5 303.94 401.87 303.94 407.07 294.93 401.87 285.91"
+				style="fill: currentColor; transform-origin: 396.685px 294.925px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elnswo89geew"
+				points="401.87 267.32 391.5 267.32 386.3 276.34 391.5 285.35 401.87 285.35 407.07 276.34 401.87 267.32"
+				style="fill: currentColor; transform-origin: 396.685px 276.335px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elpfgmnikn1d"
+				points="401.87 323.09 391.5 323.09 386.3 332.11 391.5 341.12 401.87 341.12 407.07 332.11 401.87 323.09"
+				style="fill: currentColor; transform-origin: 396.685px 332.105px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el3voozjyndh4"
+				points="401.87 248.73 391.5 248.73 386.3 257.75 391.5 266.76 401.87 266.76 407.07 257.75 401.87 248.73"
+				style="fill: currentColor; transform-origin: 396.685px 257.745px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="ele9h1x0hkdb"
+				points="321.49 331.83 326.7 322.81 321.49 313.79 311.13 313.79 305.92 322.81 311.13 331.83 321.49 331.83"
+				style="fill: currentColor; transform-origin: 316.31px 322.81px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el6qkxg90m71h"
+				points="337.56 341.12 342.77 332.11 337.56 323.09 327.2 323.09 322 332.11 327.2 341.12 337.56 341.12"
+				style="fill: currentColor; transform-origin: 332.385px 332.105px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elqzz3r70arwf"
+				points="417.94 257.47 423.15 248.45 417.94 239.43 407.58 239.43 402.37 248.45 407.58 257.47 417.94 257.47"
+				style="fill: currentColor; transform-origin: 412.76px 248.45px"
+				class="animable"
+			></polygon>
+			<path
+				id="el825epreoasa"
+				d="M402.65,343l-.79-1.36H391.5l-.84,1.47C394.87,343,398.87,343,402.65,343Z"
+				style="fill: currentColor; transform-origin: 396.655px 342.375px"
+				class="animable"
+			></path>
+			<path
+				id="elxnwzb5jsvkg"
+				d="M371.72,345.15l-2-3.47H359.35l-4.51,7.81c1.14-.38,2.3-.75,3.49-1.11A121.39,121.39,0,0,1,371.72,345.15Z"
+				style="fill: currentColor; transform-origin: 363.28px 345.585px"
+				class="animable"
+			></path>
+			<path
+				id="elertxxy2pv6d"
+				d="M370.22,118.32l5.21,9h10.36l4.78-8.29a114.72,114.72,0,0,0-12.67-9.75h-2.47Z"
+				style="fill: currentColor; transform-origin: 380.395px 118.3px"
+				class="animable"
+			></path>
+			<polygon
+				id="elytrpcxuhwvs"
+				points="295.05 155.78 289.85 164.79 295.05 173.81 305.42 173.81 310.62 164.79 305.42 155.78 295.05 155.78"
+				style="fill: currentColor; transform-origin: 300.235px 164.795px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elvebl2p5vmqe"
+				points="246.83 165.07 241.62 174.09 246.83 183.11 257.19 183.11 262.4 174.09 257.19 165.07 246.83 165.07"
+				style="fill: currentColor; transform-origin: 252.01px 174.09px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elbp7olgx7kvg"
+				points="278.98 127.89 273.77 136.91 278.98 145.93 289.34 145.93 294.55 136.91 289.34 127.89 278.98 127.89"
+				style="fill: currentColor; transform-origin: 284.16px 136.91px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eloxf4tz5jfp"
+				points="327.2 118.6 322 127.61 327.2 136.63 337.56 136.63 342.77 127.61 337.56 118.6 327.2 118.6"
+				style="fill: currentColor; transform-origin: 332.385px 127.615px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elp0py2of4sh"
+				points="359.35 118.6 354.15 127.61 359.35 136.63 369.71 136.63 374.92 127.61 369.71 118.6 359.35 118.6"
+				style="fill: currentColor; transform-origin: 364.535px 127.615px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elvp6son1vwwh"
+				points="343.28 127.89 338.07 136.91 343.28 145.93 353.64 145.93 358.85 136.91 353.64 127.89 343.28 127.89"
+				style="fill: currentColor; transform-origin: 348.46px 136.91px"
+				class="animable"
+			></polygon>
+			<path
+				id="el6zcyp25dfst"
+				d="M426.52,229.58a76.31,76.31,0,0,1-4.75-14.77l-3.32,5.76,5.2,9Z"
+				style="fill: currentColor; transform-origin: 422.485px 222.195px"
+				class="animable"
+			></path>
+			<polygon
+				id="elbs0zijt6gab"
+				points="305.42 322.54 310.62 313.52 305.42 304.5 295.05 304.5 289.85 313.52 295.05 322.54 305.42 322.54"
+				style="fill: currentColor; transform-origin: 300.235px 313.52px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el9fgd7spc7q"
+				points="417.94 220.84 407.58 220.84 402.37 229.86 407.58 238.88 417.94 238.88 423.15 229.86 417.94 220.84"
+				style="fill: currentColor; transform-origin: 412.76px 229.86px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elorht8ykwhtj"
+				points="295.05 137.19 289.85 146.21 295.05 155.22 305.42 155.22 310.62 146.21 305.42 137.19 295.05 137.19"
+				style="fill: currentColor; transform-origin: 300.235px 146.205px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el8hsjciy5nov"
+				points="289.34 313.24 294.55 304.22 289.34 295.2 278.98 295.2 273.77 304.22 278.98 313.24 289.34 313.24"
+				style="fill: currentColor; transform-origin: 284.16px 304.22px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el1ostdgunss6"
+				points="198.6 137.19 193.4 146.21 198.6 155.22 208.97 155.22 214.17 146.21 208.97 137.19 198.6 137.19"
+				style="fill: currentColor; transform-origin: 203.785px 146.205px"
+				class="animable"
+			></polygon>
+			<path
+				id="el4zv9qg1trb"
+				d="M163,130.58l3.49,6h10.37l5.2-9-1.67-2.9C175.27,126.58,169.56,128.5,163,130.58Z"
+				style="fill: currentColor; transform-origin: 172.53px 130.63px"
+				class="animable"
+			></path>
+			<polygon
+				id="el0k3oma3ko5ab"
+				points="214.68 127.89 209.47 136.91 214.68 145.93 225.04 145.93 230.25 136.91 225.04 127.89 214.68 127.89"
+				style="fill: currentColor; transform-origin: 219.86px 136.91px"
+				class="animable"
+			></polygon>
+			<path
+				id="elkstp4a6uy9j"
+				d="M80.37,341.68H73a45.8,45.8,0,0,0,11.82,7.77Z"
+				style="fill: currentColor; transform-origin: 78.91px 345.565px"
+				class="animable"
+			></path>
+			<polygon
+				id="elj0sf7026hie"
+				points="112.52 341.12 117.72 332.11 112.52 323.09 102.15 323.09 96.95 332.11 102.15 341.12 112.52 341.12"
+				style="fill: currentColor; transform-origin: 107.335px 332.105px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eliik51oq56w"
+				points="278.98 146.48 273.77 155.5 278.98 164.52 289.34 164.52 294.55 155.5 289.34 146.48 278.98 146.48"
+				style="fill: currentColor; transform-origin: 284.16px 155.5px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elxnxcovyvyb"
+				points="230.75 137.19 225.55 146.21 230.75 155.22 241.12 155.22 246.32 146.21 241.12 137.19 230.75 137.19"
+				style="fill: currentColor; transform-origin: 235.935px 146.205px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elxwmk5bqgwx"
+				points="262.9 155.78 257.7 164.79 262.9 173.81 273.26 173.81 278.47 164.79 273.26 155.78 262.9 155.78"
+				style="fill: currentColor; transform-origin: 268.085px 164.795px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eljop4fv1aufg"
+				points="246.83 146.48 241.62 155.5 246.83 164.52 257.19 164.52 262.4 155.5 257.19 146.48 246.83 146.48"
+				style="fill: currentColor; transform-origin: 252.01px 155.5px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elxzcy4mdf65"
+				points="182.53 127.89 177.32 136.91 182.53 145.93 192.89 145.93 198.1 136.91 192.89 127.89 182.53 127.89"
+				style="fill: currentColor; transform-origin: 187.71px 136.91px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elkxm25vym14"
+				points="241.12 322.54 246.32 313.52 241.12 304.5 230.75 304.5 225.55 313.52 230.75 322.54 241.12 322.54"
+				style="fill: currentColor; transform-origin: 235.935px 313.52px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elpckdabpaj8l"
+				points="257.19 313.24 262.4 304.22 257.19 295.2 246.83 295.2 241.62 304.22 246.83 313.24 257.19 313.24"
+				style="fill: currentColor; transform-origin: 252.01px 304.22px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="ellmmkop63e8"
+				points="273.26 322.54 278.47 313.52 273.26 304.5 262.9 304.5 257.7 313.52 262.9 322.54 273.26 322.54"
+				style="fill: currentColor; transform-origin: 268.085px 313.52px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="els9g57ni157"
+				points="128.59 350.42 133.8 341.4 128.59 332.38 118.23 332.38 113.02 341.4 118.23 350.42 128.59 350.42"
+				style="fill: currentColor; transform-origin: 123.41px 341.4px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="ellgjfsubjc7p"
+				points="225.04 331.83 230.25 322.81 225.04 313.79 214.68 313.79 209.47 322.81 214.68 331.83 225.04 331.83"
+				style="fill: currentColor; transform-origin: 219.86px 322.81px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el3p5bhf08x4w"
+				points="208.97 322.54 214.17 313.52 208.97 304.5 198.6 304.5 193.4 313.52 198.6 322.54 208.97 322.54"
+				style="fill: currentColor; transform-origin: 203.785px 313.52px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elfq777rogb48"
+				points="144.67 341.12 149.87 332.11 144.67 323.09 134.3 323.09 129.1 332.11 134.3 341.12 144.67 341.12"
+				style="fill: currentColor; transform-origin: 139.485px 332.105px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eloo1kg6lab"
+				points="176.82 341.12 182.02 332.11 176.82 323.09 166.45 323.09 161.25 332.11 166.45 341.12 176.82 341.12"
+				style="fill: currentColor; transform-origin: 171.635px 332.105px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elncwgg73c6p"
+				points="192.89 331.83 198.1 322.81 192.89 313.79 182.53 313.79 177.32 322.81 182.53 331.83 192.89 331.83"
+				style="fill: currentColor; transform-origin: 187.71px 322.81px"
+				class="animable"
+			></polygon>
+			<g id="eln64kswrwfh">
+				<g style="opacity: 0.6; transform-origin: 256.578px 236.979px" class="animable">
+					<polygon
+						id="elnay88yptugo"
+						points="375.43 165.07 370.22 174.09 375.43 183.11 385.79 183.11 391 174.09 385.79 165.07 375.43 165.07"
+						style="fill: rgb(255, 255, 255); transform-origin: 380.61px 174.09px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elro1zilidxwo"
+						points="359.35 174.37 354.15 183.38 359.35 192.4 369.71 192.4 374.92 183.38 369.71 174.37 359.35 174.37"
+						style="fill: rgb(255, 255, 255); transform-origin: 364.535px 183.385px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="eld1a1lubd7h"
+						points="343.28 183.66 338.07 192.68 343.28 201.7 353.64 201.7 358.85 192.68 353.64 183.66 343.28 183.66"
+						style="fill: rgb(255, 255, 255); transform-origin: 348.46px 192.68px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elfuynko1tzwl"
+						points="327.2 174.37 322 183.38 327.2 192.4 337.56 192.4 342.77 183.38 337.56 174.37 327.2 174.37"
+						style="fill: rgb(255, 255, 255); transform-origin: 332.385px 183.385px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elkcbzmaw5kg"
+						points="401.87 192.4 407.07 183.38 401.87 174.37 391.5 174.37 386.3 183.38 391.5 192.4 401.87 192.4"
+						style="fill: rgb(255, 255, 255); transform-origin: 396.685px 183.385px"
+						class="animable"
+					></polygon>
+					<path
+						id="elvq4bo5jssad"
+						d="M417.94,183.11l1.67-2.89a86.8,86.8,0,0,0-2.11-15.15h-9.92l-5.21,9,5.21,9Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 410.99px 174.09px"
+						class="animable"
+					></path>
+					<polygon
+						id="el8qjpuf92ssb"
+						points="385.79 201.7 391 192.68 385.79 183.66 375.43 183.66 370.22 192.68 375.43 201.7 385.79 201.7"
+						style="fill: rgb(255, 255, 255); transform-origin: 380.61px 192.68px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el17tgf2966qsi"
+						points="391.5 155.78 386.3 164.79 391.5 173.81 401.87 173.81 407.07 164.79 401.87 155.78 391.5 155.78"
+						style="fill: rgb(255, 255, 255); transform-origin: 396.685px 164.795px"
+						class="animable"
+					></polygon>
+					<path
+						id="elhlxraxxheri"
+						d="M402.37,155.5l5.21,9h9.79a87.84,87.84,0,0,0-6.62-18h-3.17Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 409.87px 155.5px"
+						class="animable"
+					></path>
+					<polygon
+						id="eluwqv2haihmk"
+						points="198.6 174.37 193.4 183.38 198.6 192.4 208.97 192.4 214.17 183.38 208.97 174.37 198.6 174.37"
+						style="fill: rgb(255, 255, 255); transform-origin: 203.785px 183.385px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elw5or9ys1se"
+						points="369.71 192.96 359.35 192.96 354.15 201.97 359.35 210.99 369.71 210.99 374.92 201.97 369.71 192.96"
+						style="fill: rgb(255, 255, 255); transform-origin: 364.535px 201.975px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el1os73708ijd"
+						points="230.75 174.37 225.55 183.38 230.75 192.4 241.12 192.4 246.32 183.38 241.12 174.37 230.75 174.37"
+						style="fill: rgb(255, 255, 255); transform-origin: 235.935px 183.385px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elmpyevx2p2to"
+						points="214.68 165.07 209.47 174.09 214.68 183.11 225.04 183.11 230.25 174.09 225.04 165.07 214.68 165.07"
+						style="fill: rgb(255, 255, 255); transform-origin: 219.86px 174.09px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el0xo4jtbyckr"
+						points="166.45 155.78 161.25 164.79 166.45 173.81 176.82 173.81 182.02 164.79 176.82 155.78 166.45 155.78"
+						style="fill: rgb(255, 255, 255); transform-origin: 171.635px 164.795px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="eltpwh73oq4j"
+						points="182.53 165.07 177.32 174.09 182.53 183.11 192.89 183.11 198.1 174.09 192.89 165.07 182.53 165.07"
+						style="fill: rgb(255, 255, 255); transform-origin: 187.71px 174.09px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elkdziqr3402"
+						points="262.9 192.96 257.7 201.97 262.9 210.99 273.26 210.99 278.47 201.97 273.26 192.96 262.9 192.96"
+						style="fill: rgb(255, 255, 255); transform-origin: 268.085px 201.975px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="ely5out8abhx"
+						points="278.98 183.66 273.77 192.68 278.98 201.7 289.34 201.7 294.55 192.68 289.34 183.66 278.98 183.66"
+						style="fill: rgb(255, 255, 255); transform-origin: 284.16px 192.68px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elgsqrl5eh7x7"
+						points="295.05 192.96 289.85 201.97 295.05 210.99 305.42 210.99 310.62 201.97 305.42 192.96 295.05 192.96"
+						style="fill: rgb(255, 255, 255); transform-origin: 300.235px 201.975px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el3to7kam1k0v"
+						points="311.13 183.66 305.92 192.68 311.13 201.7 321.49 201.7 326.7 192.68 321.49 183.66 311.13 183.66"
+						style="fill: rgb(255, 255, 255); transform-origin: 316.31px 192.68px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elbt2ysz0ixz7"
+						points="246.83 183.66 241.62 192.68 246.83 201.7 257.19 201.7 262.4 192.68 257.19 183.66 246.83 183.66"
+						style="fill: rgb(255, 255, 255); transform-origin: 252.01px 192.68px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elzrg9uirqjpi"
+						points="353.64 258.02 343.28 258.02 338.07 267.04 343.28 276.06 353.64 276.06 358.85 267.04 353.64 258.02"
+						style="fill: rgb(255, 255, 255); transform-origin: 348.46px 267.04px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el2t05sfjdzgx"
+						points="160.74 294.65 165.95 285.63 160.74 276.61 150.38 276.61 145.17 285.63 150.38 294.65 160.74 294.65"
+						style="fill: rgb(255, 255, 255); transform-origin: 155.56px 285.63px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elvhac73vwyvs"
+						points="176.82 285.35 182.02 276.34 176.82 267.32 166.45 267.32 161.25 276.34 166.45 285.35 176.82 285.35"
+						style="fill: rgb(255, 255, 255); transform-origin: 171.635px 276.335px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elg86egik43ag"
+						points="192.89 276.06 198.1 267.04 192.89 258.02 182.53 258.02 177.32 267.04 182.53 276.06 192.89 276.06"
+						style="fill: rgb(255, 255, 255); transform-origin: 187.71px 267.04px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el0fl7ivj31e5d"
+						points="208.97 266.76 214.17 257.75 208.97 248.73 198.6 248.73 193.4 257.75 198.6 266.76 208.97 266.76"
+						style="fill: rgb(255, 255, 255); transform-origin: 203.785px 257.745px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elip7b8bkjrs"
+						points="225.04 276.06 230.25 267.04 225.04 258.02 214.68 258.02 209.47 267.04 214.68 276.06 225.04 276.06"
+						style="fill: rgb(255, 255, 255); transform-origin: 219.86px 267.04px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elq7cyzgavf7p"
+						points="128.59 294.65 133.8 285.63 128.59 276.61 118.23 276.61 113.02 285.63 118.23 294.65 128.59 294.65"
+						style="fill: rgb(255, 255, 255); transform-origin: 123.41px 285.63px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elhmnfc8q56od"
+						points="144.67 285.35 149.87 276.34 144.67 267.32 134.3 267.32 129.1 276.34 134.3 285.35 144.67 285.35"
+						style="fill: rgb(255, 255, 255); transform-origin: 139.485px 276.335px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elahhiw6dh7wa"
+						points="86.08 294.65 96.44 294.65 101.65 285.63 96.44 276.61 86.08 276.61 80.87 285.63 86.08 294.65"
+						style="fill: rgb(255, 255, 255); transform-origin: 91.26px 285.63px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elfzl9eu75oi4"
+						points="112.52 285.35 117.72 276.34 112.52 267.32 102.15 267.32 96.95 276.34 102.15 285.35 112.52 285.35"
+						style="fill: rgb(255, 255, 255); transform-origin: 107.335px 276.335px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="eloytx9zi2488"
+						points="241.12 266.76 246.32 257.75 241.12 248.73 230.75 248.73 225.55 257.75 230.75 266.76 241.12 266.76"
+						style="fill: rgb(255, 255, 255); transform-origin: 235.935px 257.745px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el3r0ymbu4nu"
+						points="353.64 220.84 343.28 220.84 338.07 229.86 343.28 238.88 353.64 238.88 358.85 229.86 353.64 220.84"
+						style="fill: rgb(255, 255, 255); transform-origin: 348.46px 229.86px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elfxe443ucfx"
+						points="353.64 239.43 343.28 239.43 338.07 248.45 343.28 257.47 353.64 257.47 358.85 248.45 353.64 239.43"
+						style="fill: rgb(255, 255, 255); transform-origin: 348.46px 248.45px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="eljkdve8se6ce"
+						points="353.64 294.65 358.85 285.63 353.64 276.61 343.28 276.61 338.07 285.63 343.28 294.65 353.64 294.65"
+						style="fill: rgb(255, 255, 255); transform-origin: 348.46px 285.63px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elvef776afi28"
+						points="273.26 266.76 278.47 257.75 273.26 248.73 262.9 248.73 257.7 257.75 262.9 266.76 273.26 266.76"
+						style="fill: rgb(255, 255, 255); transform-origin: 268.085px 257.745px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elpf9amu6siui"
+						points="369.71 229.58 374.92 220.57 369.71 211.55 359.35 211.55 354.15 220.57 359.35 229.58 369.71 229.58"
+						style="fill: rgb(255, 255, 255); transform-origin: 364.535px 220.565px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elsgzks450x2"
+						points="150.38 146.48 145.17 155.5 150.38 164.52 160.74 164.52 165.95 155.5 160.74 146.48 150.38 146.48"
+						style="fill: rgb(255, 255, 255); transform-origin: 155.56px 155.5px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elzi93cywryrb"
+						points="305.42 266.76 310.62 257.75 305.42 248.73 295.05 248.73 289.85 257.75 295.05 266.76 305.42 266.76"
+						style="fill: rgb(255, 255, 255); transform-origin: 300.235px 257.745px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el01lve4dm1jih"
+						points="337.56 285.35 342.77 276.34 337.56 267.32 327.2 267.32 322 276.34 327.2 285.35 337.56 285.35"
+						style="fill: rgb(255, 255, 255); transform-origin: 332.385px 276.335px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="els0yfgsozxn"
+						points="289.34 257.47 294.55 248.45 289.34 239.43 278.98 239.43 273.77 248.45 278.98 257.47 289.34 257.47"
+						style="fill: rgb(255, 255, 255); transform-origin: 284.16px 248.45px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elbwvmmanx5j9"
+						points="321.49 276.06 326.7 267.04 321.49 258.02 311.13 258.02 305.92 267.04 311.13 276.06 321.49 276.06"
+						style="fill: rgb(255, 255, 255); transform-origin: 316.31px 267.04px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elxsrf93z74j"
+						points="262.9 174.37 257.7 183.38 262.9 192.4 273.26 192.4 278.47 183.38 273.26 174.37 262.9 174.37"
+						style="fill: rgb(255, 255, 255); transform-origin: 268.085px 183.385px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el01s9qktjsjxu"
+						points="385.79 202.25 375.43 202.25 370.22 211.27 375.43 220.29 385.79 220.29 391 211.27 385.79 202.25"
+						style="fill: rgb(255, 255, 255); transform-origin: 380.61px 211.27px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elyyh0cns6t1n"
+						points="96.44 276.06 101.65 267.04 96.44 258.02 86.08 258.02 80.87 267.04 86.08 276.06 96.44 276.06"
+						style="fill: rgb(255, 255, 255); transform-origin: 91.26px 267.04px"
+						class="animable"
+					></polygon>
+					<path
+						id="elsxwq1218q1d"
+						d="M417.94,201.7l2-3.52c-.11-3.77-.09-7.48-.15-11.25l-1.89-3.27H407.58l-5.21,9,5.21,9Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 411.155px 192.68px"
+						class="animable"
+					></path>
+					<path
+						id="elrys9u4rqea"
+						d="M418.45,183.39l1.36,2.35c0-1.47-.08-3-.15-4.46Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 419.13px 183.51px"
+						class="animable"
+					></path>
+					<path
+						id="elxi325bg2wi"
+						d="M420,199.26,418.45,202l1.92,3.33C420.19,203.27,420.08,201.26,420,199.26Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 419.41px 202.295px"
+						class="animable"
+					></path>
+					<polygon
+						id="elds11be5p9i9"
+						points="385.79 238.88 391 229.86 385.79 220.84 375.43 220.84 370.22 229.86 375.43 238.88 385.79 238.88"
+						style="fill: rgb(255, 255, 255); transform-origin: 380.61px 229.86px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el2vztxmrv21l"
+						points="369.71 267.32 359.35 267.32 354.15 276.34 359.35 285.35 369.71 285.35 374.92 276.34 369.71 267.32"
+						style="fill: rgb(255, 255, 255); transform-origin: 364.535px 276.335px"
+						class="animable"
+					></polygon>
+					<path
+						id="elc8ks8bt0mn9"
+						d="M128.59,145.93l3.13-5.42c-4.85,1.75-9.28,3.54-13.29,5.42Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 125.075px 143.22px"
+						class="animable"
+					></path>
+					<polygon
+						id="elhexknddlt5o"
+						points="369.71 248.73 359.35 248.73 354.15 257.75 359.35 266.76 369.71 266.76 374.92 257.75 369.71 248.73"
+						style="fill: rgb(255, 255, 255); transform-origin: 364.535px 257.745px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el51tulhe15jy"
+						points="369.71 230.14 359.35 230.14 354.15 239.16 359.35 248.17 369.71 248.17 374.92 239.16 369.71 230.14"
+						style="fill: rgb(255, 255, 255); transform-origin: 364.535px 239.155px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elnkc61f67vog"
+						points="295.05 174.37 289.85 183.38 295.05 192.4 305.42 192.4 310.62 183.38 305.42 174.37 295.05 174.37"
+						style="fill: rgb(255, 255, 255); transform-origin: 300.235px 183.385px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elougqwmscm8f"
+						points="327.2 155.78 322 164.79 327.2 173.81 337.56 173.81 342.77 164.79 337.56 155.78 327.2 155.78"
+						style="fill: rgb(255, 255, 255); transform-origin: 332.385px 164.795px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el6734qli9ftk"
+						points="311.13 165.07 305.92 174.09 311.13 183.11 321.49 183.11 326.7 174.09 321.49 165.07 311.13 165.07"
+						style="fill: rgb(255, 255, 255); transform-origin: 316.31px 174.09px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="eli0wd4wuek2q"
+						points="369.71 322.54 374.92 313.52 369.71 304.5 359.35 304.5 354.15 313.52 359.35 322.54 369.71 322.54"
+						style="fill: rgb(255, 255, 255); transform-origin: 364.535px 313.52px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elslq2uw7c1hi"
+						points="278.98 165.07 273.77 174.09 278.98 183.11 289.34 183.11 294.55 174.09 289.34 165.07 278.98 165.07"
+						style="fill: rgb(255, 255, 255); transform-origin: 284.16px 174.09px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elm2zv1ahfie"
+						points="391.5 137.19 386.3 146.21 391.5 155.22 401.87 155.22 407.07 146.21 401.87 137.19 391.5 137.19"
+						style="fill: rgb(255, 255, 255); transform-origin: 396.685px 146.205px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elimqzm8xh9r"
+						points="375.43 146.48 370.22 155.5 375.43 164.52 385.79 164.52 391 155.5 385.79 146.48 375.43 146.48"
+						style="fill: rgb(255, 255, 255); transform-origin: 380.61px 155.5px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elvum9fv9ggzc"
+						points="343.28 165.07 338.07 174.09 343.28 183.11 353.64 183.11 358.85 174.09 353.64 165.07 343.28 165.07"
+						style="fill: rgb(255, 255, 255); transform-origin: 348.46px 174.09px"
+						class="animable"
+					></polygon>
+					<path
+						id="eling3g7nx3w"
+						d="M407.58,145.93h2.94A49.58,49.58,0,0,0,404.05,134l-1.68,2.91Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 406.445px 139.965px"
+						class="animable"
+					></path>
+					<polygon
+						id="el7mpw87hdxqr"
+						points="359.35 155.78 354.15 164.79 359.35 173.81 369.71 173.81 374.92 164.79 369.71 155.78 359.35 155.78"
+						style="fill: rgb(255, 255, 255); transform-origin: 364.535px 164.795px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elovckcx2vcuk"
+						points="369.71 285.91 359.35 285.91 354.15 294.93 359.35 303.94 369.71 303.94 374.92 294.93 369.71 285.91"
+						style="fill: rgb(255, 255, 255); transform-origin: 364.535px 294.925px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elxk0jo62w5s"
+						points="144.67 303.94 149.87 294.93 144.67 285.91 134.3 285.91 129.1 294.93 134.3 303.94 144.67 303.94"
+						style="fill: rgb(255, 255, 255); transform-origin: 139.485px 294.925px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el89cl4fs1w87"
+						points="128.59 313.24 133.8 304.22 128.59 295.2 118.23 295.2 113.02 304.22 118.23 313.24 128.59 313.24"
+						style="fill: rgb(255, 255, 255); transform-origin: 123.41px 304.22px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="ell76ct4ktwc"
+						points="112.52 303.94 117.72 294.93 112.52 285.91 102.15 285.91 96.95 294.93 102.15 303.94 112.52 303.94"
+						style="fill: rgb(255, 255, 255); transform-origin: 107.335px 294.925px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elhxqmv0zkyvp"
+						points="160.74 313.24 165.95 304.22 160.74 295.2 150.38 295.2 145.17 304.22 150.38 313.24 160.74 313.24"
+						style="fill: rgb(255, 255, 255); transform-origin: 155.56px 304.22px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elmi0hh65xqj"
+						points="176.82 303.94 182.02 294.93 176.82 285.91 166.45 285.91 161.25 294.93 166.45 303.94 176.82 303.94"
+						style="fill: rgb(255, 255, 255); transform-origin: 171.635px 294.925px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="eldh6gp8ic7an"
+						points="70 303.94 80.37 303.94 85.57 294.93 80.37 285.91 70 285.91 64.8 294.93 70 303.94"
+						style="fill: rgb(255, 255, 255); transform-origin: 75.185px 294.925px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elb8s5thv5xun"
+						points="192.89 294.65 198.1 285.63 192.89 276.61 182.53 276.61 177.32 285.63 182.53 294.65 192.89 294.65"
+						style="fill: rgb(255, 255, 255); transform-origin: 187.71px 285.63px"
+						class="animable"
+					></polygon>
+					<path
+						id="eluu6sjx0xb1"
+						d="M70,285.35H80.37l5.2-9-5.2-9h-9c-1.09,1-2.15,2-3.15,3l-3.47,6Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 75.16px 276.35px"
+						class="animable"
+					></path>
+					<polygon
+						id="elrcfl1hkkqa"
+						points="70 322.54 80.37 322.54 85.57 313.52 80.37 304.5 70 304.5 64.8 313.52 70 322.54"
+						style="fill: rgb(255, 255, 255); transform-origin: 75.185px 313.52px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elyesbjzmv4us"
+						points="96.44 313.24 101.65 304.22 96.44 295.2 86.08 295.2 80.87 304.22 86.08 313.24 96.44 313.24"
+						style="fill: rgb(255, 255, 255); transform-origin: 91.26px 304.22px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elg2ch1f0ox9n"
+						points="289.34 276.06 294.55 267.04 289.34 258.02 278.98 258.02 273.77 267.04 278.98 276.06 289.34 276.06"
+						style="fill: rgb(255, 255, 255); transform-origin: 284.16px 267.04px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elin74b6dv4ol"
+						points="321.49 294.65 326.7 285.63 321.49 276.61 311.13 276.61 305.92 285.63 311.13 294.65 321.49 294.65"
+						style="fill: rgb(255, 255, 255); transform-origin: 316.31px 285.63px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elairbznk2ugd"
+						points="353.64 313.24 358.85 304.22 353.64 295.2 343.28 295.2 338.07 304.22 343.28 313.24 353.64 313.24"
+						style="fill: rgb(255, 255, 255); transform-origin: 348.46px 304.22px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="eltcxlz1xzwj"
+						points="305.42 285.35 310.62 276.34 305.42 267.32 295.05 267.32 289.85 276.34 295.05 285.35 305.42 285.35"
+						style="fill: rgb(255, 255, 255); transform-origin: 300.235px 276.335px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el8qy0hpnos4n"
+						points="337.56 303.94 342.77 294.93 337.56 285.91 327.2 285.91 322 294.93 327.2 303.94 337.56 303.94"
+						style="fill: rgb(255, 255, 255); transform-origin: 332.385px 294.925px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="eljmbpqgsh4zr"
+						points="225.04 294.65 230.25 285.63 225.04 276.61 214.68 276.61 209.47 285.63 214.68 294.65 225.04 294.65"
+						style="fill: rgb(255, 255, 255); transform-origin: 219.86px 285.63px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="eliiddp2utwa9"
+						points="273.26 285.35 278.47 276.34 273.26 267.32 262.9 267.32 257.7 276.34 262.9 285.35 273.26 285.35"
+						style="fill: rgb(255, 255, 255); transform-origin: 268.085px 276.335px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elepexc3d2iyv"
+						points="208.97 285.35 214.17 276.34 208.97 267.32 198.6 267.32 193.4 276.34 198.6 285.35 208.97 285.35"
+						style="fill: rgb(255, 255, 255); transform-origin: 203.785px 276.335px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el8jbwlopzfm4"
+						points="241.12 285.35 246.32 276.34 241.12 267.32 230.75 267.32 225.55 276.34 230.75 285.35 241.12 285.35"
+						style="fill: rgb(255, 255, 255); transform-origin: 235.935px 276.335px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elti7hrirkba"
+						points="257.19 276.06 262.4 267.04 257.19 258.02 246.83 258.02 241.62 267.04 246.83 276.06 257.19 276.06"
+						style="fill: rgb(255, 255, 255); transform-origin: 252.01px 267.04px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elxhklf69za9"
+						points="401.87 210.99 407.07 201.97 401.87 192.96 391.5 192.96 386.3 201.97 391.5 210.99 401.87 210.99"
+						style="fill: rgb(255, 255, 255); transform-origin: 396.685px 201.975px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elim7jt7888y"
+						points="144.67 229.58 149.87 220.57 144.67 211.55 134.3 211.55 129.1 220.57 134.3 229.58 144.67 229.58"
+						style="fill: rgb(255, 255, 255); transform-origin: 139.485px 220.565px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el3ubg2ktjydq"
+						points="128.59 238.88 133.8 229.86 128.59 220.84 118.23 220.84 113.02 229.86 118.23 238.88 128.59 238.88"
+						style="fill: rgb(255, 255, 255); transform-origin: 123.41px 229.86px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elackc5mqz02p"
+						points="192.89 238.88 198.1 229.86 192.89 220.84 182.53 220.84 177.32 229.86 182.53 238.88 192.89 238.88"
+						style="fill: rgb(255, 255, 255); transform-origin: 187.71px 229.86px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el2wjy31pjtvb"
+						points="160.74 238.88 165.95 229.86 160.74 220.84 150.38 220.84 145.17 229.86 150.38 238.88 160.74 238.88"
+						style="fill: rgb(255, 255, 255); transform-origin: 155.56px 229.86px"
+						class="animable"
+					></polygon>
+					<path
+						id="eluw5dkcuifxd"
+						d="M87.84,183.66a34.24,34.24,0,0,0,2.28,18h6.32l5.21-9-5.21-9Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 94.5723px 192.66px"
+						class="animable"
+					></path>
+					<path
+						id="el9efztohq4fs"
+						d="M96.44,202.25H90.35c2.27,5.45,5.47,10.16,8,14.79l3.33-5.77Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 96.015px 209.645px"
+						class="animable"
+					></path>
+					<polygon
+						id="el6byr5x5yw0d"
+						points="102.15 192.96 96.95 201.97 102.15 210.99 112.52 210.99 117.72 201.97 112.52 192.96 102.15 192.96"
+						style="fill: rgb(255, 255, 255); transform-origin: 107.335px 201.975px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elp1u9mb2tw1r"
+						points="150.38 202.25 145.17 211.27 150.38 220.29 160.74 220.29 165.95 211.27 160.74 202.25 150.38 202.25"
+						style="fill: rgb(255, 255, 255); transform-origin: 155.56px 211.27px"
+						class="animable"
+					></polygon>
+					<path
+						id="el03d3ub8jutgr"
+						d="M117.72,220.57l-5.2-9H102.15l-3.51,6.08c2,3.89,3.56,7.74,3.58,12h10.3Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 108.18px 220.61px"
+						class="animable"
+					></path>
+					<polygon
+						id="elr3s00enqp3"
+						points="128.59 220.29 133.8 211.27 128.59 202.25 118.23 202.25 113.02 211.27 118.23 220.29 128.59 220.29"
+						style="fill: rgb(255, 255, 255); transform-origin: 123.41px 211.27px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elzn0v2a94cjb"
+						points="160.74 257.47 165.95 248.45 160.74 239.43 150.38 239.43 145.17 248.45 150.38 257.47 160.74 257.47"
+						style="fill: rgb(255, 255, 255); transform-origin: 155.56px 248.45px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el2nrnwjhs23u"
+						points="128.59 257.47 133.8 248.45 128.59 239.43 118.23 239.43 113.02 248.45 118.23 257.47 128.59 257.47"
+						style="fill: rgb(255, 255, 255); transform-origin: 123.41px 248.45px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elcmv9fpq33vv"
+						points="134.3 192.96 129.1 201.97 134.3 210.99 144.67 210.99 149.87 201.97 144.67 192.96 134.3 192.96"
+						style="fill: rgb(255, 255, 255); transform-origin: 139.485px 201.975px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elotu7y3kfb0b"
+						points="198.6 211.55 193.4 220.57 198.6 229.58 208.97 229.58 214.17 220.57 208.97 211.55 198.6 211.55"
+						style="fill: rgb(255, 255, 255); transform-origin: 203.785px 220.565px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elujcj6pd1fme"
+						points="176.82 248.17 182.02 239.16 176.82 230.14 166.45 230.14 161.25 239.16 166.45 248.17 176.82 248.17"
+						style="fill: rgb(255, 255, 255); transform-origin: 171.635px 239.155px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elxokukds1p5b"
+						points="144.67 248.17 149.87 239.16 144.67 230.14 134.3 230.14 129.1 239.16 134.3 248.17 144.67 248.17"
+						style="fill: rgb(255, 255, 255); transform-origin: 139.485px 239.155px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="eloqgwqt0gv1"
+						points="118.23 183.66 113.02 192.68 118.23 201.7 128.59 201.7 133.8 192.68 128.59 183.66 118.23 183.66"
+						style="fill: rgb(255, 255, 255); transform-origin: 123.41px 192.68px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elo3yji62rdz"
+						points="102.15 174.37 96.95 183.38 102.15 192.4 112.52 192.4 117.72 183.38 112.52 174.37 102.15 174.37"
+						style="fill: rgb(255, 255, 255); transform-origin: 107.335px 183.385px"
+						class="animable"
+					></polygon>
+					<path
+						id="elo114krrynze"
+						d="M94.32,165.07a45.62,45.62,0,0,0-6.4,18h8.52l5.21-9-5.21-9Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 94.785px 174.07px"
+						class="animable"
+					></path>
+					<path
+						id="elz1vai5vvly"
+						d="M112.52,248.17l5.2-9-5.2-9H102.21a22.24,22.24,0,0,1-3.89,11.4l3.83,6.63Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 108.02px 239.185px"
+						class="animable"
+					></path>
+					<polygon
+						id="el917ylm08r7h"
+						points="176.82 229.58 182.02 220.57 176.82 211.55 166.45 211.55 161.25 220.57 166.45 229.58 176.82 229.58"
+						style="fill: rgb(255, 255, 255); transform-origin: 171.635px 220.565px"
+						class="animable"
+					></polygon>
+					<path
+						id="elbqzeo53vz6m"
+						d="M354.15,109l5.2,9h10.36l5.21-9-1.48-2.57c-3.59-2.18-7.5-4.34-11.78-6.44h-2.31Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 364.535px 108.995px"
+						class="animable"
+					></path>
+					<path
+						id="el3gdz8auztes"
+						d="M337.56,341.68H327.2l-5.2,9,5.2,9h4.58c2.55-1.48,5.31-2.95,8.31-4.37l2.68-4.64Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 332.385px 350.68px"
+						class="animable"
+					></path>
+					<path
+						id="elja5ntjylsae"
+						d="M214.68,108.75H225l5.21-9-.85-1.46c-2,1.12-3.83,2.25-5.48,3.39-3.39,2.35-6.54,4.47-9.62,6.44Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 222.235px 103.52px"
+						class="animable"
+					></path>
+					<polygon
+						id="el55xkbo4am7"
+						points="214.68 202.25 209.47 211.27 214.68 220.29 225.04 220.29 230.25 211.27 225.04 202.25 214.68 202.25"
+						style="fill: rgb(255, 255, 255); transform-origin: 219.86px 211.27px"
+						class="animable"
+					></polygon>
+					<path
+						id="elnkamduvkyz9"
+						d="M385.79,332.38H375.43l-5.21,9,2.1,3.64A132.71,132.71,0,0,1,390,343.17l1-1.77Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 380.61px 338.7px"
+						class="animable"
+					></path>
+					<path
+						id="elolffhpjtbk"
+						d="M455.46,303.34a60.7,60.7,0,0,0-1.64-14l-3.22,5.58Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 453.03px 296.34px"
+						class="animable"
+					></path>
+					<path
+						id="ellq40qzo1gkl"
+						d="M273.27,378.86H262.9l-5.22,9,.71,1.21a62.32,62.32,0,0,0,18.68,1.24l1.41-2.45Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 268.08px 384.696px"
+						class="animable"
+					></path>
+					<path
+						id="el4q4oasvii0d"
+						d="M293.23,83.43a149.38,149.38,0,0,0-17.61.9L279,90.16h10.36Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 284.425px 86.7926px"
+						class="animable"
+					></path>
+					<path
+						id="eli9zyv0dulp"
+						d="M353.64,332.38H343.28l-5.21,9,5.21,9h8.85c.63-.22,1.25-.45,1.89-.66l4.83-8.36Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 348.46px 341.38px"
+						class="animable"
+					></path>
+					<polygon
+						id="elllh6wmjgnrk"
+						points="278.98 108.75 289.34 108.75 294.55 99.73 289.34 90.71 278.98 90.71 273.77 99.73 278.98 108.75"
+						style="fill: rgb(255, 255, 255); transform-origin: 284.16px 99.73px"
+						class="animable"
+					></polygon>
+					<path
+						id="elbgr1dyh8wqe"
+						d="M182.53,127.34h10.36l5.21-9-.48-.83c-4.93,2.38-10.33,4.66-16.72,7Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 189.5px 122.425px"
+						class="animable"
+					></path>
+					<path
+						id="eleiyfcuqmqq"
+						d="M102.15,173.81h10.37l5.2-9-5.2-9h-10l-.68.6L97,164.8Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 107.36px 164.81px"
+						class="animable"
+					></path>
+					<polygon
+						id="el1w2zkcwk8jl"
+						points="241.12 229.58 246.32 220.57 241.12 211.55 230.75 211.55 225.55 220.57 230.75 229.58 241.12 229.58"
+						style="fill: rgb(255, 255, 255); transform-origin: 235.935px 220.565px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elgj57kbutyjl"
+						points="214.68 220.84 209.47 229.86 214.68 238.88 225.04 238.88 230.25 229.86 225.04 220.84 214.68 220.84"
+						style="fill: rgb(255, 255, 255); transform-origin: 219.86px 229.86px"
+						class="animable"
+					></polygon>
+					<path
+						id="elzdsrun5hnfl"
+						d="M134.3,155.22h10.37l5.2-9-5.2-9h-3.16q-4.69,1.5-8.95,3l-3.46,6Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 139.485px 146.22px"
+						class="animable"
+					></path>
+					<path
+						id="eldja5gkb1bb5"
+						d="M85.57,332.11l-5.2-9H70l-4.81,8.34a38.11,38.11,0,0,0,7.24,9.69h7.94Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 75.38px 332.125px"
+						class="animable"
+					></path>
+					<path
+						id="elv45fet51al"
+						d="M160.74,332.38H150.38l-5.21,9,5.12,8.87a43.3,43.3,0,0,1,7.15.15h3.3l5.21-9Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 155.56px 341.39px"
+						class="animable"
+					></path>
+					<path
+						id="elby311rhnx4"
+						d="M85.57,257.75l-.8-1.39C80.4,260.06,76,263.3,72,266.76h8.33Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 78.785px 261.56px"
+						class="animable"
+					></path>
+					<path
+						id="elp2g1rzntdsq"
+						d="M150.38,145.93h10.36l5.21-9-3.55-6.15c-3.41,1.07-7,2.19-11,3.36-1.94.58-3.82,1.15-5.66,1.72l-.62,1.07Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 155.535px 138.355px"
+						class="animable"
+					></path>
+					<path
+						id="elqyij3jmyr2q"
+						d="M69.5,304.22l-5.21-9H57.74a58.08,58.08,0,0,0,.2,7.58c.33,3.77.79,7.24,1.37,10.46h5Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 63.598px 304.24px"
+						class="animable"
+					></path>
+					<path
+						id="elopmkbi49u6h"
+						d="M101.65,341.4l-5.21-9H86.08l-5.21,9,4.89,8.46c.41.19.83.38,1.26.56h9.42Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 91.26px 341.41px"
+						class="animable"
+					></path>
+					<polygon
+						id="elut0pn756m7"
+						points="327.2 192.96 322 201.97 327.2 210.99 337.56 210.99 342.77 201.97 337.56 192.96 327.2 192.96"
+						style="fill: rgb(255, 255, 255); transform-origin: 332.385px 201.975px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elbjg2wf08v2o"
+						points="295.05 211.55 289.85 220.57 295.05 229.58 305.42 229.58 310.62 220.57 305.42 211.55 295.05 211.55"
+						style="fill: rgb(255, 255, 255); transform-origin: 300.235px 220.565px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="els18wi8mo4z"
+						points="311.13 202.25 305.92 211.27 311.13 220.29 321.49 220.29 326.7 211.27 321.49 202.25 311.13 202.25"
+						style="fill: rgb(255, 255, 255); transform-origin: 316.31px 211.27px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="eltsgfhtp5b3l"
+						points="246.83 202.25 241.62 211.27 246.83 220.29 257.19 220.29 262.4 211.27 257.19 202.25 246.83 202.25"
+						style="fill: rgb(255, 255, 255); transform-origin: 252.01px 211.27px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el5yx177oa1xu"
+						points="278.98 202.25 273.77 211.27 278.98 220.29 289.34 220.29 294.55 211.27 289.34 202.25 278.98 202.25"
+						style="fill: rgb(255, 255, 255); transform-origin: 284.16px 211.27px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elfkorowp31rb"
+						points="262.9 211.55 257.7 220.57 262.9 229.58 273.26 229.58 278.47 220.57 273.26 211.55 262.9 211.55"
+						style="fill: rgb(255, 255, 255); transform-origin: 268.085px 220.565px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elga5r8zx5mpj"
+						points="337.56 266.76 342.77 257.75 337.56 248.73 327.2 248.73 322 257.75 327.2 266.76 337.56 266.76"
+						style="fill: rgb(255, 255, 255); transform-origin: 332.385px 257.745px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="eltfiwhwpnmbq"
+						points="321.49 257.47 326.7 248.45 321.49 239.43 311.13 239.43 305.92 248.45 311.13 257.47 321.49 257.47"
+						style="fill: rgb(255, 255, 255); transform-origin: 316.31px 248.45px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elggrkmq1lqlh"
+						points="337.56 230.14 327.2 230.14 322 239.16 327.2 248.17 337.56 248.17 342.77 239.16 337.56 230.14"
+						style="fill: rgb(255, 255, 255); transform-origin: 332.385px 239.155px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="eldzle9urth6q"
+						points="337.56 211.55 327.2 211.55 322 220.57 327.2 229.58 337.56 229.58 342.77 220.57 337.56 211.55"
+						style="fill: rgb(255, 255, 255); transform-origin: 332.385px 220.565px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elcfyrny8xx3a"
+						points="353.64 220.29 358.85 211.27 353.64 202.25 343.28 202.25 338.07 211.27 343.28 220.29 353.64 220.29"
+						style="fill: rgb(255, 255, 255); transform-origin: 348.46px 211.27px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elmsaoyyhmn5e"
+						points="150.38 165.07 145.17 174.09 150.38 183.11 160.74 183.11 165.95 174.09 160.74 165.07 150.38 165.07"
+						style="fill: rgb(255, 255, 255); transform-origin: 155.56px 174.09px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el2ujbgsyx1di"
+						points="134.3 155.78 129.1 164.79 134.3 173.81 144.67 173.81 149.87 164.79 144.67 155.78 134.3 155.78"
+						style="fill: rgb(255, 255, 255); transform-origin: 139.485px 164.795px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el7b9nxfovtsg"
+						points="118.23 146.48 113.02 155.5 118.23 164.52 128.59 164.52 133.8 155.5 128.59 146.48 118.23 146.48"
+						style="fill: rgb(255, 255, 255); transform-origin: 123.41px 155.5px"
+						class="animable"
+					></polygon>
+					<path
+						id="elvf27wjyctq"
+						d="M112.52,155.22l5.16-8.94a70.37,70.37,0,0,0-14.52,8.94Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 110.42px 150.75px"
+						class="animable"
+					></path>
+					<polygon
+						id="el7d4i45d6hte"
+						points="198.6 192.96 193.4 201.97 198.6 210.99 208.97 210.99 214.17 201.97 208.97 192.96 198.6 192.96"
+						style="fill: rgb(255, 255, 255); transform-origin: 203.785px 201.975px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el0ktd0hm8lb4"
+						points="166.45 174.37 161.25 183.38 166.45 192.4 176.82 192.4 182.02 183.38 176.82 174.37 166.45 174.37"
+						style="fill: rgb(255, 255, 255); transform-origin: 171.635px 183.385px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elwqs8fjgk2n"
+						points="230.75 192.96 225.55 201.97 230.75 210.99 241.12 210.99 246.32 201.97 241.12 192.96 230.75 192.96"
+						style="fill: rgb(255, 255, 255); transform-origin: 235.935px 201.975px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elqtlnpmfdrij"
+						points="214.68 183.66 209.47 192.68 214.68 201.7 225.04 201.7 230.25 192.68 225.04 183.66 214.68 183.66"
+						style="fill: rgb(255, 255, 255); transform-origin: 219.86px 192.68px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elso6chfvhnsl"
+						points="182.53 183.66 177.32 192.68 182.53 201.7 192.89 201.7 198.1 192.68 192.89 183.66 182.53 183.66"
+						style="fill: rgb(255, 255, 255); transform-origin: 187.71px 192.68px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elqh58sp6f0lo"
+						points="112.52 266.76 117.72 257.75 112.52 248.73 102.15 248.73 96.95 257.75 102.15 266.76 112.52 266.76"
+						style="fill: rgb(255, 255, 255); transform-origin: 107.335px 257.745px"
+						class="animable"
+					></polygon>
+					<path
+						id="elpkktdxvtl1"
+						d="M94.68,164.52h1.76l3.94-6.83A41,41,0,0,0,94.68,164.52Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 97.53px 161.105px"
+						class="animable"
+					></path>
+					<polygon
+						id="elfitr4tcv69c"
+						points="160.74 276.06 165.95 267.04 160.74 258.02 150.38 258.02 145.17 267.04 150.38 276.06 160.74 276.06"
+						style="fill: rgb(255, 255, 255); transform-origin: 155.56px 267.04px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el90r6fawu0d5"
+						points="182.53 202.25 177.32 211.27 182.53 220.29 192.89 220.29 198.1 211.27 192.89 202.25 182.53 202.25"
+						style="fill: rgb(255, 255, 255); transform-origin: 187.71px 211.27px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el18r7g8clnx8"
+						points="128.59 276.06 133.8 267.04 128.59 258.02 118.23 258.02 113.02 267.04 118.23 276.06 128.59 276.06"
+						style="fill: rgb(255, 255, 255); transform-origin: 123.41px 267.04px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el0mhjbvhmd6en"
+						points="144.67 266.76 149.87 257.75 144.67 248.73 134.3 248.73 129.1 257.75 134.3 266.76 144.67 266.76"
+						style="fill: rgb(255, 255, 255); transform-origin: 139.485px 257.745px"
+						class="animable"
+					></polygon>
+					<path
+						id="el25z0kstmp98"
+						d="M96.44,257.47l5.21-9L98,242.08c-.21.33-.43.66-.67,1A70.21,70.21,0,0,1,85.22,256l.86,1.49Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 93.435px 249.785px"
+						class="animable"
+					></path>
+					<polygon
+						id="elhek8ya63xd5"
+						points="150.38 183.66 145.17 192.68 150.38 201.7 160.74 201.7 165.95 192.68 160.74 183.66 150.38 183.66"
+						style="fill: rgb(255, 255, 255); transform-origin: 155.56px 192.68px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elzovv9dpkpz"
+						points="166.45 192.96 161.25 201.97 166.45 210.99 176.82 210.99 182.02 201.97 176.82 192.96 166.45 192.96"
+						style="fill: rgb(255, 255, 255); transform-origin: 171.635px 201.975px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elk96uw8stk3g"
+						points="118.23 165.07 113.02 174.09 118.23 183.11 128.59 183.11 133.8 174.09 128.59 165.07 118.23 165.07"
+						style="fill: rgb(255, 255, 255); transform-origin: 123.41px 174.09px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el06plhsx815eu"
+						points="134.3 174.37 129.1 183.38 134.3 192.4 144.67 192.4 149.87 183.38 144.67 174.37 134.3 174.37"
+						style="fill: rgb(255, 255, 255); transform-origin: 139.485px 183.385px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="ell5cqhxj9bpc"
+						points="257.19 238.88 262.4 229.86 257.19 220.84 246.83 220.84 241.62 229.86 246.83 238.88 257.19 238.88"
+						style="fill: rgb(255, 255, 255); transform-origin: 252.01px 229.86px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="eltsnuha1w1g7"
+						points="289.34 238.88 294.55 229.86 289.34 220.84 278.98 220.84 273.77 229.86 278.98 238.88 289.34 238.88"
+						style="fill: rgb(255, 255, 255); transform-origin: 284.16px 229.86px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elv9izs5xfjn"
+						points="273.26 248.17 278.47 239.16 273.26 230.14 262.9 230.14 257.7 239.16 262.9 248.17 273.26 248.17"
+						style="fill: rgb(255, 255, 255); transform-origin: 268.085px 239.155px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el3u99wvdf03h"
+						points="305.42 248.17 310.62 239.16 305.42 230.14 295.05 230.14 289.85 239.16 295.05 248.17 305.42 248.17"
+						style="fill: rgb(255, 255, 255); transform-origin: 300.235px 239.155px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elwyokuf1uyv"
+						points="321.49 238.88 326.7 229.86 321.49 220.84 311.13 220.84 305.92 229.86 311.13 238.88 321.49 238.88"
+						style="fill: rgb(255, 255, 255); transform-origin: 316.31px 229.86px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elkuspxwf5m4"
+						points="192.89 257.47 198.1 248.45 192.89 239.43 182.53 239.43 177.32 248.45 182.53 257.47 192.89 257.47"
+						style="fill: rgb(255, 255, 255); transform-origin: 187.71px 248.45px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el05zfg2kuiv5o"
+						points="176.82 266.76 182.02 257.75 176.82 248.73 166.45 248.73 161.25 257.75 166.45 266.76 176.82 266.76"
+						style="fill: rgb(255, 255, 255); transform-origin: 171.635px 257.745px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el9yo8uju8kar"
+						points="208.97 248.17 214.17 239.16 208.97 230.14 198.6 230.14 193.4 239.16 198.6 248.17 208.97 248.17"
+						style="fill: rgb(255, 255, 255); transform-origin: 203.785px 239.155px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elmczjn4k5xo9"
+						points="241.12 248.17 246.32 239.16 241.12 230.14 230.75 230.14 225.55 239.16 230.75 248.17 241.12 248.17"
+						style="fill: rgb(255, 255, 255); transform-origin: 235.935px 239.155px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elf87o2w71nyg"
+						points="225.04 257.47 230.25 248.45 225.04 239.43 214.68 239.43 209.47 248.45 214.68 257.47 225.04 257.47"
+						style="fill: rgb(255, 255, 255); transform-origin: 219.86px 248.45px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el5f8y611p53j"
+						points="257.19 257.47 262.4 248.45 257.19 239.43 246.83 239.43 241.62 248.45 246.83 257.47 257.19 257.47"
+						style="fill: rgb(255, 255, 255); transform-origin: 252.01px 248.45px"
+						class="animable"
+					></polygon>
+					<path
+						id="elfy5ybjbmh9"
+						d="M375.43,108.75h1.63c-.84-.56-1.7-1.11-2.59-1.66Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 375.765px 107.92px"
+						class="animable"
+					></path>
+					<polygon
+						id="el0dlljnrahn6g"
+						points="343.28 109.3 338.07 118.32 343.28 127.34 353.64 127.34 358.85 118.32 353.64 109.3 343.28 109.3"
+						style="fill: rgb(255, 255, 255); transform-origin: 348.46px 118.32px"
+						class="animable"
+					></polygon>
+					<path
+						id="el7kudh7ruhgd"
+						d="M431.38,239.27a100.45,100.45,0,0,1-4.61-9.13h-3.12l-5.2,9,5.2,9H434l1.2-2.08C434,243.86,432.7,241.58,431.38,239.27Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 426.825px 239.14px"
+						class="animable"
+					></path>
+					<polygon
+						id="elkdtbyvrgmu"
+						points="327.2 100.01 322 109.03 327.2 118.04 337.56 118.04 342.77 109.03 337.56 100.01 327.2 100.01"
+						style="fill: rgb(255, 255, 255); transform-origin: 332.385px 109.025px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elqy20dn2qex"
+						points="311.13 109.3 305.92 118.32 311.13 127.34 321.49 127.34 326.7 118.32 321.49 109.3 311.13 109.3"
+						style="fill: rgb(255, 255, 255); transform-origin: 316.31px 118.32px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elsre9n9ktrus"
+						points="434.01 266.76 439.22 257.75 434.01 248.73 423.65 248.73 418.45 257.75 423.65 266.76 434.01 266.76"
+						style="fill: rgb(255, 255, 255); transform-origin: 428.835px 257.745px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elszbw7ojz8od"
+						points="417.94 276.61 407.58 276.61 402.37 285.63 407.58 294.65 417.94 294.65 423.15 285.63 417.94 276.61"
+						style="fill: rgb(255, 255, 255); transform-origin: 412.76px 285.63px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elharnt9x0oc9"
+						points="417.94 295.2 407.58 295.2 402.37 304.22 407.58 313.24 417.94 313.24 423.15 304.22 417.94 295.2"
+						style="fill: rgb(255, 255, 255); transform-origin: 412.76px 304.22px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elm8743sb0kdd"
+						points="417.94 258.02 407.58 258.02 402.37 267.04 407.58 276.06 417.94 276.06 423.15 267.04 417.94 258.02"
+						style="fill: rgb(255, 255, 255); transform-origin: 412.76px 267.04px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elssdkc0rpxym"
+						points="295.05 118.6 289.85 127.61 295.05 136.63 305.42 136.63 310.62 127.61 305.42 118.6 295.05 118.6"
+						style="fill: rgb(255, 255, 255); transform-origin: 300.235px 127.615px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elovoaer9ub1"
+						points="225.04 369.01 230.25 359.99 225.04 350.97 214.68 350.97 209.47 359.99 214.68 369.01 225.04 369.01"
+						style="fill: rgb(255, 255, 255); transform-origin: 219.86px 359.99px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el7z7h2n1rqg"
+						points="278.98 109.3 273.77 118.32 278.98 127.34 289.34 127.34 294.55 118.32 289.34 109.3 278.98 109.3"
+						style="fill: rgb(255, 255, 255); transform-origin: 284.16px 118.32px"
+						class="animable"
+					></polygon>
+					<path
+						id="el6y0ytdlyk7k"
+						d="M192.89,351H182.53l-3.41,5.91c5.22,2.2,10.75,4.75,16.48,7.44l2.5-4.33Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 188.61px 357.675px"
+						class="animable"
+					></path>
+					<polygon
+						id="el6dexrr2fce8"
+						points="417.94 313.79 407.58 313.79 402.37 322.81 407.58 331.83 417.94 331.83 423.15 322.81 417.94 313.79"
+						style="fill: rgb(255, 255, 255); transform-origin: 412.76px 322.81px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elj9bxs193ras"
+						points="257.19 350.42 262.4 341.4 257.19 332.38 246.83 332.38 241.62 341.4 246.83 350.42 257.19 350.42"
+						style="fill: rgb(255, 255, 255); transform-origin: 252.01px 341.4px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="ely5mafqwss4"
+						points="241.12 359.71 246.32 350.7 241.12 341.68 230.75 341.68 225.55 350.7 230.75 359.71 241.12 359.71"
+						style="fill: rgb(255, 255, 255); transform-origin: 235.935px 350.695px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elkkas3j63es"
+						points="208.97 359.71 214.17 350.7 208.97 341.68 198.6 341.68 193.4 350.7 198.6 359.71 208.97 359.71"
+						style="fill: rgb(255, 255, 255); transform-origin: 203.785px 350.695px"
+						class="animable"
+					></polygon>
+					<path
+						id="el51d3ygye2su"
+						d="M198.6,118H209l5.2-9-.35-.61a157.27,157.27,0,0,1-15.68,8.83Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 206.185px 113.195px"
+						class="animable"
+					></path>
+					<polygon
+						id="el2qjrdmwbthq"
+						points="262.9 118.6 257.7 127.61 262.9 136.63 273.26 136.63 278.47 127.61 273.26 118.6 262.9 118.6"
+						style="fill: rgb(255, 255, 255); transform-origin: 268.085px 127.615px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elhay1mwydf2h"
+						points="246.83 109.3 241.62 118.32 246.83 127.34 257.19 127.34 262.4 118.32 257.19 109.3 246.83 109.3"
+						style="fill: rgb(255, 255, 255); transform-origin: 252.01px 118.32px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elqxui0sf53l8"
+						points="230.75 100.01 225.55 109.03 230.75 118.04 241.12 118.04 246.32 109.03 241.12 100.01 230.75 100.01"
+						style="fill: rgb(255, 255, 255); transform-origin: 235.935px 109.025px"
+						class="animable"
+					></polygon>
+					<path
+						id="elyco9x4hbv8"
+						d="M407.58,332.38l-5.21,9,1,1.65c7,.1,13.31.3,19-.25l.81-1.4-5.21-9Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 412.775px 337.765px"
+						class="animable"
+					></path>
+					<path
+						id="elatak1ogkzbe"
+						d="M130.76,354.73,128.59,351H118.23l-3.65,6.33A53.38,53.38,0,0,0,130.76,354.73Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 122.67px 354.165px"
+						class="animable"
+					></path>
+					<path
+						id="ellr00cyzaroi"
+						d="M144.67,341.68H134.3l-5.2,9,2.23,3.86c5.87-1.74,11.56-3.73,18.32-4.25Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 139.375px 348.11px"
+						class="animable"
+					></path>
+					<polygon
+						id="elrm7uw342gwd"
+						points="192.89 350.42 198.1 341.4 192.89 332.38 182.53 332.38 177.32 341.4 182.53 350.42 192.89 350.42"
+						style="fill: rgb(255, 255, 255); transform-origin: 187.71px 341.4px"
+						class="animable"
+					></polygon>
+					<path
+						id="elhy1dk3sjflf"
+						d="M176.82,341.68H166.45l-5.2,9,.18.31a60.11,60.11,0,0,1,9.58,2.66c2.43.89,5,1.9,7.57,3l3.44-6Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 171.635px 349.165px"
+						class="animable"
+					></path>
+					<path
+						id="eldzssdy3qale"
+						d="M112.52,341.68H102.15l-5.2,9,2.27,3.93c1.29.37,2.59.73,4,1.08a47.63,47.63,0,0,0,10.75,1.57l3.8-6.58Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 107.36px 349.47px"
+						class="animable"
+					></path>
+					<polygon
+						id="elxhyrdssp3l"
+						points="230.75 118.6 225.55 127.61 230.75 136.63 241.12 136.63 246.32 127.61 241.12 118.6 230.75 118.6"
+						style="fill: rgb(255, 255, 255); transform-origin: 235.935px 127.615px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el957f646xlua"
+						points="214.68 109.3 209.47 118.32 214.68 127.34 225.04 127.34 230.25 118.32 225.04 109.3 214.68 109.3"
+						style="fill: rgb(255, 255, 255); transform-origin: 219.86px 118.32px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elcav2507kulk"
+						points="246.83 127.89 241.62 136.91 246.83 145.93 257.19 145.93 262.4 136.91 257.19 127.89 246.83 127.89"
+						style="fill: rgb(255, 255, 255); transform-origin: 252.01px 136.91px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="ela3kki8bcwu"
+						points="208.97 341.12 214.17 332.11 208.97 323.09 198.6 323.09 193.4 332.11 198.6 341.12 208.97 341.12"
+						style="fill: rgb(255, 255, 255); transform-origin: 203.785px 332.105px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el8rkp4djnzhn"
+						points="198.6 118.6 193.4 127.61 198.6 136.63 208.97 136.63 214.17 127.61 208.97 118.6 198.6 118.6"
+						style="fill: rgb(255, 255, 255); transform-origin: 203.785px 127.615px"
+						class="animable"
+					></polygon>
+					<path
+						id="el86vpw03y61j"
+						d="M343.28,351,341,354.92c2.93-1.36,6.09-2.68,9.54-3.95Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 345.77px 352.945px"
+						class="animable"
+					></path>
+					<polygon
+						id="elw34g1vfie7d"
+						points="305.42 341.12 310.62 332.11 305.42 323.09 295.05 323.09 289.85 332.11 295.05 341.12 305.42 341.12"
+						style="fill: rgb(255, 255, 255); transform-origin: 300.235px 332.105px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elfygrnedoosa"
+						points="321.49 350.42 326.7 341.4 321.49 332.38 311.13 332.38 305.92 341.4 311.13 350.42 321.49 350.42"
+						style="fill: rgb(255, 255, 255); transform-origin: 316.31px 341.4px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elxihp9c1xweq"
+						points="225.04 350.42 230.25 341.4 225.04 332.38 214.68 332.38 209.47 341.4 214.68 350.42 225.04 350.42"
+						style="fill: rgb(255, 255, 255); transform-origin: 219.86px 341.4px"
+						class="animable"
+					></polygon>
+					<path
+						id="eli9kytwxwwjn"
+						d="M423.05,342.72a45.65,45.65,0,0,0,6-1h-5.41Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 426.05px 342.22px"
+						class="animable"
+					></path>
+					<polygon
+						id="elof8lyksqtwj"
+						points="273.26 359.71 278.47 350.7 273.26 341.68 262.9 341.68 257.7 350.7 262.9 359.71 273.26 359.71"
+						style="fill: rgb(255, 255, 255); transform-origin: 268.085px 350.695px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el1ru1qg17o2w"
+						points="241.12 341.12 246.32 332.11 241.12 323.09 230.75 323.09 225.55 332.11 230.75 341.12 241.12 341.12"
+						style="fill: rgb(255, 255, 255); transform-origin: 235.935px 332.105px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="eltksx55w7qa"
+						points="257.19 331.83 262.4 322.81 257.19 313.79 246.83 313.79 241.62 322.81 246.83 331.83 257.19 331.83"
+						style="fill: rgb(255, 255, 255); transform-origin: 252.01px 322.81px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elefxdxq3knlq"
+						points="289.34 331.83 294.55 322.81 289.34 313.79 278.98 313.79 273.77 322.81 278.98 331.83 289.34 331.83"
+						style="fill: rgb(255, 255, 255); transform-origin: 284.16px 322.81px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="eldu7l0l434q"
+						points="273.26 341.12 278.47 332.11 273.26 323.09 262.9 323.09 257.7 332.11 262.9 341.12 273.26 341.12"
+						style="fill: rgb(255, 255, 255); transform-origin: 268.085px 332.105px"
+						class="animable"
+					></polygon>
+					<path
+						id="el9bthqc7eng"
+						d="M96.44,351H88.35a103.1,103.1,0,0,0,10.08,3.44Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 93.39px 352.72px"
+						class="animable"
+					></path>
+					<polygon
+						id="ellwpctglyudj"
+						points="305.42 378.31 310.62 369.29 305.42 360.27 295.05 360.27 289.85 369.29 295.05 378.31 305.42 378.31"
+						style="fill: rgb(255, 255, 255); transform-origin: 300.235px 369.29px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elyfo6aqrds5h"
+						points="289.34 369.01 294.55 359.99 289.34 350.97 278.98 350.97 273.77 359.99 278.98 369.01 289.34 369.01"
+						style="fill: rgb(255, 255, 255); transform-origin: 284.16px 359.99px"
+						class="animable"
+					></polygon>
+					<path
+						id="elk69qdvcpdyi"
+						d="M311.13,369.57l-5.05,8.74c3.71-2.71,7.33-5.68,11.3-8.74Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 311.73px 373.94px"
+						class="animable"
+					></path>
+					<polygon
+						id="elogx9fs99iwf"
+						points="273.26 378.31 278.47 369.29 273.26 360.27 262.9 360.27 257.7 369.29 262.9 378.31 273.26 378.31"
+						style="fill: rgb(255, 255, 255); transform-origin: 268.085px 369.29px"
+						class="animable"
+					></polygon>
+					<path
+						id="ely6oqht4htg"
+						d="M305.32,378.86H295.05l-4.78,8.28A62.93,62.93,0,0,0,305.32,378.86Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 297.795px 383px"
+						class="animable"
+					></path>
+					<path
+						id="elo94jv1iz8pk"
+						d="M450.11,313.79H439.73l-5.21,9,5.21,9h5.11c.58-.69,1.15-1.41,1.72-2.18a46.3,46.3,0,0,0,6.18-11.31Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 443.63px 322.79px"
+						class="animable"
+					></path>
+					<path
+						id="elq9xeo3dakg"
+						d="M241.12,378.86H230.75l-.66,1.15c5,2.06,10,3.93,14.87,5.52Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 237.525px 382.195px"
+						class="animable"
+					></path>
+					<path
+						id="elmh32kj6gj5s"
+						d="M230.25,378.58l-5.21-9H214.68L213,372.49c5.48,2.54,11,5,16.56,7.31Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 221.625px 374.69px"
+						class="animable"
+					></path>
+					<polygon
+						id="elk8p6al2cmwk"
+						points="241.12 360.27 230.75 360.27 225.55 369.29 230.75 378.31 241.12 378.31 246.32 369.29 241.12 360.27"
+						style="fill: rgb(255, 255, 255); transform-origin: 235.935px 369.29px"
+						class="animable"
+					></polygon>
+					<path
+						id="elmk8mm0joz1o"
+						d="M209,360.27H198.6l-2.48,4.29c5.32,2.5,10.8,5.12,16.34,7.69l1.71-3Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 205.145px 366.26px"
+						class="animable"
+					></path>
+					<polygon
+						id="elh8jjqcecr65"
+						points="257.19 369.01 262.4 359.99 257.19 350.97 246.83 350.97 241.62 359.99 246.83 369.01 257.19 369.01"
+						style="fill: rgb(255, 255, 255); transform-origin: 252.01px 359.99px"
+						class="animable"
+					></polygon>
+					<path
+						id="elwgcgqywc1ok"
+						d="M450.6,313.52l2.39,4.15a43.14,43.14,0,0,0,2.41-12.48Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 453px 311.43px"
+						class="animable"
+					></path>
+					<path
+						id="eldh58w8rk1k5"
+						d="M257.19,388.15H254.1c1.2.3,2.38.57,3.56.82Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 255.88px 388.56px"
+						class="animable"
+					></path>
+					<path
+						id="el6jemth66bl"
+						d="M289,387.6l.47-.17,5.11-8.85-5.21-9H279l-5.21,9,5.21,9Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 284.185px 378.59px"
+						class="animable"
+					></path>
+					<polygon
+						id="elm0exa3r3fc"
+						points="450.11 295.2 439.73 295.2 434.52 304.22 439.73 313.24 450.11 313.24 455.32 304.22 450.11 295.2"
+						style="fill: rgb(255, 255, 255); transform-origin: 444.92px 304.22px"
+						class="animable"
+					></polygon>
+					<path
+						id="eluac4nlqp10n"
+						d="M279,388.15l-1.21,2.11c.8-.1,1.6-.21,2.39-.35a60.58,60.58,0,0,0,7.11-1.76Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 282.54px 389.205px"
+						class="animable"
+					></path>
+					<path
+						id="el1st4dzpxk94"
+						d="M449.9,276.61H439.73l-5.21,9,5.21,9h10.38l3.52-6.08A101.72,101.72,0,0,0,449.9,276.61Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 444.075px 285.61px"
+						class="animable"
+					></path>
+					<path
+						id="elm42op77e4am"
+						d="M289.85,90.43l5.2,9h10.37l5.2-9L307,84.17c-4.46-.44-8.84-.69-13.11-.74Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 300.235px 91.43px"
+						class="animable"
+					></path>
+					<path
+						id="elveekem8u9fq"
+						d="M257.7,90.43l5.2,9h10.37l5.2-9-3.48-6A142.81,142.81,0,0,0,259.67,87Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 268.085px 91.93px"
+						class="animable"
+					></path>
+					<path
+						id="els428gpp30r"
+						d="M257.19,387.6l5.21-9-5.21-9H246.83l-5.21,9,4.16,7.21c2.08.66,4.14,1.27,6.18,1.81Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 252.01px 378.61px"
+						class="animable"
+					></path>
+					<polygon
+						id="elor1nlk9957"
+						points="246.83 90.71 241.62 99.73 246.83 108.75 257.19 108.75 262.4 99.73 257.19 90.71 246.83 90.71"
+						style="fill: rgb(255, 255, 255); transform-origin: 252.01px 99.73px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="eloprar4zjnra"
+						points="434.01 285.91 423.65 285.91 418.45 294.93 423.65 303.94 434.01 303.94 439.22 294.93 434.01 285.91"
+						style="fill: rgb(255, 255, 255); transform-origin: 428.835px 294.925px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elxxdxblhfuv"
+						points="434.01 304.5 423.65 304.5 418.45 313.52 423.65 322.54 434.01 322.54 439.22 313.52 434.01 304.5"
+						style="fill: rgb(255, 255, 255); transform-origin: 428.835px 313.52px"
+						class="animable"
+					></polygon>
+					<path
+						id="eludcfoj6v52"
+						d="M423.65,323.09l-5.2,9,5.2,9H431a29.77,29.77,0,0,0,3.87-1.5l4.33-7.51-5.2-9Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 428.825px 332.085px"
+						class="animable"
+					></path>
+					<path
+						id="elkspxyug6fn"
+						d="M449.69,276.06a188.85,188.85,0,0,0-8.13-18h-1.83l-5.21,9,5.21,9Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 442.105px 267.06px"
+						class="animable"
+					></path>
+					<polygon
+						id="elz0q3l2gpbzq"
+						points="434.01 267.32 423.65 267.32 418.45 276.34 423.65 285.35 434.01 285.35 439.22 276.34 434.01 267.32"
+						style="fill: rgb(255, 255, 255); transform-origin: 428.835px 276.335px"
+						class="animable"
+					></polygon>
+					<path
+						id="elaj95lb02hp6"
+						d="M439.73,332.38l-3.91,6.77a29.35,29.35,0,0,0,8.53-6.77Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 440.085px 335.765px"
+						class="animable"
+					></path>
+					<polygon
+						id="elgtr3edam3eb"
+						points="305.42 359.71 310.62 350.7 305.42 341.68 295.05 341.68 289.85 350.7 295.05 359.71 305.42 359.71"
+						style="fill: rgb(255, 255, 255); transform-origin: 300.235px 350.695px"
+						class="animable"
+					></polygon>
+					<path
+						id="elxobvglo1yba"
+						d="M318.1,369c1.86-1.42,3.81-2.86,5.87-4.3L326.7,360l-5.21-9H311.13l-5.21,9,5.21,9Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 316.31px 360px"
+						class="animable"
+					></path>
+					<path
+						id="elx2vwn55343"
+						d="M434.52,248.45l5.21,9h1.55q-2.67-5.25-5.74-10.79Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 437.9px 252.055px"
+						class="animable"
+					></path>
+					<path
+						id="el1dill98pymp"
+						d="M327.2,360.27,325.07,364c1.82-1.24,3.74-2.47,5.79-3.69Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 327.965px 362.135px"
+						class="animable"
+					></path>
+					<path
+						id="elx0jw5b5mt"
+						d="M230.75,99.45h10.37l4.93-8.54A102.28,102.28,0,0,0,229.91,98Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 237.98px 95.18px"
+						class="animable"
+					></path>
+					<polygon
+						id="elqarwsp286qk"
+						points="262.9 100.01 257.7 109.03 262.9 118.04 273.26 118.04 278.47 109.03 273.26 100.01 262.9 100.01"
+						style="fill: rgb(255, 255, 255); transform-origin: 268.085px 109.025px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elva5wghn8hef"
+						points="295.05 100.01 289.85 109.03 295.05 118.04 305.42 118.04 310.62 109.03 305.42 100.01 295.05 100.01"
+						style="fill: rgb(255, 255, 255); transform-origin: 300.235px 109.025px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="eld19xzze4k7"
+						points="289.34 350.42 294.55 341.4 289.34 332.38 278.98 332.38 273.77 341.4 278.98 350.42 289.34 350.42"
+						style="fill: rgb(255, 255, 255); transform-origin: 284.16px 341.4px"
+						class="animable"
+					></polygon>
+					<path
+						id="elz6je8a9qjy"
+						d="M248.27,90.16h8.92l1.71-3C255.17,88.07,251.62,89.07,248.27,90.16Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 253.585px 88.66px"
+						class="animable"
+					></path>
+					<path
+						id="elkzplonr6iep"
+						d="M322,90.43l5.2,9h10.36L342,91.83a157.42,157.42,0,0,0-17.91-5Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 332px 93.13px"
+						class="animable"
+					></path>
+					<path
+						id="el3low2e97mj7"
+						d="M343.28,108.75h10.36l5.21-9L358,98.27q-5-2.33-10.73-4.52c-1.59-.61-3.17-1.18-4.75-1.73l-4.45,7.71Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 348.46px 100.385px"
+						class="animable"
+					></path>
+					<path
+						id="el9wgrewurid8"
+						d="M359.35,99.45h1.17l-1.61-.76Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 359.715px 99.07px"
+						class="animable"
+					></path>
+					<path
+						id="elgyp5i88elai"
+						d="M311.13,90.16h10.36l2-3.44a151.15,151.15,0,0,0-15.76-2.48Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 315.61px 87.2px"
+						class="animable"
+					></path>
+					<polygon
+						id="elikw2vskgazj"
+						points="311.13 108.75 321.49 108.75 326.7 99.73 321.49 90.71 311.13 90.71 305.92 99.73 311.13 108.75"
+						style="fill: rgb(255, 255, 255); transform-origin: 316.31px 99.73px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el6y4ldntriub"
+						points="311.13 127.89 305.92 136.91 311.13 145.93 321.49 145.93 326.7 136.91 321.49 127.89 311.13 127.89"
+						style="fill: rgb(255, 255, 255); transform-origin: 316.31px 136.91px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el1m8e9q7foxr"
+						points="369.71 341.12 374.92 332.11 369.71 323.09 359.35 323.09 354.15 332.11 359.35 341.12 369.71 341.12"
+						style="fill: rgb(255, 255, 255); transform-origin: 364.535px 332.105px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elmmoh5srdtv"
+						points="385.79 258.02 375.43 258.02 370.22 267.04 375.43 276.06 385.79 276.06 391 267.04 385.79 258.02"
+						style="fill: rgb(255, 255, 255); transform-origin: 380.61px 267.04px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el1ry2lq29n99"
+						points="353.64 331.83 358.85 322.81 353.64 313.79 343.28 313.79 338.07 322.81 343.28 331.83 353.64 331.83"
+						style="fill: rgb(255, 255, 255); transform-origin: 348.46px 322.81px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elf4t7isyasxh"
+						points="385.79 276.61 375.43 276.61 370.22 285.63 375.43 294.65 385.79 294.65 391 285.63 385.79 276.61"
+						style="fill: rgb(255, 255, 255); transform-origin: 380.61px 285.63px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elinp2m5sldg"
+						points="385.79 295.2 375.43 295.2 370.22 304.22 375.43 313.24 385.79 313.24 391 304.22 385.79 295.2"
+						style="fill: rgb(255, 255, 255); transform-origin: 380.61px 304.22px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elsol9zvays9s"
+						points="385.79 331.83 391 322.81 385.79 313.79 375.43 313.79 370.22 322.81 375.43 331.83 385.79 331.83"
+						style="fill: rgb(255, 255, 255); transform-origin: 380.61px 322.81px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elofy7migtmnl"
+						points="305.42 303.94 310.62 294.93 305.42 285.91 295.05 285.91 289.85 294.93 295.05 303.94 305.42 303.94"
+						style="fill: rgb(255, 255, 255); transform-origin: 300.235px 294.925px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el9lftrk68xx"
+						points="289.34 294.65 294.55 285.63 289.34 276.61 278.98 276.61 273.77 285.63 278.98 294.65 289.34 294.65"
+						style="fill: rgb(255, 255, 255); transform-origin: 284.16px 285.63px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elmdiy5j5en8c"
+						points="337.56 322.54 342.77 313.52 337.56 304.5 327.2 304.5 322 313.52 327.2 322.54 337.56 322.54"
+						style="fill: rgb(255, 255, 255); transform-origin: 332.385px 313.52px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="eld3ztfldohxt"
+						points="321.49 313.24 326.7 304.22 321.49 295.2 311.13 295.2 305.92 304.22 311.13 313.24 321.49 313.24"
+						style="fill: rgb(255, 255, 255); transform-origin: 316.31px 304.22px"
+						class="animable"
+					></polygon>
+					<path
+						id="elh29hfkv3ya"
+						d="M391.5,136.63h10.36l1.82-3.15a87.43,87.43,0,0,0-12.67-14l-4.71,8.16Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 394.99px 128.055px"
+						class="animable"
+					></path>
+					<polygon
+						id="elpswobpz2do8"
+						points="343.28 146.48 338.07 155.5 343.28 164.52 353.64 164.52 358.85 155.5 353.64 146.48 343.28 146.48"
+						style="fill: rgb(255, 255, 255); transform-origin: 348.46px 155.5px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elkbksfw9ef7s"
+						points="375.43 127.89 370.22 136.91 375.43 145.93 385.79 145.93 391 136.91 385.79 127.89 375.43 127.89"
+						style="fill: rgb(255, 255, 255); transform-origin: 380.61px 136.91px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el8gj7d7l530n"
+						points="359.35 137.19 354.15 146.21 359.35 155.22 369.71 155.22 374.92 146.21 369.71 137.19 359.35 137.19"
+						style="fill: rgb(255, 255, 255); transform-origin: 364.535px 146.205px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el2hq3au2u87y"
+						points="327.2 137.19 322 146.21 327.2 155.22 337.56 155.22 342.77 146.21 337.56 137.19 327.2 137.19"
+						style="fill: rgb(255, 255, 255); transform-origin: 332.385px 146.205px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elrf8t2invyff"
+						points="273.26 303.94 278.47 294.93 273.26 285.91 262.9 285.91 257.7 294.93 262.9 303.94 273.26 303.94"
+						style="fill: rgb(255, 255, 255); transform-origin: 268.085px 294.925px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elp4vurr38bwr"
+						points="385.79 239.43 375.43 239.43 370.22 248.45 375.43 257.47 385.79 257.47 391 248.45 385.79 239.43"
+						style="fill: rgb(255, 255, 255); transform-origin: 380.61px 248.45px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elvbionvnnwna"
+						points="401.87 248.17 407.07 239.16 401.87 230.14 391.5 230.14 386.3 239.16 391.5 248.17 401.87 248.17"
+						style="fill: rgb(255, 255, 255); transform-origin: 396.685px 239.155px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="eldrp2l1fge7"
+						points="401.87 211.55 391.5 211.55 386.3 220.57 391.5 229.58 401.87 229.58 407.07 220.57 401.87 211.55"
+						style="fill: rgb(255, 255, 255); transform-origin: 396.685px 220.565px"
+						class="animable"
+					></polygon>
+					<path
+						id="ell07y80azum8"
+						d="M417.94,220.29l3.65-6.32c-.5-2.49-.83-4.9-1.08-7.27l-2.57-4.45H407.58l-5.21,9,5.21,9Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 411.98px 211.27px"
+						class="animable"
+					></path>
+					<polygon
+						id="ellgkoz8rzkio"
+						points="214.68 146.48 209.47 155.5 214.68 164.52 225.04 164.52 230.25 155.5 225.04 146.48 214.68 146.48"
+						style="fill: rgb(255, 255, 255); transform-origin: 219.86px 155.5px"
+						class="animable"
+					></polygon>
+					<path
+						id="el79pwm0ouiwr"
+						d="M64.29,276.06l2.2-3.81a39.44,39.44,0,0,0-2.95,3.81Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 65.015px 274.155px"
+						class="animable"
+					></path>
+					<path
+						id="el1ovcpgqmib3h"
+						d="M144.67,136.63l.31-.54-1.72.54Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 144.12px 136.36px"
+						class="animable"
+					></path>
+					<path
+						id="elrakmupuqjbq"
+						d="M69.5,322.81l-5.21-9H59.41a61.77,61.77,0,0,0,5.46,17Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 64.455px 322.31px"
+						class="animable"
+					></path>
+					<path
+						id="ellh742m21ahm"
+						d="M64.29,294.65l5.21-9-5.21-9h-1.1a35.38,35.38,0,0,0-5.43,18Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 63.63px 285.65px"
+						class="animable"
+					></path>
+					<polygon
+						id="el8d3ksvbwcmt"
+						points="166.45 137.19 161.25 146.21 166.45 155.22 176.82 155.22 182.02 146.21 176.82 137.19 166.45 137.19"
+						style="fill: rgb(255, 255, 255); transform-origin: 171.635px 146.205px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="eluz47wbybe2"
+						points="182.53 146.48 177.32 155.5 182.53 164.52 192.89 164.52 198.1 155.5 192.89 146.48 182.53 146.48"
+						style="fill: rgb(255, 255, 255); transform-origin: 187.71px 155.5px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elg6c4xn5wb4w"
+						points="96.44 331.83 101.65 322.81 96.44 313.79 86.08 313.79 80.87 322.81 86.08 331.83 96.44 331.83"
+						style="fill: rgb(255, 255, 255); transform-origin: 91.26px 322.81px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el6r0wk790p77"
+						points="230.75 155.78 225.55 164.79 230.75 173.81 241.12 173.81 246.32 164.79 241.12 155.78 230.75 155.78"
+						style="fill: rgb(255, 255, 255); transform-origin: 235.935px 164.795px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el3m45v4i4mfz"
+						points="311.13 146.48 305.92 155.5 311.13 164.52 321.49 164.52 326.7 155.5 321.49 146.48 311.13 146.48"
+						style="fill: rgb(255, 255, 255); transform-origin: 316.31px 155.5px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elx2u58dojmh"
+						points="198.6 155.78 193.4 164.79 198.6 173.81 208.97 173.81 214.17 164.79 208.97 155.78 198.6 155.78"
+						style="fill: rgb(255, 255, 255); transform-origin: 203.785px 164.795px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elq9nu5odb43c"
+						points="208.97 303.94 214.17 294.93 208.97 285.91 198.6 285.91 193.4 294.93 198.6 303.94 208.97 303.94"
+						style="fill: rgb(255, 255, 255); transform-origin: 203.785px 294.925px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elui4ta3bauhs"
+						points="112.52 322.54 117.72 313.52 112.52 304.5 102.15 304.5 96.95 313.52 102.15 322.54 112.52 322.54"
+						style="fill: rgb(255, 255, 255); transform-origin: 107.335px 313.52px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el7h9yx16iv0v"
+						points="192.89 313.24 198.1 304.22 192.89 295.2 182.53 295.2 177.32 304.22 182.53 313.24 192.89 313.24"
+						style="fill: rgb(255, 255, 255); transform-origin: 187.71px 304.22px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="eluo6guk2pwx8"
+						points="262.9 137.19 257.7 146.21 262.9 155.22 273.26 155.22 278.47 146.21 273.26 137.19 262.9 137.19"
+						style="fill: rgb(255, 255, 255); transform-origin: 268.085px 146.205px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elzivez9x9vzk"
+						points="241.12 303.94 246.32 294.93 241.12 285.91 230.75 285.91 225.55 294.93 230.75 303.94 241.12 303.94"
+						style="fill: rgb(255, 255, 255); transform-origin: 235.935px 294.925px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el13a5g1gmwve"
+						points="257.19 294.65 262.4 285.63 257.19 276.61 246.83 276.61 241.62 285.63 246.83 294.65 257.19 294.65"
+						style="fill: rgb(255, 255, 255); transform-origin: 252.01px 285.63px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el4yc2naft0bp"
+						points="128.59 331.83 133.8 322.81 128.59 313.79 118.23 313.79 113.02 322.81 118.23 331.83 128.59 331.83"
+						style="fill: rgb(255, 255, 255); transform-origin: 123.41px 322.81px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el1njqa2uwi04"
+						points="144.67 322.54 149.87 313.52 144.67 304.5 134.3 304.5 129.1 313.52 134.3 322.54 144.67 322.54"
+						style="fill: rgb(255, 255, 255); transform-origin: 139.485px 313.52px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elond9eb7qnuk"
+						points="160.74 331.83 165.95 322.81 160.74 313.79 150.38 313.79 145.17 322.81 150.38 331.83 160.74 331.83"
+						style="fill: rgb(255, 255, 255); transform-origin: 155.56px 322.81px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elrishy5sersd"
+						points="176.82 322.54 182.02 313.52 176.82 304.5 166.45 304.5 161.25 313.52 166.45 322.54 176.82 322.54"
+						style="fill: rgb(255, 255, 255); transform-origin: 171.635px 313.52px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elsqadrvguj7"
+						points="225.04 313.24 230.25 304.22 225.04 295.2 214.68 295.2 209.47 304.22 214.68 313.24 225.04 313.24"
+						style="fill: rgb(255, 255, 255); transform-origin: 219.86px 304.22px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el8mim4q28cnf"
+						points="401.87 304.5 391.5 304.5 386.3 313.52 391.5 322.54 401.87 322.54 407.07 313.52 401.87 304.5"
+						style="fill: rgb(255, 255, 255); transform-origin: 396.685px 313.52px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="eln5o4v78gv6e"
+						points="401.87 285.91 391.5 285.91 386.3 294.93 391.5 303.94 401.87 303.94 407.07 294.93 401.87 285.91"
+						style="fill: rgb(255, 255, 255); transform-origin: 396.685px 294.925px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el4q7oy7j199h"
+						points="401.87 267.32 391.5 267.32 386.3 276.34 391.5 285.35 401.87 285.35 407.07 276.34 401.87 267.32"
+						style="fill: rgb(255, 255, 255); transform-origin: 396.685px 276.335px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elrabejalz57"
+						points="401.87 323.09 391.5 323.09 386.3 332.11 391.5 341.12 401.87 341.12 407.07 332.11 401.87 323.09"
+						style="fill: rgb(255, 255, 255); transform-origin: 396.685px 332.105px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el6ugv196q7vd"
+						points="401.87 248.73 391.5 248.73 386.3 257.75 391.5 266.76 401.87 266.76 407.07 257.75 401.87 248.73"
+						style="fill: rgb(255, 255, 255); transform-origin: 396.685px 257.745px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el6pxdlrtkz07"
+						points="321.49 331.83 326.7 322.81 321.49 313.79 311.13 313.79 305.92 322.81 311.13 331.83 321.49 331.83"
+						style="fill: rgb(255, 255, 255); transform-origin: 316.31px 322.81px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elj0zqe40k9kg"
+						points="337.56 341.12 342.77 332.11 337.56 323.09 327.2 323.09 322 332.11 327.2 341.12 337.56 341.12"
+						style="fill: rgb(255, 255, 255); transform-origin: 332.385px 332.105px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elcyy2qncqgkh"
+						points="417.94 257.47 423.15 248.45 417.94 239.43 407.58 239.43 402.37 248.45 407.58 257.47 417.94 257.47"
+						style="fill: rgb(255, 255, 255); transform-origin: 412.76px 248.45px"
+						class="animable"
+					></polygon>
+					<path
+						id="elc0g4fkb76gd"
+						d="M402.65,343l-.79-1.36H391.5l-.84,1.47C394.87,343,398.87,343,402.65,343Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 396.655px 342.375px"
+						class="animable"
+					></path>
+					<path
+						id="elcyw8qosdqxw"
+						d="M371.72,345.15l-2-3.47H359.35l-4.51,7.81c1.14-.38,2.3-.75,3.49-1.11A121.39,121.39,0,0,1,371.72,345.15Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 363.28px 345.585px"
+						class="animable"
+					></path>
+					<path
+						id="el8yobwnyjccl"
+						d="M370.22,118.32l5.21,9h10.36l4.78-8.29a114.72,114.72,0,0,0-12.67-9.75h-2.47Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 380.395px 118.3px"
+						class="animable"
+					></path>
+					<polygon
+						id="eltnnp5xw8b7"
+						points="295.05 155.78 289.85 164.79 295.05 173.81 305.42 173.81 310.62 164.79 305.42 155.78 295.05 155.78"
+						style="fill: rgb(255, 255, 255); transform-origin: 300.235px 164.795px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="eliwzfhxmz8r"
+						points="246.83 165.07 241.62 174.09 246.83 183.11 257.19 183.11 262.4 174.09 257.19 165.07 246.83 165.07"
+						style="fill: rgb(255, 255, 255); transform-origin: 252.01px 174.09px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elwwrf5chxco"
+						points="278.98 127.89 273.77 136.91 278.98 145.93 289.34 145.93 294.55 136.91 289.34 127.89 278.98 127.89"
+						style="fill: rgb(255, 255, 255); transform-origin: 284.16px 136.91px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elp8j3edxw6nb"
+						points="327.2 118.6 322 127.61 327.2 136.63 337.56 136.63 342.77 127.61 337.56 118.6 327.2 118.6"
+						style="fill: rgb(255, 255, 255); transform-origin: 332.385px 127.615px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el9umr008g9pf"
+						points="359.35 118.6 354.15 127.61 359.35 136.63 369.71 136.63 374.92 127.61 369.71 118.6 359.35 118.6"
+						style="fill: rgb(255, 255, 255); transform-origin: 364.535px 127.615px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el8utakt5vn9w"
+						points="343.28 127.89 338.07 136.91 343.28 145.93 353.64 145.93 358.85 136.91 353.64 127.89 343.28 127.89"
+						style="fill: rgb(255, 255, 255); transform-origin: 348.46px 136.91px"
+						class="animable"
+					></polygon>
+					<path
+						id="elq4srqrxeqcd"
+						d="M426.52,229.58a76.31,76.31,0,0,1-4.75-14.77l-3.32,5.76,5.2,9Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 422.485px 222.195px"
+						class="animable"
+					></path>
+					<polygon
+						id="eldqxwun5snil"
+						points="305.42 322.54 310.62 313.52 305.42 304.5 295.05 304.5 289.85 313.52 295.05 322.54 305.42 322.54"
+						style="fill: rgb(255, 255, 255); transform-origin: 300.235px 313.52px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elxph0esaum2s"
+						points="417.94 220.84 407.58 220.84 402.37 229.86 407.58 238.88 417.94 238.88 423.15 229.86 417.94 220.84"
+						style="fill: rgb(255, 255, 255); transform-origin: 412.76px 229.86px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elktn2zq7lq8c"
+						points="295.05 137.19 289.85 146.21 295.05 155.22 305.42 155.22 310.62 146.21 305.42 137.19 295.05 137.19"
+						style="fill: rgb(255, 255, 255); transform-origin: 300.235px 146.205px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elqturdcy6xx"
+						points="289.34 313.24 294.55 304.22 289.34 295.2 278.98 295.2 273.77 304.22 278.98 313.24 289.34 313.24"
+						style="fill: rgb(255, 255, 255); transform-origin: 284.16px 304.22px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="el6j89n8m4yuv"
+						points="198.6 137.19 193.4 146.21 198.6 155.22 208.97 155.22 214.17 146.21 208.97 137.19 198.6 137.19"
+						style="fill: rgb(255, 255, 255); transform-origin: 203.785px 146.205px"
+						class="animable"
+					></polygon>
+					<path
+						id="eluc96u3zfw7e"
+						d="M163,130.58l3.49,6h10.37l5.2-9-1.67-2.9C175.27,126.58,169.56,128.5,163,130.58Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 172.53px 130.63px"
+						class="animable"
+					></path>
+					<polygon
+						id="elvf4ru7bedpk"
+						points="214.68 127.89 209.47 136.91 214.68 145.93 225.04 145.93 230.25 136.91 225.04 127.89 214.68 127.89"
+						style="fill: rgb(255, 255, 255); transform-origin: 219.86px 136.91px"
+						class="animable"
+					></polygon>
+					<path
+						id="elkg5xe57ltbi"
+						d="M80.37,341.68H73a45.8,45.8,0,0,0,11.82,7.77Z"
+						style="fill: rgb(255, 255, 255); transform-origin: 78.91px 345.565px"
+						class="animable"
+					></path>
+					<polygon
+						id="elfywn092s42d"
+						points="112.52 341.12 117.72 332.11 112.52 323.09 102.15 323.09 96.95 332.11 102.15 341.12 112.52 341.12"
+						style="fill: rgb(255, 255, 255); transform-origin: 107.335px 332.105px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elsstxeesedb"
+						points="278.98 146.48 273.77 155.5 278.98 164.52 289.34 164.52 294.55 155.5 289.34 146.48 278.98 146.48"
+						style="fill: rgb(255, 255, 255); transform-origin: 284.16px 155.5px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elzivgtg5l4v"
+						points="230.75 137.19 225.55 146.21 230.75 155.22 241.12 155.22 246.32 146.21 241.12 137.19 230.75 137.19"
+						style="fill: rgb(255, 255, 255); transform-origin: 235.935px 146.205px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elz2bujf1fxp"
+						points="262.9 155.78 257.7 164.79 262.9 173.81 273.26 173.81 278.47 164.79 273.26 155.78 262.9 155.78"
+						style="fill: rgb(255, 255, 255); transform-origin: 268.085px 164.795px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elqdbelb7bo3"
+						points="246.83 146.48 241.62 155.5 246.83 164.52 257.19 164.52 262.4 155.5 257.19 146.48 246.83 146.48"
+						style="fill: rgb(255, 255, 255); transform-origin: 252.01px 155.5px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elw16jd3xjrts"
+						points="182.53 127.89 177.32 136.91 182.53 145.93 192.89 145.93 198.1 136.91 192.89 127.89 182.53 127.89"
+						style="fill: rgb(255, 255, 255); transform-origin: 187.71px 136.91px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elx4orbqktxzd"
+						points="241.12 322.54 246.32 313.52 241.12 304.5 230.75 304.5 225.55 313.52 230.75 322.54 241.12 322.54"
+						style="fill: rgb(255, 255, 255); transform-origin: 235.935px 313.52px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elpxdwalhyeec"
+						points="257.19 313.24 262.4 304.22 257.19 295.2 246.83 295.2 241.62 304.22 246.83 313.24 257.19 313.24"
+						style="fill: rgb(255, 255, 255); transform-origin: 252.01px 304.22px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elxurimoqll4a"
+						points="273.26 322.54 278.47 313.52 273.26 304.5 262.9 304.5 257.7 313.52 262.9 322.54 273.26 322.54"
+						style="fill: rgb(255, 255, 255); transform-origin: 268.085px 313.52px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elfh22wb9truk"
+						points="128.59 350.42 133.8 341.4 128.59 332.38 118.23 332.38 113.02 341.4 118.23 350.42 128.59 350.42"
+						style="fill: rgb(255, 255, 255); transform-origin: 123.41px 341.4px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elfbagmjvleys"
+						points="225.04 331.83 230.25 322.81 225.04 313.79 214.68 313.79 209.47 322.81 214.68 331.83 225.04 331.83"
+						style="fill: rgb(255, 255, 255); transform-origin: 219.86px 322.81px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="ellkkcukpjqge"
+						points="208.97 322.54 214.17 313.52 208.97 304.5 198.6 304.5 193.4 313.52 198.6 322.54 208.97 322.54"
+						style="fill: rgb(255, 255, 255); transform-origin: 203.785px 313.52px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elw7otkaxjzz"
+						points="144.67 341.12 149.87 332.11 144.67 323.09 134.3 323.09 129.1 332.11 134.3 341.12 144.67 341.12"
+						style="fill: rgb(255, 255, 255); transform-origin: 139.485px 332.105px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="elk8pwzb4ztmm"
+						points="176.82 341.12 182.02 332.11 176.82 323.09 166.45 323.09 161.25 332.11 166.45 341.12 176.82 341.12"
+						style="fill: rgb(255, 255, 255); transform-origin: 171.635px 332.105px"
+						class="animable"
+					></polygon>
+					<polygon
+						id="ellgulhhsp7v"
+						points="192.89 331.83 198.1 322.81 192.89 313.79 182.53 313.79 177.32 322.81 182.53 331.83 192.89 331.83"
+						style="fill: rgb(255, 255, 255); transform-origin: 187.71px 322.81px"
+						class="animable"
+					></polygon>
+				</g>
+			</g>
+		</g>
+		<g id="freepik--Shadow--inject-43" class="animable" style="transform-origin: 249.75px 399.18px">
+			<polygon
+				id="elfzdjq2syz75"
+				points="381.79 408.68 307.67 389.68 377.64 389.68 453.45 408.68 381.79 408.68"
+				style="fill: currentColor; transform-origin: 380.56px 399.18px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elb2wtmqojr6u"
+				points="117.71 408.68 191.83 389.68 121.87 389.68 46.05 408.68 117.71 408.68"
+				style="fill: currentColor; transform-origin: 118.94px 399.18px"
+				class="animable"
+			></polygon>
+		</g>
+		<g id="freepik--Clouds--inject-43" class="animable" style="transform-origin: 246.046px 219.87px">
+			<path
+				id="eleg096geewqr"
+				d="M253.17,329.64s-.07-.35-.18-1"
+				style="fill: none; stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 253.08px 329.14px"
+				class="animable"
+			></path>
+			<path
+				id="elbhov75gkfa7"
+				d="M252.66,326.68c-1.07-6.93-2.88-24.22,3.91-31.94,8.61-9.77,18.93-1.4,47.69,0s43.56-2.79,43.86-27.45S331.55,241,331.55,241H320.89"
+				style="fill: none; stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-dasharray: 2.00773, 2.00773; transform-origin: 299.868px 283.84px"
+				class="animable"
+			></path>
+			<line
+				id="el19mvr6w8byq"
+				x1="319.88"
+				y1="241.04"
+				x2="318.88"
+				y2="241.04"
+				style="fill: none; stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 319.38px 241.04px"
+				class="animable"
+			></line>
+			<line
+				id="elmltql4h03u"
+				x1="318.88"
+				y1="165.29"
+				x2="319.88"
+				y2="165.29"
+				style="fill: none; stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 319.38px 165.29px"
+				class="animable"
+			></line>
+			<path
+				id="eldryaay4oyj"
+				d="M321.88,165.29h36s10.85.94,10.4,13.46S349.78,203,350.93,228s43.81,21.27,49.62,46.3S363.68,298.08,359.71,311a22.11,22.11,0,0,0-1.8,9.18c0,4.2,0,14.18,0,18.45"
+				style="fill: none; stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-dasharray: 1.99976, 1.99976; transform-origin: 361.486px 251.96px"
+				class="animable"
+			></path>
+			<path
+				id="elf144p3c3c75"
+				d="M357.91,339.64v1"
+				style="fill: none; stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 357.91px 340.14px"
+				class="animable"
+			></path>
+			<line
+				id="elfkbvbuuak4s"
+				x1="186.36"
+				y1="94.43"
+				x2="185.36"
+				y2="94.43"
+				style="fill: none; stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 185.86px 94.43px"
+				class="animable"
+			></line>
+			<path
+				id="eluilyuc2pmco"
+				d="M183.37,94.43H165.74s-48-.55-48,40c0,18.77,6.52,32.8,25.84,55.86s19,95.14,12.72,108.07-19.6,11-24.28,18c0,0-3.37,3.53-3.66,7.84-.23,3.39-.1,14.5,0,19.06"
+				style="fill: none; stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-dasharray: 1.98825, 1.98825; transform-origin: 150.555px 218.845px"
+				class="animable"
+			></path>
+			<path
+				id="ellojyslkc1g"
+				d="M128.31,344.31c0,.63,0,1,0,1"
+				style="fill: none; stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 128.31px 344.81px"
+				class="animable"
+			></path>
+			<path
+				id="el2ay8x0xz9ur"
+				d="M197.15,146.64A12.29,12.29,0,0,0,191,148.3a16.49,16.49,0,0,0,.26-2.91,17,17,0,0,0-33.71-3.14,15,15,0,1,0-5.3,29.09h44.91a12.35,12.35,0,0,0,0-24.7Z"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 173.459px 149.858px"
+				class="animable"
+			></path>
+			<path
+				id="eldgzzwkty5j"
+				d="M387,196.82a13.13,13.13,0,0,0-6.56,1.76,18.49,18.49,0,0,0,.27-3.09,18.1,18.1,0,0,0-35.89-3.34,16,16,0,1,0-5.65,31H387a13.15,13.15,0,0,0,0-26.3Z"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 361.695px 200.268px"
+				class="animable"
+			></path>
+			<line
+				id="el089aj5ml4yvn"
+				x1="378.5"
+				y1="226.5"
+				x2="382.5"
+				y2="226.5"
+				style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; transform-origin: 380.5px 226.5px"
+				class="animable"
+			></line>
+			<line
+				id="el2pz1yhmdgnh"
+				x1="359"
+				y1="226.5"
+				x2="373"
+				y2="226.5"
+				style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; transform-origin: 366px 226.5px"
+				class="animable"
+			></line>
+			<path
+				id="elalepjylth7b"
+				d="M345.76,178.19a13,13,0,0,1,7.24-3"
+				style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; transform-origin: 349.38px 176.69px"
+				class="animable"
+			></path>
+			<path
+				id="eljfcymzolxns"
+				d="M341,185.5a11.87,11.87,0,0,1,2-4.38"
+				style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; transform-origin: 342px 183.31px"
+				class="animable"
+			></path>
+			<path
+				id="elexbocti66mn"
+				d="M189.15,257.7a19.72,19.72,0,0,0-9.86,2.65,26.37,26.37,0,0,0,.41-4.65,27.19,27.19,0,0,0-53.92-5,24,24,0,1,0-8.48,46.53h71.85a19.76,19.76,0,0,0,0-39.51Z"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 150.989px 262.86px"
+				class="animable"
+			></path>
+			<path
+				id="elhxefxbv1z7k"
+				d="M98.85,295.22A25.24,25.24,0,0,0,102,297"
+				style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; transform-origin: 100.425px 296.11px"
+				class="animable"
+			></path>
+			<path
+				id="els5s7uks4yz"
+				d="M91,286a19,19,0,0,0,4.1,6.09"
+				style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; transform-origin: 93.05px 289.045px"
+				class="animable"
+			></path>
+			<path
+				id="eluoj3epmz38a"
+				d="M135.33,227a22.88,22.88,0,0,1,14.17-4"
+				style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; transform-origin: 142.415px 224.984px"
+				class="animable"
+			></path>
+			<path
+				id="elwm1o4mvkols"
+				d="M131,231a16.32,16.32,0,0,1,2.36-2.49"
+				style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; transform-origin: 132.18px 229.755px"
+				class="animable"
+			></path>
+		</g>
+		<g id="freepik--device-1--inject-43" class="animable" style="transform-origin: 252.19px 164.57px">
+			<rect
+				id="eld5bijgojl2i"
+				x="314.13"
+				y="159.76"
+				width="4.75"
+				height="12.56"
+				style="fill: rgb(46, 53, 58); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 316.505px 166.04px"
+				class="animable"
+			></rect>
+			<rect
+				id="elmk4440mjpq"
+				x="314.13"
+				y="233.85"
+				width="4.75"
+				height="12.56"
+				style="fill: rgb(46, 53, 58); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 316.505px 240.13px"
+				class="animable"
+			></rect>
+			<rect
+				id="el33qgwrnpt2y"
+				x="186.36"
+				y="87.09"
+				width="4.75"
+				height="12.56"
+				style="fill: rgb(46, 53, 58); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 188.735px 93.37px"
+				class="animable"
+			></rect>
+			<rect
+				id="el09pocalvp707"
+				x="186.36"
+				y="197.28"
+				width="4.75"
+				height="12.56"
+				style="fill: rgb(46, 53, 58); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 188.735px 203.56px"
+				class="animable"
+			></rect>
+			<rect
+				id="elrac32pdyzco"
+				x="190.66"
+				y="80.14"
+				width="125.03"
+				height="27.08"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 253.175px 93.68px"
+				class="animable"
+			></rect>
+			<rect
+				id="el029992qux28k"
+				x="196.67"
+				y="87.05"
+				width="86.17"
+				height="13.26"
+				style="fill: currentColor; stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 239.755px 93.68px"
+				class="animable"
+			></rect>
+			<circle
+				id="elbfr0kyo3sg"
+				cx="294.51"
+				cy="93.1"
+				r="3.34"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 294.51px 93.1px"
+				class="animable"
+			></circle>
+			<path
+				id="elh89jw626eem"
+				d="M310.94,93.1a3.34,3.34,0,1,0-3.34,3.34A3.34,3.34,0,0,0,310.94,93.1Z"
+				style="fill: currentColor; stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 307.6px 93.1px"
+				class="animable"
+			></path>
+			<circle
+				id="elyj5q4ugpyd9"
+				cx="275.02"
+				cy="93.1"
+				r="3.34"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 275.02px 93.1px"
+				class="animable"
+			></circle>
+			<rect
+				id="eleoq2fjpbvg"
+				x="195.41"
+				y="107.22"
+				width="115.54"
+				height="9.27"
+				style="fill: rgb(46, 53, 58); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 253.18px 111.855px"
+				class="animable"
+			></rect>
+			<rect
+				id="el26v6zukdzt3"
+				x="190.66"
+				y="116.49"
+				width="125.03"
+				height="27.08"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 253.175px 130.03px"
+				class="animable"
+			></rect>
+			<rect
+				id="elbj5fa2ewzfw"
+				x="196.67"
+				y="123.4"
+				width="86.17"
+				height="13.26"
+				style="fill: currentColor; stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 239.755px 130.03px"
+				class="animable"
+			></rect>
+			<circle
+				id="el3556g0h5661"
+				cx="294.51"
+				cy="129.46"
+				r="3.34"
+				style="fill: currentColor; stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 294.51px 129.46px"
+				class="animable"
+			></circle>
+			<path
+				id="elitafkc5rbn9"
+				d="M310.94,129.46a3.34,3.34,0,1,0-3.34,3.34A3.33,3.33,0,0,0,310.94,129.46Z"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 307.6px 129.46px"
+				class="animable"
+			></path>
+			<circle
+				id="eliv27mby9vz"
+				cx="275.02"
+				cy="129.46"
+				r="3.34"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 275.02px 129.46px"
+				class="animable"
+			></circle>
+			<rect
+				id="el3y0qtji2kdw"
+				x="195.41"
+				y="143.58"
+				width="115.54"
+				height="9.27"
+				style="fill: rgb(46, 53, 58); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 253.18px 148.215px"
+				class="animable"
+			></rect>
+			<rect
+				id="eltc5iv8pnsm"
+				x="190.66"
+				y="152.85"
+				width="125.03"
+				height="27.08"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 253.175px 166.39px"
+				class="animable"
+			></rect>
+			<rect
+				id="eluxyqiz4ttf"
+				x="196.67"
+				y="159.76"
+				width="86.17"
+				height="13.26"
+				style="fill: currentColor; stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 239.755px 166.39px"
+				class="animable"
+			></rect>
+			<circle
+				id="el1ag4aqu1njoj"
+				cx="294.51"
+				cy="165.81"
+				r="3.34"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 294.51px 165.81px"
+				class="animable"
+			></circle>
+			<path
+				id="elpc6ifpqcum"
+				d="M310.94,165.81a3.34,3.34,0,1,0-3.34,3.34A3.34,3.34,0,0,0,310.94,165.81Z"
+				style="fill: currentColor; stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 307.6px 165.81px"
+				class="animable"
+			></path>
+			<circle
+				id="elao6vkq90f7"
+				cx="275.02"
+				cy="165.81"
+				r="3.34"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 275.02px 165.81px"
+				class="animable"
+			></circle>
+			<rect
+				id="elqgqsi8agr9l"
+				x="195.41"
+				y="179.93"
+				width="115.54"
+				height="9.27"
+				style="fill: rgb(46, 53, 58); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 253.18px 184.565px"
+				class="animable"
+			></rect>
+			<rect
+				id="elm50432upyal"
+				x="190.66"
+				y="189.2"
+				width="125.03"
+				height="27.08"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 253.175px 202.74px"
+				class="animable"
+			></rect>
+			<rect
+				id="el999u8aq8ahc"
+				x="196.67"
+				y="196.11"
+				width="86.17"
+				height="13.26"
+				style="fill: currentColor; stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 239.755px 202.74px"
+				class="animable"
+			></rect>
+			<circle
+				id="el1ftjbca7j8k"
+				cx="294.51"
+				cy="202.17"
+				r="3.34"
+				style="fill: currentColor; stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 294.51px 202.17px"
+				class="animable"
+			></circle>
+			<path
+				id="elko4ovw9hk2m"
+				d="M310.94,202.17a3.34,3.34,0,1,0-3.34,3.34A3.33,3.33,0,0,0,310.94,202.17Z"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 307.6px 202.17px"
+				class="animable"
+			></path>
+			<circle
+				id="el06g3qsh4agpc"
+				cx="275.02"
+				cy="202.17"
+				r="3.34"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 275.02px 202.17px"
+				class="animable"
+			></circle>
+			<rect
+				id="elyhwx7zvhkwb"
+				x="195.41"
+				y="216.29"
+				width="115.54"
+				height="9.27"
+				style="fill: rgb(46, 53, 58); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 253.18px 220.925px"
+				class="animable"
+			></rect>
+			<rect
+				id="el9wu0xma3j8"
+				x="190.66"
+				y="225.56"
+				width="125.03"
+				height="27.08"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 253.175px 239.1px"
+				class="animable"
+			></rect>
+			<rect
+				id="elfm13ia9j47"
+				x="196.67"
+				y="232.47"
+				width="86.17"
+				height="13.26"
+				style="fill: currentColor; stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 239.755px 239.1px"
+				class="animable"
+			></rect>
+			<circle
+				id="eltzyytkz4y0r"
+				cx="294.51"
+				cy="238.52"
+				r="3.34"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 294.51px 238.52px"
+				class="animable"
+			></circle>
+			<path
+				id="elus8l0ourmf"
+				d="M310.94,238.52a3.34,3.34,0,1,0-3.34,3.34A3.34,3.34,0,0,0,310.94,238.52Z"
+				style="fill: currentColor; stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 307.6px 238.52px"
+				class="animable"
+			></path>
+			<circle
+				id="elm07eayvyn8h"
+				cx="275.02"
+				cy="238.52"
+				r="3.34"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 275.02px 238.52px"
+				class="animable"
+			></circle>
+			<line
+				id="elxfoje0r8mwi"
+				x1="261.5"
+				y1="76.5"
+				x2="268.5"
+				y2="76.5"
+				style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; transform-origin: 265px 76.5px"
+				class="animable"
+			></line>
+			<line
+				id="elx1un5rkmplo"
+				x1="213"
+				y1="76.5"
+				x2="253.5"
+				y2="76.5"
+				style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; transform-origin: 233.25px 76.5px"
+				class="animable"
+			></line>
+			<line
+				id="elalbg1kv6he5"
+				x1="185.5"
+				y1="241"
+				x2="185.5"
+				y2="246"
+				style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; transform-origin: 185.5px 243.5px"
+				class="animable"
+			></line>
+			<line
+				id="elgl65gva8wm"
+				x1="185.5"
+				y1="225.5"
+				x2="185.5"
+				y2="236"
+				style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; transform-origin: 185.5px 230.75px"
+				class="animable"
+			></line>
+		</g>
+		<g id="freepik--device-2--inject-43" class="animable" style="transform-origin: 239.07px 216.435px">
+			<path
+				id="elsnlobanodr"
+				d="M369.91,133.09l-7-13.85a.76.76,0,1,0-1.36.67l6.69,14A1.06,1.06,0,0,0,368,135l7.08,13.27c.19.38.79.46,1.36.18s.87-.81.68-1.18l-6.2-13.71A1,1,0,0,0,369.91,133.09Z"
+				style="fill: rgb(46, 53, 58); transform-origin: 369.311px 133.692px"
+				class="animable"
+			></path>
+			<path
+				id="elk42n1by4cee"
+				d="M408.67,133.09l7.05-13.85a.75.75,0,0,1,1-.35.77.77,0,0,1,.35,1l-6.7,14a1,1,0,0,1,.22,1.09l-7.08,13.27c-.19.38-.8.46-1.36.18s-.87-.81-.69-1.18l6.21-13.71A1,1,0,0,1,408.67,133.09Z"
+				style="fill: rgb(46, 53, 58); transform-origin: 409.273px 133.707px"
+				class="animable"
+			></path>
+			<polygon
+				id="elby76nbarlh"
+				points="411.35 148.87 367.38 148.87 370.68 143.27 408.05 143.27 411.35 148.87"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; transform-origin: 389.365px 146.07px"
+				class="animable"
+			></polygon>
+			<rect
+				id="elyrideijkjq"
+				x="367.38"
+				y="148.87"
+				width="43.96"
+				height="5.6"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; transform-origin: 389.36px 151.67px"
+				class="animable"
+			></rect>
+			<path
+				id="el88dnjnasze2"
+				d="M388.6,152.91H371.7a1.24,1.24,0,0,1-1.23-1.24h0a1.23,1.23,0,0,1,1.23-1.23h16.9a1.23,1.23,0,0,1,1.23,1.23h0A1.24,1.24,0,0,1,388.6,152.91Z"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 380.15px 151.675px"
+				class="animable"
+			></path>
+			<circle
+				id="elp1mb0tfsnac"
+				cx="398.83"
+				cy="151.52"
+				r="1.08"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 398.83px 151.52px"
+				class="animable"
+			></circle>
+			<path
+				id="elkf0e084xs8p"
+				d="M404.39,151.52a1.09,1.09,0,1,0-1.09,1.09A1.08,1.08,0,0,0,404.39,151.52Z"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 403.3px 151.52px"
+				class="animable"
+			></path>
+			<circle
+				id="elua451jp5lgm"
+				cx="407.78"
+				cy="151.52"
+				r="1.08"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 407.78px 151.52px"
+				class="animable"
+			></circle>
+			<path
+				id="elx8p8s9f8usi"
+				d="M426.71,117.38a10.22,10.22,0,0,1,.21,2.09c0,.09,0,.17,0,.26"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 426.815px 118.555px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="el31vc8jh9j14"
+				d="M410.83,110.78a10.38,10.38,0,0,1,15.37,4.88"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 418.515px 112.365px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="el7cqn4zrubl"
+				d="M413.73,112.29a7.71,7.71,0,0,0-1.58.84"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 412.94px 112.71px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="elbok188zpfib"
+				d="M424.22,119.66a1.15,1.15,0,0,0,0-.19,7.71,7.71,0,0,0-7.71-7.71,6.78,6.78,0,0,0-1.2.1"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 419.767px 115.71px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="elimgl0bikug"
+				d="M421.72,119.6v-.13a5.2,5.2,0,0,0-5.2-5.2,5.13,5.13,0,0,0-3.14,1.07"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 417.55px 116.935px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="elyzvxulsimmd"
+				d="M415.43,116.82a2.82,2.82,0,0,0-.89.59"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 414.985px 117.115px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="el340yfon3dum"
+				d="M419.39,119.54v-.07a2.87,2.87,0,0,0-2.87-2.87"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 417.955px 118.07px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="elys2stfrwzt"
+				d="M351.92,118a10.56,10.56,0,0,0-.11,1.49c0,.09,0,.17,0,.26"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 351.865px 118.875px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="elu041o6jo6kq"
+				d="M364.28,109.28a10.09,10.09,0,0,0-2.07-.21,10.4,10.4,0,0,0-9.86,7.08"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 358.315px 112.61px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="eldlen152290d"
+				d="M367.9,110.78a10.46,10.46,0,0,0-2.11-1.07"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 366.845px 110.245px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="elvfyihz5wk8"
+				d="M361.59,111.79c.2,0,.41,0,.62,0a7.71,7.71,0,0,1,4.38,1.37"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 364.09px 112.475px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="elcrjvhp3y13q"
+				d="M354.51,119.66c0-.06,0-.12,0-.19a7.71,7.71,0,0,1,4.71-7.1"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 356.865px 116.015px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="eloypb33y9fm"
+				d="M357,119.6v-.13a5.2,5.2,0,0,1,5.2-5.2,5.13,5.13,0,0,1,3.14,1.07"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 361.17px 116.935px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="el0o4i922ao5zc"
+				d="M359.35,119.54a.15.15,0,0,1,0-.07,2.86,2.86,0,0,1,4.86-2.06"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 361.778px 118.067px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="el5m5vtm4bbcx"
+				d="M231.63,302.42l-7-13.85a.75.75,0,0,0-1-.35.77.77,0,0,0-.35,1l6.7,14a1,1,0,0,0-.22,1.08l7.08,13.28c.19.37.8.45,1.36.18s.87-.81.69-1.19l-6.21-13.71A1.06,1.06,0,0,0,231.63,302.42Z"
+				style="fill: rgb(46, 53, 58); transform-origin: 231.077px 303.033px"
+				class="animable"
+			></path>
+			<path
+				id="el9hxlhlt39a"
+				d="M270.4,302.42l7-13.85a.76.76,0,1,1,1.36.67l-6.69,14a1,1,0,0,1,.21,1.08l-7.08,13.28c-.19.37-.79.45-1.36.18s-.87-.81-.69-1.19l6.21-13.71A1.06,1.06,0,0,1,270.4,302.42Z"
+				style="fill: rgb(46, 53, 58); transform-origin: 270.981px 303.018px"
+				class="animable"
+			></path>
+			<polygon
+				id="el1csf7asmffq"
+				points="273.07 318.2 229.11 318.2 232.4 312.61 269.77 312.61 273.07 318.2"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; transform-origin: 251.09px 315.405px"
+				class="animable"
+			></polygon>
+			<rect
+				id="elyh87or8dlcn"
+				x="229.11"
+				y="318.2"
+				width="43.96"
+				height="5.6"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; transform-origin: 251.09px 321px"
+				class="animable"
+			></rect>
+			<rect
+				id="elqcbo1qrph0g"
+				x="232.19"
+				y="319.77"
+				width="19.37"
+				height="2.47"
+				rx="1.23"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 241.875px 321.005px"
+				class="animable"
+			></rect>
+			<circle
+				id="elmr47wwqwgx9"
+				cx="260.55"
+				cy="320.86"
+				r="1.08"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 260.55px 320.86px"
+				class="animable"
+			></circle>
+			<path
+				id="el9cyjetw9cuk"
+				d="M266.11,320.86a1.09,1.09,0,1,0-1.08,1.08A1.08,1.08,0,0,0,266.11,320.86Z"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 265.02px 320.85px"
+				class="animable"
+			></path>
+			<circle
+				id="elrr6vz52b5re"
+				cx="269.5"
+				cy="320.86"
+				r="1.08"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 269.5px 320.86px"
+				class="animable"
+			></circle>
+			<path
+				id="elkrgr09ck1p"
+				d="M283.44,279.79a10.41,10.41,0,0,1,5.21,9c0,.09,0,.17,0,.26"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 286.045px 284.42px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="elob7gpl7s6ks"
+				d="M272.55,280.11a10.38,10.38,0,0,1,5.7-1.7,10.18,10.18,0,0,1,3.37.56"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 277.085px 279.26px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="el4fmtkex1zvh"
+				d="M276.9,281.21a7.82,7.82,0,0,0-3,1.25"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 275.4px 281.835px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="eln9418x6qmf9"
+				d="M286,289c0-.06,0-.12,0-.19a7.72,7.72,0,0,0-6.95-7.67"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 282.525px 285.07px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="elkxij9pyliv"
+				d="M282,285.19a5.15,5.15,0,0,0-3.73-1.58,5.22,5.22,0,0,0-3.15,1.06"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 278.56px 284.4px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="el2a39mchfcw1"
+				d="M283.44,288.93s0-.08,0-.13a5.24,5.24,0,0,0-.41-2"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 283.235px 287.865px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="elj24exe5jjo"
+				d="M277.55,286a2.88,2.88,0,0,0-1.29.72"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 276.905px 286.36px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="el36ti4w3580n"
+				d="M281.11,288.87s0,0,0-.07A2.86,2.86,0,0,0,279,286"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 280.055px 287.435px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="elgaau6ukbs3"
+				d="M213.68,287.06a10,10,0,0,0-.15,1.74c0,.09,0,.17,0,.26"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 213.605px 288.06px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="ellr56cczrc"
+				d="M219.83,279.24a10.5,10.5,0,0,0-5.62,5.86"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 217.02px 282.17px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="el56tv1yqao1"
+				d="M229.62,280.11a10.35,10.35,0,0,0-5.69-1.7,10.22,10.22,0,0,0-2.09.21"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 225.73px 279.26px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="elnabstuqla"
+				d="M218.11,283.75a7.72,7.72,0,0,1,10.2-1.29"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 223.21px 282.424px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="eluerwj7iq6a"
+				d="M216.23,289c0-.06,0-.12,0-.19a7.75,7.75,0,0,1,.74-3.3"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 216.6px 287.255px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="elgwgalhtqgyo"
+				d="M220.21,285.17a5.2,5.2,0,0,1,6.86-.5"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 223.64px 284.39px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="el7hd9gk951au"
+				d="M218.74,288.93s0-.08,0-.13a5.11,5.11,0,0,1,.51-2.24"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 218.995px 287.745px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="elx96tai27rrn"
+				d="M222.05,286.63a2.89,2.89,0,0,1,3.87.11"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 223.985px 286.34px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="el2t4yleak9na"
+				d="M221.07,288.87s0,0,0-.07a2.85,2.85,0,0,1,.34-1.35"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 221.24px 288.16px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="ely8xqtucailg"
+				d="M69.32,218.09l-7-13.85a.76.76,0,1,0-1.36.67l6.69,14A1.06,1.06,0,0,0,67.4,220l7.08,13.28c.19.37.79.45,1.36.17s.87-.8.68-1.18l-6.2-13.71A1.06,1.06,0,0,0,69.32,218.09Z"
+				style="fill: rgb(46, 53, 58); transform-origin: 68.7164px 218.692px"
+				class="animable"
+			></path>
+			<path
+				id="eltemlnxsxlfn"
+				d="M108.08,218.09l7-13.85a.75.75,0,0,1,1-.35.77.77,0,0,1,.35,1l-6.7,14A1,1,0,0,1,110,220l-7.08,13.28c-.19.37-.8.45-1.36.17s-.87-.8-.69-1.18l6.21-13.71A1.05,1.05,0,0,1,108.08,218.09Z"
+				style="fill: rgb(46, 53, 58); transform-origin: 108.658px 218.717px"
+				class="animable"
+			></path>
+			<polygon
+				id="el4funi97j75j"
+				points="110.76 233.87 66.8 233.87 70.09 228.27 107.46 228.27 110.76 233.87"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; transform-origin: 88.78px 231.07px"
+				class="animable"
+			></polygon>
+			<rect
+				id="elkq3mgx0pirc"
+				x="66.79"
+				y="233.87"
+				width="43.96"
+				height="5.6"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; transform-origin: 88.77px 236.67px"
+				class="animable"
+			></rect>
+			<path
+				id="elzjk3nk6sq6h"
+				d="M88,237.91H71.11a1.24,1.24,0,0,1-1.23-1.24h0a1.23,1.23,0,0,1,1.23-1.23H88a1.23,1.23,0,0,1,1.23,1.23h0A1.24,1.24,0,0,1,88,237.91Z"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 79.555px 236.675px"
+				class="animable"
+			></path>
+			<circle
+				id="eln707wsmbj8h"
+				cx="98.24"
+				cy="236.52"
+				r="1.08"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 98.24px 236.52px"
+				class="animable"
+			></circle>
+			<circle
+				id="el6wmlb3bovgh"
+				cx="102.71"
+				cy="236.52"
+				r="1.08"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 102.71px 236.52px"
+				class="animable"
+			></circle>
+			<path
+				id="elfi3ozokdsdh"
+				d="M108.27,236.52a1.09,1.09,0,1,0-1.08,1.09A1.08,1.08,0,0,0,108.27,236.52Z"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 107.18px 236.52px"
+				class="animable"
+			></path>
+			<path
+				id="el8lp1d818ynk"
+				d="M125.76,201.06a10.43,10.43,0,0,1,.57,3.41c0,.09,0,.17,0,.26"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 126.045px 202.895px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="elrg820zhu3n"
+				d="M118,194.27a10.45,10.45,0,0,1,7.37,5.76"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 121.685px 197.15px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="el11k9aulzuy6g"
+				d="M110.24,195.78a10.31,10.31,0,0,1,4.63-1.65"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 112.555px 194.955px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="el0j4gwrp3pg05"
+				d="M121.73,199.39a7.69,7.69,0,0,0-10.17-1.26"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 116.645px 198.075px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="ela2tledzokse"
+				d="M123.63,204.66a1.15,1.15,0,0,0,0-.19,7.72,7.72,0,0,0-.86-3.55"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 123.202px 202.79px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="elk835fba9qoi"
+				d="M114.86,199.39a5.16,5.16,0,0,0-2.07,1"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 113.825px 199.89px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="el0phs84nmnwy"
+				d="M121.13,204.6v-.13a5.19,5.19,0,0,0-4.07-5.07"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 119.095px 202px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="elwa81qpt6gg"
+				d="M118.19,202.7a2.85,2.85,0,0,0-4.24-.29"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 116.07px 202.15px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="eln75otsn38ei"
+				d="M118.8,204.54v-.07a2.82,2.82,0,0,0-.12-.83"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 118.74px 204.09px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="elfrhaxvu8h3g"
+				d="M59.8,194.23a10.4,10.4,0,0,0-8.58,10.24c0,.09,0,.17,0,.26"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 55.51px 199.48px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="el8ho9zsycr6p"
+				d="M67.31,195.78a10.41,10.41,0,0,0-5-1.68"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 64.81px 194.94px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="eligc4n43snv"
+				d="M63.32,197A7.89,7.89,0,0,1,66,198.13"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 64.66px 197.565px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="elcq7ukik2gk9"
+				d="M53.92,204.66c0-.06,0-.12,0-.19a7.71,7.71,0,0,1,7.71-7.71"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 57.775px 200.71px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="eliqmy7jfmrub"
+				d="M57.61,201.17a5.17,5.17,0,0,1,7.15-.83"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 61.185px 200.221px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="elzxtifs4armm"
+				d="M56.42,204.6v-.13a5.07,5.07,0,0,1,.41-2"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 56.625px 203.535px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="el86kt8s367j8"
+				d="M62.13,201.65a2.88,2.88,0,0,1,1.48.76"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 62.87px 202.03px;
+				"
+				class="animable"
+			></path>
+			<path
+				id="elwpzyjsb7veh"
+				d="M58.76,204.54s0,0,0-.07a2.88,2.88,0,0,1,2.4-2.83"
+				style="
+					fill: none;
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					stroke-width: 0.5px;
+					transform-origin: 59.96px 203.09px;
+				"
+				class="animable"
+			></path>
+		</g>
+		<g id="freepik--device-3--inject-43" class="animable" style="transform-origin: 252.19px 374.48px">
+			<rect
+				id="eldjvrow2pixi"
+				x="208.95"
+				y="329.64"
+				width="89.11"
+				height="61.05"
+				style="fill: rgb(46, 53, 58); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 253.505px 360.165px"
+				class="animable"
+			></rect>
+			<polygon
+				id="elhuodetbta9"
+				points="311.43 417.68 195.59 417.68 208.95 390.69 298.06 390.69 311.43 417.68"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; transform-origin: 253.51px 404.185px"
+				class="animable"
+			></polygon>
+			<rect
+				id="elwbmaw47gezb"
+				x="214.35"
+				y="334.47"
+				width="78.31"
+				height="51.39"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 253.505px 360.165px"
+				class="animable"
+			></rect>
+			<polygon
+				id="elhdvi18zxzgj"
+				points="265.24 355.23 253.53 341.38 241.82 355.23 246.72 355.23 246.72 376.92 260.34 376.92 260.34 355.23 265.24 355.23"
+				style="fill: currentColor; transform-origin: 253.53px 359.15px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eldke13aolzff"
+				points="249.79 399.24 249.94 395.95 245.24 395.95 244.92 399.24 249.79 399.24"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 247.43px 397.595px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="ely0bqtcmfnt"
+				points="259.52 399.24 259.36 395.95 254.65 395.95 254.66 399.24 259.52 399.24"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 257.085px 397.595px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elafrhu3lrij6"
+				points="284.86 402.75 289.9 402.75 288.71 399.24 283.85 399.24 284.86 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 286.875px 400.995px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el9s1hsd0an8l"
+				points="244.92 399.24 245.24 395.95 240.53 395.95 240.06 399.24 244.92 399.24"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 242.65px 397.595px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elvlhp398siem"
+				points="235.19 399.24 235.82 395.95 231.11 395.95 230.33 399.24 235.19 399.24"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 233.075px 397.595px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elryyx70ccvg"
+				points="278.98 399.24 278.19 395.95 273.48 395.95 274.12 399.24 278.98 399.24"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 276.23px 397.595px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eleu9o0n4909g"
+				points="283.85 399.24 282.9 395.95 278.19 395.95 278.98 399.24 283.85 399.24"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 281.02px 397.595px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elfdsvjciree"
+				points="230.33 399.24 231.11 395.95 226.4 395.95 225.46 399.24 230.33 399.24"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 228.285px 397.595px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elx9ysoul83wl"
+				points="264.39 399.24 264.07 395.95 259.36 395.95 259.52 399.24 264.39 399.24"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 261.875px 397.595px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elwanc5k5z3q"
+				points="288.71 399.24 287.61 395.95 282.9 395.95 283.85 399.24 288.71 399.24"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 285.805px 397.595px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el488mju4iskl"
+				points="274.12 399.24 273.48 395.95 268.78 395.95 269.25 399.24 274.12 399.24"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 271.45px 397.595px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elvj860j8cp6j"
+				points="269.25 399.24 268.78 395.95 264.07 395.95 264.39 399.24 269.25 399.24"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 266.66px 397.595px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elh4nvi0cc0pe"
+				points="254.66 399.24 254.65 395.95 249.94 395.95 249.79 399.24 254.66 399.24"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 252.225px 397.595px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elz4ny2lk8qu"
+				points="220.6 399.24 215.73 399.24 214.39 402.75 219.42 402.75 220.6 399.24"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 217.495px 400.995px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elpwg10x55if9"
+				points="221.69 395.95 216.99 395.95 215.73 399.24 220.6 399.24 221.69 395.95"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 218.71px 397.595px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el73vf3u88vne"
+				points="225.46 399.24 226.4 395.95 221.69 395.95 220.6 399.24 225.46 399.24"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 223.5px 397.595px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elu6ar58v8xsb"
+				points="212.95 406.52 211.4 410.57 216.81 410.57 218.16 406.52 212.95 406.52"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 214.78px 408.545px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elc4ts9fwc4ek"
+				points="219.42 402.75 214.39 402.75 212.95 406.52 218.16 406.52 219.42 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 216.185px 404.635px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elyvjiyfhlh4"
+				points="218.16 406.52 216.81 410.57 222.22 410.57 223.38 406.52 218.16 406.52"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 220.095px 408.545px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eldes530ycs0r"
+				points="240.06 399.24 240.53 395.95 235.82 395.95 235.19 399.24 240.06 399.24"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 237.86px 397.595px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eljfd040p3pnm"
+				points="239.56 402.75 240.06 399.24 235.19 399.24 234.52 402.75 239.56 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 237.29px 400.995px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elwczvqymrpc"
+				points="234.52 402.75 235.19 399.24 230.33 399.24 229.49 402.75 234.52 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 232.34px 400.995px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elokc8teyxgmj"
+				points="244.59 402.75 244.92 399.24 240.06 399.24 239.56 402.75 244.59 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 242.24px 400.995px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elh2mo9e0sic"
+				points="225.46 399.24 220.6 399.24 219.42 402.75 224.46 402.75 225.46 399.24"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 222.44px 400.995px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el6lrtr5ea34g"
+				points="285.95 406.52 291.16 406.52 289.9 402.75 284.86 402.75 285.95 406.52"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 288.01px 404.635px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el2kr88lx2aud"
+				points="229.49 402.75 230.33 399.24 225.46 399.24 224.46 402.75 229.49 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 227.395px 400.995px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el5syaukrym1"
+				points="219.42 402.75 218.16 406.52 223.38 406.52 224.46 402.75 219.42 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 221.31px 404.635px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elnlzxdzw5bib"
+				points="274.79 402.75 274.12 399.24 269.25 399.24 269.76 402.75 274.79 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 272.02px 400.995px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elktl1wrojrf9"
+				points="269.76 402.75 269.25 399.24 264.39 399.24 264.73 402.75 269.76 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 267.075px 400.995px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elstaeu1dees"
+				points="284.86 402.75 283.85 399.24 278.98 399.24 279.83 402.75 284.86 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 281.92px 400.995px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elw3e4f0q5zx"
+				points="254.66 402.75 254.66 399.24 249.79 399.24 249.62 402.75 254.66 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 252.14px 400.995px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elk4h4pujtbeg"
+				points="264.73 402.75 264.39 399.24 259.52 399.24 259.69 402.75 264.73 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 262.125px 400.995px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el3ku1t6nlgp5"
+				points="259.69 402.75 259.52 399.24 254.66 399.24 254.66 402.75 259.69 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 257.175px 400.995px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elzhzprd97opk"
+				points="249.62 402.75 249.79 399.24 244.92 399.24 244.59 402.75 249.62 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 247.19px 400.995px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elyrpf2gvhyfm"
+				points="264.73 402.75 265.09 406.52 270.31 406.52 269.76 402.75 264.73 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 267.52px 404.635px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el18ul5srigjy"
+				points="269.76 402.75 270.31 406.52 275.52 406.52 274.79 402.75 269.76 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 272.64px 404.635px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el5063xiokelk"
+				points="224.46 402.75 223.38 406.52 228.59 406.52 229.49 402.75 224.46 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 226.435px 404.635px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elast87uuog9g"
+				points="274.79 402.75 275.52 406.52 280.73 406.52 279.83 402.75 274.79 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 277.76px 404.635px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el4bnrme06brs"
+				points="254.66 402.75 254.66 406.52 259.88 406.52 259.69 402.75 254.66 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 257.27px 404.635px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eldq34nt8vt3n"
+				points="279.83 402.75 280.73 406.52 285.95 406.52 284.86 402.75 279.83 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 282.89px 404.635px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eln4lfll4lsl"
+				points="259.69 402.75 259.88 406.52 265.09 406.52 264.73 402.75 259.69 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 262.39px 404.635px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eltm4um8lk1l"
+				points="234.52 402.75 233.8 406.52 239.02 406.52 239.56 402.75 234.52 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 236.68px 404.635px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eli83n19aoa8h"
+				points="229.49 402.75 228.59 406.52 233.8 406.52 234.52 402.75 229.49 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 231.555px 404.635px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el03356ewa44i2"
+				points="249.62 402.75 249.45 406.52 254.66 406.52 254.66 402.75 249.62 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 252.055px 404.635px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el34y6f3pyasn"
+				points="244.59 402.75 244.23 406.52 249.45 406.52 249.62 402.75 244.59 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 246.925px 404.635px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el3hgklljvgx5"
+				points="239.56 402.75 239.02 406.52 244.23 406.52 244.59 402.75 239.56 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 241.805px 404.635px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elkywpe4z3hy"
+				points="279.83 402.75 278.98 399.24 274.12 399.24 274.79 402.75 279.83 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 276.975px 400.995px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el892usj7w0to"
+				points="221.69 395.95 222.82 392.58 218.27 392.58 216.99 395.95 221.69 395.95"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 219.905px 394.265px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elqdr6hziuwr"
+				points="216.99 395.95 212.64 395.95 211.24 399.24 215.73 399.24 216.99 395.95"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 214.115px 397.595px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elcvvnmwr1y2v"
+				points="218.27 392.58 214.08 392.58 212.64 395.95 216.99 395.95 218.27 392.58"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 215.455px 394.265px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elg1903ht0215"
+				points="215.73 399.24 211.24 399.24 209.74 402.75 214.39 402.75 215.73 399.24"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 212.735px 400.995px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eliwrynbwv3yd"
+				points="214.39 402.75 209.74 402.75 208.13 406.52 212.95 406.52 214.39 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 211.26px 404.635px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elktsoh2socb"
+				points="212.95 406.52 208.13 406.52 206.41 410.57 211.4 410.57 212.95 406.52"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 209.68px 408.545px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elnx97gs3wysg"
+				points="293.58 399.24 294.93 402.75 299.38 402.75 297.88 399.24 293.58 399.24"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 296.48px 400.995px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="ellk3fdcwxfh"
+				points="296.38 406.52 300.99 406.52 299.38 402.75 294.93 402.75 296.38 406.52"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 297.96px 404.635px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elsau0948f6g9"
+				points="297.93 410.57 302.71 410.57 300.99 406.52 296.38 406.52 297.93 410.57"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 299.545px 408.545px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el9jmb3e30czr"
+				points="259.36 395.95 259.2 392.58 254.65 392.58 254.65 395.95 259.36 395.95"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 257.005px 394.265px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elu2jx9upqf9d"
+				points="293.58 399.24 297.88 399.24 296.48 395.95 292.32 395.95 293.58 399.24"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 295.1px 397.595px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elofrqfk6gz4"
+				points="291.16 406.52 296.38 406.52 294.93 402.75 289.9 402.75 291.16 406.52"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 293.14px 404.635px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el339xjh3e6a7"
+				points="226.4 395.95 227.37 392.58 222.82 392.58 221.69 395.95 226.4 395.95"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 224.53px 394.265px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elubt7ma64rg8"
+				points="287.61 395.95 288.71 399.24 293.58 399.24 292.32 395.95 287.61 395.95"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 290.595px 397.595px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eljwz23016dwi"
+				points="296.48 395.95 295.05 392.58 291.02 392.58 292.32 395.95 296.48 395.95"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 293.75px 394.265px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elydhnt7fehxg"
+				points="292.32 395.95 291.02 392.58 286.48 392.58 287.61 395.95 292.32 395.95"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 289.4px 394.265px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eltlz6i44dvtd"
+				points="275.52 406.52 276.3 410.57 281.71 410.57 280.73 406.52 275.52 406.52"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 278.615px 408.545px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elrtzn0iwt0i"
+				points="292.52 410.57 297.93 410.57 296.38 406.52 291.16 406.52 292.52 410.57"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 294.545px 408.545px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elgurjeftf3z6"
+				points="287.61 395.95 286.48 392.58 281.93 392.58 282.9 395.95 287.61 395.95"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 284.77px 394.265px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eldnod9gx4ucs"
+				points="285.95 406.52 287.11 410.57 292.52 410.57 291.16 406.52 285.95 406.52"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 289.235px 408.545px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elj9oxija6z8e"
+				points="280.73 406.52 281.71 410.57 287.11 410.57 285.95 406.52 280.73 406.52"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 283.92px 408.545px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el6ogqneswivf"
+				points="289.9 402.75 294.93 402.75 293.58 399.24 288.71 399.24 289.9 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 291.82px 400.995px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elbjf581ajhm"
+				points="245.24 395.95 245.56 392.58 241.01 392.58 240.53 395.95 245.24 395.95"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 243.045px 394.265px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elsbo6to2ftfc"
+				points="282.9 395.95 281.93 392.58 277.38 392.58 278.19 395.95 282.9 395.95"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 280.14px 394.265px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eln8dmb7lnix9"
+				points="240.53 395.95 241.01 392.58 236.46 392.58 235.82 395.95 240.53 395.95"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 238.415px 394.265px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elwh2etwjhco8"
+				points="254.65 395.95 254.65 392.58 250.1 392.58 249.94 395.95 254.65 395.95"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 252.295px 394.265px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elju0n9fetil"
+				points="235.82 395.95 236.46 392.58 231.91 392.58 231.11 395.95 235.82 395.95"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 233.785px 394.265px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elad9o1l4x7g"
+				points="231.11 395.95 231.91 392.58 227.37 392.58 226.4 395.95 231.11 395.95"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 229.155px 394.265px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el2zr79ufj37b"
+				points="249.94 395.95 250.1 392.58 245.56 392.58 245.24 395.95 249.94 395.95"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 247.67px 394.265px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elp8bxpyr709r"
+				points="278.19 395.95 277.38 392.58 272.84 392.58 273.48 395.95 278.19 395.95"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 275.515px 394.265px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elt10gemdatkm"
+				points="273.48 395.95 272.84 392.58 268.29 392.58 268.78 395.95 273.48 395.95"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 270.885px 394.265px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="ela1srp4azaj7"
+				points="264.07 395.95 263.74 392.58 259.2 392.58 259.36 395.95 264.07 395.95"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 261.635px 394.265px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elgvkm3eg7q8"
+				points="275.52 406.52 270.31 406.52 265.09 406.52 259.88 406.52 254.66 406.52 249.45 406.52 244.23 406.52 239.02 406.52 233.8 406.52 228.59 406.52 223.38 406.52 222.22 410.57 227.63 410.57 233.03 410.57 238.44 410.57 243.85 410.57 249.26 410.57 254.66 410.57 260.07 410.57 265.48 410.57 270.89 410.57 276.3 410.57 275.52 406.52"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 249.26px 408.545px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elrzjqr82wdq9"
+				points="268.78 395.95 268.29 392.58 263.74 392.58 264.07 395.95 268.78 395.95"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 266.26px 394.265px"
+				class="animable"
+			></polygon>
+			<rect
+				id="elughmg898t9"
+				x="195.59"
+				y="417.68"
+				width="115.89"
+				height="1.64"
+				style="fill: rgb(46, 53, 58); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 253.535px 418.5px"
+				class="animable"
+			></rect>
+			<path
+				id="ely4c4vp5mkbn"
+				d="M330.85,329.64h68a0,0,0,0,1,0,0v61.05a0,0,0,0,1,0,0h-68a1.62,1.62,0,0,1-1.62-1.62v-57.8A1.62,1.62,0,0,1,330.85,329.64Z"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; transform-origin: 364.04px 360.165px"
+				class="animable"
+			></path>
+			<rect
+				id="elqkd8o1i9ik"
+				x="331.06"
+				y="329.64"
+				width="70.13"
+				height="61.05"
+				style="fill: rgb(46, 53, 58); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; transform-origin: 366.125px 360.165px"
+				class="animable"
+			></rect>
+			<rect
+				id="el4m49pfv8gz4"
+				x="336.46"
+				y="334.47"
+				width="60.9"
+				height="51.39"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; transform-origin: 366.91px 360.165px"
+				class="animable"
+			></rect>
+			<polygon
+				id="elp8my0n9i9ig"
+				points="357.26 355.23 366.34 341.38 375.42 355.23 371.62 355.23 371.62 376.92 361.06 376.92 361.06 355.23 357.26 355.23"
+				style="fill: currentColor; transform-origin: 366.34px 359.15px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el2zgu6z52znd"
+				points="331.06 390.69 384.22 406.06 455.89 406.06 401.19 390.69 331.06 390.69"
+				style="
+					fill: rgb(255, 255, 255);
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					transform-origin: 393.475px 398.375px;
+				"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el1nh6obpdjc5"
+				points="387.83 396.77 381.18 394.88 378.27 394.85 384.9 396.75 387.83 396.77"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 383.05px 395.81px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elpscawzfyw4"
+				points="393.62 396.82 386.95 394.94 384.08 394.91 390.73 396.8 393.62 396.82"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 388.85px 395.865px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elva59zwu35br"
+				points="414.64 398.81 417.42 398.83 410.51 396.94 407.74 396.92 414.64 398.81"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 412.58px 397.875px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elhzohjtgqggg"
+				points="384.9 396.75 378.27 394.85 375.34 394.82 381.95 396.73 384.9 396.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 380.12px 395.785px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el0keb57vh538l"
+				points="378.99 396.71 372.38 394.8 369.41 394.77 376 396.69 378.99 396.71"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 374.2px 395.74px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el6c2w9cdomi"
+				points="404.96 396.9 398.24 395.04 395.45 395.02 402.15 396.88 404.96 396.9"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 400.205px 395.96px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elwp2vx7uxwr"
+				points="407.74 396.92 401.01 395.07 398.24 395.04 404.96 396.9 407.74 396.92"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 402.99px 395.98px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elpzynf5l7lqc"
+				points="376 396.69 369.41 394.77 366.41 394.74 372.98 396.67 376 396.69"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 371.205px 395.715px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elat6tiexw0zr"
+				points="396.48 396.84 389.8 394.96 386.95 394.94 393.62 396.82 396.48 396.84"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 391.715px 395.89px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el9bx8kk3ito"
+				points="410.51 396.94 403.77 395.1 401.01 395.07 407.74 396.92 410.51 396.94"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 405.76px 396.005px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elj4mnhsg78dk"
+				points="402.15 396.88 395.45 395.02 392.63 394.99 399.33 396.86 402.15 396.88"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 397.39px 395.935px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el07bto5jc1abh"
+				points="399.33 396.86 392.63 394.99 389.8 394.96 396.48 396.84 399.33 396.86"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 394.565px 395.91px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el44bkbk7xfbr"
+				points="390.73 396.8 384.08 394.91 381.18 394.88 387.83 396.77 390.73 396.8"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 385.955px 395.84px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elrv0sbdfoa3"
+				points="369.95 396.64 366.89 396.62 373.61 398.61 376.68 398.63 369.95 396.64"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 371.785px 397.625px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elg00lpojidvv"
+				points="363.39 394.71 360.35 394.68 366.89 396.62 369.95 396.64 363.39 394.71"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 365.15px 395.66px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el3k427ajxro"
+				points="372.98 396.67 366.41 394.74 363.39 394.71 369.95 396.64 372.98 396.67"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 368.185px 395.69px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el9v0jz0fvg0s"
+				points="380.5 400.65 387.59 402.75 390.69 402.75 383.59 400.66 380.5 400.65"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 385.595px 401.7px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elufbacu2yv19"
+				points="376.68 398.63 373.61 398.61 380.5 400.65 383.59 400.66 376.68 398.63"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 378.6px 399.635px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el4o2h7xoznkd"
+				points="383.59 400.66 390.69 402.75 393.77 402.75 386.65 400.67 383.59 400.66"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 388.68px 401.705px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elf5tmyk5pkb"
+				points="381.95 396.73 375.34 394.82 372.38 394.8 378.99 396.71 381.95 396.73"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 377.165px 395.765px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="ellwt06lbvaw"
+				points="388.74 398.69 381.95 396.73 378.99 396.71 385.76 398.67 388.74 398.69"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 383.865px 397.7px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elsvkof8nnr88"
+				points="385.76 398.67 378.99 396.71 376 396.69 382.76 398.66 385.76 398.67"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 380.88px 397.68px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el9f3gokjyqa7"
+				points="391.7 398.7 384.9 396.75 381.95 396.73 388.74 398.69 391.7 398.7"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 386.825px 397.715px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el7cv4pggxp2y"
+				points="372.98 396.67 369.95 396.64 376.68 398.63 379.73 398.64 372.98 396.67"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 374.84px 397.64px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elval13ahvig"
+				points="421.72 400.76 424.5 400.77 417.42 398.83 414.64 398.81 421.72 400.76"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 419.57px 399.79px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elx1ojlax9bs"
+				points="382.76 398.66 376 396.69 372.98 396.67 379.73 398.64 382.76 398.66"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 377.87px 397.665px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elsj8hxt020jd"
+				points="376.68 398.63 383.59 400.66 386.65 400.67 379.73 398.64 376.68 398.63"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 381.665px 399.65px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el0lvw7wpdtr7m"
+				points="409.03 398.79 402.15 396.88 399.33 396.86 406.19 398.77 409.03 398.79"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 404.18px 397.825px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elnbuc3t2ox3"
+				points="406.19 398.77 399.33 396.86 396.48 396.84 403.34 398.76 406.19 398.77"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 401.335px 397.805px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elkylz9yt9yfq"
+				points="414.64 398.81 407.74 396.92 404.96 396.9 411.85 398.8 414.64 398.81"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 409.8px 397.855px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eljsfz59rzs58"
+				points="397.56 398.73 390.73 396.8 387.83 396.77 394.64 398.71 397.56 398.73"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 392.695px 397.75px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elp0jpvyi9rmp"
+				points="403.34 398.76 396.48 396.84 393.62 396.82 400.46 398.74 403.34 398.76"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 398.48px 397.79px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el0ob7zctdcoff"
+				points="400.46 398.74 393.62 396.82 390.73 396.8 397.56 398.73 400.46 398.74"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 395.595px 397.77px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elouarmk7k0mt"
+				points="394.64 398.71 387.83 396.77 384.9 396.75 391.7 398.7 394.64 398.71"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 389.77px 397.73px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elaffakftmiku"
+				points="403.34 398.76 410.37 400.73 413.24 400.74 406.19 398.77 403.34 398.76"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 408.29px 399.75px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elx4c5abn3zb"
+				points="406.19 398.77 413.24 400.74 416.08 400.75 409.03 398.79 406.19 398.77"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 411.135px 399.76px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eluf2wlt3zoge"
+				points="379.73 398.64 386.65 400.67 389.7 400.68 382.76 398.66 379.73 398.64"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 384.715px 399.66px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="ellowutbt2wh"
+				points="409.03 398.79 416.08 400.75 418.91 400.75 411.85 398.8 409.03 398.79"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 413.97px 399.77px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el888mbd8vs2"
+				points="397.56 398.73 404.57 400.71 407.48 400.72 400.46 398.74 397.56 398.73"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 402.52px 399.725px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eluxcrinlbo4"
+				points="411.85 398.8 418.91 400.75 421.72 400.76 414.64 398.81 411.85 398.8"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 416.785px 399.78px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elqbs2gtbx3t"
+				points="400.46 398.74 407.48 400.72 410.37 400.73 403.34 398.76 400.46 398.74"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 405.415px 399.735px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elhcw2fx4qxh"
+				points="385.76 398.67 392.71 400.69 395.71 400.69 388.74 398.69 385.76 398.67"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 390.735px 399.68px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el3s670mo0dcc"
+				points="382.76 398.66 389.7 400.68 392.71 400.69 385.76 398.67 382.76 398.66"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 387.735px 399.675px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elm4q8lk0umi"
+				points="394.64 398.71 401.64 400.71 404.57 400.71 397.56 398.73 394.64 398.71"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 399.605px 399.71px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eluhiaqelcvf"
+				points="391.7 398.7 398.69 400.7 401.64 400.71 394.64 398.71 391.7 398.7"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 396.67px 399.705px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elrjzubzqtf8o"
+				points="388.74 398.69 395.71 400.69 398.69 400.7 391.7 398.7 388.74 398.69"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 393.715px 399.695px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el7yzcbeyosru"
+				points="411.85 398.8 404.96 396.9 402.15 396.88 409.03 398.79 411.85 398.8"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 407px 397.84px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elftkhv4v5hg7"
+				points="363.39 394.71 356.4 392.65 353.38 392.62 360.35 394.68 363.39 394.71"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 358.385px 393.665px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elspm6vixtq9k"
+				points="360.35 394.68 357.52 394.65 364.05 396.6 366.89 396.62 360.35 394.68"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 362.205px 395.635px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el8aun4jwwq6e"
+				points="353.38 392.62 350.57 392.58 357.52 394.65 360.35 394.68 353.38 392.62"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 355.46px 393.63px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elvxz5khdtsde"
+				points="366.89 396.62 364.05 396.6 370.75 398.6 373.61 398.61 366.89 396.62"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 368.83px 397.605px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el6mqxs0gut8d"
+				points="373.61 398.61 370.75 398.6 377.63 400.65 380.5 400.65 373.61 398.61"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 375.625px 399.625px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elqn3lfk3ms3"
+				points="380.5 400.65 377.63 400.65 384.7 402.75 387.59 402.75 380.5 400.65"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 382.61px 401.7px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elxuls5adfwgm"
+				points="413.26 396.96 420.18 398.84 422.6 398.86 415.67 396.98 413.26 396.96"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 417.93px 397.91px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el6w8z655avpc"
+				points="427.27 400.77 429.7 400.78 422.6 398.86 420.18 398.84 427.27 400.77"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 424.94px 399.81px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el1e5ph36yarc"
+				points="434.55 402.75 436.98 402.75 429.7 400.78 427.27 400.77 434.55 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 432.125px 401.76px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elwym2o5591i"
+				points="386.95 394.94 379.83 392.93 376.97 392.9 384.08 394.91 386.95 394.94"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 381.96px 393.92px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elbojrv7dtxmi"
+				points="413.26 396.96 415.67 396.98 408.91 395.15 406.5 395.12 413.26 396.96"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 411.085px 396.05px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el9w78va2qp2"
+				points="424.5 400.77 427.27 400.77 420.18 398.84 417.42 398.83 424.5 400.77"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 422.345px 399.8px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el8uejgck8e9w"
+				points="366.41 394.74 359.4 392.69 356.4 392.65 363.39 394.71 366.41 394.74"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 361.405px 393.695px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elgc67cw1enjn"
+				points="403.77 395.1 410.51 396.94 413.26 396.96 406.5 395.12 403.77 395.1"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 408.515px 396.03px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elj8mzefkdsk"
+				points="408.91 395.15 401.69 393.19 399.3 393.16 406.5 395.12 408.91 395.15"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 404.105px 394.155px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elxrum946oqsm"
+				points="406.5 395.12 399.3 393.16 396.57 393.13 403.77 395.1 406.5 395.12"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 401.535px 394.125px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="ellbmonj9uj3"
+				points="416.08 400.75 423.32 402.75 426.16 402.75 418.91 400.75 416.08 400.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 421.12px 401.75px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elhtwv4e6zoo5"
+				points="431.77 402.75 434.55 402.75 427.27 400.77 424.5 400.77 431.77 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 429.525px 401.76px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elvn55xaor9q"
+				points="403.77 395.1 396.57 393.13 393.83 393.1 401.01 395.07 403.77 395.1"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 398.8px 394.1px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elikouv5v72b"
+				points="421.72 400.76 428.97 402.75 431.77 402.75 424.5 400.77 421.72 400.76"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 426.745px 401.755px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elw3y96rvahvk"
+				points="418.91 400.75 426.16 402.75 428.97 402.75 421.72 400.76 418.91 400.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 423.94px 401.75px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elwl1t6qjs65"
+				points="417.42 398.83 420.18 398.84 413.26 396.96 410.51 396.94 417.42 398.83"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 415.345px 397.89px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elqjmv882i00e"
+				points="378.27 394.85 371.2 392.83 368.28 392.79 375.34 394.82 378.27 394.85"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 373.275px 393.82px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elfpzeyen4g7n"
+				points="401.01 395.07 393.83 393.1 391.07 393.06 398.24 395.04 401.01 395.07"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 396.04px 394.065px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elutwwss65d8d"
+				points="375.34 394.82 368.28 392.79 365.34 392.76 372.38 394.8 375.34 394.82"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 370.34px 393.79px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elg4x6pdiil9e"
+				points="384.08 394.91 376.97 392.9 374.1 392.86 381.18 394.88 384.08 394.91"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 379.09px 393.885px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elfxl801vdrzl"
+				points="372.38 394.8 365.34 392.76 362.38 392.72 369.41 394.77 372.38 394.8"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 367.38px 393.76px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el7vavcn4lff9"
+				points="369.41 394.77 362.38 392.72 359.4 392.69 366.41 394.74 369.41 394.77"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 364.405px 393.73px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elejlkzisumqi"
+				points="381.18 394.88 374.1 392.86 371.2 392.83 378.27 394.85 381.18 394.88"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 376.19px 393.855px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elbhnt27l02y"
+				points="398.24 395.04 391.07 393.06 388.29 393.03 395.45 395.02 398.24 395.04"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 393.265px 394.035px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el1bd1hak78p6"
+				points="395.45 395.02 388.29 393.03 385.49 393 392.63 394.99 395.45 395.02"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 390.47px 394.01px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elwxptqiibx68"
+				points="389.8 394.96 382.67 392.96 379.83 392.93 386.95 394.94 389.8 394.96"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 384.815px 393.945px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elnouevwgx0y"
+				points="416.08 400.75 413.24 400.74 410.37 400.73 407.48 400.72 404.57 400.71 401.64 400.71 398.69 400.7 395.71 400.69 392.71 400.69 389.7 400.68 386.65 400.67 393.77 402.75 396.82 402.75 399.86 402.75 402.87 402.75 405.85 402.75 408.82 402.75 411.76 402.75 414.68 402.75 417.58 402.75 420.46 402.75 423.32 402.75 416.08 400.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 404.985px 401.71px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eljj6gtbh43hl"
+				points="392.63 394.99 385.49 393 382.67 392.96 389.8 394.96 392.63 394.99"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 387.65px 393.975px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el1p95kn9jj1z"
+				points="331.06 390.69 331.06 392.73 384.2 408.68 384.22 406.06 331.06 390.69"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; transform-origin: 357.64px 399.685px"
+				class="animable"
+			></polygon>
+			<rect
+				id="ele9nfzv9xpxk"
+				x="384.22"
+				y="406.06"
+				width="71.67"
+				height="2.61"
+				style="fill: rgb(46, 53, 58); stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; transform-origin: 420.055px 407.365px"
+				class="animable"
+			></rect>
+			<g id="elywgb3u6jhym">
+				<path
+					d="M107.16,329.64h68a0,0,0,0,1,0,0v61.05a0,0,0,0,1,0,0h-68a1.62,1.62,0,0,1-1.62-1.62v-57.8A1.62,1.62,0,0,1,107.16,329.64Z"
+					style="
+						fill: rgb(255, 255, 255);
+						stroke: rgb(46, 53, 58);
+						stroke-linecap: round;
+						stroke-linejoin: round;
+						transform-origin: 140.35px 360.165px;
+						transform: rotate(180deg);
+					"
+					class="animable"
+				></path>
+			</g>
+			<g id="el2ugxah0on3u">
+				<rect
+					x="103.19"
+					y="329.64"
+					width="70.13"
+					height="61.05"
+					style="
+						fill: rgb(46, 53, 58);
+						stroke: rgb(46, 53, 58);
+						stroke-miterlimit: 10;
+						transform-origin: 138.255px 360.165px;
+						transform: rotate(180deg);
+					"
+					class="animable"
+				></rect>
+			</g>
+			<g id="el1vvhl97s1m2">
+				<rect
+					x="107.02"
+					y="334.47"
+					width="60.9"
+					height="51.39"
+					style="
+						fill: rgb(255, 255, 255);
+						stroke: rgb(46, 53, 58);
+						stroke-linecap: round;
+						stroke-linejoin: round;
+						transform-origin: 137.47px 360.165px;
+						transform: rotate(180deg);
+					"
+					class="animable"
+				></rect>
+			</g>
+			<polygon
+				id="el5jcuurjvd6g"
+				points="143.31 355.23 134.23 341.38 125.15 355.23 128.95 355.23 128.95 376.92 139.51 376.92 139.51 355.23 143.31 355.23"
+				style="fill: currentColor; transform-origin: 134.23px 359.15px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eltzdkyeqx37"
+				points="173.32 390.69 120.16 406.06 48.49 406.06 103.19 390.69 173.32 390.69"
+				style="
+					fill: rgb(255, 255, 255);
+					stroke: rgb(46, 53, 58);
+					stroke-linecap: round;
+					stroke-linejoin: round;
+					transform-origin: 110.905px 398.375px;
+				"
+				class="animable"
+			></polygon>
+			<polygon
+				id="els1e4p69a1al"
+				points="116.55 396.77 123.2 394.88 126.11 394.85 119.48 396.75 116.55 396.77"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 121.33px 395.81px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elj0fk65a3r0l"
+				points="110.76 396.82 117.43 394.94 120.3 394.91 113.65 396.8 110.76 396.82"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 115.53px 395.865px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elq4xf6czh9ef"
+				points="89.74 398.81 86.96 398.83 93.87 396.94 96.64 396.92 89.74 398.81"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 91.8px 397.875px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el773wr99qru"
+				points="119.48 396.75 126.11 394.85 129.04 394.82 122.43 396.73 119.48 396.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 124.26px 395.785px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elqrur4tz0ts"
+				points="125.39 396.71 132 394.8 134.97 394.77 128.38 396.69 125.39 396.71"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 130.18px 395.74px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el5zhvxg08yfu"
+				points="99.42 396.9 106.14 395.04 108.93 395.02 102.23 396.88 99.42 396.9"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 104.175px 395.96px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elutcctju1gk"
+				points="96.64 396.92 103.37 395.07 106.14 395.04 99.42 396.9 96.64 396.92"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 101.39px 395.98px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el0l6lr887g06"
+				points="128.38 396.69 134.97 394.77 137.97 394.74 131.4 396.67 128.38 396.69"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 133.175px 395.715px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el9c1w527dddf"
+				points="107.9 396.84 114.58 394.96 117.43 394.94 110.76 396.82 107.9 396.84"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 112.665px 395.89px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eldq27tc7so95"
+				points="93.87 396.94 100.61 395.1 103.37 395.07 96.64 396.92 93.87 396.94"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 98.62px 396.005px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el2j2z6dqdyxg"
+				points="102.23 396.88 108.93 395.02 111.75 394.99 105.05 396.86 102.23 396.88"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 106.99px 395.935px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="ela9tzfuddkrq"
+				points="105.05 396.86 111.75 394.99 114.58 394.96 107.9 396.84 105.05 396.86"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 109.815px 395.91px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elh6oskybhe9i"
+				points="113.65 396.8 120.3 394.91 123.2 394.88 116.55 396.77 113.65 396.8"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 118.425px 395.84px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eluwwgxxbcesi"
+				points="134.43 396.64 137.49 396.62 130.77 398.61 127.7 398.63 134.43 396.64"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 132.595px 397.625px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elnm0qwjtw4k"
+				points="140.99 394.71 144.03 394.68 137.49 396.62 134.43 396.64 140.99 394.71"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 139.23px 395.66px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elzkmuu9yaqjg"
+				points="131.4 396.67 137.97 394.74 140.99 394.71 134.43 396.64 131.4 396.67"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 136.195px 395.69px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elu6r2g32pssq"
+				points="123.88 400.65 116.79 402.75 113.69 402.75 120.79 400.66 123.88 400.65"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 118.785px 401.7px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el1f26gml8h93"
+				points="127.7 398.63 130.77 398.61 123.88 400.65 120.79 400.66 127.7 398.63"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 125.78px 399.635px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elocbt1irnp4c"
+				points="120.79 400.66 113.69 402.75 110.61 402.75 117.72 400.67 120.79 400.66"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 115.7px 401.705px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elo2529saciv"
+				points="122.43 396.73 129.04 394.82 132 394.8 125.39 396.71 122.43 396.73"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 127.215px 395.765px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elsuywum4khnb"
+				points="115.64 398.69 122.43 396.73 125.39 396.71 118.62 398.67 115.64 398.69"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 120.515px 397.7px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elnekuklebz2c"
+				points="118.62 398.67 125.39 396.71 128.38 396.69 121.62 398.66 118.62 398.67"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 123.5px 397.68px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elzuiip5cnp6"
+				points="112.68 398.7 119.48 396.75 122.43 396.73 115.64 398.69 112.68 398.7"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 117.555px 397.715px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elmge7lxhoz7l"
+				points="131.4 396.67 134.43 396.64 127.7 398.63 124.65 398.64 131.4 396.67"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 129.54px 397.64px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elzzv4eyt3t5"
+				points="82.66 400.76 79.88 400.77 86.96 398.83 89.74 398.81 82.66 400.76"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 84.81px 399.79px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el8ntqdrcs4av"
+				points="121.62 398.66 128.38 396.69 131.4 396.67 124.65 398.64 121.62 398.66"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 126.51px 397.665px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elcrrul03rcz"
+				points="127.7 398.63 120.79 400.66 117.72 400.67 124.65 398.64 127.7 398.63"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 122.71px 399.65px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el58uqi5unm3o"
+				points="95.35 398.79 102.23 396.88 105.05 396.86 98.19 398.77 95.35 398.79"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 100.2px 397.825px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el40l2me0hf2k"
+				points="98.19 398.77 105.05 396.86 107.9 396.84 101.04 398.76 98.19 398.77"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 103.045px 397.805px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elbvd6s1txae"
+				points="89.74 398.81 96.64 396.92 99.42 396.9 92.53 398.8 89.74 398.81"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 94.58px 397.855px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el2tlbrtztlgy"
+				points="106.82 398.73 113.65 396.8 116.55 396.77 109.74 398.71 106.82 398.73"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 111.685px 397.75px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elemtsidfwch"
+				points="101.04 398.76 107.9 396.84 110.76 396.82 103.92 398.74 101.04 398.76"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 105.9px 397.79px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el40cpvpeuzqr"
+				points="103.92 398.74 110.76 396.82 113.65 396.8 106.82 398.73 103.92 398.74"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 108.785px 397.77px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elnar9lkaaf7l"
+				points="109.74 398.71 116.55 396.77 119.48 396.75 112.68 398.7 109.74 398.71"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 114.61px 397.73px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elbvtgc866hi9"
+				points="101.04 398.76 94.01 400.73 91.14 400.74 98.19 398.77 101.04 398.76"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 96.09px 399.75px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elkyge34ra52"
+				points="98.19 398.77 91.14 400.74 88.3 400.75 95.35 398.79 98.19 398.77"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 93.245px 399.76px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el1szmyhm9pdk"
+				points="124.65 398.64 117.72 400.67 114.68 400.68 121.62 398.66 124.65 398.64"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 119.665px 399.66px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el8ckjvohoaf5"
+				points="95.35 398.79 88.3 400.75 85.47 400.75 92.53 398.8 95.35 398.79"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 90.41px 399.77px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="ellln9fyrhwh"
+				points="106.82 398.73 99.81 400.71 96.9 400.72 103.92 398.74 106.82 398.73"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 101.86px 399.725px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el033pgngl1i2g"
+				points="92.53 398.8 85.47 400.75 82.66 400.76 89.74 398.81 92.53 398.8"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 87.595px 399.78px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el1f49mwqk2wa"
+				points="103.92 398.74 96.9 400.72 94.01 400.73 101.04 398.76 103.92 398.74"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 98.965px 399.735px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elcstg95xl21o"
+				points="118.62 398.67 111.67 400.69 108.67 400.69 115.64 398.69 118.62 398.67"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 113.645px 399.68px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elxstszxb065c"
+				points="121.62 398.66 114.68 400.68 111.67 400.69 118.62 398.67 121.62 398.66"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 116.645px 399.675px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elkb8p4f7mqln"
+				points="109.74 398.71 102.74 400.71 99.81 400.71 106.82 398.73 109.74 398.71"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 104.775px 399.71px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elmqclk1c87u"
+				points="112.68 398.7 105.69 400.7 102.74 400.71 109.74 398.71 112.68 398.7"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 107.71px 399.705px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elvqr6cyqbcy8"
+				points="115.64 398.69 108.67 400.69 105.69 400.7 112.68 398.7 115.64 398.69"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 110.665px 399.695px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elj2s9ndqfb6"
+				points="92.53 398.8 99.42 396.9 102.23 396.88 95.35 398.79 92.53 398.8"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 97.38px 397.84px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el1slv4dwq3pv"
+				points="140.99 394.71 147.98 392.65 151 392.62 144.03 394.68 140.99 394.71"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 145.995px 393.665px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elo3yryeiohwb"
+				points="144.03 394.68 146.86 394.65 140.33 396.6 137.49 396.62 144.03 394.68"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 142.175px 395.635px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elr48g2jk6p9"
+				points="151 392.62 153.81 392.58 146.86 394.65 144.03 394.68 151 392.62"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 148.92px 393.63px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elywtwuztrqei"
+				points="137.49 396.62 140.33 396.6 133.63 398.6 130.77 398.61 137.49 396.62"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 135.55px 397.605px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eldi58a4w7ekr"
+				points="130.77 398.61 133.63 398.6 126.75 400.65 123.88 400.65 130.77 398.61"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 128.755px 399.625px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elxh18q4cpytk"
+				points="123.88 400.65 126.75 400.65 119.68 402.75 116.79 402.75 123.88 400.65"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 121.77px 401.7px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el6xvwexzjyde"
+				points="91.12 396.96 84.2 398.84 81.78 398.86 88.71 396.98 91.12 396.96"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 86.45px 397.91px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elkvxfdhdo09"
+				points="77.11 400.77 74.68 400.78 81.78 398.86 84.2 398.84 77.11 400.77"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 79.44px 399.81px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elgruftm8k3p"
+				points="69.83 402.75 67.4 402.75 74.68 400.78 77.11 400.77 69.83 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 72.255px 401.76px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="ela1s3jxdy89k"
+				points="117.43 394.94 124.55 392.93 127.41 392.9 120.3 394.91 117.43 394.94"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 122.42px 393.92px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eltpkflf4zuo8"
+				points="91.12 396.96 88.71 396.98 95.47 395.15 97.87 395.12 91.12 396.96"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 93.29px 396.05px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="eldcbb8wna2c"
+				points="79.88 400.77 77.11 400.77 84.2 398.84 86.96 398.83 79.88 400.77"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 82.035px 399.8px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elpbouosm57tj"
+				points="137.97 394.74 144.98 392.69 147.98 392.65 140.99 394.71 137.97 394.74"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 142.975px 393.695px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el0304687l60dn"
+				points="100.61 395.1 93.87 396.94 91.12 396.96 97.87 395.12 100.61 395.1"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 95.865px 396.03px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elppi7u9086et"
+				points="95.47 395.15 102.69 393.19 105.08 393.16 97.87 395.12 95.47 395.15"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 100.275px 394.155px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el7ngl5d1vajk"
+				points="97.87 395.12 105.08 393.16 107.81 393.13 100.61 395.1 97.87 395.12"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 102.84px 394.125px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el3369tmusji"
+				points="88.3 400.75 81.06 402.75 78.22 402.75 85.47 400.75 88.3 400.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 83.26px 401.75px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elodv23wqm2nl"
+				points="72.61 402.75 69.83 402.75 77.11 400.77 79.88 400.77 72.61 402.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 74.855px 401.76px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elnd0by8jrlz"
+				points="100.61 395.1 107.81 393.13 110.55 393.1 103.37 395.07 100.61 395.1"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 105.58px 394.1px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elfn30cqj79ol"
+				points="82.66 400.76 75.41 402.75 72.61 402.75 79.88 400.77 82.66 400.76"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 77.635px 401.755px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elvxn63l0cgr"
+				points="85.47 400.75 78.22 402.75 75.41 402.75 82.66 400.76 85.47 400.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 80.44px 401.75px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elku2utx1fvej"
+				points="86.96 398.83 84.2 398.84 91.12 396.96 93.87 396.94 86.96 398.83"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 89.035px 397.89px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el26g1cyhvq3d"
+				points="126.11 394.85 133.18 392.83 136.1 392.79 129.04 394.82 126.11 394.85"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 131.105px 393.82px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elsfu2ms5c7d"
+				points="103.37 395.07 110.55 393.1 113.31 393.06 106.14 395.04 103.37 395.07"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 108.34px 394.065px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elqtcss8n4gt"
+				points="129.04 394.82 136.1 392.79 139.04 392.76 132 394.8 129.04 394.82"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 134.04px 393.79px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el3gan65fy3x1"
+				points="120.3 394.91 127.41 392.9 130.28 392.86 123.2 394.88 120.3 394.91"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 125.29px 393.885px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elbervmt8zoh8"
+				points="132 394.8 139.04 392.76 142 392.72 134.97 394.77 132 394.8"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 137px 393.76px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elyj3qfddx48b"
+				points="134.97 394.77 142 392.72 144.98 392.69 137.97 394.74 134.97 394.77"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 139.975px 393.73px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el6a9d8jklhfw"
+				points="123.2 394.88 130.28 392.86 133.18 392.83 126.11 394.85 123.2 394.88"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 128.19px 393.855px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elmi5nbny8fq"
+				points="106.14 395.04 113.31 393.06 116.09 393.03 108.93 395.02 106.14 395.04"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 111.115px 394.035px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elfw2c79ka46f"
+				points="108.93 395.02 116.09 393.03 118.89 393 111.75 394.99 108.93 395.02"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 113.91px 394.01px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el0sesp14b69i"
+				points="114.58 394.96 121.71 392.96 124.55 392.93 117.43 394.94 114.58 394.96"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 119.565px 393.945px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el0ru36dtkva7n"
+				points="88.3 400.75 91.14 400.74 94.01 400.73 96.9 400.72 99.81 400.71 102.74 400.71 105.69 400.7 108.67 400.69 111.67 400.69 114.68 400.68 117.72 400.67 110.61 402.75 107.56 402.75 104.52 402.75 101.52 402.75 98.53 402.75 95.56 402.75 92.62 402.75 89.7 402.75 86.8 402.75 83.92 402.75 81.06 402.75 88.3 400.75"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 99.39px 401.71px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="el7kcscmra15u"
+				points="111.75 394.99 118.89 393 121.71 392.96 114.58 394.96 111.75 394.99"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-miterlimit: 10; stroke-width: 0.25px; transform-origin: 116.73px 393.975px"
+				class="animable"
+			></polygon>
+			<polygon
+				id="elsqxksdch9x"
+				points="173.32 390.69 173.32 392.73 120.17 408.68 120.16 406.06 173.32 390.69"
+				style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; transform-origin: 146.74px 399.685px"
+				class="animable"
+			></polygon>
+			<g id="elqycvgcdkuop">
+				<rect
+					x="48.49"
+					y="406.06"
+					width="71.67"
+					height="2.61"
+					style="
+						fill: rgb(46, 53, 58);
+						stroke: rgb(46, 53, 58);
+						stroke-linecap: round;
+						stroke-linejoin: round;
+						transform-origin: 84.325px 407.365px;
+						transform: rotate(180deg);
+					"
+					class="animable"
+				></rect>
+			</g>
+		</g>
+		<defs>
+			<filter id="active" height="200%">
+				<feMorphology in="SourceAlpha" result="DILATED" operator="dilate" radius="2"></feMorphology>
+				<feFlood flood-color="#32DFEC" flood-opacity="1" result="PINK"></feFlood>
+				<feComposite in="PINK" in2="DILATED" operator="in" result="OUTLINE"></feComposite>
+				<feMerge>
+					<feMergeNode in="OUTLINE"></feMergeNode>
+					<feMergeNode in="SourceGraphic"></feMergeNode>
+				</feMerge>
+			</filter>
+			<filter id="hover" height="200%">
+				<feMorphology in="SourceAlpha" result="DILATED" operator="dilate" radius="2"></feMorphology>
+				<feFlood flood-color="#ff0000" flood-opacity="0.5" result="PINK"></feFlood>
+				<feComposite in="PINK" in2="DILATED" operator="in" result="OUTLINE"></feComposite>
+				<feMerge>
+					<feMergeNode in="OUTLINE"></feMergeNode>
+					<feMergeNode in="SourceGraphic"></feMergeNode>
+				</feMerge>
+				<feColorMatrix
+					type="matrix"
+					values="0   0   0   0   0                0   1   0   0   0                0   0   0   0   0                0   0   0   1   0 "
+				></feColorMatrix>
+			</filter>
+		</defs>
+	</svg>
+</template>
+<!--
+<script lang="ts" setup>
+interface Props {
+	/** 过渡的开始颜色 */
+	startColor?: string
+	/** 过渡的结束颜色 */
+	endColor?: string
+}
+
+withDefaults(defineProps<Props>(), {
+	startColor: '#28aff0',
+	endColor: '#120fc4'
+})
+</script>
+-->
+<script setup></script>
+<style scoped>
+svg#freepik_stories-server {
+	&:not(.animated) {
+		.animable {
+			opacity: 0;
+		}
+	}
+	&.animated {
+		#freepik--background-simple--inject-43 {
+			animation: 1s 1 forwards cubic-bezier(0.36, -0.01, 0.5, 1.38) zoomIn;
+			animation-delay: 0s;
+		}
+		#freepik--Shadow--inject-43 {
+			animation: 1s 1 forwards cubic-bezier(0.36, -0.01, 0.5, 1.38) slideDown;
+			animation-delay: 0s;
+		}
+		#freepik--Clouds--inject-43 {
+			animation: 1s 1 forwards cubic-bezier(0.36, -0.01, 0.5, 1.38) slideDown;
+			animation-delay: 0s;
+		}
+		#freepik--device-1--inject-43 {
+			animation: 1s 1 forwards cubic-bezier(0.36, -0.01, 0.5, 1.38) slideLeft;
+			animation-delay: 0s;
+		}
+		#freepik--device-2--inject-43 {
+			animation: 1s 1 forwards cubic-bezier(0.36, -0.01, 0.5, 1.38) slideDown;
+			animation-delay: 0s;
+		}
+		#freepik--device-3--inject-43 {
+			animation: 1s 1 forwards cubic-bezier(0.36, -0.01, 0.5, 1.38) zoomIn;
+			animation-delay: 0s;
+		}
+	}
+}
+@keyframes zoomIn {
+	0% {
+		opacity: 0;
+		transform: scale(0.5);
+	}
+	100% {
+		opacity: 1;
+		transform: scale(1);
+	}
+}
+
+@keyframes slideDown {
+	0% {
+		opacity: 0;
+		transform: translateY(-30px);
+	}
+	100% {
+		opacity: 1;
+		transform: translateY(0);
+	}
+}
+
+@keyframes slideLeft {
+	0% {
+		opacity: 0;
+		transform: translateX(-30px);
+	}
+	100% {
+		opacity: 1;
+		transform: translateX(0);
+	}
+}
+</style>

+ 263 - 183
src/views/login/index.vue

@@ -1,59 +1,74 @@
 <template>
 	<div class="login-container">
-		<el-form ref="loginFormRef" :model="loginForm" :rules="loginRules" class="login-form" auto-complete="on" label-position="left">
-			<div class="title-container">
-				<h3 class="title">{{ $t('login.title') }}</h3>
-				<lang-select class="set-language" />
+		<div class="login-left">
+			<div class="header">
+				<img class="logo-img" src="@/assets/icons/logo.svg" alt="logo" />
+				{{ title }}
 			</div>
+			<ServerLogin class="login-left_svg" style="color: var(--el-color-primary)" />
+		</div>
+		<div class="login-right">
+			<el-form ref="loginFormRef" :model="loginForm" :rules="loginRules" class="login-form" auto-complete="on" label-position="left">
+				<div class="title-container">
+					<h3 class="title">{{ title }}</h3>
+					<lang-select class="set-language" />
+				</div>
 
-			<el-form-item prop="username">
-				<span class="svg-container">
-					<svg-icon icon-class="user" />
-				</span>
-				<el-input
-					ref="username"
-					v-model="loginForm.username"
-					:placeholder="$t('login.username')"
-					name="username"
-					type="text"
-					tabindex="1"
-					auto-complete="on"
-				/>
-			</el-form-item>
+				<el-form-item prop="username">
+					<el-input
+						ref="username"
+						v-model="loginForm.username"
+						class="login-input"
+						:placeholder="$t('login.username')"
+						name="username"
+						type="text"
+						tabindex="1"
+						auto-complete="on"
+					>
+						<template #prefix>
+							<span class="svg-container">
+								<svg-icon icon-class="user" />
+							</span>
+						</template>
+					</el-input>
+				</el-form-item>
 
-			<el-form-item prop="password">
-				<span class="svg-container">
-					<svg-icon icon-class="password" />
-				</span>
-				<el-input
-					ref="passwordRef"
-					:key="passwordType"
-					v-model="loginForm.password"
-					:type="passwordType"
-					:placeholder="$t('login.password')"
-					name="password"
-					tabindex="2"
-					auto-complete="on"
-					@keyup.enter="handleLogin"
-				/>
-				<span class="show-pwd" @click="showPwd">
-					<svg-icon :icon-class="passwordType === 'password' ? 'eye' : 'eye-open'" />
-				</span>
-			</el-form-item>
+				<el-form-item prop="password">
+					<el-input
+						ref="passwordRef"
+						v-model="loginForm.password"
+						class="login-input"
+						type="password"
+						:placeholder="$t('login.password')"
+						name="password"
+						tabindex="2"
+						auto-complete="on"
+						:show-password="true"
+						@keyup.enter="handleLogin"
+					>
+						<template #prefix>
+							<span class="svg-container">
+								<svg-icon icon-class="password" />
+							</span>
+						</template>
+					</el-input>
+				</el-form-item>
 
-			<el-button size="default" :loading="loading" type="primary" style="width: 100%; margin-bottom: 30px" @click.prevent="handleLogin"
+				<el-button size="default" :loading="loading" type="primary" style="width: 100%; margin-bottom: 30px" @click.prevent="handleLogin"
 				>{{ $t('login.login') }}
-			</el-button>
-		</el-form>
+				</el-button>
+			</el-form>
+		</div>
 	</div>
 </template>
 
 <script setup lang="ts">
-import { reactive, ref, toRefs, watch, nextTick } from 'vue'
-
+import { onMounted, reactive, ref, toRefs, watch, nextTick } from 'vue'
+import ServerLogin from './components/LoginMainSvg.vue'
 // 组件依赖
 import LangSelect from '@/layout/components/Header/components/Language.vue'
 
+const title = import.meta.env.VITE_APP_TITLE
 // 状态管理依赖
 import useStore from '@/store'
 // API依赖
@@ -75,22 +90,10 @@ const state = reactive({
 		username: [{ required: true, message: '用户名不能为空', trigger: 'blur' }],
 		password: [{ required: true, message: '密码不能为空', trigger: 'blur' }]
 	},
-	loading: false,
-	passwordType: 'password'
+	loading: false
 })
 
-const { loginForm, loginRules, loading, passwordType } = toRefs(state)
-
-function showPwd() {
-	if (state.passwordType === 'password') {
-		state.passwordType = ''
-	} else {
-		state.passwordType = 'password'
-	}
-	nextTick(() => {
-		passwordRef.value.focus()
-	})
-}
+const { loginForm, loginRules, loading } = toRefs(state)
 
 function handleLogin() {
 	loginFormRef.value.validate((valid: boolean) => {
@@ -117,130 +120,111 @@ watch(
 )
 </script>
 
-<style lang="scss">
-/* 修复input 背景不协调 和光标变色 */
-/* Detail see https://github.com/PanJiaChen/vue-element-admin/pull/927 */
-
-$bg: #283443;
-$light_gray: #fff;
-$cursor: #fff;
-
-/* reset element-plus css */
+<style lang="scss" scoped>
+@import '@/styles/mixins.scss';
+//$light_gray: var(--el-input-icon-color);
+//$light_gray: #fff;
+$light_gray: var(--el-color-white);
 .login-container {
-	.title-container {
-		position: relative;
-
-		.title {
-			font-size: 26px;
-			color: $light_gray;
-			margin: 0px auto 40px auto;
-			text-align: center;
-			font-weight: bold;
-		}
-
-		.set-language {
+	min-height: 100%;
+	width: 100%;
+	display: flex;
+	height: 100%;
+	overflow: hidden;
+	.login-left {
+		flex: 1;
+		display: flex;
+		flex-direction: column;
+		background: var(--el-color-primary-light-5);
+		.header {
+			margin-top: 80px;
+			display: flex;
+			align-items: center;
+			height: 78px;
+			padding: 0 20px;
 			color: #fff;
-			position: absolute;
-			top: 3px;
-			font-size: 18px;
-			right: 0;
-			cursor: pointer;
-			height: unset;
-		}
-	}
-
-	//.localFormItem {
-	//}
-	//.el-form-item.localFormItem {
-	.el-form-item:nth-child(2),
-	.el-form-item:nth-child(3) {
-		border: 1px solid rgba(255, 255, 255, 0.1);
-		background: rgba(0, 0, 0, 0.1);
-		border-radius: 5px;
-		color: #454545;
-		.el-input {
-			display: inline-block;
-			height: 47px;
-			width: 85%;
-			.el-input__wrapper {
-				padding: 0;
-				background: transparent;
-				box-shadow: none;
-				.el-input__inner {
-					background: transparent;
-					border: 0px;
-					-webkit-appearance: none;
-					border-radius: 0px;
-					padding: 12px 5px 12px 15px;
-					color: $light_gray;
-					height: 47px;
-					caret-color: $cursor;
-
-					&:-webkit-autofill {
-						box-shadow: 0 0 0px 1000px $bg inset !important;
-						-webkit-text-fill-color: $cursor !important;
-					}
-				}
+			font-size: 22px;
+			@include hover-bg-opacity(0, #f00, 0.5);
+			&::before {
+				//background-color: var(--el-color-primary) !important;
+				background: linear-gradient(270deg, var(--el-color-primary-light-5), var(--el-color-primary-light-7));
 			}
-		}
-		.el-input__inner {
-			&:hover {
-				border-color: var(--el-input-hover-border, var(--el-border-color-hover));
-				box-shadow: none;
+			.logo-img {
+				width: 50px;
+				margin-right: 10px;
 			}
-
-			box-shadow: none;
+		}
+		.login-left_svg {
+			margin: 10% auto;
+			max-height: 500px;
 		}
 	}
-	.gt_float {
-		padding: 8px 0;
-	}
-	.copyright {
-		width: 100%;
-		position: absolute;
-		bottom: 0;
-		font-size: 12px;
-		text-align: center;
-		color: #cccccc;
+	.login-right {
+		width: 660px;
+		max-width: 100%;
+		background: linear-gradient(145deg, var(--el-color-primary-light-5), var(--el-color-white));
 	}
-}
-//// 极验证样式
-//#captcha .gt_holder {
-//  &.gt_float {
-//    width: 100%;
-//  }
-//  .gt_slider {
-//    //width: 100%;
-//    width: calc(100% - 42px);
-//  }
-//  .gt_guide_tip {
-//    width: calc(100% - 42px);
-//  }
-//}
-</style>
-
-<style lang="scss" scoped>
-$bg: #2d3a4b;
-$dark_gray: #889aa4;
-$light_gray: #eee;
-
-.login-container {
-	min-height: 100%;
-	width: 100%;
-	background-color: $bg;
-	overflow: hidden;
 	.login-form {
 		position: relative;
-		//width: 520px;
-		width: 374px;
+		width: 360px;
 		max-width: 100%;
-		padding: 160px 35px 0;
+		padding: 12px 24px;
 		margin: 0 auto;
 		overflow: hidden;
-		position: absolute;
-		top: 40%;
-		left: 50%;
-		transform: translate(-50%, -50%);
+		top: 30%;
+		//left: 50%;
+		//transform: translate(-50%, -50%);
+		:deep(.el-form-item) {
+			border: 1px solid rgba(255, 255, 255, 0.1);
+			background: rgba(0, 0, 0, 0.1);
+			border-radius: 5px;
+			color: #454545;
+			.el-input {
+				height: 47px;
+				.el-input__wrapper {
+					padding: 0;
+					background: transparent;
+					box-shadow: none;
+					.el-input__inner {
+						background: transparent;
+						border: 0;
+						-webkit-appearance: none;
+						border-radius: 0;
+						padding: 12px 8px;
+						//padding: 12px 0;
+						//padding-right: 8px;
+						color: $light_gray;
+						height: 47px;
+						caret-color: $light_gray;
+						&:-webkit-autofill {
+							box-shadow: 0 0 0px 1000px var(--el-color-primary-light-5) inset !important;
+							-webkit-text-fill-color: $light_gray !important;
+						}
+					}
+					.el-input__prefix-inner > :last-child {
+						margin-right: 0;
+					}
+					/*.el-input__suffix-inner > :first-child {
+						margin-left: 0;
+					}*/
+				}
+			}
+			.el-input__inner {
+				&:hover {
+					border-color: var(--el-input-hover-border, var(--el-border-color-hover));
+					box-shadow: none;
+				}
+
+				box-shadow: none;
+			}
+		}
+		.login-input {
+			//--el-input-icon-color: #fff;
+			--el-input-placeholder-color: #fafafa;
+			:deep(.el-input__suffix) {
+				padding-right: 10px;
+			}
+		}
 	}
 
 	.tips {
@@ -256,33 +240,129 @@ $light_gray: #eee;
 	}
 
 	.svg-container {
-		padding: 6px 5px 6px 15px;
-		color: $dark_gray;
-		vertical-align: middle;
-		width: 30px;
+		padding-left: 10px;
+		color: $light_gray;
 		display: inline-block;
 	}
 
 	.title-container {
-		position: relative;
-
+		display: flex;
+		align-items: center;
+		justify-content: space-between;
+		margin-bottom: 36px;
 		.title {
-			font-size: 26px;
+			font-size: 24px;
 			color: $light_gray;
-			margin: 0px auto 40px auto;
 			text-align: center;
 			font-weight: bold;
 		}
+		.set-language {
+			color: $light_gray;
+			font-size: 18px;
+			cursor: pointer;
+		}
+	}
+
+	/*.captcha {
+		width: 100%;
+		&_placeholder {
+			height: 42px;
+			width: 100%;
+			text-align: center;
+			border-radius: 2px;
+			background-color: #f3f3f3;
+			color: #bbbbbb;
+			font-size: 14px;
+			letter-spacing: 0.1px;
+			line-height: 42px;
+		}
+		&_wait {
+			height: 42px;
+			width: 100%;
+			text-align: center;
+			border-radius: 2px;
+			background-color: #f3f3f3;
+		}
+	}*/
+
+	.loading {
+		margin: auto;
+		width: 70px;
+		height: 20px;
+		&-dot {
+			&:nth-child(1) {
+				animation-delay: 0s;
+			}
+			&:nth-child(2) {
+				animation-delay: 0.1s;
+			}
+
+			&:nth-child(3) {
+				animation-delay: 0.2s;
+			}
+
+			&:nth-child(4) {
+				animation-delay: 0.3s;
+			}
+			float: left;
+			width: 8px;
+			height: 8px;
+			margin: 18px 4px;
+			background: #ccc;
+			border-radius: 50%;
+			opacity: 0;
+			box-shadow: 0 0 2px black;
+			animation: loadingFade 1s infinite;
+		}
 	}
 
-	.show-pwd {
+	@keyframes loadingFade {
+		0% {
+			opacity: 0;
+		}
+		50% {
+			opacity: 0.8;
+		}
+		100% {
+			opacity: 0;
+		}
+	}
+}
+@media screen and (max-width: 1200px) and (min-width: 576px) {
+	.login-container .login-left .login-left_svg {
+		position: absolute;
+		top: 76% !important;
+		left: 0 !important;
+		height: 24% !important;
+		margin: 0;
+	}
+
+	.login-container .login-right {
+		position: absolute;
+		top: 50%;
+		left: 50%;
+		transform: translate(-50%, -50%);
+		padding-top: 20px;
+		background: linear-gradient(145deg, var(--el-color-primary-light-5), var(--el-color-primary-light-7));
+	}
+}
+
+@media screen and (max-width: 576px) {
+	.login-container .login-left {
+		display: none;
+		/*.header {
+			display: none;
+		}*/
+	}
+	/*.login-container .login-left .login-left_svg {
 		position: absolute;
-		right: 10px;
-		top: 12px;
-		font-size: 16px;
-		color: $dark_gray;
-		cursor: pointer;
-		user-select: none;
+		top: 82% !important;
+		left: 0 !important;
+		height: 18% !important;
+		margin: 0;
+	}*/
+	.login-container .title-container .title {
+		font-size: 20px;
 	}
 }
 </style>