-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
5516 lines (5246 loc) · 357 KB
/
index.html
File metadata and controls
5516 lines (5246 loc) · 357 KB
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
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html class="no-js" lang="it" prefix="og: //ogp.me/ns#">
<head>
<!-- ### Completare le variabili SEO ### -->
<!--#set var="title_page" value="inserire titolo infografica" -->
<!--#set var="description_page" value="inserire descrizione infografica" -->
<!--#set var="keywords_page" value="inserire keywords infografica" -->
<!--#set var="image_page" value="inserire percorso immagine principale infografica" -->
<!--#set var="dir_page" value="_master_infografica" -->
<!-- ### fine Completare le variabili SEO ### -->
<!-- *** head di sistema *** -->
<!--#include virtual="/includes2013/Master-Template/la-lettura/visualdata/head.shtml"-->
<!-- *** fine head di sistema *** -->
<!-- ### custom CSS, JS ### -->
<link rel="stylesheet" href="//static2.corriereobjects.it/la-lettura/infografiche-visual-data/immagini-animazioni/<!--#echo var="dir_page"-->
/libs/infografica.css?v=<!--#flastmod virtual="/la-lettura/infografiche-visual-data/immagini-animazioni/${dir_page}/libs/infografica.css" -->">
<script src="//static2.corriereobjects.it/la-lettura/infografiche-visual-data/immagini-animazioni/<!--#echo var="dir_page" -->/libs/infografica.js?v=<!--#flastmod virtual="/la-lettura/infografiche-visual-data/immagini-animazioni/${dir_page}/libs/infografica.js" -->"></script> -->
<script src="https://code.jquery.com/jquery-2.2.4.min.js"
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44="
crossorigin="anonymous"></script>
<!-- Custom resource for localDev -->
<link rel="stylesheet" href="infografica.css">
<script type="text/javascript" src="infografica.js"></script>
<!-- ### fine custom CSS, JS ### -->
<!-- ### inserire qui sotto i Custom Assets [css,js] ### -->
<link href="https://fonts.googleapis.com/css?family=Karla:400,400i,700,700i" rel="stylesheet">
</head>
<body id="visualdata" class="whitelabel">
<!-- *** header di sistema *** -->
<!--#include virtual="/includes2013/Master-Template/la-lettura/visualdata/top.shtml"-->
<!-- *** fine header di sistema *** -->
<!-- ### CONTENT ### -->
<!-- Intro -->
<div class="container ">
<p class="midPar">
I recenti sviluppi nel campo della robotica e dell'intelligenza artificiale,
stanno spingendo il mondo verso quella
che viene definita <a id="bluehigh" href="http://www3.weforum.org/docs/WEF_Future_of_Jobs.pdf"><strong>“la quarta rivoluzione industriale</strong></a>.
<br>
La popolazione utilizza e interagisce
con la tecnologia in modi sempre nuovi, in un mondo sempre più complesso e interconnesso.
</p>
</div>
<div class="separator "></div>
<div class="container-wide">
<div class="container">
<div class="text-left introQuotation">
“Siamo sulla soglia di una rivoluzione tecnologica che cambierà profondamente il nostro modo di vivere, lavorare e relazionarci con gli altri.
In quanto a scala, portata e complessità, la trasformazione sarà diversa da qualunque cosa l’umanità abbia mai sperimentato.”
</div>
<br>
<div class="quotAuthor">
<h4 class="text-right">
<strong class="introQuotation" id="author">Klaus Schwab</strong>
<br>
<em id="authRole">
Fondatore e direttore esecutivo <br>
del World Economic Forum
</em>
</h4>
</div>
</div>
</div>
<div class="separator"></div>
<div class="container" id="def">
<div class="columns">
<div class="col" id="aidef">
<h1>L'avvento dell'I.A.</h1>
<p>
Il campo dell'<span>
<a id="bluehigh" href="#" data-toggle="tooltip" data-placement="top"
title="Feature of any device that allows it to perceives its environment
and takes actions that maximize its chance of success at some goal.">
intelligenza artificiale (I.A.)</a></span> cresce a ritmi elevatissimi, alimentato da grossi
investimenti di aziende private e di governi.
Grazie all'attenzione dei media, anche non di settore, l'importanza di questa tecnologia sta diventando evidente per molti.
<br><br>
<div class="blueruler"></div>
</p>
</div>
<div class="col twoCol" id="robotdef">
<h1>Robotica</h1>
<p>
Gli investimenti nella <span >
<a id="greenhigh" href="#"
data-toggle="tooltip" data-placement="top"
title="The technology by which a process or procedure
is performed without human assistance.">
robotica</a></span> sono stati, nell’ultimo anno, un trend in costante
crescita. Nel 2015, in seguito allo sviluppo del settore dell'I.A., si è verificata
un’ondata di investimenti che ha portato quasi a duplicare i fondi.
<br><br>
<div class="greenruler"></div>
</p>
</div>
</div>
</div>
<div class="separator"></div>
<div class="container">
<img src="assets/risingdef.png" alt="Global GDP forecast">
<div class="quotAuthor">
<p class="text-right">
<a href="https://www.cbinsights.com/" id="source">
CIBINSIGHT
</a>
</p>
</div>
</div>
<div class="separator noMobile"></div>
<div class="container" id="investments">
<div class="fulltitle economyTitle">
L’economia del futuro
</div>
<!-- </div>
<div class="container"> -->
<div class="columns">
<p class="col">
Secondo un’analisi condotta da Pwc Research, entro il 2030 il campo dell’I.A. potrebbe contribuire
all’economia mondiale per un valore stimato di
<span id="bluehigh"> 15.7 mila miliardi</span> di dollari,
più dell’attuale rendimento della Cina e dell’India sommate.
</p>
<p class="col twoCol">
Secondo quest’analisi,entro il 2030 il PIL mondiale crescerebbe fino
al 14% come risultato del rapido sviluppo e
affermazione dell’I.A. - l’equivalente di ulteriori
<span id="bluehigh"> 15,7 mila
miliardi </span> di dollari.
</p>
</div>
</div>
<div class="separator"></div>
<div class="container" id="">
<div class="title">
Un fattore di cambiamento
</div>
<div class="midPar">
Alcuni dei processi sui quali l’I.A. e la robotica avranno impatto economico, creando nuovi settori e campi di applicazione.
</div>
<div class="separator "></div>
<!-- Definitions SVG -->
<div class="infografica">
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1920 650" style="enable-background:new 0 0 1920 1080;" xml:space="preserve">
<style type="text/css">
.g1cs0{fill:none;stroke:#333333;stroke-miterlimit:10;}
.g1cs1{fill:none;}
.g1cs2{fill:#333333;}
.g1cs3{font-family:'Karla'; font-weight: 400;}
.g1cs4{font-size:22.7px;}
.g1cs5{opacity:0.5;}
.g1cs6{fill:#0D8996;}
.g1cs7{opacity:0.5;fill:#B2D5DC;enable-background:new ;}
.g1cs8{opacity:0.5;fill:#52A7B1;enable-background:new ;}
.g1cs8{opacity:0.5;fill:#187F8B;enable-background:new ;}
.g1cs10{fill:#52A7B1;}
.g1cs11{fill:#187F8B;}
.g1cs12{fill:#B2D5DC;}
.g1cs13{fill:#EBEEF4;}
.g1cs14{font-family:'Karla'; font-weight: bold;}
.g1cs15{font-size:27.24px;}
</style>
<g id="grid">
<g id="XMLID_2960_">
<g>
<polyline id="XMLID_200_" class="g1cs0" points="50.9,11.4 49.1,542.2 1895.7,543.1 "/>
<line id="XMLID_199_" class="g1cs0" x1="122" y1="561.8" x2="122" y2="545"/>
<line id="XMLID_198_" class="g1cs0" x1="258.4" y1="561.8" x2="258.4" y2="543.1"/>
<line id="XMLID_197_" class="g1cs0" x1="394.8" y1="561.8" x2="394.8" y2="543.1"/>
<line id="XMLID_196_" class="g1cs0" x1="531.3" y1="561.8" x2="531.3" y2="543.1"/>
<line id="XMLID_195_" class="g1cs0" x1="667.7" y1="561.8" x2="667.7" y2="543.1"/>
<line id="XMLID_194_" class="g1cs0" x1="804.2" y1="561.8" x2="804.2" y2="543.1"/>
<line id="XMLID_193_" class="g1cs0" x1="940.6" y1="561.8" x2="940.6" y2="543.1"/>
<line id="XMLID_192_" class="g1cs0" x1="1077.1" y1="561.8" x2="1077.1" y2="543.1"/>
<line id="XMLID_191_" class="g1cs0" x1="1213.5" y1="561.8" x2="1213.5" y2="543.1"/>
<line id="XMLID_190_" class="g1cs0" x1="1349.9" y1="561.8" x2="1349.9" y2="543.1"/>
<line id="XMLID_189_" class="g1cs0" x1="1486.4" y1="561.8" x2="1486.4" y2="543.1"/>
<line id="XMLID_188_" class="g1cs0" x1="1622.8" y1="561.8" x2="1622.8" y2="543.1"/>
<line id="XMLID_187_" class="g1cs0" x1="1759.3" y1="561.8" x2="1759.3" y2="543.1"/>
<line id="XMLID_185_" class="g1cs0" x1="1895.7" y1="561.8" x2="1895.7" y2="543.1"/>
</g>
</g>
<g id="XMLID_2955_">
<rect id="XMLID_34_" x="48.1" y="562" class="g1cs1" width="89.8" height="31.8"/>
<text transform="matrix(1 0 0 1 93.0718 577.4775)" class="g1cs2 g1cs3 g1cs4">2017</text>
</g>
<g id="XMLID_2950_">
<rect id="XMLID_33_" x="182" y="562" class="g1cs1" width="95" height="33.6"/>
<text transform="matrix(1 0 0 1 228.8618 577.4775)" class="g1cs2 g1cs3 g1cs4">2018</text>
</g>
<g id="XMLID_2945_">
<rect id="XMLID_32_" x="318.4" y="562" class="g1cs1" width="95" height="33.6"/>
<text transform="matrix(1 0 0 1 366.0757 577.4775)" class="g1cs2 g1cs3 g1cs4">2019</text>
</g>
<g id="XMLID_2940_">
<rect id="XMLID_31_" x="452.2" y="562" class="g1cs1" width="100.3" height="35.5"/>
<text transform="matrix(1 0 0 1 499.2104 577.4775)" class="g1cs2 g1cs3 g1cs4">2020</text>
</g>
<g id="XMLID_2935_">
<rect id="XMLID_30_" x="591.3" y="562" class="g1cs1" width="95" height="33.6"/>
<text transform="matrix(1 0 0 1 638.9824 577.4775)" class="g1cs2 g1cs3 g1cs4">2021</text>
</g>
<g id="XMLID_2930_">
<rect id="XMLID_29_" x="725.1" y="562" class="g1cs1" width="100.3" height="35.5"/>
<text transform="matrix(1 0 0 1 772.4131 577.4775)" class="g1cs2 g1cs3 g1cs4">2022</text>
</g>
<g id="XMLID_2925_">
<rect id="XMLID_28_" x="861.5" y="562" class="g1cs1" width="100.3" height="35.5"/>
<text transform="matrix(1 0 0 1 908.6055 577.4775)" class="g1cs2 g1cs3 g1cs4">2023</text>
</g>
<g id="XMLID_2920_">
<rect id="XMLID_27_" x="998" y="562" class="g1cs1" width="100.3" height="35.5"/>
<text transform="matrix(1 0 0 1 1045.7734 577.4775)" class="g1cs2 g1cs3 g1cs4">2024</text>
</g>
<g id="XMLID_2915_">
<rect id="XMLID_26_" x="1134.4" y="562" class="g1cs1" width="100.3" height="35.5"/>
<text transform="matrix(1 0 0 1 1182.0801 577.4775)" class="g1cs2 g1cs3 g1cs4">2025</text>
</g>
<g id="XMLID_2910_">
<rect id="XMLID_25_" x="1270.8" y="562" class="g1cs1" width="100.3" height="35.5"/>
<text transform="matrix(1 0 0 1 1318.3398 577.4775)" class="g1cs2 g1cs3 g1cs4">2026</text>
</g>
<g id="XMLID_2905_">
<rect id="XMLID_24_" x="1409.9" y="564.3" class="g1cs1" width="95" height="33.6"/>
<text transform="matrix(1 0 0 1 1454.4814 579.748)" class="g1cs2 g1cs3 g1cs4">2027</text>
</g>
<g id="XMLID_2900_">
<rect id="XMLID_35_" x="1543.7" y="564.3" class="g1cs1" width="100.3" height="35.5"/>
<text transform="matrix(1 0 0 1 1590.2715 579.748)" class="g1cs2 g1cs3 g1cs4">2028</text>
</g>
<g id="XMLID_2895_">
<rect id="XMLID_36_" x="1680.2" y="564.3" class="g1cs1" width="100.3" height="35.5"/>
<text transform="matrix(1 0 0 1 1727.4844 579.748)" class="g1cs2 g1cs3 g1cs4">2029</text>
</g>
<g id="XMLID_2890_">
<rect id="XMLID_37_" x="1814" y="564.3" class="g1cs1" width="105.6" height="37.4"/>
<text transform="matrix(1 0 0 1 1866.0215 579.748)" class="g1cs2 g1cs3 g1cs4">2030</text>
</g>
<g id="XMLID_2855_">
<path id="XMLID_2888_" d="M11.1,7.2v18.3H8.8V12.1c0-0.4,0-1.1,0.1-2.1c-0.6,0.6-1.4,1.1-2.2,1.6s-1.7,0.8-2.6,1l-0.6-2
c0.4-0.1,1-0.3,1.8-0.6s1.5-0.8,2.2-1.3s1.2-1,1.6-1.4L11.1,7.2L11.1,7.2z"/>
<path id="XMLID_2885_" d="M26.6,7.8c0.9,0.6,1.7,1.6,2.3,2.9l-2.1,1C26.2,9.9,24.9,9,22.9,9c-1,0-1.8,0.3-2.6,1
c-0.8,0.7-1.3,1.6-1.8,2.8c-0.3,1.2-0.5,2.5-0.5,4v0.5h0.1c0.3-1.1,0.9-1.9,1.9-2.5s2-0.9,3.1-0.9c1.9,0,3.4,0.5,4.5,1.6
s1.7,2.5,1.7,4.3s-0.6,3.3-1.7,4.3c-1.1,1.1-2.7,1.6-4.6,1.6c-1.5,0-2.8-0.4-3.9-1.2c-1.1-0.8-1.9-1.9-2.4-3.3s-0.8-3.1-0.8-4.9
c0-2,0.3-3.7,0.9-5.1s1.5-2.5,2.6-3.2s2.3-1.1,3.7-1.1C24.5,6.9,25.7,7.2,26.6,7.8z M20,17.1c-0.7,0.7-1.1,1.6-1.1,2.7
s0.4,2.1,1.1,2.8c0.7,0.7,1.7,1.1,2.9,1.1c1.3,0,2.2-0.3,2.9-1c0.7-0.7,1.1-1.6,1.1-2.8c0-1.2-0.4-2.1-1.1-2.8
c-0.7-0.7-1.7-1-2.9-1C21.7,16,20.8,16.4,20,17.1z"/>
<path id="XMLID_2883_" d="M11.1,73.9v18.3H8.8V78.8c0-0.4,0-1.1,0.1-2.1c-0.6,0.6-1.4,1.1-2.2,1.6s-1.7,0.8-2.6,1l-0.6-2
c0.4-0.1,1-0.3,1.8-0.6s1.5-0.8,2.2-1.3s1.2-1,1.6-1.4L11.1,73.9L11.1,73.9z"/>
<path id="XMLID_2880_" d="M29.5,87.4h-3.3v4.8H24v-4.8h-9v-1.6l8.4-11.9h2.8v11.6h3.3C29.5,85.5,29.5,87.4,29.5,87.4z M17.5,85.5
h6.6v-6.9l0.1-2.9h-0.1c-0.5,0.9-1.1,2-1.8,3.1L17.5,85.5z"/>
<path id="XMLID_2878_" d="M11.1,140.6V159H8.8v-13.5c0-0.4,0-1.1,0.1-2.1c-0.6,0.6-1.4,1.1-2.2,1.6s-1.7,0.8-2.6,1l-0.6-2
c0.4-0.1,1-0.3,1.8-0.6s1.5-0.8,2.2-1.3s1.2-1,1.6-1.4L11.1,140.6L11.1,140.6z"/>
<path id="XMLID_2876_" d="M16,157.1c2.5-1.9,4.5-3.4,5.8-4.6c1.4-1.2,2.3-2.3,2.9-3.3s0.9-2,0.9-3.1s-0.4-2-1.1-2.7s-1.6-1-2.8-1
c-1.2,0-2.2,0.4-3,1.2s-1.2,1.9-1.3,3.3l-1.9-1.2c0.2-1.6,0.9-3,2-4s2.6-1.5,4.4-1.5c1.2,0,2.3,0.2,3.2,0.7c0.9,0.5,1.7,1.2,2.2,2
c0.5,0.9,0.8,1.9,0.8,3c0,1.2-0.3,2.3-0.8,3.4c-0.6,1.1-1.5,2.2-2.8,3.4s-3,2.5-5.2,4l0,0c1.2-0.1,2.1-0.1,2.8-0.1h6.4v2.1H16
V157.1z"/>
<path id="XMLID_2874_" d="M11.1,207.3v18.3H8.8v-13.5c0-0.4,0-1.1,0.1-2.1c-0.6,0.6-1.4,1.1-2.2,1.6s-1.7,0.8-2.6,1l-0.6-2
c0.4-0.1,1-0.3,1.8-0.6s1.5-0.8,2.2-1.3s1.2-1,1.6-1.4H11.1z"/>
<path id="XMLID_2871_" d="M17.5,223.5c-1.2-1.6-1.8-4-1.8-7c0-3.1,0.6-5.4,1.8-7s2.9-2.4,5.1-2.4s3.9,0.8,5.1,2.4
c1.2,1.6,1.8,4,1.8,7c0,3.1-0.6,5.4-1.8,7c-1.2,1.6-2.9,2.4-5.1,2.4S18.6,225.1,17.5,223.5z M25.9,222c0.8-1.3,1.2-3.1,1.2-5.5
s-0.4-4.3-1.2-5.5c-0.8-1.3-1.9-1.9-3.4-1.9s-2.6,0.6-3.4,1.9c-0.8,1.3-1.2,3.1-1.2,5.5s0.4,4.3,1.2,5.5c0.8,1.3,1.9,1.9,3.4,1.9
S25.1,223.3,25.9,222z"/>
<path id="XMLID_2867_" d="M15.3,275.1c1.1,0.9,1.6,2,1.6,3.5c0,0.9-0.2,1.8-0.7,2.5s-1.1,1.3-1.9,1.6l0,0c1.1,0.4,1.9,1,2.5,1.8
s0.9,1.8,0.9,2.9s-0.3,2-0.8,2.8s-1.3,1.4-2.3,1.8s-2.2,0.6-3.5,0.6s-2.5-0.2-3.5-0.6s-1.8-1-2.3-1.8c-0.6-0.8-0.8-1.7-0.8-2.8
c0-1.1,0.3-2.1,0.9-2.9s1.4-1.4,2.5-1.8l0,0c-0.8-0.4-1.5-0.9-1.9-1.6c-0.5-0.7-0.7-1.6-0.7-2.5c0-1.5,0.5-2.7,1.6-3.5
c1.1-0.9,2.5-1.3,4.3-1.3C12.9,273.8,14.3,274.2,15.3,275.1z M14.3,289.7c0.8-0.6,1.2-1.4,1.2-2.5s-0.4-1.9-1.2-2.5
s-1.8-0.9-3.2-0.9c-1.3,0-2.4,0.3-3.2,0.9s-1.2,1.4-1.2,2.5s0.4,1.9,1.2,2.5s1.8,0.9,3.2,0.9C12.4,290.6,13.5,290.3,14.3,289.7z
M8.5,276.7c-0.6,0.5-0.9,1.2-0.9,2.2c0,0.9,0.3,1.6,1,2.1c0.6,0.5,1.5,0.8,2.6,0.8s1.9-0.3,2.6-0.8c0.6-0.5,1-1.2,1-2.1
s-0.3-1.6-0.9-2.2c-0.6-0.5-1.5-0.8-2.6-0.8C10,275.9,9.1,276.1,8.5,276.7z"/>
<path id="XMLID_2864_" d="M15.3,341.4c0.9,0.6,1.7,1.6,2.3,2.9l-2.1,1c-0.6-1.8-1.9-2.8-3.9-2.8c-1,0-1.8,0.3-2.6,1
s-1.3,1.6-1.8,2.8c-0.4,1.2-0.6,2.5-0.6,3.9v0.5h0.1c0.3-1.1,0.9-1.9,1.9-2.5s2-0.9,3.1-0.9c1.9,0,3.4,0.5,4.5,1.6
s1.7,2.5,1.7,4.3s-0.6,3.3-1.7,4.3c-1.1,1.1-2.7,1.6-4.6,1.6c-1.5,0-2.8-0.4-3.9-1.2c-1.1-0.8-1.9-1.9-2.4-3.3s-0.8-3.1-0.8-4.9
c0-2,0.3-3.7,0.9-5.1s1.5-2.5,2.6-3.2s2.3-1.1,3.7-1.1C13.1,340.5,14.3,340.8,15.3,341.4z M8.7,350.7c-0.7,0.7-1.1,1.6-1.1,2.7
s0.4,2.1,1.1,2.8c0.7,0.7,1.7,1.1,2.9,1.1c1.3,0,2.2-0.3,2.9-1s1.1-1.6,1.1-2.8c0-1.2-0.4-2.1-1.1-2.8c-0.7-0.7-1.7-1-2.9-1
C10.4,349.6,9.4,350,8.7,350.7z"/>
<path id="XMLID_2861_" d="M18.2,421h-3.3v4.8h-2.2V421h-9v-1.6l8.4-11.9h2.8v11.6h3.3V421z M6.1,419.1h6.6v-6.9l0.1-2.9h-0.1
c-0.5,0.9-1.1,2-1.8,3.1L6.1,419.1z"/>
<path id="XMLID_2859_" d="M4.6,490.7c2.5-1.9,4.5-3.4,5.8-4.6c1.4-1.2,2.3-2.3,2.9-3.3c0.6-1,0.9-2,0.9-3.1s-0.4-2-1.1-2.7
c-0.7-0.7-1.6-1-2.8-1s-2.2,0.4-3,1.2c-0.8,0.8-1.2,1.9-1.3,3.3l-2-1.1c0.2-1.6,0.9-3,2-4s2.6-1.5,4.4-1.5c1.2,0,2.3,0.2,3.2,0.7
s1.7,1.2,2.2,2c0.5,0.9,0.8,1.9,0.8,3c0,1.2-0.3,2.3-0.8,3.4c-0.6,1.1-1.5,2.2-2.8,3.4c-1.3,1.2-3,2.5-5.2,4l0,0
c1.2-0.1,2.1-0.1,2.8-0.1H17v2.1H4.6V490.7z"/>
<path id="XMLID_2856_" d="M6.1,557.1c-1.2-1.6-1.8-4-1.8-7c0-3.1,0.6-5.4,1.8-7s2.9-2.4,5.1-2.4s3.9,0.8,5.1,2.4
c1.2,1.6,1.8,4,1.8,7c0,3.1-0.6,5.4-1.8,7s-2.9,2.4-5.1,2.4S7.2,558.7,6.1,557.1z M14.5,555.6c0.8-1.3,1.2-3.1,1.2-5.5
s-0.4-4.3-1.2-5.5c-0.8-1.3-1.9-1.9-3.4-1.9s-2.6,0.6-3.4,1.9c-0.8,1.3-1.2,3.1-1.2,5.5s0.4,4.3,1.2,5.5c0.8,1.3,1.9,1.9,3.4,1.9
S13.8,556.9,14.5,555.6z"/>
</g>
<g id="XMLID_2799_">
<g>
<path id="XMLID_277_" class="g1cs2" d="M99.9,34.2c-2.4-0.2-4.4-0.9-6-2.1c-1.6-1.2-2.8-2.8-3.5-4.9l3-1.6c0.3,1.5,1.1,2.7,2.3,3.8
c1.2,1,2.6,1.7,4.2,2v-9.5c-1.8-0.4-3.3-0.8-4.4-1.3c-1.2-0.5-2.1-1.1-2.9-2s-1.1-2.1-1.1-3.6c0-1.4,0.3-2.6,1-3.7s1.7-2,2.9-2.8
c1.3-0.7,2.8-1.2,4.5-1.3V3h2.8v4.2c2,0.2,3.7,0.7,5,1.6c1.3,0.9,2.5,2.3,3.4,4.1l-2.7,2.1c-0.7-1.6-1.5-2.8-2.3-3.5
c-0.9-0.8-2-1.2-3.5-1.4v9.7c1.8,0.4,3.3,0.8,4.4,1.3c1.2,0.5,2.1,1.1,2.9,2.1c0.8,0.9,1.2,2.2,1.2,3.7c0,2.1-0.8,3.8-2.3,5.2
c-1.5,1.3-3.6,2.1-6.2,2.3v4.2h-2.8L99.9,34.2L99.9,34.2z M99.9,9.9c-1.8,0.2-3.1,0.7-4,1.5s-1.4,1.9-1.4,3.3
c0,1.2,0.5,2.2,1.4,2.8s2.2,1.2,4,1.6V9.9z M108.2,27c0-1.3-0.5-2.2-1.4-2.9c-0.9-0.7-2.3-1.2-4-1.6v9
C106.4,31.2,108.2,29.7,108.2,27z"/>
<path id="XMLID_275_" class="g1cs2" d="M150.2,10.2h-9.5v24.1h-3.3V10.2H128V7.1h22.2V10.2z"/>
<path id="XMLID_273_" class="g1cs2" d="M164.5,13.7l-0.7,3.2c-0.7-0.4-1.5-0.5-2.6-0.5c-0.9,0-1.7,0.3-2.6,0.8
c-0.8,0.5-1.5,1.3-2.1,2.3c-0.5,1-0.8,2.3-0.8,3.7v11.1h-3.3V13.7h2.7l0.5,3.4c1.1-2.5,3.3-3.8,6.6-3.8
C163.2,13.3,163.9,13.4,164.5,13.7z"/>
<path id="XMLID_270_" class="g1cs2" d="M169.1,9.1c-0.5-0.5-0.7-1-0.7-1.8c0-0.7,0.2-1.3,0.7-1.8s1-0.7,1.8-0.7
c0.7,0,1.3,0.2,1.8,0.7s0.7,1,0.7,1.8c0,0.7-0.2,1.3-0.7,1.8s-1,0.7-1.8,0.7C170.2,9.7,169.6,9.5,169.1,9.1z M172.6,34.3h-3.3
V13.7h3.3V34.3z"/>
<path id="XMLID_268_" class="g1cs2" d="M183.3,28.7c0,1,0.2,1.8,0.5,2.2c0.3,0.4,0.9,0.6,1.7,0.6c0.6,0,1.1,0,1.5-0.1
s0.9-0.2,1.5-0.5l-0.5,3.2c-0.9,0.4-1.9,0.6-3,0.6c-1.7,0-2.9-0.5-3.7-1.4s-1.2-2.3-1.2-4.2V4.2h3.3v24.5H183.3z"/>
<path id="XMLID_266_" class="g1cs2" d="M195.9,28.7c0,1,0.2,1.8,0.5,2.2c0.3,0.4,0.9,0.6,1.7,0.6c0.6,0,1.1,0,1.5-0.1
s0.9-0.2,1.5-0.5l-0.5,3.2c-0.9,0.4-1.9,0.6-3,0.6c-1.7,0-2.9-0.5-3.7-1.4s-1.2-2.3-1.2-4.2V4.2h3.3v24.5H195.9z"/>
<path id="XMLID_263_" class="g1cs2" d="M205.2,9.1c-0.5-0.5-0.7-1-0.7-1.8c0-0.7,0.2-1.3,0.7-1.8s1-0.7,1.8-0.7s1.3,0.2,1.8,0.7
s0.7,1,0.7,1.8c0,0.7-0.2,1.3-0.7,1.8s-1,0.7-1.8,0.7S205.7,9.5,205.2,9.1z M208.7,34.3h-3.3V13.7h3.3V34.3z"/>
<path id="XMLID_1_" class="g1cs2" d="M265.5,9.1c-0.5-0.5-0.7-1-0.7-1.8c0-0.7,0.2-1.3,0.7-1.8s1-0.7,1.8-0.7
c0.8,0,1.3,0.2,1.8,0.7s0.7,1,0.7,1.8c0,0.7-0.2,1.3-0.7,1.8s-1,0.7-1.8,0.7C266.5,9.8,266,9.5,265.5,9.1z M269,34.3h-3.3V13.7
h3.3V34.3z"/>
<path id="XMLID_260_" class="g1cs2" d="M232.3,16.1c1.8,1.9,2.7,4.5,2.7,7.9c0,3.3-0.9,6-2.7,7.9s-4.2,2.8-7.3,2.8
s-5.5-0.9-7.3-2.8c-1.8-1.9-2.7-4.5-2.7-7.9c0-3.3,0.9-6,2.7-7.9s4.2-2.8,7.3-2.8C228.1,13.3,230.5,14.2,232.3,16.1z M220.1,18.2
c-1.2,1.4-1.8,3.3-1.8,5.8s0.6,4.4,1.8,5.8s2.8,2.1,4.9,2.1c2.1,0,3.7-0.7,4.9-2.1s1.8-3.3,1.8-5.8s-0.6-4.4-1.8-5.8
s-2.8-2.1-4.9-2.1C222.9,16.1,221.3,16.8,220.1,18.2z"/>
<path id="XMLID_258_" class="g1cs2" d="M257.1,15.3c1.5,1.3,2.3,3.3,2.3,5.8v13.2H256v-12c0-2.1-0.5-3.7-1.4-4.6
c-0.9-1-2.1-1.4-3.7-1.4c-1.1,0-2.1,0.2-3.1,0.7s-1.7,1.3-2.4,2.3c-0.6,1.1-0.9,2.4-0.9,4.1v10.9h-3.3V13.7h2.9l0.2,3.2
c0.7-1.2,1.6-2.1,2.8-2.7c1.2-0.6,2.6-0.9,4.1-0.9C253.6,13.3,255.6,14,257.1,15.3z"/>
</g>
</g>
</g>
<g id="tot_trasp">
<g id="XMLID_113_" class="g1cs5">
<g>
<path class="g1cs6" d="M1491.1,340.9c-91.6-7.5-244.8,0-271,0s-37.4,9.3-100.9,15c-63.5,5.6-274.8,71-274.8,71
C779,449.3,736,449.3,655.6,464.3S122,498.4,122,498.4v34.1h1771.9V310c-42.1,4.7-144.9,15.9-144.9,15.9
C1691,337.1,1491.1,340.9,1491.1,340.9z"/>
</g>
</g>
<path class="g1cs7" d="M819.3,407.1c30.2-10.1,110.6-36.2,175.2-57.2c42.6-13.8,79.3-25.8,88.3-28.8c22.2-7.4,118.1-30,131.6-32
c4.2-0.6,26.9-2.9,58.2-6c65.2-6.5,174.4-17.5,220.3-23.9c9.7-1.3,18.8-2.5,27.7-3.7c53.8-7,100.3-13.1,229.6-46.6
c5-1.7,118.7-41.1,143.6-50.6V11c0,0-147.7,78.5-263.5,112.1c-115.9,33.6-186.9,57.9-416.8,106.5c0,0-140.2,48.6-241.1,97.2
c0,0-130.8,54.2-160.7,63.5s-112.1,29.9-143.9,39.3c-31.8,9.3-164.5,29.9-207.5,31.8L122,491.3c3.6-0.1,286.7-13.3,426.7-31.8
C687,441.4,768.2,424.1,819.3,407.1z"/>
<path class="g1cs8" d="M1752.6,217.4c-129.9,33.7-176.7,39.8-230.8,46.9c-8.9,1.2-18,2.4-27.6,3.7c-46.1,6.4-151.1,16.9-220.6,23.9
c-31.2,3.1-53.8,5.4-57.9,6c-13.4,1.9-108.2,24.3-130.1,31.6c-9,3-45.8,15-88.4,28.8c-64.6,21-145,47.1-175.2,57.2
c-51.7,17.2-133,32.4-271.8,50.6C409.7,484.6,125,495.7,122,495.9v2.5c0,0,453.2-19.2,533.6-34.1s123.4-15,188.8-37.4
c0,0,211.2-65.4,274.8-71c63.5-5.6,74.8-15,100.9-15s179.4-7.5,271,0c0,0,200-3.7,257.9-15c0,0,102.8-11.2,144.9-15.9V168
c-25.4,9.7-139.7,48.9-140.9,49.3L1752.6,217.4z"/>
<path class="g1cs8" d="M1750.2,209c-129.3,33.5-175.7,39.6-229.6,46.6c-8.9,1.2-18,2.4-27.7,3.7c-45.9,6.4-155.1,17.3-220.3,23.9
c-31.3,3.1-54,5.4-58.2,6c-13.5,1.9-109.5,24.6-131.6,32c-9,3-45.7,14.9-88.3,28.8c-64.6,21-145,47.1-175.2,57.2
c-51.2,17.1-132.4,34.3-270.6,52.5c-140,18.4-423.1,31.6-426.7,31.8l0,0v4.5l0,0c3-0.1,287.7-11.3,428.3-29.8
c138.8-18.3,220.1-33.4,271.8-50.6c30.2-10.1,110.6-36.2,175.2-57.2c42.6-13.8,79.4-25.8,88.4-28.8c21.9-7.3,116.7-29.7,130.1-31.6
c4.1-0.6,26.6-2.8,57.9-6c69.5-7,174.6-17.5,220.6-23.9c9.6-1.3,18.7-2.5,27.6-3.7c54.1-7.1,100.9-13.2,230.8-46.9l0.3-0.1
c1.2-0.4,115.5-39.6,140.9-49.3v-9.7C1868.9,167.8,1755.2,207.2,1750.2,209z"/>
</g>
<g id="S_x5F_autopro">
<g id="XMLID_10_">
<g>
<path class="g1cs6" d="M1491.1,340.9c-91.6-7.5-244.8,0-271,0s-37.4,9.3-100.9,15c-63.5,5.6-274.8,71-274.8,71
C779,449.3,736,449.3,655.6,464.3S122,498.4,122,498.4v34.1h1771.9V310c-42.1,4.7-144.9,15.9-144.9,15.9
C1691,337.1,1491.1,340.9,1491.1,340.9z"/>
</g>
</g>
</g>
<g id="S_x5F_businesdec">
<path class="g1cs10" d="M1752.6,217.4c-129.9,33.7-176.7,39.8-230.8,46.9c-8.9,1.2-18,2.4-27.6,3.7c-46.1,6.4-151.1,16.9-220.6,23.9
c-31.2,3.1-53.8,5.4-57.9,6c-13.4,1.9-108.2,24.3-130.1,31.6c-9,3-45.8,15-88.4,28.8c-64.6,21-145,47.1-175.2,57.2
c-51.7,17.2-133,32.4-271.8,50.6C409.7,484.6,125,495.7,122,495.9v2.5c0,0,453.2-19.2,533.6-34.1s123.4-15,188.8-37.4
c0,0,211.2-65.4,274.8-71c63.5-5.6,74.8-15,100.9-15s179.4-7.5,271,0c0,0,200-3.7,257.9-15c0,0,102.8-11.2,144.9-15.9V168
c-25.4,9.7-139.7,48.9-140.9,49.3L1752.6,217.4z"/>
</g>
<g id="S_x5F_time">
<path class="g1cs11" d="M1750.2,209c-129.3,33.5-175.7,39.6-229.6,46.6c-4.5,0.6-9,1.2-13.6,1.8c-4.6,0.6-9.3,1.2-14.1,1.9
c-3.6,0.5-7.6,1-11.9,1.6c-2.6,0.3-5.3,0.7-8.1,1c-2.8,0.3-5.7,0.7-8.8,1.1c-2,0.2-4.1,0.5-6.2,0.7c-1,0.1-2.1,0.2-3.2,0.4
c-14.9,1.7-31.6,3.6-49.1,5.5c-0.3,0-0.5,0.1-0.8,0.1c-45.3,4.9-95.7,9.9-132.3,13.6c-3.7,0.4-7.3,0.7-10.8,1.1
c-3.9,0.4-7.6,0.8-11.1,1.1c-1.5,0.2-3,0.3-4.4,0.4c-4,0.4-7.7,0.8-11,1.1c-2,0.2-3.8,0.4-5.6,0.6c-1.7,0.2-3.3,0.3-4.8,0.5
s-2.8,0.3-4,0.4c-0.8,0.1-1.5,0.2-2.2,0.2c-0.7,0.1-1.3,0.1-1.8,0.2s-1,0.1-1.4,0.2s-0.7,0.1-1,0.1c-0.2,0-0.4,0.1-0.7,0.1
c-0.5,0.1-1.1,0.2-1.7,0.3c-0.3,0.1-0.7,0.1-1,0.2c-0.7,0.1-1.5,0.3-2.4,0.5s-1.8,0.4-2.8,0.6s-2,0.4-3.2,0.7
c-2.2,0.5-4.7,1-7.3,1.6c-1.3,0.3-2.7,0.6-4.1,0.9c-9.8,2.2-21.7,5-34.1,7.9c-0.9,0.2-1.8,0.4-2.7,0.6c-3.5,0.8-7.1,1.7-10.7,2.6
c-1.8,0.4-3.6,0.9-5.3,1.3s-3.5,0.9-5.3,1.3c-1.7,0.4-3.5,0.9-5.2,1.3c-3.4,0.9-6.8,1.7-10.1,2.5c-1.6,0.4-3.2,0.8-4.8,1.2
c-1.6,0.4-3.1,0.8-4.6,1.2c-1.5,0.4-3,0.8-4.4,1.2c-3.6,0.9-6.9,1.8-9.9,2.7c-1.2,0.3-2.3,0.7-3.4,1c-3.2,0.9-6,1.8-8,2.4
c-0.6,0.2-1.2,0.4-2,0.7c-0.8,0.3-1.6,0.5-2.6,0.9c-1,0.3-2,0.7-3.2,1.1c-1.7,0.6-3.7,1.2-5.8,1.9c-2.1,0.7-4.5,1.5-7,2.3
c-16.7,5.4-41,13.4-67.6,22c-64.6,21-145,47.1-175.2,57.2c-51.2,17.1-132.4,34.3-270.6,52.5c-10.9,1.4-22.6,2.8-35,4.2
c-0.1,0-0.2,0-0.3,0c-6.1,0.7-12.4,1.3-18.8,2c-0.1,0-0.3,0-0.4,0c-2.5,0.3-5,0.5-7.5,0.7c-0.2,0-0.3,0-0.5,0
c-0.9,0.1-1.8,0.2-2.8,0.3c-0.4,0-0.9,0.1-1.3,0.1c-1.3,0.1-2.7,0.3-4,0.4l0,0c-1.2,0.1-2.3,0.2-3.5,0.3c-0.2,0-0.4,0-0.6,0.1
c-1.1,0.1-2.2,0.2-3.2,0.3c-0.3,0-0.6,0.1-0.9,0.1c-1.1,0.1-2.2,0.2-3.2,0.3c-0.3,0-0.6,0.1-0.9,0.1c-1.1,0.1-2.1,0.2-3.2,0.3
c-0.3,0-0.6,0.1-1,0.1c-0.8,0.1-1.5,0.1-2.3,0.2c-0.6,0.1-1.3,0.1-1.9,0.2s-1.1,0.1-1.7,0.1c-0.8,0.1-1.7,0.2-2.5,0.2
c-0.5,0-1,0.1-1.5,0.1c-0.9,0.1-1.8,0.2-2.8,0.2c-0.2,0-0.4,0-0.6,0.1c-1.2,0.1-2.4,0.2-3.6,0.3c-0.4,0-0.8,0.1-1.2,0.1
c-1,0.1-2.1,0.2-3.1,0.3c-0.3,0-0.5,0-0.8,0.1c-1.2,0.1-2.3,0.2-3.5,0.3c-0.6,0-1.1,0.1-1.7,0.1c-0.9,0.1-1.8,0.1-2.6,0.2
c-0.8,0.1-1.7,0.1-2.5,0.2c-0.6,0.1-1.2,0.1-1.8,0.2c-0.7,0.1-1.4,0.1-2.1,0.2c-0.8,0.1-1.5,0.1-2.3,0.2c-0.3,0-0.7,0.1-1,0.1
c-1.1,0.1-2.2,0.2-3.4,0.3c-0.4,0-0.8,0.1-1.2,0.1c-1.1,0.1-2.1,0.2-3.2,0.3c-0.5,0-1,0.1-1.6,0.1c-0.9,0.1-1.9,0.1-2.8,0.2
c-0.5,0-1,0.1-1.6,0.1c-1,0.1-1.9,0.2-2.9,0.2c-0.2,0-0.4,0-0.6,0.1c-2.7,0.2-5.4,0.4-8.2,0.6c-0.3,0-0.6,0-0.8,0.1
c-1.2,0.1-2.4,0.2-3.6,0.3c-0.1,0-0.3,0-0.4,0c-1.3,0.1-2.7,0.2-4,0.3h-0.1c-2.9,0.2-5.7,0.4-8.6,0.7c-0.5,0-1,0.1-1.5,0.1
c-1,0.1-2,0.1-3,0.2c-0.1,0-0.3,0-0.4,0c-1.3,0.1-2.7,0.2-4,0.3c-0.3,0-0.5,0-0.8,0.1c-2.7,0.2-5.4,0.4-8.1,0.6
c-0.2,0-0.5,0-0.7,0.1c-1.2,0.1-2.5,0.2-3.7,0.3c0,0,0,0-0.1,0c-33.8,2.4-67.2,4.6-97.8,6.5l0,0c-45.2,2.8-84.1,4.8-108.9,6.1
c-0.2,0-0.3,0-0.5,0c-0.6,0-1.2,0.1-1.7,0.1c-0.1,0-0.2,0-0.2,0c-0.6,0-1.2,0.1-1.8,0.1c-0.1,0-0.2,0-0.3,0
c-1.3,0.1-2.5,0.1-3.7,0.2c0,0,0,0-0.1,0c-2.5,0.1-4.8,0.2-6.8,0.3c-0.1,0-0.1,0-0.2,0c-0.4,0-0.8,0-1.1,0.1c-0.2,0-0.3,0-0.5,0
c-0.8,0-1.7,0.1-2.4,0.1h-0.1c-0.7,0-1.4,0.1-2.1,0.1c-0.2,0-0.4,0-0.6,0c-1,0-1.9,0.1-2.6,0.1c0,0,0,0-0.1,0c-0.2,0-0.5,0-0.7,0
c-0.4,0-0.8,0-1.1,0.1c-0.1,0-0.1,0-0.2,0c-1,0-1.5,0.1-1.7,0.1v4.5l0,0c3-0.1,287.7-11.3,428.3-29.8
C688.7,448,770,432.9,821.7,415.7c30.2-10.1,110.6-36.2,175.2-57.2c42.6-13.8,79.4-25.8,88.4-28.8c21.9-7.3,116.7-29.7,130.1-31.6
c4.1-0.6,26.6-2.8,57.9-6c69.5-7,174.6-17.5,220.6-23.9c9.6-1.3,18.7-2.5,27.6-3.7c54.1-7.1,100.9-13.2,230.8-46.9l0.3-0.1
c1.2-0.4,115.5-39.6,140.9-49.3v-9.7C1868.9,167.8,1755.2,207.2,1750.2,209z"/>
</g>
<g id="S_x5F_personal">
<path class="g1cs1" d="M1118,311.5c-1.6,0.4-3.2,0.8-4.8,1.2C1114.8,312.3,1116.4,311.9,1118,311.5z"/>
<path class="g1cs1" d="M419,472.6c-0.4,0-0.8,0.1-1.2,0.1C418.2,472.7,418.6,472.7,419,472.6z"/>
<path class="g1cs1" d="M414.6,473c-0.5,0-1,0.1-1.6,0.1C413.6,473.1,414.1,473,414.6,473z"/>
<path class="g1cs1" d="M1133.3,307.6c-1.7,0.4-3.5,0.9-5.2,1.3C1129.8,308.5,1131.5,308.1,1133.3,307.6z"/>
<path class="g1cs1" d="M1108.6,313.9c-1.5,0.4-3,0.8-4.4,1.2C1105.6,314.7,1107.1,314.3,1108.6,313.9z"/>
<path class="g1cs1" d="M410.3,473.3c-0.5,0-1,0.1-1.6,0.1C409.2,473.4,409.7,473.4,410.3,473.3z"/>
<path class="g1cs1" d="M1080.9,321.8c-0.8,0.3-1.6,0.5-2.6,0.9C1079.2,322.3,1080.1,322,1080.9,321.8z"/>
<path class="g1cs1" d="M427.7,471.9c-0.7,0.1-1.4,0.1-2.1,0.2C426.3,472,427,472,427.7,471.9z"/>
<path class="g1cs1" d="M432,471.6c-0.8,0.1-1.7,0.1-2.5,0.2C430.3,471.7,431.2,471.6,432,471.6z"/>
<path class="g1cs1" d="M423.3,472.3c-0.3,0-0.7,0.1-1,0.1C422.7,472.3,423,472.3,423.3,472.3z"/>
<path class="g1cs1" d="M392.6,474.7c-0.1,0-0.3,0-0.4,0C392.3,474.7,392.5,474.7,392.6,474.7z"/>
<path class="g1cs1" d="M1195.4,293c-1.3,0.3-2.7,0.6-4.1,0.9C1192.7,293.6,1194.1,293.3,1195.4,293z"/>
<path class="g1cs1" d="M388.2,475.1h-0.1C388.1,475.1,388.1,475.1,388.2,475.1z"/>
<path class="g1cs1" d="M1143.9,305c-1.8,0.4-3.6,0.9-5.3,1.3C1140.3,305.9,1142.1,305.5,1143.9,305z"/>
<path class="g1cs1" d="M1191.3,293.9c-9.8,2.2-21.7,5-34.1,7.9C1169.6,298.9,1181.5,296.1,1191.3,293.9z"/>
<path class="g1cs1" d="M405.8,473.7c-0.2,0-0.4,0-0.6,0.1C405.4,473.7,405.6,473.7,405.8,473.7z"/>
<path class="g1cs1" d="M1154.6,302.5c-3.5,0.8-7.1,1.7-10.7,2.6C1147.4,304.2,1151,303.3,1154.6,302.5z"/>
<path class="g1cs1" d="M397,474.4c-0.3,0-0.6,0-0.8,0.1C396.5,474.4,396.8,474.4,397,474.4z"/>
<path class="g1cs1" d="M494.3,465.8c-2.5,0.3-5,0.5-7.5,0.7C489.3,466.3,491.8,466.1,494.3,465.8z"/>
<path class="g1cs1" d="M465.9,468.5c-1.1,0.1-2.1,0.2-3.2,0.3C463.8,468.7,464.9,468.6,465.9,468.5z"/>
<path class="g1cs1" d="M486.3,466.6c-0.9,0.1-1.8,0.2-2.8,0.3C484.5,466.8,485.4,466.7,486.3,466.6z"/>
<path class="g1cs1" d="M1078.2,322.7c-1,0.3-2,0.7-3.2,1.1C1076.2,323.3,1077.3,323,1078.2,322.7z"/>
<path class="g1cs1" d="M470.1,468.2c-1.1,0.1-2.2,0.2-3.2,0.3C467.9,468.4,469,468.3,470.1,468.2z"/>
<path class="g1cs1" d="M461.8,468.9c-0.8,0.1-1.5,0.1-2.3,0.2C460.2,469.1,461,469,461.8,468.9z"/>
<path class="g1cs1" d="M474.2,467.8c-1.1,0.1-2.2,0.2-3.2,0.3C472,468,473.1,467.9,474.2,467.8z"/>
<path class="g1cs1" d="M478.3,467.4c-1.2,0.1-2.3,0.2-3.5,0.3C475.9,467.6,477.1,467.5,478.3,467.4z"/>
<path class="g1cs1" d="M482.3,467c-1.3,0.1-2.7,0.3-4,0.4C479.6,467.3,481,467.1,482.3,467z"/>
<path class="g1cs1" d="M457.6,469.3c-0.6,0.1-1.1,0.1-1.7,0.1C456.4,469.4,457,469.4,457.6,469.3z"/>
<path class="g1cs1" d="M1069.2,325.6c-2.1,0.7-4.5,1.5-7,2.3C1064.7,327.1,1067,326.3,1069.2,325.6z"/>
<path class="g1cs1" d="M444.9,470.4c-0.4,0-0.8,0.1-1.2,0.1C444.1,470.5,444.5,470.5,444.9,470.4z"/>
<path class="g1cs1" d="M440.6,470.8c-0.3,0-0.5,0-0.8,0.1C440,470.9,440.3,470.8,440.6,470.8z"/>
<path class="g1cs1" d="M1202.7,291.5c-2.2,0.5-4.7,1-7.3,1.6C1198,292.5,1200.5,291.9,1202.7,291.5z"/>
<path class="g1cs1" d="M436.3,471.2c-0.6,0-1.1,0.1-1.7,0.1C435.2,471.3,435.8,471.2,436.3,471.2z"/>
<path class="g1cs1" d="M513.5,463.8c-6.1,0.7-12.4,1.3-18.8,2C501.1,465.1,507.4,464.4,513.5,463.8z"/>
<path class="g1cs1" d="M453.4,469.7c-0.5,0-1,0.1-1.5,0.1C452.3,469.8,452.9,469.7,453.4,469.7z"/>
<path class="g1cs1" d="M449.1,470.1c-0.2,0-0.4,0-0.6,0.1C448.7,470.1,448.9,470.1,449.1,470.1z"/>
<path class="g1cs1" d="M1094.3,317.7c-1.2,0.3-2.3,0.7-3.4,1C1092,318.4,1093.1,318,1094.3,317.7z"/>
<path class="g1cs1" d="M1250.7,285.4c-1.5,0.2-3,0.3-4.4,0.4C1247.8,285.7,1249.2,285.5,1250.7,285.4z"/>
<path class="g1cs1" d="M131.1,490.9H131H131.1z"/>
<path class="g1cs1" d="M134,490.7c-0.2,0-0.3,0-0.5,0C133.7,490.8,133.8,490.8,134,490.7z"/>
<path class="g1cs1" d="M128.9,491c-0.2,0-0.4,0-0.6,0C128.5,491,128.7,491,128.9,491z"/>
<path class="g1cs1" d="M1235.3,286.9c-2,0.2-3.8,0.4-5.6,0.6C1231.5,287.3,1233.4,287.1,1235.3,286.9z"/>
<path class="g1cs1" d="M1454.9,264c-14.9,1.7-31.6,3.6-49.1,5.5C1423.3,267.6,1440,265.7,1454.9,264z"/>
<path class="g1cs1" d="M135.4,490.7c-0.1,0-0.1,0-0.2,0C135.2,490.7,135.3,490.7,135.4,490.7z"/>
<path class="g1cs1" d="M146.2,490.1c-0.1,0-0.2,0-0.3,0C146,490.1,146.1,490.1,146.2,490.1z"/>
<path class="g1cs1" d="M142.3,490.3C142.2,490.3,142.2,490.3,142.3,490.3C142.2,490.3,142.2,490.3,142.3,490.3z"/>
<path class="g1cs1" d="M1481.1,260.8c-2.6,0.3-5.3,0.7-8.1,1C1475.8,261.5,1478.5,261.2,1481.1,260.8z"/>
<path class="g1cs1" d="M1261.9,284.2c3.5-0.3,7.1-0.7,10.8-1.1c36.6-3.7,87-8.7,132.3-13.6c-45.3,4.9-95.7,9.9-132.3,13.6
C1268.9,283.5,1265.3,283.9,1261.9,284.2z"/>
<path class="g1cs1" d="M125.7,491.1C125.7,491.1,125.6,491.1,125.7,491.1C125.6,491.1,125.7,491.1,125.7,491.1z"/>
<path class="g1cs1" d="M1464.2,262.9c-2,0.2-4.1,0.5-6.2,0.7C1460.2,263.4,1462.2,263.2,1464.2,262.9z"/>
<path class="g1cs1" d="M124.9,491.2c-0.4,0-0.8,0-1.1,0.1C124.1,491.2,124.5,491.2,124.9,491.2z"/>
<path class="g1cs1" d="M819.3,407.1c-51.2,17.1-132.4,34.3-270.6,52.5c-10.9,1.4-22.6,2.8-35,4.2c12.4-1.4,24.1-2.8,35-4.2
C687,441.4,768.2,424.1,819.3,407.1c30.2-10.1,110.6-36.2,175.2-57.2c26.6-8.6,50.9-16.6,67.6-22c-16.7,5.4-41,13.4-67.6,22
C929.9,370.9,849.5,397,819.3,407.1z"/>
<path class="g1cs1" d="M1213.8,289.3c-0.5,0.1-1.1,0.2-1.7,0.3C1212.7,289.5,1213.3,289.4,1213.8,289.3z"/>
<path class="g1cs1" d="M259.3,483.8L259.3,483.8L259.3,483.8z"/>
<path class="g1cs1" d="M379.4,475.7c-0.5,0-1,0.1-1.5,0.1C378.4,475.8,378.9,475.8,379.4,475.7z"/>
<path class="g1cs1" d="M1216.9,288.9c-0.5,0.1-1,0.1-1.4,0.2C1215.9,289,1216.4,288.9,1216.9,288.9z"/>
<path class="g1cs1" d="M1218.7,288.7c-0.7,0.1-1.3,0.1-1.8,0.2C1217.4,288.8,1218.1,288.7,1218.7,288.7z"/>
<path class="g1cs1" d="M361.7,477c-0.2,0-0.5,0-0.7,0.1C361.2,477.1,361.5,477.1,361.7,477z"/>
<path class="g1cs1" d="M1205.8,290.8c-1,0.2-2,0.4-3.2,0.7C1203.8,291.2,1204.8,291,1205.8,290.8z"/>
<path class="g1cs1" d="M370.5,476.4c-0.3,0-0.5,0-0.8,0.1C370,476.4,370.3,476.4,370.5,476.4z"/>
<path class="g1cs1" d="M374.9,476.1c-0.1,0-0.3,0-0.4,0C374.7,476.1,374.8,476.1,374.9,476.1z"/>
<path class="g1cs1" d="M1211,289.8c-0.7,0.1-1.5,0.3-2.4,0.5C1209.5,290.1,1210.3,289.9,1211,289.8z"/>
<path class="g1cs1" d="M357.2,477.4L357.2,477.4L357.2,477.4z"/>
<path class="g1cs1" d="M1220.9,288.4c-0.8,0.1-1.5,0.2-2.2,0.2C1219.4,288.6,1220.1,288.5,1220.9,288.4z"/>
<path class="g1cs1" d="M148.3,490c-0.1,0-0.2,0-0.2,0S148.2,490,148.3,490z"/>
<path class="g1cs1" d="M150.4,489.9c-0.2,0-0.3,0-0.5,0C150.1,489.9,150.3,489.9,150.4,489.9z"/>
<path class="g1cs1" d="M1225,288c-1.5,0.2-2.8,0.3-4,0.4C1222.1,288.3,1223.5,288.1,1225,288z"/>
<path class="g1cs1" d="M1229.8,287.5c-1.7,0.2-3.3,0.3-4.8,0.5C1226.4,287.8,1228,287.7,1229.8,287.5z"/>
<path class="g1cs12" d="M124.9,491.2c0.2,0,0.4,0,0.7,0c0,0,0,0,0.1,0c0.8,0,1.7-0.1,2.6-0.1c0.2,0,0.4,0,0.6,0
c0.7,0,1.4-0.1,2.1-0.1h0.1c0.8,0,1.6-0.1,2.4-0.1c0.2,0,0.3,0,0.5,0c0.4,0,0.8,0,1.1-0.1c0.1,0,0.1,0,0.2,0
c2.1-0.1,4.3-0.2,6.8-0.3c0,0,0,0,0.1,0c1.2-0.1,2.4-0.1,3.7-0.2c0.1,0,0.2,0,0.3,0c0.6,0,1.2-0.1,1.8-0.1c0.1,0,0.2,0,0.2,0
c0.6,0,1.1-0.1,1.7-0.1c0.2,0,0.3,0,0.5,0c24.8-1.3,63.7-3.3,108.9-6.1l0,0c30.6-1.9,64-4,97.8-6.5c0,0,0,0,0.1,0
c1.2-0.1,2.5-0.2,3.7-0.3c0.2,0,0.5,0,0.7-0.1c2.7-0.2,5.4-0.4,8.1-0.6c0.3,0,0.5,0,0.8-0.1c1.3-0.1,2.7-0.2,4-0.3
c0.1,0,0.3,0,0.4,0c1-0.1,2-0.1,3-0.2c0.5,0,1-0.1,1.5-0.1c2.9-0.2,5.8-0.4,8.6-0.7h0.1c1.3-0.1,2.7-0.2,4-0.3c0.1,0,0.3,0,0.4,0
c1.2-0.1,2.4-0.2,3.6-0.3c0.3,0,0.6,0,0.8-0.1c2.7-0.2,5.4-0.4,8.2-0.6c0.2,0,0.4,0,0.6-0.1c1-0.1,1.9-0.2,2.9-0.2
c0.5,0,1-0.1,1.6-0.1c0.9-0.1,1.9-0.1,2.8-0.2c0.5,0,1.1-0.1,1.6-0.1c1.1-0.1,2.1-0.2,3.2-0.3c0.4,0,0.8-0.1,1.2-0.1
c1.1-0.1,2.2-0.2,3.4-0.3c0.3,0,0.7-0.1,1-0.1c0.8-0.1,1.5-0.1,2.3-0.2c0.7-0.1,1.4-0.1,2.1-0.2c0.6,0,1.2-0.1,1.8-0.2
c0.8-0.1,1.7-0.1,2.5-0.2c0.9-0.1,1.8-0.1,2.6-0.2c0.6,0,1.1-0.1,1.7-0.1c1.2-0.1,2.3-0.2,3.5-0.3c0.3,0,0.5,0,0.8-0.1
c1-0.1,2.1-0.2,3.1-0.3c0.4,0,0.8-0.1,1.2-0.1c1.2-0.1,2.4-0.2,3.6-0.3c0.2,0,0.4,0,0.6-0.1c0.9-0.1,1.8-0.2,2.8-0.2
c0.5,0,1-0.1,1.5-0.1c0.8-0.1,1.7-0.2,2.5-0.2c0.6,0,1.1-0.1,1.7-0.1c0.6-0.1,1.3-0.1,1.9-0.2c0.8-0.1,1.5-0.1,2.3-0.2
c0.3,0,0.6-0.1,1-0.1c1.1-0.1,2.1-0.2,3.2-0.3c0.3,0,0.6-0.1,0.9-0.1c1.1-0.1,2.2-0.2,3.2-0.3c0.3,0,0.6-0.1,0.9-0.1
c1.1-0.1,2.2-0.2,3.2-0.3c0.2,0,0.4,0,0.6-0.1c1.2-0.1,2.4-0.2,3.5-0.3l0,0c1.3-0.1,2.7-0.3,4-0.4c0.4,0,0.9-0.1,1.3-0.1
c0.9-0.1,1.8-0.2,2.8-0.3c0.2,0,0.3,0,0.5,0c2.5-0.2,5-0.5,7.5-0.7c0.1,0,0.3,0,0.4,0c6.4-0.7,12.7-1.3,18.8-2c0.1,0,0.2,0,0.3,0
c12.4-1.4,24.1-2.8,35-4.2c138.2-18.2,219.4-35.4,270.6-52.5c30.2-10.1,110.6-36.2,175.2-57.2c26.6-8.6,50.9-16.6,67.6-22
c2.5-0.8,4.8-1.6,7-2.3c2.1-0.7,4.1-1.3,5.8-1.9c1.2-0.4,2.2-0.7,3.2-1.1c1-0.3,1.9-0.6,2.6-0.9s1.4-0.5,2-0.7
c2.1-0.7,4.8-1.5,8-2.4c1.1-0.3,2.2-0.6,3.4-1c3-0.8,6.3-1.7,9.9-2.7c1.4-0.4,2.9-0.8,4.4-1.2s3-0.8,4.6-1.2
c1.6-0.4,3.2-0.8,4.8-1.2c3.3-0.8,6.6-1.7,10.1-2.5c1.7-0.4,3.5-0.9,5.2-1.3s3.5-0.9,5.3-1.3s3.5-0.9,5.3-1.3
c3.6-0.9,7.1-1.7,10.7-2.6c0.9-0.2,1.8-0.4,2.7-0.6c12.4-2.9,24.3-5.7,34.1-7.9c1.4-0.3,2.8-0.6,4.1-0.9c2.6-0.6,5.1-1.1,7.3-1.6
c1.1-0.2,2.2-0.5,3.2-0.7s1.9-0.4,2.8-0.6s1.7-0.3,2.4-0.5c0.4-0.1,0.7-0.1,1-0.2c0.7-0.1,1.2-0.2,1.7-0.3c0.3,0,0.5-0.1,0.7-0.1
c0.3,0,0.6-0.1,1-0.1s0.9-0.1,1.4-0.2s1.2-0.1,1.8-0.2c0.7-0.1,1.4-0.2,2.2-0.2c1.2-0.1,2.5-0.3,4-0.4c1.5-0.2,3.1-0.3,4.8-0.5
c1.7-0.2,3.6-0.4,5.6-0.6c3.3-0.3,7-0.7,11-1.1c1.4-0.1,2.9-0.3,4.4-0.4c3.5-0.4,7.2-0.7,11.1-1.1c3.5-0.3,7.1-0.7,10.8-1.1
c36.6-3.7,87-8.7,132.3-13.6c0.3,0,0.5-0.1,0.8-0.1c17.5-1.9,34.2-3.7,49.1-5.5c1.1-0.1,2.1-0.2,3.2-0.4c2.1-0.2,4.2-0.5,6.2-0.7
c3-0.4,5.9-0.7,8.8-1.1c2.8-0.3,5.5-0.7,8.1-1c4.3-0.5,8.3-1.1,11.9-1.6c4.8-0.7,9.5-1.3,14.1-1.9s9.1-1.2,13.6-1.8
c53.8-7,100.3-13.1,229.6-46.6c5-1.7,118.7-41.1,143.6-50.6V11c0,0-147.7,78.5-263.5,112.1c-115.9,33.6-186.9,57.9-416.8,106.5
c0,0-140.2,48.6-241.1,97.2c0,0-130.8,54.2-160.7,63.5s-112.1,29.9-143.9,39.3c-31.8,9.3-164.5,29.9-207.5,31.8L122,491.3
c0.1,0,0.7,0,1.6-0.1c0.1,0,0.1,0,0.2,0C124.1,491.2,124.5,491.2,124.9,491.2z"/>
<path class="g1cs12" d="M1405.8,269.5c-0.3,0-0.5,0.1-0.8,0.1C1405.3,269.5,1405.5,269.5,1405.8,269.5z"/>
<path class="g1cs12" d="M483.6,466.9c-0.4,0-0.9,0.1-1.3,0.1C482.7,467,483.1,466.9,483.6,466.9z"/>
<path class="g1cs12" d="M1246.4,285.8c-4,0.4-7.7,0.8-11,1.1C1238.7,286.6,1242.4,286.2,1246.4,285.8z"/>
<path class="g1cs12" d="M1261.9,284.2c-3.9,0.4-7.6,0.8-11.1,1.1C1254.3,285,1258,284.6,1261.9,284.2z"/>
<path class="g1cs12" d="M494.7,465.8c-0.1,0-0.3,0-0.4,0C494.4,465.8,494.5,465.8,494.7,465.8z"/>
<path class="g1cs12" d="M478.3,467.4L478.3,467.4L478.3,467.4z"/>
<path class="g1cs12" d="M513.7,463.7c-0.1,0-0.2,0-0.3,0C513.6,463.8,513.6,463.7,513.7,463.7z"/>
<path class="g1cs12" d="M486.8,466.5c-0.2,0-0.3,0-0.5,0C486.5,466.6,486.6,466.6,486.8,466.5z"/>
<path class="g1cs12" d="M462.7,468.8c-0.3,0-0.6,0.1-1,0.1C462.1,468.9,462.4,468.9,462.7,468.8z"/>
<path class="g1cs12" d="M259.3,483.8c-45.2,2.8-84.1,4.8-108.9,6.1C175.2,488.7,214.1,486.6,259.3,483.8z"/>
<path class="g1cs12" d="M148,490c-0.6,0-1.2,0.1-1.8,0.1C146.8,490.1,147.4,490.1,148,490z"/>
<path class="g1cs12" d="M357.2,477.4c-33.8,2.4-67.2,4.6-97.8,6.5C289.9,482,323.3,479.8,357.2,477.4z"/>
<path class="g1cs12" d="M150,489.9c-0.6,0-1.2,0.1-1.7,0.1C148.8,490,149.4,490,150,489.9z"/>
<path class="g1cs12" d="M361,477.1c-1.2,0.1-2.5,0.2-3.7,0.3C358.5,477.3,359.7,477.2,361,477.1z"/>
<path class="g1cs12" d="M377.9,475.8c-1,0.1-2,0.1-3,0.2C375.9,476,376.9,475.9,377.9,475.8z"/>
<path class="g1cs12" d="M369.8,476.5c-2.7,0.2-5.4,0.4-8.1,0.6C364.4,476.8,367.1,476.6,369.8,476.5z"/>
<path class="g1cs12" d="M388.1,475.1c-2.9,0.2-5.7,0.4-8.6,0.7C382.3,475.5,385.2,475.3,388.1,475.1z"/>
<path class="g1cs12" d="M374.5,476.1c-1.3,0.1-2.7,0.2-4,0.3C371.9,476.3,373.2,476.2,374.5,476.1z"/>
<path class="g1cs12" d="M145.9,490.2c-1.3,0.1-2.5,0.1-3.7,0.2C143.4,490.3,144.7,490.2,145.9,490.2z"/>
<path class="g1cs12" d="M392.2,474.8c-1.3,0.1-2.7,0.2-4,0.3C389.5,475,390.9,474.9,392.2,474.8z"/>
<path class="g1cs12" d="M125.6,491.1c-0.2,0-0.5,0-0.7,0C125.1,491.2,125.4,491.2,125.6,491.1z"/>
<path class="g1cs12" d="M123.6,491.2c0.1,0,0.1,0,0.2,0C123.7,491.2,123.7,491.2,123.6,491.2z"/>
<path class="g1cs12" d="M131,490.9c-0.7,0-1.4,0.1-2.1,0.1C129.6,491,130.3,490.9,131,490.9z"/>
<path class="g1cs12" d="M128.3,491c-1,0-1.9,0.1-2.6,0.1C126.5,491.1,127.3,491.1,128.3,491z"/>
<path class="g1cs12" d="M142.2,490.3c-2.5,0.1-4.8,0.2-6.8,0.3C137.4,490.6,139.7,490.5,142.2,490.3z"/>
<path class="g1cs12" d="M135.1,490.7c-0.4,0-0.8,0-1.1,0.1C134.4,490.7,134.8,490.7,135.1,490.7z"/>
<path class="g1cs12" d="M133.5,490.8c-0.8,0-1.7,0.1-2.4,0.1C131.9,490.8,132.7,490.8,133.5,490.8z"/>
<path class="g1cs12" d="M451.8,469.8c-0.9,0.1-1.8,0.2-2.8,0.2C450,470,450.9,469.9,451.8,469.8z"/>
<path class="g1cs12" d="M455.9,469.5c-0.8,0.1-1.7,0.2-2.5,0.2C454.2,469.6,455,469.5,455.9,469.5z"/>
<path class="g1cs12" d="M474.7,467.7c-0.2,0-0.4,0-0.6,0.1C474.4,467.8,474.6,467.7,474.7,467.7z"/>
<path class="g1cs12" d="M448.4,470.1c-1.2,0.1-2.4,0.2-3.6,0.3C446.1,470.3,447.3,470.2,448.4,470.1z"/>
<path class="g1cs12" d="M396.2,474.5c-1.2,0.1-2.4,0.2-3.6,0.3C393.8,474.6,395,474.5,396.2,474.5z"/>
<path class="g1cs12" d="M443.7,470.5c-1,0.1-2.1,0.2-3.1,0.3C441.6,470.7,442.7,470.6,443.7,470.5z"/>
<path class="g1cs12" d="M470.9,468.1c-0.3,0-0.6,0.1-0.9,0.1C470.4,468.1,470.6,468.1,470.9,468.1z"/>
<path class="g1cs12" d="M466.8,468.5c-0.3,0-0.6,0.1-0.9,0.1C466.2,468.5,466.5,468.5,466.8,468.5z"/>
<path class="g1cs12" d="M459.5,469.1c-0.6,0.1-1.3,0.1-1.9,0.2C458.2,469.3,458.8,469.2,459.5,469.1z"/>
<path class="g1cs12" d="M439.8,470.9c-1.2,0.1-2.3,0.2-3.5,0.3C437.5,471.1,438.6,471,439.8,470.9z"/>
<path class="g1cs12" d="M417.8,472.7c-1.1,0.1-2.1,0.2-3.2,0.3C415.7,472.9,416.7,472.8,417.8,472.7z"/>
<path class="g1cs12" d="M413,473.1c-0.9,0.1-1.9,0.1-2.8,0.2C411.2,473.3,412.1,473.2,413,473.1z"/>
<path class="g1cs12" d="M408.7,473.5c-1,0.1-1.9,0.2-2.9,0.2C406.8,473.6,407.8,473.5,408.7,473.5z"/>
<path class="g1cs12" d="M405.2,473.7c-2.7,0.2-5.4,0.4-8.2,0.6C399.8,474.2,402.5,474,405.2,473.7z"/>
<path class="g1cs12" d="M434.6,471.3c-0.9,0.1-1.8,0.1-2.6,0.2C432.9,471.5,433.8,471.4,434.6,471.3z"/>
<path class="g1cs12" d="M429.5,471.8c-0.6,0.1-1.2,0.1-1.8,0.2C428.3,471.9,428.9,471.8,429.5,471.8z"/>
<path class="g1cs12" d="M425.6,472.1c-0.8,0.1-1.5,0.1-2.3,0.2C424.1,472.2,424.8,472.2,425.6,472.1z"/>
<path class="g1cs12" d="M422.3,472.4c-1.1,0.1-2.2,0.2-3.4,0.3C420.1,472.5,421.2,472.5,422.3,472.4z"/>
</g>
<g id="L_x5F_autopro">
<g id="XMLID_2969_">
<g id="XMLID_2977_">
<g>
<rect x="84" y="104" class="g1cs13" width="590" height="85.6"/>
</g>
</g>
<g id="XMLID_2970_">
<g>
<g id="XMLID_63_">
<text id="XMLID_64_" transform="matrix(1 0 0 1 131.627 155.5244)" class="g1cs2 g1cs14 g1cs15">Automazione di processi</text>
</g>
</g>
</g>
</g>
</g>
<g id="L_x5F_businessdec">
<g id="XMLID_73_">
<g id="XMLID_84_">
<g>
<rect x="81.8" y="104.2" class="g1cs13" width="620" height="85.6"/>
</g>
</g>
<g id="XMLID_74_">
<g>
<g id="XMLID_61_">
<text id="XMLID_62_" transform="matrix(1 0 0 1 129.3569 155.7534)" class="g1cs2 g1cs14 g1cs15">Volume di affari e attività decisionale</text>
</g>
</g>
</g>
</g>
</g>
<g id="L_x5F_time">
<g id="XMLID_3010_">
<g id="XMLID_3018_">
<g>
<rect x="81.8" y="104.1" class="g1cs13" width="590" height="85.6"/>
</g>
</g>
<g id="XMLID_3011_">
<g>
<g id="XMLID_58_">
<text id="XMLID_60_" transform="matrix(1 0 0 1 129.3569 155.6772)" class="g1cs2 g1cs14 g1cs15">Ottimizzazione di tempo e risorse</text>
</g>
</g>
</g>
</g>
</g>
<g id="L_x5F_personal">
<g id="XMLID_3_">
<g id="XMLID_20_">
<g>
<rect x="81.8" y="104" class="g1cs13" width="747.3" height="85.6"/>
</g>
</g>
<g id="XMLID_9_">
<g>
<g id="XMLID_59_">
<text id="XMLID_65_" transform="matrix(1 0 0 1 129.3569 155.6006)" class="g1cs2 g1cs14 g1cs15">Personalizzazione di beni e servizi</text>
</g>
</g>
</g>
</g>
</g>
</svg>
</div>
<script>
$(document).ready(function() {
// ids
// S_x5F_autopro
// S_x5F_businesdec
// S_x5F_time
// S_x5F_personal
//
// L_x5F_autopro
// L_x5F_businessdec
// L_x5F_time
// L_x5F_personal
$(" #tot_trasp").toggle();
$(" #S_x5F_autopro, #S_x5F_businesdec, #S_x5F_personal ")
.toggleClass("tras");
$(" #L_x5F_autopro, #L_x5F_businessdec, #L_x5F_personal ")
.fadeToggle();
$(" #S_x5F_autopro, #S_x5F_businesdec, #S_x5F_personal ")
.hover(function() {
$(" #S_x5F_time").toggleClass("tras", "fast");
$(" #L_x5F_time").fadeToggle();
});
$(" #S_x5F_autopro").hover(function() {
$(this).toggleClass("tras", "fast");
$(" #L_x5F_autopro").fadeToggle();
});
$(" #S_x5F_businesdec").hover(function() {
$(this).toggleClass("tras", "fast");
$(" #L_x5F_businessdec").fadeToggle();
});
$(" #S_x5F_personal").hover(function() {
$(this).toggleClass("tras", "fast");
$(" #L_x5F_personal").fadeToggle();
});
});
</script>
<div class="quotAuthor">
<p class="text-right" >
<a href="http://www.pwc.com/gx/en/issues/analytics/assets/pwc-ai-analysis-sizing-the-prize-report.pdf" id="source">
PWC RESEARCH
</a>
</p>
</div>
</div>
</div>
<div class="separator"></div>
<div class="container-wide quotation" >
<!-- id="padExc" -->
<div class="container">
<div class="row title">
Previsioni sul PIL globale
</div>
<div class="row">
<p>
Economie che cresceranno grazie agli effetti dell’I.A.
</p>
</div>
<div class="separator"></div>
<div class="infografica">
<img src="assets/gdp_forecast.png" alt="Global GDP forecast">
</div>
<div class="quotAuthor" id="source">
<p class="text-right">
<a href="http://www.pwc.com/gx/en/issues/analytics/assets/pwc-ai-analysis-sizing-the-prize-report.pdf" id="source">
PWC RESEARCH
</a>
</p>
</div>
</div>
</div>
<div class="separator"></div>
<div class="container midContainer">
<div class="row fulltitle">
Una rivoluzione per la forza lavoro
</div>
<div class="row">
<div class="columns">
<p class="midPar">
Questa nuova rivoluzione industriale
ha portata globale, ed avrà ha effetti sulla
forza lavoro su scala mondiale.
Per quanto ogni paese differisca per numero di impiegati, salari medi e contesto geografico,
la crescita dell’automazione risulta in positivo o almeno stabile ovunque.
</p>
<img class="legendaWork twoCol" src="assets/ioSonoLegenda.png" alt="">
</div>
</div>
</div>
<div class="separator noMobile">
</div>
<div class="containerWork">
<div class="infografica">
<div class="graph">
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" id="Livello_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1315.1 522" style="enable-background:new 0 0 1315.1 522;" xml:space="preserve">
<style type="text/css">
.g2cs0{display:none;}
.g2cs1{display:inline;}
.g2cs2{fill:#EEF1F7;}
.g2cs3{fill:#333333;}
.g2cs4{font-family:'Karla'; font-weight: bold;}
.g2cs5{font-size:12.6223px;}
.g2cs6{fill:#4965AC;}
.g2cs7{font-family:'Karla'; font-weight: 400;}
.g2cs8{font-size:10px;}
.g2cs8{fill:#0D8C99;}
.g2cs10{fill:#B4BEDF;}
.g2cs11{fill:#97CCCE;}
</style>
<g id="Pop_Up">
<g id="ArgentinaPopUp" class="g2cs0">
<g class="g2cs1">
<path class="g2cs2" d="M275.1,245.7H153.2c-1.2,0-2.1-0.9-2.1-2.1v-58.4c0-1.2,0.9-2.1,2.1-2.1h121.9c1.2,0,2.1,0.9,2.1,2.1v58.4
C277.2,244.8,276.4,245.7,275.1,245.7z"/>
<g>
<text transform="matrix(1 0 0 1 169.5341 205.7568)" class="g1cs3 g2cs4 g2cs5">Argentina</text>
</g>
<g>
<text transform="matrix(1 0 0 1 169.534 220.9233)" class="g2cs6 g2cs7 g2cs8">34.80% degli stipendi</text>
</g>
<g>
<text transform="matrix(1 0 0 1 169.5341 233.4234)" class="g2cs8 g2cs7 g2cs8">43.78% dei lavoratori</text>
</g>
</g>
</g>
<g id="USAPopUp" class="g2cs0">
<g class="g2cs1">
<path class="g2cs2" d="M1106.8,79.4H981.3c-1.2,0-2.2-0.9-2.2-2.1V18.9c0-1.2,0.9-2.1,2.2-2.1h125.5c1.2,0,2.2,0.9,2.2,2.1v58.4
C1109,78.5,1107.9,79.4,1106.8,79.4z"/>
<g>
<text transform="matrix(1 0 0 1 997.48 39.463)" class="g2cs3 g2cs4 g2cs5">Stati Uniti</text>
</g>
<g>
<text transform="matrix(1 0 0 1 997.4798 54.6295)" class="g2cs6 g2cs7 g2cs8">36.62% degli stipendi</text>
</g>
<g>
<text transform="matrix(1 0 0 1 997.48 67.1297)" class="g2cs8 g2cs7 g2cs8">45.80% dei lavoratori</text>
</g>
</g>
</g>
<g id="AustraliaPopUp" class="g2cs0">
<g class="g2cs1">
<path class="g2cs2" d="M1223.4,235.4h-121.9c-1.2,0-2.1-0.9-2.1-2.1v-58.4c0-1.2,0.9-2.1,2.1-2.1h121.9c1.2,0,2.1,0.9,2.1,2.1v58.4
C1225.5,234.5,1224.6,235.4,1223.4,235.4z"/>
<g>
<text transform="matrix(1 0 0 1 1117.8624 195.5068)" class="g2cs3 g2cs4 g2cs5">Australia</text>
</g>
<g>
<text transform="matrix(1 0 0 1 1117.8622 210.6732)" class="g2cs6 g2cs7 g2cs8">37.74% degli stipendi</text>
</g>
<g>
<text transform="matrix(1 0 0 1 1117.8624 223.1734)" class="g2cs8 g2cs7 g2cs8">44.39% dei lavoratori</text>
</g>
</g>
</g>
<g id="AustriaPopUp" class="g2cs0">
<g class="g2cs1">
<path class="g2cs2" d="M1252.8,244.9h-121.9c-1.2,0-2.1-0.9-2.1-2.1v-58.4c0-1.2,0.9-2.1,2.1-2.1h121.9c1.2,0,2.1,0.9,2.1,2.1v58.4
C1254.9,244,1253.9,244.9,1252.8,244.9z"/>
<g>
<text transform="matrix(1 0 0 1 1147.1627 204.9584)" class="g2cs3 g2cs4 g2cs5">Austria</text>
</g>
<g>
<text transform="matrix(1 0 0 1 1147.1625 220.1249)" class="g2cs6 g2cs7 g2cs8">42.88% degli stipendi</text>
</g>
<g>
<text transform="matrix(1 0 0 1 1147.1627 232.6251)" class="g2cs8 g2cs7 g2cs8">41.59% dei lavoratori</text>
</g>
</g>
</g>
<g id="BrazilPopUp" class="g2cs0">
<g class="g2cs1">
<path class="g2cs2" d="M849.1,219.1H727.2c-1.2,0-2.1-0.9-2.1-2.1v-58.4c0-1.2,0.9-2.1,2.1-2.1h121.9c1.2,0,2.1,0.9,2.1,2.1V217
C851.2,218.1,850.3,219.1,849.1,219.1z"/>
<g>
<text transform="matrix(1 0 0 1 743.514 179.1434)" class="g2cs3 g2cs4 g2cs5">Brasile</text>
</g>
<g>
<text transform="matrix(1 0 0 1 743.5139 194.3099)" class="g2cs6 g2cs7 g2cs8">36.91% degli stipendi</text>
</g>
<g>
<text transform="matrix(1 0 0 1 743.514 206.8101)" class="g2cs8 g2cs7 g2cs8">49.08% dei lavoratori</text>
</g>
</g>
</g>
<g id="CanadaPopUp" class="g2cs0">
<g class="g2cs1">
<path class="g2cs2" d="M761.9,229H640c-1.2,0-2.1-0.9-2.1-2.1v-58.4c0-1.2,0.9-2.1,2.1-2.1h121.9c1.2,0,2.1,0.9,2.1,2.1v58.4
C764,228.1,763,229,761.9,229z"/>
<g>
<text transform="matrix(1 0 0 1 656.2844 189.0964)" class="g2cs3 g2cs4 g2cs5">Canada</text>
</g>
<g>
<text transform="matrix(1 0 0 1 656.2843 204.263)" class="g2cs6 g2cs7 g2cs8">39.73% degli stipendi</text>
</g>
<g>
<text transform="matrix(1 0 0 1 656.2844 216.7631)" class="g2cs8 g2cs7 g2cs8">42.11% dei lavoratori</text>
</g>
</g>
</g>
<g id="ColombiaPopUp" class="g2cs0">
<g class="g2cs1">
<path class="g2cs2" d="M245,250.9H123.1c-1.2,0-2.1-0.9-2.1-2.1v-58.4c0-1.2,0.9-2.1,2.1-2.1H245c1.2,0,2.1,0.9,2.1,2.1v58.4
C247.1,250,246.2,250.9,245,250.9z"/>
<g>
<text transform="matrix(1 0 0 1 139.4158 211.0078)" class="g2cs3 g2cs4 g2cs5">Colombia</text>
</g>
<g>
<text transform="matrix(1 0 0 1 139.4156 226.1743)" class="g2cs6 g2cs7 g2cs8">40.98% degli stipendi</text>
</g>
<g>
<text transform="matrix(1 0 0 1 139.4158 238.6743)" class="g2cs8 g2cs7 g2cs8">52.98% dei lavoratori</text>
</g>
</g>
</g>
<g id="CzechRepPopUp" class="g2cs0">
<g class="g2cs1">
<path class="g2cs2" d="M1283.5,247.6h-121.9c-1.2,0-2.1-0.9-2.1-2.1v-58.4c0-1.2,0.9-2.1,2.1-2.1h121.9c1.2,0,2.1,0.9,2.1,2.1v58.4
C1285.6,246.7,1284.7,247.6,1283.5,247.6z"/>
<g>
<text transform="matrix(1 0 0 1 1177.9467 207.6895)" class="g2cs3 g2cs4 g2cs5">Repubblica Ceca</text>
</g>
<g>
<text transform="matrix(1 0 0 1 1177.9464 222.856)" class="g2cs6 g2cs7 g2cs8">40.41% degli stipendi</text>
</g>
<g>
<text transform="matrix(1 0 0 1 1177.9467 235.3561)" class="g2cs8 g2cs7 g2cs8">58.72% dei lavoratori</text>
</g>
</g>
</g>
<g id="EgyptPopUp" class="g2cs0">
<g class="g2cs1">
<path class="g2cs2" d="M489.7,244.9h-122c-1.2,0-2.1-0.9-2.1-2.1v-58.4c0-1.2,0.9-2.1,2.1-2.1h122c1.2,0,2.1,0.9,2.1,2.1v58.4
C491.7,244,490.9,244.9,489.7,244.9z"/>
<g>
<text transform="matrix(1 0 0 1 384.0683 204.9542)" class="g2cs3 g2cs4 g2cs5">Egitto</text>
</g>
<g>
<text transform="matrix(1 0 0 1 384.0682 220.1207)" class="g2cs6 g2cs7 g2cs8">35.00% degli stipendi</text>
</g>
<g>
<text transform="matrix(1 0 0 1 384.0683 232.6208)" class="g2cs8 g2cs7 g2cs8">49.95% dei lavoratori</text>
</g>
</g>
</g>
<g id="FrancePopUp" class="g2cs0">
<g class="g2cs1">
<path class="g2cs2" d="M820.1,223.1H698.2c-1.2,0-2.1-0.9-2.1-2.1v-58.4c0-1.2,0.9-2.1,2.1-2.1h121.9c1.2,0,2.1,0.9,2.1,2.1V221
C822.2,222.2,821.3,223.1,820.1,223.1z"/>
<g>
<text transform="matrix(1 0 0 1 714.5421 183.1999)" class="g2cs3 g2cs4 g2cs5">Francia</text>
</g>
<g>
<text transform="matrix(1 0 0 1 714.5418 198.3664)" class="g2cs6 g2cs7 g2cs8">37.08% degli stipendi</text>
</g>
<g>
<text transform="matrix(1 0 0 1 714.5421 210.8666)" class="g2cs8 g2cs7 g2cs8">40.67% dei lavoratori</text>
</g>
</g>
</g>
<g id="GermanyPopUp" class="g2cs0">
<g class="g2cs1">
<path class="g2cs2" d="M908.9,190.7H787c-1.2,0-2.1-0.9-2.1-2.1v-58.4c0-1.2,0.9-2.1,2.1-2.1h121.9c1.2,0,2.1,0.9,2.1,2.1v58.4
C911,189.8,910.1,190.7,908.9,190.7z"/>
<g>
<text transform="matrix(1 0 0 1 803.3413 150.7541)" class="g2cs3 g2cs4 g2cs5">Germania</text>
</g>
<g>
<text transform="matrix(1 0 0 1 803.341 165.9206)" class="g2cs6 g2cs7 g2cs8">42.93% degli stipendi</text>
</g>
<g>
<text transform="matrix(1 0 0 1 803.3413 178.4208)" class="g2cs8 g2cs7 g2cs8">46.22% dei lavoratori</text>
</g>
</g>
</g>
<g id="GreecePopUp" class="g2cs0">
<g class="g2cs1">
<path class="g2cs2" d="M184.5,252.3H62.6c-1.2,0-2.1-0.9-2.1-2.1v-58.4c0-1.2,0.9-2.1,2.1-2.1h121.9c1.2,0,2.1,0.9,2.1,2.1v58.5
C186.6,251.4,185.7,252.3,184.5,252.3z"/>
<g>
<text transform="matrix(1 0 0 1 78.9187 212.4879)" class="g2cs3 g2cs4 g2cs5">Grecia</text>
</g>
<g>
<text transform="matrix(1 0 0 1 78.9184 227.6544)" class="g2cs6 g2cs7 g2cs8">39.32% degli stipendi</text>
</g>
<g>
<text transform="matrix(1 0 0 1 78.9187 240.1546)" class="g2cs8 g2cs7 g2cs8">45.19% dei lavoratori</text>
</g>
</g>
</g>
<g id="IndiaPopUp" class="g2cs0">
<g class="g2cs1">
<path class="g2cs2" d="M1133.2,206.5h-121.9c-1.2,0-2.1-0.9-2.1-2.1V146c0-1.2,0.9-2.1,2.1-2.1h121.9c1.2,0,2.1,0.9,2.1,2.1v58.4
C1135.3,205.6,1134.3,206.5,1133.2,206.5z"/>
<g>
<text transform="matrix(1 0 0 1 1027.6005 166.6022)" class="g2cs3 g2cs4 g2cs5">India</text>
</g>
<g>
<text transform="matrix(1 0 0 1 1027.6002 181.7687)" class="g2cs6 g2cs7 g2cs8">41.49% degli stipendi</text>
</g>
<g>
<text transform="matrix(1 0 0 1 1027.6005 194.269)" class="g2cs8 g2cs7 g2cs8">51.76% dei lavoratori</text>
</g>
</g>
</g>
<g id="IndonesiaPopUP" class="g2cs0">
<g class="g2cs1">
<path class="g2cs2" d="M671.4,238.6H549.5c-1.2,0-2.1-0.9-2.1-2.1v-58.4c0-1.2,0.9-2.1,2.1-2.1h121.9c1.2,0,2.1,0.9,2.1,2.1v58.4
C673.5,237.7,672.6,238.6,671.4,238.6z"/>
<g>
<text transform="matrix(1 0 0 1 565.803 198.6932)" class="g2cs3 g2cs4 g2cs5">Indonesia</text>
</g>
<g>
<text transform="matrix(1 0 0 1 565.8028 213.8596)" class="g2cs6 g2cs7 g2cs8">38.84% degli stipendi</text>
</g>
<g>
<text transform="matrix(1 0 0 1 565.803 226.3598)" class="g2cs8 g2cs7 g2cs8">51.85% dei lavoratori</text>
</g>
</g>
</g>
<g id="ItalyPopUp" class="g2cs0">
<g class="g2cs1">
<path class="g2cs2" d="M790.6,231.7H668.7c-1.2,0-2.1-0.9-2.1-2.1v-58.4c0-1.2,0.9-2.1,2.1-2.1h121.9c1.2,0,2.1,0.9,2.1,2.1v58.4
C792.7,230.8,791.7,231.7,790.6,231.7z"/>
<g>
<text transform="matrix(1 0 0 1 684.9896 191.7579)" class="g2cs3 g2cs4 g2cs5">Italia</text>
</g>
<g>
<text transform="matrix(1 0 0 1 684.9893 206.9244)" class="g2cs6 g2cs7 g2cs8">43.28% degli stipendi</text>
</g>
<g>
<text transform="matrix(1 0 0 1 684.9896 219.4246)" class="g2cs8 g2cs7 g2cs8">42.86% dei lavoratori</text>
</g>
</g>
</g>
<g id="JapanPopUp" class="g2cs0">
<g class="g2cs1">
<path class="g2cs2" d="M1103.1,182.5H981.2c-1.2,0-2.1-0.9-2.1-2.1V122c0-1.2,0.9-2.1,2.1-2.1h121.9c1.2,0,2.1,0.9,2.1,2.1v58.4
C1105.2,181.6,1104.2,182.5,1103.1,182.5z"/>
<g>
<text transform="matrix(1 0 0 1 997.48 142.5974)" class="g2cs3 g2cs4 g2cs5">Giappone</text>
</g>
<g>
<text transform="matrix(1 0 0 1 997.4798 157.7637)" class="g2cs6 g2cs7 g2cs8">47.13% degli stipendi</text>
</g>