-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
971 lines (885 loc) · 136 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>The enigma of stolen bikes</title>
<!-- Google fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet">
<style>
#scrolly {
position: relative;
padding: 1rem;
}
.scrolly-overlay {
position: relative;
padding: 0;
max-width: 35rem;
margin: 0 auto;
}
.sticky-thing {
position: -webkit-sticky;
position: sticky;
left: 0;
width: 100%;
margin: 0;
z-index: 0;
top: 0;
height: 100vh;
/* Center everything inside */
display: flex;
justify-content: center;
flex-direction: column;
justify-content: center;
}
.step {
margin: 0 auto 2rem auto;
margin-bottom: 35rem;
background-color: rgba(255, 255, 255);
color: black;
border-radius: 10px;
border: 1px solid black
}
.step:first-child {
margin-top: 5vh; /* Adjust this value as needed */
}
.step p {
text-align: center;
padding: 1rem;
font-size: 1.25rem;
font-family: Georgia, 'Times New Roman', Times, serif; /*'Courier New', Courier, monospace;*/
/*background: rgba(255, 255, 255, 0.8); */
}
.hidden { visibility: hidden; }
.header-container {
position: relative;
width: 100%;
height: 50vh; /* Adjust the height as needed */
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 2rem; /* Adjust the spacing below the header */
}
.header-title {
position: relative;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 6rem; /* Adjust font size as needed */
font-weight: bold;
color: #333; /* Text color */
text-align: center;
text-transform: uppercase; /* Optional: Uppercase letters */
padding: 0 1rem; /* Adjust padding for responsiveness */
}
.content {
max-width: 640px;
text-align: center;
margin: auto;
}
p {
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 1.4em;
line-height: 1.6;
margin: 0;
padding-bottom: 1.2em;
}
.footer {
background: #f4f4f4;
text-align: center;
width: 100%;
font-size: 0.7em;
margin-top: 4em;
padding: 4em 0;
}
figure {
margin: 0;
padding-bottom: 1.2em;
}
figcaption {
font-size: 0.8em;
text-align: center;
margin-top: 0.5em;
color: #666;
}
iframe,
img,
video {
max-width: 100%;
}
/* When it's less than 700 pixels wide, do normal scrollytelling */
@media only screen and (min-width: 700px) {
#scrolly.side-by-side {
display: flex;
}
#scrolly.side-by-side > div {
flex-basis: 0;
flex-grow: 1;
flex-shrink: 1;
padding: 0.75em;
}
#scrolly.side-by-side .scrolly-overlay {
margin-top: 70vh;
order: 0;
/* Change these to adjust sizing options */
min-width: 15rem;
max-width: 20rem;
}
#scrolly.side-by-side .sticky-thing {
order: 1;
flex-grow: 2;
}
}
/* Responsive adjustments of heading */
@media (max-width: 640px) {
.header-title {
font-size: 2rem; /* Adjust font size for smaller screens */
}
.header-container {
padding-left: 0.5em;
padding-right: 0.5em
}
}
@media (max-width: 480px) {
.header-title {
font-size: 1.5rem; /* Further adjust font size for very small screens */
}
}
</style>
<script src="https://unpkg.com/intersection-observer@0.5.1/intersection-observer.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/scrollama/3.0.4/scrollama.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/7.3.0/d3.min.js"></script>
</head>
<body>
<div class="header-container">
<h1 class="header-title">The enigma of stolen bikes in Brussels</h1>
</div>
<div class="content">
<p>Bike theft has increased dramatically in Brussels.
But the most puzzling aspect is its seasonality, unchanged for years—until now.</p>
<p style="font-size: 1em;">By <a href="mailto:ana.mpadros@gmail.com">Ana Muñoz</a> </p>
</div>
<section id="scrolly">
<div class="sticky-thing">
<div class="ai2html-container">
<!-- ai2html goes below this line -->
<!-- Generated by ai2html v0.119.7 - 2024-08-09 06:05 -->
<!-- ai file: velo.ai -->
<style media="screen,print">
#g-velo-box ,
#g-velo-box .g-artboard {
margin:0 auto;
}
#g-velo-box p {
margin:0;
}
#g-velo-box .g-aiAbs {
position:absolute;
}
#g-velo-box .g-aiImg {
position:absolute;
top:0;
display:block;
width:100% !important;
}
#g-velo-box .g-aiSymbol {
position: absolute;
box-sizing: border-box;
}
#g-velo-box .g-aiPointText p { white-space: nowrap; }
#g-velo-Mesa_de_trabajo_4 {
position:relative;
overflow:hidden;
}
#g-velo-Mesa_de_trabajo_5 {
position:relative;
overflow:hidden;
}
</style>
<div id="g-velo-box" class="ai2html">
<!-- Artboard: Mesa_de_trabajo_4 -->
<div id="g-velo-Mesa_de_trabajo_4" class="g-artboard" style="width:1289px; height:415px;" data-aspect-ratio="3.106" data-min-width="1289">
<div style=""></div>
<img id="g-velo-Mesa_de_trabajo_4-img" class="g-velo-Mesa_de_trabajo_4-img g-aiImg" alt="" src="velo-Mesa_de_trabajo_4.png"/>
<svg class="g-velo-Mesa_de_trabajo_4-interactions-img g-aiImg" id="g-velo-Mesa_de_trabajo_4-interactions-img" data-name="Capa 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" version="1.2" viewBox="0 0 1289 415">
<g id="Map">
<image id="carto" width="1805" height="1756" transform="translate(154.92 -6.24) scale(.24)" xlink:href="velo-Mesa_de_trabajo_4-interactions-1.png"/>
<g id="Berchem">
<g>
<path d="M148.236,118.888c33.697-20.641,74.677-15.873,95.277,9.929" fill="none" stroke="#666" stroke-miterlimit="10"/>
<polygon points="247.565 134.599 238.467 128.877 243.147 128.43 245.077 124.144 247.565 134.599" fill="#666" stroke-width="0"/>
</g>
<g>
<path d="M25.151,122.002h4.006c.793,0,1.384.033,1.774.099s.738.204,1.046.414.564.489.769.837.308.739.308,1.172c0,.469-.126.9-.379,1.292s-.596.686-1.029.882c.611.178,1.08.481,1.408.909s.492.932.492,1.511c0,.456-.106.899-.318,1.33s-.501.775-.868,1.032-.819.416-1.357.475c-.337.037-1.151.059-2.44.068h-3.411v-10.021ZM27.174,123.67v2.317h1.326c.789,0,1.278-.011,1.47-.034.346-.041.619-.161.817-.359s.297-.459.297-.783c0-.31-.085-.562-.256-.755s-.425-.311-.762-.352c-.201-.023-.777-.034-1.729-.034h-1.162ZM27.174,127.656v2.68h1.873c.729,0,1.192-.021,1.388-.062.301-.055.546-.188.735-.4s.284-.496.284-.851c0-.301-.073-.556-.219-.766s-.356-.362-.632-.458-.874-.144-1.794-.144h-1.634Z" fill="#000" stroke-width="0"/>
<path d="M39.445,129.713l1.914.321c-.246.702-.635,1.236-1.166,1.603s-1.195.55-1.993.55c-1.262,0-2.197-.413-2.803-1.237-.479-.661-.718-1.495-.718-2.502,0-1.203.314-2.146.943-2.827s1.424-1.022,2.386-1.022c1.08,0,1.932.356,2.557,1.07s.923,1.806.896,3.278h-4.812c.014.57.168,1.013.465,1.33s.666.475,1.107.475c.301,0,.554-.082.759-.246s.36-.428.465-.793ZM39.554,127.772c-.014-.556-.157-.979-.431-1.268s-.606-.434-.998-.434c-.419,0-.766.153-1.039.458s-.408.72-.403,1.244h2.871Z" fill="#000" stroke-width="0"/>
<path d="M44.866,132.024h-1.921v-7.26h1.784v1.032c.305-.488.58-.809.824-.964s.521-.232.831-.232c.438,0,.859.121,1.265.362l-.595,1.675c-.324-.209-.625-.314-.902-.314-.269,0-.497.074-.684.222s-.334.416-.441.803-.161,1.199-.161,2.434v2.242Z" fill="#000" stroke-width="0"/>
<path d="M54.805,126.911l-1.894.342c-.064-.378-.208-.663-.434-.854s-.519-.287-.878-.287c-.479,0-.86.165-1.145.496s-.427.883-.427,1.658c0,.861.145,1.47.434,1.825s.678.533,1.166.533c.365,0,.663-.104.896-.311s.396-.564.492-1.07l1.887.321c-.196.866-.572,1.52-1.128,1.962s-1.301.663-2.235.663c-1.062,0-1.908-.335-2.54-1.005s-.947-1.597-.947-2.782c0-1.199.317-2.132.95-2.799s1.49-1.001,2.57-1.001c.884,0,1.587.19,2.109.571s.896.96,1.125,1.74Z" fill="#000" stroke-width="0"/>
<path d="M58.175,122.002v3.685c.62-.725,1.36-1.087,2.222-1.087.442,0,.841.082,1.196.246s.623.374.803.629.303.538.369.848.099.791.099,1.442v4.259h-1.921v-3.835c0-.761-.037-1.244-.109-1.449s-.202-.368-.386-.489-.416-.181-.694-.181c-.319,0-.604.078-.854.232s-.434.389-.55.701-.174.773-.174,1.384v3.637h-1.921v-10.021h1.921Z" fill="#000" stroke-width="0"/>
<path d="M69.017,129.713l1.914.321c-.246.702-.635,1.236-1.166,1.603s-1.195.55-1.993.55c-1.262,0-2.197-.413-2.803-1.237-.479-.661-.718-1.495-.718-2.502,0-1.203.314-2.146.943-2.827s1.424-1.022,2.386-1.022c1.08,0,1.932.356,2.557,1.07s.923,1.806.896,3.278h-4.812c.014.57.168,1.013.465,1.33s.666.475,1.107.475c.301,0,.554-.082.759-.246s.36-.428.465-.793ZM69.126,127.772c-.014-.556-.157-.979-.431-1.268s-.606-.434-.998-.434c-.419,0-.766.153-1.039.458s-.408.72-.403,1.244h2.871Z" fill="#000" stroke-width="0"/>
<path d="M72.456,124.764h1.771v.991c.633-.77,1.388-1.155,2.263-1.155.465,0,.868.096,1.21.287s.622.481.841.868c.319-.387.663-.677,1.032-.868s.763-.287,1.183-.287c.533,0,.984.108,1.354.325s.645.534.827.954c.132.31.198.811.198,1.504v4.642h-1.921v-4.149c0-.72-.066-1.185-.198-1.395-.178-.273-.451-.41-.82-.41-.269,0-.522.082-.759.246s-.408.404-.513.721-.157.817-.157,1.5v3.486h-1.921v-3.979c0-.707-.034-1.162-.103-1.367s-.174-.358-.318-.458-.338-.15-.584-.15c-.296,0-.563.08-.8.239s-.407.39-.509.69-.154.8-.154,1.497v3.527h-1.921v-7.26Z" fill="#000" stroke-width="0"/>
<path d="M84.829,129.351v-1.921h3.773v1.921h-3.773Z" fill="#000" stroke-width="0"/>
<path d="M89.21,128.763l1.969-.191c.119.661.359,1.146.721,1.456s.851.465,1.466.465c.652,0,1.143-.138,1.473-.414s.496-.598.496-.967c0-.237-.069-.438-.208-.605s-.382-.311-.728-.434c-.237-.082-.777-.228-1.62-.438-1.084-.269-1.846-.599-2.283-.991-.615-.551-.923-1.224-.923-2.017,0-.51.145-.988.434-1.432s.707-.783,1.251-1.015,1.202-.349,1.972-.349c1.258,0,2.205.276,2.84.827s.97,1.288,1.001,2.208l-2.023.089c-.086-.515-.272-.885-.557-1.111s-.712-.338-1.282-.338c-.588,0-1.048.121-1.381.362-.214.155-.321.362-.321.622,0,.237.1.44.301.608.255.214.875.438,1.859.67s1.712.473,2.184.721.841.588,1.107,1.019.4.963.4,1.596c0,.574-.16,1.112-.479,1.613s-.77.874-1.354,1.118-1.31.366-2.181.366c-1.267,0-2.24-.293-2.919-.878s-1.084-1.439-1.217-2.56Z" fill="#000" stroke-width="0"/>
<path d="M100.483,126.979l-1.743-.314c.196-.702.533-1.221,1.012-1.559s1.189-.506,2.133-.506c.857,0,1.495.102,1.914.304s.714.46.885.772.256.885.256,1.719l-.021,2.242c0,.638.031,1.108.092,1.412s.177.628.345.974h-1.9c-.05-.127-.112-.317-.185-.567-.032-.114-.055-.189-.068-.226-.328.319-.679.558-1.053.718s-.772.239-1.196.239c-.748,0-1.336-.203-1.767-.608-.431-.406-.646-.918-.646-1.538,0-.41.098-.776.294-1.097s.471-.567.824-.738.862-.32,1.528-.448c.898-.168,1.52-.326,1.866-.472v-.191c0-.369-.091-.632-.273-.79s-.526-.236-1.032-.236c-.342,0-.608.067-.8.202s-.346.37-.465.708ZM103.053,128.538c-.246.082-.636.18-1.169.294s-.882.226-1.046.335c-.25.178-.376.403-.376.677,0,.269.1.501.301.697.201.196.456.294.766.294.346,0,.677-.114.991-.342.232-.173.385-.385.458-.636.05-.164.075-.476.075-.937v-.383Z" fill="#000" stroke-width="0"/>
<path d="M106.833,123.78v-1.777h1.921v1.777h-1.921ZM106.833,132.024v-7.26h1.921v7.26h-1.921Z" fill="#000" stroke-width="0"/>
<path d="M117.327,132.024h-1.921v-3.705c0-.784-.041-1.291-.123-1.521s-.215-.409-.4-.537-.407-.191-.667-.191c-.333,0-.631.091-.896.273s-.445.424-.543.725-.147.857-.147,1.668v3.288h-1.921v-7.26h1.784v1.066c.633-.82,1.431-1.23,2.393-1.23.424,0,.811.076,1.162.229s.616.348.796.584.305.506.376.807.106.731.106,1.292v4.512Z" fill="#000" stroke-width="0"/>
<path d="M122.604,124.764v1.531h-1.312v2.926c0,.592.013.938.038,1.036s.082.179.171.243.197.096.325.096c.178,0,.435-.062.772-.185l.164,1.49c-.447.191-.953.287-1.518.287-.346,0-.659-.058-.937-.174s-.482-.267-.612-.451c-.13-.185-.22-.434-.27-.749-.041-.223-.062-.674-.062-1.354v-3.165h-.882v-1.531h.882v-1.442l1.928-1.121v2.563h1.312Z" fill="#000" stroke-width="0"/>
<path d="M128.141,129.713l1.914.321c-.246.702-.635,1.236-1.166,1.603s-1.195.55-1.993.55c-1.262,0-2.197-.413-2.803-1.237-.479-.661-.718-1.495-.718-2.502,0-1.203.314-2.146.943-2.827s1.424-1.022,2.386-1.022c1.08,0,1.932.356,2.557,1.07s.923,1.806.896,3.278h-4.812c.014.57.168,1.013.465,1.33s.666.475,1.107.475c.301,0,.554-.082.759-.246s.36-.428.465-.793ZM128.25,127.772c-.014-.556-.157-.979-.431-1.268s-.606-.434-.998-.434c-.419,0-.766.153-1.039.458s-.408.72-.403,1.244h2.871Z" fill="#000" stroke-width="0"/>
<path d="M131.504,129.351v-1.921h3.773v1.921h-3.773Z" fill="#000" stroke-width="0"/>
<path d="M145.436,132.024h-2.201l-.875-2.276h-4.006l-.827,2.276h-2.146l3.903-10.021h2.14l4.013,10.021ZM141.71,128.059l-1.381-3.719-1.354,3.719h2.734Z" fill="#000" stroke-width="0"/>
<path d="M146.318,132.502l2.194.267c.037.255.121.431.253.526.182.137.469.205.861.205.501,0,.877-.075,1.128-.226.168-.1.296-.262.383-.485.059-.16.089-.454.089-.882v-1.06c-.574.784-1.299,1.176-2.174,1.176-.975,0-1.748-.413-2.317-1.237-.447-.652-.67-1.463-.67-2.434,0-1.217.293-2.146.878-2.789s1.313-.964,2.184-.964c.898,0,1.638.394,2.222,1.183v-1.019h1.798v6.515c0,.857-.071,1.497-.212,1.921s-.339.756-.595.998-.596.431-1.022.567-.965.205-1.617.205c-1.23,0-2.103-.211-2.618-.632s-.772-.956-.772-1.603c0-.064.002-.141.007-.232ZM148.034,128.244c0,.77.149,1.334.448,1.692s.667.537,1.104.537c.469,0,.866-.184,1.189-.55s.485-.91.485-1.63c0-.752-.155-1.31-.465-1.675s-.702-.547-1.176-.547c-.46,0-.84.179-1.138.537s-.448.903-.448,1.637Z" fill="#000" stroke-width="0"/>
<path d="M156.483,126.979l-1.743-.314c.196-.702.533-1.221,1.012-1.559s1.189-.506,2.133-.506c.857,0,1.495.102,1.914.304s.714.46.885.772.256.885.256,1.719l-.021,2.242c0,.638.031,1.108.092,1.412s.177.628.345.974h-1.9c-.05-.127-.112-.317-.185-.567-.032-.114-.055-.189-.068-.226-.328.319-.679.558-1.053.718s-.772.239-1.196.239c-.748,0-1.336-.203-1.767-.608-.431-.406-.646-.918-.646-1.538,0-.41.098-.776.294-1.097s.471-.567.824-.738.862-.32,1.528-.448c.898-.168,1.52-.326,1.866-.472v-.191c0-.369-.091-.632-.273-.79s-.526-.236-1.032-.236c-.342,0-.608.067-.8.202s-.346.37-.465.708ZM159.053,128.538c-.246.082-.636.18-1.169.294s-.882.226-1.046.335c-.25.178-.376.403-.376.677,0,.269.1.501.301.697.201.196.456.294.766.294.346,0,.677-.114.991-.342.232-.173.385-.385.458-.636.05-.164.075-.476.075-.937v-.383Z" fill="#000" stroke-width="0"/>
<path d="M166.163,124.764v1.531h-1.312v2.926c0,.592.013.938.038,1.036s.082.179.171.243.197.096.325.096c.178,0,.435-.062.772-.185l.164,1.49c-.447.191-.953.287-1.518.287-.346,0-.659-.058-.937-.174s-.482-.267-.612-.451c-.13-.185-.22-.434-.27-.749-.041-.223-.062-.674-.062-1.354v-3.165h-.882v-1.531h.882v-1.442l1.928-1.121v2.563h1.312Z" fill="#000" stroke-width="0"/>
<path d="M169.41,122.002v3.685c.62-.725,1.36-1.087,2.222-1.087.442,0,.841.082,1.196.246s.623.374.803.629.303.538.369.848.099.791.099,1.442v4.259h-1.921v-3.835c0-.761-.037-1.244-.109-1.449s-.202-.368-.386-.489-.416-.181-.694-.181c-.319,0-.604.078-.854.232s-.434.389-.55.701-.174.773-.174,1.384v3.637h-1.921v-10.021h1.921Z" fill="#000" stroke-width="0"/>
<path d="M180.251,129.713l1.914.321c-.246.702-.635,1.236-1.166,1.603s-1.195.55-1.993.55c-1.262,0-2.197-.413-2.803-1.237-.479-.661-.718-1.495-.718-2.502,0-1.203.314-2.146.943-2.827s1.424-1.022,2.386-1.022c1.08,0,1.932.356,2.557,1.07s.923,1.806.896,3.278h-4.812c.014.57.168,1.013.465,1.33s.666.475,1.107.475c.301,0,.554-.082.759-.246s.36-.428.465-.793ZM180.361,127.772c-.014-.556-.157-.979-.431-1.268s-.606-.434-.998-.434c-.419,0-.766.153-1.039.458s-.408.72-.403,1.244h2.871Z" fill="#000" stroke-width="0"/>
<path d="M87.922,145.351v-1.921h3.773v1.921h-3.773Z" fill="#000" stroke-width="0"/>
<path d="M97.308,148.024h-1.921v-7.239c-.702.656-1.529,1.142-2.481,1.456v-1.743c.501-.164,1.046-.475,1.634-.933s.991-.992,1.21-1.603h1.559v10.062Z" fill="#000" stroke-width="0"/>
<path d="M103.426,137.961c.971,0,1.729.346,2.276,1.039.652.82.978,2.181.978,4.081s-.328,3.258-.984,4.088c-.542.684-1.299,1.025-2.27,1.025s-1.761-.375-2.358-1.125-.896-2.086-.896-4.009c0-1.887.328-3.245.984-4.074.542-.684,1.299-1.025,2.27-1.025ZM103.426,139.554c-.232,0-.44.074-.622.222s-.324.414-.424.796c-.132.497-.198,1.333-.198,2.509s.059,1.983.178,2.423.268.732.448.878.386.219.619.219.44-.074.622-.222.324-.414.424-.796c.132-.492.198-1.326.198-2.502s-.059-1.983-.178-2.423-.268-.734-.448-.882-.386-.222-.619-.222Z" fill="#000" stroke-width="0"/>
<path d="M107.979,140.477c0-.898.197-1.563.591-1.996s.929-.649,1.603-.649c.697,0,1.243.215,1.637.646s.591,1.097.591,2-.197,1.563-.591,1.996-.929.649-1.603.649c-.697,0-1.243-.215-1.637-.646s-.591-1.097-.591-2ZM109.476,140.463c0,.652.075,1.089.226,1.312.114.164.271.246.472.246.205,0,.365-.082.479-.246.146-.223.219-.661.219-1.312s-.073-1.087-.219-1.306c-.114-.168-.273-.253-.479-.253-.201,0-.358.082-.472.246-.15.223-.226.661-.226,1.312ZM111.636,148.407h-1.422l5.339-10.575h1.381l-5.298,10.575ZM114.739,145.775c0-.898.197-1.563.591-1.996s.933-.649,1.617-.649c.688,0,1.229.216,1.624.649s.591,1.098.591,1.996-.197,1.57-.591,2.003-.929.649-1.603.649c-.697,0-1.243-.216-1.637-.649s-.591-1.101-.591-2.003ZM116.236,145.768c0,.652.075,1.087.226,1.306.114.168.271.253.472.253.205,0,.362-.082.472-.246.15-.223.226-.661.226-1.312s-.073-1.089-.219-1.312c-.114-.164-.273-.246-.479-.246s-.362.082-.472.246c-.15.223-.226.661-.226,1.312Z" fill="#000" stroke-width="0"/>
</g>
</g>
<g id="Saint">
<g>
<path d="M217.42,323.266c0-46.873,45.647-85.15,103.412-88.052" fill="none" stroke="#e6e6e6" stroke-miterlimit="10"/>
<polygon points="327.892 235.037 318.076 239.414 320.307 235.276 317.82 231.288 327.892 235.037" fill="#e6e6e6" stroke-width="0"/>
</g>
<g>
<path d="M178.424,339.168l1.969-.191c.119.66.359,1.146.721,1.456.362.31.851.465,1.466.465.652,0,1.143-.138,1.473-.414.331-.275.496-.598.496-.967,0-.237-.069-.438-.208-.605-.139-.166-.382-.311-.728-.434-.237-.082-.777-.229-1.62-.438-1.084-.27-1.846-.6-2.283-.991-.615-.552-.923-1.224-.923-2.017,0-.511.145-.988.434-1.433s.707-.782,1.251-1.015,1.202-.349,1.972-.349c1.258,0,2.205.275,2.84.827.636.551.97,1.287,1.001,2.208l-2.023.089c-.086-.516-.272-.886-.557-1.111s-.712-.338-1.282-.338c-.588,0-1.048.12-1.381.362-.214.154-.321.362-.321.622,0,.236.1.439.301.608.255.214.875.438,1.859.67s1.712.473,2.184.721c.472.249.841.588,1.107,1.019s.4.963.4,1.597c0,.574-.16,1.111-.479,1.613-.319.501-.77.874-1.354,1.117-.583.244-1.31.366-2.181.366-1.267,0-2.24-.293-2.919-.879-.679-.585-1.084-1.438-1.217-2.56Z" fill="#000" stroke-width="0"/>
<path d="M189.696,337.384l-1.743-.314c.196-.702.533-1.222,1.012-1.559.479-.338,1.189-.506,2.133-.506.857,0,1.495.102,1.914.304.419.203.714.461.885.772.171.312.256.886.256,1.72l-.021,2.242c0,.638.031,1.108.092,1.411.062.304.177.628.345.975h-1.9c-.05-.128-.112-.317-.185-.567-.032-.114-.055-.189-.068-.226-.328.318-.679.558-1.053.718-.374.159-.772.239-1.196.239-.748,0-1.336-.203-1.767-.608-.431-.406-.646-.919-.646-1.538,0-.41.098-.776.294-1.098s.471-.567.824-.738.862-.32,1.528-.447c.898-.169,1.52-.326,1.866-.472v-.191c0-.369-.091-.633-.273-.79s-.526-.235-1.032-.235c-.342,0-.608.067-.8.201-.191.135-.346.37-.465.708ZM192.267,338.942c-.246.082-.636.18-1.169.294-.533.113-.882.226-1.046.335-.25.178-.376.403-.376.677,0,.269.1.501.301.697.201.195.456.294.766.294.346,0,.677-.114.991-.342.232-.174.385-.386.458-.636.05-.164.075-.477.075-.937v-.383Z" fill="#000" stroke-width="0"/>
<path d="M196.047,334.185v-1.777h1.921v1.777h-1.921ZM196.047,342.429v-7.26h1.921v7.26h-1.921Z" fill="#000" stroke-width="0"/>
<path d="M206.54,342.429h-1.921v-3.705c0-.784-.041-1.291-.123-1.521-.082-.229-.215-.409-.4-.536-.185-.128-.407-.191-.667-.191-.333,0-.631.091-.896.273-.264.182-.445.424-.543.725s-.147.856-.147,1.668v3.288h-1.921v-7.26h1.784v1.066c.633-.82,1.431-1.23,2.393-1.23.424,0,.811.076,1.162.229.351.153.616.348.796.585.18.236.305.506.376.807s.106.731.106,1.292v4.512Z" fill="#000" stroke-width="0"/>
<path d="M211.817,335.169v1.531h-1.312v2.926c0,.592.013.938.038,1.035.025.099.082.179.171.243.089.063.197.096.325.096.178,0,.435-.062.772-.185l.164,1.49c-.447.191-.953.287-1.518.287-.346,0-.659-.059-.937-.175s-.482-.267-.612-.451-.22-.434-.27-.748c-.041-.224-.062-.675-.062-1.354v-3.165h-.882v-1.531h.882v-1.442l1.928-1.121v2.563h1.312Z" fill="#000" stroke-width="0"/>
<path d="M212.932,339.756v-1.921h3.773v1.921h-3.773Z" fill="#000" stroke-width="0"/>
<path d="M222.488,338.744v-1.688h4.361v3.992c-.424.41-1.038.771-1.842,1.083-.804.312-1.619.469-2.444.469-1.048,0-1.962-.22-2.741-.66-.779-.439-1.365-1.068-1.757-1.887-.392-.817-.588-1.708-.588-2.669,0-1.044.219-1.972.656-2.782.438-.812,1.078-1.434,1.921-1.866.643-.333,1.442-.499,2.399-.499,1.244,0,2.216.261,2.916.782.7.522,1.149,1.243,1.35,2.164l-2.01.376c-.141-.492-.407-.881-.796-1.166-.39-.284-.876-.427-1.459-.427-.884,0-1.587.28-2.109.841s-.783,1.392-.783,2.495c0,1.189.264,2.081.793,2.676s1.221.893,2.078.893c.424,0,.849-.083,1.275-.25.426-.166.792-.368,1.097-.604v-1.271h-2.317Z" fill="#000" stroke-width="0"/>
<path d="M228.702,334.185v-1.777h1.921v1.777h-1.921ZM228.702,342.429v-7.26h1.921v7.26h-1.921Z" fill="#000" stroke-width="0"/>
<path d="M232.592,342.429v-10.021h1.921v10.021h-1.921Z" fill="#000" stroke-width="0"/>
<path d="M236.481,342.429v-10.021h1.921v10.021h-1.921Z" fill="#000" stroke-width="0"/>
<path d="M244.575,340.118l1.914.321c-.246.701-.635,1.236-1.166,1.603-.531.367-1.195.551-1.993.551-1.262,0-2.197-.413-2.803-1.237-.479-.661-.718-1.495-.718-2.502,0-1.203.314-2.146.943-2.827.629-.681,1.424-1.021,2.386-1.021,1.08,0,1.932.356,2.557,1.069.625.714.923,1.806.896,3.278h-4.812c.014.569.168,1.013.465,1.329.296.317.666.476,1.107.476.301,0,.554-.082.759-.246s.36-.429.465-.793ZM244.685,338.177c-.014-.557-.157-.979-.431-1.269-.273-.289-.606-.434-.998-.434-.419,0-.766.152-1.039.458-.273.305-.408.72-.403,1.244h2.871Z" fill="#000" stroke-width="0"/>
<path d="M247.48,340.357l1.928-.294c.082.373.249.657.499.851.25.194.602.291,1.053.291.497,0,.871-.092,1.121-.273.168-.128.253-.299.253-.513,0-.146-.045-.267-.137-.362-.096-.092-.31-.176-.643-.253-1.549-.342-2.532-.654-2.946-.937-.574-.393-.861-.937-.861-1.634,0-.629.249-1.158.745-1.586.497-.429,1.267-.643,2.311-.643.994,0,1.732.161,2.215.485.483.323.816.802.998,1.436l-1.812.335c-.078-.283-.225-.499-.441-.649s-.525-.226-.926-.226c-.506,0-.868.07-1.087.212-.146.1-.219.229-.219.39,0,.137.064.253.191.349.173.127.771.308,1.794.54s1.737.517,2.143.854c.401.342.602.817.602,1.429,0,.665-.278,1.237-.834,1.716s-1.378.718-2.468.718c-.989,0-1.771-.201-2.348-.602-.577-.401-.954-.946-1.131-1.634Z" fill="#000" stroke-width="0"/>
<path d="M201.536,356.986v-2.604h-2.625v-1.798h2.625v-2.604h1.75v2.604h2.632v1.798h-2.632v2.604h-1.75Z" fill="#000" stroke-width="0"/>
<path d="M207.101,350.328v-1.784h6.569v1.395c-.542.533-1.094,1.299-1.654,2.297s-.988,2.059-1.282,3.182c-.294,1.124-.438,2.127-.434,3.012h-1.853c.032-1.386.318-2.799.858-4.238.54-1.44,1.261-2.728,2.164-3.862h-4.368Z" fill="#000" stroke-width="0"/>
<path d="M221.374,356.645v1.784h-6.733c.073-.675.292-1.313.656-1.918.365-.604,1.084-1.404,2.16-2.402.866-.807,1.397-1.354,1.593-1.641.264-.396.396-.789.396-1.176,0-.429-.115-.758-.345-.988-.23-.229-.548-.345-.954-.345-.401,0-.72.12-.957.362-.237.241-.374.643-.41,1.203l-1.914-.191c.114-1.058.472-1.816,1.073-2.276.602-.461,1.354-.69,2.256-.69.989,0,1.766.267,2.331.8s.848,1.196.848,1.989c0,.451-.081.881-.243,1.288-.162.408-.418.835-.769,1.282-.232.296-.652.722-1.258,1.278-.606.556-.99.925-1.152,1.107-.162.182-.293.359-.393.533h3.814Z" fill="#000" stroke-width="0"/>
<path d="M222.687,350.882c0-.898.197-1.563.591-1.996.394-.434.929-.649,1.603-.649.697,0,1.243.215,1.637.646.394.431.591,1.098.591,2,0,.897-.197,1.562-.591,1.996-.394.433-.929.649-1.603.649-.697,0-1.243-.216-1.637-.646s-.591-1.097-.591-1.999ZM224.184,350.868c0,.651.075,1.089.226,1.312.114.164.271.246.472.246.205,0,.365-.082.479-.246.146-.224.219-.661.219-1.312s-.073-1.087-.219-1.306c-.114-.169-.273-.253-.479-.253-.201,0-.358.082-.472.246-.15.223-.226.66-.226,1.312ZM226.344,358.812h-1.422l5.339-10.575h1.381l-5.298,10.575ZM229.447,356.18c0-.898.197-1.563.591-1.996.394-.434.933-.649,1.617-.649.688,0,1.229.216,1.624.649.394.433.591,1.098.591,1.996s-.197,1.569-.591,2.003c-.394.433-.929.649-1.603.649-.697,0-1.243-.217-1.637-.649-.394-.434-.591-1.101-.591-2.003ZM230.944,356.173c0,.651.075,1.087.226,1.306.114.168.271.253.472.253.205,0,.362-.082.472-.246.15-.224.226-.661.226-1.312s-.073-1.09-.219-1.312c-.114-.164-.273-.246-.479-.246s-.362.082-.472.246c-.15.223-.226.66-.226,1.312Z" fill="#000" stroke-width="0"/>
</g>
</g>
</g>
<g id="Communes">
<g id="communes-2023">
<rect x="845.666" y="165.649" width="206.516" height="206.516" fill="none" stroke-width="0"/>
<path d="M948.924,165.649c57.028.001,103.257,46.232,103.256,103.26-.001,57.028-46.232,103.257-103.26,103.256-5.689,0-11.369-.47-16.981-1.406l16.985-101.852v-103.258Z" fill="#ff7c63" stroke="#fff" stroke-linejoin="bevel" stroke-width=".5"/>
<path d="M931.938,370.759c-56.251-9.38-94.248-62.584-84.869-118.835,8.302-49.787,51.38-86.276,101.854-86.275v103.258l-16.985,101.852Z" fill="#c71e1d" stroke="#fff" stroke-linejoin="bevel" stroke-width=".5"/>
<image width="1228" height="1774" transform="translate(798.12 -14.88) scale(.24)" xlink:href="velo-Mesa_de_trabajo_4-interactions-2.png"/>
<g isolation="isolate">
<path d="M992.42,279.331l1.721-.146c.127.838.424,1.467.887,1.889.465.422,1.025.633,1.68.633.789,0,1.457-.297,2.003-.892.546-.595.819-1.384.819-2.367,0-.934-.262-1.672-.788-2.212-.525-.54-1.212-.81-2.062-.81-.528,0-1.005.12-1.429.36-.425.24-.759.551-1.001.933l-1.539-.2,1.293-6.856h6.637v1.566h-5.326l-.719,3.587c.801-.558,1.642-.838,2.522-.838,1.165,0,2.149.404,2.95,1.211.801.807,1.202,1.845,1.202,3.114,0,1.208-.352,2.252-1.056,3.132-.856,1.081-2.024,1.621-3.505,1.621-1.214,0-2.205-.34-2.973-1.02-.767-.68-1.206-1.581-1.315-2.704Z" fill="#fff" stroke-width="0"/>
<path d="M1002.799,279.303l1.639-.219c.188.929.508,1.598.96,2.007.453.41,1.003.615,1.653.615.771,0,1.422-.267,1.952-.801.531-.534.797-1.196.797-1.985,0-.752-.246-1.373-.737-1.862-.492-.488-1.117-.733-1.875-.733-.31,0-.695.061-1.156.182l.182-1.438c.109.012.197.018.264.018.698,0,1.326-.182,1.885-.546s.838-.925.838-1.684c0-.601-.204-1.098-.61-1.493-.406-.394-.932-.592-1.575-.592-.637,0-1.169.2-1.593.601s-.698,1.001-.819,1.803l-1.639-.291c.2-1.098.656-1.95,1.366-2.554.71-.604,1.593-.906,2.649-.906.728,0,1.399.156,2.012.469.613.313,1.082.739,1.407,1.279.324.54.487,1.114.487,1.721,0,.577-.155,1.102-.464,1.575s-.768.85-1.375,1.129c.789.182,1.402.56,1.839,1.133s.656,1.292.656,2.153c0,1.165-.425,2.153-1.275,2.963s-1.924,1.215-3.223,1.215c-1.171,0-2.144-.349-2.918-1.047-.773-.698-1.215-1.602-1.324-2.713Z" fill="#fff" stroke-width="0"/>
<path d="M1013.469,272.685c0-.953.24-1.763.719-2.431.479-.668,1.174-1.001,2.085-1.001.838,0,1.531.299,2.08.897.55.598.824,1.477.824,2.636,0,1.129-.278,1.998-.833,2.608-.556.61-1.24.915-2.053.915-.807,0-1.479-.3-2.017-.901-.536-.601-.805-1.508-.805-2.722ZM1016.319,270.381c-.406,0-.745.176-1.015.528-.271.352-.406.999-.406,1.939,0,.856.137,1.458.41,1.807.273.349.61.523,1.011.523.413,0,.754-.176,1.025-.528.27-.352.405-.995.405-1.93,0-.862-.137-1.467-.41-1.816-.273-.349-.613-.523-1.02-.523ZM1016.328,283.318l7.302-14.066h1.329l-7.274,14.066h-1.357ZM1022.1,279.695c0-.959.24-1.771.719-2.435s1.178-.997,2.094-.997c.838,0,1.531.299,2.081.897.549.598.824,1.477.824,2.636,0,1.129-.277,1.998-.833,2.608-.555.61-1.242.915-2.062.915-.807,0-1.479-.302-2.017-.906-.536-.604-.805-1.51-.805-2.718ZM1024.959,277.391c-.413,0-.754.176-1.024.528-.271.352-.406.999-.406,1.939,0,.85.137,1.451.41,1.803.273.352.61.528,1.011.528.419,0,.763-.176,1.033-.528.271-.352.406-.995.406-1.93,0-.862-.137-1.467-.41-1.816-.273-.349-.613-.523-1.02-.523Z" fill="#fff" stroke-width="0"/>
</g>
<g isolation="isolate">
<path d="M870.605,270.609v-3.196h-5.79v-1.502l6.091-8.649h1.338v8.649h1.803v1.502h-1.803v3.196h-1.639ZM870.605,265.911v-6.018l-4.179,6.018h4.179Z" fill="#fff" stroke-width="0"/>
<path d="M875.831,259.01v-1.575h8.64v1.275c-.85.905-1.692,2.106-2.526,3.605-.835,1.499-1.48,3.041-1.935,4.625-.328,1.117-.537,2.34-.628,3.669h-1.684c.018-1.05.224-2.318.619-3.806.395-1.487.96-2.921,1.698-4.302.737-1.381,1.521-2.545,2.353-3.491h-6.537Z" fill="#fff" stroke-width="0"/>
<path d="M886.401,260.467c0-.953.24-1.763.719-2.431.479-.668,1.174-1.001,2.085-1.001.838,0,1.531.299,2.08.897.55.598.824,1.477.824,2.636,0,1.129-.278,1.998-.833,2.608-.556.61-1.24.915-2.053.915-.807,0-1.479-.3-2.017-.901-.536-.601-.805-1.508-.805-2.722ZM889.251,258.163c-.406,0-.745.176-1.015.528-.271.352-.406.999-.406,1.939,0,.856.137,1.458.41,1.807.273.349.61.523,1.011.523.413,0,.754-.176,1.025-.528.27-.352.405-.995.405-1.93,0-.862-.137-1.467-.41-1.816-.273-.349-.613-.523-1.02-.523ZM889.26,271.1l7.302-14.066h1.329l-7.274,14.066h-1.357ZM895.032,267.477c0-.959.24-1.771.719-2.435s1.178-.997,2.094-.997c.838,0,1.531.299,2.081.897.549.598.824,1.477.824,2.636,0,1.129-.277,1.998-.833,2.608-.555.61-1.242.915-2.062.915-.807,0-1.479-.302-2.017-.906-.536-.604-.805-1.51-.805-2.718ZM897.891,265.174c-.413,0-.754.176-1.024.528-.271.352-.406.999-.406,1.939,0,.85.137,1.451.41,1.803.273.352.61.528,1.011.528.419,0,.763-.176,1.033-.528.271-.352.406-.995.406-1.93,0-.862-.137-1.467-.41-1.816-.273-.349-.613-.523-1.02-.523Z" fill="#fff" stroke-width="0"/>
</g>
<g>
<path d="M938.482,410.4h3.032v1.283h-5.468l2.826-3.803c.277-.379.51-.707.699-.984.188-.277.33-.51.43-.697.199-.367.3-.697.3-.99,0-.422-.134-.775-.4-1.061-.268-.285-.599-.428-.991-.428-.823,0-1.295.541-1.414,1.623h-1.223c.196-1.906,1.062-2.859,2.6-2.859.742,0,1.363.262,1.867.785.506.523.759,1.172.759,1.945,0,.492-.118.975-.354,1.447-.119.246-.294.538-.524.876s-.521.737-.873,1.198l-1.266,1.664Z" fill="#000" stroke-width="0"/>
<path d="M942.902,407.102c0-1.441.302-2.592.906-3.451.541-.777,1.197-1.166,1.967-1.166s1.426.389,1.967,1.166c.605.859.908,2.029.908,3.51s-.303,2.645-.908,3.504c-.541.777-1.195,1.166-1.961,1.166s-1.424-.389-1.973-1.166c-.604-.859-.906-2.047-.906-3.562ZM944.109,407.107c0,1.004.156,1.838.469,2.502.313.652.713.979,1.197.979s.881-.326,1.197-.979c.316-.648.475-1.467.475-2.455s-.158-1.809-.475-2.461c-.316-.648-.715-.973-1.197-.973-.479,0-.875.324-1.191.973-.316.645-.475,1.449-.475,2.414Z" fill="#000" stroke-width="0"/>
<path d="M951.813,410.4h3.032v1.283h-5.469l2.827-3.803c.277-.379.511-.707.698-.984.188-.277.332-.51.43-.697.201-.367.301-.697.301-.99,0-.422-.133-.775-.4-1.061s-.598-.428-.992-.428c-.822,0-1.293.541-1.412,1.623h-1.225c.197-1.906,1.064-2.859,2.601-2.859.741,0,1.364.262,1.866.785.507.523.76,1.172.76,1.945,0,.492-.117.975-.354,1.447-.119.246-.295.538-.524.876-.23.338-.521.737-.873,1.198l-1.266,1.664Z" fill="#000" stroke-width="0"/>
<path d="M958.568,407.482v-1.166c.521,0,.871-.064,1.05-.193.319-.227.479-.59.479-1.09,0-.387-.115-.701-.348-.943-.229-.246-.525-.369-.891-.369-.342,0-.605.092-.791.275-.18.188-.313.504-.401.949h-1.224c.127-.852.387-1.476.781-1.872.393-.396.943-.595,1.65-.595.713,0,1.295.234,1.745.703.45.465.675,1.064.675,1.799,0,.828-.295,1.473-.886,1.934.675.441,1.013,1.158,1.013,2.15,0,.812-.246,1.477-.738,1.992s-1.123.773-1.893.773c-.981,0-1.709-.4-2.184-1.201-.197-.336-.322-.801-.375-1.395h1.188c.062.438.217.772.461,1.005s.562.349.957.349.726-.146.986-.439c.26-.301.391-.682.391-1.143,0-.609-.195-1.043-.586-1.301-.229-.148-.582-.223-1.061-.223Z" fill="#000" stroke-width="0"/>
</g>
</g>
<g id="communes-2013">
<rect id="square-orange" x="455.465" y="19.08" width="15.799" height="15.799" fill="#ff7c63" stroke-width="0"/>
<rect id="square-red" x="455.465" y="-.076" width="15.799" height="15.799" fill="#c71e1d" stroke-width="0"/>
<rect x="212.321" y="165.649" width="206.173" height="206.173" fill="none" stroke-width="0"/>
<path d="M315.407,165.649c58.548,0,105.696,48.808,102.975,107.955-2.429,52.811-45.294,95.677-98.106,98.106-59.147,2.721-107.956-44.426-107.956-102.974,0-20.025,5.832-39.616,16.784-56.38l86.302,56.38v-103.087Z" fill="#ff7c63" stroke="#fff" stroke-linejoin="bevel" stroke-width=".5"/>
<path d="M229.105,212.356c19.037-29.141,51.494-46.707,86.302-46.707v103.087l-86.302-56.38Z" fill="#c71e1d" stroke="#fff" stroke-linejoin="bevel" stroke-width=".5"/>
<image width="1228" height="1775" transform="translate(163.8 -15.84) scale(.24)" xlink:href="velo-Mesa_de_trabajo_4-interactions-3.png"/>
<g isolation="isolate">
<path d="M271.286,221.406h-1.639v-10.443c-.395.377-.912.753-1.552,1.129-.641.377-1.215.659-1.725.847v-1.584c.916-.431,1.717-.953,2.404-1.566.686-.613,1.171-1.208,1.457-1.784h1.056v13.401Z" fill="#fff" stroke-width="0"/>
<path d="M283.986,211.327l-1.63.127c-.146-.643-.352-1.111-.619-1.402-.443-.467-.989-.701-1.639-.701-.522,0-.98.146-1.375.437-.516.377-.923.926-1.22,1.648-.298.723-.452,1.751-.464,3.086.394-.601.877-1.047,1.448-1.338.57-.291,1.168-.437,1.794-.437,1.093,0,2.022.402,2.79,1.206.768.804,1.152,1.844,1.152,3.118,0,.838-.181,1.616-.542,2.335-.361.719-.857,1.27-1.489,1.652-.632.382-1.347.574-2.149.574-1.366,0-2.48-.502-3.341-1.507-.862-1.004-1.293-2.66-1.293-4.966,0-2.579.476-4.455,1.429-5.626.831-1.02,1.951-1.53,3.359-1.53,1.05,0,1.91.295,2.581.883.67.589,1.073,1.402,1.206,2.44ZM277.295,217.081c0,.564.12,1.105.36,1.621.24.516.575.909,1.006,1.179.431.27.883.405,1.357.405.692,0,1.287-.279,1.784-.838.497-.558.747-1.317.747-2.276,0-.922-.246-1.649-.737-2.18-.492-.531-1.111-.797-1.857-.797-.741,0-1.369.266-1.885.797-.516.531-.774,1.228-.774,2.089Z" fill="#fff" stroke-width="0"/>
<path d="M286.162,211.263c0-.953.24-1.763.719-2.431.479-.668,1.174-1.001,2.085-1.001.838,0,1.531.299,2.08.897.549.598.824,1.477.824,2.636,0,1.129-.278,1.998-.833,2.608s-1.24.915-2.053.915c-.807,0-1.479-.3-2.017-.901s-.806-1.508-.806-2.722ZM289.012,208.96c-.407,0-.745.176-1.015.528-.27.352-.405.999-.405,1.939,0,.856.137,1.458.41,1.807.273.349.61.523,1.011.523.413,0,.754-.176,1.024-.528.27-.352.405-.995.405-1.93,0-.862-.137-1.467-.41-1.816-.273-.349-.613-.523-1.02-.523ZM289.021,221.897l7.302-14.066h1.329l-7.274,14.066h-1.357ZM294.793,218.274c0-.959.24-1.771.719-2.435.479-.665,1.177-.997,2.094-.997.838,0,1.531.299,2.08.897.549.598.824,1.477.824,2.636,0,1.129-.278,1.998-.833,2.608s-1.243.915-2.062.915c-.807,0-1.479-.302-2.017-.906s-.806-1.51-.806-2.718ZM297.652,215.97c-.413,0-.754.176-1.024.528-.27.352-.405.999-.405,1.939,0,.85.137,1.451.41,1.803.273.352.61.528,1.011.528.419,0,.763-.176,1.033-.528.27-.352.405-.995.405-1.93,0-.862-.137-1.467-.41-1.816-.273-.349-.613-.523-1.02-.523Z" fill="#fff" stroke-width="0"/>
</g>
<g isolation="isolate">
<path d="M345.171,314.251c-.68-.249-1.184-.604-1.511-1.065-.328-.461-.492-1.013-.492-1.657,0-.971.349-1.787,1.047-2.449.698-.661,1.626-.992,2.786-.992,1.165,0,2.103.339,2.813,1.015.71.677,1.065,1.501,1.065,2.472,0,.619-.163,1.158-.487,1.616-.325.459-.818.812-1.479,1.061.819.267,1.443.698,1.871,1.293.428.595.642,1.305.642,2.13,0,1.141-.404,2.1-1.211,2.877-.807.777-1.87,1.165-3.186,1.165s-2.38-.39-3.186-1.17c-.807-.78-1.211-1.753-1.211-2.918,0-.868.22-1.594.66-2.18.44-.586,1.066-.985,1.88-1.197ZM344.315,317.638c0,.468.11.92.332,1.357.221.437.551.776.988,1.015.437.24.907.36,1.411.36.783,0,1.429-.252,1.939-.756.51-.504.765-1.144.765-1.921,0-.789-.263-1.441-.788-1.957-.525-.516-1.182-.774-1.971-.774-.771,0-1.41.255-1.916.765-.507.51-.76,1.147-.76,1.912ZM344.843,311.474c0,.632.203,1.147.61,1.548.406.401.934.601,1.584.601.631,0,1.148-.199,1.552-.596.403-.397.605-.884.605-1.461,0-.601-.208-1.106-.624-1.516-.416-.41-.933-.615-1.552-.615-.625,0-1.144.2-1.557.601-.413.401-.619.88-.619,1.438Z" fill="#fff" stroke-width="0"/>
<path d="M358.272,321.489v-3.196h-5.79v-1.502l6.091-8.649h1.338v8.649h1.803v1.502h-1.803v3.196h-1.639ZM358.272,316.791v-6.018l-4.179,6.018h4.179Z" fill="#fff" stroke-width="0"/>
<path d="M363.698,311.347c0-.953.24-1.763.719-2.431.479-.668,1.174-1.001,2.085-1.001.838,0,1.531.299,2.08.897.549.598.824,1.477.824,2.636,0,1.129-.278,1.998-.833,2.608s-1.24.915-2.053.915c-.807,0-1.479-.3-2.017-.901s-.806-1.508-.806-2.722ZM366.548,309.043c-.407,0-.745.176-1.015.528-.27.352-.405.999-.405,1.939,0,.856.137,1.458.41,1.807.273.349.61.523,1.011.523.413,0,.754-.176,1.024-.528.27-.352.405-.995.405-1.93,0-.862-.137-1.467-.41-1.816-.273-.349-.613-.523-1.02-.523ZM366.557,321.98l7.302-14.066h1.329l-7.274,14.066h-1.357ZM372.329,318.357c0-.959.24-1.771.719-2.435.479-.665,1.177-.997,2.094-.997.838,0,1.531.299,2.08.897.549.598.824,1.477.824,2.636,0,1.129-.278,1.998-.833,2.608s-1.243.915-2.062.915c-.807,0-1.479-.302-2.017-.906s-.806-1.51-.806-2.718ZM375.188,316.054c-.413,0-.754.176-1.024.528-.27.352-.405.999-.405,1.939,0,.85.137,1.451.41,1.803.273.352.61.528,1.011.528.419,0,.763-.176,1.033-.528.27-.352.405-.995.405-1.93,0-.862-.137-1.467-.41-1.816-.273-.349-.613-.523-1.02-.523Z" fill="#fff" stroke-width="0"/>
</g>
<g>
<path d="M301.6,410.288h3.032v1.283h-5.468l2.827-3.803c.277-.379.51-.707.699-.984.188-.277.331-.51.43-.697.2-.367.3-.697.3-.99,0-.422-.133-.775-.4-1.061-.268-.285-.598-.428-.992-.428-.823,0-1.294.541-1.413,1.623h-1.224c.197-1.906,1.063-2.859,2.6-2.859.742,0,1.364.262,1.867.785.506.523.759,1.172.759,1.945,0,.492-.118.975-.354,1.447-.119.246-.294.538-.524.876-.23.338-.521.737-.873,1.198l-1.266,1.664Z" fill="#000" stroke-width="0"/>
<path d="M306.019,406.989c0-1.441.302-2.592.907-3.451.542-.777,1.197-1.166,1.967-1.166s1.425.389,1.967,1.166c.604.859.907,2.029.907,3.51s-.303,2.645-.907,3.504c-.542.777-1.195,1.166-1.962,1.166s-1.424-.389-1.972-1.166c-.604-.859-.907-2.047-.907-3.562ZM307.227,406.995c0,1.004.156,1.838.469,2.502.313.652.712.979,1.197.979.481,0,.88-.326,1.197-.979.316-.648.475-1.467.475-2.455s-.158-1.809-.475-2.461c-.316-.648-.715-.973-1.197-.973-.479,0-.875.324-1.192.973-.316.645-.475,1.449-.475,2.414Z" fill="#000" stroke-width="0"/>
<path d="M314.319,403.802h-1.408l.675-1.277h1.961v9.047h-1.229v-7.77Z" fill="#000" stroke-width="0"/>
<path d="M320.078,407.37v-1.166c.52,0,.87-.064,1.049-.193.32-.227.48-.59.48-1.09,0-.387-.116-.701-.348-.943-.229-.246-.525-.369-.891-.369-.341,0-.604.092-.791.275-.179.188-.313.504-.401.949h-1.223c.126-.852.387-1.476.78-1.872s.944-.595,1.65-.595c.714,0,1.295.234,1.746.703.45.465.675,1.064.675,1.799,0,.828-.295,1.473-.886,1.934.675.441,1.013,1.158,1.013,2.15,0,.812-.246,1.477-.738,1.992s-1.124.773-1.893.773c-.981,0-1.709-.4-2.184-1.201-.197-.336-.321-.801-.374-1.395h1.187c.063.438.217.772.461,1.005.244.232.563.349.957.349.397,0,.726-.146.986-.439.26-.301.391-.682.391-1.143,0-.609-.195-1.043-.585-1.301-.229-.148-.582-.223-1.06-.223Z" fill="#000" stroke-width="0"/>
</g>
</g>
<g id="communes-2018">
<g id="communes-2018-2" data-name="communes-2018">
<rect x="528.842" y="164.802" width="206.516" height="206.516" fill="none" stroke-width="0"/>
<path d="M632.1,164.802c57.028,0,103.258,46.23,103.259,103.257,0,57.028-46.23,103.258-103.257,103.259-57.028,0-103.258-46.23-103.259-103.257,0-31.844,14.692-61.906,39.817-81.471l63.441,81.47v-103.258Z" fill="#ff7c63" stroke="#fff" stroke-linejoin="bevel" stroke-width=".5"/>
<path d="M568.659,186.589c18.133-14.12,40.458-21.788,63.441-21.788v103.258l-63.441-81.47Z" fill="#c71e1d" stroke="#fff" stroke-linejoin="bevel" stroke-width=".5"/>
<image width="1228" height="1775" transform="translate(481.08 -16.8) scale(.24)" xlink:href="velo-Mesa_de_trabajo_4-interactions-4.png"/>
<g isolation="isolate">
<path d="M661.731,314.23c-.68-.249-1.184-.604-1.511-1.065-.328-.461-.492-1.013-.492-1.657,0-.971.349-1.787,1.047-2.449.698-.661,1.626-.992,2.786-.992,1.165,0,2.103.339,2.813,1.015.71.677,1.065,1.501,1.065,2.472,0,.619-.162,1.158-.487,1.616-.324.459-.818.812-1.479,1.061.819.267,1.443.698,1.871,1.293.427.595.641,1.305.641,2.13,0,1.141-.404,2.1-1.211,2.877-.807.777-1.87,1.165-3.186,1.165s-2.38-.39-3.186-1.17c-.807-.78-1.211-1.753-1.211-2.918,0-.868.22-1.594.66-2.18.44-.586,1.067-.985,1.88-1.197ZM660.875,317.617c0,.468.111.92.333,1.357.221.437.55.776.987,1.015.437.24.907.36,1.411.36.783,0,1.429-.252,1.939-.756.51-.504.765-1.144.765-1.921,0-.789-.262-1.441-.787-1.957-.526-.516-1.183-.774-1.971-.774-.771,0-1.41.255-1.917.765-.507.51-.76,1.147-.76,1.912ZM661.403,311.453c0,.632.204,1.147.61,1.548s.934.601,1.584.601c.632,0,1.149-.199,1.552-.596.404-.397.606-.884.606-1.461,0-.601-.208-1.106-.624-1.516-.415-.41-.933-.615-1.552-.615-.625,0-1.144.2-1.557.601s-.619.88-.619,1.438Z" fill="#fff" stroke-width="0"/>
<path d="M669.825,318.382l1.575-.146c.133.741.388,1.278.765,1.611.377.334.859.501,1.448.501.504,0,.945-.115,1.324-.346.38-.231.691-.538.934-.924.243-.385.446-.906.61-1.561s.246-1.323.246-2.003c0-.073-.003-.182-.009-.328-.328.522-.776.946-1.343,1.27-.567.325-1.182.487-1.843.487-1.105,0-2.039-.401-2.804-1.202s-1.147-1.857-1.147-3.168c0-1.353.399-2.443,1.198-3.268.798-.825,1.798-1.238,2.999-1.238.868,0,1.662.234,2.38.701.72.468,1.266,1.133,1.639,1.998.374.865.56,2.117.56,3.756,0,1.706-.185,3.064-.555,4.074-.37,1.011-.921,1.78-1.652,2.308-.732.528-1.589.792-2.572.792-1.044,0-1.897-.29-2.558-.869-.661-.579-1.059-1.394-1.193-2.444ZM676.535,312.491c0-.941-.251-1.687-.751-2.24-.502-.552-1.103-.828-1.808-.828-.728,0-1.362.298-1.903.892-.54.595-.81,1.366-.81,2.312,0,.85.257,1.54.77,2.071.512.531,1.145.797,1.898.797.759,0,1.382-.265,1.871-.797.488-.531.732-1.267.732-2.208Z" fill="#fff" stroke-width="0"/>
<path d="M680.258,311.326c0-.953.24-1.763.719-2.431.479-.668,1.174-1.001,2.085-1.001.838,0,1.531.299,2.08.897.55.598.824,1.477.824,2.636,0,1.129-.278,1.998-.833,2.608-.556.61-1.24.915-2.053.915-.807,0-1.479-.3-2.017-.901-.536-.601-.805-1.508-.805-2.722ZM683.108,309.023c-.406,0-.745.176-1.015.528-.271.352-.406.999-.406,1.939,0,.856.137,1.458.41,1.807.273.349.61.523,1.011.523.413,0,.754-.176,1.025-.528.27-.352.405-.995.405-1.93,0-.862-.137-1.467-.41-1.816-.273-.349-.613-.523-1.02-.523ZM683.117,321.96l7.302-14.066h1.329l-7.274,14.066h-1.357ZM688.889,318.336c0-.959.24-1.771.719-2.435.479-.665,1.178-.997,2.094-.997.838,0,1.531.299,2.081.897.549.598.824,1.477.824,2.636,0,1.129-.277,1.998-.833,2.608-.555.61-1.242.915-2.062.915-.807,0-1.479-.302-2.017-.906-.536-.604-.805-1.51-.805-2.718ZM691.748,316.033c-.413,0-.754.176-1.024.528-.271.352-.406.999-.406,1.939,0,.85.137,1.451.41,1.803.273.352.61.528,1.011.528.419,0,.763-.176,1.033-.528.271-.352.406-.995.406-1.93,0-.862-.137-1.467-.41-1.816-.273-.349-.613-.523-1.02-.523Z" fill="#fff" stroke-width="0"/>
</g>
<g isolation="isolate">
<path d="M595.76,211.341h-1.639v-10.443c-.395.377-.912.753-1.552,1.129-.641.377-1.216.659-1.726.847v-1.584c.916-.431,1.717-.953,2.404-1.566.686-.613,1.171-1.208,1.457-1.784h1.056v13.401Z" fill="#fff" stroke-width="0"/>
<path d="M604.746,211.341h-1.639v-10.443c-.395.377-.912.753-1.552,1.129-.641.377-1.216.659-1.726.847v-1.584c.916-.431,1.717-.953,2.404-1.566.686-.613,1.171-1.208,1.457-1.784h1.056v13.401Z" fill="#fff" stroke-width="0"/>
<path d="M609.252,201.199c0-.953.24-1.763.719-2.431.479-.668,1.174-1.001,2.085-1.001.838,0,1.531.299,2.08.897.55.598.824,1.477.824,2.636,0,1.129-.278,1.998-.833,2.608-.556.61-1.24.915-2.053.915-.807,0-1.479-.3-2.017-.901-.536-.601-.805-1.508-.805-2.722ZM612.102,198.895c-.406,0-.745.176-1.015.528-.271.352-.406.999-.406,1.939,0,.856.137,1.458.41,1.807.273.349.61.523,1.011.523.413,0,.754-.176,1.025-.528.27-.352.405-.995.405-1.93,0-.862-.137-1.467-.41-1.816-.273-.349-.613-.523-1.02-.523ZM612.111,211.832l7.302-14.066h1.329l-7.274,14.066h-1.357ZM617.883,208.209c0-.959.24-1.771.719-2.435s1.178-.997,2.094-.997c.838,0,1.531.299,2.081.897.549.598.824,1.477.824,2.636,0,1.129-.277,1.998-.833,2.608-.555.61-1.242.915-2.062.915-.807,0-1.479-.302-2.017-.906-.536-.604-.805-1.51-.805-2.718ZM620.742,205.905c-.413,0-.754.176-1.024.528-.271.352-.406.999-.406,1.939,0,.85.137,1.451.41,1.803.273.352.61.528,1.011.528.419,0,.763-.176,1.033-.528.271-.352.406-.995.406-1.93,0-.862-.137-1.467-.41-1.816-.273-.349-.613-.523-1.02-.523Z" fill="#fff" stroke-width="0"/>
</g>
</g>
<g>
<path d="M622.305,410.4h3.032v1.283h-5.468l2.826-3.803c.277-.379.511-.707.699-.984.188-.277.331-.51.43-.697.2-.367.3-.697.3-.99,0-.422-.133-.775-.4-1.061s-.598-.428-.991-.428c-.823,0-1.294.541-1.413,1.623h-1.224c.196-1.906,1.063-2.859,2.6-2.859.742,0,1.364.262,1.867.785.506.523.759,1.172.759,1.945,0,.492-.117.975-.354,1.447-.119.246-.294.538-.524.876s-.521.737-.873,1.198l-1.266,1.664Z" fill="#000" stroke-width="0"/>
<path d="M626.725,407.102c0-1.441.302-2.592.906-3.451.542-.777,1.197-1.166,1.968-1.166s1.425.389,1.967,1.166c.604.859.907,2.029.907,3.51s-.303,2.645-.907,3.504c-.542.777-1.195,1.166-1.962,1.166s-1.424-.389-1.973-1.166c-.604-.859-.906-2.047-.906-3.562ZM627.932,407.107c0,1.004.156,1.838.47,2.502.312.652.712.979,1.197.979.481,0,.88-.326,1.196-.979.316-.648.475-1.467.475-2.455s-.158-1.809-.475-2.461c-.316-.648-.715-.973-1.196-.973-.479,0-.876.324-1.192.973-.316.645-.475,1.449-.475,2.414Z" fill="#000" stroke-width="0"/>
<path d="M635.024,403.914h-1.408l.676-1.277h1.961v9.047h-1.229v-7.77Z" fill="#000" stroke-width="0"/>
<path d="M639.828,406.979c-.598-.469-.896-1.107-.896-1.916,0-.734.227-1.348.681-1.84.457-.492,1.024-.738,1.703-.738.675,0,1.237.246,1.688.738.45.488.675,1.104.675,1.846,0,.777-.297,1.412-.891,1.904.326.195.583.48.77.855.189.375.285.797.285,1.266,0,.801-.236,1.457-.707,1.969-.472.512-1.074.768-1.809.768-.753,0-1.373-.258-1.861-.773-.493-.516-.738-1.164-.738-1.945,0-1.016.367-1.727,1.102-2.133ZM639.934,409.064c0,.418.13.777.391,1.078.264.297.583.445.96.445.372,0,.69-.146.954-.439.264-.297.396-.652.396-1.066,0-.418-.132-.773-.396-1.066s-.582-.439-.954-.439c-.369,0-.688.146-.955.439-.264.293-.396.643-.396,1.049ZM640.087,405.057c0,.387.117.711.354.973.238.266.527.398.864.398.334,0,.62-.133.859-.398s.359-.584.359-.955-.12-.689-.359-.955-.525-.398-.859-.398-.62.133-.859.398-.358.578-.358.938Z" fill="#000" stroke-width="0"/>
</g>
</g>
<g>
<path d="M473.931,8.386l.729-.1c.02.466.107.786.262.958.156.172.371.258.646.258.203,0,.377-.047.524-.14.147-.093.249-.219.304-.379s.083-.415.083-.765v-4.207h.808v4.161c0,.511-.062.907-.185,1.188-.124.28-.319.494-.587.641-.268.147-.583.221-.943.221-.536,0-.946-.154-1.231-.462-.284-.308-.421-.766-.41-1.374Z" fill="#000" stroke-width="0"/>
<path d="M481.399,9.573c-.278.236-.545.402-.802.5s-.533.146-.827.146c-.486,0-.859-.119-1.121-.356-.261-.237-.392-.541-.392-.91,0-.217.049-.415.148-.594s.228-.323.387-.431.34-.19.54-.246c.147-.039.369-.076.667-.112.605-.072,1.051-.159,1.337-.258.003-.103.004-.168.004-.196,0-.306-.071-.521-.212-.646-.191-.169-.476-.254-.854-.254-.353,0-.613.062-.781.186s-.292.342-.373.656l-.733-.1c.066-.314.176-.567.329-.76.152-.193.373-.341.662-.446.289-.104.623-.156,1.004-.156.377,0,.684.044.92.133.236.089.409.201.521.335.111.135.189.305.233.51.025.128.037.358.037.691v1c0,.697.016,1.138.048,1.322.032.185.095.362.19.531h-.783c-.078-.155-.128-.337-.15-.545ZM481.337,7.898c-.272.111-.68.206-1.225.284-.308.044-.526.094-.654.15-.128.055-.227.137-.296.244s-.104.226-.104.356c0,.2.076.367.227.5s.373.2.664.2c.289,0,.546-.063.771-.189.225-.126.39-.299.496-.519.08-.169.121-.419.121-.75v-.275Z" fill="#000" stroke-width="0"/>
<path d="M483.257,10.119v-4.423h.674v.629c.325-.486.794-.729,1.408-.729.267,0,.511.048.735.144.224.096.391.221.502.377.111.155.189.34.233.554.027.139.042.382.042.729v2.72h-.75v-2.69c0-.306-.029-.534-.088-.686-.058-.151-.162-.272-.31-.362-.148-.09-.323-.135-.523-.135-.319,0-.595.102-.827.304s-.348.587-.348,1.154v2.416h-.75Z" fill="#000" stroke-width="0"/>
<path d="M490.9,10.119v-.65c-.344.5-.812.75-1.403.75-.261,0-.505-.05-.731-.15-.227-.1-.395-.226-.504-.377-.11-.151-.187-.337-.231-.556-.03-.147-.046-.38-.046-.7v-2.741h.75v2.453c0,.392.015.655.046.792.047.197.147.352.3.464s.341.169.566.169.436-.058.633-.173c.197-.115.337-.272.419-.471.082-.199.123-.487.123-.864v-2.37h.75v4.423h-.671Z" fill="#000" stroke-width="0"/>
<path d="M495.632,9.573c-.278.236-.545.402-.802.5s-.533.146-.827.146c-.486,0-.859-.119-1.121-.356-.261-.237-.392-.541-.392-.91,0-.217.049-.415.148-.594s.228-.323.387-.431.34-.19.54-.246c.147-.039.369-.076.667-.112.605-.072,1.051-.159,1.337-.258.003-.103.004-.168.004-.196,0-.306-.071-.521-.212-.646-.191-.169-.476-.254-.854-.254-.353,0-.613.062-.781.186s-.292.342-.373.656l-.733-.1c.066-.314.176-.567.329-.76.152-.193.373-.341.662-.446.289-.104.623-.156,1.004-.156.377,0,.684.044.92.133.236.089.409.201.521.335.111.135.189.305.233.51.025.128.037.358.037.691v1c0,.697.016,1.138.048,1.322.032.185.095.362.19.531h-.783c-.078-.155-.128-.337-.15-.545ZM495.569,7.898c-.272.111-.68.206-1.225.284-.308.044-.526.094-.654.15-.128.055-.227.137-.296.244s-.104.226-.104.356c0,.2.076.367.227.5s.373.2.664.2c.289,0,.546-.063.771-.189.225-.126.39-.299.496-.519.08-.169.121-.419.121-.75v-.275Z" fill="#000" stroke-width="0"/>
<path d="M497.481,10.119v-4.423h.675v.67c.172-.313.332-.521.477-.621.146-.1.306-.15.481-.15.253,0,.51.081.771.242l-.258.696c-.183-.108-.366-.163-.549-.163-.164,0-.311.049-.442.148-.13.099-.224.235-.279.41-.083.267-.125.558-.125.875v2.316h-.75Z" fill="#000" stroke-width="0"/>
<path d="M500.296,11.822l-.083-.704c.164.044.307.067.429.067.167,0,.3-.028.4-.083s.182-.133.246-.233c.047-.075.124-.261.229-.558.014-.042.036-.103.066-.183l-1.679-4.432h.808l.92,2.562c.12.325.227.667.321,1.024.086-.344.189-.68.308-1.008l.946-2.578h.75l-1.683,4.499c-.181.486-.321.82-.42,1.003-.133.247-.286.428-.458.543-.172.115-.377.173-.616.173-.145,0-.306-.03-.483-.091Z" fill="#000" stroke-width="0"/>
<path d="M508.602,9.448l.108.662c-.211.044-.4.066-.566.066-.272,0-.483-.043-.633-.129s-.255-.199-.316-.339-.092-.436-.092-.885v-2.545h-.55v-.583h.55v-1.095l.746-.45v1.545h.754v.583h-.754v2.586c0,.214.013.352.04.413s.069.11.129.146c.06.036.145.054.256.054.083,0,.193-.009.329-.029Z" fill="#000" stroke-width="0"/>
<path d="M509.056,7.907c0-.819.228-1.426.683-1.82.38-.328.844-.492,1.391-.492.608,0,1.105.199,1.491.598.386.399.579.949.579,1.652,0,.569-.085,1.017-.256,1.343-.171.326-.419.58-.746.76-.326.181-.683.271-1.068.271-.619,0-1.12-.199-1.501-.596s-.573-.969-.573-1.716ZM509.827,7.907c0,.566.124.99.371,1.272.247.282.558.423.933.423.372,0,.682-.142.929-.425s.371-.715.371-1.295c0-.547-.124-.961-.373-1.243s-.558-.423-.927-.423c-.375,0-.686.141-.933.421s-.371.704-.371,1.271Z" fill="#000" stroke-width="0"/>
<path d="M516.133,8.386l.729-.1c.02.466.107.786.262.958.156.172.371.258.646.258.203,0,.377-.047.524-.14.147-.093.249-.219.304-.379s.083-.415.083-.765v-4.207h.808v4.161c0,.511-.062.907-.185,1.188-.124.28-.319.494-.587.641-.268.147-.583.221-.943.221-.536,0-.946-.154-1.231-.462-.284-.308-.421-.766-.41-1.374Z" fill="#000" stroke-width="0"/>
<path d="M523.613,10.119v-.65c-.344.5-.812.75-1.403.75-.261,0-.505-.05-.731-.15-.227-.1-.395-.226-.504-.377-.11-.151-.187-.337-.231-.556-.03-.147-.046-.38-.046-.7v-2.741h.75v2.453c0,.392.015.655.046.792.047.197.147.352.3.464s.341.169.566.169.436-.058.633-.173c.197-.115.337-.272.419-.471.082-.199.123-.487.123-.864v-2.37h.75v4.423h-.671Z" fill="#000" stroke-width="0"/>
<path d="M525.459,10.119v-4.423h.674v.629c.325-.486.794-.729,1.408-.729.267,0,.511.048.735.144.224.096.391.221.502.377.111.155.189.34.233.554.027.139.042.382.042.729v2.72h-.75v-2.69c0-.306-.029-.534-.088-.686-.058-.151-.162-.272-.31-.362-.148-.09-.323-.135-.523-.135-.319,0-.595.102-.827.304s-.348.587-.348,1.154v2.416h-.75Z" fill="#000" stroke-width="0"/>
<path d="M533.231,8.694l.774.096c-.122.453-.348.804-.679,1.054s-.752.375-1.266.375c-.647,0-1.16-.199-1.539-.598s-.568-.958-.568-1.677c0-.744.191-1.322.575-1.732.383-.411.88-.617,1.491-.617.591,0,1.074.202,1.449.604.375.403.562.969.562,1.699,0,.045-.001.111-.004.2h-3.299c.028.486.166.858.413,1.116s.555.387.924.387c.275,0,.51-.072.704-.216.194-.145.349-.375.462-.691ZM530.77,7.482h2.47c-.033-.372-.128-.651-.283-.837-.239-.289-.548-.433-.929-.433-.344,0-.634.115-.869.346-.234.23-.364.539-.389.924Z" fill="#000" stroke-width="0"/>
</g>
<g>
<path d="M473.981,27.462l.729-.1c.02.466.107.786.262.958.156.172.371.258.646.258.203,0,.377-.047.524-.14.147-.093.249-.219.304-.379s.083-.415.083-.765v-4.207h.808v4.161c0,.511-.062.907-.185,1.188-.124.28-.319.494-.587.641-.268.147-.583.221-.943.221-.536,0-.946-.154-1.231-.462-.284-.308-.421-.766-.41-1.374Z" fill="#000" stroke-width="0"/>
<path d="M481.461,29.195v-.65c-.344.5-.812.75-1.403.75-.261,0-.505-.05-.731-.15-.227-.1-.395-.226-.504-.377-.11-.151-.187-.337-.231-.556-.03-.147-.046-.38-.046-.7v-2.741h.75v2.453c0,.392.015.655.046.792.047.197.147.352.3.464s.341.169.566.169.436-.058.633-.173c.197-.115.337-.272.419-.471.082-.199.123-.487.123-.864v-2.37h.75v4.423h-.671Z" fill="#000" stroke-width="0"/>
<path d="M483.29,29.195v-6.106h.75v6.106h-.75Z" fill="#000" stroke-width="0"/>
<path d="M485.168,30.898l-.083-.704c.164.044.307.067.429.067.167,0,.3-.028.4-.083s.182-.133.246-.233c.047-.075.124-.261.229-.558.014-.042.036-.103.066-.183l-1.679-4.432h.808l.92,2.562c.12.325.227.667.321,1.024.086-.344.189-.68.308-1.008l.946-2.578h.75l-1.683,4.499c-.181.486-.321.82-.42,1.003-.133.247-.286.428-.458.543-.172.115-.377.173-.616.173-.145,0-.306-.03-.483-.091Z" fill="#000" stroke-width="0"/>
<path d="M493.474,28.524l.108.662c-.211.044-.4.066-.566.066-.272,0-.483-.043-.633-.129s-.255-.199-.316-.339-.092-.436-.092-.885v-2.545h-.55v-.583h.55v-1.095l.746-.45v1.545h.754v.583h-.754v2.586c0,.214.013.352.04.413s.069.11.129.146c.06.036.145.054.256.054.083,0,.193-.009.329-.029Z" fill="#000" stroke-width="0"/>
<path d="M493.928,26.983c0-.819.228-1.426.683-1.82.38-.328.844-.492,1.391-.492.608,0,1.105.199,1.491.598.386.399.579.949.579,1.652,0,.569-.085,1.017-.256,1.343-.171.326-.419.58-.746.76-.326.181-.683.271-1.068.271-.619,0-1.12-.199-1.501-.596s-.573-.969-.573-1.716ZM494.699,26.983c0,.566.124.99.371,1.272.247.282.558.423.933.423.372,0,.682-.142.929-.425s.371-.715.371-1.295c0-.547-.124-.961-.373-1.243s-.558-.423-.927-.423c-.375,0-.686.141-.933.421s-.371.704-.371,1.271Z" fill="#000" stroke-width="0"/>
<path d="M501.417,29.195v-6.106h2.103c.475,0,.837.029,1.087.087.35.081.648.227.896.438.322.272.563.62.723,1.043.16.423.239.907.239,1.451,0,.464-.054.875-.163,1.233-.108.358-.247.655-.417.889-.169.235-.354.419-.556.554-.202.135-.444.237-.729.306s-.612.104-.981.104h-2.203ZM502.226,28.474h1.303c.403,0,.719-.037.948-.112s.412-.181.548-.316c.191-.192.341-.449.448-.773.107-.323.16-.715.16-1.176,0-.639-.105-1.129-.314-1.473-.209-.343-.464-.573-.764-.689-.217-.083-.565-.125-1.045-.125h-1.283v4.665Z" fill="#000" stroke-width="0"/>
<path d="M510.51,27.771l.774.096c-.122.453-.348.804-.679,1.054s-.752.375-1.266.375c-.647,0-1.16-.199-1.539-.598s-.568-.958-.568-1.677c0-.744.191-1.322.575-1.732.383-.411.88-.617,1.491-.617.591,0,1.074.202,1.449.604.375.403.562.969.562,1.699,0,.045-.001.111-.004.2h-3.299c.028.486.166.858.413,1.116s.555.387.924.387c.275,0,.51-.072.704-.216.194-.145.349-.375.462-.691ZM508.048,26.558h2.47c-.033-.372-.128-.651-.283-.837-.239-.289-.548-.433-.929-.433-.344,0-.634.115-.869.346-.234.23-.364.539-.389.924Z" fill="#000" stroke-width="0"/>
<path d="M515.112,27.575l.737.096c-.081.508-.287.906-.619,1.193-.332.287-.739.431-1.223.431-.605,0-1.092-.198-1.459-.594-.368-.396-.552-.963-.552-1.701,0-.478.079-.896.238-1.254.158-.358.399-.627.723-.806.323-.179.675-.269,1.056-.269.48,0,.873.122,1.179.365.305.243.501.588.587,1.035l-.729.113c-.069-.297-.192-.521-.369-.671-.176-.15-.39-.225-.639-.225-.378,0-.685.135-.92.406-.236.271-.354.699-.354,1.285,0,.594.114,1.026.342,1.295s.525.404.891.404c.294,0,.54-.09.737-.271s.322-.458.375-.833Z" fill="#000" stroke-width="0"/>
<path d="M519.519,27.771l.774.096c-.122.453-.348.804-.679,1.054s-.752.375-1.266.375c-.647,0-1.16-.199-1.539-.598s-.568-.958-.568-1.677c0-.744.191-1.322.575-1.732.383-.411.88-.617,1.491-.617.591,0,1.074.202,1.449.604.375.403.562.969.562,1.699,0,.045-.001.111-.004.2h-3.299c.028.486.166.858.413,1.116s.555.387.924.387c.275,0,.51-.072.704-.216.194-.145.349-.375.462-.691ZM517.058,26.558h2.47c-.033-.372-.128-.651-.283-.837-.239-.289-.548-.433-.929-.433-.344,0-.634.115-.869.346-.234.23-.364.539-.389.924Z" fill="#000" stroke-width="0"/>
<path d="M521.235,29.195v-4.423h.67v.621c.139-.216.323-.391.554-.522s.493-.198.788-.198c.328,0,.596.068.806.204.209.136.357.327.444.571.35-.517.805-.775,1.366-.775.439,0,.776.122,1.012.365.236.243.354.617.354,1.123v3.036h-.746v-2.787c0-.3-.024-.516-.073-.647-.048-.132-.137-.238-.265-.319-.127-.08-.277-.121-.45-.121-.311,0-.569.104-.774.311-.206.207-.309.538-.309.993v2.57h-.75v-2.874c0-.333-.061-.583-.183-.75-.123-.167-.322-.25-.6-.25-.211,0-.406.056-.585.167-.179.111-.309.273-.39.487s-.121.522-.121.925v2.295h-.75Z" fill="#000" stroke-width="0"/>
<path d="M529.032,29.195h-.696v-6.106h.75v2.178c.317-.397.721-.596,1.212-.596.272,0,.529.055.772.165.243.11.443.264.6.462.157.199.28.438.369.719.089.28.133.58.133.899,0,.758-.188,1.344-.562,1.758-.375.414-.825.621-1.35.621-.522,0-.932-.218-1.229-.654v.554ZM529.023,26.95c0,.531.072.914.217,1.15.236.386.555.579.958.579.328,0,.611-.142.85-.427s.358-.708.358-1.272c0-.578-.115-1.004-.344-1.279s-.506-.412-.831-.412c-.328,0-.611.142-.85.427s-.358.696-.358,1.235Z" fill="#000" stroke-width="0"/>
<path d="M536.113,27.771l.774.096c-.122.453-.348.804-.679,1.054s-.752.375-1.266.375c-.647,0-1.16-.199-1.539-.598s-.568-.958-.568-1.677c0-.744.191-1.322.575-1.732.383-.411.88-.617,1.491-.617.591,0,1.074.202,1.449.604.375.403.562.969.562,1.699,0,.045-.001.111-.004.2h-3.299c.028.486.166.858.413,1.116s.555.387.924.387c.275,0,.51-.072.704-.216.194-.145.349-.375.462-.691ZM533.651,26.558h2.47c-.033-.372-.128-.651-.283-.837-.239-.289-.548-.433-.929-.433-.344,0-.634.115-.869.346-.234.23-.364.539-.389.924Z" fill="#000" stroke-width="0"/>
<path d="M537.82,29.195v-4.423h.675v.67c.172-.313.332-.521.477-.621.146-.1.306-.15.481-.15.253,0,.51.081.771.242l-.258.696c-.183-.108-.366-.163-.549-.163-.164,0-.311.049-.442.148-.13.099-.224.235-.279.41-.083.267-.125.558-.125.875v2.316h-.75Z" fill="#000" stroke-width="0"/>
</g>
</g>
<g id="Intro">
<g id="intro-2000">
<image width="265" height="179" transform="translate(0 177)" xlink:href="velo-Mesa_de_trabajo_4-interactions-5.png"/>
<g>
<path d="M126.586,183.198h3.538v1.497h-6.38l3.297-4.437c.324-.442.596-.825.815-1.148.219-.324.386-.595.501-.813.233-.428.351-.813.351-1.155,0-.492-.156-.905-.468-1.237s-.697-.499-1.157-.499c-.959,0-1.509.631-1.648,1.894h-1.428c.23-2.224,1.241-3.336,3.033-3.336.865,0,1.591.305,2.178.916.59.611.886,1.367.886,2.27,0,.574-.138,1.137-.412,1.688-.14.287-.344.628-.612,1.022-.269.394-.608.86-1.018,1.398l-1.477,1.941Z" fill="#000" stroke-width="0"/>
<path d="M131.742,179.35c0-1.682.353-3.024,1.058-4.026.632-.907,1.397-1.36,2.295-1.36s1.663.454,2.295,1.36c.706,1.002,1.058,2.368,1.058,4.095s-.353,3.085-1.058,4.088c-.632.907-1.395,1.36-2.289,1.36s-1.661-.454-2.301-1.36c-.705-1.002-1.058-2.388-1.058-4.156ZM133.151,179.356c0,1.171.182,2.144.547,2.919.365.761.831,1.142,1.396,1.142.562,0,1.027-.38,1.396-1.142.369-.756.554-1.711.554-2.864s-.185-2.11-.554-2.871c-.369-.756-.834-1.135-1.396-1.135-.558,0-1.021.378-1.39,1.135-.369.752-.554,1.691-.554,2.816Z" fill="#000" stroke-width="0"/>
<path d="M139.518,179.35c0-1.682.353-3.024,1.058-4.026.632-.907,1.397-1.36,2.295-1.36s1.663.454,2.295,1.36c.706,1.002,1.058,2.368,1.058,4.095s-.353,3.085-1.058,4.088c-.632.907-1.395,1.36-2.289,1.36s-1.661-.454-2.301-1.36c-.705-1.002-1.058-2.388-1.058-4.156ZM140.927,179.356c0,1.171.182,2.144.547,2.919.365.761.831,1.142,1.396,1.142.562,0,1.027-.38,1.396-1.142.369-.756.554-1.711.554-2.864s-.185-2.11-.554-2.871c-.369-.756-.834-1.135-1.396-1.135-.558,0-1.021.378-1.39,1.135-.369.752-.554,1.691-.554,2.816Z" fill="#000" stroke-width="0"/>
<path d="M147.294,179.35c0-1.682.353-3.024,1.058-4.026.632-.907,1.397-1.36,2.295-1.36s1.663.454,2.295,1.36c.706,1.002,1.058,2.368,1.058,4.095s-.353,3.085-1.058,4.088c-.632.907-1.395,1.36-2.289,1.36s-1.661-.454-2.301-1.36c-.705-1.002-1.058-2.388-1.058-4.156ZM148.704,179.356c0,1.171.182,2.144.547,2.919.365.761.831,1.142,1.396,1.142.562,0,1.027-.38,1.396-1.142.369-.756.554-1.711.554-2.864s-.185-2.11-.554-2.871c-.369-.756-.834-1.135-1.396-1.135-.558,0-1.021.378-1.39,1.135-.369.752-.554,1.691-.554,2.816Z" fill="#000" stroke-width="0"/>
</g>
</g>
<g id="intro-2013">
<image width="418" height="300" transform="translate(281 80)" xlink:href="velo-Mesa_de_trabajo_4-interactions-6.png"/>
<g>
<path d="M478.525,118.879h3.537v1.497h-6.38l3.298-4.437c.324-.442.596-.825.815-1.148.219-.324.386-.595.501-.813.233-.428.351-.813.351-1.155,0-.492-.156-.905-.468-1.237s-.697-.499-1.156-.499c-.96,0-1.51.631-1.648,1.894h-1.428c.229-2.224,1.24-3.336,3.033-3.336.865,0,1.591.305,2.178.916.591.611.886,1.367.886,2.27,0,.574-.138,1.137-.412,1.688-.14.287-.344.628-.612,1.022s-.607.86-1.018,1.398l-1.477,1.941Z" fill="#000" stroke-width="0"/>
<path d="M483.681,115.031c0-1.682.353-3.024,1.058-4.026.632-.907,1.397-1.36,2.295-1.36s1.663.454,2.295,1.36c.706,1.002,1.059,2.368,1.059,4.095s-.353,3.085-1.059,4.088c-.632.907-1.395,1.36-2.288,1.36s-1.661-.454-2.302-1.36c-.705-1.002-1.058-2.388-1.058-4.156ZM485.09,115.038c0,1.171.182,2.144.547,2.919.365.761.831,1.142,1.396,1.142.562,0,1.027-.38,1.396-1.142.369-.756.554-1.711.554-2.864s-.185-2.11-.554-2.871c-.369-.756-.834-1.135-1.396-1.135-.558,0-1.021.378-1.39,1.135-.369.752-.554,1.691-.554,2.816Z" fill="#000" stroke-width="0"/>
<path d="M493.364,111.312h-1.643l.787-1.49h2.289v10.555h-1.434v-9.064Z" fill="#000" stroke-width="0"/>
<path d="M500.082,115.475v-1.36c.607,0,1.016-.075,1.225-.226.373-.264.56-.688.56-1.271,0-.451-.135-.818-.406-1.101-.267-.287-.612-.431-1.039-.431-.398,0-.706.107-.923.321-.209.219-.365.588-.468,1.107h-1.428c.148-.994.451-1.722.911-2.184.459-.462,1.101-.694,1.926-.694.832,0,1.511.273,2.036.82.525.542.787,1.242.787,2.099,0,.966-.344,1.718-1.033,2.256.787.515,1.182,1.351,1.182,2.509,0,.948-.287,1.723-.861,2.324-.575.602-1.311.902-2.209.902-1.145,0-1.993-.467-2.547-1.401-.23-.392-.376-.934-.438-1.627h1.385c.073.51.253.901.538,1.172s.657.407,1.117.407c.463,0,.847-.171,1.15-.513.303-.351.455-.795.455-1.333,0-.711-.228-1.217-.683-1.518-.268-.173-.68-.26-1.237-.26Z" fill="#000" stroke-width="0"/>
</g>
</g>
<g id="intro-2023">
<image width="573" height="409" transform="translate(716 -17)" xlink:href="velo-Mesa_de_trabajo_4-interactions-7.png"/>
<g>
<path d="M990.587,36.879h3.537v1.497h-6.38l3.298-4.437c.324-.442.596-.825.815-1.148.219-.324.386-.595.501-.813.233-.428.351-.813.351-1.155,0-.492-.156-.905-.468-1.237s-.697-.499-1.156-.499c-.96,0-1.51.631-1.648,1.894h-1.428c.229-2.224,1.24-3.336,3.033-3.336.865,0,1.591.305,2.178.916.591.611.886,1.367.886,2.27,0,.574-.138,1.137-.412,1.688-.14.287-.344.628-.612,1.022s-.607.86-1.018,1.398l-1.477,1.941Z" fill="#000" stroke-width="0"/>
<path d="M995.742,33.031c0-1.682.353-3.024,1.058-4.026.632-.907,1.397-1.36,2.295-1.36s1.663.454,2.295,1.36c.706,1.002,1.059,2.368,1.059,4.095s-.353,3.085-1.059,4.088c-.632.907-1.395,1.36-2.288,1.36s-1.661-.454-2.302-1.36c-.705-1.002-1.058-2.388-1.058-4.156ZM997.151,33.038c0,1.171.182,2.144.547,2.919.365.761.831,1.142,1.396,1.142.562,0,1.027-.38,1.396-1.142.369-.756.554-1.711.554-2.864s-.185-2.11-.554-2.871c-.369-.756-.834-1.135-1.396-1.135-.558,0-1.021.378-1.39,1.135-.369.752-.554,1.691-.554,2.816Z" fill="#000" stroke-width="0"/>
<path d="M1006.14,36.879h3.537v1.497h-6.38l3.298-4.437c.324-.442.596-.825.815-1.148.219-.324.386-.595.501-.813.233-.428.351-.813.351-1.155,0-.492-.156-.905-.468-1.237s-.697-.499-1.156-.499c-.96,0-1.51.631-1.648,1.894h-1.428c.229-2.224,1.24-3.336,3.033-3.336.865,0,1.591.305,2.178.916.591.611.886,1.367.886,2.27,0,.574-.138,1.137-.412,1.688-.14.287-.344.628-.612,1.022s-.607.86-1.018,1.398l-1.477,1.941Z" fill="#000" stroke-width="0"/>
<path d="M1014.021,33.475v-1.36c.606,0,1.015-.075,1.224-.226.374-.264.561-.688.561-1.271,0-.451-.136-.818-.406-1.101-.267-.287-.613-.431-1.04-.431-.397,0-.705.107-.923.321-.209.219-.365.588-.468,1.107h-1.427c.147-.994.451-1.722.91-2.184.46-.462,1.102-.694,1.926-.694.833,0,1.512.273,2.036.82.525.542.788,1.242.788,2.099,0,.966-.345,1.718-1.034,2.256.788.515,1.182,1.351,1.182,2.509,0,.948-.287,1.723-.861,2.324s-1.311.902-2.209.902c-1.144,0-1.993-.467-2.547-1.401-.229-.392-.375-.934-.437-1.627h1.384c.074.51.254.901.539,1.172.284.271.657.407,1.116.407.464,0,.847-.171,1.15-.513.304-.351.455-.795.455-1.333,0-.711-.228-1.217-.683-1.518-.267-.173-.679-.26-1.236-.26Z" fill="#000" stroke-width="0"/>
</g>
</g>
</g>
<style>
#g-velo-Mesa_de_trabajo_4-interactions-img rect, #g-velo-Mesa_de_trabajo_4-interactions-img circle, #g-velo-Mesa_de_trabajo_4-interactions-img path, #g-velo-Mesa_de_trabajo_4-interactions-img line, #g-velo-Mesa_de_trabajo_4-interactions-img polyline, #g-velo-Mesa_de_trabajo_4-interactions-img polygon { vector-effect: non-scaling-stroke; }
</style>
</svg>
</div>
<!-- Artboard: Mesa_de_trabajo_5 -->
<div id="g-velo-Mesa_de_trabajo_5" class="g-artboard" style="max-width: 475px;max-height: 673px" data-aspect-ratio="0.706" data-min-width="0" data-max-width="1288">
<div style="padding: 0 0 141.6842% 0;"></div>
<img id="g-velo-Mesa_de_trabajo_5-img" class="g-velo-Mesa_de_trabajo_5-img g-aiImg" alt="" src="velo-Mesa_de_trabajo_5.png"/>
<svg class="g-velo-Mesa_de_trabajo_5-interactions-img g-aiImg" id="g-velo-Mesa_de_trabajo_5-interactions-img" data-name="Capa 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="tiny" version="1.2" viewBox="0 0 475 673">
<g id="Map-mobile">
<image id="base-mobile" width="1709" height="1989" transform="translate(58.2 92.24) scale(.24)" xlink:href="velo-Mesa_de_trabajo_5-interactions-1.png"/>
<g id="Saint-mobile">
<g>
<path d="M135.292,436.108c0-41.772,40.521-75.919,91.941-78.803" fill="none" stroke="#e6e6e6" stroke-miterlimit="10"/>
<polygon points="234.292 357.108 224.489 361.513 226.708 357.369 224.209 353.388 234.292 357.108" fill="#e6e6e6" stroke-width="0"/>
</g>
<g>
<path d="M94.447,449.255l1.969-.191c.119.661.359,1.146.721,1.456s.851.465,1.466.465c.652,0,1.143-.138,1.473-.414s.496-.598.496-.967c0-.237-.069-.438-.208-.605s-.382-.311-.728-.434c-.237-.082-.777-.228-1.62-.438-1.084-.269-1.846-.599-2.283-.991-.615-.551-.923-1.224-.923-2.017,0-.51.145-.988.434-1.432s.707-.783,1.251-1.015,1.202-.349,1.972-.349c1.258,0,2.205.276,2.84.827s.97,1.288,1.001,2.208l-2.023.089c-.086-.515-.272-.885-.557-1.111s-.712-.338-1.282-.338c-.588,0-1.048.121-1.381.362-.214.155-.321.362-.321.622,0,.237.1.44.301.608.255.214.875.438,1.859.67s1.712.473,2.184.721.841.588,1.107,1.019.4.963.4,1.596c0,.574-.16,1.112-.479,1.613s-.77.874-1.354,1.118-1.31.366-2.181.366c-1.267,0-2.24-.293-2.919-.878s-1.084-1.439-1.217-2.56Z" fill="#000" stroke-width="0"/>
<path d="M105.719,447.471l-1.743-.314c.196-.702.533-1.221,1.012-1.559s1.189-.506,2.133-.506c.857,0,1.495.102,1.914.304s.714.46.885.772.256.885.256,1.719l-.021,2.242c0,.638.031,1.108.092,1.412s.177.628.345.974h-1.9c-.05-.127-.112-.317-.185-.567-.032-.114-.055-.189-.068-.226-.328.319-.679.558-1.053.718s-.772.239-1.196.239c-.748,0-1.336-.203-1.767-.608s-.646-.918-.646-1.538c0-.41.098-.776.294-1.097s.471-.567.824-.738.862-.32,1.528-.448c.898-.168,1.52-.326,1.866-.472v-.191c0-.369-.091-.632-.273-.79s-.526-.236-1.032-.236c-.342,0-.608.067-.8.202s-.346.37-.465.708ZM108.29,449.03c-.246.082-.636.18-1.169.294s-.882.226-1.046.335c-.25.178-.376.403-.376.677,0,.269.1.501.301.697s.456.294.766.294c.346,0,.677-.114.991-.342.232-.173.385-.385.458-.636.05-.164.075-.476.075-.937v-.383Z" fill="#000" stroke-width="0"/>
<path d="M112.07,444.272v-1.777h1.921v1.777h-1.921ZM112.07,452.516v-7.26h1.921v7.26h-1.921Z" fill="#000" stroke-width="0"/>
<path d="M122.563,452.516h-1.921v-3.705c0-.784-.041-1.291-.123-1.521s-.215-.409-.4-.537-.407-.191-.667-.191c-.333,0-.631.091-.896.273s-.445.424-.543.725-.147.857-.147,1.668v3.288h-1.921v-7.26h1.784v1.066c.633-.82,1.431-1.23,2.393-1.23.424,0,.811.076,1.162.229s.616.348.796.584.305.506.376.807.106.731.106,1.292v4.512Z" fill="#000" stroke-width="0"/>
<path d="M127.84,445.256v1.531h-1.312v2.926c0,.592.013.938.038,1.036s.082.179.171.243.197.096.325.096c.178,0,.435-.062.772-.185l.164,1.49c-.447.191-.953.287-1.518.287-.346,0-.659-.058-.937-.174s-.482-.267-.612-.451-.22-.434-.27-.749c-.041-.223-.062-.674-.062-1.354v-3.165h-.882v-1.531h.882v-1.442l1.928-1.121v2.563h1.312Z" fill="#000" stroke-width="0"/>
<path d="M128.955,449.843v-1.921h3.773v1.921h-3.773Z" fill="#000" stroke-width="0"/>
<path d="M138.511,448.832v-1.688h4.361v3.992c-.424.41-1.038.771-1.842,1.083s-1.619.468-2.444.468c-1.048,0-1.962-.22-2.741-.66s-1.365-1.069-1.757-1.887-.588-1.708-.588-2.669c0-1.043.219-1.971.656-2.782s1.078-1.433,1.921-1.866c.643-.333,1.442-.499,2.399-.499,1.244,0,2.216.261,2.916.783s1.149,1.243,1.35,2.164l-2.01.376c-.141-.492-.407-.881-.796-1.166s-.876-.427-1.459-.427c-.884,0-1.587.28-2.109.841s-.783,1.392-.783,2.495c0,1.189.264,2.082.793,2.676s1.221.892,2.078.892c.424,0,.849-.083,1.275-.25s.792-.368,1.097-.605v-1.271h-2.317Z" fill="#000" stroke-width="0"/>
<path d="M144.725,444.272v-1.777h1.921v1.777h-1.921ZM144.725,452.516v-7.26h1.921v7.26h-1.921Z" fill="#000" stroke-width="0"/>
<path d="M148.615,452.516v-10.021h1.921v10.021h-1.921Z" fill="#000" stroke-width="0"/>
<path d="M152.504,452.516v-10.021h1.921v10.021h-1.921Z" fill="#000" stroke-width="0"/>
<path d="M160.598,450.206l1.914.321c-.246.702-.635,1.236-1.166,1.603s-1.195.55-1.993.55c-1.262,0-2.197-.413-2.803-1.237-.479-.661-.718-1.495-.718-2.502,0-1.203.314-2.146.943-2.827s1.424-1.022,2.386-1.022c1.08,0,1.932.356,2.557,1.07s.923,1.806.896,3.278h-4.812c.014.57.168,1.013.465,1.33s.666.475,1.107.475c.301,0,.554-.082.759-.246s.36-.428.465-.793ZM160.708,448.264c-.014-.556-.157-.979-.431-1.268s-.606-.434-.998-.434c-.419,0-.766.153-1.039.458s-.408.72-.403,1.244h2.871Z" fill="#000" stroke-width="0"/>
<path d="M163.503,450.445l1.928-.294c.082.374.249.657.499.851s.602.291,1.053.291c.497,0,.871-.091,1.121-.273.168-.127.253-.298.253-.513,0-.146-.045-.267-.137-.362-.096-.091-.31-.175-.643-.253-1.549-.342-2.532-.654-2.946-.937-.574-.392-.861-.937-.861-1.634,0-.629.249-1.158.745-1.586s1.267-.643,2.311-.643c.994,0,1.732.162,2.215.485s.816.802.998,1.436l-1.812.335c-.078-.283-.225-.499-.441-.649s-.525-.226-.926-.226c-.506,0-.868.071-1.087.212-.146.1-.219.23-.219.39,0,.137.064.253.191.349.173.127.771.308,1.794.54s1.737.517,2.143.854c.401.342.602.818.602,1.429,0,.666-.278,1.237-.834,1.716s-1.378.718-2.468.718c-.989,0-1.771-.201-2.348-.602s-.954-.946-1.131-1.634Z" fill="#000" stroke-width="0"/>
<path d="M117.559,462.074v-2.604h-2.625v-1.798h2.625v-2.604h1.75v2.604h2.632v1.798h-2.632v2.604h-1.75Z" fill="#000" stroke-width="0"/>
<path d="M123.124,455.416v-1.784h6.569v1.395c-.542.533-1.094,1.299-1.654,2.297s-.988,2.059-1.282,3.182-.438,2.127-.434,3.011h-1.853c.032-1.385.318-2.798.858-4.238s1.261-2.728,2.164-3.862h-4.368Z" fill="#000" stroke-width="0"/>
<path d="M137.397,461.732v1.784h-6.733c.073-.674.292-1.313.656-1.917s1.084-1.405,2.16-2.403c.866-.807,1.397-1.354,1.593-1.641.264-.396.396-.789.396-1.176,0-.428-.115-.758-.345-.988s-.548-.345-.954-.345c-.401,0-.72.121-.957.362s-.374.643-.41,1.203l-1.914-.191c.114-1.057.472-1.816,1.073-2.276s1.354-.69,2.256-.69c.989,0,1.766.267,2.331.8s.848,1.196.848,1.989c0,.451-.081.881-.243,1.289s-.418.835-.769,1.282c-.232.296-.652.722-1.258,1.278s-.99.925-1.152,1.107-.293.36-.393.533h3.814Z" fill="#000" stroke-width="0"/>
<path d="M138.709,455.969c0-.898.197-1.563.591-1.996s.929-.649,1.603-.649c.697,0,1.243.215,1.637.646s.591,1.097.591,2-.197,1.563-.591,1.996-.929.649-1.603.649c-.697,0-1.243-.215-1.637-.646s-.591-1.097-.591-2ZM140.207,455.956c0,.652.075,1.089.226,1.312.114.164.271.246.472.246.205,0,.365-.082.479-.246.146-.223.219-.661.219-1.312s-.073-1.087-.219-1.306c-.114-.168-.273-.253-.479-.253-.201,0-.358.082-.472.246-.15.223-.226.661-.226,1.312ZM142.367,463.899h-1.422l5.339-10.575h1.381l-5.298,10.575ZM145.47,461.267c0-.898.197-1.563.591-1.996s.933-.649,1.617-.649c.688,0,1.229.216,1.624.649s.591,1.098.591,1.996-.197,1.57-.591,2.003-.929.649-1.603.649c-.697,0-1.243-.216-1.637-.649s-.591-1.101-.591-2.003ZM146.967,461.26c0,.652.075,1.087.226,1.306.114.168.271.253.472.253.205,0,.362-.082.472-.246.15-.223.226-.661.226-1.312s-.073-1.089-.219-1.312c-.114-.164-.273-.246-.479-.246s-.362.082-.472.246c-.15.223-.226.661-.226,1.312Z" fill="#000" stroke-width="0"/>
</g>
</g>
<g id="Berchem-mobile">
<g>
<path d="M92,219c4.822,28.16,27.726,48.159,52.971,47.668" fill="none" stroke="#666" stroke-miterlimit="10"/>
<polygon points="152 266 142.435 270.901 144.439 266.649 141.74 262.801 152 266" fill="#666" stroke-width="0"/>
</g>
<g>
<path d="M16.174,196.393h4.006c.793,0,1.384.033,1.774.099s.738.204,1.046.414.564.489.769.837.308.739.308,1.172c0,.469-.126.9-.379,1.292s-.596.686-1.029.882c.611.178,1.08.481,1.408.909s.492.932.492,1.511c0,.456-.106.899-.318,1.33s-.501.775-.868,1.032-.819.416-1.357.475c-.337.037-1.151.059-2.44.068h-3.411v-10.021ZM18.197,198.061v2.317h1.326c.789,0,1.278-.011,1.47-.034.346-.041.619-.161.817-.359s.297-.459.297-.783c0-.31-.085-.562-.256-.755s-.425-.311-.762-.352c-.201-.023-.777-.034-1.729-.034h-1.162ZM18.197,202.046v2.68h1.873c.729,0,1.192-.021,1.388-.062.301-.055.546-.188.735-.4s.284-.496.284-.851c0-.301-.073-.556-.219-.766s-.356-.362-.632-.458-.874-.144-1.794-.144h-1.634Z" fill="#000" stroke-width="0"/>
<path d="M30.468,204.104l1.914.321c-.246.702-.635,1.236-1.166,1.603s-1.195.55-1.993.55c-1.262,0-2.197-.413-2.803-1.237-.479-.661-.718-1.495-.718-2.502,0-1.203.314-2.146.943-2.827s1.424-1.022,2.386-1.022c1.08,0,1.932.356,2.557,1.07s.923,1.806.896,3.278h-4.812c.014.57.168,1.013.465,1.33s.666.475,1.107.475c.301,0,.554-.082.759-.246s.36-.428.465-.793ZM30.577,202.163c-.014-.556-.157-.979-.431-1.268s-.606-.434-.998-.434c-.419,0-.766.153-1.039.458s-.408.72-.403,1.244h2.871Z" fill="#000" stroke-width="0"/>
<path d="M35.889,206.415h-1.921v-7.26h1.784v1.032c.305-.488.58-.809.824-.964s.521-.232.831-.232c.438,0,.859.121,1.265.362l-.595,1.675c-.324-.209-.625-.314-.902-.314-.269,0-.497.074-.684.222s-.334.416-.441.803-.161,1.199-.161,2.434v2.242Z" fill="#000" stroke-width="0"/>
<path d="M45.828,201.301l-1.894.342c-.064-.378-.208-.663-.434-.854s-.519-.287-.878-.287c-.479,0-.86.165-1.145.496s-.427.883-.427,1.658c0,.861.145,1.47.434,1.825s.678.533,1.166.533c.365,0,.663-.104.896-.311.232-.208.396-.564.492-1.07l1.887.321c-.196.866-.572,1.52-1.128,1.962s-1.301.663-2.235.663c-1.062,0-1.908-.335-2.54-1.005s-.947-1.597-.947-2.782c0-1.199.317-2.132.95-2.799s1.49-1.001,2.57-1.001c.884,0,1.587.19,2.109.571s.896.96,1.125,1.74Z" fill="#000" stroke-width="0"/>
<path d="M49.198,196.393v3.685c.62-.725,1.36-1.087,2.222-1.087.442,0,.841.082,1.196.246s.623.374.803.629.303.538.369.848.099.791.099,1.442v4.259h-1.921v-3.835c0-.761-.037-1.244-.109-1.449s-.202-.368-.386-.489-.416-.181-.694-.181c-.319,0-.604.078-.854.232s-.434.389-.55.701-.174.773-.174,1.384v3.637h-1.921v-10.021h1.921Z" fill="#000" stroke-width="0"/>
<path d="M60.04,204.104l1.914.321c-.246.702-.635,1.236-1.166,1.603s-1.195.55-1.993.55c-1.262,0-2.197-.413-2.803-1.237-.479-.661-.718-1.495-.718-2.502,0-1.203.314-2.146.943-2.827s1.424-1.022,2.386-1.022c1.08,0,1.932.356,2.557,1.07s.923,1.806.896,3.278h-4.812c.014.57.168,1.013.465,1.33s.666.475,1.107.475c.301,0,.554-.082.759-.246s.36-.428.465-.793ZM60.149,202.163c-.014-.556-.157-.979-.431-1.268s-.606-.434-.998-.434c-.419,0-.766.153-1.039.458s-.408.72-.403,1.244h2.871Z" fill="#000" stroke-width="0"/>
<path d="M63.479,199.155h1.771v.991c.633-.77,1.388-1.155,2.263-1.155.465,0,.868.096,1.21.287s.622.481.841.868c.319-.387.663-.677,1.032-.868s.763-.287,1.183-.287c.533,0,.984.108,1.354.325s.645.534.827.954c.132.31.198.811.198,1.504v4.642h-1.921v-4.149c0-.72-.066-1.185-.198-1.395-.178-.273-.451-.41-.82-.41-.269,0-.522.082-.759.246s-.408.404-.513.721-.157.817-.157,1.5v3.486h-1.921v-3.979c0-.707-.034-1.162-.103-1.367s-.174-.358-.318-.458-.338-.15-.584-.15c-.296,0-.563.08-.8.239-.237.16-.407.39-.509.69s-.154.8-.154,1.497v3.527h-1.921v-7.26Z" fill="#000" stroke-width="0"/>
<path d="M75.852,203.742v-1.921h3.773v1.921h-3.773Z" fill="#000" stroke-width="0"/>
<path d="M80.233,203.154l1.969-.191c.119.661.359,1.146.721,1.456s.851.465,1.466.465c.652,0,1.143-.138,1.473-.414s.496-.598.496-.967c0-.237-.069-.438-.208-.605s-.382-.311-.728-.434c-.237-.082-.777-.228-1.62-.438-1.084-.269-1.846-.599-2.283-.991-.615-.551-.923-1.224-.923-2.017,0-.51.145-.988.434-1.432s.707-.783,1.251-1.015,1.202-.349,1.972-.349c1.258,0,2.205.276,2.84.827s.97,1.288,1.001,2.208l-2.023.089c-.086-.515-.272-.885-.557-1.111s-.712-.338-1.282-.338c-.588,0-1.048.121-1.381.362-.214.155-.321.362-.321.622,0,.237.1.44.301.608.255.214.875.438,1.859.67s1.712.473,2.184.721.841.588,1.107,1.019.4.963.4,1.596c0,.574-.16,1.112-.479,1.613s-.77.874-1.354,1.118-1.31.366-2.181.366c-1.267,0-2.24-.293-2.919-.878s-1.084-1.439-1.217-2.56Z" fill="#000" stroke-width="0"/>
<path d="M91.506,201.37l-1.743-.314c.196-.702.533-1.221,1.012-1.559s1.189-.506,2.133-.506c.857,0,1.495.102,1.914.304s.714.46.885.772.256.885.256,1.719l-.021,2.242c0,.638.031,1.108.092,1.412s.177.628.345.974h-1.9c-.05-.127-.112-.317-.185-.567-.032-.114-.055-.189-.068-.226-.328.319-.679.558-1.053.718s-.772.239-1.196.239c-.748,0-1.336-.203-1.767-.608s-.646-.918-.646-1.538c0-.41.098-.776.294-1.097s.471-.567.824-.738.862-.32,1.528-.448c.898-.168,1.52-.326,1.866-.472v-.191c0-.369-.091-.632-.273-.79s-.526-.236-1.032-.236c-.342,0-.608.067-.8.202s-.346.37-.465.708ZM94.076,202.928c-.246.082-.636.18-1.169.294s-.882.226-1.046.335c-.25.178-.376.403-.376.677,0,.269.1.501.301.697s.456.294.766.294c.346,0,.677-.114.991-.342.232-.173.385-.385.458-.636.05-.164.075-.476.075-.937v-.383Z" fill="#000" stroke-width="0"/>
<path d="M97.856,198.17v-1.777h1.921v1.777h-1.921ZM97.856,206.415v-7.26h1.921v7.26h-1.921Z" fill="#000" stroke-width="0"/>
<path d="M108.35,206.415h-1.921v-3.705c0-.784-.041-1.291-.123-1.521s-.215-.409-.4-.537-.407-.191-.667-.191c-.333,0-.631.091-.896.273s-.445.424-.543.725-.147.857-.147,1.668v3.288h-1.921v-7.26h1.784v1.066c.633-.82,1.431-1.23,2.393-1.23.424,0,.811.076,1.162.229s.616.348.796.584c.18.237.305.506.376.807s.106.731.106,1.292v4.512Z" fill="#000" stroke-width="0"/>
<path d="M113.627,199.155v1.531h-1.312v2.926c0,.592.013.938.038,1.036s.082.179.171.243.197.096.325.096c.178,0,.435-.062.772-.185l.164,1.49c-.447.191-.953.287-1.518.287-.346,0-.659-.058-.937-.174s-.482-.267-.612-.451-.22-.434-.27-.749c-.041-.223-.062-.674-.062-1.354v-3.165h-.882v-1.531h.882v-1.442l1.928-1.121v2.563h1.312Z" fill="#000" stroke-width="0"/>
<path d="M119.164,204.104l1.914.321c-.246.702-.635,1.236-1.166,1.603s-1.195.55-1.993.55c-1.262,0-2.197-.413-2.803-1.237-.479-.661-.718-1.495-.718-2.502,0-1.203.314-2.146.943-2.827s1.424-1.022,2.386-1.022c1.08,0,1.932.356,2.557,1.07s.923,1.806.896,3.278h-4.812c.014.57.168,1.013.465,1.33s.666.475,1.107.475c.301,0,.554-.082.759-.246s.36-.428.465-.793ZM119.273,202.163c-.014-.556-.157-.979-.431-1.268s-.606-.434-.998-.434c-.419,0-.766.153-1.039.458s-.408.72-.403,1.244h2.871Z" fill="#000" stroke-width="0"/>
<path d="M122.527,203.742v-1.921h3.773v1.921h-3.773Z" fill="#000" stroke-width="0"/>
<path d="M136.459,206.415h-2.201l-.875-2.276h-4.006l-.827,2.276h-2.146l3.903-10.021h2.14l4.013,10.021ZM132.733,202.45l-1.381-3.719-1.354,3.719h2.734Z" fill="#000" stroke-width="0"/>
<path d="M137.341,206.893l2.194.267c.037.255.121.431.253.526.182.137.469.205.861.205.501,0,.877-.075,1.128-.226.168-.1.296-.262.383-.485.059-.16.089-.454.089-.882v-1.06c-.574.784-1.299,1.176-2.174,1.176-.975,0-1.748-.413-2.317-1.237-.447-.652-.67-1.463-.67-2.434,0-1.217.293-2.146.878-2.789s1.313-.964,2.184-.964c.898,0,1.638.394,2.222,1.183v-1.019h1.798v6.515c0,.857-.071,1.497-.212,1.921s-.339.756-.595.998-.596.431-1.022.567-.965.205-1.617.205c-1.23,0-2.103-.211-2.618-.632s-.772-.956-.772-1.603c0-.064.002-.141.007-.232ZM139.057,202.634c0,.77.149,1.334.448,1.692s.667.537,1.104.537c.469,0,.866-.184,1.189-.55s.485-.91.485-1.63c0-.752-.155-1.31-.465-1.675s-.702-.547-1.176-.547c-.46,0-.84.179-1.138.537s-.448.903-.448,1.637Z" fill="#000" stroke-width="0"/>
<path d="M147.506,201.37l-1.743-.314c.196-.702.533-1.221,1.012-1.559s1.189-.506,2.133-.506c.857,0,1.495.102,1.914.304s.714.46.885.772.256.885.256,1.719l-.021,2.242c0,.638.031,1.108.092,1.412s.177.628.345.974h-1.9c-.05-.127-.112-.317-.185-.567-.032-.114-.055-.189-.068-.226-.328.319-.679.558-1.053.718s-.772.239-1.196.239c-.748,0-1.336-.203-1.767-.608s-.646-.918-.646-1.538c0-.41.098-.776.294-1.097s.471-.567.824-.738.862-.32,1.528-.448c.898-.168,1.52-.326,1.866-.472v-.191c0-.369-.091-.632-.273-.79s-.526-.236-1.032-.236c-.342,0-.608.067-.8.202s-.346.37-.465.708ZM150.076,202.928c-.246.082-.636.18-1.169.294s-.882.226-1.046.335c-.25.178-.376.403-.376.677,0,.269.1.501.301.697s.456.294.766.294c.346,0,.677-.114.991-.342.232-.173.385-.385.458-.636.05-.164.075-.476.075-.937v-.383Z" fill="#000" stroke-width="0"/>
<path d="M157.186,199.155v1.531h-1.312v2.926c0,.592.013.938.038,1.036s.082.179.171.243.197.096.325.096c.178,0,.435-.062.772-.185l.164,1.49c-.447.191-.953.287-1.518.287-.346,0-.659-.058-.937-.174s-.482-.267-.612-.451-.22-.434-.27-.749c-.041-.223-.062-.674-.062-1.354v-3.165h-.882v-1.531h.882v-1.442l1.928-1.121v2.563h1.312Z" fill="#000" stroke-width="0"/>
<path d="M160.433,196.393v3.685c.62-.725,1.36-1.087,2.222-1.087.442,0,.841.082,1.196.246s.623.374.803.629.303.538.369.848.099.791.099,1.442v4.259h-1.921v-3.835c0-.761-.037-1.244-.109-1.449s-.202-.368-.386-.489-.416-.181-.694-.181c-.319,0-.604.078-.854.232s-.434.389-.55.701-.174.773-.174,1.384v3.637h-1.921v-10.021h1.921Z" fill="#000" stroke-width="0"/>
<path d="M171.274,204.104l1.914.321c-.246.702-.635,1.236-1.166,1.603s-1.195.55-1.993.55c-1.262,0-2.197-.413-2.803-1.237-.479-.661-.718-1.495-.718-2.502,0-1.203.314-2.146.943-2.827s1.424-1.022,2.386-1.022c1.08,0,1.932.356,2.557,1.07s.923,1.806.896,3.278h-4.812c.014.57.168,1.013.465,1.33s.666.475,1.107.475c.301,0,.554-.082.759-.246s.36-.428.465-.793ZM171.384,202.163c-.014-.556-.157-.979-.431-1.268s-.606-.434-.998-.434c-.419,0-.766.153-1.039.458s-.408.72-.403,1.244h2.871Z" fill="#000" stroke-width="0"/>
<path d="M78.945,219.742v-1.921h3.773v1.921h-3.773Z" fill="#000" stroke-width="0"/>
<path d="M88.331,222.415h-1.921v-7.239c-.702.656-1.529,1.142-2.481,1.456v-1.743c.501-.164,1.046-.475,1.634-.933s.991-.992,1.21-1.603h1.559v10.062Z" fill="#000" stroke-width="0"/>
<path d="M94.449,212.352c.971,0,1.729.346,2.276,1.039.652.82.978,2.181.978,4.081s-.328,3.258-.984,4.088c-.542.684-1.299,1.025-2.27,1.025s-1.761-.375-2.358-1.125c-.597-.75-.896-2.086-.896-4.009,0-1.887.328-3.245.984-4.074.542-.684,1.299-1.025,2.27-1.025ZM94.449,213.945c-.232,0-.44.074-.622.222s-.324.414-.424.796c-.132.497-.198,1.333-.198,2.509s.059,1.983.178,2.423.268.732.448.878.386.219.619.219.44-.074.622-.222.324-.414.424-.796c.132-.492.198-1.326.198-2.502s-.059-1.983-.178-2.423-.268-.734-.448-.882-.386-.222-.619-.222Z" fill="#000" stroke-width="0"/>
<path d="M99.001,214.868c0-.898.197-1.563.591-1.996s.929-.649,1.603-.649c.697,0,1.243.215,1.637.646s.591,1.097.591,2-.197,1.563-.591,1.996-.929.649-1.603.649c-.697,0-1.243-.215-1.637-.646s-.591-1.097-.591-2ZM100.499,214.854c0,.652.075,1.089.226,1.312.114.164.271.246.472.246.205,0,.365-.082.479-.246.146-.223.219-.661.219-1.312s-.073-1.087-.219-1.306c-.114-.168-.273-.253-.479-.253-.201,0-.358.082-.472.246-.15.223-.226.661-.226,1.312ZM102.659,222.797h-1.422l5.339-10.575h1.381l-5.298,10.575ZM105.762,220.166c0-.898.197-1.563.591-1.996s.933-.649,1.617-.649c.688,0,1.229.216,1.624.649s.591,1.098.591,1.996-.197,1.57-.591,2.003-.929.649-1.603.649c-.697,0-1.243-.216-1.637-.649s-.591-1.101-.591-2.003ZM107.259,220.159c0,.652.075,1.087.226,1.306.114.168.271.253.472.253.205,0,.362-.082.472-.246.15-.223.226-.661.226-1.312s-.073-1.089-.219-1.312c-.114-.164-.273-.246-.479-.246s-.362.082-.472.246c-.15.223-.226.661-.226,1.312Z" fill="#000" stroke-width="0"/>
</g>
</g>
</g>
<g id="Communes-mobile">
<g id="communes-2023-mobile">
<rect x="280.599" y="482.575" width="160.029" height="160.029" fill="none" stroke-width="0"/>
<path d="M360.614,482.575c44.191,0,80.014,35.826,80.013,80.016,0,44.191-35.826,80.014-80.016,80.013-4.409,0-8.81-.365-13.159-1.09l13.162-78.925v-80.015Z" fill="#ff7c63" stroke="#fff" stroke-linejoin="bevel" stroke-width=".5"/>
<path d="M347.452,641.515c-43.589-7.268-73.033-48.496-65.765-92.085,6.433-38.58,39.814-66.855,78.927-66.854v80.015l-13.162,78.925Z" fill="#c71e1d" stroke="#fff" stroke-linejoin="bevel" stroke-width=".5"/>
<image width="951" height="1376" transform="translate(243.72 342.56) scale(.24)" xlink:href="velo-Mesa_de_trabajo_5-interactions-2.png"/>
<g isolation="isolate">
<path d="M395.189,592.43l1.334-.112c.099.649.328,1.137.688,1.464.36.326.793.49,1.302.49.611,0,1.129-.23,1.552-.691s.635-1.072.635-1.835c0-.723-.204-1.296-.61-1.714-.407-.418-.939-.628-1.598-.628-.409,0-.779.094-1.108.279-.329.186-.587.427-.776.723l-1.192-.156,1.001-5.313h5.143v1.214h-4.127l-.557,2.779c.621-.433,1.272-.649,1.954-.649.904,0,1.665.313,2.286.939.621.625.932,1.429.932,2.413,0,.936-.273,1.744-.819,2.426-.663.837-1.569,1.256-2.716,1.256-.941,0-1.709-.263-2.303-.79-.595-.527-.935-1.225-1.02-2.096Z" fill="#fff" stroke-width="0"/>
<path d="M403.232,592.409l1.269-.169c.146.72.394,1.239.745,1.556.35.318.777.476,1.28.476.598,0,1.102-.207,1.513-.621s.617-.927.617-1.538c0-.583-.19-1.064-.571-1.443s-.865-.568-1.453-.568c-.241,0-.539.047-.896.141l.141-1.115c.084.009.152.014.204.014.541,0,1.028-.141,1.461-.423s.65-.717.65-1.305c0-.466-.158-.851-.473-1.157-.315-.305-.723-.458-1.221-.458-.494,0-.905.155-1.234.465-.33.311-.542.776-.635,1.398l-1.27-.226c.156-.851.508-1.511,1.058-1.979.55-.468,1.234-.701,2.053-.701.564,0,1.084.121,1.559.363.474.242.838.573,1.09.991s.377.863.377,1.333c0,.447-.12.854-.36,1.221-.241.366-.595.659-1.066.875.612.141,1.086.434,1.426.878.338.445.508,1.001.508,1.669,0,.903-.329,1.668-.988,2.296-.658.627-1.49.942-2.497.942-.908,0-1.662-.27-2.261-.812-.599-.541-.942-1.241-1.026-2.102Z" fill="#fff" stroke-width="0"/>
<path d="M411.501,587.28c0-.738.185-1.366.557-1.883.372-.518.911-.776,1.615-.776.65,0,1.187.231,1.613.695.425.463.638,1.144.638,2.043,0,.875-.215,1.548-.646,2.021-.43.473-.961.709-1.591.709-.626,0-1.146-.233-1.563-.698-.417-.466-.624-1.169-.624-2.11ZM413.708,585.495c-.315,0-.577.136-.786.409-.21.273-.315.774-.315,1.503,0,.663.106,1.13.318,1.4s.473.406.783.406c.32,0,.584-.136.794-.409.209-.273.314-.771.314-1.495,0-.668-.106-1.137-.318-1.408s-.474-.406-.79-.406ZM413.715,595.52l5.659-10.9h1.03l-5.636,10.9h-1.052ZM418.189,592.712c0-.743.185-1.372.557-1.887.372-.514.912-.772,1.623-.772.649,0,1.186.231,1.612.695s.638,1.144.638,2.043c0,.875-.215,1.548-.645,2.021-.431.473-.963.709-1.598.709-.626,0-1.146-.234-1.563-.702-.417-.468-.624-1.17-.624-2.106ZM420.403,590.928c-.32,0-.584.136-.793.409-.21.273-.315.774-.315,1.503,0,.658.106,1.124.318,1.397s.473.409.783.409c.325,0,.592-.136.801-.409s.314-.771.314-1.495c0-.668-.105-1.137-.317-1.408s-.475-.406-.791-.406Z" fill="#fff" stroke-width="0"/>
</g>
<g isolation="isolate">
<path d="M315.595,542.206v-2.476h-4.487v-1.164l4.719-6.703h1.037v6.703h1.397v1.164h-1.397v2.476h-1.269ZM315.595,538.566v-4.663l-3.238,4.663h3.238Z" fill="#fff" stroke-width="0"/>
<path d="M319.645,533.218v-1.221h6.695v.988c-.658.701-1.311,1.632-1.958,2.794-.646,1.162-1.146,2.357-1.499,3.584-.254.865-.417,1.812-.487,2.843h-1.305c.014-.814.174-1.796.479-2.949.306-1.152.745-2.263,1.316-3.333.571-1.069,1.179-1.971,1.824-2.705h-5.065Z" fill="#fff" stroke-width="0"/>
<path d="M327.836,534.346c0-.738.185-1.366.557-1.883.372-.518.911-.776,1.615-.776.65,0,1.187.231,1.613.695.425.463.638,1.144.638,2.043,0,.875-.215,1.548-.646,2.021-.43.473-.961.709-1.591.709-.626,0-1.146-.233-1.563-.698-.417-.466-.624-1.169-.624-2.11ZM330.044,532.562c-.315,0-.577.136-.786.409-.21.273-.315.774-.315,1.503,0,.663.106,1.13.318,1.4s.473.406.783.406c.32,0,.584-.136.794-.409.209-.273.314-.771.314-1.495,0-.668-.106-1.137-.318-1.408s-.474-.406-.79-.406ZM330.05,542.587l5.659-10.9h1.03l-5.636,10.9h-1.052ZM334.524,539.779c0-.743.185-1.372.557-1.887.372-.514.912-.772,1.623-.772.649,0,1.186.231,1.612.695s.638,1.144.638,2.043c0,.875-.215,1.548-.645,2.021-.431.473-.963.709-1.598.709-.626,0-1.146-.234-1.563-.702-.417-.468-.624-1.17-.624-2.106ZM336.738,537.994c-.32,0-.584.136-.793.409-.21.273-.315.774-.315,1.503,0,.658.106,1.124.318,1.397s.473.409.783.409c.325,0,.592-.136.801-.409s.314-.771.314-1.495c0-.668-.105-1.137-.317-1.408s-.475-.406-.791-.406Z" fill="#fff" stroke-width="0"/>
</g>
<g>
<path d="M371.326,366.457h3.032v1.283h-5.469l2.827-3.803c.277-.379.51-.707.698-.984s.331-.51.43-.697c.2-.367.301-.697.301-.99,0-.422-.134-.775-.4-1.061-.268-.285-.599-.428-.992-.428-.822,0-1.294.541-1.413,1.623h-1.224c.197-1.906,1.063-2.859,2.601-2.859.741,0,1.363.262,1.866.785.507.523.76,1.172.76,1.945,0,.492-.118.975-.354,1.447-.119.246-.295.538-.524.876-.23.338-.521.737-.873,1.198l-1.266,1.664Z" fill="#000" stroke-width="0"/>
<path d="M375.745,363.158c0-1.441.303-2.592.907-3.451.541-.777,1.197-1.166,1.967-1.166s1.426.389,1.967,1.166c.604.859.907,2.029.907,3.51s-.303,2.645-.907,3.504c-.541.777-1.195,1.166-1.962,1.166s-1.424-.389-1.972-1.166c-.604-.859-.907-2.047-.907-3.562ZM376.953,363.164c0,1.004.156,1.838.469,2.502.313.652.712.979,1.197.979.481,0,.881-.326,1.197-.979.316-.648.475-1.467.475-2.455s-.158-1.809-.475-2.461c-.316-.648-.716-.973-1.197-.973-.479,0-.875.324-1.191.973-.316.645-.475,1.449-.475,2.414Z" fill="#000" stroke-width="0"/>
<path d="M384.657,366.457h3.032v1.283h-5.469l2.827-3.803c.277-.379.51-.707.698-.984s.331-.51.43-.697c.2-.367.301-.697.301-.99,0-.422-.134-.775-.4-1.061-.268-.285-.599-.428-.992-.428-.822,0-1.294.541-1.413,1.623h-1.224c.197-1.906,1.063-2.859,2.601-2.859.741,0,1.363.262,1.866.785.507.523.76,1.172.76,1.945,0,.492-.118.975-.354,1.447-.119.246-.295.538-.524.876-.23.338-.521.737-.873,1.198l-1.266,1.664Z" fill="#000" stroke-width="0"/>
<path d="M391.412,363.539v-1.166c.521,0,.87-.064,1.05-.193.319-.227.479-.59.479-1.09,0-.387-.116-.701-.348-.943-.229-.246-.525-.369-.892-.369-.341,0-.604.092-.791.275-.179.188-.312.504-.4.949h-1.224c.127-.852.387-1.476.78-1.872s.944-.595,1.65-.595c.714,0,1.296.234,1.746.703.45.465.675,1.064.675,1.799,0,.828-.295,1.473-.886,1.934.675.441,1.013,1.158,1.013,2.15,0,.812-.246,1.477-.738,1.992s-1.124.773-1.894.773c-.98,0-1.709-.4-2.184-1.201-.196-.336-.321-.801-.374-1.395h1.187c.063.438.217.772.462,1.005.244.232.562.349.957.349s.726-.146.985-.439c.261-.301.391-.682.391-1.143,0-.609-.195-1.043-.585-1.301-.229-.148-.582-.223-1.061-.223Z" fill="#000" stroke-width="0"/>
</g>
</g>
<g id="communes-2013-mobile">
<rect x="81.064" y="362.809" width="14.778" height="14.778" fill="#ff7c63" stroke-width="0"/>
<rect x="81.064" y="344.89" width="14.778" height="14.778" fill="#c71e1d" stroke-width="0"/>
<rect x="34.444" y="141.322" width="159.764" height="159.764" fill="none" stroke-width="0"/>
<path d="M114.325,141.322c45.369,0,81.904,37.821,79.795,83.654-1.883,40.924-35.098,74.14-76.022,76.023-45.833,2.109-83.655-34.426-83.655-79.795,0-15.517,4.519-30.698,13.006-43.689l66.876,43.689v-79.882Z" fill="#ff7c63" stroke="#fff" stroke-linejoin="bevel" stroke-width=".5"/>
<path d="M47.691,177.515c14.752-22.581,39.903-36.193,66.876-36.193v79.882l-66.876-43.689Z" fill="#c71e1d" stroke="#fff" stroke-linejoin="bevel" stroke-width=".5"/>
<image width="951" height="1376" transform="translate(-3 .56) scale(.24)" xlink:href="velo-Mesa_de_trabajo_5-interactions-3.png"/>
<g isolation="isolate">
<path d="M80.378,183.656h-1.27v-8.092c-.306.292-.707.583-1.204.875-.496.292-.941.51-1.336.655v-1.228c.711-.333,1.331-.738,1.863-1.213s.907-.936,1.128-1.382h.82v10.384Z" fill="#fff" stroke-width="0"/>
<path d="M90.219,175.846l-1.263.099c-.112-.499-.272-.861-.479-1.086-.343-.362-.767-.543-1.27-.543-.405,0-.76.113-1.065.338-.4.292-.715.718-.945,1.277-.23.56-.35,1.357-.36,2.391.306-.465.68-.811,1.122-1.037.442-.225.905-.338,1.389-.338.847,0,1.568.312,2.163.935s.893,1.428.893,2.416c0,.649-.14,1.252-.42,1.809-.281.558-.665.984-1.154,1.281-.489.296-1.045.444-1.665.444-1.058,0-1.921-.389-2.589-1.167-.668-.778-1.002-2.061-1.002-3.849,0-1.999.369-3.452,1.109-4.36.644-.791,1.512-1.185,2.603-1.185.813,0,1.48.228,2,.684.52.456.831,1.086.935,1.891ZM85.033,180.305c0,.438.094.856.279,1.256.185.4.445.705.78.914s.684.314,1.052.314c.536,0,.996-.216,1.382-.649s.578-1.021.578-1.764c0-.715-.19-1.278-.571-1.689s-.86-.617-1.438-.617c-.575,0-1.061.206-1.461.617s-.6.951-.6,1.619Z" fill="#fff" stroke-width="0"/>
<path d="M91.905,175.796c0-.738.186-1.366.557-1.883.372-.518.911-.776,1.616-.776.649,0,1.186.231,1.612.695s.638,1.144.638,2.043c0,.875-.215,1.548-.645,2.021-.431.473-.961.709-1.591.709-.626,0-1.147-.233-1.563-.698-.417-.466-.625-1.169-.625-2.11ZM94.112,174.012c-.315,0-.576.136-.786.409-.209.273-.314.774-.314,1.503,0,.663.105,1.13.318,1.4.211.27.473.406.782.406.32,0,.585-.136.794-.409s.315-.771.315-1.495c0-.668-.106-1.137-.318-1.408s-.475-.406-.791-.406ZM94.12,184.037l5.658-10.9h1.03l-5.637,10.9h-1.051ZM98.593,181.229c0-.743.185-1.372.558-1.887.371-.514.912-.772,1.622-.772.65,0,1.187.231,1.612.695.426.463.639,1.144.639,2.043,0,.875-.216,1.548-.646,2.021s-.962.709-1.598.709c-.626,0-1.146-.234-1.563-.702-.416-.468-.624-1.17-.624-2.106ZM100.808,179.444c-.32,0-.585.136-.794.409s-.314.774-.314,1.503c0,.658.106,1.124.317,1.397.213.273.473.409.784.409.324,0,.591-.136.801-.409.209-.273.313-.771.313-1.495,0-.668-.105-1.137-.317-1.408s-.475-.406-.79-.406Z" fill="#fff" stroke-width="0"/>
</g>
<g isolation="isolate">
<path d="M149.5,237.811c-.526-.193-.917-.468-1.171-.825-.254-.358-.381-.786-.381-1.285,0-.752.27-1.385.811-1.898s1.26-.769,2.159-.769c.904,0,1.63.262,2.181.786.549.525.825,1.163.825,1.915,0,.479-.126.897-.377,1.252s-.634.629-1.146.822c.634.207,1.118.541,1.449,1.001s.497,1.012.497,1.651c0,.884-.313,1.627-.939,2.229s-1.449.903-2.469.903-1.844-.302-2.469-.906c-.626-.604-.939-1.358-.939-2.261,0-.672.17-1.235.512-1.689.34-.454.826-.763,1.456-.928ZM148.837,240.435c0,.362.086.712.258,1.051.172.339.427.601.765.786.338.186.704.279,1.093.279.607,0,1.109-.195,1.503-.585.395-.391.593-.887.593-1.489,0-.612-.203-1.117-.61-1.518-.407-.4-.916-.599-1.528-.599-.598,0-1.092.197-1.485.593s-.589.889-.589,1.482ZM149.246,235.659c0,.489.158.888.473,1.199.315.311.724.466,1.228.466.49,0,.89-.154,1.203-.462.313-.309.469-.686.469-1.132,0-.466-.161-.858-.484-1.175-.321-.318-.723-.476-1.202-.476-.485,0-.887.155-1.207.465-.32.311-.479.683-.479,1.115Z" fill="#fff" stroke-width="0"/>
<path d="M159.652,243.419v-2.476h-4.486v-1.164l4.719-6.703h1.037v6.703h1.398v1.164h-1.398v2.476h-1.27ZM159.652,239.779v-4.663l-3.237,4.663h3.237Z" fill="#fff" stroke-width="0"/>
<path d="M163.856,235.559c0-.738.186-1.366.558-1.883.372-.518.91-.776,1.615-.776.65,0,1.187.231,1.612.695.427.463.639,1.144.639,2.043,0,.875-.216,1.548-.646,2.021s-.961.709-1.591.709c-.626,0-1.147-.233-1.563-.698-.416-.466-.625-1.169-.625-2.11ZM166.065,233.775c-.315,0-.577.136-.787.409-.209.273-.313.774-.313,1.503,0,.663.105,1.13.317,1.4s.473.406.783.406c.32,0,.585-.136.794-.409s.314-.771.314-1.495c0-.668-.106-1.137-.317-1.408-.213-.27-.476-.406-.791-.406ZM166.072,243.8l5.659-10.9h1.03l-5.637,10.9h-1.051ZM170.545,240.992c0-.743.185-1.372.557-1.887.372-.514.912-.772,1.623-.772.649,0,1.186.231,1.612.695.425.463.638,1.144.638,2.043,0,.875-.215,1.548-.645,2.021s-.963.709-1.598.709c-.626,0-1.146-.234-1.563-.702-.417-.468-.624-1.17-.624-2.106ZM172.76,239.207c-.32,0-.584.136-.793.409s-.315.774-.315,1.503c0,.658.106,1.124.318,1.397s.473.409.783.409c.324,0,.591-.136.801-.409.209-.273.314-.771.314-1.495,0-.668-.105-1.137-.318-1.408-.211-.27-.474-.406-.79-.406Z" fill="#fff" stroke-width="0"/>
</g>
<g>
<path d="M123.443,24.345h3.032v1.283h-5.468l2.827-3.803c.277-.379.51-.707.699-.984.188-.277.331-.51.43-.697.2-.367.3-.697.3-.99,0-.422-.133-.775-.4-1.061-.268-.285-.598-.428-.992-.428-.823,0-1.294.541-1.413,1.623h-1.224c.197-1.906,1.063-2.859,2.6-2.859.742,0,1.364.262,1.867.785.506.523.759,1.172.759,1.945,0,.492-.118.975-.354,1.447-.119.246-.294.538-.524.876-.23.338-.521.737-.873,1.198l-1.266,1.664Z" fill="#000" stroke-width="0"/>
<path d="M127.863,21.046c0-1.441.302-2.592.907-3.451.542-.777,1.197-1.166,1.967-1.166s1.425.389,1.967,1.166c.604.859.907,2.029.907,3.51s-.303,2.645-.907,3.504c-.542.777-1.195,1.166-1.962,1.166s-1.424-.389-1.972-1.166c-.604-.859-.907-2.047-.907-3.562ZM129.07,21.052c0,1.004.156,1.838.469,2.502.313.652.712.979,1.197.979.481,0,.88-.326,1.197-.979.316-.648.475-1.467.475-2.455s-.158-1.809-.475-2.461c-.316-.648-.715-.973-1.197-.973-.479,0-.875.324-1.192.973-.316.645-.475,1.449-.475,2.414Z" fill="#000" stroke-width="0"/>
<path d="M136.163,17.858h-1.408l.675-1.277h1.961v9.047h-1.229v-7.77Z" fill="#000" stroke-width="0"/>
<path d="M141.921,21.427v-1.166c.52,0,.87-.064,1.049-.193.32-.227.48-.59.48-1.09,0-.387-.116-.701-.348-.943-.229-.246-.525-.369-.891-.369-.341,0-.604.092-.791.275-.179.188-.313.504-.401.949h-1.223c.126-.852.387-1.476.78-1.872s.944-.595,1.65-.595c.714,0,1.295.234,1.746.703.45.465.675,1.064.675,1.799,0,.828-.295,1.473-.886,1.934.675.441,1.013,1.158,1.013,2.15,0,.812-.246,1.477-.738,1.992s-1.124.773-1.893.773c-.981,0-1.709-.4-2.184-1.201-.197-.336-.321-.801-.374-1.395h1.187c.063.438.217.772.461,1.005.244.232.563.349.957.349.397,0,.726-.146.986-.439.26-.301.391-.682.391-1.143,0-.609-.195-1.043-.585-1.301-.229-.148-.582-.223-1.06-.223Z" fill="#000" stroke-width="0"/>
</g>
</g>
<g id="communes-2018-mobile">
<rect x="279.716" y="140.665" width="160.029" height="160.029" fill="none" stroke-width="0"/>
<path d="M359.73,140.665c44.191,0,80.015,35.823,80.015,80.014,0,44.191-35.823,80.015-80.014,80.015-44.191,0-80.015-35.823-80.015-80.014,0-24.676,11.385-47.971,30.854-63.132l49.16,63.131v-80.015Z" fill="#ff7c63" stroke="#fff" stroke-linejoin="bevel" stroke-width=".5"/>
<path d="M310.57,157.548c14.051-10.942,31.351-16.883,49.16-16.883v80.015l-49.16-63.131Z" fill="#c71e1d" stroke="#fff" stroke-linejoin="bevel" stroke-width=".5"/>
<image width="951" height="1375" transform="translate(242.76 .08) scale(.24)" xlink:href="velo-Mesa_de_trabajo_5-interactions-4.png"/>
<g isolation="isolate">
<path d="M402.591,238.023c-.527-.193-.916-.468-1.171-.825-.253-.358-.381-.786-.381-1.285,0-.752.27-1.385.811-1.898.542-.513,1.262-.769,2.159-.769.903,0,1.63.262,2.18.786.551.525.825,1.163.825,1.915,0,.479-.126.897-.377,1.252-.252.355-.634.629-1.148.822.636.207,1.119.541,1.45,1.001s.497,1.012.497,1.651c0,.884-.313,1.627-.938,2.229-.626.602-1.449.903-2.47.903s-1.844-.302-2.47-.906-.938-1.358-.938-2.261c0-.672.17-1.235.511-1.689.342-.454.826-.763,1.457-.928ZM401.928,240.648c0,.362.086.712.258,1.051.172.339.427.601.766.786.338.186.702.279,1.093.279.606,0,1.107-.195,1.502-.585.395-.391.593-.887.593-1.489,0-.612-.203-1.117-.61-1.518-.406-.4-.916-.599-1.527-.599-.598,0-1.092.197-1.485.593s-.589.889-.589,1.482ZM402.338,235.871c0,.489.156.888.473,1.199.315.311.723.466,1.228.466.488,0,.889-.154,1.202-.462.313-.309.469-.686.469-1.132,0-.466-.162-.858-.483-1.175-.323-.318-.723-.476-1.204-.476-.484,0-.886.155-1.205.465-.32.311-.479.683-.479,1.115Z" fill="#fff" stroke-width="0"/>
<path d="M408.863,241.24l1.22-.113c.103.574.301.99.593,1.249s.666.388,1.122.388c.39,0,.732-.089,1.026-.268.293-.179.535-.417.723-.716.188-.299.345-.702.473-1.211.127-.508.19-1.025.19-1.552,0-.057-.003-.141-.007-.254-.255.405-.602.733-1.041.984-.44.252-.916.377-1.429.377-.856,0-1.58-.31-2.173-.932-.593-.621-.888-1.439-.888-2.455,0-1.048.309-1.892.927-2.533.619-.639,1.394-.959,2.325-.959.672,0,1.288.181,1.845.543s.98.878,1.27,1.548c.289.67.434,1.641.434,2.91,0,1.322-.144,2.374-.43,3.157s-.713,1.379-1.281,1.788c-.566.41-1.231.614-1.993.614-.808,0-1.469-.224-1.983-.673-.512-.449-.82-1.081-.923-1.894ZM414.063,236.676c0-.729-.195-1.308-.582-1.736-.389-.428-.854-.642-1.4-.642-.564,0-1.056.23-1.475.691-.419.462-.628,1.058-.628,1.792,0,.659.199,1.194.597,1.605s.888.617,1.471.617c.588,0,1.071-.206,1.45-.617.377-.411.568-.982.568-1.71Z" fill="#fff" stroke-width="0"/>
<path d="M416.948,235.772c0-.738.185-1.366.557-1.883.372-.518.911-.776,1.616-.776.649,0,1.186.231,1.612.695.425.463.638,1.144.638,2.043,0,.875-.214,1.548-.644,2.021-.431.473-.961.709-1.591.709-.626,0-1.146-.233-1.563-.698-.417-.466-.624-1.169-.624-2.11ZM419.156,233.988c-.315,0-.577.136-.786.409s-.315.774-.315,1.503c0,.663.106,1.13.318,1.4s.473.406.783.406c.32,0,.584-.136.793-.409s.315-.771.315-1.495c0-.668-.105-1.137-.318-1.408-.211-.27-.474-.406-.79-.406ZM419.164,244.012l5.657-10.9h1.03l-5.636,10.9h-1.051ZM423.636,241.204c0-.743.186-1.372.558-1.887.372-.514.913-.772,1.622-.772.65,0,1.187.231,1.613.695s.638,1.144.638,2.043c0,.875-.215,1.548-.646,2.021-.43.473-.962.709-1.597.709-.626,0-1.147-.234-1.563-.702-.416-.468-.625-1.17-.625-2.106ZM425.851,239.42c-.32,0-.584.136-.794.409-.209.273-.313.774-.313,1.503,0,.658.105,1.124.317,1.397s.473.409.783.409c.325,0,.592-.136.801-.409s.314-.771.314-1.495c0-.668-.106-1.137-.317-1.408-.213-.27-.475-.406-.791-.406Z" fill="#fff" stroke-width="0"/>
</g>
<g isolation="isolate">
<path d="M331.57,176.728h-1.27v-8.092c-.306.292-.706.583-1.203.875-.496.292-.941.51-1.337.655v-1.228c.711-.333,1.331-.738,1.864-1.213.53-.475.907-.936,1.128-1.382h.819v10.384Z" fill="#fff" stroke-width="0"/>
<path d="M338.533,176.728h-1.27v-8.092c-.305.292-.706.583-1.202.875s-.942.51-1.337.655v-1.228c.71-.333,1.33-.738,1.863-1.213.531-.475.908-.936,1.129-1.382h.818v10.384Z" fill="#fff" stroke-width="0"/>
<path d="M342.025,168.868c0-.738.185-1.366.558-1.883.371-.518.91-.776,1.615-.776.65,0,1.187.231,1.612.695.426.463.638,1.144.638,2.043,0,.875-.215,1.548-.645,2.021s-.961.709-1.591.709c-.626,0-1.146-.233-1.563-.698-.416-.466-.624-1.169-.624-2.11ZM344.234,167.084c-.316,0-.578.136-.787.409s-.314.774-.314,1.503c0,.663.106,1.13.317,1.4.213.27.473.406.784.406.32,0,.584-.136.793-.409s.314-.771.314-1.495c0-.668-.105-1.137-.317-1.408s-.475-.406-.79-.406ZM344.241,177.109l5.658-10.9h1.03l-5.636,10.9h-1.051ZM348.713,174.301c0-.743.186-1.372.557-1.887.372-.514.913-.772,1.623-.772.649,0,1.186.231,1.613.695.425.463.638,1.144.638,2.043,0,.875-.214,1.548-.645,2.021-.43.473-.963.709-1.597.709-.626,0-1.147-.234-1.563-.702-.417-.468-.625-1.17-.625-2.106ZM350.928,172.516c-.32,0-.583.136-.793.409-.209.273-.314.774-.314,1.503,0,.658.105,1.124.318,1.397.211.273.473.409.782.409.325,0,.592-.136.801-.409s.315-.771.315-1.495c0-.668-.106-1.137-.318-1.408s-.474-.406-.791-.406Z" fill="#fff" stroke-width="0"/>
</g>
<g>
<path d="M372.148,25.457h3.032v1.283h-5.468l2.827-3.803c.277-.379.51-.707.699-.984.188-.277.331-.51.43-.697.2-.367.3-.697.3-.99,0-.422-.133-.775-.4-1.061-.268-.285-.598-.428-.992-.428-.823,0-1.294.541-1.413,1.623h-1.224c.197-1.906,1.063-2.859,2.6-2.859.742,0,1.364.262,1.867.785.506.523.759,1.172.759,1.945,0,.492-.118.975-.354,1.447-.119.246-.294.538-.524.876-.23.338-.521.737-.873,1.198l-1.266,1.664Z" fill="#000" stroke-width="0"/>
<path d="M376.568,22.158c0-1.441.302-2.592.907-3.451.541-.777,1.197-1.166,1.967-1.166s1.426.389,1.967,1.166c.604.859.907,2.029.907,3.51s-.303,2.645-.907,3.504c-.541.777-1.195,1.166-1.962,1.166s-1.424-.389-1.972-1.166c-.604-.859-.907-2.047-.907-3.562ZM377.775,22.164c0,1.004.156,1.838.469,2.502.313.652.712.979,1.197.979.481,0,.881-.326,1.197-.979.316-.648.475-1.467.475-2.455s-.158-1.809-.475-2.461c-.316-.648-.716-.973-1.197-.973-.479,0-.875.324-1.191.973-.316.645-.475,1.449-.475,2.414Z" fill="#000" stroke-width="0"/>
<path d="M384.868,18.971h-1.408l.675-1.277h1.962v9.047h-1.229v-7.77Z" fill="#000" stroke-width="0"/>
<path d="M389.672,22.035c-.598-.469-.896-1.107-.896-1.916,0-.734.227-1.348.68-1.84.457-.492,1.025-.738,1.703-.738s1.238.246,1.688.738c.45.488.676,1.104.676,1.846,0,.777-.298,1.412-.892,1.904.327.195.584.48.77.855.19.375.285.797.285,1.266,0,.801-.235,1.457-.707,1.969-.471.512-1.073.768-1.809.768-.752,0-1.373-.258-1.861-.773-.492-.516-.738-1.164-.738-1.945,0-1.016.367-1.727,1.103-2.133ZM389.777,24.121c0,.418.13.777.39,1.078.264.297.584.445.96.445.373,0,.69-.146.954-.439.264-.297.396-.652.396-1.066,0-.418-.132-.773-.396-1.066s-.581-.439-.954-.439c-.369,0-.688.146-.954.439-.264.293-.396.643-.396,1.049ZM389.93,20.113c0,.387.118.711.354.973.239.266.527.398.865.398.334,0,.62-.133.859-.398s.358-.584.358-.955-.119-.689-.358-.955-.525-.398-.859-.398-.621.133-.86.398c-.238.266-.358.578-.358.938Z" fill="#000" stroke-width="0"/>
</g>
</g>
<g>
<path d="M101.685,353.76l1.067-.146c.029.684.157,1.151.385,1.404.229.252.543.378.946.378.297,0,.554-.068.769-.205.216-.136.364-.321.446-.555.081-.234.122-.607.122-1.12v-6.165h1.184v6.097c0,.749-.091,1.329-.271,1.74s-.468.724-.86.94-.854.323-1.383.323c-.785,0-1.387-.226-1.804-.677s-.617-1.123-.601-2.014Z" fill="#000" stroke-width="0"/>
<path d="M112.628,355.5c-.407.346-.799.59-1.175.732-.377.143-.78.214-1.212.214-.712,0-1.259-.174-1.642-.522-.383-.348-.574-.792-.574-1.333,0-.317.072-.607.217-.87.145-.263.334-.473.568-.632.233-.159.497-.279.79-.36.216-.057.541-.112.977-.165.887-.106,1.54-.232,1.959-.378.004-.15.007-.246.007-.287,0-.448-.104-.763-.312-.946-.281-.248-.698-.372-1.251-.372-.518,0-.898.09-1.145.271-.247.181-.429.501-.547.961l-1.074-.146c.098-.459.259-.831.482-1.114.224-.283.547-.5.971-.653.423-.153.913-.229,1.471-.229.554,0,1.003.065,1.349.195s.601.294.763.491c.163.198.277.447.342.748.037.188.056.525.056,1.014v1.465c0,1.021.023,1.667.07,1.938.046.271.139.53.277.778h-1.147c-.114-.228-.188-.494-.22-.8ZM112.536,353.046c-.398.163-.997.301-1.794.415-.452.065-.771.138-.959.22-.187.081-.331.2-.433.357s-.153.331-.153.522c0,.293.111.537.333.732s.546.293.974.293c.423,0,.8-.093,1.129-.278.33-.185.572-.438.727-.76.118-.248.177-.614.177-1.099v-.402Z" fill="#000" stroke-width="0"/>
<path d="M115.351,356.299v-6.482h.988v.921c.477-.712,1.164-1.068,2.063-1.068.391,0,.749.07,1.077.21.327.141.572.325.735.553.163.228.276.498.342.812.041.204.062.56.062,1.068v3.985h-1.1v-3.943c0-.448-.042-.782-.128-1.004-.085-.222-.237-.399-.454-.531-.218-.132-.474-.198-.767-.198-.468,0-.872.148-1.211.446-.34.297-.51.86-.51,1.69v3.54h-1.099Z" fill="#000" stroke-width="0"/>
<path d="M126.551,356.299v-.952c-.505.732-1.19,1.099-2.057,1.099-.383,0-.74-.073-1.071-.22-.332-.146-.578-.331-.739-.552-.16-.222-.273-.494-.338-.815-.045-.216-.067-.558-.067-1.025v-4.016h1.099v3.595c0,.573.022.96.066,1.159.069.289.216.516.439.681.225.165.501.247.83.247s.64-.084.928-.253c.289-.169.494-.399.614-.69.119-.291.18-.713.18-1.266v-3.473h1.099v6.482h-.982Z" fill="#000" stroke-width="0"/>
<path d="M133.484,355.5c-.407.346-.799.59-1.175.732-.377.143-.78.214-1.212.214-.712,0-1.259-.174-1.642-.522-.383-.348-.574-.792-.574-1.333,0-.317.072-.607.217-.87.145-.263.334-.473.568-.632.233-.159.497-.279.79-.36.216-.057.541-.112.977-.165.887-.106,1.54-.232,1.959-.378.004-.15.007-.246.007-.287,0-.448-.104-.763-.312-.946-.281-.248-.698-.372-1.251-.372-.518,0-.898.09-1.145.271-.247.181-.429.501-.547.961l-1.074-.146c.098-.459.259-.831.482-1.114.224-.283.547-.5.971-.653.423-.153.913-.229,1.471-.229.554,0,1.003.065,1.349.195s.601.294.763.491c.163.198.277.447.342.748.037.188.056.525.056,1.014v1.465c0,1.021.023,1.667.07,1.938.046.271.139.53.277.778h-1.147c-.114-.228-.188-.494-.22-.8ZM133.393,353.046c-.398.163-.997.301-1.794.415-.452.065-.771.138-.959.22-.187.081-.331.2-.433.357s-.153.331-.153.522c0,.293.111.537.333.732s.546.293.974.293c.423,0,.8-.093,1.129-.278.33-.185.572-.438.727-.76.118-.248.177-.614.177-1.099v-.402Z" fill="#000" stroke-width="0"/>
<path d="M136.194,356.299v-6.482h.989v.983c.252-.46.485-.763.698-.91.214-.146.449-.22.705-.22.37,0,.747.118,1.13.354l-.379,1.02c-.269-.159-.537-.238-.806-.238-.24,0-.456.072-.647.217-.19.145-.327.345-.408.601-.122.391-.184.818-.184,1.282v3.394h-1.099Z" fill="#000" stroke-width="0"/>
<path d="M140.321,358.795l-.122-1.031c.24.065.449.098.628.098.244,0,.439-.041.586-.122s.267-.195.36-.342c.069-.11.182-.382.336-.818.021-.061.053-.15.098-.269l-2.46-6.494h1.185l1.349,3.753c.175.477.332.977.47,1.502.126-.505.277-.997.452-1.478l1.385-3.778h1.1l-2.467,6.592c-.264.712-.47,1.203-.616,1.471-.195.362-.419.627-.671.796-.253.168-.554.253-.903.253-.212,0-.448-.045-.708-.135Z" fill="#000" stroke-width="0"/>
<path d="M152.491,355.317l.158.97c-.309.065-.586.098-.83.098-.398,0-.707-.063-.928-.189-.219-.126-.374-.292-.463-.498-.09-.206-.135-.638-.135-1.297v-3.729h-.806v-.854h.806v-1.605l1.093-.659v2.264h1.104v.854h-1.104v3.791c0,.313.019.515.058.604s.102.161.189.213c.087.053.213.08.375.08.122,0,.283-.014.482-.042Z" fill="#000" stroke-width="0"/>
<path d="M153.156,353.058c0-1.2.334-2.089,1.001-2.667.558-.48,1.237-.72,2.039-.72.891,0,1.619.292,2.185.876s.849,1.391.849,2.42c0,.834-.125,1.49-.376,1.968-.25.479-.614.85-1.092,1.114-.479.264-1,.396-1.565.396-.908,0-1.642-.291-2.201-.873-.56-.582-.839-1.42-.839-2.515ZM154.285,353.058c0,.83.182,1.452.544,1.865.361.413.817.62,1.367.62.545,0,.998-.208,1.36-.623s.544-1.048.544-1.898c0-.802-.183-1.409-.547-1.822-.364-.413-.816-.619-1.357-.619-.55,0-1.006.205-1.367.616-.362.411-.544,1.031-.544,1.861Z" fill="#000" stroke-width="0"/>
<path d="M163.526,353.76l1.067-.146c.029.684.157,1.151.385,1.404.229.252.543.378.946.378.297,0,.554-.068.769-.205.216-.136.364-.321.446-.555.081-.234.122-.607.122-1.12v-6.165h1.184v6.097c0,.749-.091,1.329-.271,1.74s-.468.724-.86.94-.854.323-1.383.323c-.785,0-1.387-.226-1.804-.677s-.617-1.123-.601-2.014Z" fill="#000" stroke-width="0"/>
<path d="M174.488,356.299v-.952c-.505.732-1.19,1.099-2.057,1.099-.383,0-.74-.073-1.071-.22-.332-.146-.578-.331-.739-.552-.16-.222-.273-.494-.338-.815-.045-.216-.067-.558-.067-1.025v-4.016h1.099v3.595c0,.573.022.96.066,1.159.069.289.216.516.439.681.225.165.501.247.83.247s.64-.084.928-.253c.289-.169.494-.399.614-.69.119-.291.18-.713.18-1.266v-3.473h1.099v6.482h-.982Z" fill="#000" stroke-width="0"/>
<path d="M177.192,356.299v-6.482h.988v.921c.477-.712,1.164-1.068,2.063-1.068.391,0,.749.07,1.077.21.327.141.572.325.735.553.163.228.276.498.342.812.041.204.062.56.062,1.068v3.985h-1.1v-3.943c0-.448-.042-.782-.128-1.004-.085-.222-.237-.399-.454-.531-.218-.132-.474-.198-.767-.198-.468,0-.872.148-1.211.446-.34.297-.51.86-.51,1.69v3.54h-1.099Z" fill="#000" stroke-width="0"/>
<path d="M188.582,354.212l1.135.14c-.179.664-.511,1.178-.995,1.544s-1.103.549-1.855.549c-.948,0-1.699-.292-2.255-.876-.556-.583-.833-1.403-.833-2.457,0-1.09.28-1.937.842-2.539s1.29-.903,2.186-.903c.866,0,1.574.295,2.124.885.549.59.824,1.42.824,2.49,0,.065-.003.163-.007.293h-4.834c.041.712.242,1.257.604,1.636.362.378.813.567,1.355.567.402,0,.746-.106,1.031-.317.284-.211.511-.549.678-1.013ZM184.975,352.436h3.619c-.049-.545-.188-.955-.415-1.227-.35-.423-.804-.635-1.361-.635-.504,0-.929.169-1.272.506-.344.338-.534.79-.57,1.355Z" fill="#000" stroke-width="0"/>
</g>
<g>
<path d="M101.756,372.922l1.067-.146c.029.684.157,1.151.385,1.404.229.252.543.378.946.378.297,0,.554-.068.769-.205.216-.136.364-.321.446-.555.081-.234.122-.607.122-1.12v-6.165h1.184v6.097c0,.749-.091,1.329-.271,1.74s-.468.724-.86.94-.854.323-1.383.323c-.785,0-1.387-.226-1.804-.677s-.617-1.123-.601-2.014Z" fill="#000" stroke-width="0"/>
<path d="M112.718,375.461v-.952c-.505.732-1.19,1.099-2.057,1.099-.383,0-.74-.073-1.071-.22-.332-.146-.578-.331-.739-.552-.16-.222-.273-.494-.338-.815-.045-.216-.067-.558-.067-1.025v-4.016h1.099v3.595c0,.573.022.96.066,1.159.069.289.216.516.439.681.225.165.501.247.83.247s.64-.084.928-.253c.289-.169.494-.399.614-.69.119-.291.18-.713.18-1.266v-3.473h1.099v6.482h-.982Z" fill="#000" stroke-width="0"/>
<path d="M115.398,375.461v-8.948h1.099v8.948h-1.099Z" fill="#000" stroke-width="0"/>
<path d="M118.151,377.958l-.122-1.031c.24.065.449.098.628.098.244,0,.439-.041.586-.122s.267-.195.36-.342c.069-.11.182-.382.336-.818.021-.061.053-.15.098-.269l-2.46-6.494h1.185l1.349,3.753c.175.477.332.977.47,1.502.126-.505.277-.997.452-1.478l1.385-3.778h1.1l-2.467,6.592c-.264.712-.47,1.203-.616,1.471-.195.362-.419.627-.671.796-.253.168-.554.253-.903.253-.212,0-.448-.045-.708-.135Z" fill="#000" stroke-width="0"/>
<path d="M130.321,374.479l.158.97c-.309.065-.586.098-.83.098-.398,0-.707-.063-.928-.189-.219-.126-.374-.292-.463-.498-.09-.206-.135-.638-.135-1.297v-3.729h-.806v-.854h.806v-1.605l1.093-.659v2.264h1.104v.854h-1.104v3.791c0,.313.019.515.058.604s.102.161.189.213c.087.053.213.08.375.08.122,0,.283-.014.482-.042Z" fill="#000" stroke-width="0"/>
<path d="M130.986,372.22c0-1.2.334-2.089,1.001-2.667.558-.48,1.237-.72,2.039-.72.891,0,1.619.292,2.185.876s.849,1.391.849,2.42c0,.834-.125,1.49-.376,1.968-.25.479-.614.85-1.092,1.114-.479.264-1,.396-1.565.396-.908,0-1.642-.291-2.201-.873-.56-.582-.839-1.42-.839-2.515ZM132.115,372.22c0,.83.182,1.452.544,1.865.361.413.817.62,1.367.62.545,0,.998-.208,1.36-.623s.544-1.048.544-1.898c0-.802-.183-1.409-.547-1.822-.364-.413-.816-.619-1.357-.619-.55,0-1.006.205-1.367.616-.362.411-.544,1.031-.544,1.861Z" fill="#000" stroke-width="0"/>
<path d="M141.96,375.461v-8.948h3.082c.695,0,1.227.042,1.593.128.513.118.95.332,1.312.641.472.399.824.909,1.059,1.529.234.621.351,1.33.351,2.127,0,.679-.079,1.281-.237,1.807-.159.524-.362.959-.61,1.303-.248.344-.521.615-.815.812s-.65.347-1.067.449c-.418.102-.896.152-1.438.152h-3.229ZM143.144,374.406h1.91c.59,0,1.053-.055,1.389-.165s.604-.265.803-.464c.281-.281.499-.658.656-1.132.156-.474.234-1.049.234-1.724,0-.936-.153-1.655-.46-2.158-.308-.502-.681-.839-1.12-1.01-.317-.122-.828-.183-1.532-.183h-1.88v6.836Z" fill="#000" stroke-width="0"/>
<path d="M155.285,373.374l1.135.14c-.179.664-.511,1.178-.995,1.544s-1.103.549-1.855.549c-.948,0-1.699-.292-2.255-.876-.556-.583-.833-1.403-.833-2.457,0-1.09.28-1.937.842-2.539s1.29-.903,2.186-.903c.866,0,1.574.295,2.124.885.549.59.824,1.42.824,2.49,0,.065-.003.163-.007.293h-4.834c.041.712.242,1.257.604,1.636.362.378.813.567,1.355.567.402,0,.746-.106,1.031-.317.284-.211.511-.549.678-1.013ZM151.677,371.598h3.619c-.049-.545-.188-.955-.415-1.227-.35-.423-.804-.635-1.361-.635-.504,0-.929.169-1.272.506-.344.338-.534.79-.57,1.355Z" fill="#000" stroke-width="0"/>
<path d="M162.029,373.087l1.08.14c-.118.745-.42,1.328-.906,1.749-.486.421-1.083.632-1.791.632-.888,0-1.601-.29-2.14-.87-.539-.58-.809-1.411-.809-2.494,0-.7.116-1.312.348-1.837.232-.525.585-.918,1.06-1.181.474-.262.989-.394,1.547-.394.704,0,1.279.178,1.728.534.447.356.734.861.86,1.517l-1.068.165c-.102-.435-.281-.763-.54-.982s-.57-.33-.937-.33c-.554,0-1.003.198-1.349.595-.347.396-.52,1.024-.52,1.883,0,.871.167,1.503.501,1.898.333.395.769.592,1.306.592.432,0,.792-.132,1.08-.396.289-.265.473-.672.55-1.221Z" fill="#000" stroke-width="0"/>
<path d="M168.487,373.374l1.135.14c-.179.664-.511,1.178-.995,1.544s-1.103.549-1.855.549c-.948,0-1.699-.292-2.255-.876-.556-.583-.833-1.403-.833-2.457,0-1.09.28-1.937.842-2.539s1.29-.903,2.186-.903c.866,0,1.574.295,2.124.885.549.59.824,1.42.824,2.49,0,.065-.003.163-.007.293h-4.834c.041.712.242,1.257.604,1.636.362.378.813.567,1.355.567.402,0,.746-.106,1.031-.317.284-.211.511-.549.678-1.013ZM164.879,371.598h3.619c-.049-.545-.188-.955-.415-1.227-.35-.423-.804-.635-1.361-.635-.504,0-.929.169-1.272.506-.344.338-.534.79-.57,1.355Z" fill="#000" stroke-width="0"/>
<path d="M171.001,375.461v-6.482h.982v.91c.203-.317.474-.573.812-.766s.723-.29,1.153-.29c.48,0,.874.1,1.182.299.307.199.523.478.65.836.512-.757,1.18-1.135,2.002-1.135.643,0,1.137.178,1.482.534s.52.904.52,1.645v4.449h-1.093v-4.083c0-.439-.036-.756-.107-.949s-.2-.349-.388-.467c-.187-.118-.406-.177-.658-.177-.456,0-.835.152-1.136.455-.301.303-.452.789-.452,1.456v3.766h-1.098v-4.211c0-.488-.09-.854-.27-1.099-.179-.244-.472-.366-.879-.366-.309,0-.595.082-.857.244-.262.163-.452.401-.57.714-.118.313-.177.765-.177,1.354v3.363h-1.099Z" fill="#000" stroke-width="0"/>
<path d="M182.427,375.461h-1.019v-8.948h1.098v3.192c.465-.582,1.057-.873,1.776-.873.399,0,.776.081,1.133.241.355.161.648.387.879.677.229.291.409.642.54,1.053.13.411.195.851.195,1.318,0,1.111-.275,1.97-.824,2.576-.549.606-1.209.909-1.978.909-.765,0-1.365-.319-1.801-.958v.812ZM182.416,372.171c0,.777.105,1.339.317,1.685.346.566.813.849,1.403.849.48,0,.896-.208,1.245-.625.351-.417.525-1.039.525-1.865,0-.846-.168-1.471-.504-1.874-.336-.402-.741-.604-1.218-.604-.479,0-.895.208-1.245.625-.35.417-.524,1.021-.524,1.81Z" fill="#000" stroke-width="0"/>
<path d="M192.804,373.374l1.135.14c-.179.664-.511,1.178-.995,1.544s-1.103.549-1.855.549c-.948,0-1.699-.292-2.255-.876-.556-.583-.833-1.403-.833-2.457,0-1.09.28-1.937.842-2.539s1.29-.903,2.186-.903c.866,0,1.574.295,2.124.885.549.59.824,1.42.824,2.49,0,.065-.003.163-.007.293h-4.834c.041.712.242,1.257.604,1.636.362.378.813.567,1.355.567.402,0,.746-.106,1.031-.317.284-.211.511-.549.678-1.013ZM189.197,371.598h3.619c-.049-.545-.188-.955-.415-1.227-.35-.423-.804-.635-1.361-.635-.504,0-.929.169-1.272.506-.344.338-.534.79-.57,1.355Z" fill="#000" stroke-width="0"/>
<path d="M195.306,375.461v-6.482h.989v.983c.252-.46.485-.763.698-.91.214-.146.449-.22.705-.22.37,0,.747.118,1.13.354l-.379,1.02c-.269-.159-.537-.238-.806-.238-.24,0-.456.072-.647.217-.19.145-.327.345-.408.601-.122.391-.184.818-.184,1.282v3.394h-1.099Z" fill="#000" stroke-width="0"/>
</g>
</g>
<g id="Intro-mobile">
<g id="intro-2000-mobile">
<image width="265" height="179" transform="translate(151 51.044) scale(.605)" xlink:href="velo-Mesa_de_trabajo_5-interactions-5.png"/>
<g>
<path d="M223.858,54.916h3.032v1.283h-5.468l2.827-3.803c.277-.379.51-.707.699-.984.188-.277.331-.51.43-.697.2-.367.3-.697.3-.99,0-.422-.133-.775-.4-1.061-.268-.285-.598-.428-.992-.428-.823,0-1.294.541-1.413,1.623h-1.224c.197-1.906,1.063-2.859,2.6-2.859.742,0,1.364.262,1.867.785.506.523.759,1.172.759,1.945,0,.492-.118.975-.354,1.447-.119.246-.294.538-.524.876-.23.338-.521.737-.873,1.198l-1.266,1.664Z" fill="#000" stroke-width="0"/>
<path d="M228.277,51.617c0-1.441.302-2.592.907-3.451.542-.777,1.197-1.166,1.967-1.166s1.425.389,1.967,1.166c.604.859.907,2.029.907,3.51s-.303,2.645-.907,3.504c-.542.777-1.195,1.166-1.962,1.166s-1.424-.389-1.972-1.166c-.604-.859-.907-2.047-.907-3.562ZM229.485,51.623c0,1.004.156,1.838.469,2.502.313.652.712.979,1.197.979.481,0,.88-.326,1.197-.979.316-.648.475-1.467.475-2.455s-.158-1.809-.475-2.461c-.316-.648-.715-.973-1.197-.973-.479,0-.875.324-1.192.973-.316.645-.475,1.449-.475,2.414Z" fill="#000" stroke-width="0"/>
<path d="M234.943,51.617c0-1.441.302-2.592.907-3.451.542-.777,1.197-1.166,1.967-1.166s1.425.389,1.967,1.166c.604.859.907,2.029.907,3.51s-.303,2.645-.907,3.504c-.542.777-1.195,1.166-1.962,1.166s-1.424-.389-1.972-1.166c-.604-.859-.907-2.047-.907-3.562ZM236.15,51.623c0,1.004.156,1.838.469,2.502.313.652.712.979,1.197.979.481,0,.88-.326,1.197-.979.316-.648.475-1.467.475-2.455s-.158-1.809-.475-2.461c-.316-.648-.715-.973-1.197-.973-.479,0-.875.324-1.192.973-.316.645-.475,1.449-.475,2.414Z" fill="#000" stroke-width="0"/>
<path d="M241.608,51.617c0-1.441.302-2.592.907-3.451.542-.777,1.197-1.166,1.967-1.166s1.425.389,1.967,1.166c.604.859.907,2.029.907,3.51s-.303,2.645-.907,3.504c-.542.777-1.195,1.166-1.962,1.166s-1.424-.389-1.972-1.166c-.604-.859-.907-2.047-.907-3.562ZM242.816,51.623c0,1.004.156,1.838.469,2.502.313.652.712.979,1.197.979.481,0,.88-.326,1.197-.979.316-.648.475-1.467.475-2.455s-.158-1.809-.475-2.461c-.316-.648-.715-.973-1.197-.973-.479,0-.875.324-1.192.973-.316.645-.475,1.449-.475,2.414Z" fill="#000" stroke-width="0"/>
</g>
</g>
<g id="intro-2013-mobile">
<image width="418" height="300" transform="translate(105 173.044) scale(.605)" xlink:href="velo-Mesa_de_trabajo_5-interactions-6.png"/>
<g>
<path d="M225.162,195.625h3.032v1.283h-5.468l2.827-3.803c.277-.379.51-.707.699-.984.188-.277.331-.51.43-.697.2-.367.3-.697.3-.99,0-.422-.133-.775-.4-1.061-.268-.285-.598-.428-.992-.428-.823,0-1.294.541-1.413,1.623h-1.224c.197-1.906,1.063-2.859,2.6-2.859.742,0,1.364.262,1.867.785.506.523.759,1.172.759,1.945,0,.492-.118.975-.354,1.447-.119.246-.294.538-.524.876-.23.338-.521.737-.873,1.198l-1.266,1.664Z" fill="#000" stroke-width="0"/>
<path d="M229.581,192.327c0-1.441.302-2.592.907-3.451.542-.777,1.197-1.166,1.967-1.166s1.425.389,1.967,1.166c.604.859.907,2.029.907,3.51s-.303,2.645-.907,3.504c-.542.777-1.195,1.166-1.962,1.166s-1.424-.389-1.972-1.166c-.604-.859-.907-2.047-.907-3.562ZM230.789,192.333c0,1.004.156,1.838.469,2.502.313.652.712.979,1.197.979.481,0,.88-.326,1.197-.979.316-.648.475-1.467.475-2.455s-.158-1.809-.475-2.461c-.316-.648-.715-.973-1.197-.973-.479,0-.875.324-1.192.973-.316.645-.475,1.449-.475,2.414Z" fill="#000" stroke-width="0"/>
<path d="M237.881,189.139h-1.408l.675-1.277h1.961v9.047h-1.229v-7.77Z" fill="#000" stroke-width="0"/>
<path d="M243.64,192.708v-1.166c.52,0,.87-.064,1.049-.193.32-.227.48-.59.48-1.09,0-.387-.116-.701-.348-.943-.229-.246-.525-.369-.891-.369-.341,0-.604.092-.791.275-.179.188-.313.504-.401.949h-1.223c.126-.852.387-1.476.78-1.872s.944-.595,1.65-.595c.714,0,1.295.234,1.746.703.45.465.675,1.064.675,1.799,0,.828-.295,1.473-.886,1.934.675.441,1.013,1.158,1.013,2.15,0,.812-.246,1.477-.738,1.992s-1.124.773-1.893.773c-.981,0-1.709-.4-2.184-1.201-.197-.336-.321-.801-.374-1.395h1.187c.063.438.217.772.461,1.005.244.232.563.349.957.349.397,0,.726-.146.986-.439.26-.301.391-.682.391-1.143,0-.609-.195-1.043-.585-1.301-.229-.148-.582-.223-1.06-.223Z" fill="#000" stroke-width="0"/>
</g>
</g>
<g id="intro-2023-mobile">
<image width="573" height="409" transform="translate(61 354.044) scale(.605)" xlink:href="velo-Mesa_de_trabajo_5-interactions-7.png"/>
<g>
<path d="M227.357,389.625h3.032v1.283h-5.468l2.827-3.803c.277-.379.51-.707.699-.984.188-.277.331-.51.43-.697.2-.367.3-.697.3-.99,0-.422-.133-.775-.4-1.061-.268-.285-.598-.428-.992-.428-.823,0-1.294.541-1.413,1.623h-1.224c.197-1.906,1.063-2.859,2.6-2.859.742,0,1.364.262,1.867.785.506.523.759,1.172.759,1.945,0,.492-.118.975-.354,1.447-.119.246-.294.538-.524.876-.23.338-.521.737-.873,1.198l-1.266,1.664Z" fill="#000" stroke-width="0"/>
<path d="M231.777,386.327c0-1.441.302-2.592.907-3.451.542-.777,1.197-1.166,1.967-1.166s1.425.389,1.967,1.166c.604.859.907,2.029.907,3.51s-.303,2.645-.907,3.504c-.542.777-1.195,1.166-1.962,1.166s-1.424-.389-1.972-1.166c-.604-.859-.907-2.047-.907-3.562ZM232.984,386.333c0,1.004.156,1.838.469,2.502.313.652.712.979,1.197.979.481,0,.88-.326,1.197-.979.316-.648.475-1.467.475-2.455s-.158-1.809-.475-2.461c-.316-.648-.715-.973-1.197-.973-.479,0-.875.324-1.192.973-.316.645-.475,1.449-.475,2.414Z" fill="#000" stroke-width="0"/>
<path d="M240.688,389.625h3.032v1.283h-5.468l2.827-3.803c.277-.379.51-.707.699-.984.188-.277.331-.51.43-.697.2-.367.3-.697.3-.99,0-.422-.133-.775-.4-1.061-.268-.285-.598-.428-.992-.428-.823,0-1.294.541-1.413,1.623h-1.224c.197-1.906,1.063-2.859,2.6-2.859.742,0,1.364.262,1.867.785.506.523.759,1.172.759,1.945,0,.492-.118.975-.354,1.447-.119.246-.294.538-.524.876-.23.338-.521.737-.873,1.198l-1.266,1.664Z" fill="#000" stroke-width="0"/>
<path d="M247.444,386.708v-1.166c.52,0,.87-.064,1.049-.193.32-.227.48-.59.48-1.09,0-.387-.116-.701-.348-.943-.229-.246-.525-.369-.891-.369-.341,0-.604.092-.791.275-.179.188-.313.504-.401.949h-1.223c.126-.852.387-1.476.78-1.872s.944-.595,1.65-.595c.714,0,1.295.234,1.746.703.45.465.675,1.064.675,1.799,0,.828-.295,1.473-.886,1.934.675.441,1.013,1.158,1.013,2.15,0,.812-.246,1.477-.738,1.992s-1.124.773-1.893.773c-.981,0-1.709-.4-2.184-1.201-.197-.336-.321-.801-.374-1.395h1.187c.063.438.217.772.461,1.005.244.232.563.349.957.349.397,0,.726-.146.986-.439.26-.301.391-.682.391-1.143,0-.609-.195-1.043-.585-1.301-.229-.148-.582-.223-1.06-.223Z" fill="#000" stroke-width="0"/>
</g>
</g>
</g>
<style>
#g-velo-Mesa_de_trabajo_5-interactions-img rect, #g-velo-Mesa_de_trabajo_5-interactions-img circle, #g-velo-Mesa_de_trabajo_5-interactions-img path, #g-velo-Mesa_de_trabajo_5-interactions-img line, #g-velo-Mesa_de_trabajo_5-interactions-img polyline, #g-velo-Mesa_de_trabajo_5-interactions-img polygon { vector-effect: non-scaling-stroke; }
</style>
</svg>
</div>
</div>
<!-- End ai2html - 2024-08-09 06:05 -->
<!-- ai2html goes above this line -->
</div>
</div>
<div class="scrolly-overlay">
<div class="step" id="step-zero">
<p>In 2000, <b>791 bikes</b> were stolen in Brussels,
according to the <a href="https://www.police.be/statistiques/fr/criminalite">Belgian
Police</a>.</p>
</div>
<div class="step" id="step-one">
<p>By 2013, the number had reached <b>2,515</b>.</p>
</div>
<div class="step" id="step-two">
<p>In 2023, <b>4,923 bikes</b> were stolen. This is about double compared to a decade ago.</p>
</div>
<div class="step" id="step-three">
<p>This increase is not evenly distributed across the city.</p>
</div>
<div class="step" id="step-four">
<p>While some districts have seen stable or
even <span style="border-bottom: 2px solid #92C5DE;">decreasing</span> bike theft rates over the past decade...</p>
</div>
<div class="step" id="step-five">
<p>in others, <span style="border-bottom: 2px solid #9F2329;">more and more</span> bikes are gone.</p>
</div>
<div class="step" id="step-six">
<p>Some factors have contributed: more people living in those neighborhoods, more choosing bikes over cars,
and more reporting cases to the police.
</p>
</div>
<div class="step" id="step-seven">
<p>But these reasons don't explain the greatest mystery of all: </p>
</div>
<div class="step" id="step-eight">
<p><b>Seasonality</b></p>
</div>
<div class="step" id="step-nine">
<p>Bikes are mainly stolen between July and December. This trend has been consistent for a decade.</p>
</div>
<div class="step" id="step-ten">
<p>Is it because thieves "hibernate" in the winter? Is it because more people bike in the summer?
</p>
</div>
<div class="step" id="step-eleven">
<p>In 2023, however, there were about the same number of bikes robbed in both semesters.</p>
</div>
<div class="step" id="step-twelve">
<p>"Why is the pattern changing now?" you may wonder.</p>
<p>Stay tuned—we'll keep you updated!</p>
</div>
<div class="footer">
<p>You can find the code for this page <a href="https://github.com/anaemepe/bike-Brussels-process/">here</a>.
All visuals by Ana Muñoz using Datawrapper. Data source: <a href="https://www.police.be/statistiques/fr/criminalite">Belgium Federal Police statistics</a></p>
<p>🕵️🚲 </p>
</div>
</div>
</section>
<script>
//Add functions grouping repetitive d3.select here
/* Scrollytelling code goes under here */
d3.select("#Intro").classed('hidden', true)
d3.select("#Communes").classed('hidden', true)
d3.select("#Intro-mobile").classed('hidden', true)
d3.select("#Communes-mobile").classed('hidden', true)
d3.select("#Map").classed('hidden', true)
d3.select("#Map-mobile").classed('hidden', true)
d3.select("#step-zero").on('stepin', function(e) {
console.log("Got to step zero")
d3.select("#Intro").classed('hidden', false)
d3.select("#intro-2023").classed('hidden', true)
d3.select("#intro-2013").classed('hidden', true)
d3.select("#intro-2000").classed('hidden', false)
d3.select("#Intro-mobile").classed('hidden', false)
d3.select("#intro-2023-mobile").classed('hidden', true)
d3.select("#intro-2013-mobile").classed('hidden', true)
d3.select("#intro-2000-mobile").classed('hidden', false)
})
d3.select("#step-zero").on('stepout', function(e) {
if(e.detail.direction === 'up') {
//undo changes
d3.select("#Intro").classed('hidden', true)
d3.select("#Intro-mobile").classed('hidden', true)
}
})
d3.select("#step-one").on('stepin', function(e) {
console.log("Got to step one")
d3.select("#intro-2023").classed('hidden', true)
d3.select("#intro-2013").classed('hidden', false)
d3.select("#intro-2000").classed('hidden', false)
d3.select("#intro-2023-mobile").classed('hidden', true)
d3.select("#intro-2013-mobile").classed('hidden', false)
d3.select("#intro-2000-mobile").classed('hidden', false)
})
d3.select("#step-two").on('stepin', function(e) {
console.log("Got to step two")
d3.select("#intro-2023").classed('hidden', false)
d3.select("#intro-2000").classed('hidden', false)
d3.select("#intro-2013").classed('hidden', false)
d3.select("#intro-2023-mobile").classed('hidden', false)
d3.select("#intro-2013-mobile").classed('hidden', false)
d3.select("#intro-2000-mobile").classed('hidden', false)
})
d3.select("#step-three").on('stepin', function(e) {
console.log("Got to step three")
d3.select("#Intro").classed('hidden', true)
d3.select("#Intro-mobile").classed('hidden', true)
d3.select("#Map").classed('hidden', false)
d3.select("#Map-mobile").classed('hidden', false)
d3.select("#Berchem").classed('hidden', true)
d3.select("#Berchem-mobile").classed('hidden', true)
d3.select("#Saint").classed('hidden', true)
d3.select("#Saint-mobile").classed('hidden', true)
})
d3.select("#step-three").on('stepout', function(e) {
if(e.detail.direction === 'up') {
//undo changes
d3.select("#Intro").classed('hidden', false)
d3.select("#Intro-mobile").classed('hidden', false)
d3.select("#Map").classed('hidden', true)
d3.select("#Map-mobile").classed('hidden', true)
}
})
d3.select("#step-four").on('stepin', function(e) {
console.log("Got to step four")
d3.select("#Map").classed('hidden', false)
d3.select("#Map-mobile").classed('hidden', false)
d3.select("#Berchem").classed('hidden', false)
d3.select("#Berchem-mobile").classed('hidden', false)
d3.select("#Saint").classed('hidden', true)
d3.select("#Saint-mobile").classed('hidden', true)
})
d3.select("#step-five").on('stepin', function(e) {
console.log("Got to step five")
d3.select("#Map").classed('hidden', false)
d3.select("#Map-mobile").classed('hidden', false)
d3.select("#Berchem").classed('hidden', false)
d3.select("#Berchem-mobile").classed('hidden', false)
d3.select("#Saint").classed('hidden', false)
d3.select("#Saint-mobile").classed('hidden', false)
})
/* d3.select("#step-six").on('stepout', function(e) {
if(e.detail.direction === 'up') {
//undo changes
d3.select("#Map").classed('hidden', false)
d3.select("#Map-mobile").classed('hidden', false)
}
}) */
d3.select("#step-seven").on('stepin', function(e) {
console.log("Got to step seven")
d3.select("#Map").classed('hidden', true)
d3.select("#Map-mobile").classed('hidden', true)
})
d3.select("#step-seven").on('stepout', function(e) {
if(e.detail.direction === 'up') {
//undo changes
d3.select("#Map").classed('hidden', false)
d3.select("#Map-mobile").classed('hidden', false)
}
})
d3.select("#step-eight").on('stepin', function(e) {
console.log("Got to step eight")
d3.select("#Communes").classed('hidden', false)
d3.select("#communes-2023").classed('hidden', true)
d3.select("#communes-2018").classed('hidden', false)
d3.select("#communes-2013").classed('hidden', false)
d3.select("#Communes-mobile").classed('hidden', false)
d3.select("#communes-2023-mobile").classed('hidden', true)
d3.select("#communes-2018-mobile").classed('hidden', false)
d3.select("#communes-2013-mobile").classed('hidden', false)
})
d3.select("#step-eleven").on('stepin', function(e) {
console.log("Got to step eleven")
d3.select("#Communes").classed('hidden', false)
d3.select("#communes-2023").classed('hidden', false)
d3.select("#communes-2018").classed('hidden', false)
d3.select("#communes-2013").classed('hidden', false)
d3.select("#Communes-mobile").classed('hidden', false)
d3.select("#communes-2023-mobile").classed('hidden', false)
d3.select("#communes-2018-mobile").classed('hidden', false)
d3.select("#communes-2013-mobile").classed('hidden', false)
})
d3.select("#step-eight").on('stepout', function(e) {
if(e.detail.direction === 'up') {
//undo changes
d3.select("#Communes").classed('hidden', true)
d3.select("#Communes-mobile").classed('hidden', true)
}
})
</script>
<script>
const scroller = scrollama();
scroller
.setup({
step: "#scrolly .scrolly-overlay .step",
offset: 0.75,
debug: false
})
.onStepEnter(function({ element, index, direction}) {
const event = new CustomEvent('stepin', { detail: { direction: direction } })
element.dispatchEvent(event);
})
.onStepExit(function({ element, index, direction }) {
const event = new CustomEvent('stepout', { detail: { direction: direction } })
element.dispatchEvent(event);
});
window.addEventListener("resize", scroller.resize);
</script>
<!-- ai2html resizer script -->
<script type="text/javascript">
(function() {
// only want one resizer on the page
if (document.documentElement.className.indexOf("g-resizer-v3-init") > -1) return;
document.documentElement.className += " g-resizer-v3-init";
// require IE9+
if (!("querySelector" in document)) return;
function resizer() {
var elements = Array.prototype.slice.call(document.querySelectorAll(".g-artboard[data-min-width]")),
widthById = {};
elements.forEach(function(el) {
var parent = el.parentNode,
width = widthById[parent.id] || parent.getBoundingClientRect().width,
minwidth = el.getAttribute("data-min-width"),
maxwidth = el.getAttribute("data-max-width");
widthById[parent.id] = width;
if (+minwidth <= width && (+maxwidth >= width || maxwidth === null)) {
el.style.display = "block";
} else {
el.style.display = "none";
}
});
try {
if (window.parent && window.parent.$) {
window.parent.$("body").trigger("resizedcontent", [window]);
}
if (window.require) {
require(['foundation/main'], function() {
require(['shared/interactive/instances/app-communicator'], function(AppCommunicator) {
AppCommunicator.triggerResize();
});
});
}
} catch(e) { console.log(e); }
}
document.addEventListener('DOMContentLoaded', resizer);
// feel free to replace throttle with _.throttle, if available
window.addEventListener('resize', throttle(resizer, 200));
function throttle(func, wait) {
// from underscore.js
var _now = Date.now || function() { return new Date().getTime(); },
context, args, result, timeout = null, previous = 0;
var later = function() {
previous = _now();
timeout = null;
result = func.apply(context, args);
if (!timeout) context = args = null;
};
return function() {
var now = _now(), remaining = wait - (now - previous);
context = this;
args = arguments;
if (remaining <= 0 || remaining > wait) {
if (timeout) {
clearTimeout(timeout);
timeout = null;
}
previous = now;
result = func.apply(context, args);
if (!timeout) context = args = null;
} else if (!timeout && options.trailing !== false) {
timeout = setTimeout(later, remaining);
}
return result;
};
}
})();
</script>
</body>
</html>