... | ... |
@@ -1053,12 +1053,16 @@ p.info { |
1053 | 1053 |
display: flex; |
1054 | 1054 |
align-items: center; |
1055 | 1055 |
|
1056 |
- @if $horizontal == center { |
|
1056 |
+ @if $horizontal == center { |
|
1057 | 1057 |
justify-content: center; |
1058 | 1058 |
} @else if $horizontal == left { |
1059 | 1059 |
justify-content: flex-start; |
1060 | 1060 |
} @else if $horizontal == right { |
1061 | 1061 |
justify-content: flex-end; |
1062 |
+ } @else if $horizontal == centerright { |
|
1063 |
+ justify-content: center; |
|
1064 |
+ } @else if $horizontal == centerleft { |
|
1065 |
+ justify-content: center; |
|
1062 | 1066 |
} |
1063 | 1067 |
|
1064 | 1068 |
> * { |
... | ... |
@@ -1069,15 +1073,94 @@ p.info { |
1069 | 1073 |
align-self: center; |
1070 | 1074 |
} @else if $vertical == top { |
1071 | 1075 |
align-self: flex-start; |
1076 |
+ } @else if $vertical == bottomtop { |
|
1077 |
+ align-self: flex-start; |
|
1078 |
+ @include transform(translateY(100%)); |
|
1079 |
+ padding-top: 1.5rem; |
|
1072 | 1080 |
} @else if $vertical == topmiddle { |
1073 | 1081 |
align-self: center; |
1082 |
+ padding-bottom: 1.5rem; |
|
1074 | 1083 |
@include transform(translateY(-100%)); |
1075 | 1084 |
} @else if $vertical == bottommiddle { |
1076 | 1085 |
align-self: center; |
1086 |
+ padding-top: 1.5rem; |
|
1077 | 1087 |
@include transform(translateY(100%)); |
1088 |
+ } @else if $vertical == topbottom { |
|
1089 |
+ align-self: flex-end; |
|
1090 |
+ padding-bottom: 1.5rem; |
|
1091 |
+ @include transform(translateY(-100%)); |
|
1078 | 1092 |
} @else if $vertical == bottom { |
1079 | 1093 |
align-self: flex-end; |
1080 | 1094 |
} |
1095 |
+ |
|
1096 |
+ @if $horizontal == centerright { |
|
1097 |
+ @if $vertical == topmiddle { |
|
1098 |
+ @include transform(translate(100%,-100%)); |
|
1099 |
+ } @elseif $vertical == bottommiddle { |
|
1100 |
+ @include transform(translate(100%,100%)); |
|
1101 |
+ } @else { |
|
1102 |
+ @include transform(translateX(100%)); |
|
1103 |
+ } |
|
1104 |
+ } @else if $horizontal == centerleft { |
|
1105 |
+ @if $vertical == topmiddle or $vertical == topbottom { |
|
1106 |
+ @include transform(translate(-100%,-100%)); |
|
1107 |
+ } @elseif $vertical == bottommiddle or $vertical == bottomtop { |
|
1108 |
+ @include transform(translate(-100%,100%)); |
|
1109 |
+ } @else { |
|
1110 |
+ @include transform(translateX(-100%)); |
|
1111 |
+ } |
|
1112 |
+ } |
|
1113 |
+ } |
|
1114 |
+ |
|
1115 |
+ @include for-tablet { |
|
1116 |
+ > * { |
|
1117 |
+ @if $horizontal == centerright { |
|
1118 |
+ @if $vertical == topmiddle { |
|
1119 |
+ @include transform(translate(30vw,-100%)); |
|
1120 |
+ } @elseif $vertical == bottommiddle { |
|
1121 |
+ @include transform(translate(30vw,100%)); |
|
1122 |
+ } @else { |
|
1123 |
+ @include transform(translateX(30vw)); |
|
1124 |
+ } |
|
1125 |
+ margin-left: -25vw; |
|
1126 |
+ } @else if $horizontal == centerleft { |
|
1127 |
+ @if $vertical == topmiddle or $vertical == topbottom { |
|
1128 |
+ @include transform(translate(-30vw,-100%)); |
|
1129 |
+ } @elseif $vertical == bottommiddle or $vertical == bottomtop { |
|
1130 |
+ @include transform(translate(-30vw,100%)); |
|
1131 |
+ } @else { |
|
1132 |
+ @include transform(translateX(-30vw)); |
|
1133 |
+ } |
|
1134 |
+ margin-right: -25vw; |
|
1135 |
+ } |
|
1136 |
+ } |
|
1137 |
+ } |
|
1138 |
+ |
|
1139 |
+ @include for-max-size(1230px) { |
|
1140 |
+ -webkit-box-sizing: border-box; |
|
1141 |
+ -moz-box-sizing: border-box; |
|
1142 |
+ box-sizing: border-box; |
|
1143 |
+ padding-left: 15px; |
|
1144 |
+ padding-right: 15px; |
|
1145 |
+ } |
|
1146 |
+ |
|
1147 |
+ @include for-max-size(399px) |
|
1148 |
+ { |
|
1149 |
+ justify-content: center; |
|
1150 |
+ > * { |
|
1151 |
+ @if $vertical == bottomtop { |
|
1152 |
+ @include transform(translateY(100%)); |
|
1153 |
+ } @else if $vertical == topmiddle { |
|
1154 |
+ @include transform(translateY(-100%)); |
|
1155 |
+ } @else if $vertical == bottommiddle { |
|
1156 |
+ @include transform(translateY(100%)); |
|
1157 |
+ } @else if $vertical == topbottom { |
|
1158 |
+ @include transform(translateY(-100%)); |
|
1159 |
+ } @else { |
|
1160 |
+ @include transform(none); |
|
1161 |
+ } |
|
1162 |
+ margin: 0; |
|
1163 |
+ } |
|
1081 | 1164 |
} |
1082 | 1165 |
} |
1083 | 1166 |
|
... | ... |
@@ -966,10 +966,14 @@ html { |
966 | 966 |
} |
967 | 967 |
} |
968 | 968 |
|
969 |
+ && .-emphasised-block.-emphasised-block { |
|
970 |
+ font-size: inherit; |
|
971 |
+ } |
|
972 |
+ |
|
969 | 973 |
.hero-text, |
970 | 974 |
.slide-text { |
971 |
- margin-top: 150px; |
|
972 |
- margin-bottom: 150px; |
|
975 |
+ margin-top: 1.5vw; |
|
976 |
+ margin-bottom: 1.5vw; |
|
973 | 977 |
} |
974 | 978 |
|
975 | 979 |
&.-text-pos-left-top { |
... | ... |
@@ -978,6 +982,12 @@ html { |
978 | 982 |
@include text-position-wrapper(left,top); |
979 | 983 |
} |
980 | 984 |
} |
985 |
+ &.-text-pos-left-bottomtop { |
|
986 |
+ .hero-content, |
|
987 |
+ .slide-content{ |
|
988 |
+ @include text-position-wrapper(left,bottomtop); |
|
989 |
+ } |
|
990 |
+ } |
|
981 | 991 |
&.-text-pos-left-topmiddle { |
982 | 992 |
.hero-content, |
983 | 993 |
.slide-content { |
... | ... |
@@ -996,6 +1006,12 @@ html { |
996 | 1006 |
@include text-position-wrapper(left,bottommiddle); |
997 | 1007 |
} |
998 | 1008 |
} |
1009 |
+ &.-text-pos-left-topbottom { |
|
1010 |
+ .hero-content, |
|
1011 |
+ .slide-content { |
|
1012 |
+ @include text-position-wrapper(left,topbottom); |
|
1013 |
+ } |
|
1014 |
+ } |
|
999 | 1015 |
&.-text-pos-left-bottom { |
1000 | 1016 |
.hero-content, |
1001 | 1017 |
.slide-content { |
... | ... |
@@ -1003,12 +1019,104 @@ html { |
1003 | 1019 |
} |
1004 | 1020 |
} |
1005 | 1021 |
|
1022 |
+ &.-text-pos-centerleft-top { |
|
1023 |
+ .hero-content, |
|
1024 |
+ .slide-content { |
|
1025 |
+ @include text-position-wrapper(centerleft,top); |
|
1026 |
+ } |
|
1027 |
+ } |
|
1028 |
+ &.-text-pos-centerleft-bottomtop { |
|
1029 |
+ .hero-content, |
|
1030 |
+ .slide-content { |
|
1031 |
+ @include text-position-wrapper(centerleft,bottomtop); |
|
1032 |
+ } |
|
1033 |
+ } |
|
1034 |
+ &.-text-pos-centerleft-topmiddle { |
|
1035 |
+ .hero-content, |
|
1036 |
+ .slide-content { |
|
1037 |
+ @include text-position-wrapper(centerleft,topmiddle); |
|
1038 |
+ } |
|
1039 |
+ } |
|
1040 |
+ &.-text-pos-centerleft-middle { |
|
1041 |
+ .hero-content, |
|
1042 |
+ .slide-content { |
|
1043 |
+ @include text-position-wrapper(centerleft,middle); |
|
1044 |
+ } |
|
1045 |
+ } |
|
1046 |
+ &.-text-pos-centerleft-bottommiddle { |
|
1047 |
+ .hero-content, |
|
1048 |
+ .slide-content { |
|
1049 |
+ @include text-position-wrapper(centerleft,bottommiddle); |
|
1050 |
+ } |
|
1051 |
+ } |
|
1052 |
+ &.-text-pos-centerleft-topbottom { |
|
1053 |
+ .hero-content, |
|
1054 |
+ .slide-content { |
|
1055 |
+ @include text-position-wrapper(centerleft,topbottom); |
|
1056 |
+ } |
|
1057 |
+ } |
|
1058 |
+ &.-text-pos-centerleft-bottom { |
|
1059 |
+ .hero-content, |
|
1060 |
+ .slide-content { |
|
1061 |
+ @include text-position-wrapper(centerleft,bottom); |
|
1062 |
+ } |
|
1063 |
+ } |
|
1064 |
+ |
|
1065 |
+ &.-text-pos-centerright-top { |
|
1066 |
+ .hero-content, |
|
1067 |
+ .slide-content { |
|
1068 |
+ @include text-position-wrapper(centerright,top); |
|
1069 |
+ } |
|
1070 |
+ } |
|
1071 |
+ &.-text-pos-centerright-bottomtop { |
|
1072 |
+ .hero-content, |
|
1073 |
+ .slide-content { |
|
1074 |
+ @include text-position-wrapper(centerright,bottomtop); |
|
1075 |
+ } |
|
1076 |
+ } |
|
1077 |
+ &.-text-pos-centerright-topmiddle { |
|
1078 |
+ .hero-content, |
|
1079 |
+ .slide-content { |
|
1080 |
+ @include text-position-wrapper(centerright,topmiddle); |
|
1081 |
+ } |
|
1082 |
+ } |
|
1083 |
+ &.-text-pos-centerright-middle { |
|
1084 |
+ .hero-content, |
|
1085 |
+ .slide-content { |
|
1086 |
+ @include text-position-wrapper(centerright,middle); |
|
1087 |
+ } |
|
1088 |
+ } |
|
1089 |
+ &.-text-pos-centerright-bottommiddle { |
|
1090 |
+ .hero-content, |
|
1091 |
+ .slide-content { |
|
1092 |
+ @include text-position-wrapper(centerright,bottommiddle); |
|
1093 |
+ } |
|
1094 |
+ } |
|
1095 |
+ &.-text-pos-centerright-topbottom { |
|
1096 |
+ .hero-content, |
|
1097 |
+ .slide-content { |
|
1098 |
+ @include text-position-wrapper(centerright,topbottom); |
|
1099 |
+ } |
|
1100 |
+ } |
|
1101 |
+ &.-text-pos-centerright-bottom { |
|
1102 |
+ .hero-content, |
|
1103 |
+ .slide-content { |
|
1104 |
+ @include text-position-wrapper(centerright,bottom); |
|
1105 |
+ } |
|
1106 |
+ } |
|
1107 |
+ |
|
1006 | 1108 |
&.-text-pos-center-top { |
1007 | 1109 |
.hero-content, |
1008 | 1110 |
.slide-content { |
1009 | 1111 |
@include text-position-wrapper(center,top); |
1010 | 1112 |
} |
1011 | 1113 |
} |
1114 |
+ &.-text-pos-center-bottomtop { |
|
1115 |
+ .hero-content, |
|
1116 |
+ .slide-content { |
|
1117 |
+ @include text-position-wrapper(center,bottomtop); |
|
1118 |
+ } |
|
1119 |
+ } |
|
1012 | 1120 |
&.-text-pos-center-topmiddle { |
1013 | 1121 |
.hero-content, |
1014 | 1122 |
.slide-content { |
... | ... |
@@ -1027,6 +1135,12 @@ html { |
1027 | 1135 |
@include text-position-wrapper(center,bottommiddle); |
1028 | 1136 |
} |
1029 | 1137 |
} |
1138 |
+ &.-text-pos-center-topbottom { |
|
1139 |
+ .hero-content, |
|
1140 |
+ .slide-content { |
|
1141 |
+ @include text-position-wrapper(center,topbottom); |
|
1142 |
+ } |
|
1143 |
+ } |
|
1030 | 1144 |
&.-text-pos-center-bottom { |
1031 | 1145 |
.hero-content, |
1032 | 1146 |
.slide-content { |
... | ... |
@@ -1040,6 +1154,12 @@ html { |
1040 | 1154 |
@include text-position-wrapper(right,top); |
1041 | 1155 |
} |
1042 | 1156 |
} |
1157 |
+ &.-text-pos-right-bottomtop { |
|
1158 |
+ .hero-content, |
|
1159 |
+ .slide-content { |
|
1160 |
+ @include text-position-wrapper(right,bottomtop); |
|
1161 |
+ } |
|
1162 |
+ } |
|
1043 | 1163 |
&.-text-pos-right-topmiddle { |
1044 | 1164 |
.hero-content, |
1045 | 1165 |
.slide-content { |
... | ... |
@@ -1058,6 +1178,12 @@ html { |
1058 | 1178 |
@include text-position-wrapper(right,bottommiddle); |
1059 | 1179 |
} |
1060 | 1180 |
} |
1181 |
+ &.-text-pos-right-topbottom { |
|
1182 |
+ .hero-content, |
|
1183 |
+ .slide-content { |
|
1184 |
+ @include text-position-wrapper(right,topbottom); |
|
1185 |
+ } |
|
1186 |
+ } |
|
1061 | 1187 |
&.-text-pos-right-bottom { |
1062 | 1188 |
.hero-content, |
1063 | 1189 |
.slide-content { |
... | ... |
@@ -1193,10 +1319,17 @@ html { |
1193 | 1319 |
align-items: center; |
1194 | 1320 |
justify-content: center; |
1195 | 1321 |
|
1322 |
+ .hero-wrapper &, |
|
1323 |
+ .swiper-slide & { |
|
1324 |
+ &:not([class*="color-"]) { |
|
1325 |
+ color: $color-text-invert; |
|
1326 |
+ } |
|
1327 |
+ } |
|
1328 |
+ |
|
1196 | 1329 |
.positional-text-content { |
1197 | 1330 |
z-index: 1; |
1198 |
- margin-top: 150px; |
|
1199 |
- margin-bottom: 150px; |
|
1331 |
+ margin-top: 1.5vw; |
|
1332 |
+ margin-bottom: 1.5vw; |
|
1200 | 1333 |
display: inline-block; |
1201 | 1334 |
max-width: 100%; |
1202 | 1335 |
text-align: left; |
... | ... |
@@ -1207,7 +1340,10 @@ html { |
1207 | 1340 |
letter-spacing: 0.15em; |
1208 | 1341 |
font-weight: 700; |
1209 | 1342 |
text-transform: uppercase; |
1210 |
- color: $color-text-invert; |
|
1343 |
+ |
|
1344 |
+ a { |
|
1345 |
+ color: inherit; |
|
1346 |
+ } |
|
1211 | 1347 |
|
1212 | 1348 |
&.-fs-medium { |
1213 | 1349 |
font-size: font-size(32px); |
... | ... |
@@ -1223,6 +1359,9 @@ html { |
1223 | 1359 |
&.-text-pos-left-top { |
1224 | 1360 |
@include text-position-wrapper(left,top); |
1225 | 1361 |
} |
1362 |
+ &.-text-pos-left-bottomtop { |
|
1363 |
+ @include text-position-wrapper(left,bottomtop); |
|
1364 |
+ } |
|
1226 | 1365 |
&.-text-pos-left-topmiddle { |
1227 | 1366 |
@include text-position-wrapper(left,topmiddle); |
1228 | 1367 |
} |
... | ... |
@@ -1232,13 +1371,63 @@ html { |
1232 | 1371 |
&.-text-pos-left-bottommiddle { |
1233 | 1372 |
@include text-position-wrapper(left,bottommiddle); |
1234 | 1373 |
} |
1374 |
+ &.-text-pos-left-topbottom { |
|
1375 |
+ @include text-position-wrapper(left,topbottom); |
|
1376 |
+ } |
|
1235 | 1377 |
&.-text-pos-left-bottom { |
1236 | 1378 |
@include text-position-wrapper(left,bottom); |
1237 | 1379 |
} |
1238 | 1380 |
|
1381 |
+ &.-text-pos-centerright-top { |
|
1382 |
+ @include text-position-wrapper(centerright,top); |
|
1383 |
+ } |
|
1384 |
+ &.-text-pos-centerright-bottomtop { |
|
1385 |
+ @include text-position-wrapper(centerright,bottomtop); |
|
1386 |
+ } |
|
1387 |
+ &.-text-pos-centerright-topmiddle { |
|
1388 |
+ @include text-position-wrapper(centerright,topmiddle); |
|
1389 |
+ } |
|
1390 |
+ &.-text-pos-centerright-middle { |
|
1391 |
+ @include text-position-wrapper(centerright,middle); |
|
1392 |
+ } |
|
1393 |
+ &.-text-pos-centerright-bottommiddle { |
|
1394 |
+ @include text-position-wrapper(centerright,bottommiddle); |
|
1395 |
+ } |
|
1396 |
+ &.-text-pos-centerright-topbottom { |
|
1397 |
+ @include text-position-wrapper(centerright,topbottom); |
|
1398 |
+ } |
|
1399 |
+ &.-text-pos-centerright-bottom { |
|
1400 |
+ @include text-position-wrapper(centerright,bottom); |
|
1401 |
+ } |
|
1402 |
+ |
|
1403 |
+ &.-text-pos-centerleft-top { |
|
1404 |
+ @include text-position-wrapper(centerleft,top); |
|
1405 |
+ } |
|
1406 |
+ &.-text-pos-centerleft-bottomtop { |
|
1407 |
+ @include text-position-wrapper(centerleft,bottomtop); |
|
1408 |
+ } |
|
1409 |
+ &.-text-pos-centerleft-topmiddle { |
|
1410 |
+ @include text-position-wrapper(centerleft,topmiddle); |
|
1411 |
+ } |
|
1412 |
+ &.-text-pos-centerleft-middle { |
|
1413 |
+ @include text-position-wrapper(centerleft,middle); |
|
1414 |
+ } |
|
1415 |
+ &.-text-pos-centerleft-bottommiddle { |
|
1416 |
+ @include text-position-wrapper(centerleft,bottommiddle); |
|
1417 |
+ } |
|
1418 |
+ &.-text-pos-centerleft-topbottom { |
|
1419 |
+ @include text-position-wrapper(centerleft,topbottom); |
|
1420 |
+ } |
|
1421 |
+ &.-text-pos-centerleft-bottom { |
|
1422 |
+ @include text-position-wrapper(centerleft,bottom); |
|
1423 |
+ } |
|
1424 |
+ |
|
1239 | 1425 |
&.-text-pos-center-top { |
1240 | 1426 |
@include text-position-wrapper(center,top); |
1241 | 1427 |
} |
1428 |
+ &.-text-pos-center-bottomtop { |
|
1429 |
+ @include text-position-wrapper(center,bottomtop); |
|
1430 |
+ } |
|
1242 | 1431 |
&.-text-pos-center-topmiddle { |
1243 | 1432 |
@include text-position-wrapper(center,topmiddle); |
1244 | 1433 |
} |
... | ... |
@@ -1248,6 +1437,9 @@ html { |
1248 | 1437 |
&.-text-pos-center-bottommiddle { |
1249 | 1438 |
@include text-position-wrapper(center,bottommiddle); |
1250 | 1439 |
} |
1440 |
+ &.-text-pos-center-topbottom { |
|
1441 |
+ @include text-position-wrapper(center,topbottom); |
|
1442 |
+ } |
|
1251 | 1443 |
&.-text-pos-center-bottom { |
1252 | 1444 |
@include text-position-wrapper(center,bottom); |
1253 | 1445 |
} |
... | ... |
@@ -1255,6 +1447,9 @@ html { |
1255 | 1447 |
&.-text-pos-right-top { |
1256 | 1448 |
@include text-position-wrapper(right,top); |
1257 | 1449 |
} |
1450 |
+ &.-text-pos-right-bottomtop { |
|
1451 |
+ @include text-position-wrapper(right,bottomtop); |
|
1452 |
+ } |
|
1258 | 1453 |
&.-text-pos-right-topmiddle { |
1259 | 1454 |
@include text-position-wrapper(right,topmiddle); |
1260 | 1455 |
} |
... | ... |
@@ -1264,7 +1459,17 @@ html { |
1264 | 1459 |
&.-text-pos-right-bottommiddle { |
1265 | 1460 |
@include text-position-wrapper(right,bottommiddle); |
1266 | 1461 |
} |
1462 |
+ &.-text-pos-right-topbottom { |
|
1463 |
+ @include text-position-wrapper(right,topbottom); |
|
1464 |
+ } |
|
1267 | 1465 |
&.-text-pos-right-bottom { |
1268 | 1466 |
@include text-position-wrapper(right,bottom); |
1269 | 1467 |
} |
1270 | 1468 |
} |
1469 |
+ |
|
1470 |
+svg { |
|
1471 |
+ &.kuckkuck-stoerer { |
|
1472 |
+ width: 150px; |
|
1473 |
+ height: auto; |
|
1474 |
+ } |
|
1475 |
+} |
1271 | 1476 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,73 @@ |
1 |
+<?xml version="1.0" encoding="UTF-8"?> |
|
2 |
+<svg id="Ebene_1" data-name="Ebene 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 142.64 143.39"> |
|
3 |
+ <defs> |
|
4 |
+ <style> |
|
5 |
+ .cls-1 { |
|
6 |
+ fill: #fff; |
|
7 |
+ } |
|
8 |
+ |
|
9 |
+ .cls-2 { |
|
10 |
+ clip-path: url(#clippath); |
|
11 |
+ } |
|
12 |
+ |
|
13 |
+ .cls-3 { |
|
14 |
+ fill: #aaa194; |
|
15 |
+ } |
|
16 |
+ |
|
17 |
+ .cls-4 { |
|
18 |
+ fill: none; |
|
19 |
+ } |
|
20 |
+ </style> |
|
21 |
+ <clipPath id="clippath"> |
|
22 |
+ <rect class="cls-4" width="142.64" height="143.39"/> |
|
23 |
+ </clipPath> |
|
24 |
+ </defs> |
|
25 |
+ <rect class="cls-3" x="49.91" y="48.48" width="34.02" height="129.6" transform="translate(-57.8 155.18) rotate(-78)"/> |
|
26 |
+ <g class="cls-2"> |
|
27 |
+ <path class="cls-1" d="m109.76,124.97l2.11.45.62-2.93,1.35-.91,2.1,4.71,2.53.54-2.91-6.39,4.77-3.24-2.55-.54-4.78,3.36.89-4.19-2.11-.45-2.04,9.59Zm-7.29-1.38c1.85.39,3.08-.03,4.29-.88l-1.05-1.64c-.9.52-1.66.82-2.76.59-1.64-.35-2.49-1.96-2.14-3.6v-.03c.35-1.64,1.8-2.74,3.42-2.39.96.2,1.62.77,2.22,1.6l1.67-1.26c-.7-1.07-1.66-1.9-3.47-2.28-2.94-.63-5.47,1.17-6.05,3.89v.03c-.59,2.75,1.04,5.38,3.86,5.98m-12.49-2.67c2.57.55,4.51-.53,5.12-3.43l1.15-5.41-2.11-.45-1.17,5.49c-.32,1.52-1.27,2.14-2.56,1.86-1.29-.27-1.9-1.25-1.57-2.81l1.15-5.42-2.11-.45-1.16,5.48c-.6,2.82.67,4.59,3.24,5.14m-15.4-3.43l2.11.45.62-2.93,1.35-.92,2.1,4.71,2.53.54-2.91-6.39,4.77-3.24-2.55-.54-4.78,3.36.89-4.19-2.11-.45-2.04,9.59Zm-11.64-2.47l2.11.45.62-2.93,1.35-.91,2.11,4.71,2.53.54-2.91-6.39,4.77-3.24-2.55-.54-4.78,3.36.89-4.19-2.11-.45-2.04,9.59Zm-7.29-1.38c1.85.39,3.08-.03,4.29-.88l-1.05-1.64c-.9.52-1.66.82-2.76.59-1.64-.35-2.49-1.96-2.14-3.6v-.03c.36-1.64,1.81-2.74,3.42-2.39.96.2,1.62.78,2.22,1.6l1.67-1.26c-.7-1.07-1.66-1.9-3.47-2.28-2.94-.63-5.47,1.17-6.05,3.89v.03c-.59,2.75,1.04,5.38,3.86,5.97m-12.49-2.67c2.58.55,4.51-.53,5.12-3.43l1.15-5.41-2.11-.45-1.17,5.49c-.32,1.52-1.27,2.14-2.56,1.86-1.29-.27-1.9-1.25-1.56-2.81l1.15-5.42-2.11-.45-1.16,5.48c-.6,2.82.67,4.59,3.24,5.14m-15.4-3.43l2.11.45.62-2.93,1.35-.92,2.1,4.71,2.53.54-2.91-6.39,4.77-3.24-2.55-.54-4.78,3.36.89-4.19-2.11-.45-2.04,9.59Z"/> |
|
28 |
+ <path class="cls-1" d="m21.89,103.73c.26-.27.35-.74.23-1.09l-3.29-8.41c-.12-.35-.59-.57-.9-.43l-2.21.5c-.34.13-.53.62-.4.97l2.74,7.08-5.33,5.28c-.3.3-.3.83-.1,1.03l1.84,1.41c.26.26.75.2,1-.03l6.42-6.31Z"/> |
|
29 |
+ <path class="cls-1" d="m76.11,82.22c-.03-.08-.06-.16-.08-.24-.19.08-.38.17-.56.25.02.06.05.11.07.16.19-.06.38-.12.57-.18m36.33,6.87c0-.09,0-.18,0-.27-.19,0-.39.02-.58.03v.18c.19.02.39.04.58.06M54,25.99c.01-.11.02-.22.03-.33-.23-.01-.45-.03-.67-.04-.01.08-.02.16-.03.24.22.04.45.09.67.13m-21.38,37.54c.29-.11.58-.22.86-.34-.36-.13-.73-.31-.86.34m7.19,5.71c-.63.06-.85.2-.76.69.2-.18.39-.36.76-.69m32.37,11.85c-.07-.05-.13-.1-.2-.15-.14.2-.29.4-.5.69.65.08.67-.23.7-.54m-.58-13.73q-.84.4-.64,1.05c.18-.29.35-.57.64-1.05m-14.7-35.61q.65.16.71-.61c-.3.26-.51.43-.71.61m28.48,57.36c.42-.11.68-.18.94-.24-.04-.12-.06-.3-.14-.35-.35-.21-.59-.06-.8.59m-49.97-27.07c-.04-.09-.08-.18-.12-.27-.27.1-.55.2-.94.34.6.51.84.26,1.06-.08m13.9,16.75c-.56-.12-.83.07-1,.57.58.28.87.11,1-.57m15.66-51.17q-1.07-.05-1.43.84c.44-.25.85-.5,1.43-.84m-24.27,45.75c-.57,0-.98,0-1.09.51-.02.1.22.26.41.47.24-.35.42-.61.67-.98m-3.94-5.65c-.23.21-.44.37-.59.57-.05.07,0,.28.07.35.08.07.3.11.36.06.25-.21.59-.41.15-.97m38.74,15.63c-.58-.06-1.01-.1-1.55-.15q.79.74,1.55.15m-17.2-50.93q.64.43,1.14-.29c-.46-.39-.79-.21-1.14.29m-23.4,34.54c-.11.44-.03.76.39.83.12.02.43-.23.41-.32-.05-.38-.3-.6-.81-.51m11.07,11.07c.53.43.89.89,1.69.69-.44-.64-.97-.71-1.69-.69m-.89-14.79c-.56-.1-1-.18-1.6-.29.74.86.85.89,1.6.29m13.42-34.57c.74.18,1.17.15,1.5-.39-.57-.39-.93-.09-1.5.39m11.4,52.39c1.07.51,1.12.49,1.17-.24-.4.08-.79.16-1.17.24m6.1,3.1c.88.02.98-.15.82-1.22-.3.44-.52.77-.82,1.22m-22.42-56.86c-.79-.26-1.02.14-1.3.63.82.42.91-.22,1.3-.63m-11.89,48.26c.57.27.71.16,1.27-1.04-.63.16-.98.56-1.27,1.04m-3.28-6.94c-.66-.03-.96.11-.95.47,0,.11.12.28.21.3.47.11.72-.14.8-.59,0-.03-.02-.06-.06-.18m12.5,10.51c-.67-.1-.98.15-1.14.68q.72.37,1.14-.68m-4.33-15.75c-.65.02-1.09.08-1.37.57.68.45.77.42,1.37-.57m13.18-31.88c.71-.01,1.2-.07,1.51-.59-.61-.31-.69-.29-1.51.59m14.11,48.86c-.75.41-1.05.9-1.14,1.74.76-.41.89-1.01,1.14-1.74m-11.39-48.54c-.56-.26-.92-.17-1.19.31q.84.58,1.19-.31m-25.31,38.24c.38.97.74,1.08,1.25.45-.4-.15-.8-.29-1.25-.45m41.63,13.03c-.77.26-.94.47-.93,1.21.82-.21.89-.29.93-1.21m-10.19-38.8c-.79-.15-1.17.23-1.54.72.81.3.85.28,1.54-.72m-32.37,19.18c.05.11.11.23.16.34.8-.19,1.44-.71,2.13-1.11-.03-.06-.06-.12-.09-.19-.73.32-1.47.64-2.2.96m25.39-34.48q-.76-.42-1.37.19.6.61,1.37-.19m-23.07,42.53c.69.6.81.57,1.37-.41-.61-.29-.97.1-1.37.41m3.61,2.3c-1.21.13-1.65.68-1.18,1.42.36-.44.7-.85,1.18-1.42m34.55-6.62c-.77-.06-1.41.15-1.96.82.97.29,1.38-.48,1.96-.82m-3.28-20.56c-1.02.06-1.36.31-1.51,1.1.76-.04,1.22-.4,1.51-1.1m-22.2,33.49c.02.12.04.23.06.35.25.03.57.18.72.07.34-.25.54-.63.24-1.24-.38.3-.7.56-1.02.82m-1.86-59.31c-.57-.3-1.02-.29-1.51-.03.57,1,.74,1.01,1.51.03m33,67.49c1.35.74,1.49.76,2.18.25-.66-.52-1.35-.26-2.18-.25m-.29-3.08c-.09-.05-.18-.09-.27-.14-.39.66-.77,1.32-1.16,2,.41.34.65.3.8-.1.22-.58.43-1.17.64-1.75m-21.71-46.22c-.05.06-.1.11-.15.17.35.43.68.87,1.07,1.26.09.1.36.02.55.02-.03-.18,0-.45-.11-.54-.43-.33-.9-.61-1.35-.91m3.63-4.48q-.92-.74-1.66-.28c.7.79.82.81,1.66.28m12.77,14.67c.4.83.87.75,1.75-.62-.76-.18-1.2.37-1.75.62m-17.53-24.52c.14-.39.25-.7.37-1-.61-.38-1.1-.35-1.61.21.42.27.79.5,1.25.79m-19.32,45.49c1,.62,1.21.53,1.57-.61-.71-.37-1.05.18-1.57.61m-7.08-6.02c.6.87,1.01.79,1.83-.28-.83-.18-.91-.17-1.83.28m28.76-30.84c-.85-.73-1.12-.73-1.71.04q1.05.54,1.71-.04m-7.12-6.69q1.01.86,1.67.04c-.75-.76-.81-.76-1.67-.04m-3.47-1.52q1.2.38,1.67-.36c-.71-.53-1.13-.46-1.67.36m21.26,21.05c-1.01-.35-1.52-.09-1.83.87.84.23,1.23-.4,1.83-.87m6.47,14.69c-.01-.09-.03-.17-.04-.26-.32.04-.66.16-.94.08-.28-.07-.5-.36-.81-.6-.16.16-.34.33-.58.57.86.38,1.57.89,2.37.21m-8.78,7.05c.09-.41.22-.76.21-1.11,0-.14-.31-.37-.48-.38-.17,0-.46.19-.5.36-.13.48.02.88.77,1.13m-15.33-38.92c.25-.38.44-.65.63-.93-.89-.43-1.09-.36-1.65.56.32.12.63.23,1.03.37m22.14,56.16c.31.73.75,1.07,1.54,1.03.09-.31.18-.6.29-1.01-.66,0-1.21-.01-1.84-.02m-5.73-22.63c-.51-.34-.86-.57-1.2-.8-.08.06-.16.11-.24.17.13.5.25.99.44,1.71.4-.44.64-.69,1-1.08m-12.63-34.94c-.89-.61-1.1-.61-1.72,0,.65.84,1.06.84,1.72,0m9.72,65.03c-.3,1.43-.3,1.5.11,2.15.18-.71.36-1.39.56-2.14-.3,0-.49,0-.67-.01m20.87-2.37q-.92-.07-1.39.97c.28.16.57.32.86.49.19-.51.36-.98.53-1.46m-25.66-62.31c-.82-.23-1.47-.45-2.13-.58-.19-.04-.43.18-.76.33.99.65,1.82.74,2.9.26m-27.07,36.9c-.95-.45-1.54-.27-2.17.57q.59.24,2.17-.57m22.77-39.23c-.86-.8-1.47.08-2.33.28,1.05,1.01,1.6-.19,2.33-.28m-2.64,5.2q-.94-.72-1.68-.11c.06.59.54.73.97.71.24-.01.46-.38.71-.6m16.33,22.44c.63.91.94.88,1.59-.17-.85-.58-.94-.57-1.59.17m-11.02-22.99c.47.19,1.25-.05,2.34-.67q-1.07-.54-2.34.67m2.62,17.87c.1.9.56,1.43,1.36,1.55.14.02.32-.23.56-.42-.74-.43-1.33-.78-1.93-1.13m10.82-.87c-.91-.34-1.25-.21-1.95.67q.62.54,1.95-.67m-1.64,18.96c-1.16-.52-1.33-.48-1.75.4.93.62,1.15.57,1.75-.4m-.29-.93c.65.06,1.03-.38,1.5-.95-.47-.26-.87-.48-1.43-.78-.03.68-.05,1.15-.08,1.73m-13.28-39.93c.9.17,1.12.05,1.53-.8-.29-.5-.66-.37-1.1-.22-.52.18-.44.56-.43,1.02m5.37,17.17c-.73-.79-.99-.75-1.77.18.75.61.83.6,1.77-.18m-4.71-16.21c-.53-.58-1.02-.06-1.52.05-.4.08-.5.33-.42.7,1.05.23,1.28.14,1.94-.74m-7.67-2.57c.87.72,1.13.66,2.04-.37-.67-.55-.75-.54-2.04.37m15.85,27.72c.75.9,1.09.85,1.72-.2-.33-.18-.66-.35-1.03-.55-.24.26-.45.48-.7.75m5.83,2.89c1.05.7,1.14.68,1.87-.3-.88-.6-1.11-.57-1.87.3m-1.21,14.9c-.1-.55,0-1.08-.62-1.24-.51-.13-.86.09-1.02.63.42.44.88.67,1.64.61m2.63.34c-.94-.78-1.2-.76-1.85.11.94.77,1.25.76,1.85-.11m-.52-20.63c.61-.26,1.26-.37,1.68-.94-1.04-.55-1.18-.53-2.19.31.16.2.33.41.51.63m-12.72-6.75c.49-.23.89-.44.82-.95-.03-.18-.31-.41-.51-.45-.43-.1-.92-.16-1.13.5.26.28.51.56.83.9m13.93,23.11c-1.23-.67-1.43-.63-2,.31,1.17.55,1.21.55,2-.31m-9.5-21.67c-.85-.89-1.22-.86-2,.2.83.51,1.2.47,2-.2m3.34,1.67c-1.18-.59-1.33-.54-1.87.54.81.67.89.65,1.87-.54m-2.16,4.92c-.36-.18-.73-.44-1.14-.56-.41-.12-.78.28-.57.59.23.35.62.68,1,.8.46.15.64-.27.71-.83m10.87,36.68c.24-.02.56.03.61-.07.28-.53.51-1.1.77-1.71-1.17-.02-1.46.38-1.38,1.78m-8.65-34.27c1.05.71,1.28.66,1.85-.34-.94-.81-1.32-.74-1.85.34m4.99,27.22c-.06-.06-.13-.13-.19-.19-.22.12-.51.19-.64.37-.38.54-.71,1.12-1.03,1.7-.06.11.03.31.05.47.19-.03.48,0,.54-.12.45-.73.85-1.49,1.26-2.24m13.39,9.7c.46-.15.85-.28,1.22-.41.04-.26.09-.46.11-.67.02-.19.01-.38.02-.57-1.36-.01-1.78.38-1.35,1.64m-13.34-22.82c-1.5-.63-1.78-.54-2.42.64,1.01.69,1.58-.15,2.42-.64m15.28,23.62c-1.03-.15-1.21.73-1.73,1.11.15.54.36.91,1.03.79.21-.58.43-1.19.69-1.9m-19.23-24.68c-.72-.48-1.37-.92-2.04-1.37-.15.71.1,1.32.62,1.64.52.32.8.27,1.42-.26m-16.61-43.36c.48.96,1.29,1.06,2.01,1.24.31.08.59-.17.6-.62-.76-.4-1.55-.72-2.61-.62m-7,.31c.47.97,1.3,1.33,2.03,1.76.37.22.64-.09.72-.53-.77-.43-1.53-.85-2.29-1.26-.07-.04-.19.01-.46.04m9.61,10.63c-.46-.62-.91-.48-1.41-.18-.91.54-.93.73-.06,1.4.04.03.13,0,.25,0,.39-.39.81-.79,1.23-1.21m-14.94,42.69c.42.48.81.8,1.22.39.4-.39.85-.84.74-1.64-.89.04-1.38.62-1.96,1.26m33.86-20.66c.67.25,1.21.49,1.77.63.22.05.56-.08.72-.25.11-.11.07-.58-.04-.64-.19-.11-.52-.1-.73,0-.44.19-.74.22-.87-.33-.01-.04-.1-.06-.2-.13-.16.18-.34.38-.64.72m-27.44-33.52c.01.6.46.79.84.78.7-.02.98-.7,1.45-1.12-.97-.89-1.55.11-2.29.34m6.23,7.45c1.2.96,1.34.95,2.16-.1-.87-.92-1.34-.9-2.16.1m-1.83-6.95c-.81-.73-1.34-.57-2.4.67.26.4.6.62,1.05.32.46-.3.89-.65,1.35-.99m3.89,7.96c.99,1.03,1.6.75,2.56-.19-.88-.6-1.7-.51-2.56.19m14.76,34.51c.13-.56.25-1.07.37-1.6-1.04-.22-1.12-.18-1.87.88.3.56.82.68,1.51.72m-1.81-3.72c.34.4.61.64,1.02.32.55-.44,1.09-.91,1.64-1.36-.67-.54-.7-.59-1.07-.31-.55.41-1.04.88-1.59,1.36m-23.11,12.83c-.76-.28-1.46-.55-2.18-.79-.67-.23-.77-.16-1.06.67.61.63,1.04-.44,1.67-.15-.04.24-.08.48-.12.71q.94.39,1.68-.45m7.97,6.11c-.49-.1-.92-.21-1.36-.27-.39-.05-.93.41-.94.79-.03.5.35.63.73.74.37.1.67.04.89-.33.17-.3.41-.55.69-.93m28.69,9.66c-.03.07-.05.15-.08.22.85.76,1.93.93,3.05,1.14.05-.3.09-.56.16-.97-1.08-.13-2.1-.26-3.12-.39M51.73,28.36c.19,1.28.98,1.83,2.09,2.15.16-.28.3-.54.49-.88-.92-.45-1.75-.86-2.58-1.28m-14.74,35.72c.53.67.62.69,1.04.42.68-.44,1.36-.87,2.03-1.32.15-.1.27-.23.41-.35-.04-.07-.08-.13-.12-.2-1.22.21-2.24.89-3.35,1.45m12.64-38.92c-.25.42-.09.69.12.92.28.32.58.62.9.9.55.48.88.52,1.17.16.28-.36.1-.9-.43-1.24-.12-.07-.28-.18-.38-.15-.58.14-.95-.25-1.37-.59m23.65,23.9c-.4-.28-.74-.55-1.13-.27-.45.33-.89.68-1.27,1.09-.33.36-.17.78.31.84.24.03.56-.07.74-.23.46-.42.86-.91,1.34-1.43m-1.61,10.04c-.38-.27-.63-.47-.9-.64-.6-.37-1.09-.16-1.24.55-.13.63.15,1.14.5,1.61.55-.51,1.06-.99,1.63-1.52m-.63-5.25c-.42-.61-.89-.55-1.33-.27-.32.2-.59.5-.85.78-.22.25-.36.56-.06.84.29.27.64.31.94.01.44-.44.86-.9,1.3-1.37m-30.95,18.5c.49.48.9.36,1.34.02.11-.09.3-.08.53-.13,0,.35.01.61.02.84,1.11.48,1.18.46,1.97-.48-.8-.29-1.56-.57-2.32-.84-.81-.29-.81-.28-1.54.6m22.17-26.61c.34.36.62.66.95,1.02.59-.73,1.08-1.34,1.59-1.97-.45-.16-.81-.29-1.22-.44-.42.44-.83.87-1.33,1.39m-7.6-20.92c.75,1.04,1.48,1.05,2.8-.15-1.16-.87-1.6-.85-2.8.15m5.07,9.4c-1.19-.73-2.14-.26-2.45,1.18.28.2.58.4.87.61.32-.36.57-.65.82-.93.25-.28.5-.56.76-.85m-3.77-1.92c-1.05-.53-1.99-1-3.08-1.55.07.31.06.5.15.61.39.49.79.98,1.22,1.44.43.46.65.45,1.16.04.16-.13.3-.28.56-.54m6.34,10.62c-1.53.66-1.67,1.36-.59,2.42.53-.53,1.07-1.06,1.65-1.64-.36-.27-.68-.51-1.05-.79m60.89,35.41c-.04-.08-.08-.17-.12-.25-1.62.26-3.28-.06-4.94.3.08.27.13.47.19.67,1.42.15,2.79-.66,4.27-.09.18-.19.39-.41.6-.62m-48.67-15.62c-.04.22-.08.43-.16.86,1.15-.46,1.77-1.29,2.73-1.88-.49-.21-.77-.39-1.07-.43-.25-.04-.58.01-.77.16-.44.33-.81.75-1.29,1.2.24.04.36.07.55.1m-.71,34.76c1.52.42,2.18-.06,3.09-1.35-.49-.26-.96-.5-1.55-.81-.09,1.15-.95,1.54-1.54,2.16m6.84-34.5c-.64-.36-1.14-.55-1.77-.02-1.34,1.13-1.45,1.21-1.31,1.84,1.22-.18,2-.63,3.08-1.82m-5.12-13.03c-1.4-.86-2.33-.45-3.2,1.39.37.1.83.39,1.03.26.75-.47,1.43-1.07,2.17-1.65m38.86,35.71c1.38.35,2.53-.28,2.96-1.56-2.12-.3-2.19-.26-2.96,1.56m-42.46-23.79q1.04.82,1.88.14c.4-.33.8-.66,1.2-1-.98-.88-1.24-.9-2.07-.15-.33.3-.64.64-1.01,1.01m4.98,2.32c.66-.48,1.39-.99,1.99-1.78-.66-.22-1.15-.68-1.71-.23-.59.47-1.13.99-1.76,1.55.55.17.93.29,1.48.46m-8.63-9.78c.38-.49.72-.94,1.12-1.46-.9-.55-1.7-1.03-2.6-1.58-.05.29-.18.55-.11.72.34.84.72,1.67,1.59,2.32m4.8.21c-.98-.63-.98-.62-1.72.01-.35.29-.72.56-1.07.85-.17.14-.3.33-.52.59.5.21.87.42,1.26.52.19.05.51-.04.64-.19.48-.55.91-1.14,1.41-1.78m-5.06-5.33c.51.25.84.46,1.2.57.21.06.52.03.68-.09.53-.43,1.01-.92,1.6-1.45-.67-.38-1.17-.88-1.84-.39-.53.38-1.01.84-1.63,1.37m7.35,6.18c-.91-.52-1.17-.62-1.51-.33-.65.56-1.41,1.04-1.81,1.93.32.17.58.37.87.46.17.05.44,0,.57-.12.63-.61,1.22-1.25,1.89-1.94m1.19,4.32c-1.87-.79-3.65-1.54-5.43-2.28,1.2,1.16,2.58,2.02,4.04,2.77.61.31.82.21,1.39-.49m-10.47-11.43c1.02.9,1.8.33,3.18-1.1-.38-.21-.74-.43-1.12-.61-.15-.07-.4-.12-.5-.04-.63.48-1.37.88-1.57,1.75m.96-2.33c-.45-.17-.79-.21-1.03-.39-.44-.32-.78-.21-1.12.12-.23.22-.45.45-.68.67-.36.34-.32.68,0,1.01.4.41,1.04.56,1.32.27.49-.5.93-1.03,1.51-1.68m7.03,11.68c.64.88,1.06,1.11,1.47.74.72-.64,1.38-1.36,2.09-2.06-.96-.61-1.39-.66-1.98-.15-.53.45-1.03.95-1.58,1.47m37.06,33.15c-.5-.11-.95-.22-1.4-.32.38-.27.78-.37,1.18-.43.4-.06.96.24,1-.56-.32,0-.64.03-.93-.04-.71-.16-1.19.09-1.65.65-.59.7-1.29,1.31-1.94,1.95-.41.41-.81.82-1.22,1.23,1.91-.34,3.79-.63,4.96-2.49m5.91-10.52c.04.07.07.13.1.2.23-.01.46,0,.69-.04.66-.09,1.33-.21,1.99-.29.32-.04.65-.04.64.52-.26.03-.53.08-.8.1-.81.06-1.62.11-2.42.16-.47.02-.8.25-1,.67-.28.6-.55,1.2-.86,1.86.3.07.47.15.63.14.74-.06,1.48-.09,2.2-.24.63-.13,1.1-.53,1.29-1.3-.87,0-1.66,0-2.44,0,.81-.42,1.65-.55,2.54-.49.33.02.78.01.99-.18.54-.52.98-1.15,1.45-1.73-.17-.14-.22-.22-.27-.22-1.3.07-2.61.1-3.9.24-.3.03-.56.4-.84.61m-77.83-13.39c-.45.25-.76.42-1.2.67,1.16.53,1.81-.79,2.95-.4-.54.36-.97.65-1.44.97.49.43.87.41,1.31.1.4-.28.83-.49,1.46-.23-.32.29-.56.5-.8.72.5.37.91.24,1.35.04.46-.21.93-.47,1.6-.21-.33.3-.58.52-.86.78,1.26.89,1.66-.49,2.67-.82-.72-.26-1.21-.46-1.71-.62-2.36-.73-4.75-1.38-6.97-2.51-.7-.35-1.56-.03-2.19.72.77.42,1.42-.62,2.35-.1-.49.24-.86.42-1.27.61.83,1.1,1.75-.2,2.74.27m37.64,27c.45-.16.73-.26.97-.34.19-1.07-1.18-.71-1.28-1.6.33,0,.61,0,.89,0-.01-.26-.02-.49-.04-.89.44.26.75.45.99.6.28-.12.51-.21.75-.31.06.29.12.57.2.94.53.17,1.07.43,1.56-.24.12-.17.45-.19.66-.27.12.18.18.23.19.29.2.94.52,1.05,1.29.49.2-.15.47-.2.82-.33,0,.45.01.75.01.97.89.71.91-.85,1.68-.45.03.22.07.49.11.72.63.31,1.03-.04,1.43-.52.12.35.2.59.31.94.54-.27,1-.51,1.42-.72.25.19.49.48.8.58.13.04.38-.33.71-.62-1.3-.47-2.39-.87-3.48-1.27-.97-.36-1.96-.54-2.98-.7-2.02-.32-4.05-.71-6-1.31-1.15-.35-2.29-.71-3.47-.88-.89-.13-1.81-.13-2.64.33.08.3.15.53.26.92-.92-.46-1.68-.66-2.4,0,.1.14.19.26.33.46-.76.16-1.56.09-1.75.99.78.21,1.42.05,2.07-.39.46-.31,1.01-.5,1.55-.66,1.31-.38,2.47-.06,3.35.98.8.94,1.47,1.95.46,3.29.58.18,1.03.32,1.43.44.46-.54.46-.96-.21-1.43m-19.08-13.48c.07.17.22.36.18.51-.08.33-.26.64-.4.97.43.34.76.29,1.05-.07.07-.08.09-.19.14-.29.16-.32.33-.73.76-.55.44.19.2.6.13.94-.01.06.01.13.04.33,1.2-.08,2.4.05,3.62-.26,2.26-.58,4.53-1.08,6.81-1.56,1.09-.23,2.15-.57,3.2-.95.4-.14.89-.01,1.32-.08.61-.1,1.19-.08,1.85.22-.2.54-.39,1.07-.59,1.61.42.18.57-.04.7-.3.17-.35.32-.72.54-1.03.09-.13.4-.22.54-.16.12.05.24.37.19.51-.13.4-.36.76-.53,1.15-.11.25-.19.52-.3.81.44.18.68.07.85-.34.13-.33.28-.65.46-.94.22-.35.53-.56,1.04-.39-.2.55-.39,1.07-.58,1.6.07.05.14.1.2.15.18-.16.4-.3.52-.5.23-.4.39-.83.58-1.25.09-.19.15-.41.29-.56.1-.1.39-.2.44-.14.12.12.25.36.21.51-.08.3-.28.57-.42.85-.12.24-.24.49-.41.84.56.05,1.01.08,1.56.13-.19.24-.29.36-.39.49-1.16-.15-1.28-.08-1.66,1.07.24.15.49.31.7.44.34-.55.65-1.04.96-1.54q.59.45.14,1.64c.22.08.43.19.66.23.95.2,1.11.49.68,1.38-.15.32-.34.62-.49.94-.07.15-.07.33-.12.62.64.05,1.22.09,1.8.14.48-.86.46-1.91,1.32-2.64.54,1.02-.37,1.62-.38,2.48.28.07.6.15.95.24.46-.77.03-2.02,1.32-2.37.25.85-.64,1.37-.51,2.1.44.18.61-.1.77-.38.25-.43.47-.87.76-1.28.23-.33.48-.7,1.16-.64-.42.78-.78,1.46-1.19,2.22.6-.12,1.06-.21,1.62-.32.06-.22.12-.56.23-.9.14-.44.25-.9.47-1.29.1-.19.44-.25.66-.36.03.22.13.47.07.66-.23.64-.51,1.27-.79,1.93.47.15.71-.68,1.04-.16.11.18-.19.6-.29.92-.17.53-.54,1.07-.06,1.75.64-.84.62-2.11,1.94-2.32.06.44-.17.69-.37.97-.53.77-.51.8.13,1.42-.71.98-1.42,1.95-2.13,2.93.92.65,1.88.3,2.13-.63.14-.5.31-1,.53-1.47.16-.35.46-.53.93-.33-.2.46-.42.89-.57,1.35-.19.6-.09.7.72.76.26-.77-.07-1.91,1.33-2.21-.05.35-.07.6-.14.84-.07.27-.25.53-.26.79-.02.43.17.69.51.52.2-.7.32-1.3.56-1.85.1-.24.44-.37.73-.6.5.92-.67,1.63.01,2.47.15-.03.37-.06.66-.11-.1-.73-.28-1.46.32-2,.23-.21.55-.33.91-.54.28.98-.93,1.62-.23,2.49.3-.57.6-1.15.92-1.71.1-.18.24-.37.41-.47.12-.07.34-.03.47.05.08.04.12.27.07.38-.09.23-.25.42-.37.64-.28.48-.55.96-.88,1.53-1.39.14-2.9.28-4.4.44-.67.07-1.34.15-2,.26-.21.03-.4.19-.79.39,1.74.37,3.21.9,4.8.62.27-.05.57,0,.85.02,3.43.41,6.42-.6,9.04-2.81.75-.64,1.47-1.32,2.23-1.95.22-.18.54-.25.83-.33.3-.08.61-.1.92-.34-.17-.05-.34-.1-.51-.15.59-.52,1.01-.4,2.51-.18.21-.24.46-.51.87-.97-.6-.03-.93-.05-1.26-.07-.31-.02-.62-.04-.95-.24.5-.11,1-.23,1.49-.34.23.03.49.02.69.12.5.23.65-.1.82-.49-.5.18-1.14-.32-1.5.41-.09-.15-.17-.31-.31-.54,1.17-.37,1.13-1.56,1.6-2.41.68-1.24,1.14-2.59,1.8-3.83.39-.74,1-1.36,1.58-2.11,1.8-.22,3.69-.47,5.59-.67.42-.04.76-.07.97-.65-1.57-.04-3.09-.09-4.61-.13,0-.06,0-.12,0-.18.86-.08,1.72-.15,2.58-.23,1.01-.09,2.03-.17,3.04-.3.26-.04.5-.27.74-.41-.03-.08-.06-.16-.08-.24-.92.06-1.83.11-2.75.17,0-.08-.02-.15-.03-.23.96-.21,1.91-.43,2.87-.64.1-.02.24-.05.31,0,.7.51,1.28.07,1.83-.27.93-.57,1.94-.85,2.99-1.02.53-.08,1.11-.22,1.72.38-.38.12-.62.27-.86.26-.96-.04-1.81.28-2.63.72-1.79.95-3.5,2.03-4.89,3.52-.82.88-1.56,1.83-2.35,2.73-1.72,1.98-3.59,3.8-5.58,5.5-1.64,1.4-3.22,2.86-4.45,4.67-.96,1.42-2.22,2.45-3.95,2.86-.86.2-1.69.51-2.55.73-.26.07-.66.13-.79,0-.43-.44-.84-.25-1.27-.11-1.91.63-3.87.67-5.87.58-1.96-.09-3.85-.46-5.77-.74-1.28-.18-2.61-.15-3.91-.13-2.46.04-4.85-.44-7.25-.82-.7-.11-1.4-.17-2.2-.27-.3.82-.54,1.67-.91,2.45-.33.69-.74,1.37-1.24,1.94-.48.55-1.17.81-1.93.67-.65-.13-1.29-.32-1.93-.49.05-.64.52-.75.83-1,.94-.76,1.65-1.67,1.7-2.92.07-1.99-1.82-3.26-3.62-2.44-1.34.62-2.42,1.47-2.47,3.14-.02.52-.18,1.03-.27,1.56-1.46-.45-1.84-.99-1.76-2.42.05-.89.17-1.76.6-2.56.43-.8,1.03-1.43,1.88-1.8,2.64-1.16,5.29-1.13,7.94-.06,2.14.86,4.38,1.28,6.69,1.57-.19-.09-.37-.21-.56-.28-.66-.24-1.35-.44-2-.71-.54-.23-.99-.57-1.37-1.1-.39-.53-1.05-.9-1.64-1.25-1.21-.72-2.47-1.35-3.68-2.08-1.06-.64-2.06-1.36-3.09-2.04-.09-.06-.22-.08-.27-.16-.6-.98-1.68-.89-2.59-1.22-1.61-.59-3.05.2-4.52.53-1.99.44-3.99.71-6,.51-1.74-.18-3.46-.68-5.17-1.08-.83-.19-1.65-.41-2.44-.73-1.87-.75-3.71-1.56-5.56-2.35-.15-.07-.26-.23-.43-.38.08-.22.16-.44.25-.69-.16-.08-.27-.16-.4-.21-1.06-.38-2.13-.74-3.18-1.15-1.35-.53-2.38-1.5-3.31-2.58-.3-.35-.52-.85-.61-1.31-.12-.64-.42-1.11-.92-1.49-.45-.35-.9-.69-.85-1.37.01-.13-.12-.31-.24-.42-.84-.76-1.78-1.44-1.74-2.76,0-.12-.14-.34-.21-.34-.79.02-.96-.69-1.38-1.12-.13-.13-.38-.15-.56-.22-.03-.08-.06-.14-.07-.21-.11-1.08-.04-2.06,1.34-2.26,1.34-1.54,3.08-1.03,4.73-.86,1.47.15,2.94.4,4.4.65,1.46.25,2.91.52,4.41.53.75,0,1.49.41,2.24.58,2.34.52,4.72.93,6.96,1.86.98.41,1.91.91,2.89,1.33,2.64,1.14,5.37,1.98,8.25,2.21.76.06,1.51.21,2.47.34-.22-.37-.31-.55-.42-.71-.41-.56-.5-1.16-.24-1.8.19-.49.44-.97.14-1.51-.07-.14-.08-.41,0-.51.64-.81.16-1.6-.02-2.39-.12-.54-.13-.54.38-1.07-.08-.54-.19-1.1-.25-1.66-.06-.6.15-1.11.71-1.51-.99-1.42-1.96-2.79-2.92-4.17-.54-.78-1.13-1.54-1.07-2.59.01-.2-.29-.44-.49-.62-.5-.44-1.04-.85-1.54-1.29-.18-.16-.43-.38-.44-.58-.03-1.16-1.02-1.58-1.66-2.26-.74-.79-1.31-1.68-1.4-2.79-.03-.38.04-.77.14-1.14.04-.16.27-.27.42-.4.11.14.24.28.33.43.05.08.06.2.1.37.25-.14.42-.23.63-.35-.83-1.38-1.98-2.44-2.97-3.62-.42-.5-.7-1.12-1.04-1.68-.14-.23-.25-.51-.45-.69-.74-.65-1.51-1.26-2.27-1.89-.08-.07-.22-.1-.24-.18-.34-.93-1.19-1.37-1.84-2.01-.25-.24-.45-.54-.67-.81-.3-.38-.37-.75.06-1.07-.62-.85-2.11-1.12-1.5-2.59-.55-.53-1.09-1.04-1.61-1.57-.47-.48-.86-.99-.23-1.65-.44-.39-.85-.72-1.22-1.1-.54-.56-1.04-1.13-.85-2.05.07-.33-.17-.73-.28-1.14,1.47-.78,3.03.27,4.5-.39.45.7,1.16.89,1.88,1.07,2.29.58,4.59,1.14,6.88,1.76.74.2,1.52.46,2.15.88,2.04,1.34,4.33,2.08,6.56,2.98.88.36,1.74.79,2.59,1.22.47.24.88.56.92,1.28-.26-.06-.45-.08-.61-.16-1.48-.75-2.94-1.56-4.45-2.24-1.22-.54-2.54-.88-3.78-1.38-.85-.34-1.4-.02-1.96.6.39.48.79.4,1.24.21.4-.17.81-.48,1.29,0-.34.26-.64.49-.94.73,1.17.19,2.3-.08,3.39.38-.06.86-.85,1.01-1.36,1.51.65.32,1.19-.08,1.73-.12.64-.04.62.93,1.4.52-.7.9-.99.98-1.79.69-.11-.04-.25-.02-.38,0-.3.04-.59.11-.89.13-.77.03-1.26.54-1.73,1.05-.1.1.05.44.09.66.22-.05.57-.03.63-.15.36-.75.98-.66,1.77-.65-.66.9-1.5,1.32-2.42,1.77.71.72,1.16,1.65,2.39,1.5.06.39.11.73.17,1.17-.45.03-.84.06-1.36.1.32.58.78.91,1.28.87.49-.04.97-.36,1.57-.6-.11.29-.12.53-.24.63-.75.59-1.52,1.15-2.28,1.73-.47.36-.94.71-1.49,1.14-.29-.09-.54-.31-.19-.7.32-.36.71-.68,1.11-.96.28-.2.62-.32,1.1-.56-.34-.28-.56-.53-.84-.68-.87-.46-1.75-.93-2.66-1.31-.43-.18-1.03-.4-1.39-.23-.64.3-1.38.62-1.69,1.38-.12.29-.13.56.38.64.48-.69,1.07-1.34,1.96-1.58.16-.04.38.08.62.15-.46.98-1.84.97-2.01,2.22,1.17.83,2.18,1.99,3.66,2.61.65-1.15,1.6-1.79,3.01-1.92-.6,1.04-2.06,1.11-2.31,2.38.3.26.56.4.94,0,.65-.69,1.46-1.09,2.51-1.23-.08.23-.14.39-.24.66.35-.1.6-.18.91-.27-.05.16-.04.28-.1.33-.63.55-1.27,1.08-1.92,1.63.43.57.76.23,1.05.02.61-.44,1.26-.75,2.29-.66-.73.52-1.31.93-1.88,1.34.58.3.82-.23,1.22-.33.43-.11.86-.24,1.29-.36.04.07.08.14.12.21-.48.36-.96.71-1.49,1.11.29.38.56.53.87.16.38-.45.87-.52,1.49-.37-.28.24-.59.44-.83.72-.13.15-.12.41-.17.63.22-.02.55.04.64-.08.47-.66,1.13-.6,1.87-.6-.18.64-1.31.47-1.07,1.4.92.11,1.4-.89,2.32-.98-.32.56-.59,1.05-.86,1.54.06.07.12.13.18.2.76-.64,1.42-1.54,2.6-1.17-.46.6-1.54.46-1.69,1.43.63.29,1.24.57,1.88.86-.17-1.23.11-1.5,1.59-1.42-.26.26-.42.44-.61.61-.5.45-.47,1.01.1,1.37.21.13.44.22.67.32.68.29,1.36.58,2.04.88.08.03.12.16.15.21-.47.3-.93.59-1.36.87.38.93.46.96,1.14.66.55-.25,1.11-.49,1.67-.73.05.08.09.15.14.23-.23.19-.45.38-.68.56-.67.52-.68.69,0,1.14.68.44,1.37.85,2.25,1.39-.35-.05-.54-.04-.68-.11-1.56-.76-3.1-1.54-4.66-2.29-.32-.15-.66-.29-1-.34-.28-.04-.65-.02-.87.13-.66.46-1.27.99-1.91,1.5.76.85,1.11.9,1.98.35.59-.37,1.2-.7,1.8-1.05.05.06.09.13.14.19-.6.49-1.21.97-1.85,1.49.51.49.83.14,1.09-.05.05.28,0,.68.16.79.36.24.75.59,1.26.34.34-.17.67-.36,1.14-.43-.17.3-.35.6-.55.93.86.72,1.52-.29,2.5-.21-.56.41-.99.73-1.53,1.13.33.07.55.11.94.19-.44.36-.8.65-1.24,1,.73.41,1.41.79,2.09,1.18-.02.07-.04.13-.07.2-.18,0-.39.08-.55.02-.6-.22-1.17-.5-1.76-.73-.77-.29-1.5-.31-2.13.37-.43.46-.91.87-1.38,1.3.86.78,1.13.8,1.94.28.55-.35,1.12-.66,1.79-.83-.57.47-1.15.93-1.73,1.41.89.88,1.32.92,2.11.36.49-.35.98-.69,1.48-1.03.05-.04.13-.03.45-.1-.64.66-1.14,1.17-1.67,1.72,1.02.77,1.83.45,2.7-.03-.26.23-.51.46-.77.69q.67.54,1.19.08c.13-.12.25-.26.4-.35.43-.23.91-.66,1.31-.6.71.11,1.37.51,2.04.82.11.05.13.28.24.53-.65-.05-1.08-.36-1.52-.6-.74-.4-.97-.38-1.61.19-.42.37-.82.76-1.1,1.02-1.2-.44-2.26-.85-3.34-1.19-.2-.06-.51.19-.83.32.77.58,1.39,1.07,2.31.95.24-.03.52.3.97.59-1.75-.18-2.41,1.23-3.52,1.85.02.24.04.43.06.6-.56.42-1.37-.02-1.81.74.15.17.32.36.52.58-.24.86-1.34.88-1.68,1.71.14.08.3.22.37.19.76-.35,1.58-.65,1.91-1.53.27-.71.29-.72,1.34-.72-.47,1.09-1.62,1.54-2.2,2.47.75.64,1.47.36,2.41-.13-.46.8-.79,1.33-1.44,1.66-.21-.25-.4-.49-.58-.7-1.23.22-1.69.67-1.78,1.71-.37.25-.73.2-1.09-.03-1.67-1.02-3.51-1.4-5.42-1.7-2.51-.39-5.02-.88-7.48-1.51-1.6-.41-3.14-1.09-4.66-1.74-2.94-1.26-5.96-2.23-9.13-2.69-.82-.12-1.21.07-1.77.88.51.53.87-.03,1.27-.18.41-.16.82-.34,1.36-.56-.16,1.05-1.17.78-1.51,1.4.13.43.37.49.76.24.53-.35,1.09-.62,1.83-.58-.17.68-.91.53-1.25.99.11.47.36.6.78.26.49-.39.99-.64,1.73-.36-.28.29-.5.51-.77.78.84.75,1.48-.68,2.42-.03-.77.33-1.24.93-2.1.79-1.77-.3-3.38-.96-4.92-1.88-1.33-.8-2.74-1.47-4.14-2.16-.26-.13-.65-.18-.9-.08-.72.28-1.41.65-2.09,1.03-.21.12-.35.38-.46.66,1.04-.13,1.79-1.08,3.06-.92-.69.67-1.55.71-2.2,1.23.29.61.72.36,1.12.18.51-.24,1-.51,1.52-.74.18-.08.4-.05.77-.08-.48.82-1.62.46-1.88,1.34.42.39.8.25,1.22-.03.45-.3.9-.67,1.76-.46-.61.36-1.03.6-1.51.88.76.97,1.52.15,2.33.1,0,.23,0,.44-.01.82,2.66,1.1,5.64,1.65,8.45,2.68-.02.08-.05.17-.07.25-.76-.19-1.53-.37-2.29-.57-.89-.22-1.81-.38-2.67-.7-1.09-.41-1.67.33-2.45.8.57.51,1.04.56,1.59.13.35-.28.79-.5,1.31-.07-.18.21-.35.4-.53.62.06.07.1.18.18.21.9.33,1.8.64,2.7.97.27.1.53.24.79.37-.03.09-.06.18-.09.26-.35-.08-.7-.16-1.05-.25-2.35-.65-4.7-1.33-7.05-1.96-.95-.25-1.35.02-1.73,1.03.46.27.78.03,1.11-.26.3-.27.58-.64,1.07-.37q-.18.52-.74,1.08c.75.54.76.54,1.31-.09.09-.11.17-.27.28-.31.24-.08.6-.21.73-.11.28.24.04.49-.17.7-.15.14-.28.3-.43.46.48.45.87.48,1.31.02.25-.26.6-.42.9-.62.07.06.13.12.2.19-.2.36-.4.73-.63,1.13.26.12.49.22.71.33.52.26.95.25,1.21-.37.18-.43.51-.54,1.06-.44-.28.42-.52.77-.81,1.2,1.28.73,2.74.72,3.92,1.54-.88-.16-1.76-.3-2.64-.47-.41-.08-.84-.16-1.23-.31-.62-.23-.99.05-1.43.64,1.36.49,2.63.96,3.91,1.42-.01.08-.03.16-.04.24-.18.02-.37.1-.53.05-1.12-.33-2.23-.66-3.33-1.02-1.9-.62-1.42-.83-2.83.99.36.13.7.25.99.36.55-.24.57-1.08,1.41-1.02-.17.47-.32.87-.48,1.31.61.32,1.13.41,1.66-.1.25-.24.6-.39.91-.58.07.07.13.14.2.21-.2.29-.4.58-.64.93.42.35.82.34,1.16-.08.25-.31.46-.63,1-.47-.04.22-.14.43-.1.61.05.25.14.62.31.68.18.07.54-.1.69-.27.22-.26.29-.65.88-.62-.08.39-.14.74-.23,1.18,1.79.6,3.69.74,5.6,1.14-.1.2-.16.34-.23.48-.63-.15-1.25-.3-1.9-.45-.14.38-.23.64-.33.89-.12.32-.18.64.21.79.36.14.71.18,1.01-.24.27-.38.66-.69.99-1.03"/> |
|
30 |
+ <path class="cls-1" d="m75.23,11.03c-.25-.38-.31-.48-.38-.58-.1.07-.26.12-.28.2-.02.1.06.26.15.32.1.06.26.03.51.05m.06,11.33s-.1-.08-.15-.12c-.12.12-.23.25-.35.37.07.06.14.12.22.18.1-.15.19-.29.28-.44m3.82,4.96c-.04.09-.08.18-.13.27.18.08.36.16.54.24.03-.06.07-.12.1-.18-.17-.11-.35-.22-.52-.34m9.62-1.14l.19.39c.38-.13.77-.23,1.03-.56-.05-.09-.09-.19-.14-.28-.36.15-.72.3-1.08.45m-7.56-15.73c1.01.05,1.04.02.93-.66-.34.24-.64.45-.93.66m-5.21.6c.43-.12.77-.22,1.24-.35-.87-.51-.89-.5-1.24.35m4.12,16.18c.04.07.07.14.11.22.42-.15.83-.3,1.25-.45-.03-.09-.07-.18-.1-.27-.5-.07-.89.18-1.26.5m.58-17.56c.81.07.74-.67,1.1-.95-.55.03-1.02.15-1.1.95m7.19,8.04q-.16-.83-.61-1.24-.08,1.08.61,1.24m-10.9,8.69c.38.19.71.35,1.16.57-.41-1.13-.47-1.16-1.16-.57m.64-8.94c-.88.5-.89.52-.48,1.15q.87-.57.48-1.15m-.04-12.28c-.69.1-1.36.24-1.57,1.14.8-.1,1.12-.71,1.57-1.14m-.9,4.4c-.2-.38-.24-.57-.36-.66-.37-.28-.65,0-.9.22-.09.08-.08.29-.11.44.25.01.51.04.76.04.17,0,.35-.03.6-.05m14.39,15.3c.62.24,1.38-.14,1.47-.51.02-.09-.16-.23-.28-.39-.44.33-.82.62-1.19.9m-5.61-4.29q1.36-.86.91-1.55c-.22.56-1.11.6-.91,1.55m-6.79,2.35c-.92-.39-1.4-.05-1.44.97.49-.33.89-.6,1.44-.97m.02-5.42c.42.57.47.57,1.48-.26-.11-.15-.22-.31-.33-.46-.39.25-.73.46-1.15.72m7.68-3.31c-.66-.34-.92-.3-1.43.09-.28.22-.52.45-.18.95.51-.33.99-.64,1.61-1.04m3.42,6.28c-.68.13-1.19.39-1.58.86-.06.07,0,.24,0,.38q1.59-.36,1.58-1.24m-11.7.07c.3-.17.56-.32.88-.5-.24-.37-.43-.68-.62-.98q-.86.46-.26,1.48m4.19-6.05c.45-.17.86-.33,1.28-.5-.04-.24-.05-.38-.09-.51-.04-.12-.13-.23-.19-.33q-1.09.42-.99,1.33m9.06,11.98c.71.06,1.3-.24,1.91-.41.09-.02.2-.24.18-.33-.05-.14-.23-.36-.31-.34-.4.1-.78.26-1.17.41-.28.11-.59.2-.61.67m-2.93-3.06c1.26-.18,1.28-.19,1.24-1.1-1.31.14-1.36.19-1.24,1.1m-13.89,1.44c.69.03,1.3-.53,1.52-1.39-1.04.1-1.44.46-1.52,1.39m.37-23.34c.04.78.17,1.31.57,1.87.32-.25.57-.44.85-.65-.36-.52-.67-.92-1.42-1.22m12.07,19.38c-.43.22-.74.35-1.01.52-.37.24-.41.58-.2,1.02.46-.15.89-.29,1.37-.45-.06-.37-.1-.7-.16-1.09m-.68-3.86c-.52.42-.91.74-1.31,1.06q.51.59,1.58-.13c-.08-.27-.17-.57-.28-.93m-8.42-6.95c.03.06.07.13.11.19.67-.14,1.34-.28,2.02-.42-.37-.87-.57-.98-1.21-.57-.34.21-.61.53-.91.8m4.7,5.31c.24.47.41.82.6,1.19q.94-.72.42-1.76c-.29.16-.58.33-1.02.57m-6.06,7.31c.43-.38.78-.69,1.16-1.03-.16-.41-.29-.77-.82-.49-.69.37-.77.68-.34,1.51m9.76-7.33c-1.17,0-1.6.46-1.2,1.24q1.34-.46,1.2-1.24m-1.5,5.84c.27-.95-.05-1.78-.25-2.66-.61.08-.68.44-.53.83.23.62.51,1.22.78,1.83m-3.85,4.64c-.31-.18-.53-.41-.67-.36-.45.14-.89.35-1.3.6-.11.07-.08.36-.11.55.19.02.42.11.58.03.47-.21.9-.49,1.5-.82m-2.19-4.59c.48.34-.34.97.36,1.23.57.21.73-.35.99-.66q-.45-.88-1.35-.57m28.47,29.27c-.92.38-1.64.88-2.19,1.85.66-.26,1.18-.44,1.68-.66.46-.21.69-.55.51-1.19m-30.62-25.97c-.63.5-1.21.96-1.79,1.43.03.08.05.17.08.25.24.02.55.13.72.03.44-.26.83-.62,1.22-.96.33-.28.08-.47-.23-.75m6.13-13.37c-.49.09-1,.13-1.14.63-.1.37-.1.83.44,1.03.35-.26.68-.51,1.06-.78-.12-.29-.24-.57-.36-.88m8.16,10.56c-.13.5-.25.76-.26,1.02-.02.39-.34.91.21,1.11.46.16.6-.37.83-.65.04-.05.03-.13.07-.29-.2-.28-.44-.61-.85-1.19m-12.41-15.95c-.72.4-1.38.76-2.15,1.19.15.24.29.47.4.64.62-.39,1.11-.73,1.63-1,.4-.21.39-.44.12-.83m-.16,10.98c.42-.43.74-.77,1.11-1.15-.11-.28-.22-.57-.37-.96-.47.22-.86.4-1.29.61.21.55.37,1,.56,1.5m-2.01.41c.37-.27.74-.53,1.12-.81-.09-.23-.14-.39-.22-.54-.1-.18-.23-.33-.34-.49-1.26.63-1.3.76-.56,1.84m12.31,8.52c.53-.18.99-.34,1.54-.53-.1-.38-.2-.73-.29-1.05-1.36.14-1.4.19-1.24,1.58m-11.74-22.33c-.27.12-.5.21-.72.3-.93.4-.97.75-.06,1.46.41-.32.83-.66,1.29-1.02-.2-.29-.36-.5-.52-.74m3.05,2.91c-.07.04-.15.07-.22.11.11.8.19,1.61.86,2.35.28-.3.51-.54.79-.84-.51-.58-.97-1.1-1.42-1.62m-2.3,18.02c.33.54.5.83.69,1.14.59-.26,1.1-.48,1.71-.75-.29-.36-.54-.68-.65-.81-.64.15-1.11.27-1.75.42m1.19-17.11c-.63.35-1.15.58-1.59.92-.15.11-.15.5-.1.73.02.09.43.18.61.12.54-.21,1.05-.49,1.65-.79-.18-.31-.35-.6-.57-.98m9.52,10.98c-.33.19-.62.35-.93.52.17.67.32,1.25.47,1.86,1.54-.93,1.55-1,.46-2.39m-13.71-13.59c-.05.03-.11.07-.16.1.15,1.22.29,2.43.44,3.71.67-.29.95-.62.72-1.28-.24-.69-.38-1.42-.6-2.12-.05-.16-.26-.28-.4-.41m1.18,16.09c1.11-.49,1.2-.81.61-1.59-.25-.32-.43-.69-.65-1.03-.12-.19-.26-.36-.5-.7-.39,1.32.34,2.23.55,3.31m-.48-5.67c.76-.27.8-.29.78-.72-.03-.94-.39-1.78-.79-2.61-.05-.1-.28-.11-.58-.22.22,1.28.41,2.4.6,3.55m2.84-2.32c-.4.35-.59.53-.79.7-.5.41-.51.41.03,1.07.4-.17.81-.35,1.2-.52-.12-1.27-.44-1.83-1.37-2.29-.2.26-.42.53-.69.88.56.06.95.1,1.61.17m27.59,43.18c-.83.12-1.63.23-2.43.35-.49.08-.83.32-.82,1.01,1.03-.15,2-.29,2.97-.43.53-.07.49-.4.29-.94m-20.34-42.82c-.47-1.09-1.11-1.91-1.91-2.66.6,1.07-.25,2.5.9,3.49.35-.29.65-.53,1.01-.83m18.15,42.23c.31-.68.82-.66,1.21-.83.42-.18.84-.34,1.26-.5-.02-.07-.04-.14-.06-.2-.58.1-1.17.19-1.89.32.55-1.18,1.79-.73,2.51-1.38-2.16-.23-3.6.9-3.38,3.01,1.23-.11,1.96-.34,2.79-.95-.91.2-1.59.35-2.44.53m-11.83-26.15c.98-.65,1.82-1.2,2.71-1.79-.24-.38-.44-.69-.64-.99.02.11.03.21.05.32-.83.35-1.66.69-2.57,1.07.09.29.24.74.44,1.39m10.12,29.58c.65-.19,1.29-.4,1.93-.55.59-.14,1.19-.65,1.93-.02-.55.45-1.12.52-1.7.61-.66.1-1.32.21-1.97.35-.17.04-.31.25-.47.38.03.08.07.15.11.22.69.02,1.34-.24,2.01-.36.68-.12,1.37-.19,2.11-.29.05-.26.13-.56.17-.87.06-.53-.18-.82-.71-.78-1.01.09-2.02.24-3.03.39-.4.06-.65.28-.36.9m4.19,2.35c-1.21.27-2.39.47-3.6.47,1.06-.63,2.17-1.04,3.53-.81-.1-.38-.17-.66-.25-.96-1.18.14-2.27.24-3.34.42-.83.14-1.06.84-.55,1.48.33.42,1.93,1.06,2.53.74.58-.31,1.23-.5,1.89-.76-.07-.18-.14-.37-.22-.58m-15.72-33.32c-.47-.06-.66.73-1.15.26-.19-.72.68-.8.89-1.43-.36.12-.59.19-.81.28-.9.34-1.11.21-1.19-.77-.05-.6-.21-1.15-.6-1.66-.45.26-.82.48-1.29.75-.06-.3-.17-.55-.11-.6.44-.38.92-.71,1.51-1.15-.16-.17-.3-.49-.52-.55-.54-.16-.25.55-.64.69-.71-.23-1.34-.63-1.79-1.31-.8-1.19-1.31-2.5-1.73-3.86-.17-.56-.37-1.12-.56-1.69-.96.52-1.01.6-.69,1.42.34.85.75,1.68,1.1,2.53.22.53.43,1.07.1,1.85-.18-.36-.29-.56-.38-.76-.49-1.06-.96-2.12-1.45-3.18-.22-.47-.57-.61-1.04-.37-.24.12-.46.27-.56.32.1.45.17.77.24,1.11.5-.07,1-.61,1.57-.11-.29.47-1,.64-.87,1.33.48.28,1-.36,1.28-.03-.04.68-.07,1.19-.1,1.67.42.15.7.26,1.18.43-.54.42-.95.79-1.4,1.08-.26.17-.64.24-.54.65.12.48.5.54.93.44.48-.11.96-.24,1.45-.32.31-.05.67-.21,1.04.32-.65.21-1.21.39-1.76.56-.61.19-.64.32-.22.93.56-.04,1.09-.7,1.78-.08-.18.16-.3.28-.44.38-.45.3-1.03.46-1.02,1.21,0,.25-.36.32-.53,0-.07-.13-.08-.3-.14-.55-.51.28-.93.5-1.39.75.36.63.82.87,1.42.97.55.09,1.11.21,1.63.4,1.26.46,2.51.96,3.76,1.47.62.25,1.24.52,1.83.85,2.49,1.41,4.97,2.85,7.23,4.63.97.77,2.02,1.44,2.94,2.26,1.55,1.4,3.01,2.88,4.51,4.32.07.07.17.09.28.14-.11-.99-3.12-6.28-4.14-7.31-.43.23-.88.46-1.4.73-.21-.92.56-1.17.93-1.71-.22-.26-.43-.5-.63-.74-.16.12-.25.15-.27.2-.11.31-.21.66-.65.45-.34-.16-.37-.68-.08-1,.16-.18.37-.31.6-.48-.22-.31-.42-.59-.67-.93-.4.26-.71.48-1.04.66-.13.07-.37.11-.46.03-.1-.08-.15-.35-.08-.46.13-.23.34-.43.54-.61.18-.15.4-.24.64-.39-.91-.37-1.36-.23-2.08.57-.55-.62-.54-.87.09-1.15.41-.18.86-.28,1.41-.46-.23-.35-.42-.65-.59-.91-1.03.26-1.69,1.06-2.81,1.19.44-1.12,1.62-1.32,2.06-2.18-.17-.51-.46-.68-.91-.43-.68.38-1.34.78-2.02,1.17-.2.12-.41.23-.64.36-.25-.37-.45-.67-.73-1.08-.7.48-1.34.93-2.08,1.44-.13-1.29.91-1.57,1.56-2.16-.1-.16-.19-.29-.25-.39m-9.18-14.43c-.49.23-.98.47-1.47.7.02.08.03.15.05.23.43.07.86.15,1.34.23q-.82,1.39-.38,2.09c.42-.11.86-.22,1.38-.36-.26-1-.3-2.03-.95-2.88.09-1.05-.53-1.88-.8-2.92-.61.19-1.12.32-1.59.52-.13.06-.22.32-.24.5,0,.06.27.2.41.21.39.01.8-.14,1.18.23-.35.39-1.09.49-.8,1.12.66.12,1.27.23,1.87.33m27.05,34.92c-.75-.62-1.48-1.22-2.2-1.84-.72-.62-1.53-1.17-2.13-1.89-2.38-2.84-5.1-5.3-8.13-7.42-2.26-1.58-4.61-3.03-6.93-4.51-.76-.49-2.46-1-3.38-1.11.13.32.26.64.39.96-.06.04-.12.09-.18.13-1.46-.89-2.92-1.77-4.38-2.67-1.43-.88-2.62-2.14-4.35-2.56.2.18.39.36.61.52.87.66,1.77,1.29,2.62,1.97.76.61,1.13,1.49,1.54,2.33-.05.05-.11.1-.16.15-.2-.15-.45-.27-.58-.47-.95-1.46-2.29-2.49-3.72-3.42-.54-.35-1.09-.93-1.78-.16-.14-.26-.26-.38-.26-.5.03-.62-.36-.89-.85-1.08-.85-.34-1.72-.66-2.57-1q-.6-.24-1.07-1c1.05.35,1.96.64,2.83.93.29-1.61.59-3.11.83-4.63.06-.37-.18-.85-.02-1.14.6-1.11-.21-2.08-.19-3.12.01-.63-.12-1.29.01-1.89.16-.72.11-1.38-.04-2.07-.13-.58-.18-1.18-.23-1.78-.02-.19,0-.47.12-.58.52-.45.42-1.04.35-1.58-.17-1.29-.43-2.58-.59-3.87-.1-.8-.08-1.61-.12-2.41,0-.07-.04-.17,0-.21.6-.62.47-1.38.28-2.36.45.23.75.31.95.5.86.83,1.7,1.7,2.54,2.55.55.55,1.07,1.13,1.66,1.63,1.98,1.68,3.69,3.6,5.25,5.67.66.87,1.39,1.7,2,2.6.54.79,1.03,1.62,1.42,2.48.86,1.88,1.94,3.61,3.17,5.26,1.43,1.93,2.86,3.85,4.07,5.93,1.58,2.71,3.34,5.32,4.96,8.01,1.53,2.54,3,5.12,4.46,7.69.24.42.48.96.41,1.4-.16.98.44,1.4,1.07,1.87.85.63,1.71,1.24,2.53,1.91.33.27.56.67.89,1.08-.71.41-.82.96-.93,1.57-.14.76-.39,1.52-.71,2.22-.96,2.07-1.1,4.22-.82,6.44.14,1.08.31,2.17.48,3.37-.52.14-1.07.3-1.62.45,0,.07.01.13.01.19.76.05,1.51.15,2.27.15,2.15,0,4.31-.05,6.47-.07.42,0,.85.02,1.27.04.31.01.53.15.58.64-.32.07-.64.2-.96.19-2.93-.04-5.87-.06-8.79-.19-1.37-.06-2.75-.2-4.04-.79-1.03-.47-1.67-1.15-1.59-2.36.09-1.4.13-2.77.85-4.09.71-1.3,1.25-2.68,2.15-3.88.53-.71,1.09-1.36,1.81-1.91.83-.64,1.53-1.43,2.45-2.31"/> |
|
31 |
+ <path class="cls-1" d="m96.94,46.32c-1.46-.94-2.8-1.81-4.15-2.68-.06.05-.12.1-.18.16.05.16.1.33.15.5q-.69.61-1.67.7c.02-.52.61-.43.79-.8-.2-.04-.4-.08-.83-.16.5-.3.81-.48,1.18-.71-.5-.45-.97-.88-1.44-1.31.53-.54.79-.11,1.08.1,1.34.98,2.67,1.97,4.01,2.94.69.49,1.42.92,2.1,1.43.22.17.46.49.46.74-.06,2.45.54,4.75,1.39,7.01.09.25.14.52.2.78-.06.04-.12.09-.19.13-.23-.21-.46-.42-.71-.65-.42.12-.86.25-1.31.39-.03-.06-.06-.12-.09-.18.39-.41.78-.82,1.25-1.31-.87-.3-1.3.6-2.19.37.62-.47,1.13-.85,1.68-1.27-.06-.17-.12-.36-.21-.64-.68.28-1.31.55-1.94.81.33-.81,1.07-1.14,1.69-1.65-.07-.26-.14-.52-.22-.81-1.07.48-2.09.93-3.1,1.39-.04-.06-.08-.12-.12-.18.07-.08.12-.19.21-.25.85-.56,1.7-1.12,2.56-1.67.4-.25.35-.56.07-1.04-1.22.63-2.44,1.26-3.66,1.89-.04-.08-.09-.17-.13-.25,1.28-.7,2.11-2.14,3.86-2.13.04-.26.07-.49.11-.74-.13-.04-.25-.12-.33-.09-.52.23-1.02.47-1.53.73-1.36.67-2.72,1.33-4.26,1.55,1.87-.81,3.7-1.7,5.47-3.09"/> |
|
32 |
+ <path class="cls-1" d="m134.71,72.06c0-.07-.02-.13-.03-.19-.17.02-.34.04-.51.08-.01,0,.01.17.02.26.17-.05.34-.09.51-.14m2.28.17c.56-.04.96-.08,1.51-.12q-1.1-.59-1.51.12m-1.37,0c.29-.15.59-.3,1.01-.51q-.86-.34-1.01.51m5.49-.37c.02-.08.05-.15.07-.23-.2-.17-.38-.38-.6-.51-1.3-.77-2.59-1.58-3.93-2.26-1.42-.73-2.86-.04-3.41,1.58.31.04.62.08.92.12,2,.23,3.96.59,5.87,1.25.32.11.71.04,1.07.06m1.53.54c-.3.06-.58.15-.86.16-2.32.12-4.65.25-6.97.34-.63.03-1.27.01-1.89-.09-.24-.04-.61-.37-.61-.58-.03-1.12-.05-2.22.79-3.19.65-.76,1.45-1.08,2.35-1.29.19-.05.43-.01.62.07,2.19,1.01,4.29,2.17,6.13,3.74.13.11.26.25.35.39.05.08.05.2.1.45"/> |
|
33 |
+ <path class="cls-1" d="m114.12,72.11c-.8.58-1.61,1.17-2.41,1.75-.04-.05-.08-.1-.12-.14.63-.68,1.25-1.36,1.97-2.14-.88-.3-1.5-.37-2.07.29-.5.57-1.09,1.07-1.71,1.54.09-.87.81-1.33,1.21-2.08-.44-.33-.81-.35-1.29,0-.64.48-1.35.86-2.09,1.19.35-.73,1.02-1.09,1.71-1.57-.62-.35-1.17-.65-1.76-.99.15-.12.22-.2.25-.19,2.83,1.2,5.76,1.28,8.74.8.52-.08,1.01-.31,1.51-.47.27-.09.53-.24.8-.26.21-.01.52.08.6.23.07.13-.05.47-.19.6-.67.63-1.4,1.2-2.07,1.82-.83.77-1.63,1.57-2.45,2.35-.29.28-.6.52-.91.79-.06-.06-.11-.11-.16-.17,1.15-1.3,2.3-2.59,3.5-3.95-.56-.22-.84.07-1.12.31-1.07.88-2.12,1.76-3.19,2.64-.13.1-.27.19-.55.39.31-1.27,1.33-1.78,1.79-2.72"/> |
|
34 |
+ <path class="cls-1" d="m118.2,60.02c-.59-.03-1.17-.06-1.76-.09,0-.05-.01-.11-.02-.16.21-.07.43-.11.63-.2,1.2-.51,2.46-.92,3.57-1.58,1.09-.65,2.23-.82,3.42-.96.14-.02.29,0,.42-.01,2.38-.39,4.29.64,6.21,1.89,2.58,1.68,3.78,4.21,4.68,6.97.19.59.16.92-.02,1.51-.52,0-.5-.44-.57-.75-.33-1.5-1.01-2.86-1.72-4.21-.41-.79-.91-1.52-1.65-2.05-.89-.64-1.74-1.33-2.68-1.89-1.96-1.18-4.08-.89-6.18-.47-.55.11-1.07.33-1.73.54.2.24.34.4.57.68-1.07.43-2.2.47-3.24.79l.04-.02Z"/> |
|
35 |
+ <path class="cls-1" d="m129.59,65.86q-.76-.61-1.4.22c.46-.07.82-.13,1.4-.22m-2.47.69c-.44-.23-.86-.51-1.32-.66-.64-.21-.76-.62-.7-1.22.19-1.65,1.11-2.29,2.7-1.76,1.34.44,2.16,1.4,2.42,2.8.13.7-.03.89-.72,1-.8.13-1.61.19-2.39-.16"/> |
|
36 |
+ <path class="cls-1" d="m114.21,68.4c-.75.48-1.5.97-2.26,1.45-.06-.05-.11-.11-.17-.16.32-.48.64-.96,1.07-1.59-1.18.23-1.78,1.21-2.91,1.31.5-.54.92-.98,1.41-1.5-.88-.42-1.35.5-2.04.42.17-.48.34-.94.5-1.38.94.16,1.97.39,3.01.5.8.09,1.62.03,2.43.03.37,0,.8-.16,1.04.5-1.07.79-2.16,1.6-3.25,2.41-.05-.06-.1-.11-.15-.17.49-.55.98-1.11,1.47-1.66-.05-.05-.1-.1-.15-.16"/> |
|
37 |
+ <path class="cls-1" d="m66.12,24.99c2.32-.71,10.23,3.61,11.21,5.96-.24-.05-.47-.02-.58-.12-2.8-2.68-6.24-4.2-9.83-5.45-.28-.1-.53-.26-.8-.39"/> |
|
38 |
+ <path class="cls-1" d="m112.66,84.48c.03-.3.02-.61.11-.89.62-1.97,1.56-3.77,2.81-5.42.17-.22.35-.47.58-.6.17-.09.43.02.65.04-.02.19-.02.39-.06.57-.02.09-.12.17-.2.24-1.57,1.38-2.37,3.22-3.13,5.09-.14.35-.31.68-.46,1.03-.1-.02-.2-.03-.3-.05"/> |
|
39 |
+ <path class="cls-1" d="m97.9,76.49c.24.09.5.16.73.27,1.83.92,3.77,1.55,5.79,1.92.21.04.45.04.61.15.17.12.27.35.4.53-.19.12-.4.34-.58.32-.41-.03-.85-.11-1.23-.27-1.78-.76-3.54-1.56-5.3-2.36-.19-.09-.34-.28-.5-.43.03-.05.06-.09.09-.14"/> |
|
40 |
+ <path class="cls-1" d="m89.66,78.36c1.02.26,2.03.54,3.06.76,1.45.31,2.92.5,4.42.29.36-.05.7.03.67.44-.01.16-.37.34-.6.43-.18.07-.42.04-.63.02-2.29-.22-4.54-.65-6.68-1.55-.11-.05-.21-.15-.31-.22.03-.06.05-.11.08-.17"/> |
|
41 |
+ <path class="cls-1" d="m74.18,35.65c1.83.61,6.73,3.97,7.29,4.82-.19.43-.44.35-.74.11-.52-.42-1.04-.84-1.58-1.24-1.66-1.24-3.32-2.47-4.98-3.7"/> |
|
42 |
+ <path class="cls-1" d="m117.39,62.03c-1.22.47-2.44.45-3.65.38-.65-.04-1.4.1-2.1-.52.35-.09.56-.19.78-.2,1.37-.09,2.74-.15,4.11-.23.36-.02.72-.09.88.57"/> |
|
43 |
+ <path class="cls-1" d="m118.15,60.04c.34.02.69.03,1.03.07.18.02.35.12.52.18.01.08.02.15.03.23-.26.11-.52.28-.8.31-1.88.21-3.77.48-5.63-.34.2-.01.41-.03.61-.04,1.42-.14,2.85-.28,4.28-.42,0,0-.04.02-.04.02"/> |
|
44 |
+ <path class="cls-1" d="m88.19,75.39c1.75.51,3.51,1.01,5.26,1.53.1.03.16.21.31.42-.29.08-.53.25-.71.2-1.73-.46-3.44-.97-4.95-1.96.03-.06.07-.12.1-.19"/> |
|
45 |
+ <path class="cls-1" d="m87.46,71.92c1.28.47,2.43.88,3.58,1.31.16.06.32.16.44.28.08.09.15.29.1.37-.08.13-.24.22-.39.28-.08.03-.21,0-.3-.05-1.12-.58-2.24-1.17-3.35-1.76-.04-.02-.03-.12-.08-.42"/> |
|
46 |
+ <path class="cls-1" d="m97.11,74.39c2.39.55,4.22,1.28,4.71,1.88-.2.08-.4.25-.55.21-1.45-.4-2.79-1.02-4.16-2.08"/> |
|
47 |
+ <path class="cls-1" d="m94.5,67.65c1.38.65,3,.89,3.89,2.4-.87.04-1.39-.65-2.09-.98-.69-.32-1.35-.73-2.01-1.11.07-.11.14-.21.21-.32"/> |
|
48 |
+ <path class="cls-1" d="m97.05,71.92c1.99.46,3.15,1.28,3.31,2.26-.87-.29-2.81-1.58-3.31-2.26"/> |
|
49 |
+ <path class="cls-1" d="m114.87,77.15c.2.76.06,1.04-1.58,3.24-.39-.39-.17-.78,0-1.14.37-.8.64-1.69,1.59-2.11"/> |
|
50 |
+ <path class="cls-1" d="m95.4,45.91c-1.26.62-2.37,1.56-3.83,1.66,1.33-.45,2.2-1.93,3.83-1.66"/> |
|
51 |
+ <path class="cls-1" d="m94.79,86.36c.23.96-.44,2.11-1.61,2.78-.04-.68.5-1.02.72-1.48.21-.45.18-1.07.9-1.3"/> |
|
52 |
+ <path class="cls-1" d="m86.67,68.68c.96.49,1.93.98,2.89,1.48.07.04.05.24.1.52-1.38-.18-2.18-1.12-3.18-1.7.06-.1.12-.2.19-.3"/> |
|
53 |
+ <path class="cls-1" d="m85.77,65.89c1.34-.16,2.25.27,2.57,1.19-1.08-.03-1.81-.63-2.57-1.19"/> |
|
54 |
+ <path class="cls-1" d="m60.81,37.94c-.08-.19-.27-.5-.21-.56.39-.4.81-.78,1.27-1.09.26-.17.62-.19,1.17-.34-.52,1.07-1.52,1.23-1.98,1.97-.09,0-.17.02-.26.02"/> |
|
55 |
+ <path class="cls-1" d="m64.12,37.03c-.57.4-1.12.83-1.71,1.2-.13.08-.37-.03-.56-.05.02-.19-.03-.48.08-.56.37-.26.78-.48,1.2-.64.28-.11.61-.1.92-.14.03.06.05.13.08.19"/> |
|
56 |
+ <path class="cls-1" d="m85.96,62.86c.51.12,1.03.2,1.52.37.28.1.53.33.75.54.07.06.04.27,0,.39-.03.07-.21.16-.26.13-.71-.4-1.48-.71-2.01-1.43"/> |
|
57 |
+ <path class="cls-1" d="m95.92,66.69c-.88-.46-1.59-.97-2.37-1.77,1.49.21,2.32.83,2.37,1.77"/> |
|
58 |
+ <path class="cls-1" d="m66.39,32.27c-.33.31-.67.61-.97.92-.22.24-.52.37-.69.09-.12-.2-.08-.62.05-.82.29-.44.84-.47,1.61-.19"/> |
|
59 |
+ <path class="cls-1" d="m83.93,81.69c.07,1.08-.48,1.59-1.23,2.24.07-1,.19-1.73,1.23-2.24"/> |
|
60 |
+ <path class="cls-1" d="m82.64,64.06c-.68.67-1.36,1.35-2.06,2.04-.21-.86.31-1.39,2.06-2.04"/> |
|
61 |
+ <path class="cls-1" d="m91.34,46.18c.78-.38,1.4-1.19,2.42-.98-.72.54-1.47,1.01-2.42.98"/> |
|
62 |
+ <path class="cls-1" d="m81.46,70.5c-1.04.99-1.18,1.07-1.85,1.05.36-.95.81-1.22,1.85-1.05"/> |
|
63 |
+ <path class="cls-1" d="m79.29,71.1c-.55.56-.94.98-1.37,1.35-.11.09-.37,0-.57,0,.03-.18,0-.43.1-.54.44-.44.99-.7,1.83-.81"/> |
|
64 |
+ <path class="cls-1" d="m82.08,51.95c.56-.88,1.31-.96,2.11-1.13-.35.66-1.1,1.07-2.11,1.13"/> |
|
65 |
+ <path class="cls-1" d="m83.08,54.12c-.16.7-.51,1.17-1.21,1.39-.08-.83.31-1.29,1.21-1.39"/> |
|
66 |
+ <path class="cls-1" d="m83.87,74.06c-.33.51-.55.85-.79,1.21-.62-.73-.5-.93.79-1.21"/> |
|
67 |
+ <path class="cls-1" d="m79.79,73.87c-.82-.19-1.01-.47-.68-.89.24-.3.6-.51,1.06-.88-.07.76-1.19.86-.38,1.77"/> |
|
68 |
+ <path class="cls-1" d="m96.25,72.09c-.6.49-1.06.19-1.59.07q.57-.45,1.59-.07"/> |
|
69 |
+ <path class="cls-1" d="m67.55,36.61c.23-.58.75-.56,1.34-.42-.4.23-.8.45-1.2.67-.05-.08-.09-.17-.14-.25"/> |
|
70 |
+ <path class="cls-1" d="m82.05,74.04c-.13.57-.42.62-.87.56.11-.49.37-.6.87-.56"/> |
|
71 |
+ <path class="cls-1" d="m87.56,77.46c.26.11.52.22.87.37q-.52.17-.87-.37"/> |
|
72 |
+ </g> |
|
73 |
+</svg> |
|
0 | 74 |
\ No newline at end of file |