Showing
50 changed files
with
4775 additions
and
0 deletions
Too many changes to show.
To preserve performance only 50 of 189 files are displayed.
1 | +<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"> | |
2 | + <style> | |
3 | + polygon { fill: black } | |
4 | + | |
5 | + div { | |
6 | + color: white; | |
7 | + font:18px serif; | |
8 | + } | |
9 | + .currentDate { | |
10 | + text-align: center; | |
11 | + } | |
12 | + .currentTime { | |
13 | + text-align: center; | |
14 | + } | |
15 | + </style> | |
16 | + <polygon points="5,5 195,5 195,80 5,80" /> | |
17 | + | |
18 | + <!-- Common use case: embed HTML text into SVG --> | |
19 | + <foreignObject x="5" y="5" width="195" height="80"> | |
20 | + <!-- | |
21 | + In the context of SVG embeded into HTML, the XHTML namespace could | |
22 | + be avoided, but it is mandatory in the context of an SVG document | |
23 | + --> | |
24 | + <div xmlns="http://www.w3.org/1999/xhtml"> | |
25 | + <div id="currentDate" class="currentDate"> | |
26 | + </div> | |
27 | + <div id="currentTime" class="currentTime"> | |
28 | + </div> | |
29 | + </div> | |
30 | + <script> | |
31 | + var currentDate = document.getElementById("currentDate"); | |
32 | + currentDate.innerHTML = getCurrentDate(); | |
33 | + | |
34 | + //封装日期函数 | |
35 | + function getCurrentDate() { | |
36 | + var date = new Date(); //创建日期对象 | |
37 | + var year = date.getFullYear(); | |
38 | + var month = date.getMonth() + 1; | |
39 | + var dates = date.getDate(); | |
40 | + arr = ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六', ] | |
41 | + var day = date.getDay(); | |
42 | + return year + '年' + month + '月' + dates + '日 ' + arr[day]; | |
43 | + } | |
44 | + | |
45 | + function getTime(){ | |
46 | + var date = new Date(); | |
47 | + var hh = date.getHours(); | |
48 | + var mf = date.getMinutes(); | |
49 | + var ss = date.getSeconds(); | |
50 | + mf = mf>10?mf:'0'+mf; | |
51 | + ss = ss>10?ss:'0'+ss; | |
52 | + return time = hh+':'+mf+':'+ss; | |
53 | + } | |
54 | + setInterval(function(){ | |
55 | + var currentTime = document.getElementById("currentTime"); | |
56 | + currentTime.innerHTML = getTime(); | |
57 | + },1000) | |
58 | + | |
59 | + | |
60 | +</script> | |
61 | + </foreignObject> | |
62 | +</svg> | |
\ No newline at end of file | ... | ... |
1 | +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16.03 16"><path d="M 1.8 37.8 L 36.2 37.99 Q 38 38 37.99 36.2 L 37.8 1.8" fill="none" stroke="#d3d3d3" stroke-width="9.44" stroke-miterlimit="10" pointer-events="stroke" visibility="visible"></path><path d="M 1.8 37.8 L 36.2 37.99 Q 38 38 37.99 36.2 L 37.8 1.8" fill="none" stroke="#409eff" stroke-width="1.44" stroke-miterlimit="10" stroke-dasharray="4.32 4.32" pointer-events="stroke" class="water-flow" style="animation-name: dash-forward; animation-duration: 1s;"></path></svg> | |
\ No newline at end of file | ... | ... |
1 | +<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"> | |
2 | + <style> | |
3 | + polygon { fill: black } | |
4 | + | |
5 | + div { | |
6 | + color: white; | |
7 | + font:18px serif; | |
8 | + } | |
9 | + .currentDate { | |
10 | + text-align: center; | |
11 | + } | |
12 | + .currentTime { | |
13 | + text-align: center; | |
14 | + } | |
15 | + </style> | |
16 | + <polygon points="5,5 195,5 195,80 5,80" /> | |
17 | + | |
18 | + <!-- Common use case: embed HTML text into SVG --> | |
19 | + <foreignObject x="5" y="5" width="195" height="80"> | |
20 | + <!-- | |
21 | + In the context of SVG embeded into HTML, the XHTML namespace could | |
22 | + be avoided, but it is mandatory in the context of an SVG document | |
23 | + --> | |
24 | + <div xmlns="http://www.w3.org/1999/xhtml"> | |
25 | + <div class="currentDate"> | |
26 | + 2022年5月28日 星期六 | |
27 | + </div> | |
28 | + <div class="currentTime"> | |
29 | + 14:47:36 | |
30 | + </div> | |
31 | + </div> | |
32 | + </foreignObject> | |
33 | +</svg> | |
\ No newline at end of file | ... | ... |
1 | +<svg xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 154 72" xmlns="http://www.w3.org/2000/svg" width="154" height="72"> | |
2 | + <defs> | |
3 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg1" x1="0%"> | |
4 | + <stop offset="0" stop-color="#bda47f"/> | |
5 | + <stop offset="0.15" stop-color="#ffe0b3"/> | |
6 | + <stop offset="0.25" stop-color="#ffeed7"/> | |
7 | + <stop offset="0.52" stop-color="#dfc297"/> | |
8 | + <stop offset="0.69" stop-color="#c7ad86"/> | |
9 | + <stop offset="0.8" stop-color="#bca37e"/> | |
10 | + <stop offset="0.92" stop-color="#b19a77"/> | |
11 | + <stop offset="1" stop-color="#cbb189"/> | |
12 | + </linearGradient> | |
13 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg2" x1="0%"> | |
14 | + <stop offset="0" stop-color="#c4aa84"/> | |
15 | + <stop offset="0.15" stop-color="#ffe0b3"/> | |
16 | + <stop offset="0.25" stop-color="#ffeed7"/> | |
17 | + <stop offset="0.44" stop-color="#dfc297"/> | |
18 | + <stop offset="0.6" stop-color="#c7ad86"/> | |
19 | + <stop offset="0.8" stop-color="#a89170"/> | |
20 | + <stop offset="0.97" stop-color="#998566"/> | |
21 | + <stop offset="1" stop-color="#cbb189"/> | |
22 | + </linearGradient> | |
23 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg3" x1="0%"> | |
24 | + <stop offset="0" stop-color="#949990"/> | |
25 | + <stop offset="0.15" stop-color="#cdd2c7"/> | |
26 | + <stop offset="0.25" stop-color="#e3e6e1"/> | |
27 | + <stop offset="0.52" stop-color="#b0b5aa"/> | |
28 | + <stop offset="0.69" stop-color="#9ca197"/> | |
29 | + <stop offset="0.8" stop-color="#93988f"/> | |
30 | + <stop offset="0.92" stop-color="#8b8f86"/> | |
31 | + <stop offset="1" stop-color="#a0a59b"/> | |
32 | + </linearGradient> | |
33 | + <linearGradient y1="0%" y2="0%" x2="100%" id="lg4" x1="0%"> | |
34 | + <stop offset="0" stop-color="#949990"/> | |
35 | + <stop offset="0.15" stop-color="#cdd2c7"/> | |
36 | + <stop offset="0.25" stop-color="#e3e6e1"/> | |
37 | + <stop offset="0.52" stop-color="#b0b5aa"/> | |
38 | + <stop offset="0.69" stop-color="#9ca197"/> | |
39 | + <stop offset="0.8" stop-color="#93988f"/> | |
40 | + <stop offset="0.92" stop-color="#8b8f86"/> | |
41 | + <stop offset="1" stop-color="#a0a59b"/> | |
42 | + </linearGradient> | |
43 | + <linearGradient y1="0%" y2="0%" x2="100%" id="lg5" x1="0%"> | |
44 | + <stop offset="0" stop-color="#7b7e77"/> | |
45 | + <stop offset="0.15" stop-color="#aeb2aa"/> | |
46 | + <stop offset="0.25" stop-color="#d5d7d3"/> | |
47 | + <stop offset="0.52" stop-color="#92968d"/> | |
48 | + <stop offset="0.69" stop-color="#81857d"/> | |
49 | + <stop offset="0.8" stop-color="#7a7d76"/> | |
50 | + <stop offset="0.92" stop-color="#73766f"/> | |
51 | + <stop offset="1" stop-color="#848880"/> | |
52 | + </linearGradient> | |
53 | + <linearGradient y1="0%" y2="0%" x2="0%" id="lg6" x1="100%"> | |
54 | + <stop offset="0" stop-color="#7b7e77"/> | |
55 | + <stop offset="0.15" stop-color="#aeb2aa"/> | |
56 | + <stop offset="0.25" stop-color="#d5d7d3"/> | |
57 | + <stop offset="0.52" stop-color="#92968d"/> | |
58 | + <stop offset="0.69" stop-color="#81857d"/> | |
59 | + <stop offset="0.8" stop-color="#7a7d76"/> | |
60 | + <stop offset="0.92" stop-color="#73766f"/> | |
61 | + <stop offset="1" stop-color="#848880"/> | |
62 | + </linearGradient> | |
63 | + <linearGradient y1="0%" y2="0%" x2="0%" id="lg7" x1="100%"> | |
64 | + <stop offset="0" stop-color="#949990"/> | |
65 | + <stop offset="0.15" stop-color="#cdd2c7"/> | |
66 | + <stop offset="0.25" stop-color="#e3e6e1"/> | |
67 | + <stop offset="0.52" stop-color="#b0b5aa"/> | |
68 | + <stop offset="0.69" stop-color="#9ca197"/> | |
69 | + <stop offset="0.8" stop-color="#93988f"/> | |
70 | + <stop offset="0.92" stop-color="#8b8f86"/> | |
71 | + <stop offset="1" stop-color="#a0a59b"/> | |
72 | + </linearGradient> | |
73 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg8" x1="0%"> | |
74 | + <stop offset="0" stop-color="#7e817b"/> | |
75 | + <stop offset="0.15" stop-color="#b2b5ae"/> | |
76 | + <stop offset="0.25" stop-color="#d6d8d5"/> | |
77 | + <stop offset="0.52" stop-color="#959992"/> | |
78 | + <stop offset="0.69" stop-color="#848881"/> | |
79 | + <stop offset="0.8" stop-color="#7d807a"/> | |
80 | + <stop offset="0.92" stop-color="#757873"/> | |
81 | + <stop offset="1" stop-color="#888b84"/> | |
82 | + </linearGradient> | |
83 | + </defs> | |
84 | + <g transform="translate(1.06,1)"> | |
85 | + <path d="M0,0L22.7,0L22.7,12.7L0,12.7L0,0z" fill="url(#lg1)" id="shape1" transform="translate(129.3,28.67)"/> | |
86 | + <path d="M0,0L5.4,4.4L5.4,17L0,21.4L0,0z" fill="url(#lg2)" id="shape2" transform="translate(129.95,24.29)"/> | |
87 | + <path d="M0,0L6.1,0L6.1,36.6L0,36.6L0,0z" fill="url(#lg3)" id="shape3" transform="translate(123.88,16.68)"/> | |
88 | + <path d="M0,67.1L0,0L66.5,0L66.5,67.1L0,67.1z" fill="url(#lg4)" id="shape4" transform="matrix(0,1,1,0,35.7,1.7)"/> | |
89 | + <path d="M0,35.8L0,7.6C0,7.6,.5,4.4,4.2,3.4C4.2,3.4,17.3,0,33.3,0C49.2,0,62.4,3.4,62.4,3.4C66.6,4.4,66.6,7.6,66.6,7.6L66.6,35.8L0,35.8z" fill="url(#lg4)" id="shape5" transform="matrix(0,1,1,0,-0.1,1.7)"/> | |
90 | + <path d="M0,.9L66.5,0L0,.9z" fill="url(#lg5)" id="shape6" transform="matrix(0,1,1,0,35.1,1.7)"/> | |
91 | + <g transform="translate(36.02,6.45)"> | |
92 | + <path d="M.6,-0L61.1,-0C61.4,-0,61.7,.2,61.7,.4C61.7,1.2,61.4,1.4,61.1,1.4L.6,1.4C.2,1.4,0,1.2,0,1C0,.2,.2,-0,.6,-0z" fill="url(#lg3)" id="shape7" transform="matrix(-1,0,0,1,61.7,28)"/> | |
93 | + <path d="M.6,-0L61.1,-0C61.4,-0,61.7,.2,61.7,.4C61.7,1.2,61.4,1.4,61.1,1.4L.6,1.4C.2,1.4,0,1.2,0,1C0,.2,.2,-0,.6,-0z" fill="url(#lg3)" id="shape8" transform="matrix(-1,0,0,1,61.7,32.7)"/> | |
94 | + <path d="M.6,-0L61.1,-0C61.4,-0,61.7,.2,61.7,.4C61.7,1.2,61.4,1.4,61.1,1.4L.6,1.4C.2,1.4,0,1.2,0,1C0,.2,.2,-0,.6,-0z" fill="url(#lg3)" id="shape9" transform="matrix(-1,0,0,1,61.7,37.4)"/> | |
95 | + <path d="M.6,-0L61.1,-0C61.4,-0,61.7,.2,61.7,.4C61.7,1.2,61.4,1.4,61.1,1.4L.6,1.4C.2,1.4,0,1.2,0,1C0,.2,.2,-0,.6,-0z" fill="url(#lg3)" id="shape10" transform="matrix(-1,0,0,1,61.7,42.1)"/> | |
96 | + <path d="M.6,-0L61.1,-0C61.4,-0,61.7,.2,61.7,.4C61.7,1.2,61.4,1.4,61.1,1.4L.6,1.4C.2,1.4,0,1.2,0,1C0,.2,.2,-0,.6,-0z" fill="url(#lg3)" id="shape11" transform="matrix(-1,0,0,1,61.7,47)"/> | |
97 | + <path d="M.6,-0L61.1,-0C61.4,-0,61.7,.2,61.7,.4C61.7,1.2,61.4,1.4,61.1,1.4L.6,1.4C.2,1.4,0,1.2,0,1C0,.2,.2,-0,.6,-0z" fill="url(#lg3)" id="shape12" transform="matrix(-1,0,0,1,61.7,51.6)"/> | |
98 | + <path d="M.6,-0L61.1,-0C61.4,-0,61.7,.2,61.7,.4C61.7,1.2,61.4,1.4,61.1,1.4L.6,1.4C.2,1.4,0,1.2,0,1C0,.2,.2,-0,.6,-0z" fill="url(#lg3)" id="shape13" transform="matrix(-1,0,0,1,61.7,23.4)"/> | |
99 | + <path d="M.6,-0L61.1,-0C61.4,-0,61.7,.2,61.7,.4C61.7,1.2,61.4,1.4,61.1,1.4L.6,1.4C.2,1.4,0,1.2,0,1C0,.2,.2,-0,.6,-0z" fill="url(#lg3)" id="shape14" transform="matrix(-1,0,0,1,61.7,56.1)"/> | |
100 | + <path d="M.6,-0L61.1,-0C61.4,-0,61.7,.2,61.7,.4C61.7,1.2,61.4,1.4,61.1,1.4L.6,1.4C.2,1.4,0,1.2,0,1C0,.2,.2,-0,.6,-0z" fill="url(#lg3)" id="shape15" transform="matrix(-1,0,0,1,61.7,4.7)"/> | |
101 | + <path d="M.6,-0L61.1,-0C61.4,-0,61.7,.2,61.7,.4C61.7,1.2,61.4,1.4,61.1,1.4L.6,1.4C.2,1.4,0,1.2,0,1C0,.2,.2,-0,.6,-0z" fill="url(#lg3)" id="shape16" transform="matrix(-1,0,0,1,61.7,9.3)"/> | |
102 | + <path d="M.6,-0L61.1,-0C61.4,-0,61.7,.2,61.7,.4C61.7,1.2,61.4,1.4,61.1,1.4L.6,1.4C.2,1.4,0,1.2,0,1C0,.2,.2,-0,.6,-0z" fill="url(#lg3)" id="shape17" transform="matrix(-1,0,0,1,61.7,14)"/> | |
103 | + <path d="M.6,-0L61.1,-0C61.4,-0,61.7,.2,61.7,.4C61.7,1.2,61.4,1.4,61.1,1.4L.6,1.4C.2,1.4,0,1.2,0,1C0,.2,.2,-0,.6,-0z" fill="url(#lg3)" id="shape18" transform="matrix(-1,0,0,1,61.7,18.7)"/> | |
104 | + <path d="M.6,-0L61.1,-0C61.4,-0,61.7,.2,61.7,.4C61.7,1.2,61.4,1.4,61.1,1.4L.6,1.4C.2,1.4,0,1.2,0,1C0,.2,.2,-0,.6,-0z" fill="url(#lg3)" id="shape19" transform="matrix(-1,0,0,1,61.7,0)"/> | |
105 | + </g> | |
106 | + <path d="M70,1.5L70,2.6L0,2.6L0,1.5C0,.7,.3,-0,.7,-0L69.3,-0C69.7,-0,70,.7,70,1.5z" fill="url(#lg6)" id="shape20" transform="matrix(0,-1,1,0,102.2,70)"/> | |
107 | + <path d="M70,.9C70,2.1,69.7,2.5,69.3,2.5L.7,2.5C.3,2.5,0,2.1,0,1.6C0,.4,.3,-0,.7,-0L69.3,-0C69.7,-0,70,.4,70,.9z" fill="url(#lg7)" id="shape21" transform="matrix(0,-1,1,0,103.5,70)"/> | |
108 | + <path d="M1.6,0C2.8,0,3.5,.7,3.5,1.6L3.5,46.8C3.5,47.7,2.8,48.4,1.9,48.4C.7,48.4,-0,47.7,-0,46.8L-0,1.6C-0,.7,.7,0,1.6,0z" fill="url(#lg8)" id="shape22" transform="translate(121.49,10.78)"/> | |
109 | + <path d="M62.9,0C62.9,0,60.8,9.2,54.2,15.9C54.2,15.9,8.8,16,8.8,16C1.5,7.8,0,0,0,0L62.9,0z" fill="url(#lg7)" id="shape23" transform="matrix(0,-1,1,0,105.6,66.5)"/> | |
110 | + </g> | |
111 | +</svg> | ... | ... |
1 | +<svg xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 172 88" xmlns="http://www.w3.org/2000/svg" width="172" height="88"> | |
2 | + <defs> | |
3 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg1" x1="0%"> | |
4 | + <stop offset="0" stop-color="#b0b0b0"/> | |
5 | + <stop offset="0.15" stop-color="#efefef"/> | |
6 | + <stop offset="0.25" stop-color="#f6f6f6"/> | |
7 | + <stop offset="0.52" stop-color="#d0d0d0"/> | |
8 | + <stop offset="0.69" stop-color="#b9b9b9"/> | |
9 | + <stop offset="0.8" stop-color="#afafaf"/> | |
10 | + <stop offset="0.92" stop-color="#a5a5a5"/> | |
11 | + <stop offset="1" stop-color="#bebebe"/> | |
12 | + </linearGradient> | |
13 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg2" x1="0%"> | |
14 | + <stop offset="0" stop-color="#8b8e91"/> | |
15 | + <stop offset="0.15" stop-color="#c2c5c8"/> | |
16 | + <stop offset="0.25" stop-color="#dedfe1"/> | |
17 | + <stop offset="0.52" stop-color="#a5a8ab"/> | |
18 | + <stop offset="0.69" stop-color="#939598"/> | |
19 | + <stop offset="0.8" stop-color="#8a8c8f"/> | |
20 | + <stop offset="0.92" stop-color="#828487"/> | |
21 | + <stop offset="1" stop-color="#96999c"/> | |
22 | + </linearGradient> | |
23 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg3" x1="0%"> | |
24 | + <stop offset="0" stop-color="#383a42"/> | |
25 | + <stop offset="0.03" stop-color="#8e8f94"/> | |
26 | + <stop offset="0.08" stop-color="#4c4f59"/> | |
27 | + <stop offset="0.64" stop-color="#4a4d57"/> | |
28 | + <stop offset="0.95" stop-color="#494b55"/> | |
29 | + <stop offset="1" stop-color="#34363d"/> | |
30 | + </linearGradient> | |
31 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg4" x1="0%"> | |
32 | + <stop offset="0" stop-color="#4b4d58"/> | |
33 | + <stop offset="0.03" stop-color="#9a9ba4"/> | |
34 | + <stop offset="0.08" stop-color="#646774"/> | |
35 | + <stop offset="0.64" stop-color="#626572"/> | |
36 | + <stop offset="0.95" stop-color="#606270"/> | |
37 | + <stop offset="1" stop-color="#454751"/> | |
38 | + </linearGradient> | |
39 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg5" x1="0%"> | |
40 | + <stop offset="0" stop-color="#60616b"/> | |
41 | + <stop offset="0.03" stop-color="#aaabb4"/> | |
42 | + <stop offset="0.08" stop-color="#7f808d"/> | |
43 | + <stop offset="0.64" stop-color="#7d7e8a"/> | |
44 | + <stop offset="0.95" stop-color="#7a7b87"/> | |
45 | + <stop offset="1" stop-color="#595a63"/> | |
46 | + </linearGradient> | |
47 | + <linearGradient y1="0%" y2="0%" x2="0%" id="lg6" x1="100%"> | |
48 | + <stop offset="0" stop-color="#898a8a"/> | |
49 | + <stop offset="0.15" stop-color="#babbbb"/> | |
50 | + <stop offset="0.25" stop-color="#dadada"/> | |
51 | + <stop offset="0.44" stop-color="#9d9e9e"/> | |
52 | + <stop offset="0.6" stop-color="#8b8c8c"/> | |
53 | + <stop offset="0.8" stop-color="#757676"/> | |
54 | + <stop offset="0.97" stop-color="#6b6b6b"/> | |
55 | + <stop offset="1" stop-color="#8f9090"/> | |
56 | + </linearGradient> | |
57 | + </defs> | |
58 | + <g transform="translate(1,1)"> | |
59 | + <path d="M0,0L35.9,0L35.9,11.9L0,11.9L0,0z" fill="url(#lg1)" id="shape1" transform="translate(0,37.03)"/> | |
60 | + <path d="M0,0L6.7,0L6.7,19.5L0,19.5L0,0z" fill="url(#lg2)" id="shape2" transform="translate(29.19,33.23)"/> | |
61 | + <path d="M0,0L28.7,0C29.2,0,29.6,.4,29.6,.9L29.6,66.4C29.6,66.9,29.2,67.3,28.7,67.3L0,67.3L0,0z" fill="url(#lg3)" id="shape3" transform="translate(140.37,9.36)"/> | |
62 | + <path d="M.9,0L4.5,0C5,0,5.4,.4,5.4,.9L5.4,85.1C5.4,85.6,5,86,4.5,86L.9,86C.4,86,0,85.6,0,85.1L0,.9C0,.4,.4,0,.9,0z" fill="url(#lg3)" id="shape4" transform="translate(33.21,0)"/> | |
63 | + <path d="M0,0L102.4,0L102.4,76.5L0,76.5L0,0z" fill="#282d33" id="shape5" transform="translate(38.11,4.75)"/> | |
64 | + <path d="M0,0L56.7,0L56.7,7.9L0,7.9L0,0z" fill="url(#lg4)" id="shape6" transform="translate(38.11,4.75)"/> | |
65 | + <path d="M0,0L56.7,0L56.7,4.1L0,4.1L0,0z" fill="url(#lg4)" id="shape7" transform="translate(38.11,16.96)"/> | |
66 | + <g transform="translate(38.11,24.61)"> | |
67 | + <path d="M0,0L56.7,0L56.7,2.1L0,2.1L0,0z" fill="url(#lg4)" id="shape8" transform="translate(0,-0)"/> | |
68 | + <path d="M0,0L56.7,0L56.7,2.1L0,2.1L0,0z" fill="url(#lg4)" id="shape9" transform="translate(0,4.95)"/> | |
69 | + <path d="M0,0L56.7,0L56.7,2.1L0,2.1L0,0z" fill="url(#lg4)" id="shape10" transform="translate(0,9.9)"/> | |
70 | + <path d="M0,0L56.7,0L56.7,2.1L0,2.1L0,0z" fill="url(#lg4)" id="shape11" transform="translate(0,14.85)"/> | |
71 | + <path d="M0,0L56.7,0L56.7,2.1L0,2.1L0,0z" fill="url(#lg4)" id="shape12" transform="translate(0,19.8)"/> | |
72 | + <path d="M0,0L56.7,0L56.7,2.1L0,2.1L0,0z" fill="url(#lg4)" id="shape13" transform="translate(0,24.75)"/> | |
73 | + <path d="M0,0L56.7,0L56.7,2.1L0,2.1L0,0z" fill="url(#lg4)" id="shape14" transform="translate(0,29.7)"/> | |
74 | + <path d="M0,0L56.7,0L56.7,2.1L0,2.1L0,0z" fill="url(#lg4)" id="shape15" transform="translate(0,34.65)"/> | |
75 | + </g> | |
76 | + <path d="M0,0L56.7,0L56.7,7.9L0,7.9L0,0z" fill="url(#lg4)" id="shape16" transform="translate(38.11,73.38)"/> | |
77 | + <path d="M0,0L56.7,0L56.7,4.1L0,4.1L0,0z" fill="url(#lg4)" id="shape17" transform="translate(38.19,65.26)"/> | |
78 | + <path d="M0,0L45.7,0L45.7,51L0,51L0,0z" fill="url(#lg3)" id="shape18" transform="translate(94.86,17.5)"/> | |
79 | + <path d="M0,0L45.7,0L45.7,15L0,15L0,0z" fill="url(#lg3)" id="shape19" transform="translate(94.86,68.5)"/> | |
80 | + <path d="M0,0L45.7,0L45.7,15L0,15L0,0z" fill="url(#lg4)" id="shape20" transform="translate(94.86,2.5)"/> | |
81 | + <path d="M0,0L4.2,0L4.2,51L0,51L0,0z" fill="url(#lg4)" id="shape21" transform="translate(136.36,17.5)"/> | |
82 | + <path d="M0,0L4.2,0L4.2,15L0,15L0,0z" fill="url(#lg5)" id="shape22" transform="translate(136.36,2.5)"/> | |
83 | + <path d="M0,0L4.2,0L4.2,15L0,15L0,0z" fill="url(#lg4)" id="shape23" transform="translate(136.36,68.5)"/> | |
84 | + <g transform="translate(96.39,22.99)"> | |
85 | + <g transform="translate(0,0)"> | |
86 | + <path d="M0,1.6C0,.7,.7,0,1.6,0C2.5,0,3.3,.7,3.3,1.6C3.3,2.5,2.5,3.3,1.6,3.3C.7,3.3,0,2.5,0,1.6z" fill="url(#lg6)" id="shape24" transform="translate(-0.02,-0.02)"/> | |
87 | + <path d="M.2,-0C.3,-0,.4,.1,.4,.2L.4,2.1C.4,2.2,.3,2.3,.2,2.3C.1,2.3,0,2.2,0,2.1L0,.2C0,.1,.1,-0,.2,-0z" fill="#3e3938" id="shape25" transform="matrix(0.71,-0.71,0.71,0.71,0.6,0.9)"/> | |
88 | + <path d="M.2,-0C.3,-0,.4,.1,.4,.2L.4,2.1C.4,2.2,.3,2.3,.2,2.3C.1,2.3,0,2.2,0,2.1L0,.2C0,.1,.1,-0,.2,-0z" fill="#3e3938" id="shape26" transform="matrix(0.71,0.71,-0.71,0.71,2.3,0.6)"/> | |
89 | + </g> | |
90 | + <g transform="translate(35.32,0)"> | |
91 | + <path d="M0,1.6C0,.7,.7,0,1.6,0C2.5,0,3.3,.7,3.3,1.6C3.3,2.5,2.5,3.3,1.6,3.3C.7,3.3,0,2.5,0,1.6z" fill="url(#lg6)" id="shape27" transform="translate(-0.02,-0.02)"/> | |
92 | + <path d="M.2,-0C.3,-0,.4,.1,.4,.2L.4,2.1C.4,2.2,.3,2.3,.2,2.3C.1,2.3,0,2.2,0,2.1L0,.2C0,.1,.1,-0,.2,-0z" fill="#3e3938" id="shape28" transform="matrix(0.71,-0.71,0.71,0.71,0.6,0.9)"/> | |
93 | + <path d="M.2,-0C.3,-0,.4,.1,.4,.2L.4,2.1C.4,2.2,.3,2.3,.2,2.3C.1,2.3,0,2.2,0,2.1L0,.2C0,.1,.1,-0,.2,-0z" fill="#3e3938" id="shape29" transform="matrix(0.71,0.71,-0.71,0.71,2.3,0.6)"/> | |
94 | + </g> | |
95 | + </g> | |
96 | + <g transform="translate(96.39,61.46)"> | |
97 | + <g transform="translate(0,0)"> | |
98 | + <path d="M0,1.6C0,.7,.7,0,1.6,0C2.5,0,3.3,.7,3.3,1.6C3.3,2.5,2.5,3.3,1.6,3.3C.7,3.3,0,2.5,0,1.6z" fill="url(#lg6)" id="shape30" transform="translate(-0.02,-0.02)"/> | |
99 | + <path d="M.2,-0C.3,-0,.4,.1,.4,.2L.4,2.1C.4,2.2,.3,2.3,.2,2.3C.1,2.3,0,2.2,0,2.1L0,.2C0,.1,.1,-0,.2,-0z" fill="#3e3938" id="shape31" transform="matrix(0.71,-0.71,0.71,0.71,0.6,0.9)"/> | |
100 | + <path d="M.2,-0C.3,-0,.4,.1,.4,.2L.4,2.1C.4,2.2,.3,2.3,.2,2.3C.1,2.3,0,2.2,0,2.1L0,.2C0,.1,.1,-0,.2,-0z" fill="#3e3938" id="shape32" transform="matrix(0.71,0.71,-0.71,0.71,2.3,0.6)"/> | |
101 | + </g> | |
102 | + <g transform="translate(35.32,0)"> | |
103 | + <path d="M0,1.6C0,.7,.7,0,1.6,0C2.5,0,3.3,.7,3.3,1.6C3.3,2.5,2.5,3.3,1.6,3.3C.7,3.3,0,2.5,0,1.6z" fill="url(#lg6)" id="shape33" transform="translate(-0.02,-0.02)"/> | |
104 | + <path d="M.2,-0C.3,-0,.4,.1,.4,.2L.4,2.1C.4,2.2,.3,2.3,.2,2.3C.1,2.3,0,2.2,0,2.1L0,.2C0,.1,.1,-0,.2,-0z" fill="#3e3938" id="shape34" transform="matrix(0.71,-0.71,0.71,0.71,0.6,0.9)"/> | |
105 | + <path d="M.2,-0C.3,-0,.4,.1,.4,.2L.4,2.1C.4,2.2,.3,2.3,.2,2.3C.1,2.3,0,2.2,0,2.1L0,.2C0,.1,.1,-0,.2,-0z" fill="#3e3938" id="shape35" transform="matrix(0.71,0.71,-0.71,0.71,2.3,0.6)"/> | |
106 | + </g> | |
107 | + </g> | |
108 | + </g> | |
109 | +</svg> | ... | ... |
1 | +<svg xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 172 89.9851" xmlns="http://www.w3.org/2000/svg" width="172" height="90"> | |
2 | + <defs> | |
3 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg1" x1="0%"> | |
4 | + <stop offset="0" stop-color="#bda47f"/> | |
5 | + <stop offset="0.15" stop-color="#ffe0b3"/> | |
6 | + <stop offset="0.25" stop-color="#ffeed7"/> | |
7 | + <stop offset="0.52" stop-color="#dfc297"/> | |
8 | + <stop offset="0.69" stop-color="#c7ad86"/> | |
9 | + <stop offset="0.8" stop-color="#bca37e"/> | |
10 | + <stop offset="0.92" stop-color="#b19a77"/> | |
11 | + <stop offset="1" stop-color="#cbb189"/> | |
12 | + </linearGradient> | |
13 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg2" x1="0%"> | |
14 | + <stop offset="0" stop-color="#718696"/> | |
15 | + <stop offset="0.15" stop-color="#a2bbcf"/> | |
16 | + <stop offset="0.25" stop-color="#d0dbe4"/> | |
17 | + <stop offset="0.52" stop-color="#869fb1"/> | |
18 | + <stop offset="0.69" stop-color="#778d9e"/> | |
19 | + <stop offset="0.8" stop-color="#708595"/> | |
20 | + <stop offset="0.92" stop-color="#697d8c"/> | |
21 | + <stop offset="1" stop-color="#7a90a1"/> | |
22 | + </linearGradient> | |
23 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg3" x1="0%"> | |
24 | + <stop offset="0" stop-color="#577388"/> | |
25 | + <stop offset="0.15" stop-color="#86a5be"/> | |
26 | + <stop offset="0.25" stop-color="#c4d1dc"/> | |
27 | + <stop offset="0.52" stop-color="#6889a2"/> | |
28 | + <stop offset="0.69" stop-color="#5c798f"/> | |
29 | + <stop offset="0.8" stop-color="#567287"/> | |
30 | + <stop offset="0.92" stop-color="#516b7f"/> | |
31 | + <stop offset="1" stop-color="#5e7c93"/> | |
32 | + </linearGradient> | |
33 | + <linearGradient y1="0%" y2="0%" x2="0%" id="lg4" x1="100%"> | |
34 | + <stop offset="0" stop-color="#627480"/> | |
35 | + <stop offset="0.03" stop-color="#acbcc7"/> | |
36 | + <stop offset="0.08" stop-color="#8198a7"/> | |
37 | + <stop offset="0.64" stop-color="#7f95a5"/> | |
38 | + <stop offset="0.95" stop-color="#7c92a1"/> | |
39 | + <stop offset="1" stop-color="#5b6b76"/> | |
40 | + </linearGradient> | |
41 | + <linearGradient y1="0%" y2="0%" x2="0%" id="lg5" x1="100%"> | |
42 | + <stop offset="0" stop-color="#718696"/> | |
43 | + <stop offset="0.15" stop-color="#a2bbcf"/> | |
44 | + <stop offset="0.25" stop-color="#d0dbe4"/> | |
45 | + <stop offset="0.52" stop-color="#869fb1"/> | |
46 | + <stop offset="0.69" stop-color="#778d9e"/> | |
47 | + <stop offset="0.8" stop-color="#708595"/> | |
48 | + <stop offset="0.92" stop-color="#697d8c"/> | |
49 | + <stop offset="1" stop-color="#7a90a1"/> | |
50 | + </linearGradient> | |
51 | + </defs> | |
52 | + <g transform="translate(1,1)"> | |
53 | + <path d="M0,0L34.8,0L34.8,15.5L0,15.5L0,0z" fill="url(#lg1)" id="shape1" transform="translate(0,43.78)"/> | |
54 | + <path d="M0,0L34.8,0L34.8,1.6L0,1.6L0,0z" fill="url(#lg1)" id="shape2" transform="translate(0,44.64)"/> | |
55 | + <path d="M0,0L34.8,0L34.8,1.6L0,1.6L0,0z" fill="url(#lg1)" id="shape3" transform="translate(0,47.72)"/> | |
56 | + <path d="M0,0L34.8,0L34.8,1.6L0,1.6L0,0z" fill="url(#lg1)" id="shape4" transform="translate(0,50.75)"/> | |
57 | + <path d="M0,0L34.8,0L34.8,1.6L0,1.6L0,0z" fill="url(#lg1)" id="shape5" transform="translate(0,53.85)"/> | |
58 | + <path d="M0,0L34.8,0L34.8,1.6L0,1.6L0,0z" fill="url(#lg1)" id="shape6" transform="translate(0,56.97)"/> | |
59 | + <path d="M0,0L3.9,0L3.9,26.7L0,26.7L0,0z" fill="url(#lg1)" id="shape7" transform="translate(31.06,38.2)"/> | |
60 | + <path d="M0,0L119,0C119,0,127.4,.5,127.4,29.1C127.4,57.8,119,58.1,119,58.1L0,58.1L0,0z" fill="url(#lg2)" id="shape8" transform="translate(42.54,22.49)"/> | |
61 | + <path d="M.6,0L7.7,0C8,0,8.3,.3,8.3,.6L8.3,72.3C8.3,72.6,8,72.9,7.7,72.9L.6,72.9C.3,72.9,0,72.6,0,72.3L0,.6C0,.3,.3,0,.6,0z" fill="url(#lg2)" id="shape9" transform="translate(34.47,15.11)"/> | |
62 | + <path d="M0,0L1.4,0L1.4,58.1L0,58.1L0,0z" fill="url(#lg3)" id="shape10" transform="translate(107.22,22.49)"/> | |
63 | + <path d="M0,0L6.4,0L6.4,58.1L0,58.1L0,0z" fill="url(#lg3)" id="shape11" transform="translate(42.54,22.49)"/> | |
64 | + <path d="M.7,-0L32.9,-0C33.3,-0,33.6,.3,33.6,.7L33.6,10L0,10L0,.7C0,.3,.3,-0,.7,-0z" fill="url(#lg4)" id="shape12" transform="translate(118.81,12.48)"/> | |
65 | + <path d="M0,12.5L19.4,12.5L19.4,0L0,0L0,12.5z" fill="url(#lg5)" id="shape13" transform="translate(125.94,-0)"/> | |
66 | + <path d="M0,2.5L3.9,2.5L3.9,0L0,0L0,2.5z" fill="url(#lg5)" id="shape14" transform="translate(120.5,9.99)"/> | |
67 | + <path d="M0,2.5L3.9,2.5L3.9,0L0,0L0,2.5z" fill="url(#lg5)" id="shape15" transform="translate(147.14,9.99)"/> | |
68 | + <path fill-opacity="0.29" d="M0,0L36.9,0L36.9,45.3L0,45.3L0,0z" fill="#ffffff" id="shape21" transform="translate(58.91,28.13)"/> | |
69 | + </g> | |
70 | +</svg> | ... | ... |
1 | +<svg xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 172 84" xmlns="http://www.w3.org/2000/svg" width="172" height="84"> | |
2 | + <defs> | |
3 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg1" x1="0%"> | |
4 | + <stop offset="0" stop-color="#bda47f"/> | |
5 | + <stop offset="0.15" stop-color="#ffe0b3"/> | |
6 | + <stop offset="0.25" stop-color="#ffeed7"/> | |
7 | + <stop offset="0.52" stop-color="#dfc297"/> | |
8 | + <stop offset="0.69" stop-color="#c7ad86"/> | |
9 | + <stop offset="0.8" stop-color="#bca37e"/> | |
10 | + <stop offset="0.92" stop-color="#b19a77"/> | |
11 | + <stop offset="1" stop-color="#cbb189"/> | |
12 | + </linearGradient> | |
13 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg2" x1="0%"> | |
14 | + <stop offset="0" stop-color="#bd9c6c"/> | |
15 | + <stop offset="0.15" stop-color="#ffd69d"/> | |
16 | + <stop offset="0.25" stop-color="#ffe8cd"/> | |
17 | + <stop offset="0.52" stop-color="#dfb881"/> | |
18 | + <stop offset="0.69" stop-color="#c7a472"/> | |
19 | + <stop offset="0.8" stop-color="#bc9b6b"/> | |
20 | + <stop offset="0.92" stop-color="#b19265"/> | |
21 | + <stop offset="1" stop-color="#cba875"/> | |
22 | + </linearGradient> | |
23 | + </defs> | |
24 | + <g transform="translate(1,1)"> | |
25 | + <path d="M1,0L169,0C169.5,0,170,.5,170,1L170,10C170,10.6,169.5,11.1,169,11.1L1,11.1C.5,11.1,0,10.6,0,10L0,1C0,.5,.5,0,1,0z" fill="url(#lg1)" id="shape1" transform="translate(0,35.46)"/> | |
26 | + <path d="M0,0L113.4,0L113.4,77.8L0,77.8L0,0z" fill="url(#lg1)" id="shape2" transform="translate(32.2,2.08)"/> | |
27 | + <path d="M1,0L3.1,0C3.7,0,4.2,.5,4.2,1L4.2,81C4.2,81.5,3.7,82,3.1,82L1,82C.5,82,0,81.5,0,81L0,1C0,.5,.5,0,1,0z" fill="url(#lg2)" id="shape3" transform="translate(28.87,0)"/> | |
28 | + <path d="M0,0L112.6,0L112.6,3.5L0,3.5L0,0z" fill="url(#lg1)" id="shape4" transform="translate(33.04,6.58)"/> | |
29 | + <path d="M0,0L112.6,0L112.6,3.5L0,3.5L0,0z" fill="url(#lg1)" id="shape5" transform="translate(33.04,39.55)"/> | |
30 | + <path d="M0,0L112.6,0L112.6,3.5L0,3.5L0,0z" fill="url(#lg1)" id="shape6" transform="translate(33.04,72.51)"/> | |
31 | + <path d="M1,0L3.9,0C4.5,0,5,.5,5,1L5,16.2C5,16.8,4.5,17.2,3.9,17.2L1,17.2C.5,17.2,-0,16.8,-0,16.2L-0,1C-0,.5,.5,0,1,0z" fill="url(#lg1)" id="shape7" transform="translate(13.3,32.39)"/> | |
32 | + <path d="M0,0L8.9,0L8.9,28.5L0,28.5L0,0z" fill="url(#lg1)" id="shape8" transform="translate(20.19,26.73)"/> | |
33 | + <path d="M0,0L8.9,0L8.9,20.8L0,20.8L0,0z" fill="url(#lg1)" id="shape9" transform="translate(147.98,30.62)"/> | |
34 | + <path d="M0,0L112.6,0L112.6,3.5L0,3.5L0,0z" fill="url(#lg1)" id="shape10" transform="translate(33.04,23.06)"/> | |
35 | + <path d="M0,0L112.6,0L112.6,3.5L0,3.5L0,0z" fill="url(#lg1)" id="shape11" transform="translate(33.04,56.03)"/> | |
36 | + <path d="M1,0L3.1,0C3.7,0,4.2,.5,4.2,1L4.2,81C4.2,81.5,3.7,82,3.1,82L1,82C.5,82,0,81.5,0,81L0,1C0,.5,.5,0,1,0z" fill="url(#lg2)" id="shape12" transform="translate(144.67,0)"/> | |
37 | + </g> | |
38 | +</svg> | ... | ... |
1 | +<svg xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 120 134.032" xmlns="http://www.w3.org/2000/svg" width="120" height="134"> | |
2 | + <defs> | |
3 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg1" x1="0%"> | |
4 | + <stop offset="0" stop-color="#a48863"/> | |
5 | + <stop offset="0.15" stop-color="#e0bd92"/> | |
6 | + <stop offset="0.25" stop-color="#eedcc9"/> | |
7 | + <stop offset="0.52" stop-color="#c2a175"/> | |
8 | + <stop offset="0.69" stop-color="#ad8f68"/> | |
9 | + <stop offset="0.8" stop-color="#a38662"/> | |
10 | + <stop offset="0.92" stop-color="#9a7f5c"/> | |
11 | + <stop offset="1" stop-color="#b1926a"/> | |
12 | + </linearGradient> | |
13 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg2" x1="0%"> | |
14 | + <stop offset="0" stop-color="#959d97"/> | |
15 | + <stop offset="0.15" stop-color="#ced7d0"/> | |
16 | + <stop offset="0.25" stop-color="#e4e9e5"/> | |
17 | + <stop offset="0.52" stop-color="#b1b9b2"/> | |
18 | + <stop offset="0.69" stop-color="#9da59e"/> | |
19 | + <stop offset="0.8" stop-color="#949b95"/> | |
20 | + <stop offset="0.92" stop-color="#8b938d"/> | |
21 | + <stop offset="1" stop-color="#a1a9a2"/> | |
22 | + </linearGradient> | |
23 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg3" x1="0%"> | |
24 | + <stop offset="0" stop-color="#8e9690"/> | |
25 | + <stop offset="0.03" stop-color="#d6ddd7"/> | |
26 | + <stop offset="0.08" stop-color="#bac3bc"/> | |
27 | + <stop offset="0.64" stop-color="#b7c0b9"/> | |
28 | + <stop offset="0.95" stop-color="#b3bcb4"/> | |
29 | + <stop offset="1" stop-color="#848b85"/> | |
30 | + </linearGradient> | |
31 | + <linearGradient y1="-6" y2="75" x2="11" id="lg4" x1="58" gradientUnits="userSpaceOnUse"> | |
32 | + <stop offset="0" stop-color="#959d97"/> | |
33 | + <stop offset="0.15" stop-color="#c8d1ca"/> | |
34 | + <stop offset="0.25" stop-color="#d5dcd7"/> | |
35 | + <stop offset="0.52" stop-color="#aab1ab"/> | |
36 | + <stop offset="0.69" stop-color="#9da59e"/> | |
37 | + <stop offset="0.8" stop-color="#949b95"/> | |
38 | + <stop offset="0.92" stop-color="#8b938d"/> | |
39 | + <stop offset="1" stop-color="#a1a9a2"/> | |
40 | + </linearGradient> | |
41 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg5" x1="0%"> | |
42 | + <stop offset="0" stop-color="#879189"/> | |
43 | + <stop offset="0.15" stop-color="#bcc8bf"/> | |
44 | + <stop offset="0.25" stop-color="#dbe1dd"/> | |
45 | + <stop offset="0.52" stop-color="#a0aba2"/> | |
46 | + <stop offset="0.69" stop-color="#8e9890"/> | |
47 | + <stop offset="0.8" stop-color="#868f88"/> | |
48 | + <stop offset="0.92" stop-color="#7e8780"/> | |
49 | + <stop offset="1" stop-color="#919c94"/> | |
50 | + </linearGradient> | |
51 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg6" x1="0%"> | |
52 | + <stop offset="0" stop-color="#ad976f"/> | |
53 | + <stop offset="0.15" stop-color="#ebd0a1"/> | |
54 | + <stop offset="0.25" stop-color="#f4e5cf"/> | |
55 | + <stop offset="0.52" stop-color="#cdb384"/> | |
56 | + <stop offset="0.69" stop-color="#b69f75"/> | |
57 | + <stop offset="0.8" stop-color="#ac966e"/> | |
58 | + <stop offset="0.92" stop-color="#a28e68"/> | |
59 | + <stop offset="1" stop-color="#baa378"/> | |
60 | + </linearGradient> | |
61 | + </defs> | |
62 | + <g transform="translate(1,1.03)"> | |
63 | + <path d="M0,0L3.1,0L3.1,5.7L0,5.7L0,0z" fill="url(#lg1)" id="shape1" transform="translate(114.89,36.77)"/> | |
64 | + <path d="M0,0L3.1,0L3.1,5.7L0,5.7L0,0z" fill="url(#lg1)" id="shape2" transform="translate(114.89,55.73)"/> | |
65 | + <path d="M0,0L3.1,0L3.1,5.7L0,5.7L0,0z" fill="url(#lg1)" id="shape3" transform="translate(114.89,74.7)"/> | |
66 | + <path d="M0,0L89.5,0L89.5,49.4L0,49.4L0,0z" fill="url(#lg2)" id="shape4" transform="translate(16.59,33.78)"/> | |
67 | + <path d="M1.3,0L7.7,0C8.5,0,9,.6,9,1.3L9,77.9C9,78.6,8.5,79.2,7.7,79.2L1.3,79.2C.5,79.2,-0,78.6,-0,77.9L-0,1.3C-0,.6,.5,0,1.3,0z" fill="url(#lg2)" id="shape5" transform="translate(8.33,18.85)"/> | |
68 | + <path d="M.1,0L9.4,0C9.5,0,9.6,0,9.6,0L9.6,116.9C9.6,117,9.5,117,9.4,117L.1,117C0,117,-0,117,-0,116.9L-0,0C-0,0,0,0,.1,0z" fill="url(#lg2)" id="shape6" transform="translate(0.01,-0.03)"/> | |
69 | + <path d="M0,0L8.9,0L8.9,49.4L0,49.4L0,0z" fill="url(#lg2)" id="shape7" transform="translate(106.33,33.78)"/> | |
70 | + <path d="M0,0L47.6,0L47.6,13.4L0,13.4L0,0z" fill="url(#lg3)" id="shape8" transform="translate(36.9,113.1)"/> | |
71 | + <path d="M0,0L62.3,0L62.3,5.3L0,5.3L0,0z" fill="url(#lg3)" id="shape9" transform="translate(31.22,126.73)"/> | |
72 | + <path d="M0,37.7C0,16.8,17,0,38,0C59,0,76,16.8,76,37.7C76,58.5,59,75.4,38,75.4C17,75.4,0,58.5,0,37.7z" fill="#939e94" id="shape10" transform="translate(22.8,45.9)"/> | |
73 | + <path d="M0,34.2C0,15.3,15.5,0,34.5,0C53.6,0,69.1,15.3,69.1,34.2C69.1,53.1,53.6,68.5,34.5,68.5C15.5,68.5,0,53.1,0,34.2z" fill="url(#lg4)" id="shape11" transform="translate(26.28,49.35)"/> | |
74 | + <path d="M0,17.4C0,7.8,7.9,0,17.6,0C27.2,0,35.1,7.8,35.1,17.4C35.1,27,27.2,34.8,17.6,34.8C7.9,34.8,0,27,0,17.4z" fill="#d9deda" id="shape12" transform="translate(43.26,66.19)"/> | |
75 | + <path d="M0,15.2C0,6.8,6.8,0,15.3,0C23.7,0,30.6,6.8,30.6,15.2C30.6,23.5,23.7,30.3,15.3,30.3C6.8,30.3,0,23.5,0,15.2z" fill="#595757" id="shape13" transform="translate(45.54,68.45)"/> | |
76 | + <path d="M0,10.7C0,4.8,4.8,0,10.8,0C16.7,0,21.6,4.8,21.6,10.7C21.6,16.6,16.7,21.4,10.8,21.4C4.8,21.4,0,16.6,0,10.7z" fill="url(#lg1)" id="shape14" transform="translate(50.04,72.91)"/> | |
77 | + <path d="M0,8.1C0,3.6,3.7,0,8.2,0C12.7,0,16.4,3.6,16.4,8.1C16.4,12.6,12.7,16.3,8.2,16.3C3.7,16.3,0,12.6,0,8.1z" fill="#595757" id="shape15" transform="translate(52.62,75.47)"/> | |
78 | + <path d="M0,0L2.9,0L2.9,49.4L0,49.4L0,0z" fill="url(#lg5)" id="shape16" transform="translate(104.67,33.78)"/> | |
79 | + <g transform="translate(56.89,51.71)"> | |
80 | + <path d="M5.9,0L7.9,3.4L5.9,6.8L2,6.8L0,3.4L2,0L5.9,0z" fill="url(#lg6)" id="shape17"/> | |
81 | + <path d="M-0,2.2C-0,1,1,-0,2.2,-0C3.4,-0,4.4,1,4.4,2.2C4.4,3.4,3.4,4.3,2.2,4.3C1,4.3,-0,3.4,-0,2.2z" fill="url(#lg1)" id="shape18" transform="translate(1.74,1.2)"/> | |
82 | + <path d="M0,-0C.5,-0,.5,0,.5,.1L.5,2.9C.5,2.9,.5,2.9,.4,2.9C0,2.9,-0,2.9,-0,2.9L-0,.1C-0,0,0,-0,0,-0z" fill="#997c57" id="shape19" transform="translate(3.68,1.91)"/> | |
83 | + </g> | |
84 | + <g transform="translate(56.89,109.72)"> | |
85 | + <path d="M5.9,0L7.9,3.4L5.9,6.8L2,6.8L0,3.4L2,0L5.9,0z" fill="url(#lg6)" id="shape20"/> | |
86 | + <path d="M-0,2.2C-0,1,1,-0,2.2,-0C3.4,-0,4.4,1,4.4,2.2C4.4,3.4,3.4,4.3,2.2,4.3C1,4.3,-0,3.4,-0,2.2z" fill="url(#lg1)" id="shape21" transform="translate(1.74,1.2)"/> | |
87 | + <path d="M0,-0C.5,-0,.5,0,.5,.1L.5,2.9C.5,2.9,.5,2.9,.4,2.9C0,2.9,-0,2.9,-0,2.9L-0,.1C-0,0,0,-0,0,-0z" fill="#997c57" id="shape22" transform="translate(3.68,1.91)"/> | |
88 | + </g> | |
89 | + <g transform="translate(35.4,99.4)"> | |
90 | + <path d="M5.9,0L7.9,3.4L5.9,6.8L2,6.8L0,3.4L2,0L5.9,0z" fill="url(#lg6)" id="shape23"/> | |
91 | + <path d="M-0,2.2C-0,1,1,-0,2.2,-0C3.4,-0,4.4,1,4.4,2.2C4.4,3.4,3.4,4.3,2.2,4.3C1,4.3,-0,3.4,-0,2.2z" fill="url(#lg1)" id="shape24" transform="translate(1.74,1.2)"/> | |
92 | + <path d="M0,-0C.5,-0,.5,0,.5,.1L.5,2.9C.5,2.9,.5,2.9,.4,2.9C0,2.9,-0,2.9,-0,2.9L-0,.1C-0,0,0,-0,0,-0z" fill="#997c57" id="shape25" transform="translate(3.68,1.91)"/> | |
93 | + </g> | |
94 | + <g transform="translate(28.07,80.22)"> | |
95 | + <path d="M5.9,0L7.9,3.4L5.9,6.8L2,6.8L0,3.4L2,0L5.9,0z" fill="url(#lg6)" id="shape26"/> | |
96 | + <path d="M-0,2.2C-0,1,1,-0,2.2,-0C3.4,-0,4.4,1,4.4,2.2C4.4,3.4,3.4,4.3,2.2,4.3C1,4.3,-0,3.4,-0,2.2z" fill="url(#lg1)" id="shape27" transform="translate(1.74,1.2)"/> | |
97 | + <path d="M0,-0C.5,-0,.5,0,.5,.1L.5,2.9C.5,2.9,.5,2.9,.4,2.9C0,2.9,-0,2.9,-0,2.9L-0,.1C-0,0,0,-0,0,-0z" fill="#997c57" id="shape28" transform="translate(3.68,1.91)"/> | |
98 | + </g> | |
99 | + <g transform="translate(85.95,80.22)"> | |
100 | + <path d="M5.9,0L7.9,3.4L5.9,6.8L2,6.8L0,3.4L2,0L5.9,0z" fill="url(#lg6)" id="shape29"/> | |
101 | + <path d="M-0,2.2C-0,1,1,-0,2.2,-0C3.4,-0,4.4,1,4.4,2.2C4.4,3.4,3.4,4.3,2.2,4.3C1,4.3,-0,3.4,-0,2.2z" fill="url(#lg1)" id="shape30" transform="translate(1.74,1.2)"/> | |
102 | + <path d="M0,-0C.5,-0,.5,0,.5,.1L.5,2.9C.5,2.9,.5,2.9,.4,2.9C0,2.9,-0,2.9,-0,2.9L-0,.1C-0,0,0,-0,0,-0z" fill="#997c57" id="shape31" transform="translate(3.68,1.91)"/> | |
103 | + </g> | |
104 | + <g transform="translate(78.38,61.22)"> | |
105 | + <path d="M5.9,0L7.9,3.4L5.9,6.8L2,6.8L0,3.4L2,0L5.9,0z" fill="url(#lg6)" id="shape32"/> | |
106 | + <path d="M-0,2.2C-0,1,1,-0,2.2,-0C3.4,-0,4.4,1,4.4,2.2C4.4,3.4,3.4,4.3,2.2,4.3C1,4.3,-0,3.4,-0,2.2z" fill="url(#lg1)" id="shape33" transform="translate(1.74,1.2)"/> | |
107 | + <path d="M0,-0C.5,-0,.5,0,.5,.1L.5,2.9C.5,2.9,.5,2.9,.4,2.9C0,2.9,-0,2.9,-0,2.9L-0,.1C-0,0,0,-0,0,-0z" fill="#997c57" id="shape34" transform="translate(3.68,1.91)"/> | |
108 | + </g> | |
109 | + <g transform="translate(35.4,61.22)"> | |
110 | + <path d="M5.9,0L7.9,3.4L5.9,6.8L2,6.8L0,3.4L2,0L5.9,0z" fill="url(#lg6)" id="shape35"/> | |
111 | + <path d="M-0,2.2C-0,1,1,-0,2.2,-0C3.4,-0,4.4,1,4.4,2.2C4.4,3.4,3.4,4.3,2.2,4.3C1,4.3,-0,3.4,-0,2.2z" fill="url(#lg1)" id="shape36" transform="translate(1.74,1.2)"/> | |
112 | + <path d="M0,-0C.5,-0,.5,0,.5,.1L.5,2.9C.5,2.9,.5,2.9,.4,2.9C0,2.9,-0,2.9,-0,2.9L-0,.1C-0,0,0,-0,0,-0z" fill="#997c57" id="shape37" transform="translate(3.68,1.91)"/> | |
113 | + </g> | |
114 | + <g transform="translate(78.38,99.4)"> | |
115 | + <path d="M5.9,0L7.9,3.4L5.9,6.8L2,6.8L0,3.4L2,0L5.9,0z" fill="url(#lg6)" id="shape38"/> | |
116 | + <path d="M-0,2.2C-0,1,1,-0,2.2,-0C3.4,-0,4.4,1,4.4,2.2C4.4,3.4,3.4,4.3,2.2,4.3C1,4.3,-0,3.4,-0,2.2z" fill="url(#lg1)" id="shape39" transform="translate(1.74,1.2)"/> | |
117 | + <path d="M0,-0C.5,-0,.5,0,.5,.1L.5,2.9C.5,2.9,.5,2.9,.4,2.9C0,2.9,-0,2.9,-0,2.9L-0,.1C-0,0,0,-0,0,-0z" fill="#997c57" id="shape40" transform="translate(3.68,1.91)"/> | |
118 | + </g> | |
119 | + <path d="M0,4.9L10.9,4.9L10.9,0L0,0L0,4.9z" fill="url(#lg3)" id="shape41" transform="translate(89.48,29.05)"/> | |
120 | + </g> | |
121 | +</svg> | ... | ... |
1 | +<svg xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 172 107.996" xmlns="http://www.w3.org/2000/svg" width="172" height="108"> | |
2 | + <defs> | |
3 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg1" x1="0%"> | |
4 | + <stop offset="0" stop-color="#70737a"/> | |
5 | + <stop offset="0.15" stop-color="#9da0a8"/> | |
6 | + <stop offset="0.25" stop-color="#cdced2"/> | |
7 | + <stop offset="0.44" stop-color="#81848b"/> | |
8 | + <stop offset="0.6" stop-color="#72757c"/> | |
9 | + <stop offset="0.8" stop-color="#5f6168"/> | |
10 | + <stop offset="0.97" stop-color="#57595e"/> | |
11 | + <stop offset="1" stop-color="#75777f"/> | |
12 | + </linearGradient> | |
13 | + <linearGradient y1="0%" y2="0%" x2="0%" id="lg2" x1="100%"> | |
14 | + <stop offset="0" stop-color="#4b4d52"/> | |
15 | + <stop offset="0.03" stop-color="#9a9b9f"/> | |
16 | + <stop offset="0.08" stop-color="#64676c"/> | |
17 | + <stop offset="0.64" stop-color="#62656a"/> | |
18 | + <stop offset="0.95" stop-color="#606268"/> | |
19 | + <stop offset="1" stop-color="#45474b"/> | |
20 | + </linearGradient> | |
21 | + <linearGradient y1="0%" y2="0%" x2="0%" id="lg3" x1="100%"> | |
22 | + <stop offset="0" stop-color="#54575c"/> | |
23 | + <stop offset="0.03" stop-color="#a1a3a7"/> | |
24 | + <stop offset="0.08" stop-color="#707379"/> | |
25 | + <stop offset="0.64" stop-color="#6e7177"/> | |
26 | + <stop offset="0.95" stop-color="#6b6e74"/> | |
27 | + <stop offset="1" stop-color="#4e5055"/> | |
28 | + </linearGradient> | |
29 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg4" x1="0%"> | |
30 | + <stop offset="0" stop-color="#5c5f67"/> | |
31 | + <stop offset="0.15" stop-color="#878a93"/> | |
32 | + <stop offset="0.25" stop-color="#c5c6c9"/> | |
33 | + <stop offset="0.44" stop-color="#6a6d76"/> | |
34 | + <stop offset="0.6" stop-color="#5e6169"/> | |
35 | + <stop offset="0.8" stop-color="#4e5157"/> | |
36 | + <stop offset="0.97" stop-color="#47494f"/> | |
37 | + <stop offset="1" stop-color="#60636b"/> | |
38 | + </linearGradient> | |
39 | + <linearGradient y1="0%" y2="0%" x2="0%" id="lg5" x1="100%"> | |
40 | + <stop offset="0" stop-color="#c4aa84"/> | |
41 | + <stop offset="0.15" stop-color="#ffe0b3"/> | |
42 | + <stop offset="0.25" stop-color="#ffeed7"/> | |
43 | + <stop offset="0.44" stop-color="#dfc297"/> | |
44 | + <stop offset="0.6" stop-color="#c7ad86"/> | |
45 | + <stop offset="0.8" stop-color="#a89170"/> | |
46 | + <stop offset="0.97" stop-color="#998566"/> | |
47 | + <stop offset="1" stop-color="#cbb189"/> | |
48 | + </linearGradient> | |
49 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg6" x1="0%"> | |
50 | + <stop offset="0" stop-color="#b39d73"/> | |
51 | + <stop offset="0.15" stop-color="#ebd0a1"/> | |
52 | + <stop offset="0.25" stop-color="#f4e5cf"/> | |
53 | + <stop offset="0.44" stop-color="#cdb384"/> | |
54 | + <stop offset="0.6" stop-color="#b69f75"/> | |
55 | + <stop offset="0.8" stop-color="#9a8662"/> | |
56 | + <stop offset="0.97" stop-color="#8c7a59"/> | |
57 | + <stop offset="1" stop-color="#baa378"/> | |
58 | + </linearGradient> | |
59 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg7" x1="0%"> | |
60 | + <stop offset="0" stop-color="#c4aa84"/> | |
61 | + <stop offset="0.15" stop-color="#ffe0b3"/> | |
62 | + <stop offset="0.25" stop-color="#ffeed7"/> | |
63 | + <stop offset="0.44" stop-color="#dfc297"/> | |
64 | + <stop offset="0.6" stop-color="#c7ad86"/> | |
65 | + <stop offset="0.8" stop-color="#a89170"/> | |
66 | + <stop offset="0.97" stop-color="#998566"/> | |
67 | + <stop offset="1" stop-color="#cbb189"/> | |
68 | + </linearGradient> | |
69 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg8" x1="0%"> | |
70 | + <stop offset="0" stop-color="#54575c"/> | |
71 | + <stop offset="0.03" stop-color="#a1a3a7"/> | |
72 | + <stop offset="0.08" stop-color="#707379"/> | |
73 | + <stop offset="0.64" stop-color="#6e7177"/> | |
74 | + <stop offset="0.95" stop-color="#6b6e74"/> | |
75 | + <stop offset="1" stop-color="#4e5055"/> | |
76 | + </linearGradient> | |
77 | + <linearGradient y1="0%" y2="0%" x2="0%" id="lg9" x1="100%"> | |
78 | + <stop offset="0" stop-color="#9eb4bd"/> | |
79 | + <stop offset="0.15" stop-color="#d2ecf7"/> | |
80 | + <stop offset="0.25" stop-color="#e6f4fa"/> | |
81 | + <stop offset="0.44" stop-color="#b5ced7"/> | |
82 | + <stop offset="0.6" stop-color="#a1b7c0"/> | |
83 | + <stop offset="0.8" stop-color="#879aa2"/> | |
84 | + <stop offset="0.97" stop-color="#7b8d94"/> | |
85 | + <stop offset="1" stop-color="#a5bbc4"/> | |
86 | + </linearGradient> | |
87 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg10" x1="0%"> | |
88 | + <stop offset="0" stop-color="#9db098" stop-opacity="0.5"/> | |
89 | + <stop offset="0.15" stop-color="#d0e8cb" stop-opacity="0.5"/> | |
90 | + <stop offset="0.25" stop-color="#e5f2e2" stop-opacity="0.5"/> | |
91 | + <stop offset="0.44" stop-color="#b3c9ae" stop-opacity="0.5"/> | |
92 | + <stop offset="0.6" stop-color="#9fb39b" stop-opacity="0.5"/> | |
93 | + <stop offset="0.8" stop-color="#869782" stop-opacity="0.5"/> | |
94 | + <stop offset="0.97" stop-color="#7a8a76" stop-opacity="0.5"/> | |
95 | + <stop offset="1" stop-color="#a3b79e" stop-opacity="0.5"/> | |
96 | + </linearGradient> | |
97 | + </defs> | |
98 | + <g transform="translate(1.02,1)"> | |
99 | + <path d="M0,0L58.2,0L58.2,70.7L0,70.7L0,0z" fill="url(#lg1)" id="shape1" transform="translate(33.74,26.65)"/> | |
100 | + <path d="M0,0L19,0L19,75.5L0,75.5L0,0z" fill="url(#lg1)" id="shape2" transform="translate(14.75,23.3)"/> | |
101 | + <path d="M14.9,0L14.9,75.5C14.9,75.5,0,75.5,0,38C0,.5,14.9,0,14.9,0z" fill="url(#lg1)" id="shape3" transform="translate(-0.02,23.3)"/> | |
102 | + <path d="M0,0L4.9,3.5L4.9,31.5L0,35L0,0z" fill="url(#lg2)" id="shape4" transform="matrix(0,1,1,0,32.3,21.7)"/> | |
103 | + <path d="M0,21.7L34.8,21.7L34.8,0L0,0L0,21.7z" fill="url(#lg3)" id="shape5" transform="translate(32.33,-0)"/> | |
104 | + <path d="M0,1.6L34.8,1.6L34.8,0L0,0L0,1.6z" fill="url(#lg2)" id="shape6" transform="translate(32.42,7.94)"/> | |
105 | + <path d="M0,7.9L4.8,7.9L4.8,0L0,0L0,7.9z" fill="url(#lg2)" id="shape7" transform="translate(32.42,0)"/> | |
106 | + <path d="M0,7.9L4.8,7.9L4.8,0L0,0L0,7.9z" fill="url(#lg2)" id="shape8" transform="translate(62.31,0)"/> | |
107 | + <path d="M0,0L58.2,0L58.2,2.2L0,2.2L0,0z" fill="url(#lg1)" id="shape9" transform="translate(33.74,34.25)"/> | |
108 | + <path d="M0,0L58.2,0L58.2,2.2L0,2.2L0,0z" fill="url(#lg1)" id="shape10" transform="translate(33.74,44.02)"/> | |
109 | + <path d="M0,0L58.2,0L58.2,2.2L0,2.2L0,0z" fill="url(#lg1)" id="shape11" transform="translate(33.74,48.9)"/> | |
110 | + <path d="M0,0L58.2,0L58.2,2.2L0,2.2L0,0z" fill="url(#lg1)" id="shape12" transform="translate(33.74,53.79)"/> | |
111 | + <path d="M0,0L58.2,0L58.2,2.2L0,2.2L0,0z" fill="url(#lg1)" id="shape13" transform="translate(33.74,58.67)"/> | |
112 | + <path d="M0,0L58.2,0L58.2,2.2L0,2.2L0,0z" fill="url(#lg1)" id="shape14" transform="translate(33.74,63.56)"/> | |
113 | + <path d="M0,0L58.2,0L58.2,2.2L0,2.2L0,0z" fill="url(#lg1)" id="shape15" transform="translate(33.74,68.45)"/> | |
114 | + <path d="M0,0L58.2,0L58.2,2.2L0,2.2L0,0z" fill="url(#lg1)" id="shape16" transform="translate(33.74,73.33)"/> | |
115 | + <path d="M0,0L58.2,0L58.2,2.2L0,2.2L0,0z" fill="url(#lg1)" id="shape17" transform="translate(33.74,78.22)"/> | |
116 | + <path d="M0,0L58.2,0L58.2,2.2L0,2.2L0,0z" fill="url(#lg1)" id="shape18" transform="translate(33.74,83.1)"/> | |
117 | + <path d="M0,0L58.2,0L58.2,2.2L0,2.2L0,0z" fill="url(#lg1)" id="shape19" transform="translate(33.74,87.99)"/> | |
118 | + <path d="M0,0L58.2,0L58.2,2.2L0,2.2L0,0z" fill="url(#lg1)" id="shape20" transform="translate(33.74,92.87)"/> | |
119 | + <path d="M0,0L58.2,0L58.2,2.2L0,2.2L0,0z" fill="url(#lg1)" id="shape21" transform="translate(33.74,29.36)"/> | |
120 | + <path d="M0,0L58.2,0L58.2,2.2L0,2.2L0,0z" fill="url(#lg1)" id="shape22" transform="translate(33.74,38.86)"/> | |
121 | + <path d="M0,0L1.7,0L1.7,75.5L0,75.5L0,0z" fill="url(#lg4)" id="shape23" transform="translate(15.27,23.3)"/> | |
122 | + <g transform="translate(21.4,58.21)"> | |
123 | + <path d="M0,2.9C0,1.3,1.3,0,2.9,0C4.4,0,5.7,1.3,5.7,2.9C5.7,4.4,4.4,5.7,2.9,5.7C1.3,5.7,0,4.4,0,2.9z" fill="url(#lg5)" id="shape24" transform="translate(-0.01,-0.01)"/> | |
124 | + <path d="M.4,-0C.6,-0,.7,.2,.7,.4L.7,3.7C.7,3.9,.6,4.1,.4,4.1C.2,4.1,0,3.9,0,3.7L0,.4C0,.2,.2,-0,.4,-0z" fill="#9c8059" id="shape25" transform="matrix(0.71,-0.71,0.71,0.71,1.1,1.7)"/> | |
125 | + <path d="M.4,-0C.6,-0,.7,.2,.7,.4L.7,3.7C.7,3.9,.6,4.1,.4,4.1C.2,4.1,0,3.9,0,3.7L0,.4C0,.2,.2,-0,.4,-0z" fill="#9c8059" id="shape26" transform="matrix(0.71,0.71,-0.71,0.71,4,1.2)"/> | |
126 | + </g> | |
127 | + <path d="M0,0L1.6,0L1.6,70.7L0,70.7L0,0z" fill="url(#lg4)" id="shape27" transform="translate(90.72,26.65)"/> | |
128 | + <path d="M0,0L43.3,0L43.3,75.5L0,75.5L0,0z" fill="url(#lg1)" id="shape28" transform="translate(91.94,23.3)"/> | |
129 | + <path d="M1.4,0L5.1,0C5.9,0,6.5,.6,6.5,1.4L6.5,88.4C6.5,89.2,5.9,89.8,5.1,89.8L1.4,89.8C.6,89.8,0,89.2,0,88.4L0,1.4C0,.6,.6,0,1.4,0z" fill="url(#lg1)" id="shape29" transform="translate(135.01,16.15)"/> | |
130 | + <path d="M0,0L6.9,5.7L6.9,22L0,27.7L0,0z" fill="url(#lg6)" id="shape30" transform="translate(141.52,47.22)"/> | |
131 | + <path d="M0,0L21.6,0L21.6,16.3L0,16.3L0,0z" fill="url(#lg7)" id="shape31" transform="translate(148.37,52.91)"/> | |
132 | + <path d="M0,5.7L15.6,5.7L15.6,0L0,5.7z" fill="url(#lg1)" id="shape32" transform="translate(119.42,17.56)"/> | |
133 | + <path d="M0,5.7L15.6,5.7L15.6,0L0,5.7z" fill="url(#lg1)" id="shape33" transform="matrix(1,0,0,-1,119.4,104.6)"/> | |
134 | + <path d="M0,13.8L15.9,13.8L15.9,0C15.9,0,13.5,8.6,0,13.8z" fill="url(#lg1)" id="shape34" transform="translate(119.08,26.95)"/> | |
135 | + <path d="M0,0L15.7,0L15.7,3.8L0,3.8L0,0z" fill="url(#lg8)" id="shape35" transform="translate(119.31,59.19)"/> | |
136 | + <path d="M0,13.8L15.9,13.8L15.9,0C15.9,0,13.5,8.6,0,13.8z" fill="url(#lg1)" id="shape36" transform="matrix(1,0,0,-1,119.1,95.2)"/> | |
137 | + <path d="M0,0L1.5,0L1.5,75.5L0,75.5L0,0z" fill="url(#lg4)" id="shape37" transform="translate(96.04,23.3)"/> | |
138 | + <path fill-opacity="0.25" d="M1.3,0L18.4,0C19.1,0,19.7,.6,19.7,1.3L19.7,20.1C19.7,20.9,19.1,21.5,18.4,21.5L1.3,21.5C.6,21.5,0,20.9,0,20.1L0,1.3C0,.6,.6,0,1.3,0z" fill="#ffffff" id="shape38" transform="translate(98.68,32.48)"/> | |
139 | + <path d="M8.2,0L11.3,2.3L12.5,5.9L11.3,9.6L8.2,11.9L4.3,11.9L1.2,9.6L0,5.9L1.2,2.3L4.3,0L8.2,0z" fill="url(#lg9)" id="shape39" transform="translate(101.18,57.06)"/> | |
140 | + <path d="M0,5.6C0,2.5,2.8,-0,6.2,-0C9.6,-0,12.4,2.5,12.4,5.6C12.4,8.7,9.6,11.2,6.2,11.2C2.8,11.2,0,8.7,0,5.6z" fill="url(#lg10)" id="shape40" transform="translate(101.19,74.61)"/> | |
141 | + <g transform="translate(33.41,2.54)"> | |
142 | + <path d="M0,1.4C0,.6,.6,0,1.4,0C2.2,0,2.9,.6,2.9,1.4C2.9,2.2,2.2,2.9,1.4,2.9C.6,2.9,0,2.2,0,1.4z" fill="url(#lg5)" id="shape41" transform="translate(-0,-0)"/> | |
143 | + <path d="M.2,-0C.3,-0,.4,.1,.4,.2L.4,1.8C.4,2,.3,2,.2,2C.1,2,0,2,0,1.8L0,.2C0,.1,.1,-0,.2,-0z" fill="#9c8059" id="shape42" transform="matrix(0.71,-0.71,0.71,0.71,0.6,0.8)"/> | |
144 | + <path d="M.2,-0C.3,-0,.4,.1,.4,.2L.4,1.8C.4,2,.3,2,.2,2C.1,2,0,2,0,1.8L0,.2C0,.1,.1,-0,.2,-0z" fill="#9c8059" id="shape43" transform="matrix(0.71,0.71,-0.71,0.71,2,0.6)"/> | |
145 | + </g> | |
146 | + <g transform="translate(63.3,2.54)"> | |
147 | + <path d="M0,1.4C0,.6,.6,0,1.4,0C2.2,0,2.9,.6,2.9,1.4C2.9,2.2,2.2,2.9,1.4,2.9C.6,2.9,0,2.2,0,1.4z" fill="url(#lg5)" id="shape44" transform="translate(-0,-0)"/> | |
148 | + <path d="M.2,-0C.3,-0,.4,.1,.4,.2L.4,1.8C.4,2,.3,2,.2,2C.1,2,0,2,0,1.8L0,.2C0,.1,.1,-0,.2,-0z" fill="#9c8059" id="shape45" transform="matrix(0.71,-0.71,0.71,0.71,0.6,0.8)"/> | |
149 | + <path d="M.2,-0C.3,-0,.4,.1,.4,.2L.4,1.8C.4,2,.3,2,.2,2C.1,2,0,2,0,1.8L0,.2C0,.1,.1,-0,.2,-0z" fill="#9c8059" id="shape46" transform="matrix(0.71,0.71,-0.71,0.71,2,0.6)"/> | |
150 | + </g> | |
151 | + </g> | |
152 | +</svg> | ... | ... |
1 | +<svg xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 154 56" xmlns="http://www.w3.org/2000/svg" width="154" height="56"> | |
2 | + <defs> | |
3 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg1" x1="0%"> | |
4 | + <stop offset="0" stop-color="#9e9a9a"/> | |
5 | + <stop offset="0.15" stop-color="#d9d3d4"/> | |
6 | + <stop offset="0.25" stop-color="#eae7e7"/> | |
7 | + <stop offset="0.52" stop-color="#bbb6b7"/> | |
8 | + <stop offset="0.69" stop-color="#a6a2a2"/> | |
9 | + <stop offset="0.8" stop-color="#9d9899"/> | |
10 | + <stop offset="0.92" stop-color="#949090"/> | |
11 | + <stop offset="1" stop-color="#aaa5a6"/> | |
12 | + </linearGradient> | |
13 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg2" x1="0%"> | |
14 | + <stop offset="0" stop-color="#918a8b"/> | |
15 | + <stop offset="0.15" stop-color="#c9c0c1"/> | |
16 | + <stop offset="0.25" stop-color="#e2dddd"/> | |
17 | + <stop offset="0.52" stop-color="#aca3a4"/> | |
18 | + <stop offset="0.69" stop-color="#999192"/> | |
19 | + <stop offset="0.8" stop-color="#908989"/> | |
20 | + <stop offset="0.92" stop-color="#888181"/> | |
21 | + <stop offset="1" stop-color="#9d9495"/> | |
22 | + </linearGradient> | |
23 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg3" x1="0%"> | |
24 | + <stop offset="0" stop-color="#1c85a1"/> | |
25 | + <stop offset="0.09" stop-color="#1d87a3"/> | |
26 | + <stop offset="0.36" stop-color="#85c0d7"/> | |
27 | + <stop offset="0.56" stop-color="#2196b5"/> | |
28 | + <stop offset="0.83" stop-color="#187891"/> | |
29 | + <stop offset="1" stop-color="#0e5567"/> | |
30 | + </linearGradient> | |
31 | + </defs> | |
32 | + <g transform="translate(1.09,1)"> | |
33 | + <path d="M0,0L41.7,0L41.7,40.1L0,40.1L0,0z" fill="url(#lg1)" id="shape1" transform="translate(4.51,6.94)"/> | |
34 | + <path d="M3.1,0C4.9,0,6.3,1.4,6.3,3.1L6.3,42.8C6.3,44.5,4.9,45.9,3.1,45.9C1.4,45.9,-0,44.5,-0,42.8L-0,3.1C-0,1.4,1.4,0,3.1,0z" fill="url(#lg2)" id="shape2" transform="translate(-0.06,4.07)"/> | |
35 | + <path d="M0,0L92.1,0C92.1,0,99.2,1.5,99.2,25.8C99.2,50,92.1,49.6,92.1,49.6L0,49.6L0,0z" fill="url(#lg3)" id="shape3" transform="translate(52.75,2.18)"/> | |
36 | + <path d="M3.9,0C6,0,7.7,1.7,7.7,3.8L7.7,50.1C7.7,52.3,6,54,3.9,54C1.7,54,-0,52.3,-0,50.1L-0,3.8C-0,1.7,1.7,0,3.9,0z" fill="url(#lg3)" id="shape4" transform="translate(45.62,0)"/> | |
37 | + <g transform="translate(61.84,7.57)"> | |
38 | + <path d="M.5,-0L54.4,-0C54.7,-0,55,.4,55,.9L55,2.1C55,2.6,54.7,3,54.4,3L.5,3C.2,3,0,2.6,0,2.1L0,.9C0,.4,.2,-0,.5,-0z" fill="url(#lg3)" id="shape5" transform="translate(0,7.17)"/> | |
39 | + <path d="M.5,-0L54.4,-0C54.7,-0,55,.4,55,.9L55,2.1C55,2.6,54.7,3,54.4,3L.5,3C.2,3,0,2.6,0,2.1L0,.9C0,.4,.2,-0,.5,-0z" fill="url(#lg3)" id="shape6" transform="translate(0,0.02)"/> | |
40 | + <path d="M.5,-0L54.4,-0C54.7,-0,55,.4,55,.9L55,2.1C55,2.6,54.7,3,54.4,3L.5,3C.2,3,0,2.6,0,2.1L0,.9C0,.4,.2,-0,.5,-0z" fill="url(#lg3)" id="shape7" transform="translate(0,14.33)"/> | |
41 | + <path d="M.5,-0L54.4,-0C54.7,-0,55,.4,55,.9L55,2.1C55,2.6,54.7,3,54.4,3L.5,3C.2,3,0,2.6,0,2.1L0,.9C0,.4,.2,-0,.5,-0z" fill="url(#lg3)" id="shape8" transform="translate(0,21.48)"/> | |
42 | + <path d="M.5,-0L54.4,-0C54.7,-0,55,.4,55,.9L55,2.1C55,2.6,54.7,3,54.4,3L.5,3C.2,3,0,2.6,0,2.1L0,.9C0,.4,.2,-0,.5,-0z" fill="url(#lg3)" id="shape9" transform="translate(0,28.64)"/> | |
43 | + <path d="M.5,-0L54.4,-0C54.7,-0,55,.4,55,.9L55,2.1C55,2.6,54.7,3,54.4,3L.5,3C.2,3,0,2.6,0,2.1L0,.9C0,.4,.2,-0,.5,-0z" fill="url(#lg3)" id="shape10" transform="translate(0,35.8)"/> | |
44 | + </g> | |
45 | + </g> | |
46 | +</svg> | ... | ... |
1 | +<svg xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 134 118" xmlns="http://www.w3.org/2000/svg" width="134" height="118"> | |
2 | + <defs> | |
3 | + <linearGradient y1="0%" y2="0%" x2="0%" id="lg1" x1="100%"> | |
4 | + <stop offset="0" stop-color="#005782"/> | |
5 | + <stop offset="0.03" stop-color="#7ca3ca"/> | |
6 | + <stop offset="0.08" stop-color="#0073aa"/> | |
7 | + <stop offset="0.64" stop-color="#0071a7"/> | |
8 | + <stop offset="0.95" stop-color="#006ea3"/> | |
9 | + <stop offset="1" stop-color="#005078"/> | |
10 | + </linearGradient> | |
11 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg2" x1="0%"> | |
12 | + <stop offset="0" stop-color="#225a8f"/> | |
13 | + <stop offset="0.15" stop-color="#5385c1"/> | |
14 | + <stop offset="0.25" stop-color="#b6c4dd"/> | |
15 | + <stop offset="0.44" stop-color="#2867a4"/> | |
16 | + <stop offset="0.6" stop-color="#225b92"/> | |
17 | + <stop offset="0.8" stop-color="#1b4c7a"/> | |
18 | + <stop offset="0.97" stop-color="#184570"/> | |
19 | + <stop offset="1" stop-color="#235d95"/> | |
20 | + </linearGradient> | |
21 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg3" x1="0%"> | |
22 | + <stop offset="0" stop-color="#005782"/> | |
23 | + <stop offset="0.03" stop-color="#7ca3ca"/> | |
24 | + <stop offset="0.08" stop-color="#0073aa"/> | |
25 | + <stop offset="0.64" stop-color="#0071a7"/> | |
26 | + <stop offset="0.95" stop-color="#006ea3"/> | |
27 | + <stop offset="1" stop-color="#005078"/> | |
28 | + </linearGradient> | |
29 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg4" x1="0%"> | |
30 | + <stop offset="0" stop-color="#b6b6b6"/> | |
31 | + <stop offset="0.15" stop-color="#efefef"/> | |
32 | + <stop offset="0.25" stop-color="#f6f6f6"/> | |
33 | + <stop offset="0.44" stop-color="#d0d0d0"/> | |
34 | + <stop offset="0.6" stop-color="#b9b9b9"/> | |
35 | + <stop offset="0.8" stop-color="#9c9c9c"/> | |
36 | + <stop offset="0.97" stop-color="#8f8f8f"/> | |
37 | + <stop offset="1" stop-color="#bebebe"/> | |
38 | + </linearGradient> | |
39 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg5" x1="0%"> | |
40 | + <stop offset="0" stop-color="#2d5584"/> | |
41 | + <stop offset="0.15" stop-color="#5b80b3"/> | |
42 | + <stop offset="0.25" stop-color="#b8c2d7"/> | |
43 | + <stop offset="0.44" stop-color="#356297"/> | |
44 | + <stop offset="0.6" stop-color="#2e5686"/> | |
45 | + <stop offset="0.8" stop-color="#254870"/> | |
46 | + <stop offset="0.97" stop-color="#214166"/> | |
47 | + <stop offset="1" stop-color="#2f5989"/> | |
48 | + </linearGradient> | |
49 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg6" x1="0%"> | |
50 | + <stop offset="0" stop-color="#003753"/> | |
51 | + <stop offset="0.03" stop-color="#7c8da0"/> | |
52 | + <stop offset="0.08" stop-color="#004a6e"/> | |
53 | + <stop offset="0.64" stop-color="#00496c"/> | |
54 | + <stop offset="0.95" stop-color="#00476a"/> | |
55 | + <stop offset="1" stop-color="#00324d"/> | |
56 | + </linearGradient> | |
57 | + </defs> | |
58 | + <g transform="translate(1,1)"> | |
59 | + <path d="M0,0L70.3,0L70.3,19.2L0,19.2L0,0z" fill="url(#lg1)" id="shape1" transform="translate(38.19,91.92)"/> | |
60 | + <path d="M0,0L69.5,0L69.5,91.9L0,91.9L0,0z" fill="url(#lg2)" id="shape2" transform="translate(29.97,-0)"/> | |
61 | + <path d="M0,0L17.6,0L17.6,91.9L0,91.9L0,0z" fill="url(#lg2)" id="shape3" transform="translate(99.46,0)"/> | |
62 | + <path d="M0,0C0,0,15.3,.4,15.3,45.7C15.5,91.7,0,91.9,0,91.9L0,0z" fill="url(#lg2)" id="shape4" transform="translate(116.67,0)"/> | |
63 | + <path d="M0,0L14.2,0L14.2,19.2L0,19.2L0,0z" fill="url(#lg1)" id="shape5" transform="translate(85.25,91.92)"/> | |
64 | + <path d="M88.5,5.1L0,5.1L0,0L88.5,0L88.5,5.1z" fill="url(#lg3)" id="shape6" transform="translate(29.08,110.92)"/> | |
65 | + <path d="M0,0L19.5,0L19.5,16.4L0,16.4L0,0z" fill="url(#lg4)" id="shape7" transform="translate(0,37.78)"/> | |
66 | + <path d="M12.7,0L12.7,91.9C12.7,91.9,0,89.7,0,46.2C0,2.7,12.7,0,12.7,0z" fill="url(#lg2)" id="shape8" transform="translate(17.32,0)"/> | |
67 | + <path d="M0,0L30,0L30,19.2L0,19.2L0,0z" fill="url(#lg1)" id="shape9" transform="translate(31.53,91.92)"/> | |
68 | + <g transform="translate(29.97,1.69)"> | |
69 | + <path d="M0,0L69.5,0L69.5,2.2L0,2.2L0,0z" fill="url(#lg2)" id="shape10"/> | |
70 | + <path d="M0,0L69.5,0L69.5,2.2L0,2.2L0,0z" fill="url(#lg2)" id="shape11" transform="translate(0,4.64)"/> | |
71 | + <path d="M0,0L69.5,0L69.5,2.2L0,2.2L0,0z" fill="url(#lg2)" id="shape12" transform="translate(0,8.98)"/> | |
72 | + <path d="M0,0L69.5,0L69.5,2.2L0,2.2L0,0z" fill="url(#lg2)" id="shape13" transform="translate(0,13.68)"/> | |
73 | + <path d="M0,0L69.5,0L69.5,2.2L0,2.2L0,0z" fill="url(#lg2)" id="shape14" transform="translate(0,17.95)"/> | |
74 | + <path d="M0,0L69.5,0L69.5,2.2L0,2.2L0,0z" fill="url(#lg2)" id="shape15" transform="translate(0,22.44)"/> | |
75 | + <path d="M0,0L69.5,0L69.5,2.2L0,2.2L0,0z" fill="url(#lg2)" id="shape16" transform="translate(0,26.93)"/> | |
76 | + <path d="M0,0L69.5,0L69.5,2.2L0,2.2L0,0z" fill="url(#lg2)" id="shape17" transform="translate(0,31.42)"/> | |
77 | + <path d="M0,0L69.5,0L69.5,2.2L0,2.2L0,0z" fill="url(#lg2)" id="shape18" transform="translate(0,35.91)"/> | |
78 | + <path d="M0,0L69.5,0L69.5,2.2L0,2.2L0,0z" fill="url(#lg2)" id="shape19" transform="translate(0,40.4)"/> | |
79 | + <path d="M0,0L69.5,0L69.5,2.2L0,2.2L0,0z" fill="url(#lg2)" id="shape20" transform="translate(0,44.88)"/> | |
80 | + <path d="M0,0L69.5,0L69.5,2.2L0,2.2L0,0z" fill="url(#lg2)" id="shape21" transform="translate(0,49.37)"/> | |
81 | + <path d="M0,0L69.5,0L69.5,2.2L0,2.2L0,0z" fill="url(#lg2)" id="shape22" transform="translate(0,53.86)"/> | |
82 | + <path d="M0,0L69.5,0L69.5,2.2L0,2.2L0,0z" fill="url(#lg2)" id="shape23" transform="translate(0,58.35)"/> | |
83 | + <path d="M0,0L69.5,0L69.5,2.2L0,2.2L0,0z" fill="url(#lg2)" id="shape24" transform="translate(0,62.84)"/> | |
84 | + <path d="M0,0L69.5,0L69.5,2.2L0,2.2L0,0z" fill="url(#lg2)" id="shape25" transform="translate(0,67.33)"/> | |
85 | + <path d="M0,0L69.5,0L69.5,2.2L0,2.2L0,0z" fill="url(#lg2)" id="shape26" transform="translate(0,71.81)"/> | |
86 | + <path d="M0,0L69.5,0L69.5,2.2L0,2.2L0,0z" fill="url(#lg2)" id="shape27" transform="translate(0,76.3)"/> | |
87 | + <path d="M0,0L69.5,0L69.5,2.2L0,2.2L0,0z" fill="url(#lg2)" id="shape28" transform="translate(0,80.79)"/> | |
88 | + <path d="M0,0L69.5,0L69.5,2.2L0,2.2L0,0z" fill="url(#lg2)" id="shape29" transform="translate(0,85.28)"/> | |
89 | + </g> | |
90 | + <path d="M2.7,0L32.4,0C33.9,0,35.1,1.2,35.1,2.6L35.1,47.5C35.1,49,33.9,50.1,32.4,50.1L2.7,50.1C1.2,50.1,0,49,0,47.5L0,2.6C0,1.2,1.2,0,2.7,0z" fill="url(#lg3)" id="shape30" transform="translate(23.64,52.07)"/> | |
91 | + <path d="M0,0L1.5,0L1.5,91.9L0,91.9L0,0z" fill="url(#lg5)" id="shape31" transform="translate(115.52,0)"/> | |
92 | + <g transform="translate(23.7,23.04)"> | |
93 | + <path d="M0,0L3.5,0L3.5,13L0,13L0,0z" fill="url(#lg6)" id="shape32" transform="translate(3.78,0)"/> | |
94 | + <path d="M.3,0L3.8,0C3.9,0,4.1,.3,4.1,.7L4.1,12.3C4.1,12.6,3.9,13,3.8,13L.3,13C.1,13,0,12.6,0,12.3L0,.7C0,.3,.1,0,.3,0z" fill="url(#lg3)" id="shape33" transform="translate(1.78,0)"/> | |
95 | + <path d="M.7,0L8.4,0C8.8,0,9.1,.3,9.1,.7L9.1,12.3C9.1,12.6,8.8,13,8.4,13L.7,13C.3,13,0,12.6,0,12.3L0,.7C0,.3,.3,0,.7,0z" fill="url(#lg3)" id="shape34" transform="translate(6.93,0)"/> | |
96 | + <path d="M0,0L2,0L2,5.5L0,5.5L0,0z" fill="url(#lg2)" id="shape35" transform="translate(-0,3.72)"/> | |
97 | + </g> | |
98 | + </g> | |
99 | +</svg> | ... | ... |
1 | +<svg xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 154 100.025" xmlns="http://www.w3.org/2000/svg" width="154" height="100"> | |
2 | + <defs> | |
3 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg1" x1="0%"> | |
4 | + <stop offset="0" stop-color="#b0b0b0"/> | |
5 | + <stop offset="0.15" stop-color="#efefef"/> | |
6 | + <stop offset="0.25" stop-color="#f6f6f6"/> | |
7 | + <stop offset="0.52" stop-color="#d0d0d0"/> | |
8 | + <stop offset="0.69" stop-color="#b9b9b9"/> | |
9 | + <stop offset="0.8" stop-color="#afafaf"/> | |
10 | + <stop offset="0.92" stop-color="#a5a5a5"/> | |
11 | + <stop offset="1" stop-color="#bebebe"/> | |
12 | + </linearGradient> | |
13 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg2" x1="0%"> | |
14 | + <stop offset="0" stop-color="#8b8e91"/> | |
15 | + <stop offset="0.15" stop-color="#c2c5c8"/> | |
16 | + <stop offset="0.25" stop-color="#dedfe1"/> | |
17 | + <stop offset="0.52" stop-color="#a5a8ab"/> | |
18 | + <stop offset="0.69" stop-color="#939598"/> | |
19 | + <stop offset="0.8" stop-color="#8a8c8f"/> | |
20 | + <stop offset="0.92" stop-color="#828487"/> | |
21 | + <stop offset="1" stop-color="#96999c"/> | |
22 | + </linearGradient> | |
23 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg3" x1="0%"> | |
24 | + <stop offset="0" stop-color="#9e9797"/> | |
25 | + <stop offset="0.15" stop-color="#d9d0d0"/> | |
26 | + <stop offset="0.25" stop-color="#eae5e5"/> | |
27 | + <stop offset="0.52" stop-color="#bbb3b3"/> | |
28 | + <stop offset="0.69" stop-color="#a69f9f"/> | |
29 | + <stop offset="0.8" stop-color="#9d9696"/> | |
30 | + <stop offset="0.92" stop-color="#948e8e"/> | |
31 | + <stop offset="1" stop-color="#aaa3a3"/> | |
32 | + </linearGradient> | |
33 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg4" x1="0%"> | |
34 | + <stop offset="0" stop-color="#968e8e"/> | |
35 | + <stop offset="0.15" stop-color="#cfc5c5"/> | |
36 | + <stop offset="0.25" stop-color="#e4dfe0"/> | |
37 | + <stop offset="0.52" stop-color="#b1a8a9"/> | |
38 | + <stop offset="0.69" stop-color="#9e9596"/> | |
39 | + <stop offset="0.8" stop-color="#958c8d"/> | |
40 | + <stop offset="0.92" stop-color="#8c8485"/> | |
41 | + <stop offset="1" stop-color="#a19999"/> | |
42 | + </linearGradient> | |
43 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg5" x1="0%"> | |
44 | + <stop offset="0" stop-color="#817a7a"/> | |
45 | + <stop offset="0.15" stop-color="#b5adad"/> | |
46 | + <stop offset="0.25" stop-color="#d8d4d4"/> | |
47 | + <stop offset="0.52" stop-color="#999191"/> | |
48 | + <stop offset="0.69" stop-color="#888080"/> | |
49 | + <stop offset="0.8" stop-color="#807979"/> | |
50 | + <stop offset="0.92" stop-color="#787272"/> | |
51 | + <stop offset="1" stop-color="#8b8383"/> | |
52 | + </linearGradient> | |
53 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg6" x1="0%"> | |
54 | + <stop offset="0" stop-color="#696363"/> | |
55 | + <stop offset="0.15" stop-color="#999292"/> | |
56 | + <stop offset="0.25" stop-color="#ccc9c9"/> | |
57 | + <stop offset="0.52" stop-color="#7c7575"/> | |
58 | + <stop offset="0.69" stop-color="#6e6868"/> | |
59 | + <stop offset="0.8" stop-color="#686262"/> | |
60 | + <stop offset="0.92" stop-color="#625c5c"/> | |
61 | + <stop offset="1" stop-color="#716a6a"/> | |
62 | + </linearGradient> | |
63 | + </defs> | |
64 | + <g transform="translate(1,1.03)"> | |
65 | + <path d="M0,0L29.5,0L29.5,14.7L0,14.7L0,0z" fill="url(#lg1)" id="shape1" transform="translate(-0,44.09)"/> | |
66 | + <path d="M0,0L5.2,0L5.2,18.8L0,18.8L0,0z" fill="url(#lg2)" id="shape2" transform="translate(24.3,42.07)"/> | |
67 | + <path d="M1.7,0L9.5,0L9.5,71L1.7,71C.8,71,0,70.2,0,69.3L0,1.7C0,.8,.8,0,1.7,0z" fill="url(#lg3)" id="shape3" transform="translate(28.89,15.95)"/> | |
68 | + <path d="M0,0L76,0L76,73.8L0,73.8L0,0z" fill="url(#lg4)" id="shape4" transform="translate(42.54,14.59)"/> | |
69 | + <path d="M0,0L27.1,0C27.1,0,33.8,0,34,36.9C34,73.7,27.1,73.8,27.1,73.8L0,73.8L0,0z" fill="url(#lg4)" id="shape5" transform="translate(118.02,14.59)"/> | |
70 | + <path d="M0,0L1.3,0L1.3,73.8L0,73.8L0,0z" fill="url(#lg5)" id="shape6" transform="translate(117.75,14.59)"/> | |
71 | + <path d="M.7,0L3.7,0C4.2,0,4.5,.3,4.5,.8L4.5,77C4.5,77.4,4.2,77.8,3.7,77.8L.7,77.8C.3,77.8,-0,77.4,-0,77L-0,.8C-0,.3,.3,0,.7,0z" fill="url(#lg6)" id="shape7" transform="matrix(-1,0,0,1,42.7,12.6)"/> | |
72 | + <path d="M1,0C2.3,0,2.7,.3,2.7,.8L2.7,76.8C2.7,77.2,2.3,77.6,1.7,77.6C.4,77.6,-0,77.2,-0,76.8L-0,.8C-0,.3,.4,0,1,0z" fill="url(#lg4)" id="shape8" transform="matrix(-1,0,0,1,40.9,12.7)"/> | |
73 | + <path d="M0,0L69.3,0L69.3,15.9L0,15.9L0,0z" fill="#a59c9d" id="shape9" transform="translate(45.8,77.21)"/> | |
74 | + <path d="M0,0L69.3,0L69.3,5.2L0,5.2L0,0z" fill="#c7c0c1" id="shape10" transform="translate(45.8,92.83)"/> | |
75 | + <g transform="translate(50.8,31.13)"> | |
76 | + <path d="M.6,-0L65.2,-0C65.6,-0,65.9,.3,65.9,.8C65.9,2.1,65.6,2.5,65.2,2.5L.6,2.5C.3,2.5,0,2.1,0,1.7C0,.3,.3,-0,.6,-0z" fill="url(#lg4)" id="shape11" transform="translate(0,-0)"/> | |
77 | + <path d="M.6,-0L65.2,-0C65.6,-0,65.9,.3,65.9,.8C65.9,2.1,65.6,2.5,65.2,2.5L.6,2.5C.3,2.5,0,2.1,0,1.7C0,.3,.3,-0,.6,-0z" fill="url(#lg4)" id="shape12" transform="translate(0,7.25)"/> | |
78 | + <path d="M.6,-0L65.2,-0C65.6,-0,65.9,.3,65.9,.8C65.9,2.1,65.6,2.5,65.2,2.5L.6,2.5C.3,2.5,0,2.1,0,1.7C0,.3,.3,-0,.6,-0z" fill="url(#lg4)" id="shape13" transform="translate(0,14.5)"/> | |
79 | + <path d="M.6,-0L65.2,-0C65.6,-0,65.9,.3,65.9,.8C65.9,2.1,65.6,2.5,65.2,2.5L.6,2.5C.3,2.5,0,2.1,0,1.7C0,.3,.3,-0,.6,-0z" fill="url(#lg4)" id="shape14" transform="translate(0,21.75)"/> | |
80 | + <path d="M.6,-0L65.2,-0C65.6,-0,65.9,.3,65.9,.8C65.9,2.1,65.6,2.5,65.2,2.5L.6,2.5C.3,2.5,0,2.1,0,1.7C0,.3,.3,-0,.6,-0z" fill="url(#lg4)" id="shape15" transform="translate(0,29)"/> | |
81 | + <path d="M.6,-0L65.2,-0C65.6,-0,65.9,.3,65.9,.8C65.9,2.1,65.6,2.5,65.2,2.5L.6,2.5C.3,2.5,0,2.1,0,1.7C0,.3,.3,-0,.6,-0z" fill="url(#lg4)" id="shape16" transform="translate(0,36.25)"/> | |
82 | + </g> | |
83 | + <path d="M0,0L38,0L33.9,12.9L4.2,12.9L0,0z" fill="#c7c0c1" id="shape17" transform="translate(43.33,1.75)"/> | |
84 | + <path d="M.4,0L39.3,0C39.5,0,39.7,.2,39.7,.4L39.7,2.3C39.7,2.5,39.5,2.6,39.3,2.6L.4,2.6C.2,2.6,0,2.5,0,2.3L0,.4C0,.2,.2,0,.4,0z" fill="#a59c9d" id="shape18" transform="translate(42.48,-0.03)"/> | |
85 | + </g> | |
86 | +</svg> | ... | ... |
1 | +<svg xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 154 86" xmlns="http://www.w3.org/2000/svg" width="154" height="86"> | |
2 | + <defs> | |
3 | + <linearGradient y1="0%" y2="0%" x2="100%" id="lg1" x1="0%"> | |
4 | + <stop offset="0" stop-color="#6997b7"/> | |
5 | + <stop offset="0.15" stop-color="#afd3f0"/> | |
6 | + <stop offset="0.25" stop-color="#b6d7f1"/> | |
7 | + <stop offset="0.52" stop-color="#77aace"/> | |
8 | + <stop offset="0.69" stop-color="#6997b7"/> | |
9 | + <stop offset="0.8" stop-color="#638fad"/> | |
10 | + <stop offset="0.92" stop-color="#5d86a3"/> | |
11 | + </linearGradient> | |
12 | + <linearGradient y1="0%" y2="0%" x2="100%" id="lg2" x1="0%"> | |
13 | + <stop offset="0" stop-color="#226ba1"/> | |
14 | + <stop offset="0.15" stop-color="#559cdc"/> | |
15 | + <stop offset="0.25" stop-color="#b6cdec"/> | |
16 | + <stop offset="0.52" stop-color="#2a7fbf"/> | |
17 | + <stop offset="0.69" stop-color="#2571aa"/> | |
18 | + <stop offset="0.8" stop-color="#226aa0"/> | |
19 | + <stop offset="0.92" stop-color="#1f6497"/> | |
20 | + <stop offset="1" stop-color="#2673ae"/> | |
21 | + </linearGradient> | |
22 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg3" x1="0%"> | |
23 | + <stop offset="0" stop-color="#6997b7"/> | |
24 | + <stop offset="0.15" stop-color="#afd3f0"/> | |
25 | + <stop offset="0.25" stop-color="#b6d7f1"/> | |
26 | + <stop offset="0.52" stop-color="#77aace"/> | |
27 | + <stop offset="0.69" stop-color="#6997b7"/> | |
28 | + <stop offset="0.8" stop-color="#638fad"/> | |
29 | + <stop offset="0.92" stop-color="#5d86a3"/> | |
30 | + </linearGradient> | |
31 | + <linearGradient y1="0%" y2="0%" x2="0%" id="lg4" x1="100%"> | |
32 | + <stop offset="0" stop-color="#6997b7"/> | |
33 | + <stop offset="0.15" stop-color="#afd3f0"/> | |
34 | + <stop offset="0.25" stop-color="#b6d7f1"/> | |
35 | + <stop offset="0.52" stop-color="#77aace"/> | |
36 | + <stop offset="0.69" stop-color="#6997b7"/> | |
37 | + <stop offset="0.8" stop-color="#638fad"/> | |
38 | + <stop offset="0.92" stop-color="#5d86a3"/> | |
39 | + </linearGradient> | |
40 | + <linearGradient y1="0%" y2="0%" x2="0%" id="lg5" x1="100%"> | |
41 | + <stop offset="0" stop-color="#226ba1"/> | |
42 | + <stop offset="0.15" stop-color="#559cdc"/> | |
43 | + <stop offset="0.25" stop-color="#b6cdec"/> | |
44 | + <stop offset="0.52" stop-color="#2a7fbf"/> | |
45 | + <stop offset="0.69" stop-color="#2571aa"/> | |
46 | + <stop offset="0.8" stop-color="#226aa0"/> | |
47 | + <stop offset="0.92" stop-color="#1f6497"/> | |
48 | + <stop offset="1" stop-color="#2673ae"/> | |
49 | + </linearGradient> | |
50 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg6" x1="0%"> | |
51 | + <stop offset="0" stop-color="#bdbdbd"/> | |
52 | + <stop offset="0.15" stop-color="#ffffff"/> | |
53 | + <stop offset="0.25" stop-color="#ffffff"/> | |
54 | + <stop offset="0.52" stop-color="#dfdfdf"/> | |
55 | + <stop offset="0.69" stop-color="#c7c7c7"/> | |
56 | + <stop offset="0.8" stop-color="#bcbcbc"/> | |
57 | + <stop offset="0.92" stop-color="#b1b1b1"/> | |
58 | + <stop offset="1" stop-color="#cbcbcb"/> | |
59 | + </linearGradient> | |
60 | + </defs> | |
61 | + <g transform="translate(1.02,1)"> | |
62 | + <g transform="matrix(0,-1,1,0,0.1,84)"> | |
63 | + <path d="M0,78.8L0,0L79.7,0L79.7,78.8L0,78.8z" fill="url(#lg1)" id="shape1" transform="matrix(-1,0,0,1,81.9,31.8)"/> | |
64 | + <path d="M0,42L0,9C0,9,.6,5.1,5.1,4C5.1,4,20.7,0,39.9,0C58.9,0,74.7,4,74.7,4C79.8,5.2,79.8,9,79.8,9L79.8,42L0,42z" fill="url(#lg1)" id="shape2" transform="matrix(-1,0,0,1,81.9,-0.1)"/> | |
65 | + <path d="M0,1.1L0,0L79.7,0L79.7,1.1L0,1.1z" fill="url(#lg2)" id="shape3" transform="matrix(-1,0,0,1,81.9,31.1)"/> | |
66 | + <g transform="matrix(0,1,-1,0,76.4,32.2)"> | |
67 | + <path d="M.7,-0L71.8,-0C72.2,-0,72.5,.2,72.5,.5C72.5,1.4,72.2,1.7,71.8,1.7L.7,1.7C.3,1.7,0,1.4,0,1.1C0,.2,.3,-0,.7,-0z" fill="url(#lg3)" id="shape4" transform="matrix(-1,0,0,1,72.5,33.6)"/> | |
68 | + <path d="M.7,-0L71.8,-0C72.2,-0,72.5,.2,72.5,.5C72.5,1.4,72.2,1.7,71.8,1.7L.7,1.7C.3,1.7,0,1.4,0,1.1C0,.2,.3,-0,.7,-0z" fill="url(#lg3)" id="shape5" transform="matrix(-1,0,0,1,72.5,39.2)"/> | |
69 | + <path d="M.7,-0L71.8,-0C72.2,-0,72.5,.2,72.5,.5C72.5,1.4,72.2,1.7,71.8,1.7L.7,1.7C.3,1.7,0,1.4,0,1.1C0,.2,.3,-0,.7,-0z" fill="url(#lg3)" id="shape6" transform="matrix(-1,0,0,1,72.5,44.8)"/> | |
70 | + <path d="M.7,-0L71.8,-0C72.2,-0,72.5,.2,72.5,.5C72.5,1.4,72.2,1.7,71.8,1.7L.7,1.7C.3,1.7,0,1.4,0,1.1C0,.2,.3,-0,.7,-0z" fill="url(#lg3)" id="shape7" transform="matrix(-1,0,0,1,72.5,50.4)"/> | |
71 | + <path d="M.7,-0L71.8,-0C72.2,-0,72.5,.2,72.5,.5C72.5,1.4,72.2,1.7,71.8,1.7L.7,1.7C.3,1.7,0,1.4,0,1.1C0,.2,.3,-0,.7,-0z" fill="url(#lg3)" id="shape8" transform="matrix(-1,0,0,1,72.5,56.3)"/> | |
72 | + <path d="M.7,-0L71.8,-0C72.2,-0,72.5,.2,72.5,.5C72.5,1.4,72.2,1.7,71.8,1.7L.7,1.7C.3,1.7,0,1.4,0,1.1C0,.2,.3,-0,.7,-0z" fill="url(#lg3)" id="shape9" transform="matrix(-1,0,0,1,72.5,61.8)"/> | |
73 | + <path d="M.7,-0L71.8,-0C72.2,-0,72.5,.2,72.5,.5C72.5,1.4,72.2,1.7,71.8,1.7L.7,1.7C.3,1.7,0,1.4,0,1.1C0,.2,.3,-0,.7,-0z" fill="url(#lg3)" id="shape10" transform="matrix(-1,0,0,1,72.5,28)"/> | |
74 | + <path d="M.7,-0L71.8,-0C72.2,-0,72.5,.2,72.5,.5C72.5,1.4,72.2,1.7,71.8,1.7L.7,1.7C.3,1.7,0,1.4,0,1.1C0,.2,.3,-0,.7,-0z" fill="url(#lg3)" id="shape11" transform="matrix(-1,0,0,1,72.5,67.2)"/> | |
75 | + <path d="M.7,-0L71.8,-0C72.2,-0,72.5,.2,72.5,.5C72.5,1.4,72.2,1.7,71.8,1.7L.7,1.7C.3,1.7,0,1.4,0,1.1C0,.2,.3,-0,.7,-0z" fill="url(#lg3)" id="shape12" transform="matrix(-1,0,0,1,72.5,5.6)"/> | |
76 | + <path d="M.7,-0L71.8,-0C72.2,-0,72.5,.2,72.5,.5C72.5,1.4,72.2,1.7,71.8,1.7L.7,1.7C.3,1.7,0,1.4,0,1.1C0,.2,.3,-0,.7,-0z" fill="url(#lg3)" id="shape13" transform="matrix(-1,0,0,1,72.5,11.2)"/> | |
77 | + <path d="M.7,-0L71.8,-0C72.2,-0,72.5,.2,72.5,.5C72.5,1.4,72.2,1.7,71.8,1.7L.7,1.7C.3,1.7,0,1.4,0,1.1C0,.2,.3,-0,.7,-0z" fill="url(#lg3)" id="shape14" transform="matrix(-1,0,0,1,72.5,16.8)"/> | |
78 | + <path d="M.7,-0L71.8,-0C72.2,-0,72.5,.2,72.5,.5C72.5,1.4,72.2,1.7,71.8,1.7L.7,1.7C.3,1.7,0,1.4,0,1.1C0,.2,.3,-0,.7,-0z" fill="url(#lg3)" id="shape15" transform="matrix(-1,0,0,1,72.5,22.4)"/> | |
79 | + <path d="M.7,-0L71.8,-0C72.2,-0,72.5,.2,72.5,.5C72.5,1.4,72.2,1.7,71.8,1.7L.7,1.7C.3,1.7,0,1.4,0,1.1C0,.2,.3,-0,.7,-0z" fill="url(#lg3)" id="shape16" transform="matrix(-1,0,0,1,72.5,0)"/> | |
80 | + </g> | |
81 | + <path d="M75.4,0C75.4,0,73,5.4,64.8,9.8C64.8,9.8,10.6,9.8,10.6,9.8C1.8,4.8,0,0,0,0L75.4,0z" fill="url(#lg4)" id="shape17" transform="translate(4.32,113.93)"/> | |
82 | + <path d="M84,1.7L84,3.1L0,3.1L0,1.7C0,.8,.4,-0,.9,-0L83.1,-0C83.6,-0,84,.8,84,1.7z" fill="url(#lg5)" id="shape18" transform="translate(0,110)"/> | |
83 | + <path d="M84,1C84,2.4,83.6,2.9,83.2,2.9L.9,2.9C.4,2.9,0,2.4,0,1.8C0,.4,.4,-0,.9,-0L83.2,-0C83.6,-0,84,.4,84,1z" fill="url(#lg4)" id="shape19" transform="translate(0,111.51)"/> | |
84 | + </g> | |
85 | + <path d="M0,0L7.6,11.3L7.6,43.6L0,54.9L0,0z" fill="url(#lg3)" id="shape20" transform="translate(123.56,14.54)"/> | |
86 | + <path d="M0,0L15.2,0L15.2,14.5L0,14.5L0,0z" fill="url(#lg6)" id="shape21" transform="translate(136.83,34.76)"/> | |
87 | + <path d="M0,0L6.3,0L6.3,31.6L0,31.6L0,0z" fill="url(#lg6)" id="shape22" transform="translate(131.19,26.21)"/> | |
88 | + </g> | |
89 | +</svg> | ... | ... |
1 | +<svg xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 172 92" xmlns="http://www.w3.org/2000/svg" width="172" height="92"> | |
2 | + <defs> | |
3 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg1" x1="0%"> | |
4 | + <stop offset="0" stop-color="#545455"/> | |
5 | + <stop offset="0.15" stop-color="#878788"/> | |
6 | + <stop offset="0.25" stop-color="#a4a4a5"/> | |
7 | + <stop offset="0.44" stop-color="#767677"/> | |
8 | + <stop offset="0.6" stop-color="#5c5c5d"/> | |
9 | + <stop offset="0.8" stop-color="#525252"/> | |
10 | + <stop offset="0.97" stop-color="#484849"/> | |
11 | + <stop offset="1" stop-color="#585858"/> | |
12 | + </linearGradient> | |
13 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg2" x1="0%"> | |
14 | + <stop offset="0" stop-color="#3d3b3b"/> | |
15 | + <stop offset="0.03" stop-color="#908f8f"/> | |
16 | + <stop offset="0.08" stop-color="#514f4f"/> | |
17 | + <stop offset="0.64" stop-color="#504e4e"/> | |
18 | + <stop offset="0.95" stop-color="#4e4c4c"/> | |
19 | + <stop offset="1" stop-color="#383636"/> | |
20 | + </linearGradient> | |
21 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg3" x1="0%"> | |
22 | + <stop offset="0" stop-color="#c4b500"/> | |
23 | + <stop offset="0.15" stop-color="#ffed45"/> | |
24 | + <stop offset="0.25" stop-color="#fff5b3"/> | |
25 | + <stop offset="0.44" stop-color="#dfcf00"/> | |
26 | + <stop offset="0.6" stop-color="#c7b800"/> | |
27 | + <stop offset="0.8" stop-color="#a89b00"/> | |
28 | + <stop offset="0.97" stop-color="#998d00"/> | |
29 | + <stop offset="1" stop-color="#cbbc00"/> | |
30 | + </linearGradient> | |
31 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg4" x1="0%"> | |
32 | + <stop offset="0" stop-color="#baa614"/> | |
33 | + <stop offset="0.15" stop-color="#f4dc4c"/> | |
34 | + <stop offset="0.25" stop-color="#f8ebb4"/> | |
35 | + <stop offset="0.44" stop-color="#d5be18"/> | |
36 | + <stop offset="0.6" stop-color="#bda914"/> | |
37 | + <stop offset="0.8" stop-color="#a08e0f"/> | |
38 | + <stop offset="0.97" stop-color="#92820d"/> | |
39 | + <stop offset="1" stop-color="#c2ad15"/> | |
40 | + </linearGradient> | |
41 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg5" x1="0%"> | |
42 | + <stop offset="0" stop-color="#5c5f67"/> | |
43 | + <stop offset="0.15" stop-color="#878a93"/> | |
44 | + <stop offset="0.25" stop-color="#c5c6c9"/> | |
45 | + <stop offset="0.44" stop-color="#6a6d76"/> | |
46 | + <stop offset="0.6" stop-color="#5e6169"/> | |
47 | + <stop offset="0.8" stop-color="#4e5157"/> | |
48 | + <stop offset="0.97" stop-color="#47494f"/> | |
49 | + <stop offset="1" stop-color="#60636b"/> | |
50 | + </linearGradient> | |
51 | + </defs> | |
52 | + <g transform="translate(1,1)"> | |
53 | + <path d="M0,0L73.2,0L73.2,55.6L0,55.6L0,0z" fill="url(#lg1)" id="shape1" transform="translate(64.9,28.24)"/> | |
54 | + <path d="M1.8,0L30.5,0C31.5,0,32.3,.8,32.3,1.8L32.3,61.2C32.3,62.2,31.5,63,30.5,63L1.8,63C.8,63,0,62.2,0,61.2L0,1.8C0,.8,.8,0,1.8,0z" fill="url(#lg2)" id="shape2" transform="translate(137.73,24.53)"/> | |
55 | + <path d="M0,0L43.9,0L43.9,28.2L0,28.2L0,0z" fill="url(#lg2)" id="shape3" transform="translate(72.07,0)"/> | |
56 | + <path d="M0,0L43.9,0L43.9,1.6L0,1.6L0,0z" fill="#3e3938" id="shape4" transform="translate(72.07,5.85)"/> | |
57 | + <path d="M1.8,0L39,0C40,0,40.8,.8,40.8,1.8L40.8,66.8C40.8,67.8,40,68.6,39,68.6L1.8,68.6C.8,68.6,0,67.8,0,66.8L0,1.8C0,.8,.8,0,1.8,0z" fill="url(#lg2)" id="shape5" transform="translate(24.11,21.38)"/> | |
58 | + <path d="M0,0L20.1,0L20.1,12L0,12L0,0z" fill="url(#lg3)" id="shape6" transform="translate(-0,39.83)"/> | |
59 | + <path fill-opacity="0.22" d="M0,0L27.3,0L27.3,34.6L0,34.6L0,0z" fill="#ffffff" id="shape7" transform="translate(83.9,37.24)"/> | |
60 | + <path d="M0,0L5.2,0L5.2,15.4L0,15.4L0,0z" fill="url(#lg4)" id="shape8" transform="translate(16.27,38.13)"/> | |
61 | + <path d="M0,0L6,0L6,25.4L0,25.4L0,0z" fill="url(#lg5)" id="shape9" transform="translate(18.44,33.12)"/> | |
62 | + </g> | |
63 | +</svg> | ... | ... |
1 | +<svg xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 154 124" xmlns="http://www.w3.org/2000/svg" width="154" height="124"> | |
2 | + <defs> | |
3 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg1" x1="0%"> | |
4 | + <stop offset="0" stop-color="#a8a8a8"/> | |
5 | + <stop offset="0.01" stop-color="#f2f2f2"/> | |
6 | + <stop offset="0.05" stop-color="#dbdbdb"/> | |
7 | + <stop offset="0.9" stop-color="#d8d8d8"/> | |
8 | + <stop offset="0.95" stop-color="#d3d3d3"/> | |
9 | + <stop offset="1" stop-color="#9c9c9c"/> | |
10 | + </linearGradient> | |
11 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg2" x1="0%"> | |
12 | + <stop offset="0" stop-color="#909191"/> | |
13 | + <stop offset="0.03" stop-color="#d8d9d9"/> | |
14 | + <stop offset="0.08" stop-color="#bdbebe"/> | |
15 | + <stop offset="0.64" stop-color="#bababa"/> | |
16 | + <stop offset="0.95" stop-color="#b5b6b6"/> | |
17 | + <stop offset="1" stop-color="#868787"/> | |
18 | + </linearGradient> | |
19 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg3" x1="0%"> | |
20 | + <stop offset="0" stop-color="#9b9b9c"/> | |
21 | + <stop offset="0.01" stop-color="#e4e4e4"/> | |
22 | + <stop offset="0.05" stop-color="#cbcbcb"/> | |
23 | + <stop offset="0.9" stop-color="#c7c7c8"/> | |
24 | + <stop offset="0.95" stop-color="#c3c3c4"/> | |
25 | + <stop offset="1" stop-color="#909091"/> | |
26 | + </linearGradient> | |
27 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg4" x1="0%"> | |
28 | + <stop offset="0" stop-color="#9b9b9c"/> | |
29 | + <stop offset="0.03" stop-color="#e4e4e4"/> | |
30 | + <stop offset="0.08" stop-color="#cbcbcb"/> | |
31 | + <stop offset="0.64" stop-color="#c7c7c8"/> | |
32 | + <stop offset="0.95" stop-color="#c3c3c4"/> | |
33 | + <stop offset="1" stop-color="#909091"/> | |
34 | + </linearGradient> | |
35 | + <linearGradient y1="0%" y2="0%" x2="0%" id="lg5" x1="100%"> | |
36 | + <stop offset="0" stop-color="#c4c4c4"/> | |
37 | + <stop offset="0.15" stop-color="#ffffff"/> | |
38 | + <stop offset="0.25" stop-color="#ffffff"/> | |
39 | + <stop offset="0.44" stop-color="#dfdfdf"/> | |
40 | + <stop offset="0.6" stop-color="#c7c7c7"/> | |
41 | + <stop offset="0.8" stop-color="#a8a8a8"/> | |
42 | + <stop offset="0.97" stop-color="#999999"/> | |
43 | + <stop offset="1" stop-color="#cbcbcb"/> | |
44 | + </linearGradient> | |
45 | + <linearGradient y1="0%" y2="0%" x2="0%" id="lg6" x1="100%"> | |
46 | + <stop offset="0" stop-color="#b6b6b6"/> | |
47 | + <stop offset="0.15" stop-color="#efefef"/> | |
48 | + <stop offset="0.25" stop-color="#f6f6f6"/> | |
49 | + <stop offset="0.44" stop-color="#d0d0d0"/> | |
50 | + <stop offset="0.6" stop-color="#b9b9b9"/> | |
51 | + <stop offset="0.8" stop-color="#9c9c9c"/> | |
52 | + <stop offset="0.97" stop-color="#8f8f8f"/> | |
53 | + <stop offset="1" stop-color="#bebebe"/> | |
54 | + </linearGradient> | |
55 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg7" x1="0%"> | |
56 | + <stop offset="0" stop-color="#c4c4c4"/> | |
57 | + <stop offset="0.15" stop-color="#ffffff"/> | |
58 | + <stop offset="0.25" stop-color="#ffffff"/> | |
59 | + <stop offset="0.44" stop-color="#dfdfdf"/> | |
60 | + <stop offset="0.6" stop-color="#c7c7c7"/> | |
61 | + <stop offset="0.8" stop-color="#a8a8a8"/> | |
62 | + <stop offset="0.97" stop-color="#999999"/> | |
63 | + <stop offset="1" stop-color="#cbcbcb"/> | |
64 | + </linearGradient> | |
65 | + </defs> | |
66 | + <g transform="translate(1,1)"> | |
67 | + <path d="M0,0L8.5,0L8.5,89.7L0,89.7L0,0z" fill="url(#lg1)" id="shape1" transform="translate(28.73,32.26)"/> | |
68 | + <path d="M0,0L87.4,0L87.4,80.3L0,80.3L0,0z" fill="url(#lg2)" id="shape2" transform="translate(37.49,36.99)"/> | |
69 | + <path d="M0,0L8.5,0L8.5,83.9L0,83.9L0,0z" fill="url(#lg1)" id="shape3" transform="translate(124.89,35.17)"/> | |
70 | + <path d="M0,0L18.5,0L18.5,80.3L0,80.3L0,0z" fill="url(#lg3)" id="shape4" transform="translate(133.41,36.99)"/> | |
71 | + <path d="M0,0L27.4,0L27.4,22.6L0,22.6L0,0z" fill="url(#lg4)" id="shape5" transform="translate(93,14.55)"/> | |
72 | + <path d="M0,0L27.4,0L27.4,1.5L0,1.5L0,0z" fill="#eeeeee" id="shape6" transform="translate(93,19.4)"/> | |
73 | + <path d="M0,0L20.7,0L20.7,11.6L0,11.6L0,0z" fill="url(#lg5)" id="shape7" transform="translate(96.35,2.91)"/> | |
74 | + <path d="M0,0L24.3,0L24.3,2.9L0,2.9L0,0z" fill="url(#lg6)" id="shape8" transform="translate(94.52,-0)"/> | |
75 | + <path d="M0,0L16.2,0L16.2,9.7L0,9.7L0,0z" fill="url(#lg5)" id="shape9" transform="translate(134.33,27.23)"/> | |
76 | + <path d="M0,0L19.1,0L19.1,2.4L0,2.4L0,0z" fill="url(#lg6)" id="shape10" transform="translate(132.9,24.8)"/> | |
77 | + <path d="M0,0L3.4,0L3.4,81.5L0,81.5L0,0z" fill="url(#lg3)" id="shape11" transform="translate(25.32,36.62)"/> | |
78 | + <path d="M0,0L25.3,0L25.3,11.2L0,11.2L0,0z" fill="url(#lg7)" id="shape12" transform="translate(0,64.76)"/> | |
79 | + <g transform="translate(37.49,39.17)"> | |
80 | + <path d="M0,0L87.4,0L87.4,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape13" transform="translate(0,-0)"/> | |
81 | + <path d="M0,0L87.4,0L87.4,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape14" transform="translate(0,3.93)"/> | |
82 | + <path d="M0,0L87.4,0L87.4,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape15" transform="translate(0,7.85)"/> | |
83 | + <path d="M0,0L87.4,0L87.4,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape16" transform="translate(0,11.78)"/> | |
84 | + <path d="M0,0L87.4,0L87.4,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape17" transform="translate(0,15.43)"/> | |
85 | + <path d="M0,0L87.4,0L87.4,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape18" transform="translate(0,19.77)"/> | |
86 | + <path d="M0,0L87.4,0L87.4,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape19" transform="translate(0,23.55)"/> | |
87 | + <path d="M0,0L87.4,0L87.4,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape20" transform="translate(0,27.48)"/> | |
88 | + <path d="M0,0L87.4,0L87.4,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape21" transform="translate(0,31.4)"/> | |
89 | + <path d="M0,0L87.4,0L87.4,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape22" transform="translate(0,35.33)"/> | |
90 | + <path d="M0,0L87.4,0L87.4,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape23" transform="translate(0,39.25)"/> | |
91 | + <path d="M0,0L87.4,0L87.4,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape24" transform="translate(0,43.18)"/> | |
92 | + <path d="M0,0L87.4,0L87.4,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape25" transform="translate(0,47.1)"/> | |
93 | + <path d="M0,0L87.4,0L87.4,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape26" transform="translate(0,51.03)"/> | |
94 | + <path d="M0,0L87.4,0L87.4,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape27" transform="translate(0,54.96)"/> | |
95 | + <path d="M0,0L87.4,0L87.4,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape28" transform="translate(0,58.88)"/> | |
96 | + <path d="M0,0L87.4,0L87.4,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape29" transform="translate(0,62.81)"/> | |
97 | + <path d="M0,0L87.4,0L87.4,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape30" transform="translate(0,66.73)"/> | |
98 | + <path d="M0,0L87.4,0L87.4,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape31" transform="translate(0,70.66)"/> | |
99 | + <path d="M0,0L87.4,0L87.4,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape32" transform="translate(0,74.58)"/> | |
100 | + </g> | |
101 | + <g transform="translate(138.72,39.47)"> | |
102 | + <path d="M0,0L13.1,0L13.1,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape33" transform="translate(0,-0)"/> | |
103 | + <path d="M0,0L13.1,0L13.1,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape34" transform="translate(0,5.74)"/> | |
104 | + <path d="M0,0L13.1,0L13.1,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape35" transform="translate(0,11.47)"/> | |
105 | + <path d="M0,0L13.1,0L13.1,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape36" transform="translate(0,17.21)"/> | |
106 | + <path d="M0,0L13.1,0L13.1,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape37" transform="translate(0,22.95)"/> | |
107 | + <path d="M0,0L13.1,0L13.1,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape38" transform="translate(0,28.69)"/> | |
108 | + <path d="M0,0L13.1,0L13.1,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape39" transform="translate(0,34.42)"/> | |
109 | + <path d="M0,0L13.1,0L13.1,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape40" transform="translate(0,40.16)"/> | |
110 | + <path d="M0,0L13.1,0L13.1,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape41" transform="translate(0,45.9)"/> | |
111 | + <path d="M0,0L13.1,0L13.1,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape42" transform="translate(0,51.63)"/> | |
112 | + <path d="M0,0L13.1,0L13.1,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape43" transform="translate(0,57.37)"/> | |
113 | + <path d="M0,0L13.1,0L13.1,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape44" transform="translate(0,63.11)"/> | |
114 | + <path d="M0,0L13.1,0L13.1,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape45" transform="translate(0,68.85)"/> | |
115 | + <path d="M0,0L13.1,0L13.1,1.2L0,1.2L0,0z" fill="url(#lg7)" id="shape46" transform="translate(0,74.58)"/> | |
116 | + </g> | |
117 | + </g> | |
118 | +</svg> | ... | ... |
1 | +<svg xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 172 94" xmlns="http://www.w3.org/2000/svg" width="172" height="94"> | |
2 | + <defs> | |
3 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg1" x1="0%"> | |
4 | + <stop offset="0" stop-color="#bdbdbd"/> | |
5 | + <stop offset="0.15" stop-color="#ffffff"/> | |
6 | + <stop offset="0.25" stop-color="#ffffff"/> | |
7 | + <stop offset="0.52" stop-color="#dfdfdf"/> | |
8 | + <stop offset="0.69" stop-color="#c7c7c7"/> | |
9 | + <stop offset="0.8" stop-color="#bcbcbc"/> | |
10 | + <stop offset="0.92" stop-color="#b1b1b1"/> | |
11 | + <stop offset="1" stop-color="#cbcbcb"/> | |
12 | + </linearGradient> | |
13 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg2" x1="0%"> | |
14 | + <stop offset="0" stop-color="#b3a593"/> | |
15 | + <stop offset="0.03" stop-color="#fdeeda"/> | |
16 | + <stop offset="0.08" stop-color="#e9d7bf"/> | |
17 | + <stop offset="0.64" stop-color="#e5d3bc"/> | |
18 | + <stop offset="0.95" stop-color="#e0ceb8"/> | |
19 | + <stop offset="1" stop-color="#a69988"/> | |
20 | + </linearGradient> | |
21 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg3" x1="0%"> | |
22 | + <stop offset="0" stop-color="#3d3b3b"/> | |
23 | + <stop offset="0.03" stop-color="#908f8f"/> | |
24 | + <stop offset="0.08" stop-color="#514f4f"/> | |
25 | + <stop offset="0.64" stop-color="#504e4e"/> | |
26 | + <stop offset="0.95" stop-color="#4e4c4c"/> | |
27 | + <stop offset="1" stop-color="#383636"/> | |
28 | + </linearGradient> | |
29 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg4" x1="0%"> | |
30 | + <stop offset="0" stop-color="#b0b0b0"/> | |
31 | + <stop offset="0.15" stop-color="#efefef"/> | |
32 | + <stop offset="0.25" stop-color="#f6f6f6"/> | |
33 | + <stop offset="0.52" stop-color="#d0d0d0"/> | |
34 | + <stop offset="0.69" stop-color="#b9b9b9"/> | |
35 | + <stop offset="0.8" stop-color="#afafaf"/> | |
36 | + <stop offset="0.92" stop-color="#a5a5a5"/> | |
37 | + <stop offset="1" stop-color="#bebebe"/> | |
38 | + </linearGradient> | |
39 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg5" x1="0%"> | |
40 | + <stop offset="0" stop-color="#bcad9a"/> | |
41 | + <stop offset="0.15" stop-color="#fdead3"/> | |
42 | + <stop offset="0.25" stop-color="#fef3e7"/> | |
43 | + <stop offset="0.52" stop-color="#deccb6"/> | |
44 | + <stop offset="0.69" stop-color="#c5b5a2"/> | |
45 | + <stop offset="0.8" stop-color="#baab98"/> | |
46 | + <stop offset="0.92" stop-color="#b0a190"/> | |
47 | + <stop offset="1" stop-color="#cabaa5"/> | |
48 | + </linearGradient> | |
49 | + </defs> | |
50 | + <g transform="translate(1,1)"> | |
51 | + <path d="M35.2,0L0,0L0,14.5L35.2,14.5L35.2,0z" fill="url(#lg1)" id="shape1" transform="translate(0,38.77)"/> | |
52 | + <path d="M5.4,0L0,0L0,17.3L5.4,17.3L5.4,0z" fill="url(#lg1)" id="shape2" transform="translate(29.79,37.35)"/> | |
53 | + <path d="M.6,0L9.3,0C9.7,0,9.9,.2,9.9,.6L9.9,91.4C9.9,91.7,9.7,92,9.3,92L.6,92C.2,92,0,91.7,0,91.4L0,.6C0,.2,.2,0,.6,0z" fill="url(#lg2)" id="shape3" transform="translate(46.9,0)"/> | |
54 | + <path d="M0,0L69.9,0L69.9,79.6L0,79.6L0,0z" fill="url(#lg2)" id="shape4" transform="translate(56.81,6.21)"/> | |
55 | + <path d="M.6,0L42.9,0C43.3,0,43.5,.3,43.5,.6L43.5,89.9C43.5,90.2,43.3,90.4,42.9,90.4L.6,90.4C.3,90.4,0,90.2,0,89.9L0,.6C0,.3,.3,0,.6,0z" fill="url(#lg3)" id="shape5" transform="translate(126.48,0.78)"/> | |
56 | + <path d="M.6,0L11.2,0C11.5,0,11.7,.3,11.7,.6L11.7,86.2C11.7,86.6,11.5,86.8,11.2,86.8L.6,86.8C.3,86.8,0,86.6,0,86.2L0,.6C0,.3,.3,0,.6,0z" fill="url(#lg4)" id="shape6" transform="translate(35.17,2.6)"/> | |
57 | + <g transform="translate(31.86,5.52)"> | |
58 | + <path d="M3.8,0L0,0L0,4.9L3.8,4.9L3.8,0z" fill="url(#lg5)" id="shape7" transform="translate(0,0)"/> | |
59 | + <path d="M3.8,0L0,0L0,4.9L3.8,4.9L3.8,0z" fill="url(#lg5)" id="shape8" transform="translate(0,76.02)"/> | |
60 | + <path d="M3.8,0L0,0L0,4.9L3.8,4.9L3.8,0z" fill="url(#lg5)" id="shape9" transform="translate(0,50.68)"/> | |
61 | + <path d="M3.8,0L0,0L0,4.9L3.8,4.9L3.8,0z" fill="url(#lg5)" id="shape10" transform="translate(0,25.34)"/> | |
62 | + </g> | |
63 | + </g> | |
64 | +</svg> | ... | ... |
1 | +<svg xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 172 82" xmlns="http://www.w3.org/2000/svg" width="172" height="82"> | |
2 | + <defs> | |
3 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg1" x1="0%"> | |
4 | + <stop offset="0" stop-color="#bcad9a"/> | |
5 | + <stop offset="0.15" stop-color="#fdead3"/> | |
6 | + <stop offset="0.25" stop-color="#fef3e7"/> | |
7 | + <stop offset="0.52" stop-color="#deccb6"/> | |
8 | + <stop offset="0.69" stop-color="#c5b5a2"/> | |
9 | + <stop offset="0.8" stop-color="#baab98"/> | |
10 | + <stop offset="0.92" stop-color="#b0a190"/> | |
11 | + <stop offset="1" stop-color="#cabaa5"/> | |
12 | + </linearGradient> | |
13 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg2" x1="0%"> | |
14 | + <stop offset="0" stop-color="#292525"/> | |
15 | + <stop offset="0.03" stop-color="#868584"/> | |
16 | + <stop offset="0.08" stop-color="#383433"/> | |
17 | + <stop offset="0.64" stop-color="#373332"/> | |
18 | + <stop offset="0.95" stop-color="#363130"/> | |
19 | + <stop offset="1" stop-color="#252221"/> | |
20 | + </linearGradient> | |
21 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg3" x1="0%"> | |
22 | + <stop offset="0" stop-color="#b5b5b5"/> | |
23 | + <stop offset="0.03" stop-color="#ffffff"/> | |
24 | + <stop offset="0.08" stop-color="#ebebeb"/> | |
25 | + <stop offset="0.64" stop-color="#e7e7e7"/> | |
26 | + <stop offset="0.95" stop-color="#e2e2e2"/> | |
27 | + <stop offset="1" stop-color="#a8a8a8"/> | |
28 | + </linearGradient> | |
29 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg4" x1="0%"> | |
30 | + <stop offset="0" stop-color="#a3a29f"/> | |
31 | + <stop offset="0.03" stop-color="#ebebe7"/> | |
32 | + <stop offset="0.08" stop-color="#d4d3cf"/> | |
33 | + <stop offset="0.64" stop-color="#d0cfcc"/> | |
34 | + <stop offset="0.95" stop-color="#cccbc7"/> | |
35 | + <stop offset="1" stop-color="#979693"/> | |
36 | + </linearGradient> | |
37 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg5" x1="0%"> | |
38 | + <stop offset="0" stop-color="#3d3b3b"/> | |
39 | + <stop offset="0.03" stop-color="#908f8f"/> | |
40 | + <stop offset="0.08" stop-color="#514f4f"/> | |
41 | + <stop offset="0.64" stop-color="#504e4e"/> | |
42 | + <stop offset="0.95" stop-color="#4e4c4c"/> | |
43 | + <stop offset="1" stop-color="#383636"/> | |
44 | + </linearGradient> | |
45 | + <linearGradient y1="0%" y2="0%" x2="0%" id="lg6" x1="100%"> | |
46 | + <stop offset="0" stop-color="#bcad9a"/> | |
47 | + <stop offset="0.15" stop-color="#fdead3"/> | |
48 | + <stop offset="0.69" stop-color="#c5b5a2"/> | |
49 | + <stop offset="0.8" stop-color="#baab98"/> | |
50 | + <stop offset="0.92" stop-color="#b0a190"/> | |
51 | + <stop offset="1" stop-color="#cabaa5"/> | |
52 | + </linearGradient> | |
53 | + </defs> | |
54 | + <g transform="translate(1,1)"> | |
55 | + <path d="M0,0L170,0L170,14.6L0,14.6L0,0z" fill="url(#lg1)" id="shape1" transform="translate(0,32.71)"/> | |
56 | + <path d="M0,0L55.2,0L55.2,73.2L0,73.2L0,0z" fill="url(#lg2)" id="shape2" transform="translate(44.55,3.38)"/> | |
57 | + <path d="M.1,0L4.9,0C5,0,5,0,5,.1L5,56.4C5,56.5,5,56.5,4.9,56.5L.1,56.5C.1,56.5,0,56.5,0,56.4L0,.1C0,0,.1,0,.1,0z" fill="url(#lg3)" id="shape3" transform="translate(117.83,11.73)"/> | |
58 | + <path d="M.1,0L4.9,0C5,0,5,0,5,.1L5,56.4C5,56.5,5,56.5,4.9,56.5L.1,56.5C.1,56.5,0,56.5,0,56.4L0,.1C0,0,.1,0,.1,0z" fill="url(#lg3)" id="shape4" transform="translate(21.8,11.73)"/> | |
59 | + <path d="M.1,0L18.1,0C18.2,0,18.3,0,18.3,.1L18.3,79.9C18.3,80,18.2,80,18.1,80L.1,80C.1,80,0,80,0,79.9L0,.1C0,0,.1,0,.1,0z" fill="url(#lg4)" id="shape5" transform="translate(26.65,0)"/> | |
60 | + <path d="M.1,0L18.1,0C18.2,0,18.3,0,18.3,.1L18.3,79.9C18.3,80,18.2,80,18.1,80L.1,80C.1,80,0,80,0,79.9L0,.1C0,0,.1,0,.1,0z" fill="url(#lg4)" id="shape6" transform="translate(99.71,0)"/> | |
61 | + <path d="M0,0L62.1,0L62.1,51.2L0,51.2L0,0z" fill="url(#lg5)" id="shape7" transform="translate(41.08,14.4)"/> | |
62 | + <path d="M0,0L1.5,0L1.5,14.6L0,14.6L0,0z" fill="url(#lg6)" id="shape8" transform="translate(154.59,32.71)"/> | |
63 | + <path d="M0,0L1.5,0L1.5,14.6L0,14.6L0,0z" fill="url(#lg6)" id="shape9" transform="translate(17.44,32.71)"/> | |
64 | + <path d="M0,0L1.5,0L1.5,14.6L0,14.6L0,0z" fill="url(#lg6)" id="shape10" transform="translate(14.24,32.71)"/> | |
65 | + <path d="M0,0L1.5,0L1.5,14.6L0,14.6L0,0z" fill="url(#lg6)" id="shape11" transform="translate(11.03,32.71)"/> | |
66 | + <path d="M0,0L1.5,0L1.5,14.6L0,14.6L0,0z" fill="url(#lg6)" id="shape12" transform="translate(7.83,32.71)"/> | |
67 | + <path d="M0,0L1.5,0L1.5,14.6L0,14.6L0,0z" fill="url(#lg6)" id="shape13" transform="translate(151.39,32.71)"/> | |
68 | + <path d="M0,0L1.5,0L1.5,14.6L0,14.6L0,0z" fill="url(#lg6)" id="shape14" transform="translate(148.18,32.71)"/> | |
69 | + <path d="M0,0L1.5,0L1.5,14.6L0,14.6L0,0z" fill="url(#lg6)" id="shape15" transform="translate(144.98,32.71)"/> | |
70 | + <path d="M0,0L1.5,0L1.5,14.6L0,14.6L0,0z" fill="url(#lg6)" id="shape16" transform="translate(141.77,32.71)"/> | |
71 | + <path d="M0,0L1.5,0L1.5,14.6L0,14.6L0,0z" fill="url(#lg6)" id="shape17" transform="translate(138.57,32.71)"/> | |
72 | + <path d="M0,0L1.5,0L1.5,14.6L0,14.6L0,0z" fill="url(#lg6)" id="shape18" transform="translate(135.37,32.71)"/> | |
73 | + <path d="M0,0L1.5,0L1.5,14.6L0,14.6L0,0z" fill="url(#lg6)" id="shape19" transform="translate(132.16,32.71)"/> | |
74 | + <path d="M0,0L1.5,0L1.5,14.6L0,14.6L0,0z" fill="url(#lg6)" id="shape20" transform="translate(128.56,32.71)"/> | |
75 | + <path d="M0,0L1.5,0L1.5,14.6L0,14.6L0,0z" fill="url(#lg6)" id="shape21" transform="translate(125.76,32.71)"/> | |
76 | + </g> | |
77 | +</svg> | ... | ... |
1 | +<svg xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 154 114" xmlns="http://www.w3.org/2000/svg" width="154" height="114"> | |
2 | + <defs> | |
3 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg1" x1="0%"> | |
4 | + <stop offset="0" stop-color="#b1ad94"/> | |
5 | + <stop offset="0.15" stop-color="#e9e4c6"/> | |
6 | + <stop offset="0.25" stop-color="#f2f0e0"/> | |
7 | + <stop offset="0.52" stop-color="#cac6a9"/> | |
8 | + <stop offset="0.69" stop-color="#b4b097"/> | |
9 | + <stop offset="0.8" stop-color="#aaa68e"/> | |
10 | + <stop offset="0.97" stop-color="#a09c86"/> | |
11 | + <stop offset="1" stop-color="#b8b49a"/> | |
12 | + </linearGradient> | |
13 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg2" x1="0%"> | |
14 | + <stop offset="0" stop-color="#afb8ba"/> | |
15 | + <stop offset="0.15" stop-color="#e7f1f3"/> | |
16 | + <stop offset="0.25" stop-color="#f1f7f8"/> | |
17 | + <stop offset="0.52" stop-color="#c8d2d4"/> | |
18 | + <stop offset="0.69" stop-color="#b2bbbd"/> | |
19 | + <stop offset="0.8" stop-color="#a8b0b2"/> | |
20 | + <stop offset="0.97" stop-color="#9fa6a8"/> | |
21 | + <stop offset="1" stop-color="#b6bfc1"/> | |
22 | + </linearGradient> | |
23 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg3" x1="0%"> | |
24 | + <stop offset="0" stop-color="#8e9393"/> | |
25 | + <stop offset="0.15" stop-color="#bfc5c5"/> | |
26 | + <stop offset="0.25" stop-color="#dddfe0"/> | |
27 | + <stop offset="0.52" stop-color="#a2a8a9"/> | |
28 | + <stop offset="0.69" stop-color="#909596"/> | |
29 | + <stop offset="0.8" stop-color="#888c8d"/> | |
30 | + <stop offset="0.97" stop-color="#808485"/> | |
31 | + <stop offset="1" stop-color="#949999"/> | |
32 | + </linearGradient> | |
33 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg4" x1="0%"> | |
34 | + <stop offset="0" stop-color="#bac0c1"/> | |
35 | + <stop offset="0.15" stop-color="#f4fafc"/> | |
36 | + <stop offset="0.25" stop-color="#f8fcfd"/> | |
37 | + <stop offset="0.52" stop-color="#d5dbdd"/> | |
38 | + <stop offset="0.69" stop-color="#bdc3c4"/> | |
39 | + <stop offset="0.8" stop-color="#b3b8b9"/> | |
40 | + <stop offset="0.97" stop-color="#a9aeaf"/> | |
41 | + <stop offset="1" stop-color="#c2c7c9"/> | |
42 | + </linearGradient> | |
43 | + <linearGradient y1="0%" y2="0%" x2="0%" id="lg5" x1="100%"> | |
44 | + <stop offset="0" stop-color="#b1ad94"/> | |
45 | + <stop offset="0.15" stop-color="#e9e4c6"/> | |
46 | + <stop offset="0.25" stop-color="#f2f0e0"/> | |
47 | + <stop offset="0.52" stop-color="#cac6a9"/> | |
48 | + <stop offset="0.69" stop-color="#b4b097"/> | |
49 | + <stop offset="0.8" stop-color="#aaa68e"/> | |
50 | + <stop offset="0.97" stop-color="#a09c86"/> | |
51 | + <stop offset="1" stop-color="#b8b49a"/> | |
52 | + </linearGradient> | |
53 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg6" x1="0%"> | |
54 | + <stop offset="0" stop-color="#928e7a"/> | |
55 | + <stop offset="0.15" stop-color="#c4bfa8"/> | |
56 | + <stop offset="0.25" stop-color="#dfddd2"/> | |
57 | + <stop offset="0.52" stop-color="#a7a28b"/> | |
58 | + <stop offset="0.69" stop-color="#94907c"/> | |
59 | + <stop offset="0.8" stop-color="#8c8874"/> | |
60 | + <stop offset="0.97" stop-color="#84806e"/> | |
61 | + <stop offset="1" stop-color="#98947f"/> | |
62 | + </linearGradient> | |
63 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg7" x1="0%"> | |
64 | + <stop offset="0" stop-color="#a49c73"/> | |
65 | + <stop offset="0.15" stop-color="#d9d0a0"/> | |
66 | + <stop offset="0.25" stop-color="#eae5ce"/> | |
67 | + <stop offset="0.52" stop-color="#bbb284"/> | |
68 | + <stop offset="0.69" stop-color="#a69e75"/> | |
69 | + <stop offset="0.8" stop-color="#9d956e"/> | |
70 | + <stop offset="0.97" stop-color="#948d67"/> | |
71 | + <stop offset="1" stop-color="#aaa277"/> | |
72 | + </linearGradient> | |
73 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg8" x1="0%"> | |
74 | + <stop offset="0" stop-color="#afbbbe"/> | |
75 | + <stop offset="0.15" stop-color="#e7f5f8"/> | |
76 | + <stop offset="0.25" stop-color="#f1f9fb"/> | |
77 | + <stop offset="0.52" stop-color="#c8d6d9"/> | |
78 | + <stop offset="0.69" stop-color="#b2bec1"/> | |
79 | + <stop offset="0.8" stop-color="#a8b3b6"/> | |
80 | + <stop offset="0.97" stop-color="#9fa9ac"/> | |
81 | + <stop offset="1" stop-color="#b6c3c6"/> | |
82 | + </linearGradient> | |
83 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg9" x1="0%"> | |
84 | + <stop offset="0" stop-color="#abadaf"/> | |
85 | + <stop offset="0.03" stop-color="#f4f7f9"/> | |
86 | + <stop offset="0.08" stop-color="#dee2e4"/> | |
87 | + <stop offset="0.64" stop-color="#dadee0"/> | |
88 | + <stop offset="0.95" stop-color="#d5d9db"/> | |
89 | + <stop offset="1" stop-color="#9ea1a2"/> | |
90 | + </linearGradient> | |
91 | + </defs> | |
92 | + <g transform="translate(1.04,1)"> | |
93 | + <path d="M0,0L51.7,0L51.7,111.6L0,111.6L0,0z" fill="url(#lg1)" id="shape1" transform="translate(21.52,0)"/> | |
94 | + <path d="M21.9,0L21.9,111.6C21.9,111.6,-0.2,111.9,0,56.1C.2,.3,21.9,0,21.9,0z" fill="url(#lg2)" id="shape2" transform="translate(-0.04,0)"/> | |
95 | + <g transform="translate(26.06,5.01)"> | |
96 | + <path d="M1.2,-0L5.2,-0C5.9,-0,6.4,.5,6.4,1.2L6.4,12.2C6.4,12.9,5.9,13.4,5.2,13.4L1.2,13.4C.5,13.4,0,12.9,0,12.2L0,1.2C0,.5,.5,-0,1.2,-0z" fill="url(#lg3)" id="shape3" transform="translate(0,0)"/> | |
97 | + <path d="M1.2,-0L5.2,-0C5.9,-0,6.4,.5,6.4,1.2L6.4,12.2C6.4,12.9,5.9,13.4,5.2,13.4L1.2,13.4C.5,13.4,0,12.9,0,12.2L0,1.2C0,.5,.5,-0,1.2,-0z" fill="url(#lg3)" id="shape4" transform="translate(17.03,0)"/> | |
98 | + <path d="M1.2,-0L5.2,-0C5.9,-0,6.4,.5,6.4,1.2L6.4,12.2C6.4,12.9,5.9,13.4,5.2,13.4L1.2,13.4C.5,13.4,0,12.9,0,12.2L0,1.2C0,.5,.5,-0,1.2,-0z" fill="url(#lg3)" id="shape5" transform="translate(34.04,0)"/> | |
99 | + </g> | |
100 | + <g transform="translate(26.06,35.14)"> | |
101 | + <path d="M1.2,-0L5.2,-0C5.9,-0,6.4,.5,6.4,1.2L6.4,12.2C6.4,12.9,5.9,13.4,5.2,13.4L1.2,13.4C.5,13.4,0,12.9,0,12.2L0,1.2C0,.5,.5,-0,1.2,-0z" fill="url(#lg3)" id="shape6" transform="translate(0,0)"/> | |
102 | + <path d="M1.2,-0L5.2,-0C5.9,-0,6.4,.5,6.4,1.2L6.4,12.2C6.4,12.9,5.9,13.4,5.2,13.4L1.2,13.4C.5,13.4,0,12.9,0,12.2L0,1.2C0,.5,.5,-0,1.2,-0z" fill="url(#lg3)" id="shape7" transform="translate(17.03,0)"/> | |
103 | + <path d="M1.2,-0L5.2,-0C5.9,-0,6.4,.5,6.4,1.2L6.4,12.2C6.4,12.9,5.9,13.4,5.2,13.4L1.2,13.4C.5,13.4,0,12.9,0,12.2L0,1.2C0,.5,.5,-0,1.2,-0z" fill="url(#lg3)" id="shape8" transform="translate(34.04,0)"/> | |
104 | + </g> | |
105 | + <g transform="translate(26.06,63.87)"> | |
106 | + <path d="M1.2,-0L5.2,-0C5.9,-0,6.4,.5,6.4,1.2L6.4,12.2C6.4,12.9,5.9,13.4,5.2,13.4L1.2,13.4C.5,13.4,0,12.9,0,12.2L0,1.2C0,.5,.5,-0,1.2,-0z" fill="url(#lg3)" id="shape9" transform="translate(0,0)"/> | |
107 | + <path d="M1.2,-0L5.2,-0C5.9,-0,6.4,.5,6.4,1.2L6.4,12.2C6.4,12.9,5.9,13.4,5.2,13.4L1.2,13.4C.5,13.4,0,12.9,0,12.2L0,1.2C0,.5,.5,-0,1.2,-0z" fill="url(#lg3)" id="shape10" transform="translate(17.03,0)"/> | |
108 | + <path d="M1.2,-0L5.2,-0C5.9,-0,6.4,.5,6.4,1.2L6.4,12.2C6.4,12.9,5.9,13.4,5.2,13.4L1.2,13.4C.5,13.4,0,12.9,0,12.2L0,1.2C0,.5,.5,-0,1.2,-0z" fill="url(#lg3)" id="shape11" transform="translate(34.04,0)"/> | |
109 | + </g> | |
110 | + <g transform="translate(26.06,94.01)"> | |
111 | + <path d="M1.2,-0L5.2,-0C5.9,-0,6.4,.5,6.4,1.2L6.4,12.2C6.4,12.9,5.9,13.4,5.2,13.4L1.2,13.4C.5,13.4,0,12.9,0,12.2L0,1.2C0,.5,.5,-0,1.2,-0z" fill="url(#lg3)" id="shape12" transform="translate(0,0)"/> | |
112 | + <path d="M1.2,-0L5.2,-0C5.9,-0,6.4,.5,6.4,1.2L6.4,12.2C6.4,12.9,5.9,13.4,5.2,13.4L1.2,13.4C.5,13.4,0,12.9,0,12.2L0,1.2C0,.5,.5,-0,1.2,-0z" fill="url(#lg3)" id="shape13" transform="translate(17.03,0)"/> | |
113 | + <path d="M1.2,-0L5.2,-0C5.9,-0,6.4,.5,6.4,1.2L6.4,12.2C6.4,12.9,5.9,13.4,5.2,13.4L1.2,13.4C.5,13.4,0,12.9,0,12.2L0,1.2C0,.5,.5,-0,1.2,-0z" fill="url(#lg3)" id="shape14" transform="translate(34.04,0)"/> | |
114 | + </g> | |
115 | + <path d="M0,0L20.5,0L20.5,111.6L0,111.6L0,0z" fill="url(#lg2)" id="shape15" transform="translate(72.93,0.05)"/> | |
116 | + <path d="M0,0L4.5,0L4.5,99.1L0,99.1L0,0z" fill="url(#lg4)" id="shape16" transform="translate(93.75,6.31)"/> | |
117 | + <path d="M0,0L11.2,0L11.2,8.7L0,8.7L0,0z" fill="url(#lg5)" id="shape17" transform="translate(138.17,63.2)"/> | |
118 | + <path d="M0,0L1.3,0L1.3,111.6L0,111.6L0,0z" fill="url(#lg6)" id="shape18" transform="translate(71.95,0.05)"/> | |
119 | + <path d="M0,0L1.3,0L1.3,111.6L0,111.6L0,0z" fill="url(#lg6)" id="shape19" transform="translate(20.86,0.05)"/> | |
120 | + <path d="M1.2,-0L47.8,-0C48.4,-0,49,.5,49,1.1L49,13.9C49,14.5,48.4,15.1,47.8,15.1L1.2,15.1C.5,15.1,0,14.5,0,13.9L0,1.1C0,.5,.5,-0,1.2,-0z" fill="url(#lg1)" id="shape20" transform="translate(103,48.32)"/> | |
121 | + <path d="M0,0L20.6,0L20.6,20.2L0,20.2L0,0z" fill="url(#lg7)" id="shape21" transform="translate(109.84,45.92)"/> | |
122 | + <path d="M0,0L5.9,0L5.9,30.3L0,30.3L0,0z" fill="url(#lg8)" id="shape22" transform="translate(98.42,40.68)"/> | |
123 | + <g transform="translate(72.93,0)"> | |
124 | + <path d="M0,0L20.5,0L20.5,9.1L0,9.1L0,0z" fill="url(#lg9)" id="shape23" transform="translate(0,20.57)"/> | |
125 | + <path d="M0,0L20.5,0L20.5,9.1L0,9.1L0,0z" fill="url(#lg9)" id="shape24" transform="translate(0,41.14)"/> | |
126 | + <path d="M0,0L20.5,0L20.5,9.1L0,9.1L0,0z" fill="url(#lg9)" id="shape25" transform="translate(0,61.41)"/> | |
127 | + <path d="M0,0L20.5,0L20.5,9.1L0,9.1L0,0z" fill="url(#lg9)" id="shape26" transform="translate(0,82.85)"/> | |
128 | + <path d="M0,0L20.5,0L20.5,9.1L0,9.1L0,0z" fill="url(#lg9)" id="shape27" transform="translate(0,102.85)"/> | |
129 | + <path d="M0,0L20.5,0L20.5,9.1L0,9.1L0,0z" fill="url(#lg9)" id="shape28" transform="translate(0,-0)"/> | |
130 | + </g> | |
131 | + </g> | |
132 | +</svg> | ... | ... |
1 | +<svg xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 134 100" xmlns="http://www.w3.org/2000/svg" width="134" height="100"> | |
2 | + <defs> | |
3 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg1" x1="0%"> | |
4 | + <stop offset="0" stop-color="#bdbdbd"/> | |
5 | + <stop offset="0.15" stop-color="#ffffff"/> | |
6 | + <stop offset="0.25" stop-color="#ffffff"/> | |
7 | + <stop offset="0.52" stop-color="#dfdfdf"/> | |
8 | + <stop offset="0.69" stop-color="#c7c7c7"/> | |
9 | + <stop offset="0.8" stop-color="#bcbcbc"/> | |
10 | + <stop offset="0.92" stop-color="#b1b1b1"/> | |
11 | + <stop offset="1" stop-color="#cbcbcb"/> | |
12 | + </linearGradient> | |
13 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg2" x1="0%"> | |
14 | + <stop offset="0" stop-color="#a3a3a4"/> | |
15 | + <stop offset="0.15" stop-color="#dededf"/> | |
16 | + <stop offset="0.25" stop-color="#ededed"/> | |
17 | + <stop offset="0.52" stop-color="#c0c0c1"/> | |
18 | + <stop offset="0.69" stop-color="#ababac"/> | |
19 | + <stop offset="0.8" stop-color="#a1a1a2"/> | |
20 | + <stop offset="0.92" stop-color="#989899"/> | |
21 | + <stop offset="1" stop-color="#afafb0"/> | |
22 | + </linearGradient> | |
23 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg3" x1="0%"> | |
24 | + <stop offset="0" stop-color="#4e4d4d"/> | |
25 | + <stop offset="0.03" stop-color="#9c9b9b"/> | |
26 | + <stop offset="0.08" stop-color="#686767"/> | |
27 | + <stop offset="0.64" stop-color="#666565"/> | |
28 | + <stop offset="0.95" stop-color="#636262"/> | |
29 | + <stop offset="1" stop-color="#484747"/> | |
30 | + </linearGradient> | |
31 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg4" x1="0%"> | |
32 | + <stop offset="0" stop-color="#979898"/> | |
33 | + <stop offset="0.15" stop-color="#d0d1d1"/> | |
34 | + <stop offset="0.25" stop-color="#e5e6e6"/> | |
35 | + <stop offset="0.52" stop-color="#b3b4b4"/> | |
36 | + <stop offset="0.69" stop-color="#9fa0a0"/> | |
37 | + <stop offset="0.8" stop-color="#969797"/> | |
38 | + <stop offset="0.92" stop-color="#8e8e8e"/> | |
39 | + <stop offset="1" stop-color="#a3a4a4"/> | |
40 | + </linearGradient> | |
41 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg5" x1="0%"> | |
42 | + <stop offset="0" stop-color="#3d3b3b"/> | |
43 | + <stop offset="0.03" stop-color="#908f8f"/> | |
44 | + <stop offset="0.08" stop-color="#514f4f"/> | |
45 | + <stop offset="0.64" stop-color="#504e4e"/> | |
46 | + <stop offset="0.95" stop-color="#4e4c4c"/> | |
47 | + <stop offset="1" stop-color="#383636"/> | |
48 | + </linearGradient> | |
49 | + </defs> | |
50 | + <g transform="translate(1,1)"> | |
51 | + <path d="M0,0L35.3,0L35.3,20.9L0,20.9L0,0z" fill="url(#lg1)" id="shape1" transform="translate(-0,38.55)"/> | |
52 | + <path d="M0,0L5.3,0L5.3,35.9L0,35.9L0,0z" fill="url(#lg2)" id="shape2" transform="translate(30.28,31.04)"/> | |
53 | + <path d="M0,0L74.9,0L74.9,78.2L0,78.2L0,0z" fill="url(#lg3)" id="shape3" transform="translate(45.84,9.9)"/> | |
54 | + <path d="M.8,0L10.4,0C10.8,0,11.2,.4,11.2,.8L11.2,97.2C11.2,97.6,10.8,98,10.4,98L.8,98C.4,98,0,97.6,0,97.2L0,.8C0,.4,.4,0,.8,0z" fill="url(#lg4)" id="shape4" transform="translate(34.9,0)"/> | |
55 | + <path d="M0,0L8.7,0L8.7,78.2L0,78.2L0,0z" fill="url(#lg5)" id="shape5" transform="translate(45.84,9.9)"/> | |
56 | + <path d="M0,0L8.7,0L8.7,78.2L0,78.2L0,0z" fill="url(#lg5)" id="shape6" transform="translate(112.08,9.9)"/> | |
57 | + <path d="M.8,0L10.4,0C10.8,0,11.2,.4,11.2,.8L11.2,97.2C11.2,97.6,10.8,98,10.4,98L.8,98C.4,98,0,97.6,0,97.2L0,.8C0,.4,.4,0,.8,0z" fill="url(#lg4)" id="shape7" transform="translate(120.76,0)"/> | |
58 | + </g> | |
59 | +</svg> | ... | ... |
1 | +<svg xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 154 127.981" xmlns="http://www.w3.org/2000/svg" width="154" height="128"> | |
2 | + <defs> | |
3 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg1" x1="0%"> | |
4 | + <stop offset="0" stop-color="#bdbdbd"/> | |
5 | + <stop offset="0.15" stop-color="#fefefe"/> | |
6 | + <stop offset="0.25" stop-color="#ffffff"/> | |
7 | + <stop offset="0.52" stop-color="#e2e2e2"/> | |
8 | + <stop offset="0.69" stop-color="#c7c7c7"/> | |
9 | + <stop offset="0.8" stop-color="#bcbcbc"/> | |
10 | + <stop offset="0.92" stop-color="#b1b1b1"/> | |
11 | + <stop offset="1" stop-color="#cbcbcb"/> | |
12 | + </linearGradient> | |
13 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg2" x1="0%"> | |
14 | + <stop offset="0" stop-color="#b0b0b0"/> | |
15 | + <stop offset="0.15" stop-color="#ededed"/> | |
16 | + <stop offset="0.25" stop-color="#f2f2f2"/> | |
17 | + <stop offset="0.52" stop-color="#d3d3d3"/> | |
18 | + <stop offset="0.69" stop-color="#b9b9b9"/> | |
19 | + <stop offset="0.8" stop-color="#afafaf"/> | |
20 | + <stop offset="0.92" stop-color="#a5a5a5"/> | |
21 | + <stop offset="1" stop-color="#bebebe"/> | |
22 | + </linearGradient> | |
23 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg3" x1="0%"> | |
24 | + <stop offset="0" stop-color="#944d4e"/> | |
25 | + <stop offset="0.15" stop-color="#c8696b"/> | |
26 | + <stop offset="0.25" stop-color="#d8a0a1"/> | |
27 | + <stop offset="0.52" stop-color="#b25d5f"/> | |
28 | + <stop offset="0.69" stop-color="#9c5153"/> | |
29 | + <stop offset="0.8" stop-color="#934c4d"/> | |
30 | + <stop offset="0.92" stop-color="#8b4749"/> | |
31 | + <stop offset="1" stop-color="#a05355"/> | |
32 | + </linearGradient> | |
33 | + <linearGradient y1="0%" y2="0%" x2="0%" id="lg4" x1="100%"> | |
34 | + <stop offset="0" stop-color="#bdbdbd"/> | |
35 | + <stop offset="0.15" stop-color="#fefefe"/> | |
36 | + <stop offset="0.25" stop-color="#ffffff"/> | |
37 | + <stop offset="0.52" stop-color="#e2e2e2"/> | |
38 | + <stop offset="0.69" stop-color="#c7c7c7"/> | |
39 | + <stop offset="0.8" stop-color="#bcbcbc"/> | |
40 | + <stop offset="0.92" stop-color="#b1b1b1"/> | |
41 | + <stop offset="1" stop-color="#cbcbcb"/> | |
42 | + </linearGradient> | |
43 | + <linearGradient y1="0%" y2="0%" x2="0%" id="lg5" x1="100%"> | |
44 | + <stop offset="0" stop-color="#b0b0b0"/> | |
45 | + <stop offset="0.15" stop-color="#efefef"/> | |
46 | + <stop offset="0.25" stop-color="#f6f6f6"/> | |
47 | + <stop offset="0.52" stop-color="#d0d0d0"/> | |
48 | + <stop offset="0.69" stop-color="#b9b9b9"/> | |
49 | + <stop offset="0.8" stop-color="#afafaf"/> | |
50 | + <stop offset="0.92" stop-color="#a5a5a5"/> | |
51 | + <stop offset="1" stop-color="#bebebe"/> | |
52 | + </linearGradient> | |
53 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg6" x1="0%"> | |
54 | + <stop offset="0" stop-color="#854445"/> | |
55 | + <stop offset="0.03" stop-color="#cc9596"/> | |
56 | + <stop offset="0.08" stop-color="#ae5b5c"/> | |
57 | + <stop offset="0.64" stop-color="#ab595b"/> | |
58 | + <stop offset="0.95" stop-color="#a75759"/> | |
59 | + <stop offset="1" stop-color="#7b3e40"/> | |
60 | + </linearGradient> | |
61 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg7" x1="0%"> | |
62 | + <stop offset="0" stop-color="#8c3739"/> | |
63 | + <stop offset="0.15" stop-color="#bd4e50"/> | |
64 | + <stop offset="0.25" stop-color="#d09495"/> | |
65 | + <stop offset="0.52" stop-color="#a84446"/> | |
66 | + <stop offset="0.69" stop-color="#933b3c"/> | |
67 | + <stop offset="0.8" stop-color="#8b3738"/> | |
68 | + <stop offset="0.92" stop-color="#833335"/> | |
69 | + <stop offset="1" stop-color="#973c3e"/> | |
70 | + </linearGradient> | |
71 | + </defs> | |
72 | + <g transform="translate(1,1)"> | |
73 | + <path d="M0,0L23.7,0L23.7,19.8L0,19.8L0,0z" fill="url(#lg1)" id="shape1" transform="translate(128.29,79.17)"/> | |
74 | + <path d="M0,0L4.3,0L4.3,25.2L0,25.2L0,0z" fill="url(#lg2)" id="shape2" transform="translate(128.56,76.5)"/> | |
75 | + <path d="M0,0L3,0L3,4.4L0,4.4L0,0z" fill="url(#lg2)" id="shape3" transform="translate(128.56,70.17)"/> | |
76 | + <path d="M0,0L3,0L3,4.4L0,4.4L0,0z" fill="url(#lg2)" id="shape4" transform="translate(128.56,103.65)"/> | |
77 | + <path d="M0,0L71.7,0C71.7,0,81.2,1.1,81.2,48.7C81.2,96.4,71.7,96.6,71.7,96.6L0,96.6L0,0z" fill="url(#lg3)" id="shape5" transform="matrix(0,1,-1,0,103.6,44.8)"/> | |
78 | + <path d="M.9,-0L109.7,-0C110.3,-0,110.7,.4,110.7,.9L110.7,8.9C110.7,9.4,110.3,9.8,109.7,9.8L.9,9.8C.4,9.8,0,9.4,0,8.9L0,.9C0,.4,.4,-0,.9,-0z" fill="url(#lg4)" id="shape6" transform="translate(-0,35.12)"/> | |
79 | + <path d="M.9,0L18.4,0C18.9,0,19.3,.4,19.3,.9L19.3,35.1L0,35.1L0,.9C0,.4,.4,0,.9,0z" fill="url(#lg5)" id="shape7" transform="translate(45.69,0)"/> | |
80 | + <path d="M.9,0L29.3,0C29.9,0,30.3,.4,30.3,.9L30.3,42C30.3,42.5,29.9,42.9,29.3,42.9L.9,42.9C.4,42.9,0,42.5,0,42L0,.9C0,.4,.4,0,.9,0z" fill="url(#lg6)" id="shape8" transform="translate(98.3,67.63)"/> | |
81 | + <path d="M0,0L2,0L2,96.6L0,96.6L0,0z" fill="url(#lg7)" id="shape9" transform="matrix(0,1,-1,0,103.6,44.8)"/> | |
82 | + <path fill-opacity="0.22" d="M.9,0L41.6,0C42.1,0,42.5,.4,42.5,.9L42.5,25.2C42.5,25.7,42.1,26.1,41.6,26.1L.9,26.1C.4,26.1,0,25.7,0,25.2L0,.9C0,.4,.4,0,.9,0z" fill="#ffffff" id="shape10" transform="translate(32.93,72.38)"/> | |
83 | + <path d="M3.6,0L71.9,0C73.8,0,75.4,0,75.4,.1L75.4,4.1L0,4.1L0,.1C0,0,1.6,0,3.6,0z" fill="url(#lg5)" id="shape11" transform="translate(17.58,30.98)"/> | |
84 | + </g> | |
85 | +</svg> | ... | ... |
1 | +<svg xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 148 122.054" xmlns="http://www.w3.org/2000/svg" width="148" height="122"> | |
2 | + <defs> | |
3 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg1" x1="0%"> | |
4 | + <stop offset="0" stop-color="#4d7ca5"/> | |
5 | + <stop offset="0.15" stop-color="#78aada"/> | |
6 | + <stop offset="0.25" stop-color="#c0d3ea"/> | |
7 | + <stop offset="0.44" stop-color="#598ebc"/> | |
8 | + <stop offset="0.6" stop-color="#4f7ea7"/> | |
9 | + <stop offset="0.8" stop-color="#416a8d"/> | |
10 | + <stop offset="0.97" stop-color="#3b6080"/> | |
11 | + <stop offset="1" stop-color="#5181ab"/> | |
12 | + </linearGradient> | |
13 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg2" x1="0%"> | |
14 | + <stop offset="0" stop-color="#30679b"/> | |
15 | + <stop offset="0.15" stop-color="#5d93cf"/> | |
16 | + <stop offset="0.25" stop-color="#b8c9e4"/> | |
17 | + <stop offset="0.44" stop-color="#3876b1"/> | |
18 | + <stop offset="0.6" stop-color="#30699e"/> | |
19 | + <stop offset="0.8" stop-color="#275785"/> | |
20 | + <stop offset="0.97" stop-color="#234f79"/> | |
21 | + <stop offset="1" stop-color="#326ba1"/> | |
22 | + </linearGradient> | |
23 | + <linearGradient y1="0%" y2="100%" x2="0%" id="lg3" x1="0%"> | |
24 | + <stop offset="0" stop-color="#c4aa84"/> | |
25 | + <stop offset="0.15" stop-color="#ffe0b3"/> | |
26 | + <stop offset="0.25" stop-color="#ffeed7"/> | |
27 | + <stop offset="0.44" stop-color="#dfc297"/> | |
28 | + <stop offset="0.6" stop-color="#c7ad86"/> | |
29 | + <stop offset="0.8" stop-color="#a89170"/> | |
30 | + <stop offset="0.97" stop-color="#998566"/> | |
31 | + <stop offset="1" stop-color="#cbb189"/> | |
32 | + </linearGradient> | |
33 | + <linearGradient y1="0%" y2="0%" x2="0%" id="lg4" x1="100%"> | |
34 | + <stop offset="0" stop-color="#4e7193"/> | |
35 | + <stop offset="0.03" stop-color="#9cbadb"/> | |
36 | + <stop offset="0.08" stop-color="#6895c0"/> | |
37 | + <stop offset="0.64" stop-color="#6692bd"/> | |
38 | + <stop offset="0.95" stop-color="#638fb9"/> | |
39 | + <stop offset="1" stop-color="#486989"/> | |
40 | + </linearGradient> | |
41 | + <linearGradient y1="0%" y2="0%" x2="0%" id="lg5" x1="100%"> | |
42 | + <stop offset="0" stop-color="#4b4d52"/> | |
43 | + <stop offset="0.03" stop-color="#9a9b9f"/> | |
44 | + <stop offset="0.08" stop-color="#64676c"/> | |
45 | + <stop offset="0.64" stop-color="#62656a"/> | |
46 | + <stop offset="0.95" stop-color="#606268"/> | |
47 | + <stop offset="1" stop-color="#45474b"/> | |
48 | + </linearGradient> | |
49 | + <linearGradient y1="0%" y2="0%" x2="0%" id="lg6" x1="100%"> | |
50 | + <stop offset="0" stop-color="#4d7ca5"/> | |
51 | + <stop offset="0.15" stop-color="#78aada"/> | |
52 | + <stop offset="0.25" stop-color="#c0d3ea"/> | |
53 | + <stop offset="0.44" stop-color="#598ebc"/> | |
54 | + <stop offset="0.6" stop-color="#4f7ea7"/> | |
55 | + <stop offset="0.8" stop-color="#416a8d"/> | |
56 | + <stop offset="0.97" stop-color="#3b6080"/> | |
57 | + <stop offset="1" stop-color="#5181ab"/> | |
58 | + </linearGradient> | |
59 | + </defs> | |
60 | + <g transform="translate(1.02,1.05)"> | |
61 | + <path d="M0,0L74,0L74,75L0,75L0,0z" fill="url(#lg1)" id="shape1" transform="translate(33.83,32.12)"/> | |
62 | + <path d="M0,0L19,0L19,75.1L0,75.1L0,0z" fill="url(#lg1)" id="shape2" transform="translate(14.79,32.12)"/> | |
63 | + <path d="M15,0L15,75.1C15,75.1,0,75.1,0,37.8C0,.5,15,0,15,0z" fill="url(#lg1)" id="shape3" transform="translate(-0.02,32.12)"/> | |
64 | + <path d="M0,0L1.7,0L1.7,75.1L0,75.1L0,0z" fill="url(#lg2)" id="shape4" transform="translate(15.31,32.12)"/> | |
65 | + <path d="M0,0L1.6,0L1.6,73.7L0,73.7L0,0z" fill="url(#lg2)" id="shape5" transform="translate(105.2,32.08)"/> | |
66 | + <path d="M0,0L32,0L32,16.2L0,16.2L0,0z" fill="url(#lg3)" id="shape6" transform="translate(113.99,60.83)"/> | |
67 | + <g transform="translate(33.84,34.37)"> | |
68 | + <path d="M0,0L66.7,0L66.7,2.2L0,2.2L0,0z" fill="url(#lg1)" id="shape7" transform="translate(0,5.3)"/> | |
69 | + <path d="M0,0L66.7,0L66.7,2.2L0,2.2L0,0z" fill="url(#lg1)" id="shape8" transform="translate(0,15.89)"/> | |
70 | + <path d="M0,0L66.7,0L66.7,2.2L0,2.2L0,0z" fill="url(#lg1)" id="shape9" transform="translate(0,21.18)"/> | |
71 | + <path d="M0,0L66.7,0L66.7,2.2L0,2.2L0,0z" fill="url(#lg1)" id="shape10" transform="translate(0,26.48)"/> | |
72 | + <path d="M0,0L66.7,0L66.7,2.2L0,2.2L0,0z" fill="url(#lg1)" id="shape11" transform="translate(0,31.77)"/> | |
73 | + <path d="M0,0L66.7,0L66.7,2.2L0,2.2L0,0z" fill="url(#lg1)" id="shape12" transform="translate(0,37.79)"/> | |
74 | + <path d="M0,0L66.7,0L66.7,2.2L0,2.2L0,0z" fill="url(#lg1)" id="shape13" transform="translate(0,42.65)"/> | |
75 | + <path d="M0,0L66.7,0L66.7,2.2L0,2.2L0,0z" fill="url(#lg1)" id="shape14" transform="translate(0,47.51)"/> | |
76 | + <path d="M0,0L66.7,0L66.7,2.2L0,2.2L0,0z" fill="url(#lg1)" id="shape15" transform="translate(0,52.37)"/> | |
77 | + <path d="M0,0L66.7,0L66.7,2.2L0,2.2L0,0z" fill="url(#lg1)" id="shape16" transform="translate(0,58.25)"/> | |
78 | + <path d="M0,0L66.7,0L66.7,2.2L0,2.2L0,0z" fill="url(#lg1)" id="shape17" transform="translate(0,63.54)"/> | |
79 | + <path d="M0,0L66.7,0L66.7,2.2L0,2.2L0,0z" fill="url(#lg1)" id="shape18" transform="translate(0,68.84)"/> | |
80 | + <path d="M0,0L66.7,0L66.7,2.2L0,2.2L0,0z" fill="url(#lg1)" id="shape19" transform="translate(0,-0)"/> | |
81 | + <path d="M0,0L66.7,0L66.7,2.2L0,2.2L0,0z" fill="url(#lg1)" id="shape20" transform="translate(0,10.59)"/> | |
82 | + </g> | |
83 | + <path d="M0,0L5.7,0C6.7,0,7.5,.8,7.5,1.9L7.5,73.1C7.5,74.2,6.7,75,5.7,75L0,75L0,0z" fill="url(#lg1)" id="shape21" transform="translate(106.42,32.12)"/> | |
84 | + <path d="M0,0L3.9,0L3.9,34.4L0,34.4L0,0z" fill="url(#lg3)" id="shape22" transform="translate(113.99,51.73)"/> | |
85 | + <path d="M0,0L3.1,0L3.1,5L0,5L0,0z" fill="url(#lg1)" id="shape23" transform="translate(113.78,34.37)"/> | |
86 | + <path d="M0,0L3.1,0L3.1,5L0,5L0,0z" fill="url(#lg1)" id="shape24" transform="translate(113.78,56.36)"/> | |
87 | + <path d="M0,0L3.1,0L3.1,5L0,5L0,0z" fill="url(#lg1)" id="shape25" transform="translate(113.78,78.36)"/> | |
88 | + <path d="M0,0L3.1,0L3.1,5L0,5L0,0z" fill="url(#lg1)" id="shape26" transform="translate(113.78,100.36)"/> | |
89 | + <path d="M0,21.6L34.9,21.6L34.9,0L0,0L0,21.6z" fill="url(#lg4)" id="shape27" transform="translate(66.09,15.21)"/> | |
90 | + <path d="M0,1.6L34.9,1.6L34.9,0L0,0L0,1.6z" fill="url(#lg5)" id="shape28" transform="translate(66.09,23.11)"/> | |
91 | + <path d="M39.4,0L39.4,9.8C39.4,10.8,38.6,11.7,37.5,11.7L1.9,11.7C.8,11.7,-0,10.8,-0,9.8L-0,0L39.4,0z" fill="url(#lg4)" id="shape29" transform="translate(63.84,11.87)"/> | |
92 | + <path d="M1.5,0L41,0C41.9,0,42.6,.7,42.6,1.6C42.6,2.4,41.9,3.1,41,3.1L1.5,3.1C.7,3.1,0,2.4,0,1.6C0,.7,.7,0,1.5,0z" fill="url(#lg6)" id="shape30" transform="translate(62.52,9.03)"/> | |
93 | + <path d="M1.5,0L41,0C41.9,0,42.6,.7,42.6,1.6C42.6,2.4,41.9,3.1,41,3.1L1.5,3.1C.7,3.1,0,2.4,0,1.6C0,.7,.7,0,1.5,0z" fill="url(#lg6)" id="shape31" transform="translate(62.52,6.01)"/> | |
94 | + <path d="M39.4,0L39.4,5.1C39.4,5.6,38.6,6.1,37.5,6.1L1.9,6.1C.8,6.1,-0,5.6,-0,5.1L-0,0L39.4,0z" fill="url(#lg4)" id="shape32" transform="matrix(1,0,0,-1,64.1,6)"/> | |
95 | + <path d="M0,0L63.8,0L63.8,4.9L0,4.9L0,0z" fill="#98bcdf" id="shape33" transform="translate(36.21,101.86)"/> | |
96 | + <path d="M0,0L63.8,0L63.8,10.7L0,10.7L0,0z" fill="#6f9fce" id="shape34" transform="translate(36.21,107.25)"/> | |
97 | + <path d="M0,0L63.8,0L63.8,4L0,4L0,0z" fill="#91b7dd" id="shape35" transform="translate(36.21,115.97)"/> | |
98 | + </g> | |
99 | +</svg> | ... | ... |
13.2 KB
2.95 KB
10 KB
8.5 KB
42.8 KB
28.6 KB
14.2 KB
2.38 KB
src/main/webapp/img/lib/thingskit/iii.svg
0 → 100644
1 | +<svg width="99px" height="88px" viewBox="0 0 99 88" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> | |
2 | + <title>编组</title> | |
3 | + <g id="updateColor" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"> | |
4 | + <g id="空状态备份-5" transform="translate(-636.000000, -311.000000)"> | |
5 | + <g id="编组" transform="translate(636.000000, 311.000000)"> | |
6 | + <polygon id="矩形备份-2" fill="#0A64FA" points="87 31.1923776 99 20 99 88 87.1769466 82.1923776"></polygon> | |
7 | + <path d="M96.5,14.1190867 L96.5,84.0718335 L83.6780261,77.7735297 L83.4992452,26.2448664 L96.5,14.1190867 Z" id="矩形备份" stroke="#1B2733"></path> | |
8 | + <path d="M0.5,15.0497923 L73,26.8865269 L73,77.4432237 L0.5,81.9296423 L0.5,15.0497923 Z" id="矩形-copy-13备份" stroke="#1B2733" fill="#FFFFFF"></path> | |
9 | + <path d="" id="矩形-copy-14备份" stroke="#1B2733" fill="#2176FF"></path> | |
10 | + <path d="" id="矩形-copy-15备份" stroke="#1B2733" fill="#2176FF"></path> | |
11 | + <path d="M18,44.3787413 C22.9705627,44.8852978 27,41.2665057 27,36.295943 C27,31.3253802 22.9705627,26.8852978 18,26.3787413 C13.0294373,25.8721847 9,29.4909768 9,34.4615395 C9,39.4321023 13.0294373,43.8721847 18,44.3787413 Z" id="椭圆形备份" stroke="#1B2733"></path> | |
12 | + <polyline id="路径-5备份" stroke="#1B2733" points="18 30.2691619 18 35.9964346 22 37.2691619"></polyline> | |
13 | + <path d="M96.5413616,50.8992486 L71.8285611,37.1647797 C68.5729301,33.597033 65.4775939,29.1373496 61.8663682,27.3534762 C58.2551426,25.5696029 54.1280276,26.4615395 50.516802,30.0292863 C46.9055764,33.597033 46.9055764,42.5163998 52.3224148,36.272843 C55.9336404,32.1104719 59.1149583,32.4077841 61.8663682,37.1647797 C55.2457879,38.9486531 52.1878628,39.8405898 52.6925927,39.8405898 C53.1973227,39.8405898 57.1580542,41.0298387 64.5747875,43.4083365 L96.5413616,66.8169582 L96.5413616,50.8992486 Z" id="路径-6备份" stroke="#1B2733" fill="#FFFFFF"></path> | |
14 | + <g id="分组备份" transform="translate(64.694202, 25.000000) rotate(-316.000000) translate(-64.694202, -25.000000) translate(61.194202, -6.000000)" stroke="#1B2733"> | |
15 | + <path d="M6.18181392,0.693048485 L6.18181392,55.9157338 L3.54162701,60.1857014 L0.901440091,55.9157338 L0.901440091,0.693048485 L6.18181392,0.693048485 Z" id="矩形" fill="#FFFFFF"></path> | |
16 | + <line x1="0.77015873" y1="6.28809799" x2="6.045038" y2="6.32582701" id="路径-7"></line> | |
17 | + </g> | |
18 | + <path d="M61.5278754,36.4615395 C56.4876714,36.6537226 52,36.6537226 52,39.1802895 C52,41.7068565 54.7549893,41.148954 64.4046108,43.5656207 L72.2706808,48.8886178" id="路径备份" stroke="#1B2733" fill="#FFFFFF" stroke-linejoin="bevel"></path> | |
19 | + </g> | |
20 | + </g> | |
21 | + </g> | |
22 | +</svg> | |
\ No newline at end of file | ... | ... |
1 | +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16.03 16"><defs><style>.cls-1{fill:#fff}.cls-2{fill:#2868f0}</style></defs><g id="图层_13" data-name="图层 13"><path class="cls-1" d="M14.79.3H1.28a.79.79 0 00-.79.79v6.79a7 7 0 014-1.34 1 1 0 01.6-.19 1.09 1.09 0 01.79.33 3.89 3.89 0 01.58.18.85.85 0 01.82-.54c.59 0 1 .49 1 1.5V8c.42.36.82.75 1.26 1.1L11 6.35h.34l-1.58 2.9c1.21.9 2.76 1.5 5.82.66V1.09a.79.79 0 00-.79-.79zM9.27 8.19c-.42 0-.71-.34-.71-.93s.29-.91.71-.91.71.33.71.91-.3.93-.71.93zm2.11 1.18c-.41 0-.71-.35-.71-.93s.3-.92.71-.92.71.33.71.92-.29.93-.71.93zm0-1.52c-.17 0-.3.16-.3.59s.13.6.3.6.31-.17.31-.6-.14-.59-.31-.59z"/><path class="cls-2" d="M15.54 8.71v4.72a2.06 2.06 0 01-2 2.06H2.55a2.07 2.07 0 01-2.06-2.06v-7L1 6.22a9.28 9.28 0 011-.32 6.93 6.93 0 012.85-.14 4.85 4.85 0 011 .25 5.5 5.5 0 011.57.85A6.14 6.14 0 018 7.4a3.74 3.74 0 00.33.35A5.73 5.73 0 0010.42 9l.54.17a6.49 6.49 0 002 .16 8 8 0 002-.41z"/><path class="cls-1" d="M3 6.21a1.59 1.59 0 00-1.11.57A3.09 3.09 0 012 5.9a9.28 9.28 0 00-1 .32A4.51 4.51 0 00.91 7c0 1.9.92 2.73 1.94 2.73a1.69 1.69 0 001.69-1.8c0-1.18-.64-1.72-1.54-1.72zM2.83 8.9c-.45 0-.81-.38-.92-1.37A1.07 1.07 0 012.8 7c.46 0 .76.3.76.94s-.33.96-.73.96z"/><path class="cls-2" d="M4.47 4.72l-.57.64A1.21 1.21 0 003.06 5c-.45 0-.85.25-1 .93a9.28 9.28 0 00-1 .32c.22-1.47 1.09-2.11 2-2.11a2 2 0 011.41.58z"/><path class="cls-1" d="M8 7.4a6.14 6.14 0 00-.62-.54c0 1.51-.35 2-.81 2s-.81-.47-.81-2a7.1 7.1 0 010-.88 4.85 4.85 0 00-1-.25 5.34 5.34 0 00-.11 1.13c0 1.86.73 2.82 1.83 2.82.91 0 1.57-.67 1.76-2A3.74 3.74 0 018 7.4z"/><path class="cls-2" d="M8.42 6.89a4.61 4.61 0 01-.07.86A3.74 3.74 0 018 7.4a6.14 6.14 0 00-.62-.54c0-1.49-.36-1.92-.81-1.92S5.94 5.2 5.83 6a4.85 4.85 0 00-1-.25c.24-1.11.87-1.65 1.72-1.65 1.14.01 1.87.9 1.87 2.79z"/><path class="cls-1" d="M12.94 9.34a1.13 1.13 0 00.86.37 1.22 1.22 0 001.14-.78 8 8 0 01-2 .41zM10.42 9l-.36.7h.63l.31-.52z"/><path class="cls-2" d="M9.88 4.11c-.78 0-1.32.62-1.32 1.7s.54 1.72 1.32 1.72 1.32-.63 1.32-1.72-.55-1.7-1.32-1.7zm0 2.81c-.32 0-.56-.32-.56-1.11s.24-1.1.56-1.1.56.3.56 1.1-.25 1.11-.56 1.11zM13.8 6.28c-.77 0-1.31.62-1.31 1.71a1.89 1.89 0 00.45 1.35 8 8 0 002-.41 2.39 2.39 0 00.18-.93c0-1.1-.56-1.72-1.32-1.72zm0 2.82c-.31 0-.56-.32-.56-1.11s.25-1.1.56-1.1.56.3.56 1.1-.25 1.11-.56 1.11zM13.62 4.11L11 9.18 10.42 9 13 4.11z"/></g></svg> | |
\ No newline at end of file | ... | ... |
1 | +<svg viewBox="0 0 42 213.978" height="214" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="42"> | |
2 | + <defs> | |
3 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg1"> | |
4 | + <stop offset="0" stop-color="#c2b39f"/> | |
5 | + <stop offset="0.15" stop-color="#fdead3"/> | |
6 | + <stop offset="0.25" stop-color="#fef3e7"/> | |
7 | + <stop offset="0.44" stop-color="#deccb6"/> | |
8 | + <stop offset="0.6" stop-color="#c5b5a2"/> | |
9 | + <stop offset="0.8" stop-color="#a69988"/> | |
10 | + <stop offset="0.97" stop-color="#988c7c"/> | |
11 | + </linearGradient> | |
12 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg2"> | |
13 | + <stop offset="0" stop-color="#343232"/> | |
14 | + <stop offset="0.15" stop-color="#555454"/> | |
15 | + <stop offset="0.26" stop-color="#797777"/> | |
16 | + <stop offset="0.41" stop-color="#5d5b5b"/> | |
17 | + <stop offset="0.6" stop-color="#484646"/> | |
18 | + <stop offset="0.8" stop-color="#383636"/> | |
19 | + <stop offset="0.93" stop-color="#2c2b2b"/> | |
20 | + <stop offset="1" stop-color="#535151"/> | |
21 | + </linearGradient> | |
22 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg3"> | |
23 | + <stop offset="0" stop-color="#343232"/> | |
24 | + <stop offset="0.15" stop-color="#555454"/> | |
25 | + <stop offset="0.26" stop-color="#797777"/> | |
26 | + <stop offset="0.41" stop-color="#5d5b5b"/> | |
27 | + <stop offset="0.6" stop-color="#484646"/> | |
28 | + <stop offset="0.8" stop-color="#383636"/> | |
29 | + <stop offset="0.93" stop-color="#2c2b2b"/> | |
30 | + <stop offset="1" stop-color="#535151"/> | |
31 | + </linearGradient> | |
32 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg4"> | |
33 | + <stop offset="0" stop-color="#c4aa84"/> | |
34 | + <stop offset="0.15" stop-color="#ffe0b3"/> | |
35 | + <stop offset="0.25" stop-color="#ffeed7"/> | |
36 | + <stop offset="0.44" stop-color="#dfc297"/> | |
37 | + <stop offset="0.6" stop-color="#c7ad86"/> | |
38 | + <stop offset="0.8" stop-color="#a89170"/> | |
39 | + <stop offset="0.97" stop-color="#998566"/> | |
40 | + <stop offset="1" stop-color="#cbb189"/> | |
41 | + </linearGradient> | |
42 | + </defs> | |
43 | + <g transform="translate(1,1)"> | |
44 | + <path d="M0,0L39.2,0L39.2,158.5L0,158.5L0,0z" transform="translate(0.38,42.19)" id="shape1" fill="url(#lg1)"/> | |
45 | + <path d="M.7,-0L14,-0C14.4,-0,14.7,.3,14.7,.7L14.7,6.5C14.7,6.9,14.4,7.2,14,7.2L.7,7.2C.3,7.2,0,6.9,0,6.5L0,.7C0,.3,.3,-0,.7,-0z" transform="translate(12.63,22.95)" id="shape2" fill="url(#lg2)"/> | |
46 | + <path d="M0,0L8.4,0L8.4,13.6L0,13.6L0,0z" transform="translate(15.78,16.73)" id="shape3" fill="url(#lg3)"/> | |
47 | + <path d="M.7,-0L31.6,-0C32,-0,32.4,.3,32.4,.7L32.4,16.2C32.4,16.6,32,16.9,31.6,16.9L.7,16.9C.3,16.9,0,16.6,0,16.2L0,.7C0,.3,.3,-0,.7,-0z" transform="translate(3.82,0.02)" id="shape4" fill="#000000"/> | |
48 | + <path d="M0,0L17.4,0L17.4,3.8L0,3.8L0,0z" transform="translate(12.3,23.3)" id="shape5" fill="url(#lg2)"/> | |
49 | + <path d="M0,0L2.5,0L2.5,4.8L0,4.8L0,0z" transform="translate(29.66,22.82)" id="shape6" fill="url(#lg2)"/> | |
50 | + <path d="M.7,0L29.4,0C29.7,0,30.1,.3,30.1,.7L30.1,13.6C30.1,14,29.7,14.3,29.4,14.3L.7,14.3C.3,14.3,0,14,0,13.6L0,.7C0,.3,.3,0,.7,0z" transform="translate(4.96,1.33)" id="shape7" fill="#3e3938"/> | |
51 | + <path d="M40,0L40,12C40,12.5,39.4,12.9,38.7,12.9L1.2,12.9C.6,12.9,0,12.5,0,12L0,0L40,0z" transform="translate(0,199.13)" id="shape8" fill="url(#lg3)"/> | |
52 | + <path d="M40,0L40,12C40,12.5,39.4,12.9,38.7,12.9L1.2,12.9C.6,12.9,0,12.5,0,12L0,0L40,0z" transform="matrix(1,0,0,-1,0,42.6)" id="shape9" fill="url(#lg3)"/> | |
53 | + <path d="M0,0L13.2,0L13.2,12.4L0,12.4L0,0z" transform="translate(5.81,2.3)" id="shape10" fill="#ffffff"/> | |
54 | + <g transform="translate(21.24,2.38)"> | |
55 | + <path d="M0,6.1C0,2.7,2.7,0,6.1,0C9.5,0,12.2,2.7,12.2,6.1C12.2,9.5,9.5,12.3,6.1,12.3C2.7,12.3,0,9.5,0,6.1z" stroke="#595757" transform="translate(-0.01,0.01)" id="shape11" fill="#595757"/> | |
56 | + <path d="M0,5.4C0,2.4,2.4,0,5.4,0C8.4,0,10.8,2.4,10.8,5.4C10.8,8.4,8.4,10.9,5.4,10.9C2.4,10.9,0,8.4,0,5.4z" transform="translate(0.68,0.7)" id="shape12" fill="#9e9f9f"/> | |
57 | + <path d="M.3,0" stroke="#000000" transform="matrix(0.98,0.17,-0.17,0.98,9.3,2.6)" id="shape13" fill="none"/> | |
58 | + <path d="M0,0" stroke="#000000" transform="matrix(0,-1,1,0,10.4,6.1)" id="shape14" fill="none"/> | |
59 | + <path d="M0,0" stroke="#000000" transform="translate(6.03,1.11)" id="shape15" fill="none"/> | |
60 | + <path d="M0,0" stroke="#000000" transform="matrix(0,-1,1,0,0.9,6.1)" id="shape16" fill="none"/> | |
61 | + <path d="M0,0" stroke="#000000" transform="translate(2.61,2.45)" id="shape17" fill="none"/> | |
62 | + <path d="M5.8,6.9C8.3,3.2,5.5,0,5.5,0C7.4,.9,8.8,2.8,8.8,5.1C8.8,8.2,6.3,10.8,3.2,10.8C2,10.8,.9,10.4,0,9.7C.1,9.8,3.4,10.6,5.8,6.9z" transform="translate(2.83,0.89)" fill-opacity="0.36" id="shape18" fill="#ffffff"/> | |
63 | + <g transform="matrix(0.87,-0.5,-0.5,-0.87,2,8.7)"> | |
64 | + <path d="M-0.2,.4L4.2,.6C4.2,.6,5.6,.7,6.4,.3C6.4,.3,6.6,.2,6.7,.6C6.6,1.3,6.5,1.8,6.2,1.5C6.2,1.5,5.4,1,4.1,.9L-0.2,.4z" stroke="#000000" transform="translate(0.23,-0.3)" id="shape19" fill="#000000"/> | |
65 | + <path d="M.1,.1C.3,-0,.6,-0,.8,.1C.9,.3,.9,.6,.8,.8C.6,.9,.3,.9,.1,.8C-0,.6,-0,.3,.1,.1z" stroke="#000000" transform="translate(4.38,0.08)" id="shape20" fill="#000000"/> | |
66 | + <path d="M.1,.1C.2,-0,.4,-0,.5,.1C.6,.2,.6,.4,.5,.5C.4,.6,.2,.6,.1,.5C-0,.4,-0,.2,.1,.1z" transform="translate(4.55,0.25)" id="shape21" fill="url(#lg4)"/> | |
67 | + </g> | |
68 | + </g> | |
69 | + </g> | |
70 | +</svg> | ... | ... |
1 | +<svg viewBox="0 0 46 193.993" height="194" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="46"> | |
2 | + <defs> | |
3 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg1"> | |
4 | + <stop offset="0" stop-color="#9eb4bd"/> | |
5 | + <stop offset="0.15" stop-color="#d2ecf7"/> | |
6 | + <stop offset="0.25" stop-color="#e6f4fa"/> | |
7 | + <stop offset="0.44" stop-color="#b5ced7"/> | |
8 | + <stop offset="0.6" stop-color="#a1b7c0"/> | |
9 | + <stop offset="0.8" stop-color="#879aa2"/> | |
10 | + <stop offset="0.97" stop-color="#7b8d94"/> | |
11 | + </linearGradient> | |
12 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg2"> | |
13 | + <stop offset="0" stop-color="#343232"/> | |
14 | + <stop offset="0.15" stop-color="#555454"/> | |
15 | + <stop offset="0.26" stop-color="#797777"/> | |
16 | + <stop offset="0.41" stop-color="#5d5b5b"/> | |
17 | + <stop offset="0.6" stop-color="#484646"/> | |
18 | + <stop offset="0.8" stop-color="#383636"/> | |
19 | + <stop offset="0.93" stop-color="#2c2b2b"/> | |
20 | + <stop offset="1" stop-color="#535151"/> | |
21 | + </linearGradient> | |
22 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg3"> | |
23 | + <stop offset="0" stop-color="#343232"/> | |
24 | + <stop offset="0.15" stop-color="#555454"/> | |
25 | + <stop offset="0.26" stop-color="#797777"/> | |
26 | + <stop offset="0.41" stop-color="#5d5b5b"/> | |
27 | + <stop offset="0.6" stop-color="#484646"/> | |
28 | + <stop offset="0.8" stop-color="#383636"/> | |
29 | + <stop offset="0.93" stop-color="#2c2b2b"/> | |
30 | + <stop offset="1" stop-color="#535151"/> | |
31 | + </linearGradient> | |
32 | + </defs> | |
33 | + <g transform="translate(0.97,1.01)"> | |
34 | + <path d="M0,0L43.1,0L43.1,137.7L0,137.7L0,0z" transform="translate(0.44,41.52)" id="shape1" fill="url(#lg1)"/> | |
35 | + <path d="M.8,-0L15.4,-0C15.8,-0,16.2,.3,16.2,.8L16.2,7.2C16.2,7.7,15.8,8,15.4,8L.8,8C.3,8,0,7.7,0,7.2L0,.8C0,.3,.3,-0,.8,-0z" transform="translate(13.9,19.99)" id="shape2" fill="url(#lg2)"/> | |
36 | + <path d="M0,0L9.3,0L9.3,15.2L0,15.2L0,0z" transform="translate(17.36,13.02)" id="shape3" fill="url(#lg3)"/> | |
37 | + <path d="M.8,-0L34.7,-0C35.2,-0,35.6,.3,35.6,.8L35.6,18.2C35.6,18.6,35.2,19,34.7,19L.8,19C.3,19,0,18.6,0,18.2L0,.8C0,.3,.3,-0,.8,-0z" transform="translate(4.22,0.01)" id="shape4" fill="#000000"/> | |
38 | + <path d="M0,0L19.1,0L19.1,4.3L0,4.3L0,0z" transform="translate(13.51,20.38)" id="shape5" fill="url(#lg2)"/> | |
39 | + <path d="M0,0L2.7,0L2.7,5.3L0,5.3L0,0z" transform="translate(32.58,19.84)" id="shape6" fill="url(#lg2)"/> | |
40 | + <path d="M.8,0L32.2,0C32.7,0,33,.4,33,.8L33,15.2C33,15.7,32.7,16,32.2,16L.8,16C.3,16,0,15.7,0,15.2L0,.8C0,.4,.3,0,.8,0z" transform="translate(5.48,1.48)" id="shape7" fill="#3e3938"/> | |
41 | + <path d="M43.9,0L43.9,13.4C43.9,13.9,43.3,14.4,42.6,14.4L1.4,14.4C.6,14.4,0,13.9,0,13.4L0,0L43.9,0z" transform="translate(0.03,177.6)" id="shape8" fill="url(#lg3)"/> | |
42 | + <path d="M43.9,0L43.9,13.4C43.9,13.9,43.3,14.4,42.6,14.4L1.4,14.4C.6,14.4,0,13.9,0,13.4L0,0L43.9,0z" transform="matrix(1,0,0,-1,0,42)" id="shape9" fill="url(#lg3)"/> | |
43 | + <path d="M0,2.3C0,1,1,-0,2.3,-0C3.6,-0,4.6,1,4.6,2.3C4.6,3.6,3.6,4.7,2.3,4.7C1,4.7,0,3.6,0,2.3z" transform="translate(9.11,5.42)" id="shape10" fill="#ffffff"/> | |
44 | + <path d="M-0.1,3C-0.1,1.3,1.3,-0,3,-0C4.6,-0,6,1.3,6,3C6,4.7,4.6,6.1,3,6.1C1.3,6.1,-0.1,4.7,-0.1,3z" transform="translate(15.19,8.26)" id="shape11" fill="#ffffff"/> | |
45 | + </g> | |
46 | +</svg> | ... | ... |
1 | +<svg viewBox="0 0 128 154" height="154" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="128"> | |
2 | + <defs> | |
3 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg1"> | |
4 | + <stop offset="0" stop-color="#75929c"/> | |
5 | + <stop offset="0.01" stop-color="#bddae4"/> | |
6 | + <stop offset="0.03" stop-color="#99becb"/> | |
7 | + <stop offset="0.64" stop-color="#97bbc8"/> | |
8 | + <stop offset="0.99" stop-color="#93b7c4"/> | |
9 | + <stop offset="1" stop-color="#6c8791"/> | |
10 | + </linearGradient> | |
11 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg2"> | |
12 | + <stop offset="0" stop-color="#5f89a6"/> | |
13 | + <stop offset="0.01" stop-color="#aad1ef"/> | |
14 | + <stop offset="0.03" stop-color="#7eb3d8"/> | |
15 | + <stop offset="0.64" stop-color="#7cb0d5"/> | |
16 | + <stop offset="0.99" stop-color="#79acd0"/> | |
17 | + <stop offset="1" stop-color="#587f9a"/> | |
18 | + </linearGradient> | |
19 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg3"> | |
20 | + <stop offset="0" stop-color="#92a6ae"/> | |
21 | + <stop offset="0.01" stop-color="#daeff8"/> | |
22 | + <stop offset="0.03" stop-color="#bed8e3"/> | |
23 | + <stop offset="0.64" stop-color="#bbd5df"/> | |
24 | + <stop offset="0.99" stop-color="#b7d0da"/> | |
25 | + <stop offset="1" stop-color="#879aa2"/> | |
26 | + </linearGradient> | |
27 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg4"> | |
28 | + <stop offset="0" stop-color="#a8a8a8"/> | |
29 | + <stop offset="0.01" stop-color="#f2f2f2"/> | |
30 | + <stop offset="0.03" stop-color="#dbdbdb"/> | |
31 | + <stop offset="0.64" stop-color="#d8d8d8"/> | |
32 | + <stop offset="0.99" stop-color="#d3d3d3"/> | |
33 | + <stop offset="1" stop-color="#9c9c9c"/> | |
34 | + </linearGradient> | |
35 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg5"> | |
36 | + <stop offset="0" stop-color="#7a7b7b"/> | |
37 | + <stop offset="0.15" stop-color="#bbbcbc"/> | |
38 | + <stop offset="0.25" stop-color="#c1c1c1"/> | |
39 | + <stop offset="0.52" stop-color="#8a8b8b"/> | |
40 | + <stop offset="0.69" stop-color="#7a7b7b"/> | |
41 | + <stop offset="0.8" stop-color="#737474"/> | |
42 | + <stop offset="0.92" stop-color="#6c6d6d"/> | |
43 | + </linearGradient> | |
44 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg6"> | |
45 | + <stop offset="0" stop-color="#c7c7c7"/> | |
46 | + <stop offset="0.15" stop-color="#ffffff"/> | |
47 | + <stop offset="0.25" stop-color="#ffffff"/> | |
48 | + <stop offset="0.52" stop-color="#dfdfdf"/> | |
49 | + <stop offset="0.69" stop-color="#c7c7c7"/> | |
50 | + <stop offset="0.8" stop-color="#bcbcbc"/> | |
51 | + <stop offset="0.92" stop-color="#b1b1b1"/> | |
52 | + </linearGradient> | |
53 | + </defs> | |
54 | + <g transform="translate(1,1)"> | |
55 | + <path d="M0,0L121.7,0L121.7,74.9L101.4,74.9L101.4,148.5L24.1,148.5L24.1,74.9L0,74.9L0,0z" transform="translate(2.13,1.77)" id="shape1" fill="#cfebf6"/> | |
56 | + <path d="M0,0L4.6,0L4.6,73.4L77.4,73.4L77.4,0L82,0L82,78.3L0,78.3L0,0z" transform="translate(21.99,73.65)" id="shape2" fill="url(#lg1)"/> | |
57 | + <path d="M0,0L78.3,0L78.3,126L73.6,126L0,126L0,72.2L4.7,72.2L4.7,121.2L73.6,121.2L73.6,4.8L4.8,4.8L4.7,53.8L0,53.8L0,0z" transform="matrix(0,-1,1,0,0,78.3)" id="shape3" fill="url(#lg1)"/> | |
58 | + <path d="M0,0L48.6,0L48.6,60.3L0,60.3L0,0z" transform="translate(10.99,8.5)" id="shape4" fill="url(#lg2)"/> | |
59 | + <path d="M0,0L48.6,0L48.6,60.3L0,60.3L0,0z" transform="translate(66.36,8.5)" id="shape5" fill="url(#lg2)"/> | |
60 | + <path d="M0,0L27.1,0L27.1,60.3L0,60.3L0,0z" transform="translate(32.57,82.66)" id="shape6" fill="url(#lg2)"/> | |
61 | + <path d="M0,0L27.1,0L27.1,60.3L0,60.3L0,0z" transform="translate(66.36,82.66)" id="shape7" fill="url(#lg2)"/> | |
62 | + <g transform="translate(10.99,15.55)"> | |
63 | + <path d="M0,0L48.6,0L48.6,1.9L0,1.9L0,0z" transform="translate(0,-0)" id="shape8" fill="url(#lg3)"/> | |
64 | + <path d="M0,0L48.6,0L48.6,1.9L0,1.9L0,0z" transform="translate(0,8.87)" id="shape9" fill="url(#lg3)"/> | |
65 | + <path d="M0,0L48.6,0L48.6,1.9L0,1.9L0,0z" transform="translate(0,17.73)" id="shape10" fill="url(#lg3)"/> | |
66 | + <path d="M0,0L48.6,0L48.6,1.9L0,1.9L0,0z" transform="translate(0,26.6)" id="shape11" fill="url(#lg3)"/> | |
67 | + <path d="M0,0L48.6,0L48.6,1.9L0,1.9L0,0z" transform="translate(0,35.47)" id="shape12" fill="url(#lg3)"/> | |
68 | + <path d="M0,0L48.6,0L48.6,1.9L0,1.9L0,0z" transform="translate(0,44.33)" id="shape13" fill="url(#lg3)"/> | |
69 | + </g> | |
70 | + <g transform="translate(66.36,15.55)"> | |
71 | + <path d="M0,0L48.6,0L48.6,1.9L0,1.9L0,0z" transform="translate(0,-0)" id="shape14" fill="url(#lg3)"/> | |
72 | + <path d="M0,0L48.6,0L48.6,1.9L0,1.9L0,0z" transform="translate(0,8.87)" id="shape15" fill="url(#lg3)"/> | |
73 | + <path d="M0,0L48.6,0L48.6,1.9L0,1.9L0,0z" transform="translate(0,17.73)" id="shape16" fill="url(#lg3)"/> | |
74 | + <path d="M0,0L48.6,0L48.6,1.9L0,1.9L0,0z" transform="translate(0,26.6)" id="shape17" fill="url(#lg3)"/> | |
75 | + <path d="M0,0L48.6,0L48.6,1.9L0,1.9L0,0z" transform="translate(0,35.47)" id="shape18" fill="url(#lg3)"/> | |
76 | + <path d="M0,0L48.6,0L48.6,1.9L0,1.9L0,0z" transform="translate(0,44.33)" id="shape19" fill="url(#lg3)"/> | |
77 | + </g> | |
78 | + <g transform="translate(32.78,89.71)"> | |
79 | + <path d="M0,0L26.6,0L26.6,1.9L0,1.9L0,0z" transform="translate(0,-0)" id="shape20" fill="url(#lg3)"/> | |
80 | + <path d="M0,0L26.6,0L26.6,1.9L0,1.9L0,0z" transform="translate(0,8.87)" id="shape21" fill="url(#lg3)"/> | |
81 | + <path d="M0,0L26.6,0L26.6,1.9L0,1.9L0,0z" transform="translate(0,17.73)" id="shape22" fill="url(#lg3)"/> | |
82 | + <path d="M0,0L26.6,0L26.6,1.9L0,1.9L0,0z" transform="translate(0,26.6)" id="shape23" fill="url(#lg3)"/> | |
83 | + <path d="M0,0L26.6,0L26.6,1.9L0,1.9L0,0z" transform="translate(0,35.47)" id="shape24" fill="url(#lg3)"/> | |
84 | + <path d="M0,0L26.6,0L26.6,1.9L0,1.9L0,0z" transform="translate(0,44.33)" id="shape25" fill="url(#lg3)"/> | |
85 | + </g> | |
86 | + <g transform="translate(66.58,89.71)"> | |
87 | + <path d="M0,0L26.6,0L26.6,1.9L0,1.9L0,0z" transform="translate(0,-0)" id="shape26" fill="url(#lg3)"/> | |
88 | + <path d="M0,0L26.6,0L26.6,1.9L0,1.9L0,0z" transform="translate(0,8.87)" id="shape27" fill="url(#lg3)"/> | |
89 | + <path d="M0,0L26.6,0L26.6,1.9L0,1.9L0,0z" transform="translate(0,17.73)" id="shape28" fill="url(#lg3)"/> | |
90 | + <path d="M0,0L26.6,0L26.6,1.9L0,1.9L0,0z" transform="translate(0,26.6)" id="shape29" fill="url(#lg3)"/> | |
91 | + <path d="M0,0L26.6,0L26.6,1.9L0,1.9L0,0z" transform="translate(0,35.47)" id="shape30" fill="url(#lg3)"/> | |
92 | + <path d="M0,0L26.6,0L26.6,1.9L0,1.9L0,0z" transform="translate(0,44.33)" id="shape31" fill="url(#lg3)"/> | |
93 | + </g> | |
94 | + <g transform="translate(12.1,89.98)"> | |
95 | + <path d="M1.3,0L16.8,0C17.5,0,18.1,.6,18.1,1.4L18.1,19.8C18.1,20.5,17.5,21.2,16.8,21.2L1.3,21.2C.6,21.2,0,20.5,0,19.8L0,1.4C0,.6,.6,0,1.3,0z" id="shape32" fill="url(#lg4)"/> | |
96 | + <path d="M0,8.1C0,3.6,3.6,-0,8,-0C12.4,-0,16,3.6,16,8.1C16,12.6,12.4,16.2,8,16.2C3.6,16.2,0,12.6,0,8.1z" transform="translate(1.07,2.48)" id="shape33" fill="url(#lg5)"/> | |
97 | + <path d="M0,6.2C0,2.8,2.7,-0,6.1,-0C9.5,-0,12.2,2.8,12.2,6.2C12.2,9.6,9.5,12.4,6.1,12.4C2.7,12.4,0,9.6,0,6.2z" transform="translate(2.95,4.38)" id="shape34" fill="url(#lg6)"/> | |
98 | + </g> | |
99 | + <g transform="translate(95.4,89.98)"> | |
100 | + <path d="M1.3,0L16.8,0C17.5,0,18.1,.6,18.1,1.4L18.1,19.8C18.1,20.5,17.5,21.2,16.8,21.2L1.3,21.2C.6,21.2,0,20.5,0,19.8L0,1.4C0,.6,.6,0,1.3,0z" id="shape35" fill="url(#lg4)"/> | |
101 | + <path d="M0,8.1C0,3.6,3.6,-0,8,-0C12.4,-0,16,3.6,16,8.1C16,12.6,12.4,16.2,8,16.2C3.6,16.2,0,12.6,0,8.1z" transform="translate(1.07,2.48)" id="shape36" fill="url(#lg5)"/> | |
102 | + <path d="M0,6.2C0,2.8,2.7,-0,6.1,-0C9.5,-0,12.2,2.8,12.2,6.2C12.2,9.6,9.5,12.4,6.1,12.4C2.7,12.4,0,9.6,0,6.2z" transform="translate(2.95,4.38)" id="shape37" fill="url(#lg6)"/> | |
103 | + </g> | |
104 | + </g> | |
105 | +</svg> | ... | ... |
1 | +<svg viewBox="0 0 110 153.999" height="154" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="110"> | |
2 | + <defs> | |
3 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg1"> | |
4 | + <stop offset="0" stop-color="#c5b5a2"/> | |
5 | + <stop offset="0.15" stop-color="#fdefdd"/> | |
6 | + <stop offset="0.25" stop-color="#fef0df"/> | |
7 | + <stop offset="0.52" stop-color="#deccb6"/> | |
8 | + <stop offset="0.69" stop-color="#c5b5a2"/> | |
9 | + <stop offset="0.8" stop-color="#baab98"/> | |
10 | + <stop offset="0.92" stop-color="#b0a190"/> | |
11 | + </linearGradient> | |
12 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg2"> | |
13 | + <stop offset="0" stop-color="#b69f75"/> | |
14 | + <stop offset="0.15" stop-color="#efdab8"/> | |
15 | + <stop offset="0.25" stop-color="#f0ddbe"/> | |
16 | + <stop offset="0.52" stop-color="#cdb384"/> | |
17 | + <stop offset="0.69" stop-color="#b69f75"/> | |
18 | + <stop offset="0.8" stop-color="#ac966e"/> | |
19 | + <stop offset="0.92" stop-color="#a28e68"/> | |
20 | + </linearGradient> | |
21 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg3"> | |
22 | + <stop offset="0" stop-color="#b3a593"/> | |
23 | + <stop offset="0.01" stop-color="#fdeeda"/> | |
24 | + <stop offset="0.03" stop-color="#e9d7bf"/> | |
25 | + <stop offset="0.64" stop-color="#e5d3bc"/> | |
26 | + <stop offset="0.99" stop-color="#e0ceb8"/> | |
27 | + <stop offset="1" stop-color="#a69988"/> | |
28 | + </linearGradient> | |
29 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg4"> | |
30 | + <stop offset="0" stop-color="#a5906a"/> | |
31 | + <stop offset="0.01" stop-color="#eed8b3"/> | |
32 | + <stop offset="0.03" stop-color="#d7bd8c"/> | |
33 | + <stop offset="0.64" stop-color="#d4ba89"/> | |
34 | + <stop offset="0.99" stop-color="#cfb586"/> | |
35 | + <stop offset="1" stop-color="#9a8662"/> | |
36 | + </linearGradient> | |
37 | + </defs> | |
38 | + <g transform="translate(1,1)"> | |
39 | + <path d="M0,0L35.9,0L35.9,78.9L0,78.9L0,0z" transform="translate(36.05,67.16)" id="shape1" fill="url(#lg1)"/> | |
40 | + <path d="M.5,0L44.8,0C45.1,0,45.3,.2,45.3,.5L45.3,6.6C45.3,6.9,45.1,7.1,44.8,7.1L.5,7.1C.2,7.1,0,6.9,0,6.6L0,.5C0,.2,.2,0,.5,0z" transform="translate(31.35,144.93)" id="shape2" fill="url(#lg1)"/> | |
41 | + <path d="M0,0L35.9,0L35.9,2.4L0,2.4L0,0z" transform="translate(36.05,76)" id="shape3" fill="url(#lg2)"/> | |
42 | + <path d="M0,0L35.9,0L35.9,2.4L0,2.4L0,0z" transform="translate(36.05,134.32)" id="shape4" fill="url(#lg2)"/> | |
43 | + <path d="M0,0L104.2,0L104.2,36.2L0,36.2L0,0z" transform="translate(1.92,26.8)" id="shape5" fill="url(#lg3)"/> | |
44 | + <path d="M.5,0L107.5,0C107.8,0,108,.2,108,.5L108,3.9C108,4.2,107.8,4.4,107.5,4.4L.5,4.4C.2,4.4,0,4.2,0,3.9L0,.5C0,.2,.2,0,.5,0z" transform="translate(0,22.68)" id="shape6" fill="url(#lg3)"/> | |
45 | + <path d="M.5,0L107.5,0C107.8,0,108,.2,108,.5L108,3.9C108,4.2,107.8,4.4,107.5,4.4L.5,4.4C.2,4.4,0,4.2,0,3.9L0,.5C0,.2,.2,0,.5,0z" transform="translate(0,63.04)" id="shape7" fill="url(#lg3)"/> | |
46 | + <path d="M0,19.1L24.7,19.1L24.7,0L0,0L0,19.1z" transform="translate(7.96,3.53)" id="shape8" fill="url(#lg1)"/> | |
47 | + <path d="M.5,0L29.8,0C30.1,0,30.3,.2,30.3,.5L30.3,3.1C30.3,3.3,30.1,3.5,29.8,3.5L.5,3.5C.2,3.5,0,3.3,0,3.1L0,.5C0,.2,.2,0,.5,0z" transform="translate(5.17,-0)" id="shape9" fill="url(#lg1)"/> | |
48 | + <path d="M.5,0L14.5,0C14.8,0,15,.2,15,.5L15,9.5C15,9.8,14.8,10,14.5,10L.5,10C.2,10,0,9.8,0,9.5L0,.5C0,.2,.2,0,.5,0z" transform="translate(61.8,12.66)" id="shape10" fill="url(#lg1)"/> | |
49 | + <path d="M.5,0L9.2,0C9.5,0,9.7,.2,9.7,.5L9.7,4.5C9.7,4.8,9.5,5,9.2,5L.5,5C.2,5,0,4.8,0,4.5L0,.5C0,.2,.2,0,.5,0z" transform="translate(86.52,17.67)" id="shape11" fill="url(#lg1)"/> | |
50 | + <path d="M0,0L104.2,0L104.2,1.2L0,1.2L0,0z" transform="translate(1.92,27.25)" id="shape12" fill="url(#lg4)"/> | |
51 | + <path d="M0,0L104.2,0L104.2,1.2L0,1.2L0,0z" transform="translate(1.92,61.85)" id="shape13" fill="url(#lg4)"/> | |
52 | + </g> | |
53 | +</svg> | ... | ... |
1 | +<svg viewBox="0 0 154 46.0112" height="46" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="154"> | |
2 | + <defs> | |
3 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg1"> | |
4 | + <stop offset="0" stop-color="#8c8f93"/> | |
5 | + <stop offset="0.03" stop-color="#d4d7da"/> | |
6 | + <stop offset="0.08" stop-color="#b7bbbf"/> | |
7 | + <stop offset="0.64" stop-color="#b4b8bc"/> | |
8 | + <stop offset="0.95" stop-color="#b0b4b8"/> | |
9 | + <stop offset="1" stop-color="#828588"/> | |
10 | + </linearGradient> | |
11 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg2"> | |
12 | + <stop offset="0" stop-color="#989c9d"/> | |
13 | + <stop offset="0.03" stop-color="#e0e4e6"/> | |
14 | + <stop offset="0.08" stop-color="#c6cbcd"/> | |
15 | + <stop offset="0.64" stop-color="#c3c8ca"/> | |
16 | + <stop offset="0.95" stop-color="#bec4c5"/> | |
17 | + <stop offset="1" stop-color="#8d9192"/> | |
18 | + </linearGradient> | |
19 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg3"> | |
20 | + <stop offset="0" stop-color="#989c9d"/> | |
21 | + <stop offset="0.01" stop-color="#e0e4e6"/> | |
22 | + <stop offset="0.05" stop-color="#c6cbcd"/> | |
23 | + <stop offset="0.64" stop-color="#c3c8ca"/> | |
24 | + <stop offset="0.99" stop-color="#bec4c5"/> | |
25 | + <stop offset="1" stop-color="#8d9192"/> | |
26 | + </linearGradient> | |
27 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg4"> | |
28 | + <stop offset="0" stop-color="#8b8b8e"/> | |
29 | + <stop offset="0.03" stop-color="#d2d2d5"/> | |
30 | + <stop offset="0.08" stop-color="#b5b5b9"/> | |
31 | + <stop offset="0.64" stop-color="#b2b2b6"/> | |
32 | + <stop offset="0.95" stop-color="#aeaeb2"/> | |
33 | + <stop offset="1" stop-color="#818183"/> | |
34 | + </linearGradient> | |
35 | + </defs> | |
36 | + <g transform="translate(1.01,1.01)"> | |
37 | + <path d="M0,35.3L19,0L19,8L.2,43.8L0,35.3z" transform="translate(132.96,0.2)" id="shape1" fill="url(#lg1)"/> | |
38 | + <path d="M.2,0L132.9,0C133.2,0,133.2,.1,133.2,.2L133.2,8C133.2,8.2,133.2,8.2,132.9,8.2L.2,8.2C0,8.2,0,8.2,0,8L0,.2C0,.1,0,0,.2,0z" transform="translate(-0.01,35.6)" id="shape2" fill="url(#lg2)"/> | |
39 | + <path d="M23.3,0L151.6,0C151.8,0,151.8,.1,151.8,.2L132.8,35.5C132.8,35.6,132.8,35.7,132.5,35.7L.2,35.7C0,35.7,0,35.6,0,35.5L23.1,.2C23.1,.1,23.1,0,23.3,0z" transform="translate(0.09,-0.01)" id="shape3" fill="url(#lg3)"/> | |
40 | + <path d="M16.3,0L129,0L114,26.5L0,26.5L16.3,0z" transform="translate(12.42,4.4)" id="shape4" fill="#e0e4e5"/> | |
41 | + <path d="M16.3,0L0,26.4L2.6,26.7L16.3,4L16.3,0z" transform="translate(12.42,4.43)" id="shape5" fill="#b5b9bd"/> | |
42 | + <path d="M0,0L112.6,0L110.5,4L0,4L0,0z" transform="translate(28.72,4.43)" id="shape6" fill="url(#lg4)"/> | |
43 | + <path d="M104.2,22.5L0,22.5C0,22.5,4.1,17.6,16.4,16.3C28.8,15,34,12.1,34.5,11.9C41.5,8.7,45.6,3,57.2,1.3C58.8,1.1,61.1,0,61.1,0L117,0L104.2,22.5z" transform="translate(22.21,8.41)" fill-opacity="0.37" id="shape7" fill="#ffffff"/> | |
44 | + </g> | |
45 | +</svg> | ... | ... |
1 | +<svg viewBox="0 0 214 158" height="158" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="214"> | |
2 | + <defs> | |
3 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg1"> | |
4 | + <stop offset="0" stop-color="#c4c4c4"/> | |
5 | + <stop offset="0.33" stop-color="#ffffff"/> | |
6 | + <stop offset="0.39" stop-color="#ffffff"/> | |
7 | + <stop offset="0.51" stop-color="#dfdfdf"/> | |
8 | + <stop offset="0.8" stop-color="#a8a8a8"/> | |
9 | + <stop offset="0.97" stop-color="#999999"/> | |
10 | + <stop offset="1" stop-color="#cbcbcb"/> | |
11 | + </linearGradient> | |
12 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg2"> | |
13 | + <stop offset="0" stop-color="#c2b39f"/> | |
14 | + <stop offset="0.33" stop-color="#fdead3"/> | |
15 | + <stop offset="0.39" stop-color="#fef3e7"/> | |
16 | + <stop offset="0.51" stop-color="#deccb6"/> | |
17 | + <stop offset="0.8" stop-color="#a69988"/> | |
18 | + <stop offset="0.97" stop-color="#988c7c"/> | |
19 | + <stop offset="1" stop-color="#cabaa5"/> | |
20 | + </linearGradient> | |
21 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg3"> | |
22 | + <stop offset="0" stop-color="#9aa29c"/> | |
23 | + <stop offset="0.15" stop-color="#ced7d0"/> | |
24 | + <stop offset="0.25" stop-color="#e4e9e5"/> | |
25 | + <stop offset="0.44" stop-color="#b1b9b2"/> | |
26 | + <stop offset="0.6" stop-color="#9da59e"/> | |
27 | + <stop offset="0.8" stop-color="#848b85"/> | |
28 | + <stop offset="0.97" stop-color="#787f7a"/> | |
29 | + <stop offset="1" stop-color="#a1a9a2"/> | |
30 | + </linearGradient> | |
31 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg4"> | |
32 | + <stop offset="0" stop-color="#b6b6b6"/> | |
33 | + <stop offset="0.15" stop-color="#efefef"/> | |
34 | + <stop offset="0.25" stop-color="#f6f6f6"/> | |
35 | + <stop offset="0.44" stop-color="#d0d0d0"/> | |
36 | + <stop offset="0.6" stop-color="#b9b9b9"/> | |
37 | + <stop offset="0.8" stop-color="#9c9c9c"/> | |
38 | + <stop offset="0.97" stop-color="#8f8f8f"/> | |
39 | + <stop offset="1" stop-color="#bebebe"/> | |
40 | + </linearGradient> | |
41 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg5"> | |
42 | + <stop offset="0" stop-color="#b59d79"/> | |
43 | + <stop offset="0.03" stop-color="#ffe5c1"/> | |
44 | + <stop offset="0.08" stop-color="#ebcc9f"/> | |
45 | + <stop offset="0.64" stop-color="#e7c99c"/> | |
46 | + <stop offset="0.95" stop-color="#e2c499"/> | |
47 | + <stop offset="1" stop-color="#a89170"/> | |
48 | + </linearGradient> | |
49 | + </defs> | |
50 | + <g transform="translate(1,1)"> | |
51 | + <g transform="translate(6.92,17.39)"> | |
52 | + <path d="M19.7,0L78.4,0C78.4,0,65.2,71.3,98.1,126.6L0,126.6C0,126.6,27.1,50.9,19.7,0z" transform="translate(0,3.64)" id="shape1" fill="url(#lg1)"/> | |
53 | + <path d="M1,-0L57.8,-0C58.3,-0,58.8,.5,58.8,1C58.8,2.2,58.3,2.6,57.8,2.6L1,2.6C.5,2.6,0,2.2,0,1.6C0,.5,.5,-0,1,-0z" transform="translate(19.64,1)" id="shape2" fill="url(#lg2)"/> | |
54 | + <path d="M0,8.9L98.1,8.9C98.1,8.9,94.1,2.4,93.2,0L3,0C3,0,.8,7.2,0,8.9z" transform="translate(0,121.41)" id="shape3" fill="url(#lg2)"/> | |
55 | + <path d="M0,3.8L2.2,3.8L2.2,0L0,0L0,3.8z" transform="translate(20.88,-0)" id="shape4" fill="url(#lg3)"/> | |
56 | + <path d="M0,3.8L2.2,3.8L2.2,0L0,0L0,3.8z" transform="translate(27.27,0)" id="shape5" fill="url(#lg3)"/> | |
57 | + <path d="M0,3.8L2.2,3.8L2.2,0L0,0L0,3.8z" transform="translate(32.32,0)" id="shape6" fill="url(#lg3)"/> | |
58 | + <path d="M0,3.8L2.2,3.8L2.2,0L0,0L0,3.8z" transform="translate(39.01,0)" id="shape7" fill="url(#lg3)"/> | |
59 | + <path d="M0,3.8L2.2,3.8L2.2,0L0,0L0,3.8z" transform="translate(44.92,0)" id="shape8" fill="url(#lg3)"/> | |
60 | + <path d="M0,3.8L2.2,3.8L2.2,0L0,0L0,3.8z" transform="translate(50.93,0)" id="shape9" fill="url(#lg3)"/> | |
61 | + <path d="M0,3.8L2.2,3.8L2.2,0L0,0L0,3.8z" transform="translate(56.94,0)" id="shape10" fill="url(#lg3)"/> | |
62 | + <path d="M0,3.8L2.2,3.8L2.2,0L0,0L0,3.8z" transform="translate(62.95,0)" id="shape11" fill="url(#lg3)"/> | |
63 | + <path d="M0,3.8L2.2,3.8L2.2,0L0,0L0,3.8z" transform="translate(68.96,0)" id="shape12" fill="url(#lg3)"/> | |
64 | + <path d="M0,3.8L2.2,3.8L2.2,0L0,0L0,3.8z" transform="translate(74.97,0)" id="shape13" fill="url(#lg3)"/> | |
65 | + <g transform="translate(27.63,3.75)"> | |
66 | + <path d="M0,0L2.5,0L2.5,117.7L0,117.7L0,0z" transform="translate(26.92,0)" id="shape14" fill="url(#lg4)"/> | |
67 | + <path d="M0,0L2.5,0L2.5,117.7L0,117.7L0,0z" transform="translate(13.46,0)" id="shape15" fill="url(#lg4)"/> | |
68 | + <path d="M0,0L2.5,0L2.5,117.7L0,117.7L0,0z" transform="translate(0,0)" id="shape16" fill="url(#lg4)"/> | |
69 | + <path d="M0,0L2.5,0L2.5,117.7L0,117.7L0,0z" transform="translate(40.39,0)" id="shape17" fill="url(#lg4)"/> | |
70 | + </g> | |
71 | + </g> | |
72 | + <g transform="translate(105.95,18.25)"> | |
73 | + <path d="M19.8,0L78.6,0C78.6,0,65.4,71.5,98.4,126.9L0,126.9C0,126.9,27.2,51,19.8,0z" transform="translate(0,3.64)" id="shape18" fill="url(#lg1)"/> | |
74 | + <path d="M1,-0L57.9,-0C58.5,-0,59,.5,59,1C59,2.2,58.5,2.6,57.9,2.6L1,2.6C.5,2.6,0,2.2,0,1.6C0,.5,.5,-0,1,-0z" transform="translate(19.69,1)" id="shape19" fill="url(#lg2)"/> | |
75 | + <path d="M0,8.9L98.4,8.9C98.4,8.9,94.4,2.4,93.5,0L3,0C3,0,.8,7.3,0,8.9z" transform="translate(0,121.69)" id="shape20" fill="url(#lg2)"/> | |
76 | + <path d="M0,3.8L2.2,3.8L2.2,0L0,0L0,3.8z" transform="translate(20.93,-0)" id="shape21" fill="url(#lg3)"/> | |
77 | + <path d="M0,3.8L2.2,3.8L2.2,0L0,0L0,3.8z" transform="translate(27.33,0)" id="shape22" fill="url(#lg3)"/> | |
78 | + <path d="M0,3.8L2.2,3.8L2.2,0L0,0L0,3.8z" transform="translate(32.4,0)" id="shape23" fill="url(#lg3)"/> | |
79 | + <path d="M0,3.8L2.2,3.8L2.2,0L0,0L0,3.8z" transform="translate(39.1,0)" id="shape24" fill="url(#lg3)"/> | |
80 | + <path d="M0,3.8L2.2,3.8L2.2,0L0,0L0,3.8z" transform="translate(45.02,0)" id="shape25" fill="url(#lg3)"/> | |
81 | + <path d="M0,3.8L2.2,3.8L2.2,0L0,0L0,3.8z" transform="translate(51.05,0)" id="shape26" fill="url(#lg3)"/> | |
82 | + <path d="M0,3.8L2.2,3.8L2.2,0L0,0L0,3.8z" transform="translate(57.07,0)" id="shape27" fill="url(#lg3)"/> | |
83 | + <path d="M0,3.8L2.2,3.8L2.2,0L0,0L0,3.8z" transform="translate(63.1,0)" id="shape28" fill="url(#lg3)"/> | |
84 | + <path d="M0,3.8L2.2,3.8L2.2,0L0,0L0,3.8z" transform="translate(69.12,0)" id="shape29" fill="url(#lg3)"/> | |
85 | + <path d="M0,3.8L2.2,3.8L2.2,0L0,0L0,3.8z" transform="translate(75.14,0)" id="shape30" fill="url(#lg3)"/> | |
86 | + <g transform="translate(27.7,3.76)"> | |
87 | + <path d="M0,0L2.5,0L2.5,118L0,118L0,0z" transform="translate(26.99,0)" id="shape31" fill="url(#lg4)"/> | |
88 | + <path d="M0,0L2.5,0L2.5,118L0,118L0,0z" transform="translate(13.49,0)" id="shape32" fill="url(#lg4)"/> | |
89 | + <path d="M0,0L2.5,0L2.5,118L0,118L0,0z" transform="translate(0,0)" id="shape33" fill="url(#lg4)"/> | |
90 | + <path d="M0,0L2.5,0L2.5,118L0,118L0,0z" transform="translate(40.48,0)" id="shape34" fill="url(#lg4)"/> | |
91 | + </g> | |
92 | + </g> | |
93 | + <g transform="translate(43.41,0)"> | |
94 | + <path d="M22.5,0L89.6,0C89.6,0,74.5,81.5,112.1,144.7L0,144.7C0,144.7,31,58.2,22.5,0z" transform="translate(0,4.15)" id="shape35" fill="url(#lg1)"/> | |
95 | + <path d="M1.2,-0L66,-0C66.6,-0,67.2,.5,67.2,1.2C67.2,2.5,66.6,3,66,3L1.2,3C.5,3,0,2.5,0,1.8C0,.5,.5,-0,1.2,-0z" transform="translate(22.44,1.15)" id="shape36" fill="url(#lg2)"/> | |
96 | + <path d="M0,10.1L112.1,10.1C112.1,10.1,107.5,2.7,106.5,0L3.4,0C3.4,0,.9,8.3,0,10.1z" transform="translate(0,138.69)" id="shape37" fill="url(#lg2)"/> | |
97 | + <path d="M0,4.3L2.5,4.3L2.5,0L0,0L0,4.3z" transform="translate(23.85,-0)" id="shape38" fill="url(#lg3)"/> | |
98 | + <path d="M0,4.3L2.5,4.3L2.5,0L0,0L0,4.3z" transform="translate(31.15,0)" id="shape39" fill="url(#lg3)"/> | |
99 | + <path d="M0,4.3L2.5,4.3L2.5,0L0,0L0,4.3z" transform="translate(36.92,0)" id="shape40" fill="url(#lg3)"/> | |
100 | + <path d="M0,4.3L2.5,4.3L2.5,0L0,0L0,4.3z" transform="translate(44.57,0)" id="shape41" fill="url(#lg3)"/> | |
101 | + <path d="M0,4.3L2.5,4.3L2.5,0L0,0L0,4.3z" transform="translate(51.31,0)" id="shape42" fill="url(#lg3)"/> | |
102 | + <path d="M0,4.3L2.5,4.3L2.5,0L0,0L0,4.3z" transform="translate(58.18,0)" id="shape43" fill="url(#lg3)"/> | |
103 | + <path d="M0,4.3L2.5,4.3L2.5,0L0,0L0,4.3z" transform="translate(65.04,0)" id="shape44" fill="url(#lg3)"/> | |
104 | + <path d="M0,4.3L2.5,4.3L2.5,0L0,0L0,4.3z" transform="translate(71.91,0)" id="shape45" fill="url(#lg3)"/> | |
105 | + <path d="M0,4.3L2.5,4.3L2.5,0L0,0L0,4.3z" transform="translate(78.77,0)" id="shape46" fill="url(#lg3)"/> | |
106 | + <path d="M0,4.3L2.5,4.3L2.5,0L0,0L0,4.3z" transform="translate(85.64,0)" id="shape47" fill="url(#lg3)"/> | |
107 | + <g transform="translate(31.57,4.28)"> | |
108 | + <path d="M0,0L2.8,0L2.8,134.5L0,134.5L0,0z" transform="translate(30.76,0)" id="shape48" fill="url(#lg4)"/> | |
109 | + <path d="M0,0L2.8,0L2.8,134.5L0,134.5L0,0z" transform="translate(15.38,0)" id="shape49" fill="url(#lg4)"/> | |
110 | + <path d="M0,0L2.8,0L2.8,134.5L0,134.5L0,0z" transform="translate(0,0)" id="shape50" fill="url(#lg4)"/> | |
111 | + <path d="M0,0L2.8,0L2.8,134.5L0,134.5L0,0z" transform="translate(46.14,0)" id="shape51" fill="url(#lg4)"/> | |
112 | + </g> | |
113 | + </g> | |
114 | + <path d="M1.4,0L210.6,0C211.4,0,212,.7,212,1.5L212,7.5C212,8.3,211.4,9,210.6,9L1.4,9C.6,9,0,8.3,0,7.5L0,1.5C0,.7,.6,0,1.4,0z" transform="translate(0,146.98)" id="shape52" fill="url(#lg5)"/> | |
115 | + </g> | |
116 | +</svg> | ... | ... |
1 | +<svg viewBox="0 0 112 159.99" height="160" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="112"> | |
2 | + <defs> | |
3 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg1"> | |
4 | + <stop offset="0" stop-color="#b7c0c4"/> | |
5 | + <stop offset="0.15" stop-color="#f0f8fc"/> | |
6 | + <stop offset="0.25" stop-color="#f1f9fc"/> | |
7 | + <stop offset="0.52" stop-color="#ced7dc"/> | |
8 | + <stop offset="0.69" stop-color="#b7c0c4"/> | |
9 | + <stop offset="0.8" stop-color="#adb5b9"/> | |
10 | + <stop offset="0.92" stop-color="#a3abae"/> | |
11 | + </linearGradient> | |
12 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg2"> | |
13 | + <stop offset="0" stop-color="#aebcc1"/> | |
14 | + <stop offset="0.15" stop-color="#e8f4fa"/> | |
15 | + <stop offset="0.25" stop-color="#eaf5fa"/> | |
16 | + <stop offset="0.52" stop-color="#c4d3d9"/> | |
17 | + <stop offset="0.69" stop-color="#aebcc1"/> | |
18 | + <stop offset="0.8" stop-color="#a4b1b6"/> | |
19 | + <stop offset="0.92" stop-color="#9ba7ac"/> | |
20 | + </linearGradient> | |
21 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg3"> | |
22 | + <stop offset="0" stop-color="#9ba8b4"/> | |
23 | + <stop offset="0.15" stop-color="#d7e2ed"/> | |
24 | + <stop offset="0.25" stop-color="#dae4ee"/> | |
25 | + <stop offset="0.52" stop-color="#afbdca"/> | |
26 | + <stop offset="0.69" stop-color="#9ba8b4"/> | |
27 | + <stop offset="0.8" stop-color="#929eaa"/> | |
28 | + <stop offset="0.92" stop-color="#8a95a0"/> | |
29 | + </linearGradient> | |
30 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg4"> | |
31 | + <stop offset="0" stop-color="#909ca2"/> | |
32 | + <stop offset="0.01" stop-color="#d8e4eb"/> | |
33 | + <stop offset="0.02" stop-color="#bdcbd3"/> | |
34 | + <stop offset="0.64" stop-color="#bac8cf"/> | |
35 | + <stop offset="0.99" stop-color="#b5c4cb"/> | |
36 | + <stop offset="1" stop-color="#869196"/> | |
37 | + </linearGradient> | |
38 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg5"> | |
39 | + <stop offset="0" stop-color="#899398"/> | |
40 | + <stop offset="0.01" stop-color="#d1dae0"/> | |
41 | + <stop offset="0.02" stop-color="#b3bfc6"/> | |
42 | + <stop offset="0.64" stop-color="#b0bcc3"/> | |
43 | + <stop offset="0.99" stop-color="#acb8be"/> | |
44 | + <stop offset="1" stop-color="#7f888d"/> | |
45 | + </linearGradient> | |
46 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg6"> | |
47 | + <stop offset="0" stop-color="#c4c4c6"/> | |
48 | + <stop offset="0.15" stop-color="#fcfdfe"/> | |
49 | + <stop offset="0.25" stop-color="#fcfdfe"/> | |
50 | + <stop offset="0.52" stop-color="#dcddde"/> | |
51 | + <stop offset="0.69" stop-color="#c4c4c6"/> | |
52 | + <stop offset="0.8" stop-color="#b9b9bb"/> | |
53 | + <stop offset="0.92" stop-color="#aeafb0"/> | |
54 | + </linearGradient> | |
55 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg7"> | |
56 | + <stop offset="0" stop-color="#343232"/> | |
57 | + <stop offset="0.15" stop-color="#555454"/> | |
58 | + <stop offset="0.26" stop-color="#797777"/> | |
59 | + <stop offset="0.41" stop-color="#5d5b5b"/> | |
60 | + <stop offset="0.6" stop-color="#484646"/> | |
61 | + <stop offset="0.8" stop-color="#383636"/> | |
62 | + <stop offset="0.93" stop-color="#2c2b2b"/> | |
63 | + <stop offset="1" stop-color="#535151"/> | |
64 | + </linearGradient> | |
65 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg8"> | |
66 | + <stop offset="0" stop-color="#3d3b3b"/> | |
67 | + <stop offset="0.03" stop-color="#908f8f"/> | |
68 | + <stop offset="0.08" stop-color="#514f4f"/> | |
69 | + <stop offset="0.64" stop-color="#504e4e"/> | |
70 | + <stop offset="0.95" stop-color="#4e4c4c"/> | |
71 | + <stop offset="1" stop-color="#383636"/> | |
72 | + </linearGradient> | |
73 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg9"> | |
74 | + <stop offset="0" stop-color="#b7c0c4"/> | |
75 | + <stop offset="0.15" stop-color="#f0f8fc"/> | |
76 | + <stop offset="0.25" stop-color="#f1f9fc"/> | |
77 | + <stop offset="0.52" stop-color="#ced7dc"/> | |
78 | + <stop offset="0.69" stop-color="#b7c0c4"/> | |
79 | + <stop offset="0.8" stop-color="#adb5b9"/> | |
80 | + <stop offset="0.92" stop-color="#a3abae"/> | |
81 | + </linearGradient> | |
82 | + <radialGradient fx="0" fy="14" gradientUnits="userSpaceOnUse" cx="0" cy="14" id="rg1" r="19.3"> | |
83 | + <stop offset="0" stop-color="#b1b1b1"/> | |
84 | + <stop offset="0.64" stop-color="#bcbcbc"/> | |
85 | + <stop offset="0.62" stop-color="#c7c7c7"/> | |
86 | + <stop offset="0.49" stop-color="#dfdfdf"/> | |
87 | + <stop offset="0.32" stop-color="#ffffff"/> | |
88 | + <stop offset="0.1" stop-color="#ffffff"/> | |
89 | + <stop offset="1" stop-color="#a4a4a4"/> | |
90 | + </radialGradient> | |
91 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg10"> | |
92 | + <stop offset="0" stop-color="#c7c7c7"/> | |
93 | + <stop offset="0.15" stop-color="#ffffff"/> | |
94 | + <stop offset="0.25" stop-color="#ffffff"/> | |
95 | + <stop offset="0.52" stop-color="#dfdfdf"/> | |
96 | + <stop offset="0.69" stop-color="#c7c7c7"/> | |
97 | + <stop offset="0.8" stop-color="#bcbcbc"/> | |
98 | + <stop offset="0.92" stop-color="#b1b1b1"/> | |
99 | + </linearGradient> | |
100 | + <radialGradient fx="0" fy="7" gradientUnits="userSpaceOnUse" cx="0" cy="7" id="rg2" r="8.9"> | |
101 | + <stop offset="0" stop-color="#b1b1b1"/> | |
102 | + <stop offset="0.64" stop-color="#bcbcbc"/> | |
103 | + <stop offset="0.62" stop-color="#c7c7c7"/> | |
104 | + <stop offset="0.49" stop-color="#dfdfdf"/> | |
105 | + <stop offset="0.32" stop-color="#ffffff"/> | |
106 | + <stop offset="0.1" stop-color="#ffffff"/> | |
107 | + <stop offset="1" stop-color="#a4a4a4"/> | |
108 | + </radialGradient> | |
109 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg11"> | |
110 | + <stop offset="0" stop-color="#c7c7c7"/> | |
111 | + <stop offset="0.15" stop-color="#ffffff"/> | |
112 | + <stop offset="0.25" stop-color="#ffffff"/> | |
113 | + <stop offset="0.52" stop-color="#dfdfdf"/> | |
114 | + <stop offset="0.69" stop-color="#c7c7c7"/> | |
115 | + <stop offset="0.8" stop-color="#bcbcbc"/> | |
116 | + <stop offset="0.92" stop-color="#b1b1b1"/> | |
117 | + </linearGradient> | |
118 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg12"> | |
119 | + <stop offset="0" stop-color="#aebbc1"/> | |
120 | + <stop offset="0.15" stop-color="#e8f4fa"/> | |
121 | + <stop offset="0.25" stop-color="#eaf4fa"/> | |
122 | + <stop offset="0.52" stop-color="#c4d2d9"/> | |
123 | + <stop offset="0.69" stop-color="#aebbc1"/> | |
124 | + <stop offset="0.8" stop-color="#a4b0b6"/> | |
125 | + <stop offset="0.92" stop-color="#9ba6ac"/> | |
126 | + </linearGradient> | |
127 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg13"> | |
128 | + <stop offset="0" stop-color="#9b9b9c"/> | |
129 | + <stop offset="0.03" stop-color="#e4e4e4"/> | |
130 | + <stop offset="0.08" stop-color="#cbcbcb"/> | |
131 | + <stop offset="0.64" stop-color="#c7c7c8"/> | |
132 | + <stop offset="0.95" stop-color="#c3c3c4"/> | |
133 | + <stop offset="1" stop-color="#909091"/> | |
134 | + </linearGradient> | |
135 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg14"> | |
136 | + <stop offset="0" stop-color="#c4c4c6"/> | |
137 | + <stop offset="0.15" stop-color="#fbfcfe"/> | |
138 | + <stop offset="0.25" stop-color="#fcfcfe"/> | |
139 | + <stop offset="0.52" stop-color="#dcddde"/> | |
140 | + <stop offset="0.69" stop-color="#c4c4c6"/> | |
141 | + <stop offset="0.8" stop-color="#b9b9bb"/> | |
142 | + <stop offset="0.92" stop-color="#aeafb0"/> | |
143 | + </linearGradient> | |
144 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg15"> | |
145 | + <stop offset="0" stop-color="#0e5e94"/> | |
146 | + <stop offset="0.15" stop-color="#88a8d1"/> | |
147 | + <stop offset="0.25" stop-color="#94afd4"/> | |
148 | + <stop offset="0.52" stop-color="#126ba7"/> | |
149 | + <stop offset="0.69" stop-color="#0e5e94"/> | |
150 | + <stop offset="0.8" stop-color="#0d598c"/> | |
151 | + <stop offset="0.92" stop-color="#0c5384"/> | |
152 | + </linearGradient> | |
153 | + </defs> | |
154 | + <g transform="translate(1,1)"> | |
155 | + <path d="M0,0L25.7,0L25.7,63.7C25.7,63.7,25.6,67,22.5,67C22.5,67,3.3,67,3.3,67C.1,67,0,63.7,0,63.7L0,0z" transform="translate(4.49,90.96)" id="shape1" fill="url(#lg1)"/> | |
156 | + <path d="M0,0L25.7,0L25.7,5.3L0,5.3L0,0z" transform="translate(4.49,71.14)" id="shape2" fill="url(#lg2)"/> | |
157 | + <path d="M.7,0L32.9,0C33.3,0,33.6,.3,33.6,.7L33.6,13.9C33.6,14.3,33.3,14.6,32.9,14.6L.7,14.6C.3,14.6,0,14.3,0,13.9L0,.7C0,.3,.3,0,.7,0z" transform="translate(0.55,76.31)" id="shape3" fill="url(#lg1)"/> | |
158 | + <path d="M.7,0L32.9,0C33.3,0,33.6,.3,33.6,.7L33.6,13.9C33.6,14.3,33.3,14.6,32.9,14.6L.7,14.6C.3,14.6,0,14.3,0,13.9L0,.7C0,.3,.3,0,.7,0z" transform="translate(0.55,76.31)" id="shape4" fill="url(#lg1)"/> | |
159 | + <path d="M33.6,0L33.6,1L0,1L0,0L33.6,0z" transform="translate(0.55,88.11)" id="shape5" fill="url(#lg3)"/> | |
160 | + <g transform="translate(7.66,90.96)"> | |
161 | + <path d="M0,0L.9,67L0,0z" id="shape6" fill="url(#lg1)"/> | |
162 | + <path d="M0,0L.9,67L0,0z" transform="translate(2.18,0)" id="shape7" fill="url(#lg1)"/> | |
163 | + </g> | |
164 | + <g transform="translate(23.85,90.96)"> | |
165 | + <path d="M0,0L.9,67L0,0z" id="shape8" fill="url(#lg1)"/> | |
166 | + <path d="M0,0L.9,67L0,0z" transform="translate(2.18,0)" id="shape9" fill="url(#lg1)"/> | |
167 | + </g> | |
168 | + <path d="M0,0L25.7,0L25.7,63.7C25.7,63.7,25.6,67,22.5,67C22.5,67,3.3,67,3.3,67C.1,67,0,63.7,0,63.7L0,0z" transform="translate(42.15,90.96)" id="shape10" fill="url(#lg1)"/> | |
169 | + <path d="M0,0L25.7,0L25.7,5.3L0,5.3L0,0z" transform="translate(42.15,71.14)" id="shape11" fill="url(#lg2)"/> | |
170 | + <path d="M.7,0L32.9,0C33.3,0,33.6,.3,33.6,.7L33.6,13.9C33.6,14.3,33.3,14.6,32.9,14.6L.7,14.6C.3,14.6,0,14.3,0,13.9L0,.7C0,.3,.3,0,.7,0z" transform="translate(38.21,76.31)" id="shape12" fill="url(#lg1)"/> | |
171 | + <path d="M.7,0L32.9,0C33.3,0,33.6,.3,33.6,.7L33.6,13.9C33.6,14.3,33.3,14.6,32.9,14.6L.7,14.6C.3,14.6,0,14.3,0,13.9L0,.7C0,.3,.3,0,.7,0z" transform="translate(38.21,76.31)" id="shape13" fill="url(#lg1)"/> | |
172 | + <path d="M33.6,0L33.6,1L0,1L0,0L33.6,0z" transform="translate(38.21,88.11)" id="shape14" fill="url(#lg3)"/> | |
173 | + <g transform="translate(45.31,90.96)"> | |
174 | + <path d="M0,0L.9,67L0,0z" id="shape15" fill="url(#lg1)"/> | |
175 | + <path d="M0,0L.9,67L0,0z" transform="translate(2.18,0)" id="shape16" fill="url(#lg1)"/> | |
176 | + </g> | |
177 | + <g transform="translate(61.5,90.96)"> | |
178 | + <path d="M0,0L.9,67L0,0z" id="shape17" fill="url(#lg1)"/> | |
179 | + <path d="M0,0L.9,67L0,0z" transform="translate(2.18,0)" id="shape18" fill="url(#lg1)"/> | |
180 | + </g> | |
181 | + <path d="M0,0L25.7,0L25.7,63.7C25.7,63.7,25.6,67,22.5,67C22.5,67,3.3,67,3.3,67C.1,67,0,63.7,0,63.7L0,0z" transform="translate(79.79,90.96)" id="shape19" fill="url(#lg1)"/> | |
182 | + <path d="M0,0L25.7,0L25.7,5.3L0,5.3L0,0z" transform="translate(79.79,71.14)" id="shape20" fill="url(#lg2)"/> | |
183 | + <path d="M.7,0L32.9,0C33.3,0,33.6,.3,33.6,.7L33.6,13.9C33.6,14.3,33.3,14.6,32.9,14.6L.7,14.6C.3,14.6,0,14.3,0,13.9L0,.7C0,.3,.3,0,.7,0z" transform="translate(75.85,76.31)" id="shape21" fill="url(#lg1)"/> | |
184 | + <path d="M.7,0L32.9,0C33.3,0,33.6,.3,33.6,.7L33.6,13.9C33.6,14.3,33.3,14.6,32.9,14.6L.7,14.6C.3,14.6,0,14.3,0,13.9L0,.7C0,.3,.3,0,.7,0z" transform="translate(75.85,76.31)" id="shape22" fill="url(#lg1)"/> | |
185 | + <path d="M33.6,0L33.6,1L0,1L0,0L33.6,0z" transform="translate(75.85,88.11)" id="shape23" fill="url(#lg3)"/> | |
186 | + <g transform="translate(82.96,90.96)"> | |
187 | + <path d="M0,0L.9,67L0,0z" id="shape24" fill="url(#lg1)"/> | |
188 | + <path d="M0,0L.9,67L0,0z" transform="translate(2.18,0)" id="shape25" fill="url(#lg1)"/> | |
189 | + </g> | |
190 | + <g transform="translate(99.15,90.96)"> | |
191 | + <path d="M0,0L.9,67L0,0z" id="shape26" fill="url(#lg1)"/> | |
192 | + <path d="M0,0L.9,67L0,0z" transform="translate(2.18,0)" id="shape27" fill="url(#lg1)"/> | |
193 | + </g> | |
194 | + <path d="M2,0L107.9,0C109.1,0,110,.9,110,2.1L110,10.5L0,10.5L0,2.1C0,.9,.9,0,2,0z" transform="translate(0,60.71)" id="shape28" fill="url(#lg4)"/> | |
195 | + <path d="M2.2,0L100.2,0C101.4,0,102.3,.9,102.3,2.1L102.3,38.6L0,38.6L0,2.1C0,.9,1.1,0,2.2,0z" transform="translate(3.98,22.3)" id="shape29" fill="url(#lg5)"/> | |
196 | + <path d="M5,0L68.4,0C68.6,0,68.9,.2,68.9,.5L68.9,14.5C68.9,14.8,68.6,15,68.4,15L5,15C5,15,0,14.3,0,7.5C0,.6,5,0,5,0z" transform="translate(19.39,9.38)" id="shape30" fill="url(#lg6)"/> | |
197 | + <path d="M.5,0L7.5,0C7.7,0,8,.2,8,.5L8,11.5C8,11.8,7.7,12,7.5,12L.5,12C.2,12,0,11.8,0,11.5L0,.5C0,.2,.2,0,.5,0z" transform="translate(90.07,10.93)" id="shape31" fill="url(#lg7)"/> | |
198 | + <path d="M1.9,0L0,0L0,11.1L1.9,11.1L1.9,0z" transform="translate(88.14,11.44)" id="shape32" fill="url(#lg6)"/> | |
199 | + <path d="M0,-0L41.9,-0C42.2,-0,42.4,.2,42.4,.5L42.4,12.2C42.4,12.5,42.2,12.7,41.9,12.7L0,12.7L0,-0z" transform="translate(59.4,48.19)" id="shape33" fill="url(#lg8)"/> | |
200 | + <path d="M.5,0L10,0C10.3,0,10.6,.2,10.6,.5L10.6,22.4C10.6,22.6,10.3,22.9,10,22.9L.5,22.9C.2,22.9,0,22.6,0,22.4L0,.5C0,.2,.2,0,.5,0z" transform="translate(87.48,22.41)" id="shape34" fill="url(#lg6)"/> | |
201 | + <path d="M0,0L62.2,0L62.2,15.7L0,15.7L0,0z" transform="translate(26.07,24.37)" id="shape35" fill="url(#lg9)"/> | |
202 | + <path d="M0,0C0,0,2.7,0,2.8,3.4C2.8,3.4,2.8,12.4,2.8,12.4C2.8,15.7,0,15.7,0,15.7L0,0z" transform="translate(88.18,24.37)" id="shape36" fill="url(#lg6)"/> | |
203 | + <path d="M0,3.3C0,.1,2.7,0,2.7,0L2.7,15.7C2.7,15.7,0,15.5,0,12.4C0,9.2,0,6.5,0,3.3z" transform="translate(23.37,24.41)" id="shape37" fill="url(#lg6)"/> | |
204 | + <path d="M0,0L2.8,0L2.8,9L0,9L0,0z" transform="translate(20.59,27.72)" id="shape38" fill="url(#lg9)"/> | |
205 | + <path d="M0,0L2.8,0L2.8,9L0,9L0,0z" transform="translate(90.99,27.72)" id="shape39" fill="url(#lg9)"/> | |
206 | + <path d="M0,0C0,0,7,.2,10.3,4.1C13.5,8,13,14.2,13,14.2L3.9,14.2C3.9,14.2,4,10.6,0,9.2L0,0z" transform="matrix(-1,0,0,1,20.6,27.7)" id="shape40" fill="url(#rg1)"/> | |
207 | + <path d="M0,0L5.1,0L5.1,4L0,4L0,0z" transform="translate(98.07,30.26)" id="shape41" fill="url(#lg9)"/> | |
208 | + <path d="M.5,0L3.6,0C3.9,0,4.1,.2,4.1,.5L4.1,4.9C4.1,5.1,3.9,5.4,3.6,5.4L.5,5.4C.2,5.4,-0,5.1,-0,4.9L-0,.5C-0,.2,.2,0,.5,0z" transform="translate(102.26,29.5)" id="shape42" fill="url(#lg9)"/> | |
209 | + <path d="M0,0L4.6,0L4.6,2.5L0,2.5L0,0z" transform="translate(29.24,6.85)" id="shape43" fill="url(#lg10)"/> | |
210 | + <path d="M0,0C0,0,3.2,.1,4.7,1.9C6.2,3.7,6,6.5,6,6.5L1.8,6.5C1.8,6.5,1.8,4.9,0,4.2L0,0z" transform="translate(27.6,0.52)" id="shape44" fill="url(#rg2)"/> | |
211 | + <path d="M5.1,0L0,0L0,4.2L5.1,4.2L5.1,0z" transform="translate(22.54,0.52)" id="shape45" fill="url(#lg11)"/> | |
212 | + <path d="M.6,0L0,2.2L.6,0z" transform="translate(21.86,1.52)" id="shape46" fill="url(#lg7)"/> | |
213 | + <path d="M.3,0C.5,0,.7,.2,.7,.3L.7,4.9C.7,5.1,.5,5.2,.3,5.2C.2,5.2,0,5.1,0,4.9L0,.3C0,.2,.2,0,.3,0z" transform="translate(21.17,-0)" id="shape47" fill="url(#lg7)"/> | |
214 | + <path d="M0,0L4.6,0L4.6,2.3L0,2.3L0,0z" transform="matrix(-1,0,0,1,83.5,7)" id="shape48" fill="url(#lg10)"/> | |
215 | + <path d="M0,0C0,0,3.2,.1,4.7,1.9C6.2,3.7,6,6.5,6,6.5L1.8,6.5C1.8,6.5,1.8,4.9,0,4.2L0,0z" transform="matrix(-1,0,0,1,85.2,0.5)" id="shape49" fill="url(#rg2)"/> | |
216 | + <path d="M5.1,0L0,0L0,4.2L5.1,4.2L5.1,0z" transform="matrix(-1,0,0,1,90.2,0.5)" id="shape50" fill="url(#lg11)"/> | |
217 | + <path d="M.6,0L0,2.2L.6,0z" transform="matrix(-1,0,0,1,90.9,1.5)" id="shape51" fill="url(#lg7)"/> | |
218 | + <path d="M.3,0C.5,0,.7,.2,.7,.3L.7,4.9C.7,5.1,.5,5.2,.3,5.2C.2,5.2,0,5.1,0,4.9L0,.3C0,.2,.2,0,.3,0z" transform="matrix(-1,0,0,1,91.6,-0)" id="shape52" fill="url(#lg7)"/> | |
219 | + <path d="M0,0L33.4,0L33.4,15L0,15L0,0z" transform="translate(39.7,9.38)" id="shape53" fill="url(#lg12)"/> | |
220 | + <path d="M0,0L8.8,0L8.8,18.8L0,18.8L0,0z" transform="translate(69.51,41.93)" id="shape54" fill="url(#lg13)"/> | |
221 | + <path d="M0,0L9.7,0C10,0,10.2,.2,10.2,.5L10.2,17.9C10.2,18.2,10,18.4,9.7,18.4L0,18.4L0,0z" transform="translate(59.31,41.42)" id="shape55" fill="url(#lg7)"/> | |
222 | + <path d="M2.2,0L11.3,0L11.3,20.5L2.2,20.5C2.2,20.5,0,20.4,0,18C0,15.5,-0,5.1,0,2.5C.1,0,2.2,0,2.2,0z" transform="translate(5.84,40.39)" id="shape56" fill="url(#lg7)"/> | |
223 | + <path d="M0,0L42.5,0L42.5,20.5L0,20.5L0,0z" transform="translate(17.16,40.39)" id="shape57" fill="url(#lg7)"/> | |
224 | + <path d="M0,0L23.2,0L23.2,16.8L0,16.8L0,0z" transform="translate(26.82,40.39)" id="shape58" fill="url(#lg14)"/> | |
225 | + <g transform="translate(7.62,41.2)"/> | |
226 | + <path d="M0,0L3.2,0L3.2,15L0,15L0,0z" transform="translate(32.62,40.39)" id="shape68" fill="url(#lg15)"/> | |
227 | + <path d="M0,0L23.2,0L23.2,1.1L0,1.1L0,0z" transform="translate(26.82,55.01)" id="shape69" fill="#10649c"/> | |
228 | + </g> | |
229 | +</svg> | ... | ... |
1 | +<svg viewBox="0 0 134 221.977" height="222" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="134"> | |
2 | + <defs> | |
3 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg1"> | |
4 | + <stop offset="0" stop-color="#a78f87"/> | |
5 | + <stop offset="0.15" stop-color="#e1cdc6"/> | |
6 | + <stop offset="0.25" stop-color="#e4d1ca"/> | |
7 | + <stop offset="0.52" stop-color="#bca298"/> | |
8 | + <stop offset="0.69" stop-color="#a78f87"/> | |
9 | + <stop offset="0.8" stop-color="#9e877f"/> | |
10 | + <stop offset="0.92" stop-color="#957f78"/> | |
11 | + </linearGradient> | |
12 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg2"> | |
13 | + <stop offset="0" stop-color="#b4a59f"/> | |
14 | + <stop offset="0.15" stop-color="#eddfda"/> | |
15 | + <stop offset="0.25" stop-color="#eee2dd"/> | |
16 | + <stop offset="0.52" stop-color="#cab9b3"/> | |
17 | + <stop offset="0.69" stop-color="#b4a59f"/> | |
18 | + <stop offset="0.8" stop-color="#aa9b96"/> | |
19 | + <stop offset="0.92" stop-color="#a0938e"/> | |
20 | + </linearGradient> | |
21 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg3"> | |
22 | + <stop offset="0" stop-color="#c2b39f"/> | |
23 | + <stop offset="0.15" stop-color="#fdead3"/> | |
24 | + <stop offset="0.25" stop-color="#fef3e7"/> | |
25 | + <stop offset="0.44" stop-color="#deccb6"/> | |
26 | + <stop offset="0.6" stop-color="#c5b5a2"/> | |
27 | + <stop offset="0.8" stop-color="#a69988"/> | |
28 | + <stop offset="0.97" stop-color="#988c7c"/> | |
29 | + </linearGradient> | |
30 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg4"> | |
31 | + <stop offset="0" stop-color="#343232"/> | |
32 | + <stop offset="0.15" stop-color="#555454"/> | |
33 | + <stop offset="0.26" stop-color="#797777"/> | |
34 | + <stop offset="0.41" stop-color="#5d5b5b"/> | |
35 | + <stop offset="0.6" stop-color="#484646"/> | |
36 | + <stop offset="0.8" stop-color="#383636"/> | |
37 | + <stop offset="0.93" stop-color="#2c2b2b"/> | |
38 | + <stop offset="1" stop-color="#535151"/> | |
39 | + </linearGradient> | |
40 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg5"> | |
41 | + <stop offset="0" stop-color="#343232"/> | |
42 | + <stop offset="0.15" stop-color="#555454"/> | |
43 | + <stop offset="0.26" stop-color="#797777"/> | |
44 | + <stop offset="0.41" stop-color="#5d5b5b"/> | |
45 | + <stop offset="0.6" stop-color="#484646"/> | |
46 | + <stop offset="0.8" stop-color="#383636"/> | |
47 | + <stop offset="0.93" stop-color="#2c2b2b"/> | |
48 | + <stop offset="1" stop-color="#535151"/> | |
49 | + </linearGradient> | |
50 | + <linearGradient x2="0%" y2="0%" x1="0%" y1="100%" id="lg6"> | |
51 | + <stop offset="0" stop-color="#ffffff"/> | |
52 | + <stop offset="0.15" stop-color="#f6e6f0"/> | |
53 | + <stop offset="0.25" stop-color="#ebc4db"/> | |
54 | + <stop offset="0.4" stop-color="#e3bef0"/> | |
55 | + <stop offset="0.78" stop-color="#3b4eaf"/> | |
56 | + <stop offset="0.9" stop-color="#10258e"/> | |
57 | + <stop offset="0.97" stop-color="#0e2286"/> | |
58 | + </linearGradient> | |
59 | + <linearGradient gradientUnits="userSpaceOnUse" x2="-0" y2="2" x1="2" y1="1" id="lg7"> | |
60 | + <stop offset="0" stop-color="#5f4b87"/> | |
61 | + <stop offset="0.15" stop-color="#a89dc6"/> | |
62 | + <stop offset="0.25" stop-color="#b0a5ca"/> | |
63 | + <stop offset="0.52" stop-color="#6c5698"/> | |
64 | + <stop offset="0.69" stop-color="#5f4b87"/> | |
65 | + <stop offset="0.8" stop-color="#59477f"/> | |
66 | + <stop offset="0.92" stop-color="#544278"/> | |
67 | + </linearGradient> | |
68 | + <linearGradient gradientUnits="userSpaceOnUse" x2="-0" y2="2" x1="2" y1="1" id="lg8"> | |
69 | + <stop offset="0" stop-color="#9e6188"/> | |
70 | + <stop offset="0.15" stop-color="#daa9c7"/> | |
71 | + <stop offset="0.25" stop-color="#dcb1cb"/> | |
72 | + <stop offset="0.52" stop-color="#b26d9a"/> | |
73 | + <stop offset="0.69" stop-color="#9e6188"/> | |
74 | + <stop offset="0.8" stop-color="#955b80"/> | |
75 | + <stop offset="0.92" stop-color="#8d5579"/> | |
76 | + </linearGradient> | |
77 | + <linearGradient gradientUnits="userSpaceOnUse" x2="-0" y2="2" x1="2" y1="1" id="lg9"> | |
78 | + <stop offset="0" stop-color="#8f4b52"/> | |
79 | + <stop offset="0.15" stop-color="#cd9ca0"/> | |
80 | + <stop offset="0.25" stop-color="#d1a5a9"/> | |
81 | + <stop offset="0.52" stop-color="#a2555d"/> | |
82 | + <stop offset="0.69" stop-color="#8f4b52"/> | |
83 | + <stop offset="0.8" stop-color="#87464d"/> | |
84 | + <stop offset="0.92" stop-color="#7f4248"/> | |
85 | + </linearGradient> | |
86 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg10"> | |
87 | + <stop offset="0" stop-color="#c4aa84"/> | |
88 | + <stop offset="0.15" stop-color="#ffe0b3"/> | |
89 | + <stop offset="0.25" stop-color="#ffeed7"/> | |
90 | + <stop offset="0.44" stop-color="#dfc297"/> | |
91 | + <stop offset="0.6" stop-color="#c7ad86"/> | |
92 | + <stop offset="0.8" stop-color="#a89170"/> | |
93 | + <stop offset="0.97" stop-color="#998566"/> | |
94 | + <stop offset="1" stop-color="#cbb189"/> | |
95 | + </linearGradient> | |
96 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg11"> | |
97 | + <stop offset="0" stop-color="#aea8b6"/> | |
98 | + <stop offset="0.15" stop-color="#e5deef"/> | |
99 | + <stop offset="0.25" stop-color="#f0edf6"/> | |
100 | + <stop offset="0.44" stop-color="#c7c0d0"/> | |
101 | + <stop offset="0.6" stop-color="#b1abb9"/> | |
102 | + <stop offset="0.8" stop-color="#95909c"/> | |
103 | + <stop offset="0.97" stop-color="#88848f"/> | |
104 | + </linearGradient> | |
105 | + </defs> | |
106 | + <g transform="translate(1.01,1)"> | |
107 | + <path d="M0,1.6C0,1.6,13.3,-4.7,22,7.7C30.7,20,29.5,37.5,36.3,44.2C43.1,51,55,52.9,73.3,53.8C73.3,53.8,82.7,54.4,83.9,62.6C83.9,62.6,83.9,68.2,83.9,70L81,70L81,63.4C81,63.4,80.9,57.3,72.9,56.7C64.9,56.1,43.2,55.7,34.8,46.2C25.5,35.7,28,16.5,18.1,6.7C10.8,-0.5,2.3,3.2,2.3,3.2L0,1.6z" transform="translate(32.72,31.79)" id="shape1" fill="url(#lg1)"/> | |
108 | + <path d="M.8,0L17.9,0C18.3,0,18.7,.6,18.7,1.3L18.7,2.4C18.7,3.2,18.3,3.8,17.9,3.8L.8,3.8C.4,3.8,0,3.2,0,2.4L0,1.3C0,.6,.4,0,.8,0z" transform="translate(105.83,100.7)" id="shape2" fill="url(#lg1)"/> | |
109 | + <path d="M0,0L65.3,0L65.3,96.2C65.3,96.2,65.4,103.9,32.9,103.9C.2,103.9,0,96.2,0,96.2L0,0z" transform="translate(66.67,115.87)" id="shape3" fill="url(#lg2)"/> | |
110 | + <path d="M2.5,0C5,-0,60.3,0,62.8,0C65.2,0,65.3,8.9,65.3,8.9L0,8.9C0,8.9,0,0,2.5,0z" transform="translate(66.67,104.01)" id="shape4" fill="url(#lg2)"/> | |
111 | + <path d="M0,12.1C0,12.1,3.2,3.7,12.9,0C12.9,0,28.3,0,28.3,0C37.8,3.7,41.2,12.1,41.2,12.1L41.2,176.9L0,176.9L0,12.1z" transform="translate(0.34,31.33)" id="shape5" fill="url(#lg3)"/> | |
112 | + <path d="M.7,-0L14.7,-0C15.1,-0,15.5,.3,15.5,.7L15.5,6.7C15.5,7.1,15.1,7.5,14.7,7.5L.7,7.5C.3,7.5,0,7.1,0,6.7L0,.7C0,.3,.3,-0,.7,-0z" transform="translate(13.2,23.87)" id="shape6" fill="url(#lg4)"/> | |
113 | + <path d="M0,0L8.9,0L8.9,14.2L0,14.2L0,0z" transform="translate(16.51,17.39)" id="shape7" fill="url(#lg5)"/> | |
114 | + <path d="M.7,-0L33.2,-0C33.6,-0,34,.3,34,.7L34,16.9C34,17.3,33.6,17.6,33.2,17.6L.7,17.6C.3,17.6,0,17.3,0,16.9L0,.7C0,.3,.3,-0,.7,-0z" transform="translate(3.96,0.02)" id="shape8" fill="#000000"/> | |
115 | + <path d="M0,0L18.2,0L18.2,4L0,4L0,0z" transform="translate(12.89,24.23)" id="shape9" fill="url(#lg4)"/> | |
116 | + <path d="M0,0L2.6,0L2.6,5L0,5L0,0z" transform="translate(31.12,23.73)" id="shape10" fill="url(#lg4)"/> | |
117 | + <path d="M.7,0L30.8,0C31.2,0,31.6,.3,31.6,.7L31.6,14.2C31.6,14.6,31.2,14.9,30.8,14.9L.7,14.9C.3,14.9,0,14.6,0,14.2L0,.7C0,.3,.3,0,.7,0z" transform="translate(5.16,1.38)" id="shape11" fill="#3e3938"/> | |
118 | + <path d="M0,156.4C0,156.4,.3,168,14.7,168C30.3,168,30.4,156.4,30.4,156.4L30.4,6.4C30.4,6.4,29.4,1.6,18.6,.2C7.8,-1.1,0,3.6,0,6.4L0,156.4z" transform="translate(5.98,37.12)" id="shape12" fill="url(#lg6)"/> | |
119 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(12.04,199.63)" id="shape13" fill="url(#lg7)"/> | |
120 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(15.38,197.93)" id="shape14" fill="url(#lg7)"/> | |
121 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(18.71,199.82)" id="shape15" fill="url(#lg7)"/> | |
122 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(22.93,197.58)" id="shape16" fill="url(#lg7)"/> | |
123 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(25.37,199.82)" id="shape17" fill="url(#lg7)"/> | |
124 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(27.55,197.58)" id="shape18" fill="url(#lg7)"/> | |
125 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(29.99,193.65)" id="shape19" fill="url(#lg7)"/> | |
126 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(31.3,196.45)" id="shape20" fill="url(#lg7)"/> | |
127 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(32.61,191.41)" id="shape21" fill="url(#lg7)"/> | |
128 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(31.3,188.14)" id="shape22" fill="url(#lg7)"/> | |
129 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(32.43,184.91)" id="shape23" fill="url(#lg7)"/> | |
130 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(31.49,181.18)" id="shape24" fill="url(#lg7)"/> | |
131 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(33.55,179.32)" id="shape25" fill="url(#lg7)"/> | |
132 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(30.36,174.84)" id="shape26" fill="url(#lg7)"/> | |
133 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(33.55,173.73)" id="shape27" fill="url(#lg7)"/> | |
134 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(30.17,178.2)" id="shape28" fill="url(#lg7)"/> | |
135 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(27.55,179.32)" id="shape29" fill="url(#lg7)"/> | |
136 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(27.55,182.3)" id="shape30" fill="url(#lg7)"/> | |
137 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(26.43,188.14)" id="shape31" fill="url(#lg7)"/> | |
138 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(25.37,195.33)" id="shape32" fill="url(#lg7)"/> | |
139 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(19.84,195.33)" id="shape33" fill="url(#lg7)"/> | |
140 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(17.59,193.65)" id="shape34" fill="url(#lg7)"/> | |
141 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(9.78,196.45)" id="shape35" fill="url(#lg7)"/> | |
142 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(7.07,194.68)" id="shape36" fill="url(#lg7)"/> | |
143 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(7.53,191.41)" id="shape37" fill="url(#lg7)"/> | |
144 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(7.54,188.14)" id="shape38" fill="url(#lg7)"/> | |
145 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(6.41,184.91)" id="shape39" fill="url(#lg7)"/> | |
146 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(10.25,183.7)" id="shape40" fill="url(#lg7)"/> | |
147 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(19.1,186.5)" id="shape41" fill="url(#lg7)"/> | |
148 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(13.16,181.18)" id="shape42" fill="url(#lg7)"/> | |
149 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(12.35,178.2)" id="shape43" fill="url(#lg7)"/> | |
150 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(7.54,180.06)" id="shape44" fill="url(#lg7)"/> | |
151 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(7.54,175.96)" id="shape45" fill="url(#lg7)"/> | |
152 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(6.41,173.72)" id="shape46" fill="url(#lg7)"/> | |
153 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(8.66,172.6)" id="shape47" fill="url(#lg7)"/> | |
154 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(10.91,172.6)" id="shape48" fill="url(#lg7)"/> | |
155 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(13.16,174.84)" id="shape49" fill="url(#lg7)"/> | |
156 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(9.82,175.96)" id="shape50" fill="url(#lg7)"/> | |
157 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(10.91,169.24)" id="shape51" fill="url(#lg7)"/> | |
158 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(8.66,165.96)" id="shape52" fill="url(#lg7)"/> | |
159 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(6.41,163.72)" id="shape53" fill="url(#lg7)"/> | |
160 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(13.2,165.96)" id="shape54" fill="url(#lg7)"/> | |
161 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(13.16,162.6)" id="shape55" fill="url(#lg7)"/> | |
162 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(11.84,164.84)" id="shape56" fill="url(#lg7)"/> | |
163 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(14.26,159.23)" id="shape57" fill="url(#lg7)"/> | |
164 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(14.33,154.39)" id="shape58" fill="url(#lg7)"/> | |
165 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(12.08,155.87)" id="shape59" fill="url(#lg7)"/> | |
166 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(11.84,152.15)" id="shape60" fill="url(#lg7)"/> | |
167 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(7.54,154.39)" id="shape61" fill="url(#lg7)"/> | |
168 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(7.54,151.02)" id="shape62" fill="url(#lg7)"/> | |
169 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(10.71,148.89)" id="shape63" fill="url(#lg7)"/> | |
170 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(10.25,145.93)" id="shape64" fill="url(#lg8)"/> | |
171 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(6.41,148.42)" id="shape65" fill="url(#lg7)"/> | |
172 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(11.47,143.25)" id="shape66" fill="url(#lg8)"/> | |
173 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(9.21,140.44)" id="shape67" fill="url(#lg8)"/> | |
174 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(6.97,137.73)" id="shape68" fill="url(#lg8)"/> | |
175 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(14.23,142.77)" id="shape69" fill="url(#lg8)"/> | |
176 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(13.72,136.61)" id="shape70" fill="url(#lg8)"/> | |
177 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(12.4,140.25)" id="shape71" fill="url(#lg8)"/> | |
178 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(14.81,133.72)" id="shape72" fill="url(#lg8)"/> | |
179 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(14.88,129.33)" id="shape73" fill="url(#lg8)"/> | |
180 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(12.63,131.75)" id="shape74" fill="url(#lg8)"/> | |
181 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(12.4,128.49)" id="shape75" fill="url(#lg8)"/> | |
182 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(8.09,128.4)" id="shape76" fill="url(#lg8)"/> | |
183 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(8.09,125.04)" id="shape77" fill="url(#lg8)"/> | |
184 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(14.55,125.23)" id="shape78" fill="url(#lg8)"/> | |
185 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(10.34,121.81)" id="shape79" fill="url(#lg8)"/> | |
186 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(6.97,122.43)" id="shape80" fill="url(#lg8)"/> | |
187 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(6.97,142.13)" id="shape81" fill="url(#lg8)"/> | |
188 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(7.43,145.93)" id="shape82" fill="url(#lg8)"/> | |
189 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(14.26,147.76)" id="shape83" fill="url(#lg8)"/> | |
190 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(9.59,134.37)" id="shape84" fill="url(#lg8)"/> | |
191 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(6.97,133.25)" id="shape85" fill="url(#lg8)"/> | |
192 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(9.87,131.01)" id="shape86" fill="url(#lg8)"/> | |
193 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(10.34,137.73)" id="shape87" fill="url(#lg8)"/> | |
194 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(6.41,158.11)" id="shape88" fill="url(#lg7)"/> | |
195 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(9.12,161.48)" id="shape89" fill="url(#lg7)"/> | |
196 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(6.41,169.24)" id="shape90" fill="url(#lg7)"/> | |
197 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(14.23,170.36)" id="shape91" fill="url(#lg7)"/> | |
198 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(11.76,159.23)" id="shape92" fill="url(#lg7)"/> | |
199 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(12.4,188.14)" id="shape93" fill="url(#lg7)"/> | |
200 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(14.23,189.26)" id="shape94" fill="url(#lg7)"/> | |
201 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(12.97,195.52)" id="shape95" fill="url(#lg7)"/> | |
202 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(14.88,200.94)" id="shape96" fill="url(#lg7)"/> | |
203 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(21.8,202.06)" id="shape97" fill="url(#lg7)"/> | |
204 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(20.88,190.38)" id="shape98" fill="url(#lg7)"/> | |
205 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(25.3,192.53)" id="shape99" fill="url(#lg7)"/> | |
206 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(25.3,183.79)" id="shape100" fill="url(#lg7)"/> | |
207 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(25.37,174.85)" id="shape101" fill="url(#lg7)"/> | |
208 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(25.01,171.44)" id="shape102" fill="url(#lg7)"/> | |
209 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(27.19,169.19)" id="shape103" fill="url(#lg7)"/> | |
210 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(29.63,165.27)" id="shape104" fill="url(#lg7)"/> | |
211 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(30.94,168.07)" id="shape105" fill="url(#lg7)"/> | |
212 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(32.25,163.03)" id="shape106" fill="url(#lg7)"/> | |
213 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(30.94,159.76)" id="shape107" fill="url(#lg7)"/> | |
214 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(32.06,156.53)" id="shape108" fill="url(#lg7)"/> | |
215 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(31.12,152.8)" id="shape109" fill="url(#lg7)"/> | |
216 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(33.19,150.94)" id="shape110" fill="url(#lg7)"/> | |
217 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(29.99,146.46)" id="shape111" fill="url(#lg8)"/> | |
218 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(33.19,145.35)" id="shape112" fill="url(#lg8)"/> | |
219 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(29.81,149.81)" id="shape113" fill="url(#lg7)"/> | |
220 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(27.19,150.94)" id="shape114" fill="url(#lg7)"/> | |
221 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(27.19,153.92)" id="shape115" fill="url(#lg7)"/> | |
222 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(26.06,159.76)" id="shape116" fill="url(#lg7)"/> | |
223 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(25.01,166.95)" id="shape117" fill="url(#lg7)"/> | |
224 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(24.94,164.15)" id="shape118" fill="url(#lg7)"/> | |
225 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(24.94,155.41)" id="shape119" fill="url(#lg7)"/> | |
226 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(25.01,146.46)" id="shape120" fill="url(#lg8)"/> | |
227 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(27.55,172.56)" id="shape121" fill="url(#lg7)"/> | |
228 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(31.12,171.44)" id="shape122" fill="url(#lg7)"/> | |
229 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(29.23,187.02)" id="shape123" fill="url(#lg7)"/> | |
230 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(28.32,190.38)" id="shape124" fill="url(#lg7)"/> | |
231 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(27.37,143.67)" id="shape125" fill="url(#lg8)"/> | |
232 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(29.81,139.75)" id="shape126" fill="url(#lg8)"/> | |
233 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(31.12,142.55)" id="shape127" fill="url(#lg8)"/> | |
234 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(32.43,137.51)" id="shape128" fill="url(#lg8)"/> | |
235 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(31.12,134.24)" id="shape129" fill="url(#lg8)"/> | |
236 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(32.24,131.01)" id="shape130" fill="url(#lg8)"/> | |
237 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(31.3,127.28)" id="shape131" fill="url(#lg8)"/> | |
238 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(33.37,125.42)" id="shape132" fill="url(#lg8)"/> | |
239 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(30.18,120.94)" id="shape133" fill="url(#lg8)"/> | |
240 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(33.37,119.82)" id="shape134" fill="url(#lg8)"/> | |
241 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(29.99,124.29)" id="shape135" fill="url(#lg8)"/> | |
242 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(26.9,126.35)" id="shape136" fill="url(#lg8)"/> | |
243 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(28.31,129.8)" id="shape137" fill="url(#lg8)"/> | |
244 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(26.24,134.24)" id="shape138" fill="url(#lg8)"/> | |
245 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(25.19,141.43)" id="shape139" fill="url(#lg8)"/> | |
246 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(25.12,138.63)" id="shape140" fill="url(#lg8)"/> | |
247 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(25.12,129.88)" id="shape141" fill="url(#lg8)"/> | |
248 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(25.19,120.94)" id="shape142" fill="url(#lg8)"/> | |
249 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(27.54,117.31)" id="shape143" fill="url(#lg8)"/> | |
250 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(29.98,113.38)" id="shape144" fill="url(#lg8)"/> | |
251 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(31.29,116.18)" id="shape145" fill="url(#lg8)"/> | |
252 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(32.6,111.14)" id="shape146" fill="url(#lg9)"/> | |
253 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(31.29,107.87)" id="shape147" fill="url(#lg9)"/> | |
254 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(32.41,104.64)" id="shape148" fill="url(#lg9)"/> | |
255 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(31.47,100.91)" id="shape149" fill="url(#lg9)"/> | |
256 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(33.54,99.05)" id="shape150" fill="url(#lg9)"/> | |
257 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(30.35,94.58)" id="shape151" fill="url(#lg9)"/> | |
258 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(33.54,93.46)" id="shape152" fill="url(#lg9)"/> | |
259 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(30.16,97.93)" id="shape153" fill="url(#lg9)"/> | |
260 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(27.54,99.05)" id="shape154" fill="url(#lg9)"/> | |
261 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(27.54,102.03)" id="shape155" fill="url(#lg9)"/> | |
262 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(26.42,107.87)" id="shape156" fill="url(#lg9)"/> | |
263 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(25.36,115.07)" id="shape157" fill="url(#lg8)"/> | |
264 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(25.29,112.26)" id="shape158" fill="url(#lg9)"/> | |
265 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(25.29,103.52)" id="shape159" fill="url(#lg9)"/> | |
266 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(25.36,94.58)" id="shape160" fill="url(#lg9)"/> | |
267 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(31.27,91.22)" id="shape161" fill="url(#lg9)"/> | |
268 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(33.34,89.36)" id="shape162" fill="url(#lg9)"/> | |
269 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(30.15,84.88)" id="shape163" fill="url(#lg9)"/> | |
270 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(33.34,83.76)" id="shape164" fill="url(#lg9)"/> | |
271 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(29.96,88.23)" id="shape165" fill="url(#lg9)"/> | |
272 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(27.34,89.36)" id="shape166" fill="url(#lg9)"/> | |
273 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(27.34,92.34)" id="shape167" fill="url(#lg9)"/> | |
274 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(25.16,84.88)" id="shape168" fill="url(#lg9)"/> | |
275 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(12.67,117.11)" id="shape169" fill="url(#lg8)"/> | |
276 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(14.74,115.24)" id="shape170" fill="url(#lg8)"/> | |
277 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(12.01,111.24)" id="shape171" fill="url(#lg9)"/> | |
278 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(14.74,109.65)" id="shape172" fill="url(#lg9)"/> | |
279 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(11.36,114.59)" id="shape173" fill="url(#lg8)"/> | |
280 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(6.39,115.24)" id="shape174" fill="url(#lg8)"/> | |
281 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(8.74,118.23)" id="shape175" fill="url(#lg8)"/> | |
282 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(6.55,110.77)" id="shape176" fill="url(#lg9)"/> | |
283 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(12.99,107.8)" id="shape177" fill="url(#lg9)"/> | |
284 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(15.06,105.94)" id="shape178" fill="url(#lg9)"/> | |
285 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(12.8,101.93)" id="shape179" fill="url(#lg9)"/> | |
286 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(15.06,100.35)" id="shape180" fill="url(#lg9)"/> | |
287 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(11.68,104.81)" id="shape181" fill="url(#lg9)"/> | |
288 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(9.06,105.94)" id="shape182" fill="url(#lg9)"/> | |
289 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(9.06,113.58)" id="shape183" fill="url(#lg8)"/> | |
290 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(6.88,101.46)" id="shape184" fill="url(#lg9)"/> | |
291 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(7.68,97.93)" id="shape185" fill="url(#lg9)"/> | |
292 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(10.91,96.81)" id="shape186" fill="url(#lg9)"/> | |
293 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(13.93,121.78)" id="shape187" fill="url(#lg8)"/> | |
294 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(6.55,105.39)" id="shape188" fill="url(#lg9)"/> | |
295 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(9.59,109.47)" id="shape189" fill="url(#lg9)"/> | |
296 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(6.55,93.46)" id="shape190" fill="url(#lg9)"/> | |
297 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(13.76,97.93)" id="shape191" fill="url(#lg9)"/> | |
298 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(9.59,93.92)" id="shape192" fill="url(#lg9)"/> | |
299 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(14.11,94.58)" id="shape193" fill="url(#lg9)"/> | |
300 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(14.55,91.22)" id="shape194" fill="url(#lg9)"/> | |
301 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(11,91.22)" id="shape195" fill="url(#lg9)"/> | |
302 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(8.46,91.22)" id="shape196" fill="url(#lg9)"/> | |
303 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(6.55,88.89)" id="shape197" fill="url(#lg9)"/> | |
304 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(9.22,88.24)" id="shape198" fill="url(#lg9)"/> | |
305 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(13.52,87.77)" id="shape199" fill="url(#lg9)"/> | |
306 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(7.54,85.54)" id="shape200" fill="url(#lg9)"/> | |
307 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(11.27,86)" id="shape201" fill="url(#lg9)"/> | |
308 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(9.59,100.91)" id="shape202" fill="url(#lg9)"/> | |
309 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(11.27,125.42)" id="shape203" fill="url(#lg8)"/> | |
310 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(27.34,122.9)" id="shape204" fill="url(#lg8)"/> | |
311 | + <path d="M0,0L3,0L3,15L0,15L0,0z" transform="translate(19.44,1.36)" id="shape205" fill="#717070"/> | |
312 | + <g transform="translate(7.7,4.5)"> | |
313 | + <g transform="translate(17.74,-0.03)"> | |
314 | + <path d="M0,4.3C0,1.9,2,0,4.4,0C6.8,0,8.7,1.9,8.7,4.3C8.7,6.8,6.8,8.7,4.4,8.7C2,8.7,0,6.8,0,4.3z" stroke="#595757" transform="translate(-0.01,0)" id="shape206" fill="#595757"/> | |
315 | + <path d="M0,3.9C0,1.7,1.7,0,3.9,0C6,0,7.7,1.7,7.7,3.9C7.7,6,6,7.7,3.9,7.7C1.7,7.7,0,6,0,3.9z" transform="translate(0.49,0.5)" id="shape207" fill="#9e9f9f"/> | |
316 | + <path d="M.2,0" stroke="#000000" transform="matrix(0.98,0.17,-0.17,0.98,6.7,1.8)" id="shape208" fill="none"/> | |
317 | + <path d="M0,0" stroke="#000000" transform="matrix(0,-1,1,0,7.5,4.3)" id="shape209" fill="none"/> | |
318 | + <path d="M0,0" stroke="#000000" transform="translate(4.32,0.79)" id="shape210" fill="none"/> | |
319 | + <path d="M0,0" stroke="#000000" transform="matrix(0,-1,1,0,0.7,4.3)" id="shape211" fill="none"/> | |
320 | + <path d="M0,0" stroke="#000000" transform="translate(1.87,1.75)" id="shape212" fill="none"/> | |
321 | + <path d="M4.2,4.9C5.9,2.3,3.9,0,3.9,0C5.3,.6,6.3,2,6.3,3.7C6.3,5.9,4.5,7.6,2.3,7.6C1.5,7.6,.7,7.4,0,6.9C.1,7,2.4,7.6,4.2,4.9z" transform="translate(2.04,0.64)" fill-opacity="0.36" id="shape213" fill="#ffffff"/> | |
322 | + <g transform="matrix(0.87,-0.5,-0.5,-0.87,1.4,6.2)"> | |
323 | + <path d="M-0.2,.3L3,.4C3,.4,4,.5,4.5,.2C4.5,.2,4.8,.2,4.8,.4C4.7,1,4.6,1.3,4.4,1.1C4.4,1.1,3.8,.7,2.9,.7L-0.2,.3z" stroke="#000000" transform="translate(0.16,-0.21)" id="shape214" fill="#000000"/> | |
324 | + <path d="M.1,.1C.2,-0,.4,-0,.5,.1C.7,.2,.7,.4,.5,.5C.4,.7,.2,.7,.1,.5C-0,.4,-0,.2,.1,.1z" stroke="#000000" transform="translate(3.13,0.06)" id="shape215" fill="#000000"/> | |
325 | + <path d="M.1,.1C.1,-0,.3,-0,.3,.1C.4,.1,.4,.3,.3,.3C.3,.4,.1,.4,.1,.3C-0,.3,-0,.1,.1,.1z" transform="translate(3.25,0.18)" id="shape216" fill="url(#lg10)"/> | |
326 | + </g> | |
327 | + </g> | |
328 | + <g transform="translate(-0.01,-0.03)"> | |
329 | + <path d="M0,4.3C0,1.9,2,0,4.4,0C6.8,0,8.7,1.9,8.7,4.3C8.7,6.8,6.8,8.7,4.4,8.7C2,8.7,0,6.8,0,4.3z" stroke="#595757" transform="translate(-0.01,0)" id="shape217" fill="#595757"/> | |
330 | + <path d="M0,3.9C0,1.7,1.7,0,3.9,0C6,0,7.7,1.7,7.7,3.9C7.7,6,6,7.7,3.9,7.7C1.7,7.7,0,6,0,3.9z" transform="translate(0.49,0.5)" id="shape218" fill="#9e9f9f"/> | |
331 | + <path d="M.2,0" stroke="#000000" transform="matrix(0.98,0.17,-0.17,0.98,6.7,1.8)" id="shape219" fill="none"/> | |
332 | + <path d="M0,0" stroke="#000000" transform="matrix(0,-1,1,0,7.5,4.3)" id="shape220" fill="none"/> | |
333 | + <path d="M0,0" stroke="#000000" transform="translate(4.32,0.79)" id="shape221" fill="none"/> | |
334 | + <path d="M0,0" stroke="#000000" transform="matrix(0,-1,1,0,0.7,4.3)" id="shape222" fill="none"/> | |
335 | + <path d="M0,0" stroke="#000000" transform="translate(1.87,1.75)" id="shape223" fill="none"/> | |
336 | + <path d="M4.2,4.9C5.9,2.3,3.9,0,3.9,0C5.3,.6,6.3,2,6.3,3.7C6.3,5.9,4.5,7.6,2.3,7.6C1.5,7.6,.7,7.4,0,6.9C.1,7,2.4,7.6,4.2,4.9z" transform="translate(2.04,0.64)" fill-opacity="0.36" id="shape224" fill="#ffffff"/> | |
337 | + <g transform="matrix(0.87,-0.5,-0.5,-0.87,1.4,6.2)"> | |
338 | + <path d="M-0.2,.3L3,.4C3,.4,4,.5,4.5,.2C4.5,.2,4.8,.2,4.8,.4C4.7,1,4.6,1.3,4.4,1.1C4.4,1.1,3.8,.7,2.9,.7L-0.2,.3z" stroke="#000000" transform="translate(0.16,-0.21)" id="shape225" fill="#000000"/> | |
339 | + <path d="M.1,.1C.2,-0,.4,-0,.5,.1C.7,.2,.7,.4,.5,.5C.4,.7,.2,.7,.1,.5C-0,.4,-0,.2,.1,.1z" stroke="#000000" transform="translate(3.13,0.06)" id="shape226" fill="#000000"/> | |
340 | + <path d="M.1,.1C.1,-0,.3,-0,.3,.1C.4,.1,.4,.3,.3,.3C.3,.4,.1,.4,.1,.3C-0,.3,-0,.1,.1,.1z" transform="translate(3.25,0.18)" id="shape227" fill="url(#lg10)"/> | |
341 | + </g> | |
342 | + </g> | |
343 | + </g> | |
344 | + <path d="M2.9,12.4C2.9,12.4,7.5,6.4,9.1,5.8C10.7,5.1,15.7,3.5,20.2,1.1C24.7,-1.3,35.4,0,42.3,5.3C49.2,10.6,49.9,19.1,48.6,28.2C48.6,28.2,48.2,31.2,49.5,34.1C50.8,37,48.1,38.6,48.6,42.8C49,46.9,51.3,68.9,45.2,73.5C45.2,73.5,41.3,76.6,40.8,77.8C40.4,79.1,32.6,82,28.8,83.6C24.9,85.2,21.4,84.2,16.4,82.5C11.4,80.7,5.6,75.8,.4,66.6C.4,66.6,-0.2,66,.8,63.6C.8,63.6,.8,60.5,.3,59.6C-0.2,58.6,-0.2,55.9,.8,53.7C1.7,51.4,.8,46.3,.8,46.3C.8,46.3,-0.4,27.9,.8,21.5C1.9,15.1,2.7,13,2.9,12.4z" transform="translate(75.78,117.69)" id="shape228" fill="#96689f"/> | |
345 | + <path d="M2.8,12C2.8,12,7.3,6.2,8.9,5.6C10.4,5,15.3,3.4,19.6,1.1C24,-1.2,34.3,0,41,5.1C47.7,10.3,48.4,18.5,47.1,27.4C47.1,27.4,46.8,30.3,48,33.1C49.3,35.9,46.6,37.5,47.1,41.5C47.6,45.5,49.8,66.8,43.8,71.3C43.8,71.3,40.1,74.3,39.6,75.5C39.1,76.8,31.7,79.5,27.9,81.1C24.2,82.7,20.7,81.7,15.9,80C11.1,78.3,5.4,73.5,.4,64.6C.4,64.6,-0.2,64,.8,61.7C.8,61.7,.8,58.7,.3,57.8C-0.2,56.9,-0.2,54.2,.8,52.1C1.7,49.9,.8,44.9,.8,44.9C.8,44.9,-0.3,27,.8,20.8C1.8,14.6,2.6,12.6,2.8,12z" transform="translate(76.53,118.95)" id="shape229" fill="#bea4c9"/> | |
346 | + <path d="M47.8,.3C48,7.7,47.3,16.1,43.8,18.8C43.8,18.8,40.1,21.7,39.6,23C39.1,24.2,31.6,27,27.9,28.6C24.2,30.1,20.7,29.2,15.9,27.5C11,25.8,5.4,20.9,.4,12C.4,12,-0.2,11.5,.7,9.1C.7,9.1,.7,6.2,.3,5.3C-0.2,4.3,-0.1,1.6,.7,0C.7,.3,47.8,.3,47.8,.3z" transform="translate(76.56,171.5)" id="shape230" fill="#806fb9"/> | |
347 | + <path d="M42,0L42,12.4C42,12.9,41.4,13.4,40.6,13.4L1.3,13.4C.6,13.4,0,12.9,0,12.4L0,0L42,0z" transform="translate(-0.01,206.61)" id="shape231" fill="url(#lg5)"/> | |
348 | + <path d="M0,0L7.3,0L7.3,149.7L0,149.7L0,0z" transform="translate(17.31,37.35)" id="shape232" fill="#fbf4f9"/> | |
349 | + <path d="M0,0L65.3,0L65.3,3.4L0,3.4L0,0z" transform="translate(66.67,112.45)" id="shape233" fill="url(#lg1)"/> | |
350 | + <g transform="translate(17.84,45.79)"> | |
351 | + <path d="M6.2,10.4L3.1,15.8L0,10.4L1.8,10.4L1.8,0L4.4,0L4.4,10.4L6.2,10.4z" transform="matrix(1,0,0,-1,0,15.8)" id="shape234" fill="#123c9c"/> | |
352 | + <path d="M6.2,10.4L3.1,15.8L0,10.4L1.8,10.4L1.8,0L4.4,0L4.4,10.4L6.2,10.4z" transform="matrix(1,0,0,-1,0,55.5)" id="shape235" fill="#123c9c"/> | |
353 | + <path d="M6.2,10.4L3.1,15.8L0,10.4L1.8,10.4L1.8,0L4.4,0L4.4,10.4L6.2,10.4z" transform="matrix(1,0,0,-1,0,95.3)" id="shape236" fill="#123c9c"/> | |
354 | + <path d="M6.2,10.4L3.1,15.8L0,10.4L1.8,10.4L1.8,0L4.4,0L4.4,10.4L6.2,10.4z" transform="matrix(1,0,0,-1,0,135)" id="shape237" fill="#123c9c"/> | |
355 | + </g> | |
356 | + <g transform="translate(8.09,64.99)"> | |
357 | + <path d="M6.2,10.4L3.1,15.8L0,10.4L1.8,10.4L1.8,0L4.4,0L4.4,10.4L6.2,10.4z" transform="translate(0.01,-0)" id="shape238" fill="#123c9c"/> | |
358 | + <path d="M6.2,10.4L3.1,15.8L0,10.4L1.8,10.4L1.8,0L4.4,0L4.4,10.4L6.2,10.4z" transform="translate(19.93,0.37)" id="shape239" fill="#123c9c"/> | |
359 | + <path d="M6.2,7.6L3.1,12.9L0,7.6L1.8,7.6L1.8,0L4.5,0L4.4,7.6L6.2,7.6z" transform="translate(19.45,43.99)" id="shape240" fill="#123c9c"/> | |
360 | + <path d="M6.2,7.6L3.1,12.9L0,7.6L1.8,7.6L1.8,0L4.5,0L4.4,7.6L6.2,7.6z" transform="translate(0.01,43.23)" id="shape241" fill="#123c9c"/> | |
361 | + <path d="M6.2,10.4L3.1,15.8L0,10.4L1.8,10.4L1.8,0L4.4,0L4.4,10.4L6.2,10.4z" transform="translate(0.01,87.37)" id="shape242" fill="#123c9c"/> | |
362 | + <path d="M6.2,10.4L3.1,15.8L0,10.4L1.8,10.4L1.8,0L4.4,0L4.4,10.4L6.2,10.4z" transform="translate(19.45,87.74)" id="shape243" fill="#123c9c"/> | |
363 | + <path d="M6.2,4.3L3.1,9.6L0,4.3L1.8,4.3C1.8,4.3,1.8,1.2,1.8,1.2C1.8,-0.1,4.1,0,4.1,0L11.6,0L11.6,2.6L4.4,2.7L4.4,4.3L6.2,4.3z" transform="matrix(0,-1,1,0,-0,130)" id="shape244" fill="#123c9c"/> | |
364 | + <path d="M6.2,4.3L3.1,9.6L0,4.3L1.8,4.3C1.8,4.3,1.8,1.2,1.8,1.2C1.8,-0.1,4.1,0,4.1,0L11.6,0L11.6,2.6L4.4,2.7L4.4,4.3L6.2,4.3z" transform="matrix(0,-1,-1,0,25.6,130.1)" id="shape245" fill="#123c9c"/> | |
365 | + </g> | |
366 | + <path d="M39,0C39,0,35.2,3,34.8,4.2C34.3,5.4,26.8,8.2,23,9.8C19.3,11.3,15.9,10.4,11,8.7C6.2,7,4.5,5,0,.2L39,0z" transform="translate(81.39,190.28)" id="shape246" fill="#a99ecf"/> | |
367 | + <g transform="translate(77.35,136.38)"> | |
368 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(17.71,59.68)" id="shape247" fill="#f8f3fc"/> | |
369 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(14.82,59.21)" id="shape248" fill="#f8f3fc"/> | |
370 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(12.66,56.59)" id="shape249" fill="#f8f3fc"/> | |
371 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(14.82,54.76)" id="shape250" fill="#f8f3fc"/> | |
372 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(17.55,56.44)" id="shape251" fill="#f8f3fc"/> | |
373 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(20.38,58.6)" id="shape252" fill="#f8f3fc"/> | |
374 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(22.26,62)" id="shape253" fill="#f8f3fc"/> | |
375 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(20.38,55.98)" id="shape254" fill="#f8f3fc"/> | |
376 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(23.36,59.18)" id="shape255" fill="#f8f3fc"/> | |
377 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(26.61,60.29)" id="shape256" fill="#f8f3fc"/> | |
378 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(30.35,59.18)" id="shape257" fill="#f8f3fc"/> | |
379 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(27.7,57.05)" id="shape258" fill="#f8f3fc"/> | |
380 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(24.14,56.44)" id="shape259" fill="#f8f3fc"/> | |
381 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(10,53.68)" id="shape260" fill="#f8f3fc"/> | |
382 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(6.38,53.6)" id="shape261" fill="#f8f3fc"/> | |
383 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(9.84,56.91)" id="shape262" fill="#f8f3fc"/> | |
384 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(12.2,59.18)" id="shape263" fill="#f8f3fc"/> | |
385 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(12.82,53.6)" id="shape264" fill="#f8f3fc"/> | |
386 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(5.28,51.44)" id="shape265" fill="#f8f3fc"/> | |
387 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(2.91,50.08)" id="shape266" fill="#f8f3fc"/> | |
388 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(1.78,47.9)" id="shape267" fill="#f8f3fc"/> | |
389 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(0.71,45.42)" id="shape268" fill="#f8f3fc"/> | |
390 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(0.69,42.19)" id="shape269" fill="#f8f3fc"/> | |
391 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(3.84,44.95)" id="shape270" fill="#f8f3fc"/> | |
392 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(5.28,47.82)" id="shape271" fill="#f8f3fc"/> | |
393 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(7.47,50.08)" id="shape272" fill="#f8f3fc"/> | |
394 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(10.94,51.15)" id="shape273" fill="#f8f3fc"/> | |
395 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(14.82,51.15)" id="shape274" fill="#f8f3fc"/> | |
396 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(17.55,52.52)" id="shape275" fill="#f8f3fc"/> | |
397 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(21.17,52.52)" id="shape276" fill="#f8f3fc"/> | |
398 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(23.04,53.6)" id="shape277" fill="#f8f3fc"/> | |
399 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(26.61,54.68)" id="shape278" fill="#f8f3fc"/> | |
400 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(30.35,54.68)" id="shape279" fill="#f8f3fc"/> | |
401 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(31.45,57.05)" id="shape280" fill="#f8f3fc"/> | |
402 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(34.82,57.52)" id="shape281" fill="#f8f3fc"/> | |
403 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(36.82,54.68)" id="shape282" fill="#f8f3fc"/> | |
404 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(33.72,54.76)" id="shape283" fill="#f8f3fc"/> | |
405 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(34.82,52.23)" id="shape284" fill="#f8f3fc"/> | |
406 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(39.01,52.23)" id="shape285" fill="#f8f3fc"/> | |
407 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(31.45,52.23)" id="shape286" fill="#f8f3fc"/> | |
408 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(27.7,52.23)" id="shape287" fill="#f8f3fc"/> | |
409 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(24.46,51.15)" id="shape288" fill="#f8f3fc"/> | |
410 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(21.94,49)" id="shape289" fill="#f8f3fc"/> | |
411 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(18.81,50.08)" id="shape290" fill="#f8f3fc"/> | |
412 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(16.61,49)" id="shape291" fill="#f8f3fc"/> | |
413 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(13.29,49.02)" id="shape292" fill="#f8f3fc"/> | |
414 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(10,47.88)" id="shape293" fill="#f8f3fc"/> | |
415 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(7.47,46.09)" id="shape294" fill="#f8f3fc"/> | |
416 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(6.38,43.33)" id="shape295" fill="#f8f3fc"/> | |
417 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(3.84,41.17)" id="shape296" fill="#f8f3fc"/> | |
418 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(0.71,38.06)" id="shape297" fill="#f8f3fc"/> | |
419 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(3.84,37.82)" id="shape298" fill="#f8f3fc"/> | |
420 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(6.38,40.15)" id="shape299" fill="#f8f3fc"/> | |
421 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(9.84,42.25)" id="shape300" fill="#f8f3fc"/> | |
422 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(11.57,45.01)" id="shape301" fill="#f8f3fc"/> | |
423 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(14.82,46.09)" id="shape302" fill="#f8f3fc"/> | |
424 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(18.18,45.48)" id="shape303" fill="#f8f3fc"/> | |
425 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(21.94,46.03)" id="shape304" fill="#f8f3fc"/> | |
426 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(25.23,46.03)" id="shape305" fill="#f8f3fc"/> | |
427 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(24.14,48)" id="shape306" fill="#f8f3fc"/> | |
428 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(26.61,49.06)" id="shape307" fill="#f8f3fc"/> | |
429 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(30.35,49.06)" id="shape308" fill="#f8f3fc"/> | |
430 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(29.26,47.11)" id="shape309" fill="#f8f3fc"/> | |
431 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(33.72,50.03)" id="shape310" fill="#f8f3fc"/> | |
432 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(32.63,47.11)" id="shape311" fill="#f8f3fc"/> | |
433 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(35.72,48.12)" id="shape312" fill="#f8f3fc"/> | |
434 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(36.82,50.43)" id="shape313" fill="#f8f3fc"/> | |
435 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(40.11,49.14)" id="shape314" fill="#f8f3fc"/> | |
436 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(41.59,51.05)" id="shape315" fill="#f8f3fc"/> | |
437 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(42.69,48.12)" id="shape316" fill="#f8f3fc"/> | |
438 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(43.78,45.01)" id="shape317" fill="#f8f3fc"/> | |
439 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(40.49,46.03)" id="shape318" fill="#f8f3fc"/> | |
440 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(37.92,45.48)" id="shape319" fill="#f8f3fc"/> | |
441 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(34.82,45.48)" id="shape320" fill="#f8f3fc"/> | |
442 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(30.35,44)" id="shape321" fill="#f8f3fc"/> | |
443 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(27.7,43.33)" id="shape322" fill="#f8f3fc"/> | |
444 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(24.46,43.27)" id="shape323" fill="#f8f3fc"/> | |
445 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(20.84,43.27)" id="shape324" fill="#f8f3fc"/> | |
446 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(17.08,42.98)" id="shape325" fill="#f8f3fc"/> | |
447 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(13.29,42.98)" id="shape326" fill="#f8f3fc"/> | |
448 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(12.66,41.23)" id="shape327" fill="#f8f3fc"/> | |
449 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(9.84,39.14)" id="shape328" fill="#f8f3fc"/> | |
450 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(13.72,38.83)" id="shape329" fill="#f8f3fc"/> | |
451 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(15.91,40.15)" id="shape330" fill="#f8f3fc"/> | |
452 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(18.81,41.17)" id="shape331" fill="#f8f3fc"/> | |
453 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(22.26,40.22)" id="shape332" fill="#f8f3fc"/> | |
454 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(25.51,40.15)" id="shape333" fill="#f8f3fc"/> | |
455 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(29.26,40.22)" id="shape334" fill="#f8f3fc"/> | |
456 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(32.55,41.96)" id="shape335" fill="#f8f3fc"/> | |
457 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(35.92,42.31)" id="shape336" fill="#f8f3fc"/> | |
458 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(39.39,42.98)" id="shape337" fill="#f8f3fc"/> | |
459 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(42.69,42.98)" id="shape338" fill="#f8f3fc"/> | |
460 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(43.78,39.2)" id="shape339" fill="#f8f3fc"/> | |
461 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(40.49,39.85)" id="shape340" fill="#f8f3fc"/> | |
462 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(37.02,39.85)" id="shape341" fill="#f8f3fc"/> | |
463 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(33.64,38.83)" id="shape342" fill="#f8f3fc"/> | |
464 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(31.45,37.82)" id="shape343" fill="#f8f3fc"/> | |
465 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(26.61,37.05)" id="shape344" fill="#f8f3fc"/> | |
466 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(23.36,37.05)" id="shape345" fill="#f8f3fc"/> | |
467 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(20.07,38.18)" id="shape346" fill="#f8f3fc"/> | |
468 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(17.08,37.05)" id="shape347" fill="#f8f3fc"/> | |
469 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(11.57,36.8)" id="shape348" fill="#f8f3fc"/> | |
470 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(7.47,37.17)" id="shape349" fill="#f8f3fc"/> | |
471 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(0.71,35.78)" id="shape350" fill="#f8f3fc"/> | |
472 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(1.48,32.75)" id="shape351" fill="#f8f3fc"/> | |
473 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(0.4,30.26)" id="shape352" fill="#f8f3fc"/> | |
474 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(0.38,27.03)" id="shape353" fill="#f8f3fc"/> | |
475 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(3.54,29.79)" id="shape354" fill="#f8f3fc"/> | |
476 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(4.97,32.66)" id="shape355" fill="#f8f3fc"/> | |
477 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(9.69,32.72)" id="shape356" fill="#f8f3fc"/> | |
478 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(7.17,30.93)" id="shape357" fill="#f8f3fc"/> | |
479 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(6.07,28.17)" id="shape358" fill="#f8f3fc"/> | |
480 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(3.54,26.01)" id="shape359" fill="#f8f3fc"/> | |
481 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(0.4,22.91)" id="shape360" fill="#f8f3fc"/> | |
482 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(3.54,22.66)" id="shape361" fill="#f8f3fc"/> | |
483 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(6.07,24.99)" id="shape362" fill="#f8f3fc"/> | |
484 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(9.53,27.09)" id="shape363" fill="#f8f3fc"/> | |
485 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(11.26,29.85)" id="shape364" fill="#f8f3fc"/> | |
486 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(14.51,30.93)" id="shape365" fill="#f8f3fc"/> | |
487 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(17.87,30.32)" id="shape366" fill="#f8f3fc"/> | |
488 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(21.63,30.87)" id="shape367" fill="#f8f3fc"/> | |
489 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(24.93,30.87)" id="shape368" fill="#f8f3fc"/> | |
490 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(23.83,32.84)" id="shape369" fill="#f8f3fc"/> | |
491 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(28.95,31.95)" id="shape370" fill="#f8f3fc"/> | |
492 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(32.32,31.95)" id="shape371" fill="#f8f3fc"/> | |
493 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(35.41,32.97)" id="shape372" fill="#f8f3fc"/> | |
494 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(42.38,32.97)" id="shape373" fill="#f8f3fc"/> | |
495 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(43.48,29.85)" id="shape374" fill="#f8f3fc"/> | |
496 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(40.18,30.87)" id="shape375" fill="#f8f3fc"/> | |
497 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(37.61,30.32)" id="shape376" fill="#f8f3fc"/> | |
498 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(34.51,30.32)" id="shape377" fill="#f8f3fc"/> | |
499 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(30.05,28.84)" id="shape378" fill="#f8f3fc"/> | |
500 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(27.4,28.17)" id="shape379" fill="#f8f3fc"/> | |
501 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(24.15,28.11)" id="shape380" fill="#f8f3fc"/> | |
502 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(20.54,28.11)" id="shape381" fill="#f8f3fc"/> | |
503 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(16.78,27.82)" id="shape382" fill="#f8f3fc"/> | |
504 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(12.99,27.82)" id="shape383" fill="#f8f3fc"/> | |
505 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(12.36,26.07)" id="shape384" fill="#f8f3fc"/> | |
506 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(9.53,23.98)" id="shape385" fill="#f8f3fc"/> | |
507 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(13.41,23.67)" id="shape386" fill="#f8f3fc"/> | |
508 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(15.61,24.99)" id="shape387" fill="#f8f3fc"/> | |
509 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(18.5,26.01)" id="shape388" fill="#f8f3fc"/> | |
510 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(21.96,25.06)" id="shape389" fill="#f8f3fc"/> | |
511 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(25.2,24.99)" id="shape390" fill="#f8f3fc"/> | |
512 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(28.95,25.06)" id="shape391" fill="#f8f3fc"/> | |
513 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(32.24,26.81)" id="shape392" fill="#f8f3fc"/> | |
514 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(35.61,27.15)" id="shape393" fill="#f8f3fc"/> | |
515 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(39.09,27.82)" id="shape394" fill="#f8f3fc"/> | |
516 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(42.38,27.82)" id="shape395" fill="#f8f3fc"/> | |
517 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(43.48,24.04)" id="shape396" fill="#f8f3fc"/> | |
518 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(40.18,24.69)" id="shape397" fill="#f8f3fc"/> | |
519 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(36.71,24.69)" id="shape398" fill="#f8f3fc"/> | |
520 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(33.34,23.67)" id="shape399" fill="#f8f3fc"/> | |
521 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(31.14,22.66)" id="shape400" fill="#f8f3fc"/> | |
522 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(26.3,21.89)" id="shape401" fill="#f8f3fc"/> | |
523 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(23.05,21.89)" id="shape402" fill="#f8f3fc"/> | |
524 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(19.76,23.02)" id="shape403" fill="#f8f3fc"/> | |
525 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(16.78,21.89)" id="shape404" fill="#f8f3fc"/> | |
526 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(11.26,21.64)" id="shape405" fill="#f8f3fc"/> | |
527 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(7.17,22.01)" id="shape406" fill="#f8f3fc"/> | |
528 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(0.4,20.62)" id="shape407" fill="#f8f3fc"/> | |
529 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(42.38,36.33)" id="shape408" fill="#f8f3fc"/> | |
530 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(44.88,34.77)" id="shape409" fill="#f8f3fc"/> | |
531 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(37.89,37.34)" id="shape410" fill="#f8f3fc"/> | |
532 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(38.99,34.23)" id="shape411" fill="#f8f3fc"/> | |
533 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(35.7,35.25)" id="shape412" fill="#f8f3fc"/> | |
534 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(33.12,34.7)" id="shape413" fill="#f8f3fc"/> | |
535 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(30.03,34.7)" id="shape414" fill="#f8f3fc"/> | |
536 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(12.62,33.68)" id="shape415" fill="#f8f3fc"/> | |
537 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(17.4,33.8)" id="shape416" fill="#f8f3fc"/> | |
538 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(14.82,36.03)" id="shape417" fill="#f8f3fc"/> | |
539 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(20.84,34.23)" id="shape418" fill="#f8f3fc"/> | |
540 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(27.4,34.23)" id="shape419" fill="#f8f3fc"/> | |
541 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(7.47,34.7)" id="shape420" fill="#f8f3fc"/> | |
542 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(4.97,35.31)" id="shape421" fill="#f8f3fc"/> | |
543 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(4.63,20.62)" id="shape422" fill="#f8f3fc"/> | |
544 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(35.41,22.01)" id="shape423" fill="#f8f3fc"/> | |
545 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(38.71,21.89)" id="shape424" fill="#f8f3fc"/> | |
546 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(41.59,21.64)" id="shape425" fill="#f8f3fc"/> | |
547 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(1.1,15.32)" id="shape426" fill="#f8f3fc"/> | |
548 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(0.02,12.83)" id="shape427" fill="#f8f3fc"/> | |
549 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(-0,9.6)" id="shape428" fill="#f8f3fc"/> | |
550 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(3.16,12.37)" id="shape429" fill="#f8f3fc"/> | |
551 | + <path d="M0,1.1C0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,0,1.7,0,1.1z" transform="translate(4.59,15.23)" id="shape430" fill="#f8f3fc"/> | |
552 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(9.31,15.29)" id="shape431" fill="#f8f3fc"/> | |
553 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(6.79,13.5)" id="shape432" fill="#f8f3fc"/> | |
554 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(5.69,10.74)" id="shape433" fill="#f8f3fc"/> | |
555 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(3.16,8.59)" id="shape434" fill="#f8f3fc"/> | |
556 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(0.02,5.48)" id="shape435" fill="#f8f3fc"/> | |
557 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(3.16,5.23)" id="shape436" fill="#f8f3fc"/> | |
558 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(5.69,7.57)" id="shape437" fill="#f8f3fc"/> | |
559 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(9.15,9.66)" id="shape438" fill="#f8f3fc"/> | |
560 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(10.88,12.43)" id="shape439" fill="#f8f3fc"/> | |
561 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(14.13,13.5)" id="shape440" fill="#f8f3fc"/> | |
562 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(17.49,12.89)" id="shape441" fill="#f8f3fc"/> | |
563 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(21.25,13.44)" id="shape442" fill="#f8f3fc"/> | |
564 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(24.55,13.44)" id="shape443" fill="#f8f3fc"/> | |
565 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(23.45,15.41)" id="shape444" fill="#f8f3fc"/> | |
566 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(28.57,14.52)" id="shape445" fill="#f8f3fc"/> | |
567 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(31.94,14.52)" id="shape446" fill="#f8f3fc"/> | |
568 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(35.03,15.54)" id="shape447" fill="#f8f3fc"/> | |
569 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(42,15.54)" id="shape448" fill="#f8f3fc"/> | |
570 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(43.1,12.43)" id="shape449" fill="#f8f3fc"/> | |
571 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(39.8,13.44)" id="shape450" fill="#f8f3fc"/> | |
572 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(37.23,12.89)" id="shape451" fill="#f8f3fc"/> | |
573 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(34.13,12.89)" id="shape452" fill="#f8f3fc"/> | |
574 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(29.67,11.41)" id="shape453" fill="#f8f3fc"/> | |
575 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(27.02,10.74)" id="shape454" fill="#f8f3fc"/> | |
576 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(23.77,10.68)" id="shape455" fill="#f8f3fc"/> | |
577 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(20.16,10.68)" id="shape456" fill="#f8f3fc"/> | |
578 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(16.4,10.4)" id="shape457" fill="#f8f3fc"/> | |
579 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(12.61,10.4)" id="shape458" fill="#f8f3fc"/> | |
580 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(11.98,8.65)" id="shape459" fill="#f8f3fc"/> | |
581 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(9.15,6.55)" id="shape460" fill="#f8f3fc"/> | |
582 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(13.03,6.25)" id="shape461" fill="#f8f3fc"/> | |
583 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(15.23,7.57)" id="shape462" fill="#f8f3fc"/> | |
584 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(18.12,8.59)" id="shape463" fill="#f8f3fc"/> | |
585 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(21.58,7.63)" id="shape464" fill="#f8f3fc"/> | |
586 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(24.82,7.57)" id="shape465" fill="#f8f3fc"/> | |
587 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(28.57,7.63)" id="shape466" fill="#f8f3fc"/> | |
588 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(31.86,9.38)" id="shape467" fill="#f8f3fc"/> | |
589 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(35.23,9.72)" id="shape468" fill="#f8f3fc"/> | |
590 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(38.71,10.4)" id="shape469" fill="#f8f3fc"/> | |
591 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(42,10.4)" id="shape470" fill="#f8f3fc"/> | |
592 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(43.1,6.61)" id="shape471" fill="#f8f3fc"/> | |
593 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(39.8,7.26)" id="shape472" fill="#f8f3fc"/> | |
594 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(36.33,7.26)" id="shape473" fill="#f8f3fc"/> | |
595 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(33.43,6.71)" id="shape474" fill="#f8f3fc"/> | |
596 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(30.29,5.7)" id="shape475" fill="#f8f3fc"/> | |
597 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(25.92,4.46)" id="shape476" fill="#f8f3fc"/> | |
598 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(22.67,4.46)" id="shape477" fill="#f8f3fc"/> | |
599 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(19.38,5.6)" id="shape478" fill="#f8f3fc"/> | |
600 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(16.4,4.46)" id="shape479" fill="#f8f3fc"/> | |
601 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(11.35,4.21)" id="shape480" fill="#f8f3fc"/> | |
602 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(7.25,4.58)" id="shape481" fill="#f8f3fc"/> | |
603 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(1.43,3.2)" id="shape482" fill="#f8f3fc"/> | |
604 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(44.5,17.34)" id="shape483" fill="#f8f3fc"/> | |
605 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(38.61,16.8)" id="shape484" fill="#f8f3fc"/> | |
606 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(35.32,17.82)" id="shape485" fill="#f8f3fc"/> | |
607 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(32.74,17.27)" id="shape486" fill="#f8f3fc"/> | |
608 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(29.65,17.27)" id="shape487" fill="#f8f3fc"/> | |
609 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(12.24,16.25)" id="shape488" fill="#f8f3fc"/> | |
610 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(17.02,16.37)" id="shape489" fill="#f8f3fc"/> | |
611 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(20.46,16.8)" id="shape490" fill="#f8f3fc"/> | |
612 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(27.02,16.8)" id="shape491" fill="#f8f3fc"/> | |
613 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(7.09,17.27)" id="shape492" fill="#f8f3fc"/> | |
614 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(4.59,17.88)" id="shape493" fill="#f8f3fc"/> | |
615 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(4.72,3.2)" id="shape494" fill="#f8f3fc"/> | |
616 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(35.5,4.58)" id="shape495" fill="#f8f3fc"/> | |
617 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(38.33,4.46)" id="shape496" fill="#f8f3fc"/> | |
618 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(41.21,4.22)" id="shape497" fill="#f8f3fc"/> | |
619 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(10.63,18.9)" id="shape498" fill="#f8f3fc"/> | |
620 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(14.51,19.6)" id="shape499" fill="#f8f3fc"/> | |
621 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(18.97,19.6)" id="shape500" fill="#f8f3fc"/> | |
622 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(23.05,18.9)" id="shape501" fill="#f8f3fc"/> | |
623 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(25.92,19.6)" id="shape502" fill="#f8f3fc"/> | |
624 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(28.49,19.92)" id="shape503" fill="#f8f3fc"/> | |
625 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(32.55,19.92)" id="shape504" fill="#f8f3fc"/> | |
626 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(37.81,19.61)" id="shape505" fill="#f8f3fc"/> | |
627 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(41.59,18.59)" id="shape506" fill="#f8f3fc"/> | |
628 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(43.78,20.87)" id="shape507" fill="#f8f3fc"/> | |
629 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(2.06,18.28)" id="shape508" fill="#f8f3fc"/> | |
630 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(0.81,0.79)" id="shape509" fill="#f8f3fc"/> | |
631 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(4.41,0.54)" id="shape510" fill="#f8f3fc"/> | |
632 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(13.82,2.96)" id="shape511" fill="#f8f3fc"/> | |
633 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(34.68,2.02)" id="shape512" fill="#f8f3fc"/> | |
634 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(31.55,1.01)" id="shape513" fill="#f8f3fc"/> | |
635 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(27.65,1.17)" id="shape514" fill="#f8f3fc"/> | |
636 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(24.4,1.64)" id="shape515" fill="#f8f3fc"/> | |
637 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(21.11,1.37)" id="shape516" fill="#f8f3fc"/> | |
638 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(16.72,1.17)" id="shape517" fill="#f8f3fc"/> | |
639 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(12.61,0.45)" id="shape518" fill="#f8f3fc"/> | |
640 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(7.58,0.35)" id="shape519" fill="#f8f3fc"/> | |
641 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(9.45,2.27)" id="shape520" fill="#f8f3fc"/> | |
642 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(18.81,3.04)" id="shape521" fill="#f8f3fc"/> | |
643 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(36.76,0.35)" id="shape522" fill="#f8f3fc"/> | |
644 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(40.05,1.17)" id="shape523" fill="#f8f3fc"/> | |
645 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(42.94,-0.01)" id="shape524" fill="#f8f3fc"/> | |
646 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(28.74,3.56)" id="shape525" fill="#f8f3fc"/> | |
647 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(32.02,3.75)" id="shape526" fill="#f8f3fc"/> | |
648 | + <path d="M0,1C0,.4,.5,-0,1.1,-0C1.7,-0,2.2,.4,2.2,1C2.2,1.6,1.7,2,1.1,2C.5,2,0,1.6,0,1z" transform="translate(44.03,2.55)" id="shape527" fill="#f8f3fc"/> | |
649 | + </g> | |
650 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(15.38,183.87)" id="shape528" fill="url(#lg7)"/> | |
651 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(22.92,188.15)" id="shape529" fill="url(#lg7)"/> | |
652 | + <path d="M-0,1.1C-0,.5,.5,-0,1.1,-0C1.7,-0,2.2,.5,2.2,1.1C2.2,1.7,1.7,2.2,1.1,2.2C.5,2.2,-0,1.7,-0,1.1z" transform="translate(16.51,188.15)" id="shape530" fill="url(#lg7)"/> | |
653 | + <path d="M0,0L0,67.1L2.2,65.4L2.2,2.1L0,0z" transform="translate(118.14,124.88)" id="shape531" fill="url(#lg11)"/> | |
654 | + </g> | |
655 | +</svg> | ... | ... |
1 | +<svg viewBox="0 0 88 148.013" height="148" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="88"> | |
2 | + <defs> | |
3 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg1"> | |
4 | + <stop offset="0" stop-color="#a1b7c0"/> | |
5 | + <stop offset="0.15" stop-color="#dcf0f8"/> | |
6 | + <stop offset="0.25" stop-color="#def1f9"/> | |
7 | + <stop offset="0.52" stop-color="#b5ced7"/> | |
8 | + <stop offset="0.69" stop-color="#a1b7c0"/> | |
9 | + <stop offset="0.8" stop-color="#98adb5"/> | |
10 | + <stop offset="0.92" stop-color="#8fa3ab"/> | |
11 | + </linearGradient> | |
12 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg2"> | |
13 | + <stop offset="0" stop-color="#a1b7c0"/> | |
14 | + <stop offset="0.15" stop-color="#dcf0f8"/> | |
15 | + <stop offset="0.25" stop-color="#def1f9"/> | |
16 | + <stop offset="0.52" stop-color="#b5ced7"/> | |
17 | + <stop offset="0.69" stop-color="#a1b7c0"/> | |
18 | + <stop offset="0.8" stop-color="#98adb5"/> | |
19 | + <stop offset="0.92" stop-color="#8fa3ab"/> | |
20 | + </linearGradient> | |
21 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg3"> | |
22 | + <stop offset="0" stop-color="#92a6ae"/> | |
23 | + <stop offset="0.03" stop-color="#daeff8"/> | |
24 | + <stop offset="0.05" stop-color="#bed8e3"/> | |
25 | + <stop offset="0.64" stop-color="#bbd5df"/> | |
26 | + <stop offset="0.95" stop-color="#b7d0da"/> | |
27 | + <stop offset="1" stop-color="#879aa2"/> | |
28 | + </linearGradient> | |
29 | + <radialGradient fx="0" fy="4" gradientUnits="userSpaceOnUse" cx="0" cy="4" id="rg1" r="5.9"> | |
30 | + <stop offset="0" stop-color="#8fa3ab"/> | |
31 | + <stop offset="0.64" stop-color="#98adb5"/> | |
32 | + <stop offset="0.62" stop-color="#a1b7c0"/> | |
33 | + <stop offset="0.49" stop-color="#b5ced7"/> | |
34 | + <stop offset="0.32" stop-color="#def1f9"/> | |
35 | + <stop offset="0.1" stop-color="#dcf0f8"/> | |
36 | + <stop offset="1" stop-color="#84979e"/> | |
37 | + </radialGradient> | |
38 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg4"> | |
39 | + <stop offset="0" stop-color="#83a9b9"/> | |
40 | + <stop offset="0.15" stop-color="#c2e3f2"/> | |
41 | + <stop offset="0.25" stop-color="#c7e5f3"/> | |
42 | + <stop offset="0.52" stop-color="#93bed0"/> | |
43 | + <stop offset="0.69" stop-color="#83a9b9"/> | |
44 | + <stop offset="0.8" stop-color="#7b9faf"/> | |
45 | + <stop offset="0.92" stop-color="#7496a5"/> | |
46 | + </linearGradient> | |
47 | + <linearGradient x2="100%" y2="0%" x1="0%" y1="0%" id="lg5"> | |
48 | + <stop offset="0" stop-color="#2e2a29"/> | |
49 | + <stop offset="0.15" stop-color="#8f8e8e"/> | |
50 | + <stop offset="0.25" stop-color="#9a9999"/> | |
51 | + <stop offset="0.52" stop-color="#353130"/> | |
52 | + <stop offset="0.69" stop-color="#2e2a29"/> | |
53 | + <stop offset="0.8" stop-color="#2b2726"/> | |
54 | + <stop offset="0.92" stop-color="#282424"/> | |
55 | + </linearGradient> | |
56 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg6"> | |
57 | + <stop offset="0" stop-color="#434242"/> | |
58 | + <stop offset="0.15" stop-color="#989898"/> | |
59 | + <stop offset="0.25" stop-color="#a2a1a1"/> | |
60 | + <stop offset="0.52" stop-color="#4d4b4b"/> | |
61 | + <stop offset="0.69" stop-color="#434242"/> | |
62 | + <stop offset="0.8" stop-color="#3f3e3e"/> | |
63 | + <stop offset="0.92" stop-color="#3b3a3a"/> | |
64 | + </linearGradient> | |
65 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg7"> | |
66 | + <stop offset="0" stop-color="#c4aa84"/> | |
67 | + <stop offset="0.15" stop-color="#ffe0b3"/> | |
68 | + <stop offset="0.25" stop-color="#ffeed7"/> | |
69 | + <stop offset="0.44" stop-color="#dfc297"/> | |
70 | + <stop offset="0.6" stop-color="#c7ad86"/> | |
71 | + <stop offset="0.8" stop-color="#a89170"/> | |
72 | + <stop offset="0.97" stop-color="#998566"/> | |
73 | + <stop offset="1" stop-color="#cbb189"/> | |
74 | + </linearGradient> | |
75 | + <radialGradient fx="0" fy="4" gradientUnits="userSpaceOnUse" cx="0" cy="4" id="rg2" r="6"> | |
76 | + <stop offset="0" stop-color="#8fa3ab"/> | |
77 | + <stop offset="0.64" stop-color="#98adb5"/> | |
78 | + <stop offset="0.62" stop-color="#a1b7c0"/> | |
79 | + <stop offset="0.49" stop-color="#b5ced7"/> | |
80 | + <stop offset="0.32" stop-color="#def1f9"/> | |
81 | + <stop offset="0.1" stop-color="#dcf0f8"/> | |
82 | + <stop offset="1" stop-color="#84979e"/> | |
83 | + </radialGradient> | |
84 | + <linearGradient x2="0%" y2="0%" x1="0%" y1="100%" id="lg8"> | |
85 | + <stop offset="0" stop-color="#a1b7c0"/> | |
86 | + <stop offset="0.15" stop-color="#dcf0f8"/> | |
87 | + <stop offset="0.25" stop-color="#def1f9"/> | |
88 | + <stop offset="0.52" stop-color="#b5ced7"/> | |
89 | + <stop offset="0.69" stop-color="#a1b7c0"/> | |
90 | + <stop offset="0.8" stop-color="#98adb5"/> | |
91 | + <stop offset="0.92" stop-color="#8fa3ab"/> | |
92 | + </linearGradient> | |
93 | + <linearGradient x2="100%" y2="0%" x1="0%" y1="0%" id="lg9"> | |
94 | + <stop offset="0" stop-color="#8471a0"/> | |
95 | + <stop offset="0.15" stop-color="#b19dd1"/> | |
96 | + <stop offset="0.25" stop-color="#a895c6"/> | |
97 | + <stop offset="0.52" stop-color="#947fb4"/> | |
98 | + <stop offset="0.69" stop-color="#8471a0"/> | |
99 | + <stop offset="0.8" stop-color="#7c6a97"/> | |
100 | + <stop offset="0.92" stop-color="#75648e"/> | |
101 | + </linearGradient> | |
102 | + <linearGradient gradientUnits="userSpaceOnUse" x2="-0" y2="1" x1="1" y1="0" id="lg10"> | |
103 | + <stop offset="0" stop-color="#a1b7c0"/> | |
104 | + <stop offset="0.15" stop-color="#dcf0f8"/> | |
105 | + <stop offset="0.25" stop-color="#def1f9"/> | |
106 | + <stop offset="0.52" stop-color="#b5ced7"/> | |
107 | + <stop offset="0.69" stop-color="#a1b7c0"/> | |
108 | + <stop offset="0.8" stop-color="#98adb5"/> | |
109 | + <stop offset="0.92" stop-color="#8fa3ab"/> | |
110 | + </linearGradient> | |
111 | + <linearGradient x2="100%" y2="0%" x1="0%" y1="0%" id="lg11"> | |
112 | + <stop offset="0.15" stop-color="#9fa0a0"/> | |
113 | + <stop offset="0.25" stop-color="#979898"/> | |
114 | + <stop offset="0.52" stop-color="#8a8b8b"/> | |
115 | + <stop offset="0.69" stop-color="#7a7b7b"/> | |
116 | + <stop offset="0.8" stop-color="#737474"/> | |
117 | + <stop offset="0.92" stop-color="#6c6d6d"/> | |
118 | + </linearGradient> | |
119 | + </defs> | |
120 | + <g transform="translate(1,1.01)"> | |
121 | + <g transform="translate(83.31,122.2)"> | |
122 | + <path d="M0,0L.7,4.3L0,0z" transform="translate(1.79,0)" id="shape2" fill="url(#lg1)"/> | |
123 | + <path d="M0,0L1.4,0L1.4,1.8L0,1.8L0,0z" transform="translate(1.29,1.24)" id="shape3" fill="url(#lg1)"/> | |
124 | + </g> | |
125 | + <path d="M0,0L70.1,0L70.1,112L0,112L0,0z" transform="translate(6.96,11.88)" id="shape4" fill="url(#lg1)"/> | |
126 | + <path d="M0,0L1.2,0L1.2,100.7L0,100.7L0,0z" transform="translate(81.3,22.28)" id="shape5" fill="url(#lg1)"/> | |
127 | + <path d="M0,0L2.3,0L2.3,2.7L0,2.7L0,0z" transform="translate(77.07,14.96)" id="shape6" fill="url(#lg2)"/> | |
128 | + <path d="M1.5,0L11.4,0C12.2,0,12.9,.7,12.9,1.5L12.9,9.5C12.9,10.3,12.2,11,11.4,11L1.5,11C.7,11,-0,10.3,-0,9.5L-0,1.5C-0,.7,.7,0,1.5,0z" transform="translate(11.95,85.94)" id="shape7" fill="url(#lg3)"/> | |
129 | + <path d="M0,-0C0,-0,2.1,0,3.1,1.2C4.1,2.4,4,4.3,4,4.3L1.2,4.3C1.2,4.3,1.2,3.2,0,2.7L0,-0z" transform="translate(79.26,14.96)" id="shape8" fill="url(#rg1)"/> | |
130 | + <path d="M0,0L70.1,0C70.1,0,69.2,10.4,35.2,10.4C1.1,10.4,0,0,0,0z" transform="matrix(1,0,0,-1,7,10.4)" id="shape9" fill="url(#lg1)"/> | |
131 | + <path d="M0,0L70.1,0L70.1,1.8L0,1.8L0,0z" transform="translate(6.96,10.39)" id="shape10" fill="url(#lg4)"/> | |
132 | + <path d="M0,0L70.1,0C70.1,0,69.2,10.4,35.2,10.4C1.1,10.4,0,0,0,0z" transform="translate(6.96,125.69)" id="shape11" fill="url(#lg1)"/> | |
133 | + <path d="M0,0L70.1,0L70.1,2.1L0,2.1L0,0z" transform="translate(6.96,123.55)" id="shape12" fill="url(#lg4)"/> | |
134 | + <path d="M17.9,.4C17.9,.4,25,-1,34.7,1.6C34.7,1.6,38.9,2,37.3,9.2C35.6,16.3,35.8,17.3,37.8,21.7C37.8,21.7,39.7,24.1,36.8,28.2C33.8,32.3,36.1,39.5,37.8,44.6C39.4,49.7,36.8,59.6,36.8,59.6C36.8,59.6,34.5,65,37.8,70.8C37.8,70.8,40.5,76,35,83.6C29.6,91.1,36.3,101.3,36.3,101.3C36.3,101.3,40.5,107.5,30.9,109.2C21.3,111,8.5,110.6,4.1,109.6C4.1,109.6,1.1,109.3,1.1,105.4C1.1,101.4,1.1,99.8,.6,98.7C.1,97.6,-1.6,94,4.7,89.2C11,84.3,19.1,81.4,18.2,73.7C18.2,73.7,17.6,70,16.6,68.6C16.6,68.6,12,57.5,16.4,50.3C16.4,50.3,18.4,45.9,15.3,40C15.3,40,12.3,33.6,16.6,28.5C21,23.4,17.4,13.1,15.6,8.5C13.9,4,15.8,.4,17.9,.4z" transform="translate(37.45,12.75)" id="shape13" fill="url(#lg5)"/> | |
135 | + <path d="M0,0L1.3,0L1.3,2L0,2L0,0z" transform="translate(10.69,88.21)" id="shape14" fill="url(#lg6)"/> | |
136 | + <path d="M0,0L1.3,0L1.3,2L0,2L0,0z" transform="translate(10.69,93.06)" id="shape15" fill="url(#lg6)"/> | |
137 | + <g transform="translate(35.04,47.05)"> | |
138 | + <path d="M0,6.8C0,3,3.1,0,6.8,0C10.6,0,13.7,3,13.7,6.8C13.7,10.6,10.6,13.6,6.8,13.6C3.1,13.6,0,10.6,0,6.8z" stroke="#000000" id="shape16" fill="#000000"/> | |
139 | + <path d="M0,6C0,2.7,2.7,0,6.1,0C9.4,0,12.1,2.7,12.1,6C12.1,9.4,9.4,12.1,6.1,12.1C2.7,12.1,0,9.4,0,6z" transform="translate(0.78,0.77)" id="shape17" fill="#ebeae9"/> | |
140 | + <path d="M4,0C5.3,1.1,6.1,2.7,6.1,4.5C6.1,7.8,3.3,10.5,0,10.5L0,4.5C0,4.5,4,0,4,0z" transform="translate(6.85,2.3)" id="shape18" fill="#f0909b"/> | |
141 | + <path d="M.4,0" stroke="#000000" transform="matrix(0.98,0.17,-0.17,0.98,10.5,2.9)" id="shape19" fill="none"/> | |
142 | + <path d="M0,0" stroke="#000000" transform="matrix(0,-1,1,0,11.7,6.8)" id="shape20" fill="none"/> | |
143 | + <path d="M0,0" stroke="#000000" transform="translate(6.79,1.25)" id="shape21" fill="none"/> | |
144 | + <path d="M0,0" stroke="#000000" transform="matrix(0,-1,1,0,1,6.8)" id="shape22" fill="none"/> | |
145 | + <path d="M0,0" stroke="#000000" transform="translate(2.95,2.74)" id="shape23" fill="none"/> | |
146 | + <path d="M10.7,-0C9.7,1.9,7.7,3.2,5.4,3.2C3,3.2,1,1.9,0,-0C0,.1,10.7,.1,10.7,-0z" transform="translate(1.48,9.65)" id="shape24" fill="#b4b5b5"/> | |
147 | + <path d="M6.6,7.7C9.3,3.5,6.1,0,6.1,0C8.4,1,9.9,3.2,9.9,5.7C9.9,9.2,7.1,12,3.6,12C2.3,12,1,11.5,0,10.8C.1,11,3.8,11.8,6.6,7.7z" transform="translate(3.2,1)" fill-opacity="0.11" id="shape25" fill="#ffffff"/> | |
148 | + <g transform="matrix(0.87,-0.5,-0.5,-0.87,2.2,9.7)"> | |
149 | + <path d="M-0.3,.4L4.7,.7C4.7,.7,6.3,.8,7.1,.3C7.1,.3,7.5,.2,7.5,.7C7.4,1.5,7.2,2,6.9,1.7C6.9,1.7,6,1.1,4.6,1L-0.3,.4z" stroke="#000000" transform="translate(0.25,-0.33)" id="shape26" fill="#000000"/> | |
150 | + <path d="M.1,.1C.3,-0,.7,-0.1,.9,.1C1,.3,1,.7,.9,.8C.7,1,.3,1,.1,.8C-0,.7,-0,.3,.1,.1z" stroke="#000000" transform="translate(4.9,0.09)" id="shape27" fill="#000000"/> | |
151 | + <path d="M.1,.1C.2,-0,.4,-0,.5,.1C.6,.2,.6,.4,.5,.5C.4,.6,.2,.6,.1,.5C-0,.4,-0,.2,.1,.1z" transform="translate(5.1,0.28)" id="shape28" fill="url(#lg7)"/> | |
152 | + </g> | |
153 | + </g> | |
154 | + <path d="M5.3,2.4C5.3,2.4,1.3,3.1,1.4,-0C1.4,-0,-0.8,-0,.2,2.7C.2,2.7,1,4.4,5.3,4.4L5.3,2.4z" transform="translate(5.4,90.66)" id="shape29" fill="#3e3938"/> | |
155 | + <path d="M5.3,2.4C5.3,2.4,1.4,2.9,1.4,-0C1.4,-0,-0.8,-0,.2,2.7C.2,2.7,1,4.4,5.3,4.4L5.3,2.4z" transform="translate(5.4,85.81)" id="shape30" fill="#3e3938"/> | |
156 | + <path d="M0,0L2.8,0L2.8,3L0,3L0,0z" transform="translate(80.46,19.3)" id="shape31" fill="url(#lg1)"/> | |
157 | + <g transform="translate(83.29,18.66)"> | |
158 | + <path d="M0,0L.7,4.3L0,0z" transform="translate(1.79,0)" id="shape33" fill="url(#lg1)"/> | |
159 | + <path d="M0,0L1.4,0L1.4,1.8L0,1.8L0,0z" transform="translate(1.29,1.24)" id="shape34" fill="url(#lg1)"/> | |
160 | + </g> | |
161 | + <g transform="translate(-0,117.57)"> | |
162 | + <path d="M10.9,12.9C10.9,12.9,6.5,10.9,7.1,0C7.5,0,0,16.6,0,16.6L10.9,18.5L10.9,12.9z" id="shape35" fill="url(#lg3)"/> | |
163 | + <path d="M-0,5.6L4.5,4.5L4.5,2C4.5,2,1.6,1.2,-0,0L-0,5.6z" transform="translate(10.95,12.86)" id="shape36" fill="url(#lg3)"/> | |
164 | + </g> | |
165 | + <g transform="matrix(-1,0,0,1,84,117.6)"> | |
166 | + <path d="M10.9,12.9C10.9,12.9,6.5,10.9,7.1,0C7.5,0,0,16.6,0,16.6L10.9,18.5L10.9,12.9z" id="shape37" fill="url(#lg3)"/> | |
167 | + <path d="M-0,5.6L4.5,4.5L4.5,2C4.5,2,1.6,1.2,-0,0L-0,5.6z" transform="translate(10.95,12.86)" id="shape38" fill="url(#lg3)"/> | |
168 | + </g> | |
169 | + <path d="M0,0L2.8,0L2.8,3L0,3L0,0z" transform="translate(80.52,122.84)" id="shape39" fill="url(#lg1)"/> | |
170 | + <path d="M0,0L2.3,0L2.3,3L0,3L0,0z" transform="matrix(1,0,0,-1,76.9,130.5)" id="shape40" fill="url(#lg2)"/> | |
171 | + <path d="M0,-0C0,-0,2.2,0,3.2,1.3C4.3,2.5,4.1,4.4,4.1,4.4L1.2,4.4C1.2,4.4,1.2,3.3,0,2.8L0,-0z" transform="matrix(1,0,0,-1,79.2,130.3)" id="shape41" fill="url(#rg2)"/> | |
172 | + <path d="M1.2,0L3,0L3,1.4L0,1.4L1.2,0z" transform="translate(73.94,128.34)" id="shape42" fill="url(#lg8)"/> | |
173 | + <path d="M17.6,.3C17.6,.3,24.4,-1,33.6,1.6C33.6,1.6,37.7,1.9,36.1,9C34.6,16.1,34.7,17.1,36.6,21.3C36.6,21.3,38.5,23.8,35.7,27.8C32.8,31.8,35.1,38.9,36.6,43.9C38.2,48.9,35.7,58.7,35.7,58.7C35.7,58.7,33.5,64.1,36.6,69.8C36.6,69.8,39.3,75,34,82.4C28.3,90.4,35.6,101.3,35.6,101.3C35.6,101.3,38.9,106.2,29.8,108C20.6,109.7,7.6,109.3,3.3,108.3C3.3,108.3,.9,107.8,.9,103.9C.9,100,.8,98.4,.3,97.3C-0.2,96.2,-1.1,93,5,88.2C11.1,83.4,18.9,80.8,18.1,73.2C18.1,73.2,17.7,69.6,16.4,67.6C16.4,67.6,12,56.6,16.1,49.5C16.1,49.5,18,45.3,15.1,39.4C15.1,39.4,12.2,33.1,16.4,28.1C20.5,23,17.1,12.9,15.4,8.4C13.8,3.9,15.6,.3,17.6,.3z" transform="translate(38.08,13.55)" id="shape43" fill="url(#lg9)"/> | |
174 | + <path d="M0,1L1.8,0L1.8,18.6L0,18.6L0,1z" transform="translate(41.13,102.05)" id="shape44" fill="url(#lg1)"/> | |
175 | + <path d="M1,1.5L1,-0C0,-0,-0.1,1.5,0,1.5C.2,1.5,1.1,1.5,1,1.5z" transform="translate(39.09,117.69)" id="shape45" fill="#a1b7c0"/> | |
176 | + <path d="M0,1.6L14.4,.1C14.4,.1,16.2,-0.4,15.9,1.3C15.5,3,15.1,3.4,13.5,3.7C11.8,4.1,0,3.2,0,3.2L0,1.6z" transform="translate(43.57,116.09)" id="shape46" fill="url(#lg1)"/> | |
177 | + <path d="M0,0L3.9,0L3.9,2.1L0,2.1L0,0z" transform="translate(40.06,117.38)" id="shape47" fill="url(#lg1)"/> | |
178 | + <g transform="translate(8.29,10.65)"> | |
179 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(0,-0)" id="shape48" fill="url(#lg10)"/> | |
180 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(4.41,-0)" id="shape49" fill="url(#lg10)"/> | |
181 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(8.81,-0)" id="shape50" fill="url(#lg10)"/> | |
182 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(13.22,-0)" id="shape51" fill="url(#lg10)"/> | |
183 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(17.63,-0)" id="shape52" fill="url(#lg10)"/> | |
184 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(22.03,-0)" id="shape53" fill="url(#lg10)"/> | |
185 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(26.44,-0)" id="shape54" fill="url(#lg10)"/> | |
186 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(30.85,-0)" id="shape55" fill="url(#lg10)"/> | |
187 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(35.25,-0)" id="shape56" fill="url(#lg10)"/> | |
188 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(39.66,-0)" id="shape57" fill="url(#lg10)"/> | |
189 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(44.07,-0)" id="shape58" fill="url(#lg10)"/> | |
190 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(48.47,-0)" id="shape59" fill="url(#lg10)"/> | |
191 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(52.88,-0)" id="shape60" fill="url(#lg10)"/> | |
192 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(57.29,-0)" id="shape61" fill="url(#lg10)"/> | |
193 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(61.51,-0)" id="shape62" fill="url(#lg10)"/> | |
194 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(66.1,-0)" id="shape63" fill="url(#lg10)"/> | |
195 | + </g> | |
196 | + <g transform="translate(8.33,123.98)"> | |
197 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(0,-0)" id="shape64" fill="url(#lg10)"/> | |
198 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(4.41,-0)" id="shape65" fill="url(#lg10)"/> | |
199 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(8.81,-0)" id="shape66" fill="url(#lg10)"/> | |
200 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(13.22,-0)" id="shape67" fill="url(#lg10)"/> | |
201 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(17.63,-0)" id="shape68" fill="url(#lg10)"/> | |
202 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(22.03,-0)" id="shape69" fill="url(#lg10)"/> | |
203 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(26.44,-0)" id="shape70" fill="url(#lg10)"/> | |
204 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(30.85,-0)" id="shape71" fill="url(#lg10)"/> | |
205 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(35.25,-0)" id="shape72" fill="url(#lg10)"/> | |
206 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(39.66,-0)" id="shape73" fill="url(#lg10)"/> | |
207 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(44.07,-0)" id="shape74" fill="url(#lg10)"/> | |
208 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(48.47,-0)" id="shape75" fill="url(#lg10)"/> | |
209 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(52.88,-0)" id="shape76" fill="url(#lg10)"/> | |
210 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(57.29,-0)" id="shape77" fill="url(#lg10)"/> | |
211 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(61.51,-0)" id="shape78" fill="url(#lg10)"/> | |
212 | + <path d="M-0,.6C-0,.3,.3,-0,.6,-0C1,-0,1.3,.3,1.3,.6C1.3,1,1,1.3,.6,1.3C.3,1.3,-0,1,-0,.6z" transform="translate(66.1,-0)" id="shape79" fill="url(#lg10)"/> | |
213 | + </g> | |
214 | + <path d="M0,0L5.5,0L5.5,19.3L0,19.3L0,0z" transform="translate(39.41,122.72)" id="shape80" fill="url(#lg3)"/> | |
215 | + <path d="M0,0L5.5,0L5.5,4L0,4L0,0z" transform="translate(39.41,142.04)" id="shape81" fill="url(#lg3)"/> | |
216 | + <path d="M2.5,.4C2.5,.4,9.2,-1.1,19.4,1.7C19.4,1.7,22.9,2.2,21.4,9.3C19.8,16.4,20,17.4,21.9,21.7C21.9,21.7,22.3,22.7,22.3,22.7C22.2,22.7,3.5,23,3.6,22.7C4,18.4,2.3,13.2,.7,8.7C-1,4.2,.5,.4,2.5,.4z" transform="translate(52.88,13.22)" id="shape82" fill="url(#lg11)"/> | |
217 | + <path d="M0,0L1.2,0L1.2,108.5L0,108.5L0,0z" transform="translate(63.89,13.58)" id="shape83" fill="url(#lg1)"/> | |
218 | + <g transform="translate(62.56,18.55)"> | |
219 | + <path d="M0,0L2.1,0L2.1,1.4L0,1.4L0,0z" transform="translate(0.89,-0)" id="shape84" fill="url(#lg1)"/> | |
220 | + <path d="M0,0L3.9,0L3.9,4.1L0,4.1L0,0z" transform="translate(0,3.81)" id="shape85" fill="url(#lg1)"/> | |
221 | + <path d="M0,0L2.1,0L2.1,1.4L0,1.4L0,0z" transform="translate(0.89,12.13)" id="shape86" fill="url(#lg1)"/> | |
222 | + <path d="M0,0L3.9,0L3.9,4.1L0,4.1L0,0z" transform="translate(0,17.02)" id="shape87" fill="url(#lg1)"/> | |
223 | + <path d="M0,0L2.1,0L2.1,1.4L0,1.4L0,0z" transform="translate(0.89,57.72)" id="shape88" fill="url(#lg1)"/> | |
224 | + <path d="M0,0L3.9,0L3.9,4.1L0,4.1L0,0z" transform="translate(0,63.1)" id="shape89" fill="url(#lg1)"/> | |
225 | + <path d="M0,0L2.1,0L2.1,1.4L0,1.4L0,0z" transform="translate(0.89,90)" id="shape90" fill="url(#lg1)"/> | |
226 | + <path d="M0,0L3.9,0L3.9,4.1L0,4.1L0,0z" transform="translate(0,95.38)" id="shape91" fill="url(#lg1)"/> | |
227 | + </g> | |
228 | + </g> | |
229 | +</svg> | ... | ... |
1 | +<svg viewBox="0 0 72 153.993" height="154" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="72"> | |
2 | + <defs> | |
3 | + <linearGradient x2="100%" y2="0%" x1="0%" y1="0%" id="lg1"> | |
4 | + <stop offset="0" stop-color="#000000"/> | |
5 | + <stop offset="0.22" stop-color="#000000"/> | |
6 | + <stop offset="0.57" stop-color="#6c6c6c"/> | |
7 | + <stop offset="0.84" stop-color="#000000"/> | |
8 | + <stop offset="1" stop-color="#000000"/> | |
9 | + </linearGradient> | |
10 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg2"> | |
11 | + <stop offset="0" stop-color="#000000"/> | |
12 | + <stop offset="0.15" stop-color="#868686"/> | |
13 | + <stop offset="0.25" stop-color="#939393"/> | |
14 | + <stop offset="0.52" stop-color="#000000"/> | |
15 | + <stop offset="0.69" stop-color="#000000"/> | |
16 | + <stop offset="0.8" stop-color="#000000"/> | |
17 | + <stop offset="0.92" stop-color="#000000"/> | |
18 | + </linearGradient> | |
19 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg3"> | |
20 | + <stop offset="0" stop-color="#0a0909"/> | |
21 | + <stop offset="0.15" stop-color="#656363"/> | |
22 | + <stop offset="0.25" stop-color="#7c7a7a"/> | |
23 | + <stop offset="0.52" stop-color="#565454"/> | |
24 | + <stop offset="0.69" stop-color="#2f2e2e"/> | |
25 | + <stop offset="1" stop-color="#171717"/> | |
26 | + </linearGradient> | |
27 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg4"> | |
28 | + <stop offset="0" stop-color="#75929c"/> | |
29 | + <stop offset="0.01" stop-color="#bddae4"/> | |
30 | + <stop offset="0.03" stop-color="#99becb"/> | |
31 | + <stop offset="0.64" stop-color="#97bbc8"/> | |
32 | + <stop offset="0.99" stop-color="#93b7c4"/> | |
33 | + <stop offset="1" stop-color="#6c8791"/> | |
34 | + </linearGradient> | |
35 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg5"> | |
36 | + <stop offset="0" stop-color="#92a6ae"/> | |
37 | + <stop offset="0.01" stop-color="#daeff8"/> | |
38 | + <stop offset="0.03" stop-color="#bed8e3"/> | |
39 | + <stop offset="0.64" stop-color="#bbd5df"/> | |
40 | + <stop offset="0.99" stop-color="#b7d0da"/> | |
41 | + <stop offset="1" stop-color="#879aa2"/> | |
42 | + </linearGradient> | |
43 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg6"> | |
44 | + <stop offset="0" stop-color="#3d3b3b"/> | |
45 | + <stop offset="0.01" stop-color="#908f8f"/> | |
46 | + <stop offset="0.03" stop-color="#514f4f"/> | |
47 | + <stop offset="0.64" stop-color="#504e4e"/> | |
48 | + <stop offset="0.99" stop-color="#4e4c4c"/> | |
49 | + <stop offset="1" stop-color="#383636"/> | |
50 | + </linearGradient> | |
51 | + </defs> | |
52 | + <g transform="translate(1,1)"> | |
53 | + <path d="M0,6.1L8.2,6.1L8.2,0L0,0L0,6.1z" transform="translate(57.96,136.06)" id="shape1" fill="url(#lg1)"/> | |
54 | + <path d="M0,0L3.6,0L3.6,10.7L0,10.7L0,0z" transform="translate(60.23,140.22)" id="shape2" fill="url(#lg2)"/> | |
55 | + <path d="M1.1,0L4.8,0C5.5,0,6,.6,6,1.4L6,11.4C6,12.2,5.5,12.9,4.8,12.9L1.1,12.9C.5,12.9,0,12.2,0,11.4L0,1.4C0,.6,.5,0,1.1,0z" transform="translate(54.58,139.13)" id="shape3" fill="url(#lg3)"/> | |
56 | + <path d="M1.1,0L4.8,0C5.5,0,6,.6,6,1.4L6,11.4C6,12.2,5.5,12.9,4.8,12.9L1.1,12.9C.5,12.9,0,12.2,0,11.4L0,1.4C0,.6,.5,0,1.1,0z" transform="translate(63.53,139.13)" id="shape4" fill="url(#lg3)"/> | |
57 | + <path d="M0,6.1L8.2,6.1L8.2,0L0,0L0,6.1z" transform="translate(4.99,135.11)" id="shape5" fill="url(#lg1)"/> | |
58 | + <path d="M0,0L3.6,0L3.6,10.7L0,10.7L0,0z" transform="translate(7.26,140.22)" id="shape6" fill="url(#lg2)"/> | |
59 | + <path d="M1.1,0L4.8,0C5.5,0,6,.6,6,1.4L6,11.4C6,12.2,5.5,12.9,4.8,12.9L1.1,12.9C.5,12.9,0,12.2,0,11.4L0,1.4C0,.6,.5,0,1.1,0z" transform="translate(1.51,139.13)" id="shape7" fill="url(#lg3)"/> | |
60 | + <path d="M1.1,0L4.8,0C5.5,0,6,.6,6,1.4L6,11.4C6,12.2,5.5,12.9,4.8,12.9L1.1,12.9C.5,12.9,0,12.2,0,11.4L0,1.4C0,.6,.5,0,1.1,0z" transform="translate(10.47,139.13)" id="shape8" fill="url(#lg3)"/> | |
61 | + <path d="M.4,0L69.6,0C69.8,0,69.9,.1,69.9,.3L69.9,136.5C69.9,136.7,69.8,136.8,69.6,136.8L.4,136.8C.2,136.8,0,136.7,0,136.5L0,.3C0,.1,.2,0,.4,0z" transform="translate(0.04,1.13)" id="shape9" fill="url(#lg4)"/> | |
62 | + <path d="M.4,0L69.6,0C69.8,0,70,.1,70,.3L70,27.9L0,27.9L.1,.3C.1,.1,.2,0,.4,0z" transform="translate(0,-0)" id="shape10" fill="url(#lg5)"/> | |
63 | + <path d="M.4,0L44.1,0C44.3,0,44.4,.2,44.4,.4L44.4,24.5C44.4,24.7,44.3,24.8,44.1,24.8L.4,24.8C.2,24.8,0,24.7,0,24.5L0,.4C0,.2,.2,0,.4,0z" transform="translate(13.78,32.91)" id="shape11" fill="url(#lg5)"/> | |
64 | + <path d="M0,0L26.6,0L26.6,12.6L0,12.6L0,0z" transform="translate(17.61,39)" id="shape12" fill="#607c7d"/> | |
65 | + <g transform="translate(47.38,34.89)"> | |
66 | + <path d="M0,0L7,0L7,3.8L0,3.8L0,0z" transform="translate(0,-0)" id="shape13" fill="url(#lg6)"/> | |
67 | + <path d="M0,0L7,0L7,3.8L0,3.8L0,0z" transform="translate(0,5.7)" id="shape14" fill="url(#lg6)"/> | |
68 | + <path d="M0,0L7,0L7,3.8L0,3.8L0,0z" transform="translate(0,11.41)" id="shape15" fill="url(#lg6)"/> | |
69 | + <path d="M0,0L7,0L7,3.8L0,3.8L0,0z" transform="translate(0,17.11)" id="shape16" fill="url(#lg6)"/> | |
70 | + </g> | |
71 | + <path d="M.4,0L54.4,0C54.6,0,54.8,.2,54.8,.4L54.8,36C54.8,36.2,54.6,36.3,54.4,36.3L.4,36.3C.2,36.3,0,36.2,0,36L0,.4C0,.2,.2,0,.4,0z" transform="translate(7.6,94.31)" id="shape17" fill="url(#lg5)"/> | |
72 | + <path d="M.4,0L50.6,0C50.8,0,51,.2,51,.4L51,32.4C51,32.6,50.8,32.7,50.6,32.7L.4,32.7C.2,32.7,0,32.6,0,32.4L0,.4C0,.2,.2,0,.4,0z" transform="translate(9.51,96.12)" id="shape18" fill="url(#lg4)"/> | |
73 | + <g transform="translate(12.16,98.09)"> | |
74 | + <path d="M0,0L11.5,0L11.5,2.7L0,2.7L0,0z" transform="translate(0,0)" id="shape19" fill="url(#lg6)"/> | |
75 | + <path d="M0,0L11.5,0L11.5,2.7L0,2.7L0,0z" transform="translate(0,5.11)" id="shape20" fill="url(#lg6)"/> | |
76 | + <path d="M0,0L11.5,0L11.5,2.7L0,2.7L0,0z" transform="translate(0,10.42)" id="shape21" fill="url(#lg6)"/> | |
77 | + <path d="M0,0L11.5,0L11.5,2.7L0,2.7L0,0z" transform="translate(0,15.64)" id="shape22" fill="url(#lg6)"/> | |
78 | + <path d="M0,0L11.5,0L11.5,2.7L0,2.7L0,0z" transform="translate(0,20.85)" id="shape23" fill="url(#lg6)"/> | |
79 | + <path d="M0,0L11.5,0L11.5,2.7L0,2.7L0,0z" transform="translate(0,26.06)" id="shape24" fill="url(#lg6)"/> | |
80 | + </g> | |
81 | + <g transform="translate(29.6,98.09)"> | |
82 | + <path d="M0,0L11.5,0L11.5,2.7L0,2.7L0,0z" transform="translate(0,0)" id="shape25" fill="url(#lg6)"/> | |
83 | + <path d="M0,0L11.5,0L11.5,2.7L0,2.7L0,0z" transform="translate(0,5.11)" id="shape26" fill="url(#lg6)"/> | |
84 | + <path d="M0,0L11.5,0L11.5,2.7L0,2.7L0,0z" transform="translate(0,10.42)" id="shape27" fill="url(#lg6)"/> | |
85 | + <path d="M0,0L11.5,0L11.5,2.7L0,2.7L0,0z" transform="translate(0,15.64)" id="shape28" fill="url(#lg6)"/> | |
86 | + <path d="M0,0L11.5,0L11.5,2.7L0,2.7L0,0z" transform="translate(0,20.85)" id="shape29" fill="url(#lg6)"/> | |
87 | + <path d="M0,0L11.5,0L11.5,2.7L0,2.7L0,0z" transform="translate(0,26.06)" id="shape30" fill="url(#lg6)"/> | |
88 | + </g> | |
89 | + <g transform="translate(47.04,98.09)"> | |
90 | + <path d="M0,0L11.5,0L11.5,2.7L0,2.7L0,0z" transform="translate(0,0)" id="shape31" fill="url(#lg6)"/> | |
91 | + <path d="M0,0L11.5,0L11.5,2.7L0,2.7L0,0z" transform="translate(0,5.11)" id="shape32" fill="url(#lg6)"/> | |
92 | + <path d="M0,0L11.5,0L11.5,2.7L0,2.7L0,0z" transform="translate(0,10.42)" id="shape33" fill="url(#lg6)"/> | |
93 | + <path d="M0,0L11.5,0L11.5,2.7L0,2.7L0,0z" transform="translate(0,15.64)" id="shape34" fill="url(#lg6)"/> | |
94 | + <path d="M0,0L11.5,0L11.5,2.7L0,2.7L0,0z" transform="translate(0,20.85)" id="shape35" fill="url(#lg6)"/> | |
95 | + <path d="M0,0L11.5,0L11.5,2.7L0,2.7L0,0z" transform="translate(0,26.06)" id="shape36" fill="url(#lg6)"/> | |
96 | + </g> | |
97 | + <path d="M.4,0L69.6,0C69.8,0,70,0,70,0L70,2.9L0,2.9L.1,0C.1,0,.2,0,.4,0z" transform="translate(0,-0)" id="shape37" fill="url(#lg4)"/> | |
98 | + </g> | |
99 | +</svg> | ... | ... |
1 | +<svg viewBox="0 0 70 153.998" height="154" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="70"> | |
2 | + <defs> | |
3 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg1"> | |
4 | + <stop offset="0" stop-color="#c4c4c4"/> | |
5 | + <stop offset="0.15" stop-color="#ffffff"/> | |
6 | + <stop offset="0.25" stop-color="#ffffff"/> | |
7 | + <stop offset="0.44" stop-color="#dfdfdf"/> | |
8 | + <stop offset="0.6" stop-color="#c7c7c7"/> | |
9 | + <stop offset="0.8" stop-color="#a8a8a8"/> | |
10 | + <stop offset="0.97" stop-color="#999999"/> | |
11 | + <stop offset="1" stop-color="#cbcbcb"/> | |
12 | + </linearGradient> | |
13 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg2"> | |
14 | + <stop offset="0" stop-color="#424141"/> | |
15 | + <stop offset="0.15" stop-color="#6d6c6c"/> | |
16 | + <stop offset="0.25" stop-color="#949494"/> | |
17 | + <stop offset="0.44" stop-color="#4d4b4b"/> | |
18 | + <stop offset="0.6" stop-color="#434242"/> | |
19 | + <stop offset="0.8" stop-color="#383636"/> | |
20 | + <stop offset="0.97" stop-color="#323131"/> | |
21 | + <stop offset="1" stop-color="#454444"/> | |
22 | + </linearGradient> | |
23 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg3"> | |
24 | + <stop offset="0" stop-color="#9eb4bd"/> | |
25 | + <stop offset="0.15" stop-color="#d2ecf7"/> | |
26 | + <stop offset="0.25" stop-color="#dbf0f8"/> | |
27 | + <stop offset="0.44" stop-color="#b5ced7"/> | |
28 | + <stop offset="0.6" stop-color="#a1b7c0"/> | |
29 | + <stop offset="0.8" stop-color="#879aa2"/> | |
30 | + <stop offset="0.97" stop-color="#7b8d94"/> | |
31 | + <stop offset="1" stop-color="#a5bbc4"/> | |
32 | + </linearGradient> | |
33 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg4"> | |
34 | + <stop offset="0" stop-color="#292525"/> | |
35 | + <stop offset="0.03" stop-color="#868584"/> | |
36 | + <stop offset="0.08" stop-color="#383433"/> | |
37 | + <stop offset="0.64" stop-color="#373332"/> | |
38 | + <stop offset="0.95" stop-color="#363130"/> | |
39 | + <stop offset="1" stop-color="#252221"/> | |
40 | + </linearGradient> | |
41 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg5"> | |
42 | + <stop offset="0" stop-color="#b5b5b5"/> | |
43 | + <stop offset="0.03" stop-color="#ffffff"/> | |
44 | + <stop offset="0.08" stop-color="#ebebeb"/> | |
45 | + <stop offset="0.64" stop-color="#e7e7e7"/> | |
46 | + <stop offset="0.95" stop-color="#e2e2e2"/> | |
47 | + <stop offset="1" stop-color="#a8a8a8"/> | |
48 | + </linearGradient> | |
49 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg6"> | |
50 | + <stop offset="0" stop-color="#92a6ae"/> | |
51 | + <stop offset="0.03" stop-color="#daeff8"/> | |
52 | + <stop offset="0.08" stop-color="#bed8e3"/> | |
53 | + <stop offset="0.64" stop-color="#bbd5df"/> | |
54 | + <stop offset="0.95" stop-color="#b7d0da"/> | |
55 | + <stop offset="1" stop-color="#879aa2"/> | |
56 | + </linearGradient> | |
57 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg7"> | |
58 | + <stop offset="0" stop-color="#c3a156"/> | |
59 | + <stop offset="0.15" stop-color="#fed681"/> | |
60 | + <stop offset="0.25" stop-color="#fedea0"/> | |
61 | + <stop offset="0.44" stop-color="#deb863"/> | |
62 | + <stop offset="0.6" stop-color="#c6a457"/> | |
63 | + <stop offset="0.8" stop-color="#a78a48"/> | |
64 | + <stop offset="0.97" stop-color="#997e42"/> | |
65 | + <stop offset="1" stop-color="#cba859"/> | |
66 | + </linearGradient> | |
67 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg8"> | |
68 | + <stop offset="0" stop-color="#7aa5b7"/> | |
69 | + <stop offset="0.15" stop-color="#a8dbf0"/> | |
70 | + <stop offset="0.25" stop-color="#bbe1f3"/> | |
71 | + <stop offset="0.44" stop-color="#8bbdd1"/> | |
72 | + <stop offset="0.6" stop-color="#7ca8ba"/> | |
73 | + <stop offset="0.8" stop-color="#688d9d"/> | |
74 | + <stop offset="0.97" stop-color="#5e818f"/> | |
75 | + <stop offset="1" stop-color="#7facbe"/> | |
76 | + </linearGradient> | |
77 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg9"> | |
78 | + <stop offset="0" stop-color="#c4c4c4"/> | |
79 | + <stop offset="0.15" stop-color="#ffffff"/> | |
80 | + <stop offset="0.25" stop-color="#ffffff"/> | |
81 | + <stop offset="0.44" stop-color="#dfdfdf"/> | |
82 | + <stop offset="0.6" stop-color="#c7c7c7"/> | |
83 | + <stop offset="0.8" stop-color="#a8a8a8"/> | |
84 | + <stop offset="0.97" stop-color="#999999"/> | |
85 | + <stop offset="1" stop-color="#cbcbcb"/> | |
86 | + </linearGradient> | |
87 | + </defs> | |
88 | + <g transform="translate(1,1.01)"> | |
89 | + <path d="M16.1,0L0,0L0,19.5L16.1,19.5L16.1,0z" transform="translate(-0,44.35)" id="shape1" fill="url(#lg1)"/> | |
90 | + <path d="M16.1,0L0,0L0,19.5L16.1,19.5L16.1,0z" transform="translate(0,108.32)" id="shape2" fill="url(#lg1)"/> | |
91 | + <path d="M.3,0L33.7,0C33.9,0,34,.1,34,.3L34,101.1C34,101.3,34.1,106.6,17.1,106.6C.2,106.6,0,101.1,0,101.1L0,.3C0,.1,.1,0,.3,0z" transform="translate(31.65,34.54)" id="shape3" fill="#4e6c8e"/> | |
92 | + <path d="M6.3,0L0,0L0,19.8L6.3,19.8L6.3,0z" transform="translate(25.23,44.2)" id="shape4" fill="url(#lg1)"/> | |
93 | + <path d="M9.8,0L0,0L0,25.9L9.8,25.9L9.8,0z" transform="translate(15.3,41.19)" id="shape5" fill="url(#lg2)"/> | |
94 | + <path d="M6.3,0L0,0L0,19.8L6.3,19.8L6.3,0z" transform="translate(25.23,108.17)" id="shape6" fill="url(#lg1)"/> | |
95 | + <path d="M9.8,0L0,0L0,25.9L9.8,25.9L9.8,0z" transform="translate(15.3,105.16)" id="shape7" fill="url(#lg2)"/> | |
96 | + <path d="M.3,0L3.7,0C3.8,0,4,.1,4,.3L4,7.6C4,7.8,3.8,7.9,3.7,7.9L.3,7.9C.1,7.9,-0,7.8,-0,7.6L-0,.3C-0,.1,.1,0,.3,0z" transform="translate(38.9,34.88)" id="shape8" fill="url(#lg3)"/> | |
97 | + <path d="M.3,0L3.7,0C3.8,0,4,.1,4,.3L4,7.6C4,7.8,3.8,7.9,3.7,7.9L.3,7.9C.1,7.9,-0,7.8,-0,7.6L-0,.3C-0,.1,.1,0,.3,0z" transform="translate(46.56,34.88)" id="shape9" fill="url(#lg3)"/> | |
98 | + <path d="M.4,0L4.7,0C4.9,0,5,.2,5,.5L5,12.1C5,12.4,4.9,12.6,4.7,12.6L.4,12.6C.2,12.6,-0,12.4,-0,12.1L-0,.5C-0,.2,.2,0,.4,0z" transform="translate(54.18,34.88)" id="shape10" fill="url(#lg4)"/> | |
99 | + <path d="M0,0L23.1,0L23.1,58.7L0,58.7L0,0z" transform="translate(37.09,47.36)" id="shape11" fill="url(#lg4)"/> | |
100 | + <g transform="translate(37.09,57.57)"> | |
101 | + <path d="M0,0L23.1,0L23.1,3.9L0,3.9L0,0z" transform="translate(-0,0.9)" id="shape12" fill="url(#lg5)"/> | |
102 | + <path d="M0,0L5.5,0L5.5,5.7L0,5.7L0,0z" transform="translate(23.04,0)" id="shape13" fill="url(#lg6)"/> | |
103 | + </g> | |
104 | + <g transform="translate(37.09,88.73)"> | |
105 | + <path d="M0,0L23.1,0L23.1,3.9L0,3.9L0,0z" transform="translate(-0,0.9)" id="shape14" fill="url(#lg5)"/> | |
106 | + <path d="M0,0L5.5,0L5.5,5.7L0,5.7L0,0z" transform="translate(23.04,0)" id="shape15" fill="url(#lg6)"/> | |
107 | + </g> | |
108 | + <path d="M.5,0L3.1,0C3.4,0,3.6,.2,3.6,.6L3.6,102.7C3.6,103,3.4,103.3,3.1,103.3L.5,103.3C.2,103.3,-0,103,-0,102.7L-0,.6C-0,.2,.2,0,.5,0z" transform="translate(59.63,35.07)" fill-opacity="0.1" id="shape16" fill="#ffffff"/> | |
109 | + <path d="M.5,0L2.9,0C3.2,0,3.4,.2,3.4,.6L3.4,102.7C3.4,103,3.2,103.4,2.9,103.4L.4,101.7C.2,101.7,0,101.4,0,101L.1,.6C.1,.2,.2,0,.5,0z" transform="translate(32.3,35.07)" fill-opacity="0.79" id="shape17" fill="#536882"/> | |
110 | + <path d="M.4,0L2.9,0C3.1,0,3.3,.2,3.3,.6L3.3,102.7C3.3,103,3.1,103.3,2.9,103.3L.4,103.3C.2,103.3,-0,103,-0,102.7L-0,.6C-0,.2,.2,0,.4,0z" transform="translate(35.35,35.07)" fill-opacity="0.14" id="shape18" fill="#ffffff"/> | |
111 | + <path d="M.5,0L5.9,0C6.2,0,6.4,.2,6.4,.4L6.4,10.8C6.4,11,6.2,11.2,5.9,11.2L.5,11.2C.2,11.2,-0,11,-0,10.8L-0,.4C-0,.2,.2,0,.5,0z" transform="translate(45.44,-0.01)" id="shape19" fill="url(#lg7)"/> | |
112 | + <path d="M.8,0L10.6,0C11.1,0,11.5,.1,11.5,.3L11.5,7.6C11.5,7.8,11.1,7.9,10.6,7.9L.8,7.9C.4,7.9,-0,7.8,-0,7.6L-0,.3C-0,.1,.4,0,.8,0z" transform="translate(42.88,10.41)" id="shape20" fill="url(#lg7)"/> | |
113 | + <path d="M.3,-0L36.5,-0C36.7,-0,36.8,.2,36.8,.5L36.8,9.3C36.8,9.5,36.7,9.7,36.5,9.7L.3,9.7C.1,9.7,0,9.5,0,9.3L0,.5C0,.2,.1,-0,.3,-0z" transform="translate(30.23,16.11)" id="shape21" fill="url(#lg8)"/> | |
114 | + <path d="M.3,-0L38.3,-0C38.5,-0,38.7,.1,38.7,.3L38.7,9.4C38.7,9.6,38.5,9.7,38.3,9.7L.3,9.7C.1,9.7,0,9.6,0,9.4L0,.3C0,.1,.1,-0,.3,-0z" transform="translate(29.32,25.51)" id="shape22" fill="url(#lg9)"/> | |
115 | + <path d="M.3,0L33.7,0C33.9,0,34,.1,34,.3L34,101.1C34,101.3,34.1,106.6,17.1,106.6C.2,106.6,0,101.1,0,101.1L0,.3C0,.1,.1,0,.3,0z" transform="translate(31.65,34.54)" fill-opacity="0.18" id="shape23" fill="#ffffff"/> | |
116 | + <path d="M0,0L29,0L29,5.7L0,5.7L0,0z" transform="translate(34.14,139.36)" id="shape24" fill="url(#lg3)"/> | |
117 | + <path d="M.3,0L31.8,0C32,0,32.1,.1,32.1,.3L32.1,6.8C32.1,7,32,7.1,31.8,7.1L.3,7.1C.1,7.1,0,7,0,6.8L0,.3C0,.1,.1,0,.3,0z" transform="translate(32.58,144.89)" id="shape25" fill="url(#lg8)"/> | |
118 | + <path d="M.4,0C.7,0,.9,.2,.9,.5L.9,78.5C.9,78.8,.7,79,.4,79C.2,79,-0.1,78.8,-0.1,78.5L-0.1,.5C-0.1,.2,.2,0,.4,0z" transform="translate(62.82,35.09)" fill-opacity="0.17" id="shape26" fill="#ffffff"/> | |
119 | + </g> | |
120 | +</svg> | ... | ... |
1 | +<svg viewBox="0 0 80 153.996" height="154" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="80"> | |
2 | + <defs> | |
3 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg1"> | |
4 | + <stop offset="0" stop-color="#343232"/> | |
5 | + <stop offset="0.15" stop-color="#555454"/> | |
6 | + <stop offset="0.26" stop-color="#797777"/> | |
7 | + <stop offset="0.41" stop-color="#5d5b5b"/> | |
8 | + <stop offset="0.6" stop-color="#484646"/> | |
9 | + <stop offset="0.8" stop-color="#383636"/> | |
10 | + <stop offset="0.93" stop-color="#2c2b2b"/> | |
11 | + <stop offset="1" stop-color="#535151"/> | |
12 | + </linearGradient> | |
13 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg2"> | |
14 | + <stop offset="0" stop-color="#c4c4c4"/> | |
15 | + <stop offset="0.15" stop-color="#ffffff"/> | |
16 | + <stop offset="0.25" stop-color="#ffffff"/> | |
17 | + <stop offset="0.44" stop-color="#dfdfdf"/> | |
18 | + <stop offset="0.6" stop-color="#c7c7c7"/> | |
19 | + <stop offset="0.8" stop-color="#a8a8a8"/> | |
20 | + <stop offset="0.97" stop-color="#999999"/> | |
21 | + <stop offset="1" stop-color="#cbcbcb"/> | |
22 | + </linearGradient> | |
23 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg3"> | |
24 | + <stop offset="0" stop-color="#9eb4bd"/> | |
25 | + <stop offset="0.15" stop-color="#d2ecf7"/> | |
26 | + <stop offset="0.25" stop-color="#dbf0f8"/> | |
27 | + <stop offset="0.44" stop-color="#b5ced7"/> | |
28 | + <stop offset="0.6" stop-color="#a1b7c0"/> | |
29 | + <stop offset="0.8" stop-color="#879aa2"/> | |
30 | + <stop offset="0.97" stop-color="#7b8d94"/> | |
31 | + <stop offset="1" stop-color="#a5bbc4"/> | |
32 | + </linearGradient> | |
33 | + </defs> | |
34 | + <g transform="translate(1.01,1)"> | |
35 | + <path d="M.2,0L7.8,0C8,0,8.1,.1,8.1,.2L8.1,39.2C8.1,39.3,8,39.4,7.8,39.4L.2,39.4C.1,39.4,0,39.3,0,39.2L0,.2C0,.1,.1,0,.2,0z" transform="translate(38.87,110.54)" id="shape1" fill="url(#lg1)"/> | |
36 | + <path d="M15.5,0L0,0L0,3.6L15.5,3.6L15.5,0z" transform="translate(0,17.15)" id="shape2" fill="url(#lg1)"/> | |
37 | + <path d="M.3,-0L9.5,-0C9.7,-0,9.8,.1,9.8,.3L9.8,6C9.8,6.2,9.7,6.4,9.5,6.4L.3,6.4C.1,6.4,0,6.2,0,6L0,.3C0,.1,.1,-0,.3,-0z" transform="translate(4.41,10.8)" id="shape3" fill="url(#lg1)"/> | |
38 | + <path d="M.3,-0L3.3,-0C3.5,-0,3.6,.1,3.6,.2L3.6,5.1C3.6,5.2,3.5,5.3,3.3,5.3L.3,5.3C.1,5.3,-0,5.2,-0,5.1L-0,.2C-0,.1,.1,-0,.3,-0z" transform="translate(-0,16.28)" id="shape4" fill="url(#lg1)"/> | |
39 | + <path d="M.2,0L6.2,0C6.3,0,6.4,.1,6.4,.2L6.4,6.1C6.4,6.3,6.3,6.4,6.2,6.4L.2,6.4C.1,6.4,0,6.3,0,6.1L0,.2C0,.1,.1,0,.2,0z" transform="translate(15.36,14.71)" id="shape5" fill="url(#lg1)"/> | |
40 | + <path d="M0,0L67.5,0L67.5,92.7C67.5,92.7,67.5,99.1,33.9,99.1C.3,99.1,0,92.7,0,92.7L0,0z" transform="translate(9.16,25.81)" id="shape6" fill="url(#lg2)"/> | |
41 | + <path d="M0,0L67.5,0L67.5,5.2L0,5.2L0,0z" transform="translate(9.16,20.75)" id="shape7" fill="url(#lg3)"/> | |
42 | + <path d="M0,0L33.2,0L33.2,7.3L0,7.3L0,0z" transform="translate(26.27,13.4)" id="shape8" fill="url(#lg3)"/> | |
43 | + <path d="M0,0L37.3,0L35.3,3.8L2,3.8L0,0z" transform="translate(24.22,9.63)" id="shape9" fill="url(#lg3)"/> | |
44 | + <path d="M0,0L37.3,0L37.3,9.9L0,9.9L0,0z" transform="translate(24.22,-0)" id="shape10" fill="url(#lg3)"/> | |
45 | + <g transform="translate(12.45,27.33)"> | |
46 | + <path d="M.2,0C1.1,0,1.2,.1,1.2,.2L1.2,80.8C1.2,80.9,1.1,81,1,81C.1,81,0,80.9,0,80.8L0,.2C0,.1,.1,0,.2,0z" transform="translate(0,0)" id="shape11" fill="url(#lg2)"/> | |
47 | + <path d="M.2,0C1.1,0,1.2,.1,1.2,.2L1.2,80.8C1.2,80.9,1.1,81,1,81C.1,81,0,80.9,0,80.8L0,.2C0,.1,.1,0,.2,0z" transform="translate(11.94,0)" id="shape12" fill="url(#lg2)"/> | |
48 | + <path d="M.2,0C1.1,0,1.2,.1,1.2,.2L1.2,80.8C1.2,80.9,1.1,81,1,81C.1,81,0,80.9,0,80.8L0,.2C0,.1,.1,0,.2,0z" transform="translate(23.88,0)" id="shape13" fill="url(#lg2)"/> | |
49 | + <path d="M.2,0C1.1,0,1.2,.1,1.2,.2L1.2,80.8C1.2,80.9,1.1,81,1,81C.1,81,0,80.9,0,80.8L0,.2C0,.1,.1,0,.2,0z" transform="translate(35.82,0)" id="shape14" fill="url(#lg2)"/> | |
50 | + <path d="M.2,0C1.1,0,1.2,.1,1.2,.2L1.2,80.8C1.2,80.9,1.1,81,1,81C.1,81,0,80.9,0,80.8L0,.2C0,.1,.1,0,.2,0z" transform="translate(47.76,0)" id="shape15" fill="url(#lg2)"/> | |
51 | + <path d="M.2,0C1.1,0,1.2,.1,1.2,.2L1.2,80.8C1.2,80.9,1.1,81,1,81C.1,81,0,80.9,0,80.8L0,.2C0,.1,.1,0,.2,0z" transform="translate(59.7,0)" id="shape16" fill="url(#lg2)"/> | |
52 | + </g> | |
53 | + <path d="M.2,0L7.8,0C8,0,8.1,.1,8.1,.2L8.1,39.2C8.1,39.3,8,39.4,7.8,39.4L.2,39.4C.1,39.4,0,39.3,0,39.2L0,.2C0,.1,.1,0,.2,0z" transform="translate(9.16,110.54)" id="shape17" fill="url(#lg1)"/> | |
54 | + <path d="M.2,0L7.8,0C8,0,8.1,.1,8.1,.2L8.1,39.2C8.1,39.3,8,39.4,7.8,39.4L.2,39.4C.1,39.4,0,39.3,0,39.2L0,.2C0,.1,.1,0,.2,0z" transform="translate(68.58,110.54)" id="shape18" fill="url(#lg1)"/> | |
55 | + <path d="M.2,-0L10.5,-0C10.7,-0,10.8,.1,10.8,.2L10.8,2.6C10.8,2.7,10.7,2.9,10.5,2.9L.2,2.9C.1,2.9,-0,2.7,-0,2.6L-0,.2C-0,.1,.1,-0,.2,-0z" transform="translate(7.8,149.15)" id="shape19" fill="url(#lg1)"/> | |
56 | + <path d="M.2,-0L10.5,-0C10.7,-0,10.8,.1,10.8,.2L10.8,2.6C10.8,2.7,10.7,2.9,10.5,2.9L.2,2.9C.1,2.9,-0,2.7,-0,2.6L-0,.2C-0,.1,.1,-0,.2,-0z" transform="translate(37.51,149.15)" id="shape20" fill="url(#lg1)"/> | |
57 | + <path d="M.2,-0L10.5,-0C10.7,-0,10.8,.1,10.8,.2L10.8,2.6C10.8,2.7,10.7,2.9,10.5,2.9L.2,2.9C.1,2.9,-0,2.7,-0,2.6L-0,.2C-0,.1,.1,-0,.2,-0z" transform="translate(67.22,149.15)" id="shape21" fill="url(#lg1)"/> | |
58 | + </g> | |
59 | +</svg> | ... | ... |
1 | +<svg viewBox="0 0 190 101.995" height="102" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="190"> | |
2 | + <defs> | |
3 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg1"> | |
4 | + <stop offset="0" stop-color="#3b9193"/> | |
5 | + <stop offset="0.15" stop-color="#67c3c5"/> | |
6 | + <stop offset="0.25" stop-color="#bbdee0"/> | |
7 | + <stop offset="0.52" stop-color="#45a6a9"/> | |
8 | + <stop offset="0.69" stop-color="#3c9396"/> | |
9 | + <stop offset="0.8" stop-color="#388b8d"/> | |
10 | + <stop offset="0.97" stop-color="#358385"/> | |
11 | + <stop offset="1" stop-color="#3e9799"/> | |
12 | + </linearGradient> | |
13 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg2"> | |
14 | + <stop offset="0" stop-color="#424141"/> | |
15 | + <stop offset="0.15" stop-color="#6d6c6c"/> | |
16 | + <stop offset="0.25" stop-color="#bcbcbc"/> | |
17 | + <stop offset="0.52" stop-color="#4d4b4b"/> | |
18 | + <stop offset="0.69" stop-color="#434242"/> | |
19 | + <stop offset="0.8" stop-color="#3f3e3e"/> | |
20 | + <stop offset="0.97" stop-color="#3b3a3a"/> | |
21 | + <stop offset="1" stop-color="#454444"/> | |
22 | + </linearGradient> | |
23 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg3"> | |
24 | + <stop offset="0" stop-color="#3b9193"/> | |
25 | + <stop offset="0.15" stop-color="#67c3c5"/> | |
26 | + <stop offset="0.25" stop-color="#bbdee0"/> | |
27 | + <stop offset="0.52" stop-color="#45a6a9"/> | |
28 | + <stop offset="0.69" stop-color="#3c9396"/> | |
29 | + <stop offset="0.8" stop-color="#388b8d"/> | |
30 | + <stop offset="0.97" stop-color="#358385"/> | |
31 | + <stop offset="1" stop-color="#3e9799"/> | |
32 | + </linearGradient> | |
33 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg4"> | |
34 | + <stop offset="0" stop-color="#3b9193"/> | |
35 | + <stop offset="0.08" stop-color="#67c3c5"/> | |
36 | + <stop offset="0.15" stop-color="#92cecf"/> | |
37 | + <stop offset="0.31" stop-color="#45a6a9"/> | |
38 | + <stop offset="0.59" stop-color="#3c9396"/> | |
39 | + <stop offset="0.8" stop-color="#388b8d"/> | |
40 | + <stop offset="0.97" stop-color="#358385"/> | |
41 | + <stop offset="1" stop-color="#3e9799"/> | |
42 | + </linearGradient> | |
43 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg5"> | |
44 | + <stop offset="0" stop-color="#368688"/> | |
45 | + <stop offset="0.01" stop-color="#8ccdcf"/> | |
46 | + <stop offset="0.03" stop-color="#49afb2"/> | |
47 | + <stop offset="0.64" stop-color="#48acaf"/> | |
48 | + <stop offset="0.99" stop-color="#46a8ab"/> | |
49 | + <stop offset="1" stop-color="#317c7e"/> | |
50 | + </linearGradient> | |
51 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg6"> | |
52 | + <stop offset="0" stop-color="#368688"/> | |
53 | + <stop offset="0.01" stop-color="#8ccdcf"/> | |
54 | + <stop offset="0.03" stop-color="#49afb2"/> | |
55 | + <stop offset="0.64" stop-color="#48acaf"/> | |
56 | + <stop offset="0.99" stop-color="#46a8ab"/> | |
57 | + <stop offset="1" stop-color="#317c7e"/> | |
58 | + </linearGradient> | |
59 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg7"> | |
60 | + <stop offset="0" stop-color="#448e8e"/> | |
61 | + <stop offset="0.01" stop-color="#95d6d6"/> | |
62 | + <stop offset="0.03" stop-color="#5bbaba"/> | |
63 | + <stop offset="0.64" stop-color="#5ab7b7"/> | |
64 | + <stop offset="0.99" stop-color="#58b3b3"/> | |
65 | + <stop offset="1" stop-color="#3f8484"/> | |
66 | + </linearGradient> | |
67 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg8"> | |
68 | + <stop offset="0" stop-color="#317c7f"/> | |
69 | + <stop offset="0.01" stop-color="#8ac4c7"/> | |
70 | + <stop offset="0.03" stop-color="#42a3a6"/> | |
71 | + <stop offset="0.64" stop-color="#41a0a4"/> | |
72 | + <stop offset="0.99" stop-color="#409ca0"/> | |
73 | + <stop offset="1" stop-color="#2d7376"/> | |
74 | + </linearGradient> | |
75 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg9"> | |
76 | + <stop offset="0" stop-color="#bdbdbd"/> | |
77 | + <stop offset="0.15" stop-color="#ffffff"/> | |
78 | + <stop offset="0.25" stop-color="#ffffff"/> | |
79 | + <stop offset="0.52" stop-color="#dfdfdf"/> | |
80 | + <stop offset="0.69" stop-color="#c7c7c7"/> | |
81 | + <stop offset="0.8" stop-color="#bcbcbc"/> | |
82 | + <stop offset="0.92" stop-color="#b1b1b1"/> | |
83 | + <stop offset="1" stop-color="#cbcbcb"/> | |
84 | + </linearGradient> | |
85 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg10"> | |
86 | + <stop offset="0" stop-color="#328587"/> | |
87 | + <stop offset="0.15" stop-color="#5fb5b7"/> | |
88 | + <stop offset="0.25" stop-color="#b8d8d9"/> | |
89 | + <stop offset="0.52" stop-color="#3a999a"/> | |
90 | + <stop offset="0.69" stop-color="#338889"/> | |
91 | + <stop offset="0.8" stop-color="#2f8081"/> | |
92 | + <stop offset="0.97" stop-color="#2c787a"/> | |
93 | + <stop offset="1" stop-color="#348b8c"/> | |
94 | + </linearGradient> | |
95 | + </defs> | |
96 | + <g transform="translate(1.01,1)"> | |
97 | + <path d="M.4,-0L6,-0C6.2,-0,6.3,.2,6.3,.4L6.3,4.3C6.3,4.5,6.2,4.7,6,4.7L.4,4.7C.2,4.7,0,4.5,0,4.3L0,.4C0,.2,.2,-0,.4,-0z" transform="translate(160.39,43.87)" id="shape1" fill="url(#lg1)"/> | |
98 | + <path d="M.4,-0L11,-0C11.2,-0,11.4,.2,11.4,.4L11.4,1.9C11.4,2.1,11.2,2.2,11,2.2L.4,2.2C.2,2.2,0,2.1,0,1.9L0,.4C0,.2,.2,-0,.4,-0z" transform="translate(157.87,47.59)" id="shape2" fill="url(#lg1)"/> | |
99 | + <path d="M.4,-0L17.3,-0C17.5,-0,17.7,.2,17.7,.4L17.7,2.4C17.7,2.6,17.5,2.8,17.3,2.8L.4,2.8C.2,2.8,0,2.6,0,2.4L0,.4C0,.2,.2,-0,.4,-0z" transform="translate(170.3,20.58)" id="shape3" fill="url(#lg2)"/> | |
100 | + <path d="M.4,0L2.2,0C2.4,0,2.6,.2,2.6,.4L2.6,6.9C2.6,7.1,2.4,7.3,2.2,7.3L.4,7.3C.2,7.3,-0,7.1,-0,6.9L-0,.4C-0,.2,.2,0,.4,0z" transform="translate(167.57,26.44)" id="shape4" fill="url(#lg3)"/> | |
101 | + <path d="M0,0L4.1,0L4.1,19.2L0,19.2L0,0z" transform="translate(150.65,21.42)" id="shape5" fill="url(#lg3)"/> | |
102 | + <path d="M.2,0L109.5,0C109.8,0,109.8,.1,109.8,.2L109.8,4.6C109.8,4.7,109.8,4.8,109.5,4.8L.2,4.8C0,4.8,0,4.7,0,4.6L0,.2C0,.1,0,0,.2,0z" transform="translate(24.23,87.17)" id="shape6" fill="url(#lg3)"/> | |
103 | + <path d="M.4,0L3.9,0C4.1,0,4.3,.2,4.3,.4L4.3,28.5C4.3,28.7,4.1,28.9,3.9,28.9L.4,28.9C.2,28.9,-0,28.7,-0,28.5L-0,.4C-0,.2,.2,0,.4,0z" transform="translate(103.58,16.58)" id="shape7" fill="url(#lg4)"/> | |
104 | + <path d="M0,0L12.7,0L12.7,37.9L0,37.9L0,0z" transform="translate(11.74,61.96)" id="shape8" fill="url(#lg5)"/> | |
105 | + <path d="M.4,0L19.2,0C19.4,0,19.6,.2,19.6,.4L19.6,4C19.6,4.2,19.4,4.3,19.2,4.3L.4,4.3C.2,4.3,0,4.2,0,4L0,.4C0,.2,.2,0,.4,0z" transform="translate(8.32,95.65)" id="shape9" fill="url(#lg5)"/> | |
106 | + <path d="M.4,0L96.9,0C97.1,0,97.2,.2,97.2,.4L97.2,61.7C97.2,61.9,97.1,62,96.9,62L.4,62C.2,62,0,61.9,0,61.7L0,.4C0,.2,.2,0,.4,0z" transform="translate(6.32,0)" id="shape10" fill="url(#lg5)"/> | |
107 | + <path d="M.3,0L21.4,0C21.6,0,21.7,.2,21.7,.4L21.7,24.8C21.7,25,21.6,25.1,21.4,25.1L.3,25.1C.1,25.1,0,25,0,24.8L0,.4C0,.2,.1,0,.3,0z" transform="translate(129.09,18.44)" id="shape11" fill="url(#lg5)"/> | |
108 | + <path d="M0,0L12.7,0L12.7,50L0,50L0,0z" transform="translate(133.59,49.85)" id="shape12" fill="url(#lg5)"/> | |
109 | + <path d="M.4,0L19.2,0C19.4,0,19.6,.2,19.6,.4L19.6,4C19.6,4.2,19.4,4.3,19.2,4.3L.4,4.3C.2,4.3,0,4.2,0,4L0,.4C0,.2,.2,0,.4,0z" transform="translate(130.18,95.65)" id="shape13" fill="url(#lg5)"/> | |
110 | + <path d="M0,0L21.7,0L17.3,6.5L4.6,6.5L0,0z" transform="translate(129.09,43.33)" id="shape14" fill="url(#lg6)"/> | |
111 | + <g transform="translate(8.79,7.34)"> | |
112 | + <path d="M.4,0L3.7,0C4,0,4.2,.2,4.2,.4L4.2,16.7C4.2,16.9,4,17.1,3.7,17.1L.4,17.1C.2,17.1,-0,16.9,-0,16.7L-0,.4C-0,.2,.2,0,.4,0z" transform="translate(-0,0)" id="shape15" fill="url(#lg1)"/> | |
113 | + <path d="M.4,0L3.7,0C4,0,4.2,.2,4.2,.4L4.2,16.7C4.2,16.9,4,17.1,3.7,17.1L.4,17.1C.2,17.1,-0,16.9,-0,16.7L-0,.4C-0,.2,.2,0,.4,0z" transform="translate(5.86,0)" id="shape16" fill="url(#lg1)"/> | |
114 | + <path d="M.4,0L3.7,0C4,0,4.2,.2,4.2,.4L4.2,16.7C4.2,16.9,4,17.1,3.7,17.1L.4,17.1C.2,17.1,-0,16.9,-0,16.7L-0,.4C-0,.2,.2,0,.4,0z" transform="translate(11.72,0)" id="shape17" fill="url(#lg1)"/> | |
115 | + <path d="M.4,0L3.7,0C4,0,4.2,.2,4.2,.4L4.2,16.7C4.2,16.9,4,17.1,3.7,17.1L.4,17.1C.2,17.1,-0,16.9,-0,16.7L-0,.4C-0,.2,.2,0,.4,0z" transform="translate(17.58,0)" id="shape18" fill="url(#lg1)"/> | |
116 | + <path d="M.4,0L3.7,0C4,0,4.2,.2,4.2,.4L4.2,16.7C4.2,16.9,4,17.1,3.7,17.1L.4,17.1C.2,17.1,-0,16.9,-0,16.7L-0,.4C-0,.2,.2,0,.4,0z" transform="translate(23.43,0)" id="shape19" fill="url(#lg1)"/> | |
117 | + <path d="M.4,0L3.7,0C4,0,4.2,.2,4.2,.4L4.2,16.7C4.2,16.9,4,17.1,3.7,17.1L.4,17.1C.2,17.1,-0,16.9,-0,16.7L-0,.4C-0,.2,.2,0,.4,0z" transform="translate(29.29,0)" id="shape20" fill="url(#lg1)"/> | |
118 | + <path d="M.4,0L3.7,0C4,0,4.2,.2,4.2,.4L4.2,16.7C4.2,16.9,4,17.1,3.7,17.1L.4,17.1C.2,17.1,-0,16.9,-0,16.7L-0,.4C-0,.2,.2,0,.4,0z" transform="translate(35.15,0)" id="shape21" fill="url(#lg1)"/> | |
119 | + <path d="M.4,0L3.7,0C4,0,4.2,.2,4.2,.4L4.2,16.7C4.2,16.9,4,17.1,3.7,17.1L.4,17.1C.2,17.1,-0,16.9,-0,16.7L-0,.4C-0,.2,.2,0,.4,0z" transform="translate(41.2,0)" id="shape22" fill="url(#lg1)"/> | |
120 | + <path d="M.4,0L3.7,0C4,0,4.2,.2,4.2,.4L4.2,16.7C4.2,16.9,4,17.1,3.7,17.1L.4,17.1C.2,17.1,-0,16.9,-0,16.7L-0,.4C-0,.2,.2,0,.4,0z" transform="translate(46.97,0)" id="shape23" fill="url(#lg1)"/> | |
121 | + <path d="M.4,0L3.7,0C4,0,4.2,.2,4.2,.4L4.2,16.7C4.2,16.9,4,17.1,3.7,17.1L.4,17.1C.2,17.1,-0,16.9,-0,16.7L-0,.4C-0,.2,.2,0,.4,0z" transform="translate(52.73,0)" id="shape24" fill="url(#lg1)"/> | |
122 | + <path d="M.4,0L3.7,0C4,0,4.2,.2,4.2,.4L4.2,16.7C4.2,16.9,4,17.1,3.7,17.1L.4,17.1C.2,17.1,-0,16.9,-0,16.7L-0,.4C-0,.2,.2,0,.4,0z" transform="translate(58.59,0)" id="shape25" fill="url(#lg1)"/> | |
123 | + <path d="M.4,0L3.7,0C4,0,4.2,.2,4.2,.4L4.2,16.7C4.2,16.9,4,17.1,3.7,17.1L.4,17.1C.2,17.1,-0,16.9,-0,16.7L-0,.4C-0,.2,.2,0,.4,0z" transform="translate(64.44,0)" id="shape26" fill="url(#lg1)"/> | |
124 | + <path d="M.4,0L3.7,0C4,0,4.2,.2,4.2,.4L4.2,16.7C4.2,16.9,4,17.1,3.7,17.1L.4,17.1C.2,17.1,-0,16.9,-0,16.7L-0,.4C-0,.2,.2,0,.4,0z" transform="translate(70.3,0)" id="shape27" fill="url(#lg1)"/> | |
125 | + <path d="M.4,0L3.7,0C4,0,4.2,.2,4.2,.4L4.2,16.7C4.2,16.9,4,17.1,3.7,17.1L.4,17.1C.2,17.1,-0,16.9,-0,16.7L-0,.4C-0,.2,.2,0,.4,0z" transform="translate(76.16,0)" id="shape28" fill="url(#lg1)"/> | |
126 | + </g> | |
127 | + <path d="M.4,0L11.6,0C11.8,0,12,.2,12,.4L12,6.8C12,7,11.8,7.2,11.6,7.2L.4,7.2C.2,7.2,0,7,0,6.8L0,.4C0,.2,.2,0,.4,0z" transform="translate(90.67,18.05)" id="shape29" fill="url(#lg7)"/> | |
128 | + <path d="M.4,0L11.6,0C11.8,0,12,.2,12,.4L12,2.9L0,2.9L0,.4C0,.2,.2,0,.4,0z" transform="matrix(1,0,0,-1,90.7,25.2)" id="shape30" fill="url(#lg8)"/> | |
129 | + <path d="M0,0L10.6,0L10.6,5.8L0,5.8L0,0z" transform="translate(152.56,28.13)" id="shape31" fill="url(#lg3)"/> | |
130 | + <path d="M.4,0L8.9,0C9.1,0,9.3,.2,9.3,.4L9.3,26.1C9.3,26.3,9.1,26.5,8.9,26.5L.4,26.5C.2,26.5,0,26.3,0,26.1L0,.4C0,.2,.2,0,.4,0z" transform="translate(158.89,17.78)" id="shape32" fill="url(#lg3)"/> | |
131 | + <path d="M.4,0L1.7,0C1.9,0,2,.2,2,.4L2,8.9C2,9.1,1.9,9.3,1.7,9.3L.4,9.3C.2,9.3,0,9.1,0,8.9L0,.4C0,.2,.2,0,.4,0z" transform="translate(170.07,20.67)" id="shape33" fill="url(#lg5)"/> | |
132 | + <path d="M0,0L97.3,0L97.3,13.5L0,13.5L0,0z" transform="translate(6.37,24.39)" id="shape34" fill="#3b8d90"/> | |
133 | + <path d="M0,0L21.6,0L21.6,13.5L0,13.5L0,0z" transform="translate(129.17,24.39)" id="shape35" fill="#3b8d90"/> | |
134 | + <path d="M.3,0L152.3,0C152.6,0,152.6,.2,152.6,.4L152.6,11.3C152.6,11.5,152.6,11.6,152.3,11.6L.3,11.6C0,11.6,0,11.5,0,11.3L0,.4C0,.2,0,0,.3,0z" transform="translate(-0.01,25.19)" id="shape36" fill="url(#lg5)"/> | |
135 | + <g transform="translate(138.68,28.71)"> | |
136 | + <path d="M4,0L5.3,2.3L4,4.6L1.3,4.6L0,2.3L1.3,0L4,0z" id="shape37" fill="url(#lg9)"/> | |
137 | + <path d="M-0,1.5C-0,.7,.7,-0,1.5,-0C2.4,-0,3.1,.7,3.1,1.5C3.1,2.4,2.4,3.1,1.5,3.1C.7,3.1,-0,2.4,-0,1.5z" transform="translate(1.19,0.9)" id="shape38" fill="#cdcece"/> | |
138 | + </g> | |
139 | + <g transform="translate(9.78,53.88)"> | |
140 | + <g transform="translate(-0,0)"> | |
141 | + <path d="M-0,1.8C-0,.8,.8,0,1.8,0C2.8,0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" id="shape39" fill="url(#lg10)"/> | |
142 | + <path d="M0,1.2C0,.5,.5,0,1.2,0C1.8,0,2.3,.5,2.3,1.2C2.3,1.8,1.8,2.3,1.2,2.3C.5,2.3,0,1.8,0,1.2z" transform="translate(0.63,0.63)" id="shape40" fill="#347d80"/> | |
143 | + </g> | |
144 | + <g transform="translate(5.78,0)"> | |
145 | + <path d="M-0,1.8C-0,.8,.8,0,1.8,0C2.8,0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" id="shape41" fill="url(#lg10)"/> | |
146 | + <path d="M0,1.2C0,.5,.5,0,1.2,0C1.8,0,2.3,.5,2.3,1.2C2.3,1.8,1.8,2.3,1.2,2.3C.5,2.3,0,1.8,0,1.2z" transform="translate(0.63,0.63)" id="shape42" fill="#347d80"/> | |
147 | + </g> | |
148 | + <g transform="translate(11.56,0)"> | |
149 | + <path d="M-0,1.8C-0,.8,.8,0,1.8,0C2.8,0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" id="shape43" fill="url(#lg10)"/> | |
150 | + <path d="M0,1.2C0,.5,.5,0,1.2,0C1.8,0,2.3,.5,2.3,1.2C2.3,1.8,1.8,2.3,1.2,2.3C.5,2.3,0,1.8,0,1.2z" transform="translate(0.63,0.63)" id="shape44" fill="#347d80"/> | |
151 | + </g> | |
152 | + <g transform="translate(17.34,0)"> | |
153 | + <path d="M-0,1.8C-0,.8,.8,0,1.8,0C2.8,0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" id="shape45" fill="url(#lg10)"/> | |
154 | + <path d="M0,1.2C0,.5,.5,0,1.2,0C1.8,0,2.3,.5,2.3,1.2C2.3,1.8,1.8,2.3,1.2,2.3C.5,2.3,0,1.8,0,1.2z" transform="translate(0.63,0.63)" id="shape46" fill="#347d80"/> | |
155 | + </g> | |
156 | + <g transform="translate(23.12,0)"> | |
157 | + <path d="M-0,1.8C-0,.8,.8,0,1.8,0C2.8,0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" id="shape47" fill="url(#lg10)"/> | |
158 | + <path d="M0,1.2C0,.5,.5,0,1.2,0C1.8,0,2.3,.5,2.3,1.2C2.3,1.8,1.8,2.3,1.2,2.3C.5,2.3,0,1.8,0,1.2z" transform="translate(0.63,0.63)" id="shape48" fill="#347d80"/> | |
159 | + </g> | |
160 | + <g transform="translate(28.9,0)"> | |
161 | + <path d="M-0,1.8C-0,.8,.8,0,1.8,0C2.8,0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" id="shape49" fill="url(#lg10)"/> | |
162 | + <path d="M0,1.2C0,.5,.5,0,1.2,0C1.8,0,2.3,.5,2.3,1.2C2.3,1.8,1.8,2.3,1.2,2.3C.5,2.3,0,1.8,0,1.2z" transform="translate(0.63,0.63)" id="shape50" fill="#347d80"/> | |
163 | + </g> | |
164 | + <g transform="translate(34.68,0)"> | |
165 | + <path d="M-0,1.8C-0,.8,.8,0,1.8,0C2.8,0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" id="shape51" fill="url(#lg10)"/> | |
166 | + <path d="M0,1.2C0,.5,.5,0,1.2,0C1.8,0,2.3,.5,2.3,1.2C2.3,1.8,1.8,2.3,1.2,2.3C.5,2.3,0,1.8,0,1.2z" transform="translate(0.63,0.63)" id="shape52" fill="#347d80"/> | |
167 | + </g> | |
168 | + <g transform="translate(40.46,0)"> | |
169 | + <path d="M-0,1.8C-0,.8,.8,0,1.8,0C2.8,0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" id="shape53" fill="url(#lg10)"/> | |
170 | + <path d="M0,1.2C0,.5,.5,0,1.2,0C1.8,0,2.3,.5,2.3,1.2C2.3,1.8,1.8,2.3,1.2,2.3C.5,2.3,0,1.8,0,1.2z" transform="translate(0.63,0.63)" id="shape54" fill="#347d80"/> | |
171 | + </g> | |
172 | + <g transform="translate(46.25,0)"> | |
173 | + <path d="M-0,1.8C-0,.8,.8,0,1.8,0C2.8,0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" id="shape55" fill="url(#lg10)"/> | |
174 | + <path d="M0,1.2C0,.5,.5,0,1.2,0C1.8,0,2.3,.5,2.3,1.2C2.3,1.8,1.8,2.3,1.2,2.3C.5,2.3,0,1.8,0,1.2z" transform="translate(0.63,0.63)" id="shape56" fill="#347d80"/> | |
175 | + </g> | |
176 | + <g transform="translate(52.03,0)"> | |
177 | + <path d="M-0,1.8C-0,.8,.8,0,1.8,0C2.8,0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" id="shape57" fill="url(#lg10)"/> | |
178 | + <path d="M0,1.2C0,.5,.5,0,1.2,0C1.8,0,2.3,.5,2.3,1.2C2.3,1.8,1.8,2.3,1.2,2.3C.5,2.3,0,1.8,0,1.2z" transform="translate(0.63,0.63)" id="shape58" fill="#347d80"/> | |
179 | + </g> | |
180 | + <g transform="translate(57.81,0)"> | |
181 | + <path d="M-0,1.8C-0,.8,.8,0,1.8,0C2.8,0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" id="shape59" fill="url(#lg10)"/> | |
182 | + <path d="M0,1.2C0,.5,.5,0,1.2,0C1.8,0,2.3,.5,2.3,1.2C2.3,1.8,1.8,2.3,1.2,2.3C.5,2.3,0,1.8,0,1.2z" transform="translate(0.63,0.63)" id="shape60" fill="#347d80"/> | |
183 | + </g> | |
184 | + <g transform="translate(63.59,0)"> | |
185 | + <path d="M-0,1.8C-0,.8,.8,0,1.8,0C2.8,0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" id="shape61" fill="url(#lg10)"/> | |
186 | + <path d="M0,1.2C0,.5,.5,0,1.2,0C1.8,0,2.3,.5,2.3,1.2C2.3,1.8,1.8,2.3,1.2,2.3C.5,2.3,0,1.8,0,1.2z" transform="translate(0.63,0.63)" id="shape62" fill="#347d80"/> | |
187 | + </g> | |
188 | + <g transform="translate(69.37,0)"> | |
189 | + <path d="M-0,1.8C-0,.8,.8,0,1.8,0C2.8,0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" id="shape63" fill="url(#lg10)"/> | |
190 | + <path d="M0,1.2C0,.5,.5,0,1.2,0C1.8,0,2.3,.5,2.3,1.2C2.3,1.8,1.8,2.3,1.2,2.3C.5,2.3,0,1.8,0,1.2z" transform="translate(0.63,0.63)" id="shape64" fill="#347d80"/> | |
191 | + </g> | |
192 | + <g transform="translate(75.08,0)"> | |
193 | + <path d="M-0,1.8C-0,.8,.8,0,1.8,0C2.8,0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" id="shape65" fill="url(#lg10)"/> | |
194 | + <path d="M0,1.2C0,.5,.5,0,1.2,0C1.8,0,2.3,.5,2.3,1.2C2.3,1.8,1.8,2.3,1.2,2.3C.5,2.3,0,1.8,0,1.2z" transform="translate(0.63,0.63)" id="shape66" fill="#347d80"/> | |
195 | + </g> | |
196 | + <g transform="translate(80.93,0)"> | |
197 | + <path d="M-0,1.8C-0,.8,.8,0,1.8,0C2.8,0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" id="shape67" fill="url(#lg10)"/> | |
198 | + <path d="M0,1.2C0,.5,.5,0,1.2,0C1.8,0,2.3,.5,2.3,1.2C2.3,1.8,1.8,2.3,1.2,2.3C.5,2.3,0,1.8,0,1.2z" transform="translate(0.63,0.63)" id="shape68" fill="#347d80"/> | |
199 | + </g> | |
200 | + <g transform="translate(86.71,0)"> | |
201 | + <path d="M-0,1.8C-0,.8,.8,0,1.8,0C2.8,0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" id="shape69" fill="url(#lg10)"/> | |
202 | + <path d="M0,1.2C0,.5,.5,0,1.2,0C1.8,0,2.3,.5,2.3,1.2C2.3,1.8,1.8,2.3,1.2,2.3C.5,2.3,0,1.8,0,1.2z" transform="translate(0.63,0.63)" id="shape70" fill="#347d80"/> | |
203 | + </g> | |
204 | + </g> | |
205 | + <g transform="translate(3.72,28.71)"> | |
206 | + <path d="M4,0L5.3,2.3L4,4.6L1.3,4.6L0,2.3L1.3,0L4,0z" id="shape71" fill="url(#lg9)"/> | |
207 | + <path d="M-0,1.5C-0,.7,.7,-0,1.5,-0C2.4,-0,3.1,.7,3.1,1.5C3.1,2.4,2.4,3.1,1.5,3.1C.7,3.1,-0,2.4,-0,1.5z" transform="translate(1.19,0.9)" id="shape72" fill="#cdcece"/> | |
208 | + </g> | |
209 | + </g> | |
210 | +</svg> | ... | ... |
1 | +<svg viewBox="0 0 154 113.994" height="114" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="154"> | |
2 | + <defs> | |
3 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg1"> | |
4 | + <stop offset="0" stop-color="#bdbdbd"/> | |
5 | + <stop offset="0.15" stop-color="#ffffff"/> | |
6 | + <stop offset="0.25" stop-color="#ffffff"/> | |
7 | + <stop offset="0.52" stop-color="#dfdfdf"/> | |
8 | + <stop offset="0.69" stop-color="#c7c7c7"/> | |
9 | + <stop offset="0.8" stop-color="#bcbcbc"/> | |
10 | + <stop offset="0.92" stop-color="#b1b1b1"/> | |
11 | + <stop offset="1" stop-color="#cbcbcb"/> | |
12 | + </linearGradient> | |
13 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg2"> | |
14 | + <stop offset="0" stop-color="#bdbdbd"/> | |
15 | + <stop offset="0.15" stop-color="#ffffff"/> | |
16 | + <stop offset="0.25" stop-color="#ffffff"/> | |
17 | + <stop offset="0.52" stop-color="#dfdfdf"/> | |
18 | + <stop offset="0.69" stop-color="#c7c7c7"/> | |
19 | + <stop offset="0.8" stop-color="#bcbcbc"/> | |
20 | + <stop offset="0.92" stop-color="#b1b1b1"/> | |
21 | + <stop offset="1" stop-color="#cbcbcb"/> | |
22 | + </linearGradient> | |
23 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg3"> | |
24 | + <stop offset="0" stop-color="#858585"/> | |
25 | + <stop offset="0.15" stop-color="#babbbb"/> | |
26 | + <stop offset="0.25" stop-color="#dadada"/> | |
27 | + <stop offset="0.52" stop-color="#9d9e9e"/> | |
28 | + <stop offset="0.69" stop-color="#8b8c8c"/> | |
29 | + <stop offset="0.8" stop-color="#838484"/> | |
30 | + <stop offset="0.92" stop-color="#7c7d7d"/> | |
31 | + <stop offset="1" stop-color="#8f9090"/> | |
32 | + </linearGradient> | |
33 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg4"> | |
34 | + <stop offset="0" stop-color="#b9b9b9"/> | |
35 | + <stop offset="0.15" stop-color="#f2f2f2"/> | |
36 | + <stop offset="0.25" stop-color="#f3f3f3"/> | |
37 | + <stop offset="0.52" stop-color="#d0d0d0"/> | |
38 | + <stop offset="0.69" stop-color="#b9b9b9"/> | |
39 | + <stop offset="0.8" stop-color="#afafaf"/> | |
40 | + <stop offset="0.92" stop-color="#a5a5a5"/> | |
41 | + </linearGradient> | |
42 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg5"> | |
43 | + <stop offset="0" stop-color="#9fa0a0"/> | |
44 | + <stop offset="0.15" stop-color="#dadbdb"/> | |
45 | + <stop offset="0.25" stop-color="#dddede"/> | |
46 | + <stop offset="0.52" stop-color="#b3b4b4"/> | |
47 | + <stop offset="0.69" stop-color="#9fa0a0"/> | |
48 | + <stop offset="0.8" stop-color="#969797"/> | |
49 | + <stop offset="0.92" stop-color="#8e8e8e"/> | |
50 | + </linearGradient> | |
51 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg6"> | |
52 | + <stop offset="0" stop-color="#c7c7c7"/> | |
53 | + <stop offset="0.15" stop-color="#ffffff"/> | |
54 | + <stop offset="0.25" stop-color="#ffffff"/> | |
55 | + <stop offset="0.52" stop-color="#dfdfdf"/> | |
56 | + <stop offset="0.69" stop-color="#c7c7c7"/> | |
57 | + <stop offset="0.8" stop-color="#bcbcbc"/> | |
58 | + <stop offset="0.92" stop-color="#b1b1b1"/> | |
59 | + </linearGradient> | |
60 | + </defs> | |
61 | + <g transform="translate(1,1.02)"> | |
62 | + <path d="M.9,0C1.8,0,2.2,.4,2.2,.9L2.2,15.1L-0,15.1L-0,.9C-0,.4,.4,0,.9,0z" transform="translate(0.72,-0.02)" id="shape1" fill="url(#lg1)"/> | |
63 | + <path d="M.9,0C1.8,0,2.2,.4,2.2,.9L2.2,15.1L-0,15.1L-0,.9C-0,.4,.4,0,.9,0z" transform="translate(9.43,-0.02)" id="shape2" fill="url(#lg1)"/> | |
64 | + <path d="M.9,0C1.8,0,2.2,.4,2.2,.9L2.2,15.1L-0,15.1L-0,.9C-0,.4,.4,0,.9,0z" transform="translate(18.15,-0.02)" id="shape3" fill="url(#lg1)"/> | |
65 | + <path d="M.9,0C1.8,0,2.2,.4,2.2,.9L2.2,15.1L-0,15.1L-0,.9C-0,.4,.4,0,.9,0z" transform="translate(26.87,-0.02)" id="shape4" fill="url(#lg1)"/> | |
66 | + <path d="M0,0L151.4,0L151.4,1.8L0,1.8L0,0z" transform="translate(0.28,3.26)" id="shape5" fill="url(#lg2)"/> | |
67 | + <path d="M-0,1C-0,.4,.4,-0,1,-0C1.5,-0,2,.4,2,1C2,1.5,1.5,2,1,2C.4,2,-0,1.5,-0,1z" transform="translate(9.54,3.32)" id="shape6" fill="url(#lg3)"/> | |
68 | + <path d="M-0,1C-0,.4,.4,-0,1,-0C1.5,-0,2,.4,2,1C2,1.5,1.5,2,1,2C.4,2,-0,1.5,-0,1z" transform="translate(0.82,3.16)" id="shape7" fill="url(#lg3)"/> | |
69 | + <path d="M-0,1C-0,.4,.4,-0,1,-0C1.5,-0,2,.4,2,1C2,1.5,1.5,2,1,2C.4,2,-0,1.5,-0,1z" transform="translate(18.26,3.16)" id="shape8" fill="url(#lg3)"/> | |
70 | + <path d="M-0,1C-0,.4,.4,-0,1,-0C1.5,-0,2,.4,2,1C2,1.5,1.5,2,1,2C.4,2,-0,1.5,-0,1z" transform="translate(26.97,3.16)" id="shape9" fill="url(#lg3)"/> | |
71 | + <path d="M.9,0C1.8,0,2.2,.4,2.2,.9L2.2,15.1L-0,15.1L-0,.9C-0,.4,.4,0,.9,0z" transform="translate(44.28,-0.02)" id="shape10" fill="url(#lg1)"/> | |
72 | + <path d="M.9,0C1.8,0,2.2,.4,2.2,.9L2.2,15.1L-0,15.1L-0,.9C-0,.4,.4,0,.9,0z" transform="translate(53,-0.02)" id="shape11" fill="url(#lg1)"/> | |
73 | + <path d="M.9,0C1.8,0,2.2,.4,2.2,.9L2.2,15.1L-0,15.1L-0,.9C-0,.4,.4,0,.9,0z" transform="translate(61.72,-0.02)" id="shape12" fill="url(#lg1)"/> | |
74 | + <path d="M-0,1C-0,.4,.4,-0,1,-0C1.5,-0,2,.4,2,1C2,1.5,1.5,2,1,2C.4,2,-0,1.5,-0,1z" transform="translate(44.39,3.32)" id="shape13" fill="url(#lg3)"/> | |
75 | + <path d="M-0,1C-0,.4,.4,-0,1,-0C1.5,-0,2,.4,2,1C2,1.5,1.5,2,1,2C.4,2,-0,1.5,-0,1z" transform="translate(53.11,3.16)" id="shape14" fill="url(#lg3)"/> | |
76 | + <path d="M-0,1C-0,.4,.4,-0,1,-0C1.5,-0,2,.4,2,1C2,1.5,1.5,2,1,2C.4,2,-0,1.5,-0,1z" transform="translate(61.82,3.16)" id="shape15" fill="url(#lg3)"/> | |
77 | + <path d="M.9,0C1.8,0,2.2,.4,2.2,.9L2.2,15.1L-0,15.1L-0,.9C-0,.4,.4,0,.9,0z" transform="translate(79.47,-0.02)" id="shape16" fill="url(#lg1)"/> | |
78 | + <path d="M.9,0C1.8,0,2.2,.4,2.2,.9L2.2,15.1L-0,15.1L-0,.9C-0,.4,.4,0,.9,0z" transform="translate(88.15,-0.02)" id="shape17" fill="url(#lg1)"/> | |
79 | + <path d="M.9,0C1.8,0,2.2,.4,2.2,.9L2.2,15.1L-0,15.1L-0,.9C-0,.4,.4,0,.9,0z" transform="translate(96.86,-0.02)" id="shape18" fill="url(#lg1)"/> | |
80 | + <path d="M-0,1C-0,.4,.4,-0,1,-0C1.5,-0,2,.4,2,1C2,1.5,1.5,2,1,2C.4,2,-0,1.5,-0,1z" transform="translate(79.57,3.32)" id="shape19" fill="url(#lg3)"/> | |
81 | + <path d="M-0,1C-0,.4,.4,-0,1,-0C1.5,-0,2,.4,2,1C2,1.5,1.5,2,1,2C.4,2,-0,1.5,-0,1z" transform="translate(88.25,3.16)" id="shape20" fill="url(#lg3)"/> | |
82 | + <path d="M-0,1C-0,.4,.4,-0,1,-0C1.5,-0,2,.4,2,1C2,1.5,1.5,2,1,2C.4,2,-0,1.5,-0,1z" transform="translate(96.97,3.16)" id="shape21" fill="url(#lg3)"/> | |
83 | + <path d="M.9,0C1.8,0,2.2,.4,2.2,.9L2.2,15.1L-0,15.1L-0,.9C-0,.4,.4,0,.9,0z" transform="translate(35.59,-0.02)" id="shape22" fill="url(#lg1)"/> | |
84 | + <path d="M-0,1C-0,.4,.4,-0,1,-0C1.5,-0,2,.4,2,1C2,1.5,1.5,2,1,2C.4,2,-0,1.5,-0,1z" transform="translate(35.69,3.32)" id="shape23" fill="url(#lg3)"/> | |
85 | + <path d="M.9,0C1.8,0,2.2,.4,2.2,.9L2.2,15.1L-0,15.1L-0,.9C-0,.4,.4,0,.9,0z" transform="translate(70.44,-0.02)" id="shape24" fill="url(#lg1)"/> | |
86 | + <path d="M-0,1C-0,.4,.4,-0,1,-0C1.5,-0,2,.4,2,1C2,1.5,1.5,2,1,2C.4,2,-0,1.5,-0,1z" transform="translate(70.54,3.32)" id="shape25" fill="url(#lg3)"/> | |
87 | + <path d="M.9,0C1.8,0,2.2,.4,2.2,.9L2.2,15.1L-0,15.1L-0,.9C-0,.4,.4,0,.9,0z" transform="translate(105.44,-0.02)" id="shape26" fill="url(#lg1)"/> | |
88 | + <path d="M.9,0C1.8,0,2.2,.4,2.2,.9L2.2,15.1L-0,15.1L-0,.9C-0,.4,.4,0,.9,0z" transform="translate(114.16,-0.02)" id="shape27" fill="url(#lg1)"/> | |
89 | + <path d="M.9,0C1.8,0,2.2,.4,2.2,.9L2.2,15.1L-0,15.1L-0,.9C-0,.4,.4,0,.9,0z" transform="translate(122.87,-0.02)" id="shape28" fill="url(#lg1)"/> | |
90 | + <path d="M-0,1C-0,.4,.4,-0,1,-0C1.5,-0,2,.4,2,1C2,1.5,1.5,2,1,2C.4,2,-0,1.5,-0,1z" transform="translate(105.54,3.32)" id="shape29" fill="url(#lg3)"/> | |
91 | + <path d="M-0,1C-0,.4,.4,-0,1,-0C1.5,-0,2,.4,2,1C2,1.5,1.5,2,1,2C.4,2,-0,1.5,-0,1z" transform="translate(114.26,3.16)" id="shape30" fill="url(#lg3)"/> | |
92 | + <path d="M-0,1C-0,.4,.4,-0,1,-0C1.5,-0,2,.4,2,1C2,1.5,1.5,2,1,2C.4,2,-0,1.5,-0,1z" transform="translate(122.98,3.16)" id="shape31" fill="url(#lg3)"/> | |
93 | + <path d="M.9,0C1.8,0,2.2,.4,2.2,.9L2.2,15.1L-0,15.1L-0,.9C-0,.4,.4,0,.9,0z" transform="translate(140.29,-0.02)" id="shape32" fill="url(#lg1)"/> | |
94 | + <path d="M.9,0C1.8,0,2.2,.4,2.2,.9L2.2,15.1L-0,15.1L-0,.9C-0,.4,.4,0,.9,0z" transform="translate(149.01,-0.02)" id="shape33" fill="url(#lg1)"/> | |
95 | + <path d="M-0,1C-0,.4,.4,-0,1,-0C1.5,-0,2,.4,2,1C2,1.5,1.5,2,1,2C.4,2,-0,1.5,-0,1z" transform="translate(140.39,3.32)" id="shape34" fill="url(#lg3)"/> | |
96 | + <path d="M-0,1C-0,.4,.4,-0,1,-0C1.5,-0,2,.4,2,1C2,1.5,1.5,2,1,2C.4,2,-0,1.5,-0,1z" transform="translate(149.11,3.16)" id="shape35" fill="url(#lg3)"/> | |
97 | + <path d="M.9,0C1.8,0,2.2,.4,2.2,.9L2.2,15.1L-0,15.1L-0,.9C-0,.4,.4,0,.9,0z" transform="translate(131.59,-0.02)" id="shape36" fill="url(#lg1)"/> | |
98 | + <path d="M-0,1C-0,.4,.4,-0,1,-0C1.5,-0,2,.4,2,1C2,1.5,1.5,2,1,2C.4,2,-0,1.5,-0,1z" transform="translate(131.7,3.32)" id="shape37" fill="url(#lg3)"/> | |
99 | + <path d="M1.2,0L150.8,0C151.5,0,152,.5,152,1.2L152,96C152,96.7,151.5,97.2,150.8,97.2L1.2,97.2C.5,97.2,0,96.7,0,96L0,1.2C0,.5,.5,0,1.2,0z" transform="translate(0,14.74)" id="shape38" fill="url(#lg4)"/> | |
100 | + <path d="M152,-0L152,2.6C152,3.2,151.5,3.8,150.8,3.8L1.2,3.8C.5,3.8,0,3.2,0,2.6L0,-0L152,-0z" transform="translate(0,108.17)" id="shape39" fill="url(#lg5)"/> | |
101 | + <path d="M152,-0L152,2.6C152,3.2,151.5,3.8,150.8,3.8L1.2,3.8C.5,3.8,0,3.2,0,2.6L0,-0L152,-0z" transform="matrix(1,0,0,-1,0,18.6)" id="shape40" fill="url(#lg5)"/> | |
102 | + <g transform="translate(-0.03,18.56)"> | |
103 | + <path d="M.6,0C1.8,0,2.1,.2,2.1,.6L2.1,13.1C2.1,13.4,1.8,13.7,1.5,13.7C.2,13.7,-0,13.4,-0,13.1L-0,.6C-0,.2,.2,0,.6,0z" transform="translate(1.48,2.26)" id="shape41" fill="url(#lg6)"/> | |
104 | + <path d="M.6,0C1.8,0,2.1,.2,2.1,.6L2.1,13.1C2.1,13.4,1.8,13.7,1.5,13.7C.2,13.7,-0,13.4,-0,13.1L-0,.6C-0,.2,.2,0,.6,0z" transform="translate(10.94,8.34)" id="shape42" fill="url(#lg6)"/> | |
105 | + <path d="M.6,0C1.8,0,2.1,.2,2.1,.6L2.1,13.1C2.1,13.4,1.8,13.7,1.5,13.7C.2,13.7,-0,13.4,-0,13.1L-0,.6C-0,.2,.2,0,.6,0z" transform="translate(21.6,14.84)" id="shape43" fill="url(#lg6)"/> | |
106 | + <path d="M.6,0C1.8,0,2.1,.2,2.1,.6L2.1,13.1C2.1,13.4,1.8,13.7,1.5,13.7C.2,13.7,-0,13.4,-0,13.1L-0,.6C-0,.2,.2,0,.6,0z" transform="translate(32.26,20.24)" id="shape44" fill="url(#lg6)"/> | |
107 | + <path d="M.6,0C1.8,0,2.1,.2,2.1,.6L2.1,13.1C2.1,13.4,1.8,13.7,1.5,13.7C.2,13.7,-0,13.4,-0,13.1L-0,.6C-0,.2,.2,0,.6,0z" transform="translate(42.92,26.13)" id="shape45" fill="url(#lg6)"/> | |
108 | + <path d="M.6,0C1.8,0,2.1,.2,2.1,.6L2.1,13.1C2.1,13.4,1.8,13.7,1.5,13.7C.2,13.7,-0,13.4,-0,13.1L-0,.6C-0,.2,.2,0,.6,0z" transform="translate(53.58,32.02)" id="shape46" fill="url(#lg6)"/> | |
109 | + <path d="M.6,0C1.8,0,2.1,.2,2.1,.6L2.1,13.1C2.1,13.4,1.8,13.7,1.5,13.7C.2,13.7,-0,13.4,-0,13.1L-0,.6C-0,.2,.2,0,.6,0z" transform="translate(64.24,37.99)" id="shape47" fill="url(#lg6)"/> | |
110 | + <path d="M.6,0C1.8,0,2.1,.2,2.1,.6L2.1,13.1C2.1,13.4,1.8,13.7,1.5,13.7C.2,13.7,-0,13.4,-0,13.1L-0,.6C-0,.2,.2,0,.6,0z" transform="translate(74.9,44.35)" id="shape48" fill="url(#lg6)"/> | |
111 | + <path d="M.6,0C1.8,0,2.1,.2,2.1,.6L2.1,13.1C2.1,13.4,1.8,13.7,1.5,13.7C.2,13.7,-0,13.4,-0,13.1L-0,.6C-0,.2,.2,0,.6,0z" transform="translate(85.56,50.72)" id="shape49" fill="url(#lg6)"/> | |
112 | + <path d="M.6,0C1.8,0,2.1,.2,2.1,.6L2.1,13.1C2.1,13.4,1.8,13.7,1.5,13.7C.2,13.7,-0,13.4,-0,13.1L-0,.6C-0,.2,.2,0,.6,0z" transform="translate(96.22,57.08)" id="shape50" fill="url(#lg6)"/> | |
113 | + <path d="M.6,0C1.8,0,2.1,.2,2.1,.6L2.1,13.1C2.1,13.4,1.8,13.7,1.5,13.7C.2,13.7,-0,13.4,-0,13.1L-0,.6C-0,.2,.2,0,.6,0z" transform="translate(106.88,64.4)" id="shape51" fill="url(#lg6)"/> | |
114 | + <path d="M.6,0C1.8,0,2.1,.2,2.1,.6L2.1,13.1C2.1,13.4,1.8,13.7,1.5,13.7C.2,13.7,-0,13.4,-0,13.1L-0,.6C-0,.2,.2,0,.6,0z" transform="translate(117.54,69.49)" id="shape52" fill="url(#lg6)"/> | |
115 | + <path d="M.6,0C1.8,0,2.1,.2,2.1,.6L2.1,13.1C2.1,13.4,1.8,13.7,1.5,13.7C.2,13.7,-0,13.4,-0,13.1L-0,.6C-0,.2,.2,0,.6,0z" transform="translate(127,73.55)" id="shape53" fill="url(#lg6)"/> | |
116 | + <path d="M2.4,0L145.3,0C146.6,0,147.7,1.1,147.7,2.5L147.7,4.9C147.7,6.3,146.6,7.4,145.3,7.4L2.4,7.4C1.1,7.4,0,6.3,0,4.9L0,2.5C0,1.1,1.1,0,2.4,0z" transform="matrix(0.87,0.5,-0.5,0.87,2.9,10.1)" id="shape54" fill="url(#lg6)"/> | |
117 | + <path d="M.6,-0L148.1,-0C148.4,-0,148.6,.3,148.6,.6L148.6,2.8C148.6,3.1,148.4,3.3,148.1,3.3L.6,3.3C.3,3.3,0,3.1,0,2.8L0,.6C0,.3,.3,-0,.6,-0z" transform="matrix(0.87,0.5,-0.5,0.87,1.5,-0.3)" id="shape55" fill="url(#lg6)"/> | |
118 | + </g> | |
119 | + </g> | |
120 | +</svg> | ... | ... |
1 | +<svg viewBox="0 0 220 172" height="172" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="220"> | |
2 | + <defs> | |
3 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg1"> | |
4 | + <stop offset="0" stop-color="#a1b7c0"/> | |
5 | + <stop offset="0.15" stop-color="#dcf0f8"/> | |
6 | + <stop offset="0.25" stop-color="#def1f9"/> | |
7 | + <stop offset="0.52" stop-color="#b5ced7"/> | |
8 | + <stop offset="0.69" stop-color="#a1b7c0"/> | |
9 | + <stop offset="0.8" stop-color="#98adb5"/> | |
10 | + <stop offset="0.92" stop-color="#8fa3ab"/> | |
11 | + </linearGradient> | |
12 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg2"> | |
13 | + <stop offset="0" stop-color="#c7c7c7"/> | |
14 | + <stop offset="0.15" stop-color="#ffffff"/> | |
15 | + <stop offset="0.25" stop-color="#ffffff"/> | |
16 | + <stop offset="0.52" stop-color="#dfdfdf"/> | |
17 | + <stop offset="0.69" stop-color="#c7c7c7"/> | |
18 | + <stop offset="0.8" stop-color="#bcbcbc"/> | |
19 | + <stop offset="0.92" stop-color="#b1b1b1"/> | |
20 | + </linearGradient> | |
21 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg3"> | |
22 | + <stop offset="0" stop-color="#b5b5b5"/> | |
23 | + <stop offset="0.01" stop-color="#ffffff"/> | |
24 | + <stop offset="0.03" stop-color="#ebebeb"/> | |
25 | + <stop offset="0.9" stop-color="#e7e7e7"/> | |
26 | + <stop offset="0.98" stop-color="#e2e2e2"/> | |
27 | + <stop offset="1" stop-color="#a8a8a8"/> | |
28 | + </linearGradient> | |
29 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg4"> | |
30 | + <stop offset="0" stop-color="#6997b7"/> | |
31 | + <stop offset="0.15" stop-color="#afd3f0"/> | |
32 | + <stop offset="0.25" stop-color="#b6d7f1"/> | |
33 | + <stop offset="0.52" stop-color="#77aace"/> | |
34 | + <stop offset="0.69" stop-color="#6997b7"/> | |
35 | + <stop offset="0.8" stop-color="#638fad"/> | |
36 | + <stop offset="0.92" stop-color="#5d86a3"/> | |
37 | + </linearGradient> | |
38 | + <linearGradient gradientUnits="userSpaceOnUse" x2="5" y2="-0" x1="0" y1="6" id="lg5"> | |
39 | + <stop offset="0" stop-color="#6895b4"/> | |
40 | + <stop offset="0.15" stop-color="#94c7ec"/> | |
41 | + <stop offset="0.25" stop-color="#cae1f4"/> | |
42 | + <stop offset="0.44" stop-color="#77aace"/> | |
43 | + <stop offset="0.6" stop-color="#6997b7"/> | |
44 | + <stop offset="0.8" stop-color="#587f9a"/> | |
45 | + <stop offset="0.97" stop-color="#50748d"/> | |
46 | + <stop offset="1" stop-color="#6c9bbb"/> | |
47 | + </linearGradient> | |
48 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg6"> | |
49 | + <stop offset="0" stop-color="#000000"/> | |
50 | + <stop offset="0.15" stop-color="#868686"/> | |
51 | + <stop offset="0.25" stop-color="#939393"/> | |
52 | + <stop offset="0.52" stop-color="#000000"/> | |
53 | + <stop offset="0.69" stop-color="#000000"/> | |
54 | + <stop offset="0.8" stop-color="#000000"/> | |
55 | + <stop offset="0.92" stop-color="#000000"/> | |
56 | + </linearGradient> | |
57 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg7"> | |
58 | + <stop offset="0" stop-color="#c7c7c7"/> | |
59 | + <stop offset="0.15" stop-color="#ffffff"/> | |
60 | + <stop offset="0.25" stop-color="#ffffff"/> | |
61 | + <stop offset="0.52" stop-color="#dfdfdf"/> | |
62 | + <stop offset="0.69" stop-color="#c7c7c7"/> | |
63 | + <stop offset="0.8" stop-color="#bcbcbc"/> | |
64 | + <stop offset="0.92" stop-color="#b1b1b1"/> | |
65 | + </linearGradient> | |
66 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg8"> | |
67 | + <stop offset="0" stop-color="#343232"/> | |
68 | + <stop offset="0.15" stop-color="#555454"/> | |
69 | + <stop offset="0.26" stop-color="#797777"/> | |
70 | + <stop offset="0.41" stop-color="#5d5b5b"/> | |
71 | + <stop offset="0.6" stop-color="#484646"/> | |
72 | + <stop offset="0.8" stop-color="#383636"/> | |
73 | + <stop offset="0.93" stop-color="#2c2b2b"/> | |
74 | + <stop offset="1" stop-color="#535151"/> | |
75 | + </linearGradient> | |
76 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg9"> | |
77 | + <stop offset="0" stop-color="#919494"/> | |
78 | + <stop offset="0.01" stop-color="#d9dcdc"/> | |
79 | + <stop offset="0.03" stop-color="#bec1c1"/> | |
80 | + <stop offset="0.9" stop-color="#babebe"/> | |
81 | + <stop offset="0.98" stop-color="#b6baba"/> | |
82 | + <stop offset="1" stop-color="#878989"/> | |
83 | + </linearGradient> | |
84 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg10"> | |
85 | + <stop offset="0" stop-color="#b5b5b5"/> | |
86 | + <stop offset="0.01" stop-color="#ffffff"/> | |
87 | + <stop offset="0.03" stop-color="#ebebeb"/> | |
88 | + <stop offset="0.9" stop-color="#e7e7e7"/> | |
89 | + <stop offset="0.98" stop-color="#e2e2e2"/> | |
90 | + <stop offset="1" stop-color="#a8a8a8"/> | |
91 | + </linearGradient> | |
92 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg11"> | |
93 | + <stop offset="0" stop-color="#c4aa84"/> | |
94 | + <stop offset="0.15" stop-color="#ffe0b3"/> | |
95 | + <stop offset="0.25" stop-color="#ffeed7"/> | |
96 | + <stop offset="0.44" stop-color="#dfc297"/> | |
97 | + <stop offset="0.6" stop-color="#c7ad86"/> | |
98 | + <stop offset="0.8" stop-color="#a89170"/> | |
99 | + <stop offset="0.97" stop-color="#998566"/> | |
100 | + <stop offset="1" stop-color="#cbb189"/> | |
101 | + </linearGradient> | |
102 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg12"> | |
103 | + <stop offset="0" stop-color="#b59d79"/> | |
104 | + <stop offset="0.01" stop-color="#ffe5c1"/> | |
105 | + <stop offset="0.03" stop-color="#ebcc9f"/> | |
106 | + <stop offset="0.9" stop-color="#e7c99c"/> | |
107 | + <stop offset="0.98" stop-color="#e2c499"/> | |
108 | + <stop offset="1" stop-color="#a89170"/> | |
109 | + </linearGradient> | |
110 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg13"> | |
111 | + <stop offset="0" stop-color="#0e8f7c"/> | |
112 | + <stop offset="0.01" stop-color="#7ed7c4"/> | |
113 | + <stop offset="0.03" stop-color="#16bba3"/> | |
114 | + <stop offset="0.9" stop-color="#16b8a0"/> | |
115 | + <stop offset="0.98" stop-color="#15b49c"/> | |
116 | + <stop offset="1" stop-color="#0c8573"/> | |
117 | + </linearGradient> | |
118 | + <linearGradient gradientUnits="userSpaceOnUse" x2="3" y2="4" x1="1" y1="-0" id="lg14"> | |
119 | + <stop offset="0" stop-color="#9f5153"/> | |
120 | + <stop offset="1" stop-color="#7b030d"/> | |
121 | + </linearGradient> | |
122 | + <linearGradient gradientUnits="userSpaceOnUse" x2="3" y2="4" x1="1" y1="-0" id="lg15"> | |
123 | + <stop offset="0" stop-color="#91cfd1"/> | |
124 | + <stop offset="1" stop-color="#49aeb1"/> | |
125 | + </linearGradient> | |
126 | + </defs> | |
127 | + <g transform="translate(1.01,1)"> | |
128 | + <g transform="translate(0,13.27)"> | |
129 | + <g transform="translate(0,71.18)"> | |
130 | + <path d="M28.5,0C28.5,0,28.3,11.6,14.2,11.6C.1,11.6,0,0,0,0L28.5,0z" transform="matrix(0,-1,-1,0,11.6,28.5)" id="shape1" fill="url(#lg1)"/> | |
131 | + <path d="M28.5,0C28.5,0,28.3,11.6,14.2,11.6C.1,11.6,0,0,0,0L28.5,0z" transform="matrix(0,-1,1,0,206.4,28.5)" id="shape2" fill="url(#lg1)"/> | |
132 | + <path d="M0,0L28.5,0L28.5,194.7L0,194.7L0,0z" transform="matrix(0,-1,1,0,11.6,28.5)" id="shape3" fill="url(#lg1)"/> | |
133 | + </g> | |
134 | + <g transform="translate(0,35.59)"> | |
135 | + <path d="M28.5,0C28.5,0,28.3,11.6,14.2,11.6C.1,11.6,0,0,0,0L28.5,0z" transform="matrix(0,-1,-1,0,11.6,28.5)" id="shape4" fill="url(#lg1)"/> | |
136 | + <path d="M28.5,0C28.5,0,28.3,11.6,14.2,11.6C.1,11.6,0,0,0,0L28.5,0z" transform="matrix(0,-1,1,0,206.4,28.5)" id="shape5" fill="url(#lg1)"/> | |
137 | + <path d="M0,0L28.5,0L28.5,194.7L0,194.7L0,0z" transform="matrix(0,-1,1,0,11.6,28.5)" id="shape6" fill="url(#lg1)"/> | |
138 | + </g> | |
139 | + <g transform="translate(0,106.76)"> | |
140 | + <path d="M28.5,0C28.5,0,28.3,11.6,14.2,11.6C.1,11.6,0,0,0,0L28.5,0z" transform="matrix(0,-1,-1,0,11.6,28.5)" id="shape7" fill="url(#lg1)"/> | |
141 | + <path d="M28.5,0C28.5,0,28.3,11.6,14.2,11.6C.1,11.6,0,0,0,0L28.5,0z" transform="matrix(0,-1,1,0,206.4,28.5)" id="shape8" fill="url(#lg1)"/> | |
142 | + <path d="M0,0L28.5,0L28.5,194.7L0,194.7L0,0z" transform="matrix(0,-1,1,0,11.6,28.5)" id="shape9" fill="url(#lg1)"/> | |
143 | + </g> | |
144 | + <g> | |
145 | + <path d="M28.5,0C28.5,0,28.3,11.6,14.2,11.6C.1,11.6,0,0,0,0L28.5,0z" transform="matrix(0,-1,-1,0,11.6,28.5)" id="shape10" fill="url(#lg1)"/> | |
146 | + <path d="M28.5,0C28.5,0,28.3,11.6,14.2,11.6C.1,11.6,0,0,0,0L28.5,0z" transform="matrix(0,-1,1,0,206.4,28.5)" id="shape11" fill="url(#lg1)"/> | |
147 | + <path d="M0,0L28.5,0L28.5,194.7L0,194.7L0,0z" transform="matrix(0,-1,1,0,11.6,28.5)" id="shape12" fill="url(#lg1)"/> | |
148 | + </g> | |
149 | + </g> | |
150 | + <path d="M0,0L199.1,0L199.1,5.5L0,5.5L0,0z" transform="translate(9.66,96.11)" id="shape13" fill="url(#lg2)"/> | |
151 | + <path d="M0,0L199.5,0L199.5,5.5L0,5.5L0,0z" transform="translate(9.66,131.43)" id="shape14" fill="url(#lg2)"/> | |
152 | + <path d="M0,0L199.3,0L199.3,5.5L0,5.5L0,0z" transform="translate(9.66,157.4)" id="shape15" fill="url(#lg3)"/> | |
153 | + <path d="M0,0L170,0L170,5.5L0,5.5L0,0z" transform="matrix(0,-1,1,0,4.2,170)" id="shape16" fill="url(#lg3)"/> | |
154 | + <path d="M0,0L170,0L170,5.5L0,5.5L0,0z" transform="matrix(0,-1,1,0,208.9,170)" id="shape17" fill="url(#lg3)"/> | |
155 | + <path d="M0,0L199.3,0L199.3,5.5L0,5.5L0,0z" transform="translate(9.66,0.02)" id="shape18" fill="url(#lg3)"/> | |
156 | + <path d="M0,0L199.1,0L199.1,5.5L0,5.5L0,0z" transform="translate(9.71,60.07)" id="shape19" fill="url(#lg2)"/> | |
157 | + <path d="M0,0L199.1,0L199.1,5.5L0,5.5L0,0z" transform="translate(9.43,23.75)" id="shape20" fill="url(#lg2)"/> | |
158 | + <path d="M.1,-0L58.4,-0C58.5,-0,58.5,0,58.5,.1L58.5,3.2C58.5,3.2,58.5,3.3,58.4,3.3L.1,3.3C0,3.3,0,3.2,0,3.2L0,.1C0,0,0,-0,.1,-0z" transform="matrix(-1,0,0,1,171.7,94.3)" id="shape21" fill="url(#lg4)"/> | |
159 | + <path d="M.1,-0L58.4,-0C58.5,-0,58.5,0,58.5,.1L58.5,3.2C58.5,3.2,58.5,3.3,58.4,3.3L.1,3.3C0,3.3,0,3.2,0,3.2L0,.1C0,0,0,-0,.1,-0z" transform="matrix(-1,0,0,1,91.4,94.3)" id="shape22" fill="url(#lg4)"/> | |
160 | + <path d="M0,-0L6.6,-0C6.7,-0,6.7,0,6.7,.1L6.7,3.2C6.7,3.2,6.7,3.3,6.6,3.3L0,3.3C0,3.3,0,3.2,0,3.2L0,.1C0,0,0,-0,0,-0z" transform="matrix(0,-1,-1,0,95,93.2)" id="shape23" fill="url(#lg4)"/> | |
161 | + <path d="M0,0C0,0,2.7,.1,4,1.6C5.3,3.1,5.1,5.5,5.1,5.5L1.5,5.5C1.5,5.5,1.5,4.1,0,3.6L0,0z" transform="matrix(1,0,0,-1,90.1,97.7)" id="shape24" fill="url(#lg5)"/> | |
162 | + <path d="M.2,-0L152.7,-0C152.9,-0,152.9,.1,152.9,.2L152.9,5.4C152.9,5.5,152.9,5.5,152.7,5.5L.2,5.5C0,5.5,0,5.5,0,5.4L0,.2C0,.1,0,-0,.2,-0z" transform="translate(32.56,151.82)" id="shape25" fill="url(#lg4)"/> | |
163 | + <path d="M0,0L19.4,0L19.4,5.5L0,5.5L0,0z" transform="translate(59.05,107.67)" id="shape26" fill="url(#lg6)"/> | |
164 | + <path d="M.2,0L21.7,0C21.8,0,21.9,.1,21.9,.2L21.9,45.1C21.9,45.2,21.8,45.3,21.7,45.3L.2,45.3C.1,45.3,0,45.2,0,45.1L0,.2C0,.1,.1,0,.2,0z" transform="translate(57.83,112.61)" id="shape27" fill="url(#lg7)"/> | |
165 | + <path d="M.2,0L30.5,0C30.6,0,30.7,.1,30.7,.2L30.7,21C30.7,21.1,30.6,21.2,30.5,21.2L.2,21.2C.1,21.2,0,21.1,0,21L0,.2C0,.1,.1,0,.2,0z" transform="translate(53.43,87.03)" id="shape28" fill="url(#lg8)"/> | |
166 | + <path d="M0,0L75.7,0L75.7,41L0,41L0,0z" transform="translate(30.97,43.89)" id="shape29" fill="url(#lg9)"/> | |
167 | + <path d="M0,0L75.7,0L75.7,41L0,41L0,0z" transform="translate(30.97,2.48)" id="shape30" fill="url(#lg9)"/> | |
168 | + <path d="M0,0L81,0L81,5.5L0,5.5L0,0z" transform="translate(28.26,0.02)" id="shape31" fill="url(#lg10)"/> | |
169 | + <path d="M0,0L81,0L81,5.5L0,5.5L0,0z" transform="translate(28.26,41.14)" id="shape32" fill="url(#lg10)"/> | |
170 | + <path d="M0,0L81,0L81,5.5L0,5.5L0,0z" transform="translate(28.26,82.25)" id="shape33" fill="url(#lg10)"/> | |
171 | + <path d="M0,0L170,0L170,5.5L0,5.5L0,0z" transform="matrix(0,-1,1,0,27.6,170)" id="shape34" fill="url(#lg3)"/> | |
172 | + <path d="M0,0L170,0L170,5.5L0,5.5L0,0z" transform="matrix(0,-1,1,0,103.8,170)" id="shape35" fill="url(#lg3)"/> | |
173 | + <g transform="translate(39.69,13.37)"> | |
174 | + <g transform="translate(-0.01,-0.02)"> | |
175 | + <path d="M0,6C0,2.7,2.7,0,6,0C9.3,0,12,2.7,12,6C12,9.3,9.3,12,6,12C2.7,12,0,9.3,0,6z" stroke="#000000" id="shape36" fill="#000000"/> | |
176 | + <path d="M0,5.5C0,2.5,2.5,0,5.5,0C8.5,0,11,2.5,11,5.5C11,8.5,8.5,11,5.5,11C2.5,11,0,8.5,0,5.5z" transform="translate(0.5,0.51)" id="shape37" fill="#9e9f9f"/> | |
177 | + <path d="M0,5.3C0,2.4,2.4,0,5.3,0C8.2,0,10.6,2.4,10.6,5.3C10.6,8.2,8.2,10.6,5.3,10.6C2.4,10.6,0,8.2,0,5.3z" transform="translate(0.68,0.75)" id="shape38" fill="#ebeae9"/> | |
178 | + <path d="M.3,0" stroke="#000000" transform="matrix(0.98,0.17,-0.17,0.98,9.2,2.6)" id="shape39" fill="none"/> | |
179 | + <path d="M0,0" stroke="#000000" transform="translate(8.97,9.06)" id="shape40" fill="none"/> | |
180 | + <path d="M.7,0" stroke="#000000" transform="translate(2.33,8.74)" id="shape41" fill="none"/> | |
181 | + <path d="M0,0" stroke="#000000" transform="translate(5.94,1.17)" id="shape42" fill="none"/> | |
182 | + <path d="M0,0" stroke="#000000" transform="translate(5.94,10.12)" id="shape43" fill="none"/> | |
183 | + <path d="M0,0" stroke="#000000" transform="matrix(0,-1,1,0,0.9,6)" id="shape44" fill="none"/> | |
184 | + <path d="M0,0" stroke="#000000" transform="matrix(0,-1,1,0,10.3,6)" id="shape45" fill="none"/> | |
185 | + <path d="M0,0" stroke="#000000" transform="translate(2.58,2.48)" id="shape46" fill="none"/> | |
186 | + <path d="M5.8,6.8C8.1,3.1,5.4,0,5.4,0C7.3,.9,8.7,2.8,8.7,5C8.7,8.1,6.2,10.5,3.2,10.5C2,10.5,.9,10.1,0,9.5C.1,9.6,3.4,10.4,5.8,6.8z" transform="translate(2.8,0.95)" fill-opacity="0.73" id="shape47" fill="#ffffff"/> | |
187 | + <g transform="matrix(0.87,0.5,-0.5,0.87,2,3.1)"> | |
188 | + <path d="M-0.2,.4L4.1,.6C4.1,.6,5.5,.7,6.2,.3C6.2,.3,6.5,.2,6.5,.6C6.4,1.3,6.3,1.7,6.1,1.5C6.1,1.5,5.3,1,4,.9L-0.2,.4z" stroke="#000000" transform="translate(0.22,-0.29)" id="shape48" fill="#000000"/> | |
189 | + <path d="M.1,.1C.3,-0,.6,-0,.7,.1C.9,.3,.9,.6,.7,.7C.6,.9,.3,.9,.1,.7C-0,.6,-0,.3,.1,.1z" stroke="#000000" transform="translate(4.3,0.08)" id="shape49" fill="#000000"/> | |
190 | + <path d="M.1,.1C.2,-0,.3,-0,.4,.1C.6,.2,.6,.3,.4,.4C.3,.6,.2,.6,.1,.4C-0,.3,-0,.2,.1,.1z" transform="translate(4.47,0.25)" id="shape50" fill="url(#lg11)"/> | |
191 | + </g> | |
192 | + </g> | |
193 | + <g transform="translate(23.09,-0.02)"> | |
194 | + <path d="M0,6C0,2.7,2.7,0,6,0C9.3,0,12,2.7,12,6C12,9.3,9.3,12,6,12C2.7,12,0,9.3,0,6z" stroke="#000000" id="shape51" fill="#000000"/> | |
195 | + <path d="M0,5.5C0,2.5,2.5,0,5.5,0C8.5,0,11,2.5,11,5.5C11,8.5,8.5,11,5.5,11C2.5,11,0,8.5,0,5.5z" transform="translate(0.5,0.51)" id="shape52" fill="#9e9f9f"/> | |
196 | + <path d="M0,5.3C0,2.4,2.4,0,5.3,0C8.2,0,10.6,2.4,10.6,5.3C10.6,8.2,8.2,10.6,5.3,10.6C2.4,10.6,0,8.2,0,5.3z" transform="translate(0.68,0.75)" id="shape53" fill="#ebeae9"/> | |
197 | + <path d="M.3,0" stroke="#000000" transform="matrix(0.98,0.17,-0.17,0.98,9.2,2.6)" id="shape54" fill="none"/> | |
198 | + <path d="M0,0" stroke="#000000" transform="translate(8.97,9.06)" id="shape55" fill="none"/> | |
199 | + <path d="M.7,0" stroke="#000000" transform="translate(2.33,8.74)" id="shape56" fill="none"/> | |
200 | + <path d="M0,0" stroke="#000000" transform="translate(5.94,1.17)" id="shape57" fill="none"/> | |
201 | + <path d="M0,0" stroke="#000000" transform="translate(5.94,10.12)" id="shape58" fill="none"/> | |
202 | + <path d="M0,0" stroke="#000000" transform="matrix(0,-1,1,0,0.9,6)" id="shape59" fill="none"/> | |
203 | + <path d="M0,0" stroke="#000000" transform="matrix(0,-1,1,0,10.3,6)" id="shape60" fill="none"/> | |
204 | + <path d="M0,0" stroke="#000000" transform="translate(2.58,2.48)" id="shape61" fill="none"/> | |
205 | + <path d="M5.8,6.8C8.1,3.1,5.4,0,5.4,0C7.3,.9,8.7,2.8,8.7,5C8.7,8.1,6.2,10.5,3.2,10.5C2,10.5,.9,10.1,0,9.5C.1,9.6,3.4,10.4,5.8,6.8z" transform="translate(2.8,0.95)" fill-opacity="0.73" id="shape62" fill="#ffffff"/> | |
206 | + <g transform="matrix(0.87,0.5,-0.5,0.87,2,3.1)"> | |
207 | + <path d="M-0.2,.4L4.1,.6C4.1,.6,5.5,.7,6.2,.3C6.2,.3,6.5,.2,6.5,.6C6.4,1.3,6.3,1.7,6.1,1.5C6.1,1.5,5.3,1,4,.9L-0.2,.4z" stroke="#000000" transform="translate(0.22,-0.29)" id="shape63" fill="#000000"/> | |
208 | + <path d="M.1,.1C.3,-0,.6,-0,.7,.1C.9,.3,.9,.6,.7,.7C.6,.9,.3,.9,.1,.7C-0,.6,-0,.3,.1,.1z" stroke="#000000" transform="translate(4.3,0.08)" id="shape64" fill="#000000"/> | |
209 | + <path d="M.1,.1C.2,-0,.3,-0,.4,.1C.6,.2,.6,.3,.4,.4C.3,.6,.2,.6,.1,.4C-0,.3,-0,.2,.1,.1z" transform="translate(4.47,0.25)" id="shape65" fill="url(#lg11)"/> | |
210 | + </g> | |
211 | + </g> | |
212 | + <g transform="translate(46.17,-0.02)"> | |
213 | + <path d="M0,6C0,2.7,2.7,0,6,0C9.3,0,12,2.7,12,6C12,9.3,9.3,12,6,12C2.7,12,0,9.3,0,6z" stroke="#000000" id="shape66" fill="#000000"/> | |
214 | + <path d="M0,5.5C0,2.5,2.5,0,5.5,0C8.5,0,11,2.5,11,5.5C11,8.5,8.5,11,5.5,11C2.5,11,0,8.5,0,5.5z" transform="translate(0.5,0.51)" id="shape67" fill="#9e9f9f"/> | |
215 | + <path d="M0,5.3C0,2.4,2.4,0,5.3,0C8.2,0,10.6,2.4,10.6,5.3C10.6,8.2,8.2,10.6,5.3,10.6C2.4,10.6,0,8.2,0,5.3z" transform="translate(0.68,0.75)" id="shape68" fill="#ebeae9"/> | |
216 | + <path d="M.3,0" stroke="#000000" transform="matrix(0.98,0.17,-0.17,0.98,9.2,2.6)" id="shape69" fill="none"/> | |
217 | + <path d="M0,0" stroke="#000000" transform="translate(8.97,9.06)" id="shape70" fill="none"/> | |
218 | + <path d="M.7,0" stroke="#000000" transform="translate(2.33,8.74)" id="shape71" fill="none"/> | |
219 | + <path d="M0,0" stroke="#000000" transform="translate(5.94,1.17)" id="shape72" fill="none"/> | |
220 | + <path d="M0,0" stroke="#000000" transform="translate(5.94,10.12)" id="shape73" fill="none"/> | |
221 | + <path d="M0,0" stroke="#000000" transform="matrix(0,-1,1,0,0.9,6)" id="shape74" fill="none"/> | |
222 | + <path d="M0,0" stroke="#000000" transform="matrix(0,-1,1,0,10.3,6)" id="shape75" fill="none"/> | |
223 | + <path d="M0,0" stroke="#000000" transform="translate(2.58,2.48)" id="shape76" fill="none"/> | |
224 | + <path d="M5.8,6.8C8.1,3.1,5.4,0,5.4,0C7.3,.9,8.7,2.8,8.7,5C8.7,8.1,6.2,10.5,3.2,10.5C2,10.5,.9,10.1,0,9.5C.1,9.6,3.4,10.4,5.8,6.8z" transform="translate(2.8,0.95)" fill-opacity="0.73" id="shape77" fill="#ffffff"/> | |
225 | + <g transform="matrix(0.87,0.5,-0.5,0.87,2,3.1)"> | |
226 | + <path d="M-0.2,.4L4.1,.6C4.1,.6,5.5,.7,6.2,.3C6.2,.3,6.5,.2,6.5,.6C6.4,1.3,6.3,1.7,6.1,1.5C6.1,1.5,5.3,1,4,.9L-0.2,.4z" stroke="#000000" transform="translate(0.22,-0.29)" id="shape78" fill="#000000"/> | |
227 | + <path d="M.1,.1C.3,-0,.6,-0,.7,.1C.9,.3,.9,.6,.7,.7C.6,.9,.3,.9,.1,.7C-0,.6,-0,.3,.1,.1z" stroke="#000000" transform="translate(4.3,0.08)" id="shape79" fill="#000000"/> | |
228 | + <path d="M.1,.1C.2,-0,.3,-0,.4,.1C.6,.2,.6,.3,.4,.4C.3,.6,.2,.6,.1,.4C-0,.3,-0,.2,.1,.1z" transform="translate(4.47,0.25)" id="shape80" fill="url(#lg11)"/> | |
229 | + </g> | |
230 | + </g> | |
231 | + </g> | |
232 | + <g transform="translate(44.19,31.84)"> | |
233 | + <path d="M.2,-0L8.9,-0C9,-0,9.1,.1,9.1,.2L9.1,5.1C9.1,5.2,9,5.3,8.9,5.3L.2,5.3C.1,5.3,-0,5.2,-0,5.1L-0,.2C-0,.1,.1,-0,.2,-0z" transform="translate(0,0)" id="shape81" fill="url(#lg12)"/> | |
234 | + <path d="M.2,-0L8.9,-0C9,-0,9.1,.1,9.1,.2L9.1,5.1C9.1,5.2,9,5.3,8.9,5.3L.2,5.3C.1,5.3,-0,5.2,-0,5.1L-0,.2C-0,.1,.1,-0,.2,-0z" transform="translate(13.34,0)" id="shape82" fill="url(#lg12)"/> | |
235 | + <path d="M.2,-0L8.9,-0C9,-0,9.1,.1,9.1,.2L9.1,5.1C9.1,5.2,9,5.3,8.9,5.3L.2,5.3C.1,5.3,-0,5.2,-0,5.1L-0,.2C-0,.1,.1,-0,.2,-0z" transform="translate(40.01,0)" id="shape83" fill="url(#lg12)"/> | |
236 | + <path d="M.2,-0L8.9,-0C9,-0,9.1,.1,9.1,.2L9.1,5.1C9.1,5.2,9,5.3,8.9,5.3L.2,5.3C.1,5.3,-0,5.2,-0,5.1L-0,.2C-0,.1,.1,-0,.2,-0z" transform="translate(26.67,0)" id="shape84" fill="url(#lg12)"/> | |
237 | + </g> | |
238 | + <g transform="translate(42.96,72.69)"> | |
239 | + <g transform="translate(-0.01,-0.01)"> | |
240 | + <path d="M.1,-0L5.5,-0C5.6,-0,5.6,.1,5.6,.2L5.6,5.1C5.6,5.2,5.6,5.3,5.5,5.3L.1,5.3C0,5.3,-0,5.2,-0,5.1L-0,.2C-0,.1,0,-0,.1,-0z" transform="translate(0,0)" id="shape85" fill="url(#lg12)"/> | |
241 | + <path d="M.1,-0L5.5,-0C5.6,-0,5.6,.1,5.6,.2L5.6,5.1C5.6,5.2,5.6,5.3,5.5,5.3L.1,5.3C0,5.3,-0,5.2,-0,5.1L-0,.2C-0,.1,0,-0,.1,-0z" transform="translate(8.22,0)" id="shape86" fill="url(#lg12)"/> | |
242 | + <path d="M.1,-0L5.5,-0C5.6,-0,5.6,.1,5.6,.2L5.6,5.1C5.6,5.2,5.6,5.3,5.5,5.3L.1,5.3C0,5.3,-0,5.2,-0,5.1L-0,.2C-0,.1,0,-0,.1,-0z" transform="translate(24.67,0)" id="shape87" fill="url(#lg12)"/> | |
243 | + <path d="M.1,-0L5.5,-0C5.6,-0,5.6,.1,5.6,.2L5.6,5.1C5.6,5.2,5.6,5.3,5.5,5.3L.1,5.3C0,5.3,-0,5.2,-0,5.1L-0,.2C-0,.1,0,-0,.1,-0z" transform="translate(16.44,0)" id="shape88" fill="url(#lg12)"/> | |
244 | + </g> | |
245 | + <path d="M.2,-0L10.1,-0C10.3,-0,10.4,.1,10.4,.2L10.4,5.1C10.4,5.2,10.3,5.3,10.1,5.3L.2,5.3C.1,5.3,-0,5.2,-0,5.1L-0,.2C-0,.1,.1,-0,.2,-0z" transform="translate(41.22,-0.01)" id="shape89" fill="url(#lg13)"/> | |
246 | + </g> | |
247 | + <path d="M.2,-0L22.3,-0C22.4,-0,22.5,.1,22.5,.2L22.5,3.8C22.5,3.9,22.4,4,22.3,4L.2,4C.1,4,0,3.9,0,3.8L0,.2C0,.1,.1,-0,.2,-0z" transform="translate(57.54,114.77)" id="shape90" fill="url(#lg8)"/> | |
248 | + <path d="M0,-0L6.6,-0C6.7,-0,6.7,0,6.7,.1L6.7,3.2C6.7,3.2,6.7,3.3,6.6,3.3L0,3.3C0,3.3,0,3.2,0,3.2L0,.1C0,0,0,-0,0,-0z" transform="matrix(0,-1,-1,0,176.4,93.2)" id="shape91" fill="url(#lg4)"/> | |
249 | + <path d="M0,0C0,0,2.7,.1,4,1.6C5.3,3.1,5.1,5.5,5.1,5.5L1.5,5.5C1.5,5.5,1.5,4.1,0,3.6L0,0z" transform="matrix(1,0,0,-1,171.6,97.7)" id="shape92" fill="url(#lg5)"/> | |
250 | + <path d="M0,0L19.4,0L19.4,5.5L0,5.5L0,0z" transform="translate(140.53,107.65)" id="shape93" fill="url(#lg6)"/> | |
251 | + <path d="M.2,0L21.7,0C21.8,0,21.9,.1,21.9,.2L21.9,45.1C21.9,45.2,21.8,45.3,21.7,45.3L.2,45.3C.1,45.3,0,45.2,0,45.1L0,.2C0,.1,.1,0,.2,0z" transform="translate(139.3,112.58)" id="shape94" fill="url(#lg7)"/> | |
252 | + <path d="M.2,0L30.5,0C30.6,0,30.7,.1,30.7,.2L30.7,21C30.7,21.1,30.6,21.2,30.5,21.2L.2,21.2C.1,21.2,0,21.1,0,21L0,.2C0,.1,.1,0,.2,0z" transform="translate(134.9,87.01)" id="shape95" fill="url(#lg8)"/> | |
253 | + <path d="M0,0L75.7,0L75.7,41L0,41L0,0z" transform="translate(112.44,43.87)" id="shape96" fill="url(#lg9)"/> | |
254 | + <path d="M0,0L75.7,0L75.7,41L0,41L0,0z" transform="translate(112.44,2.46)" id="shape97" fill="url(#lg9)"/> | |
255 | + <path d="M0,0L81,0L81,5.5L0,5.5L0,0z" transform="translate(109.73,0)" id="shape98" fill="url(#lg10)"/> | |
256 | + <path d="M0,0L81,0L81,5.5L0,5.5L0,0z" transform="translate(109.73,41.12)" id="shape99" fill="url(#lg10)"/> | |
257 | + <path d="M0,0L81,0L81,5.5L0,5.5L0,0z" transform="translate(109.73,82.25)" id="shape100" fill="url(#lg10)"/> | |
258 | + <path d="M0,0L170,0L170,5.5L0,5.5L0,0z" transform="matrix(0,-1,1,0,109.1,170)" id="shape101" fill="url(#lg3)"/> | |
259 | + <path d="M0,0L170,0L170,5.5L0,5.5L0,0z" transform="matrix(0,-1,1,0,185.3,170)" id="shape102" fill="url(#lg3)"/> | |
260 | + <g transform="translate(121.17,13.35)"> | |
261 | + <g transform="translate(-0.01,-0.02)"> | |
262 | + <path d="M0,6C0,2.7,2.7,0,6,0C9.3,0,12,2.7,12,6C12,9.3,9.3,12,6,12C2.7,12,0,9.3,0,6z" stroke="#000000" id="shape103" fill="#000000"/> | |
263 | + <path d="M0,5.5C0,2.5,2.5,0,5.5,0C8.5,0,11,2.5,11,5.5C11,8.5,8.5,11,5.5,11C2.5,11,0,8.5,0,5.5z" transform="translate(0.5,0.51)" id="shape104" fill="#9e9f9f"/> | |
264 | + <path d="M0,5.3C0,2.4,2.4,0,5.3,0C8.2,0,10.6,2.4,10.6,5.3C10.6,8.2,8.2,10.6,5.3,10.6C2.4,10.6,0,8.2,0,5.3z" transform="translate(0.68,0.75)" id="shape105" fill="#ebeae9"/> | |
265 | + <path d="M.3,0" stroke="#000000" transform="matrix(0.98,0.17,-0.17,0.98,9.2,2.6)" id="shape106" fill="none"/> | |
266 | + <path d="M0,0" stroke="#000000" transform="translate(8.97,9.06)" id="shape107" fill="none"/> | |
267 | + <path d="M.7,0" stroke="#000000" transform="translate(2.33,8.74)" id="shape108" fill="none"/> | |
268 | + <path d="M0,0" stroke="#000000" transform="translate(5.94,1.17)" id="shape109" fill="none"/> | |
269 | + <path d="M0,0" stroke="#000000" transform="translate(5.94,10.12)" id="shape110" fill="none"/> | |
270 | + <path d="M0,0" stroke="#000000" transform="matrix(0,-1,1,0,0.9,6)" id="shape111" fill="none"/> | |
271 | + <path d="M0,0" stroke="#000000" transform="matrix(0,-1,1,0,10.3,6)" id="shape112" fill="none"/> | |
272 | + <path d="M0,0" stroke="#000000" transform="translate(2.58,2.48)" id="shape113" fill="none"/> | |
273 | + <path d="M5.8,6.8C8.1,3.1,5.4,0,5.4,0C7.3,.9,8.7,2.8,8.7,5C8.7,8.1,6.2,10.5,3.2,10.5C2,10.5,.9,10.1,0,9.5C.1,9.6,3.4,10.4,5.8,6.8z" transform="translate(2.8,0.95)" fill-opacity="0.73" id="shape114" fill="#ffffff"/> | |
274 | + <g transform="matrix(0.87,0.5,-0.5,0.87,2,3.1)"> | |
275 | + <path d="M-0.2,.4L4.1,.6C4.1,.6,5.5,.7,6.2,.3C6.2,.3,6.5,.2,6.5,.6C6.4,1.3,6.3,1.7,6.1,1.5C6.1,1.5,5.3,1,4,.9L-0.2,.4z" stroke="#000000" transform="translate(0.22,-0.29)" id="shape115" fill="#000000"/> | |
276 | + <path d="M.1,.1C.3,-0,.6,-0,.7,.1C.9,.3,.9,.6,.7,.7C.6,.9,.3,.9,.1,.7C-0,.6,-0,.3,.1,.1z" stroke="#000000" transform="translate(4.3,0.08)" id="shape116" fill="#000000"/> | |
277 | + <path d="M.1,.1C.2,-0,.3,-0,.4,.1C.6,.2,.6,.3,.4,.4C.3,.6,.2,.6,.1,.4C-0,.3,-0,.2,.1,.1z" transform="translate(4.47,0.25)" id="shape117" fill="url(#lg11)"/> | |
278 | + </g> | |
279 | + </g> | |
280 | + <g transform="translate(23.09,-0.02)"> | |
281 | + <path d="M0,6C0,2.7,2.7,0,6,0C9.3,0,12,2.7,12,6C12,9.3,9.3,12,6,12C2.7,12,0,9.3,0,6z" stroke="#000000" id="shape118" fill="#000000"/> | |
282 | + <path d="M0,5.5C0,2.5,2.5,0,5.5,0C8.5,0,11,2.5,11,5.5C11,8.5,8.5,11,5.5,11C2.5,11,0,8.5,0,5.5z" transform="translate(0.5,0.51)" id="shape119" fill="#9e9f9f"/> | |
283 | + <path d="M0,5.3C0,2.4,2.4,0,5.3,0C8.2,0,10.6,2.4,10.6,5.3C10.6,8.2,8.2,10.6,5.3,10.6C2.4,10.6,0,8.2,0,5.3z" transform="translate(0.68,0.75)" id="shape120" fill="#ebeae9"/> | |
284 | + <path d="M.3,0" stroke="#000000" transform="matrix(0.98,0.17,-0.17,0.98,9.2,2.6)" id="shape121" fill="none"/> | |
285 | + <path d="M0,0" stroke="#000000" transform="translate(8.97,9.06)" id="shape122" fill="none"/> | |
286 | + <path d="M.7,0" stroke="#000000" transform="translate(2.33,8.74)" id="shape123" fill="none"/> | |
287 | + <path d="M0,0" stroke="#000000" transform="translate(5.94,1.17)" id="shape124" fill="none"/> | |
288 | + <path d="M0,0" stroke="#000000" transform="translate(5.94,10.12)" id="shape125" fill="none"/> | |
289 | + <path d="M0,0" stroke="#000000" transform="matrix(0,-1,1,0,0.9,6)" id="shape126" fill="none"/> | |
290 | + <path d="M0,0" stroke="#000000" transform="matrix(0,-1,1,0,10.3,6)" id="shape127" fill="none"/> | |
291 | + <path d="M0,0" stroke="#000000" transform="translate(2.58,2.48)" id="shape128" fill="none"/> | |
292 | + <path d="M5.8,6.8C8.1,3.1,5.4,0,5.4,0C7.3,.9,8.7,2.8,8.7,5C8.7,8.1,6.2,10.5,3.2,10.5C2,10.5,.9,10.1,0,9.5C.1,9.6,3.4,10.4,5.8,6.8z" transform="translate(2.8,0.95)" fill-opacity="0.73" id="shape129" fill="#ffffff"/> | |
293 | + <g transform="matrix(0.87,0.5,-0.5,0.87,2,3.1)"> | |
294 | + <path d="M-0.2,.4L4.1,.6C4.1,.6,5.5,.7,6.2,.3C6.2,.3,6.5,.2,6.5,.6C6.4,1.3,6.3,1.7,6.1,1.5C6.1,1.5,5.3,1,4,.9L-0.2,.4z" stroke="#000000" transform="translate(0.22,-0.29)" id="shape130" fill="#000000"/> | |
295 | + <path d="M.1,.1C.3,-0,.6,-0,.7,.1C.9,.3,.9,.6,.7,.7C.6,.9,.3,.9,.1,.7C-0,.6,-0,.3,.1,.1z" stroke="#000000" transform="translate(4.3,0.08)" id="shape131" fill="#000000"/> | |
296 | + <path d="M.1,.1C.2,-0,.3,-0,.4,.1C.6,.2,.6,.3,.4,.4C.3,.6,.2,.6,.1,.4C-0,.3,-0,.2,.1,.1z" transform="translate(4.47,0.25)" id="shape132" fill="url(#lg11)"/> | |
297 | + </g> | |
298 | + </g> | |
299 | + <g transform="translate(46.17,-0.02)"> | |
300 | + <path d="M0,6C0,2.7,2.7,0,6,0C9.3,0,12,2.7,12,6C12,9.3,9.3,12,6,12C2.7,12,0,9.3,0,6z" stroke="#000000" id="shape133" fill="#000000"/> | |
301 | + <path d="M0,5.5C0,2.5,2.5,0,5.5,0C8.5,0,11,2.5,11,5.5C11,8.5,8.5,11,5.5,11C2.5,11,0,8.5,0,5.5z" transform="translate(0.5,0.51)" id="shape134" fill="#9e9f9f"/> | |
302 | + <path d="M0,5.3C0,2.4,2.4,0,5.3,0C8.2,0,10.6,2.4,10.6,5.3C10.6,8.2,8.2,10.6,5.3,10.6C2.4,10.6,0,8.2,0,5.3z" transform="translate(0.68,0.75)" id="shape135" fill="#ebeae9"/> | |
303 | + <path d="M.3,0" stroke="#000000" transform="matrix(0.98,0.17,-0.17,0.98,9.2,2.6)" id="shape136" fill="none"/> | |
304 | + <path d="M0,0" stroke="#000000" transform="translate(8.97,9.06)" id="shape137" fill="none"/> | |
305 | + <path d="M.7,0" stroke="#000000" transform="translate(2.33,8.74)" id="shape138" fill="none"/> | |
306 | + <path d="M0,0" stroke="#000000" transform="translate(5.94,1.17)" id="shape139" fill="none"/> | |
307 | + <path d="M0,0" stroke="#000000" transform="translate(5.94,10.12)" id="shape140" fill="none"/> | |
308 | + <path d="M0,0" stroke="#000000" transform="matrix(0,-1,1,0,0.9,6)" id="shape141" fill="none"/> | |
309 | + <path d="M0,0" stroke="#000000" transform="matrix(0,-1,1,0,10.3,6)" id="shape142" fill="none"/> | |
310 | + <path d="M0,0" stroke="#000000" transform="translate(2.58,2.48)" id="shape143" fill="none"/> | |
311 | + <path d="M5.8,6.8C8.1,3.1,5.4,0,5.4,0C7.3,.9,8.7,2.8,8.7,5C8.7,8.1,6.2,10.5,3.2,10.5C2,10.5,.9,10.1,0,9.5C.1,9.6,3.4,10.4,5.8,6.8z" transform="translate(2.8,0.95)" fill-opacity="0.73" id="shape144" fill="#ffffff"/> | |
312 | + <g transform="matrix(0.87,0.5,-0.5,0.87,2,3.1)"> | |
313 | + <path d="M-0.2,.4L4.1,.6C4.1,.6,5.5,.7,6.2,.3C6.2,.3,6.5,.2,6.5,.6C6.4,1.3,6.3,1.7,6.1,1.5C6.1,1.5,5.3,1,4,.9L-0.2,.4z" stroke="#000000" transform="translate(0.22,-0.29)" id="shape145" fill="#000000"/> | |
314 | + <path d="M.1,.1C.3,-0,.6,-0,.7,.1C.9,.3,.9,.6,.7,.7C.6,.9,.3,.9,.1,.7C-0,.6,-0,.3,.1,.1z" stroke="#000000" transform="translate(4.3,0.08)" id="shape146" fill="#000000"/> | |
315 | + <path d="M.1,.1C.2,-0,.3,-0,.4,.1C.6,.2,.6,.3,.4,.4C.3,.6,.2,.6,.1,.4C-0,.3,-0,.2,.1,.1z" transform="translate(4.47,0.25)" id="shape147" fill="url(#lg11)"/> | |
316 | + </g> | |
317 | + </g> | |
318 | + </g> | |
319 | + <g transform="translate(125.67,31.82)"> | |
320 | + <path d="M.2,-0L8.9,-0C9,-0,9.1,.1,9.1,.2L9.1,5.1C9.1,5.2,9,5.3,8.9,5.3L.2,5.3C.1,5.3,-0,5.2,-0,5.1L-0,.2C-0,.1,.1,-0,.2,-0z" transform="translate(0,0)" id="shape148" fill="url(#lg12)"/> | |
321 | + <path d="M.2,-0L8.9,-0C9,-0,9.1,.1,9.1,.2L9.1,5.1C9.1,5.2,9,5.3,8.9,5.3L.2,5.3C.1,5.3,-0,5.2,-0,5.1L-0,.2C-0,.1,.1,-0,.2,-0z" transform="translate(13.34,0)" id="shape149" fill="url(#lg12)"/> | |
322 | + <path d="M.2,-0L8.9,-0C9,-0,9.1,.1,9.1,.2L9.1,5.1C9.1,5.2,9,5.3,8.9,5.3L.2,5.3C.1,5.3,-0,5.2,-0,5.1L-0,.2C-0,.1,.1,-0,.2,-0z" transform="translate(40.01,0)" id="shape150" fill="url(#lg12)"/> | |
323 | + <path d="M.2,-0L8.9,-0C9,-0,9.1,.1,9.1,.2L9.1,5.1C9.1,5.2,9,5.3,8.9,5.3L.2,5.3C.1,5.3,-0,5.2,-0,5.1L-0,.2C-0,.1,.1,-0,.2,-0z" transform="translate(26.67,0)" id="shape151" fill="url(#lg12)"/> | |
324 | + </g> | |
325 | + <g transform="translate(124.43,72.67)"> | |
326 | + <g transform="translate(-0.01,-0.01)"> | |
327 | + <path d="M.1,-0L5.5,-0C5.6,-0,5.6,.1,5.6,.2L5.6,5.1C5.6,5.2,5.6,5.3,5.5,5.3L.1,5.3C0,5.3,-0,5.2,-0,5.1L-0,.2C-0,.1,0,-0,.1,-0z" transform="translate(0,0)" id="shape152" fill="url(#lg12)"/> | |
328 | + <path d="M.1,-0L5.5,-0C5.6,-0,5.6,.1,5.6,.2L5.6,5.1C5.6,5.2,5.6,5.3,5.5,5.3L.1,5.3C0,5.3,-0,5.2,-0,5.1L-0,.2C-0,.1,0,-0,.1,-0z" transform="translate(8.22,0)" id="shape153" fill="url(#lg12)"/> | |
329 | + <path d="M.1,-0L5.5,-0C5.6,-0,5.6,.1,5.6,.2L5.6,5.1C5.6,5.2,5.6,5.3,5.5,5.3L.1,5.3C0,5.3,-0,5.2,-0,5.1L-0,.2C-0,.1,0,-0,.1,-0z" transform="translate(24.67,0)" id="shape154" fill="url(#lg12)"/> | |
330 | + <path d="M.1,-0L5.5,-0C5.6,-0,5.6,.1,5.6,.2L5.6,5.1C5.6,5.2,5.6,5.3,5.5,5.3L.1,5.3C0,5.3,-0,5.2,-0,5.1L-0,.2C-0,.1,0,-0,.1,-0z" transform="translate(16.44,0)" id="shape155" fill="url(#lg12)"/> | |
331 | + </g> | |
332 | + <path d="M.2,-0L10.1,-0C10.3,-0,10.4,.1,10.4,.2L10.4,5.1C10.4,5.2,10.3,5.3,10.1,5.3L.2,5.3C.1,5.3,-0,5.2,-0,5.1L-0,.2C-0,.1,.1,-0,.2,-0z" transform="translate(41.22,-0.01)" id="shape156" fill="url(#lg13)"/> | |
333 | + </g> | |
334 | + <path d="M.2,-0L22.3,-0C22.4,-0,22.5,.1,22.5,.2L22.5,3.8C22.5,3.9,22.4,4,22.3,4L.2,4C.1,4,0,3.9,0,3.8L0,.2C0,.1,.1,-0,.2,-0z" transform="translate(139.02,114.75)" id="shape157" fill="url(#lg8)"/> | |
335 | + <g transform="translate(43.08,52.37)"> | |
336 | + <g transform="translate(-0,-0)"> | |
337 | + <path d="M-0,2.2C-0,1,1,-0,2.2,-0C3.5,-0,4.5,1,4.5,2.2C4.5,3.5,3.5,4.5,2.2,4.5C1,4.5,-0,3.5,-0,2.2z" transform="translate(0,0)" id="shape158" fill="#7d040f"/> | |
338 | + <path d="M-0,1.8C-0,.8,.8,-0,1.8,-0C2.8,-0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" stroke="#ffffff" transform="translate(0.41,0.41)" id="shape159" fill="url(#lg14)"/> | |
339 | + </g> | |
340 | + <g transform="translate(11.26,-0)"> | |
341 | + <path d="M-0,2.2C-0,1,1,-0,2.2,-0C3.5,-0,4.5,1,4.5,2.2C4.5,3.5,3.5,4.5,2.2,4.5C1,4.5,-0,3.5,-0,2.2z" transform="translate(0,0)" id="shape160" fill="#7d040f"/> | |
342 | + <path d="M-0,1.8C-0,.8,.8,-0,1.8,-0C2.8,-0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" stroke="#ffffff" transform="translate(0.41,0.41)" id="shape161" fill="url(#lg14)"/> | |
343 | + </g> | |
344 | + <g transform="translate(22.53,-0)"> | |
345 | + <path d="M-0,2.2C-0,1,1,-0,2.2,-0C3.5,-0,4.5,1,4.5,2.2C4.5,3.5,3.5,4.5,2.2,4.5C1,4.5,-0,3.5,-0,2.2z" transform="translate(0,0)" id="shape162" fill="#7d040f"/> | |
346 | + <path d="M-0,1.8C-0,.8,.8,-0,1.8,-0C2.8,-0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" stroke="#ffffff" transform="translate(0.41,0.41)" id="shape163" fill="url(#lg14)"/> | |
347 | + </g> | |
348 | + <g transform="translate(33.8,-0)"> | |
349 | + <path d="M-0,2.2C-0,1,1,-0,2.2,-0C3.5,-0,4.5,1,4.5,2.2C4.5,3.5,3.5,4.5,2.2,4.5C1,4.5,-0,3.5,-0,2.2z" transform="translate(0,0)" id="shape164" fill="#7d040f"/> | |
350 | + <path d="M-0,1.8C-0,.8,.8,-0,1.8,-0C2.8,-0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" stroke="#ffffff" transform="translate(0.41,0.41)" id="shape165" fill="url(#lg14)"/> | |
351 | + </g> | |
352 | + <g transform="translate(45.07,-0)"> | |
353 | + <path d="M-0,2.2C-0,1,1,-0,2.2,-0C3.5,-0,4.5,1,4.5,2.2C4.5,3.5,3.5,4.5,2.2,4.5C1,4.5,-0,3.5,-0,2.2z" transform="translate(0,0)" id="shape166" fill="#7d040f"/> | |
354 | + <path d="M-0,1.8C-0,.8,.8,-0,1.8,-0C2.8,-0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" stroke="#ffffff" transform="translate(0.41,0.41)" id="shape167" fill="url(#lg14)"/> | |
355 | + </g> | |
356 | + </g> | |
357 | + <g transform="translate(43.08,62.35)"> | |
358 | + <g transform="translate(-0,-0.02)"> | |
359 | + <path d="M-0,2.2C-0,1,1,-0,2.2,-0C3.5,-0,4.5,1,4.5,2.2C4.5,3.5,3.5,4.5,2.2,4.5C1,4.5,-0,3.5,-0,2.2z" transform="translate(0,0)" id="shape168" fill="#276f71"/> | |
360 | + <path d="M-0,1.8C-0,.8,.8,-0,1.8,-0C2.8,-0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" stroke="#ffffff" transform="translate(0.41,0.41)" id="shape169" fill="url(#lg15)"/> | |
361 | + </g> | |
362 | + <g transform="translate(11.26,-0.02)"> | |
363 | + <path d="M-0,2.2C-0,1,1,-0,2.2,-0C3.5,-0,4.5,1,4.5,2.2C4.5,3.5,3.5,4.5,2.2,4.5C1,4.5,-0,3.5,-0,2.2z" transform="translate(0,0)" id="shape170" fill="#276f71"/> | |
364 | + <path d="M-0,1.8C-0,.8,.8,-0,1.8,-0C2.8,-0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" stroke="#ffffff" transform="translate(0.41,0.41)" id="shape171" fill="url(#lg15)"/> | |
365 | + </g> | |
366 | + <g transform="translate(22.74,-0.02)"> | |
367 | + <path d="M-0,2.2C-0,1,1,-0,2.2,-0C3.5,-0,4.5,1,4.5,2.2C4.5,3.5,3.5,4.5,2.2,4.5C1,4.5,-0,3.5,-0,2.2z" transform="translate(0,0)" id="shape172" fill="#276f71"/> | |
368 | + <path d="M-0,1.8C-0,.8,.8,-0,1.8,-0C2.8,-0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" stroke="#ffffff" transform="translate(0.41,0.41)" id="shape173" fill="url(#lg15)"/> | |
369 | + </g> | |
370 | + <g transform="translate(33.8,-0.02)"> | |
371 | + <path d="M-0,2.2C-0,1,1,-0,2.2,-0C3.5,-0,4.5,1,4.5,2.2C4.5,3.5,3.5,4.5,2.2,4.5C1,4.5,-0,3.5,-0,2.2z" transform="translate(0,0)" id="shape174" fill="#276f71"/> | |
372 | + <path d="M-0,1.8C-0,.8,.8,-0,1.8,-0C2.8,-0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" stroke="#ffffff" transform="translate(0.41,0.41)" id="shape175" fill="url(#lg15)"/> | |
373 | + </g> | |
374 | + <g transform="translate(45.07,-0.02)"> | |
375 | + <path d="M-0,2.2C-0,1,1,-0,2.2,-0C3.5,-0,4.5,1,4.5,2.2C4.5,3.5,3.5,4.5,2.2,4.5C1,4.5,-0,3.5,-0,2.2z" transform="translate(0,0)" id="shape176" fill="#276f71"/> | |
376 | + <path d="M-0,1.8C-0,.8,.8,-0,1.8,-0C2.8,-0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" stroke="#ffffff" transform="translate(0.41,0.41)" id="shape177" fill="url(#lg15)"/> | |
377 | + </g> | |
378 | + </g> | |
379 | + <g transform="translate(125.47,52.37)"> | |
380 | + <g transform="translate(-0,-0)"> | |
381 | + <path d="M-0,2.2C-0,1,1,-0,2.2,-0C3.5,-0,4.5,1,4.5,2.2C4.5,3.5,3.5,4.5,2.2,4.5C1,4.5,-0,3.5,-0,2.2z" transform="translate(0,0)" id="shape178" fill="#7d040f"/> | |
382 | + <path d="M-0,1.8C-0,.8,.8,-0,1.8,-0C2.8,-0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" stroke="#ffffff" transform="translate(0.41,0.41)" id="shape179" fill="url(#lg14)"/> | |
383 | + </g> | |
384 | + <g transform="translate(11.26,-0)"> | |
385 | + <path d="M-0,2.2C-0,1,1,-0,2.2,-0C3.5,-0,4.5,1,4.5,2.2C4.5,3.5,3.5,4.5,2.2,4.5C1,4.5,-0,3.5,-0,2.2z" transform="translate(0,0)" id="shape180" fill="#7d040f"/> | |
386 | + <path d="M-0,1.8C-0,.8,.8,-0,1.8,-0C2.8,-0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" stroke="#ffffff" transform="translate(0.41,0.41)" id="shape181" fill="url(#lg14)"/> | |
387 | + </g> | |
388 | + <g transform="translate(22.53,-0)"> | |
389 | + <path d="M-0,2.2C-0,1,1,-0,2.2,-0C3.5,-0,4.5,1,4.5,2.2C4.5,3.5,3.5,4.5,2.2,4.5C1,4.5,-0,3.5,-0,2.2z" transform="translate(0,0)" id="shape182" fill="#7d040f"/> | |
390 | + <path d="M-0,1.8C-0,.8,.8,-0,1.8,-0C2.8,-0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" stroke="#ffffff" transform="translate(0.41,0.41)" id="shape183" fill="url(#lg14)"/> | |
391 | + </g> | |
392 | + <g transform="translate(33.8,-0)"> | |
393 | + <path d="M-0,2.2C-0,1,1,-0,2.2,-0C3.5,-0,4.5,1,4.5,2.2C4.5,3.5,3.5,4.5,2.2,4.5C1,4.5,-0,3.5,-0,2.2z" transform="translate(0,0)" id="shape184" fill="#7d040f"/> | |
394 | + <path d="M-0,1.8C-0,.8,.8,-0,1.8,-0C2.8,-0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" stroke="#ffffff" transform="translate(0.41,0.41)" id="shape185" fill="url(#lg14)"/> | |
395 | + </g> | |
396 | + <g transform="translate(45.07,-0)"> | |
397 | + <path d="M-0,2.2C-0,1,1,-0,2.2,-0C3.5,-0,4.5,1,4.5,2.2C4.5,3.5,3.5,4.5,2.2,4.5C1,4.5,-0,3.5,-0,2.2z" transform="translate(0,0)" id="shape186" fill="#7d040f"/> | |
398 | + <path d="M-0,1.8C-0,.8,.8,-0,1.8,-0C2.8,-0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" stroke="#ffffff" transform="translate(0.41,0.41)" id="shape187" fill="url(#lg14)"/> | |
399 | + </g> | |
400 | + </g> | |
401 | + <g transform="translate(125.47,62.35)"> | |
402 | + <g transform="translate(-0,-0.02)"> | |
403 | + <path d="M-0,2.2C-0,1,1,-0,2.2,-0C3.5,-0,4.5,1,4.5,2.2C4.5,3.5,3.5,4.5,2.2,4.5C1,4.5,-0,3.5,-0,2.2z" transform="translate(0,0)" id="shape188" fill="#276f71"/> | |
404 | + <path d="M-0,1.8C-0,.8,.8,-0,1.8,-0C2.8,-0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" stroke="#ffffff" transform="translate(0.41,0.41)" id="shape189" fill="url(#lg15)"/> | |
405 | + </g> | |
406 | + <g transform="translate(11.26,-0.02)"> | |
407 | + <path d="M-0,2.2C-0,1,1,-0,2.2,-0C3.5,-0,4.5,1,4.5,2.2C4.5,3.5,3.5,4.5,2.2,4.5C1,4.5,-0,3.5,-0,2.2z" transform="translate(0,0)" id="shape190" fill="#276f71"/> | |
408 | + <path d="M-0,1.8C-0,.8,.8,-0,1.8,-0C2.8,-0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" stroke="#ffffff" transform="translate(0.41,0.41)" id="shape191" fill="url(#lg15)"/> | |
409 | + </g> | |
410 | + <g transform="translate(22.74,-0.02)"> | |
411 | + <path d="M-0,2.2C-0,1,1,-0,2.2,-0C3.5,-0,4.5,1,4.5,2.2C4.5,3.5,3.5,4.5,2.2,4.5C1,4.5,-0,3.5,-0,2.2z" transform="translate(0,0)" id="shape192" fill="#276f71"/> | |
412 | + <path d="M-0,1.8C-0,.8,.8,-0,1.8,-0C2.8,-0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" stroke="#ffffff" transform="translate(0.41,0.41)" id="shape193" fill="url(#lg15)"/> | |
413 | + </g> | |
414 | + <g transform="translate(33.8,-0.02)"> | |
415 | + <path d="M-0,2.2C-0,1,1,-0,2.2,-0C3.5,-0,4.5,1,4.5,2.2C4.5,3.5,3.5,4.5,2.2,4.5C1,4.5,-0,3.5,-0,2.2z" transform="translate(0,0)" id="shape194" fill="#276f71"/> | |
416 | + <path d="M-0,1.8C-0,.8,.8,-0,1.8,-0C2.8,-0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" stroke="#ffffff" transform="translate(0.41,0.41)" id="shape195" fill="url(#lg15)"/> | |
417 | + </g> | |
418 | + <g transform="translate(45.07,-0.02)"> | |
419 | + <path d="M-0,2.2C-0,1,1,-0,2.2,-0C3.5,-0,4.5,1,4.5,2.2C4.5,3.5,3.5,4.5,2.2,4.5C1,4.5,-0,3.5,-0,2.2z" transform="translate(0,0)" id="shape196" fill="#276f71"/> | |
420 | + <path d="M-0,1.8C-0,.8,.8,-0,1.8,-0C2.8,-0,3.6,.8,3.6,1.8C3.6,2.8,2.8,3.6,1.8,3.6C.8,3.6,-0,2.8,-0,1.8z" stroke="#ffffff" transform="translate(0.41,0.41)" id="shape197" fill="url(#lg15)"/> | |
421 | + </g> | |
422 | + </g> | |
423 | + </g> | |
424 | +</svg> | ... | ... |
1 | +<svg viewBox="0 0 32 154.006" height="154" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="32"> | |
2 | + <defs> | |
3 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg1"> | |
4 | + <stop offset="0" stop-color="#b9b9b9"/> | |
5 | + <stop offset="0.15" stop-color="#f2f2f2"/> | |
6 | + <stop offset="0.25" stop-color="#f3f3f3"/> | |
7 | + <stop offset="0.52" stop-color="#d0d0d0"/> | |
8 | + <stop offset="0.69" stop-color="#b9b9b9"/> | |
9 | + <stop offset="0.8" stop-color="#afafaf"/> | |
10 | + <stop offset="0.92" stop-color="#a5a5a5"/> | |
11 | + </linearGradient> | |
12 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg2"> | |
13 | + <stop offset="0" stop-color="#b9b9b9"/> | |
14 | + <stop offset="0.15" stop-color="#f2f2f2"/> | |
15 | + <stop offset="0.25" stop-color="#f3f3f3"/> | |
16 | + <stop offset="0.52" stop-color="#d0d0d0"/> | |
17 | + <stop offset="0.69" stop-color="#b9b9b9"/> | |
18 | + <stop offset="0.8" stop-color="#afafaf"/> | |
19 | + <stop offset="0.92" stop-color="#a5a5a5"/> | |
20 | + </linearGradient> | |
21 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg3"> | |
22 | + <stop offset="0" stop-color="#696969"/> | |
23 | + <stop offset="0.15" stop-color="#afafaf"/> | |
24 | + <stop offset="0.25" stop-color="#b5b5b6"/> | |
25 | + <stop offset="0.52" stop-color="#767677"/> | |
26 | + <stop offset="0.69" stop-color="#696969"/> | |
27 | + <stop offset="0.8" stop-color="#626263"/> | |
28 | + <stop offset="0.92" stop-color="#5d5d5d"/> | |
29 | + </linearGradient> | |
30 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg4"> | |
31 | + <stop offset="0" stop-color="#292525"/> | |
32 | + <stop offset="0.03" stop-color="#868584"/> | |
33 | + <stop offset="0.08" stop-color="#383433"/> | |
34 | + <stop offset="0.64" stop-color="#373332"/> | |
35 | + <stop offset="0.95" stop-color="#363130"/> | |
36 | + <stop offset="1" stop-color="#252221"/> | |
37 | + </linearGradient> | |
38 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg5"> | |
39 | + <stop offset="0" stop-color="#292525"/> | |
40 | + <stop offset="0.03" stop-color="#868584"/> | |
41 | + <stop offset="0.08" stop-color="#383433"/> | |
42 | + <stop offset="0.64" stop-color="#373332"/> | |
43 | + <stop offset="0.95" stop-color="#363130"/> | |
44 | + <stop offset="1" stop-color="#252221"/> | |
45 | + </linearGradient> | |
46 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg6"> | |
47 | + <stop offset="0" stop-color="#221f1f"/> | |
48 | + <stop offset="0.15" stop-color="#3b3736"/> | |
49 | + <stop offset="0.26" stop-color="#6a6767"/> | |
50 | + <stop offset="0.41" stop-color="#44403f"/> | |
51 | + <stop offset="0.6" stop-color="#312d2c"/> | |
52 | + <stop offset="0.8" stop-color="#252221"/> | |
53 | + <stop offset="0.93" stop-color="#1d1a19"/> | |
54 | + <stop offset="1" stop-color="#3a3534"/> | |
55 | + </linearGradient> | |
56 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg7"> | |
57 | + <stop offset="0" stop-color="#9c9080"/> | |
58 | + <stop offset="0.15" stop-color="#f4e1c8"/> | |
59 | + <stop offset="0.26" stop-color="#fdebd5"/> | |
60 | + <stop offset="0.41" stop-color="#fde9d1"/> | |
61 | + <stop offset="0.6" stop-color="#d0bfaa"/> | |
62 | + <stop offset="0.8" stop-color="#a69988"/> | |
63 | + <stop offset="0.93" stop-color="#887d6f"/> | |
64 | + <stop offset="1" stop-color="#eedbc3"/> | |
65 | + </linearGradient> | |
66 | + </defs> | |
67 | + <g transform="translate(1,1.01)"> | |
68 | + <path d="M.5,0L2.7,0C3,0,3.2,.2,3.2,.5L3.2,8.8C3.2,9.1,3,9.3,2.7,9.3L.5,9.3C.2,9.3,0,9.1,0,8.8L0,.5C0,.2,.2,0,.5,0z" transform="translate(11.61,142.67)" id="shape1" fill="url(#lg1)"/> | |
69 | + <path d="M.3,-0L3.4,-0C3.5,-0,3.6,.1,3.6,.2C3.6,.4,3.5,.5,3.4,.5L.3,.5C.1,.5,-0,.4,-0,.2C-0,.1,.1,-0,.3,-0z" transform="translate(11.42,145.08)" id="shape2" fill="url(#lg2)"/> | |
70 | + <path d="M.3,-0L3.4,-0C3.5,-0,3.6,.1,3.6,.2C3.6,.4,3.5,.5,3.4,.5L.3,.5C.1,.5,-0,.4,-0,.2C-0,.1,.1,-0,.3,-0z" transform="translate(11.42,146.77)" id="shape3" fill="url(#lg2)"/> | |
71 | + <path d="M.3,-0L3.4,-0C3.5,-0,3.6,.1,3.6,.2C3.6,.4,3.5,.5,3.4,.5L.3,.5C.1,.5,-0,.4,-0,.2C-0,.1,.1,-0,.3,-0z" transform="translate(11.42,148.45)" id="shape4" fill="url(#lg2)"/> | |
72 | + <path d="M.3,-0L3.4,-0C3.5,-0,3.6,.1,3.6,.2C3.6,.4,3.5,.5,3.4,.5L.3,.5C.1,.5,-0,.4,-0,.2C-0,.1,.1,-0,.3,-0z" transform="translate(11.42,150.14)" id="shape5" fill="url(#lg2)"/> | |
73 | + <path d="M.3,-0L3.4,-0C3.5,-0,3.6,.1,3.6,.2C3.6,.4,3.5,.5,3.4,.5L.3,.5C.1,.5,-0,.4,-0,.2C-0,.1,.1,-0,.3,-0z" transform="translate(11.42,143)" id="shape6" fill="url(#lg3)"/> | |
74 | + <path d="M.5,0L4.4,0C4.7,0,4.9,.2,4.9,.5L4.9,37.5C4.9,37.8,4.7,38.1,4.4,38.1L.5,38.1C.2,38.1,0,37.8,0,37.5L0,.5C0,.2,.2,0,.5,0z" transform="translate(10.77,104.94)" id="shape7" fill="url(#lg1)"/> | |
75 | + <path d="M.5,-0L14.2,-0C14.5,-0,14.7,.2,14.7,.5L14.7,2.9C14.7,3.2,14.5,3.4,14.2,3.4L.5,3.4C.2,3.4,0,3.2,0,2.9L0,.5C0,.2,.2,-0,.5,-0z" transform="translate(15.27,29.32)" id="shape8" fill="url(#lg4)"/> | |
76 | + <path d="M.5,-0L6.8,-0C7.1,-0,7.4,.2,7.4,.5L7.4,9.8C7.4,10.1,7.1,10.3,6.8,10.3L.5,10.3C.2,10.3,0,10.1,0,9.8L0,.5C0,.2,.2,-0,.5,-0z" transform="translate(0,53.82)" id="shape9" fill="url(#lg5)"/> | |
77 | + <path d="M0,0L12.5,0L12.5,74.6L0,74.6L0,0z" transform="translate(6.99,22.43)" id="shape10" fill="url(#lg6)"/> | |
78 | + <path d="M.5,0L13.8,0C14.1,0,14.3,.2,14.3,.5L14.3,24.9C14.3,25.1,14.1,25.4,13.8,25.4L.5,25.4C.2,25.4,0,25.1,0,24.9L0,.5C0,.2,.2,0,.5,0z" transform="translate(6.08,2.49)" id="shape11" fill="url(#lg6)"/> | |
79 | + <path d="M5.8,0L18.3,0L24.2,9.8L0,9.8L5.8,0z" transform="translate(1.14,68.79)" id="shape12" fill="url(#lg6)"/> | |
80 | + <path d="M.5,0L14.3,0C14.6,0,14.8,.2,14.8,.5L14.8,8C14.8,8.3,14.6,8.5,14.3,8.5L.5,8.5C.2,8.5,0,8.3,0,8L0,.5C0,.2,.2,0,.5,0z" transform="translate(5.82,96.76)" id="shape13" fill="url(#lg7)"/> | |
81 | + <path d="M.5,0L2.1,0C2.4,0,2.6,.2,2.6,.5L2.6,27.4C2.6,27.7,2.4,28,2.1,28L.5,28C.2,28,0,27.7,0,27.4L0,.5C0,.2,.2,0,.5,0z" transform="translate(17.98,-0.01)" id="shape14" fill="url(#lg6)"/> | |
82 | + <path d="M.5,0L2.1,0C2.4,0,2.6,.2,2.6,.5L2.6,27.4C2.6,27.7,2.4,28,2.1,28L.5,28C.2,28,0,27.7,0,27.4L0,.5C0,.2,.2,0,.5,0z" transform="translate(6.07,-0.01)" id="shape15" fill="url(#lg6)"/> | |
83 | + <path d="M.5,-0L16.6,-0C16.9,-0,17.2,.2,17.2,.5L17.2,2.3C17.2,2.6,16.9,2.8,16.6,2.8L.5,2.8C.2,2.8,0,2.6,0,2.3L0,.5C0,.2,.2,-0,.5,-0z" transform="translate(4.65,0.16)" id="shape16" fill="url(#lg6)"/> | |
84 | + <path d="M.2,-0L10.1,-0C10.3,-0,10.4,.1,10.4,.2L10.4,4.7C10.4,4.8,10.3,5,10.1,5L.2,5C.1,5,-0,4.8,-0,4.7L-0,.2C-0,.1,.1,-0,.2,-0z" transform="translate(8.02,60.95)" fill-opacity="0.26" id="shape17" fill="#ffffff"/> | |
85 | + </g> | |
86 | +</svg> | ... | ... |
1 | +<svg viewBox="0 0 130 134" height="134" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="130"> | |
2 | + <defs> | |
3 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg1"> | |
4 | + <stop offset="0" stop-color="#bac0c1"/> | |
5 | + <stop offset="0.15" stop-color="#f4fafc"/> | |
6 | + <stop offset="0.25" stop-color="#f8fcfd"/> | |
7 | + <stop offset="0.44" stop-color="#d5dbdd"/> | |
8 | + <stop offset="0.6" stop-color="#bdc3c4"/> | |
9 | + <stop offset="0.8" stop-color="#a0a4a6"/> | |
10 | + <stop offset="0.97" stop-color="#929697"/> | |
11 | + <stop offset="1" stop-color="#c2c7c9"/> | |
12 | + </linearGradient> | |
13 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg2"> | |
14 | + <stop offset="0" stop-color="#bac0c1"/> | |
15 | + <stop offset="0.15" stop-color="#f4fafc"/> | |
16 | + <stop offset="0.25" stop-color="#f8fcfd"/> | |
17 | + <stop offset="0.44" stop-color="#d5dbdd"/> | |
18 | + <stop offset="0.6" stop-color="#bdc3c4"/> | |
19 | + <stop offset="0.8" stop-color="#a0a4a6"/> | |
20 | + <stop offset="0.97" stop-color="#929697"/> | |
21 | + <stop offset="1" stop-color="#c2c7c9"/> | |
22 | + </linearGradient> | |
23 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg3"> | |
24 | + <stop offset="0" stop-color="#9aabaf"/> | |
25 | + <stop offset="0.15" stop-color="#cee1e6"/> | |
26 | + <stop offset="0.25" stop-color="#e4eef1"/> | |
27 | + <stop offset="0.44" stop-color="#b1c3c7"/> | |
28 | + <stop offset="0.6" stop-color="#9daeb1"/> | |
29 | + <stop offset="0.8" stop-color="#849295"/> | |
30 | + <stop offset="0.97" stop-color="#788589"/> | |
31 | + <stop offset="1" stop-color="#a1b2b6"/> | |
32 | + </linearGradient> | |
33 | + <radialGradient fx="9" fy="9" gradientUnits="userSpaceOnUse" cx="9" cy="9" id="rg1" r="12.3"> | |
34 | + <stop offset="0" stop-color="#242525"/> | |
35 | + <stop offset="0.63" stop-color="#6f7172"/> | |
36 | + <stop offset="0.59" stop-color="#abaeaf"/> | |
37 | + <stop offset="0.49" stop-color="#d3d7d8"/> | |
38 | + <stop offset="0.32" stop-color="#f5f9f9"/> | |
39 | + <stop offset="0.1" stop-color="#f4f8f9"/> | |
40 | + <stop offset="1" stop-color="#9b9e9e"/> | |
41 | + </radialGradient> | |
42 | + <linearGradient x2="0%" y2="100%" x1="0%" y1="0%" id="lg4"> | |
43 | + <stop offset="0" stop-color="#9aabaf"/> | |
44 | + <stop offset="0.15" stop-color="#cee1e6"/> | |
45 | + <stop offset="0.25" stop-color="#e4eef1"/> | |
46 | + <stop offset="0.44" stop-color="#b1c3c7"/> | |
47 | + <stop offset="0.6" stop-color="#9daeb1"/> | |
48 | + <stop offset="0.8" stop-color="#849295"/> | |
49 | + <stop offset="0.97" stop-color="#788589"/> | |
50 | + <stop offset="1" stop-color="#a1b2b6"/> | |
51 | + </linearGradient> | |
52 | + </defs> | |
53 | + <g transform="translate(1,1)"> | |
54 | + <path d="M.4,0L5.6,0C5.8,0,6,.3,6,.8L6,131.2C6,131.6,5.8,132,5.6,132L.4,132C.2,132,-0,131.6,-0,131.2L-0,.8C-0,.3,.2,0,.4,0z" transform="translate(121.97,0)" id="shape1" fill="url(#lg1)"/> | |
55 | + <path d="M0,0L73.2,0L73.2,5.8L0,5.8L0,0z" transform="translate(49.68,8.39)" id="shape2" fill="url(#lg2)"/> | |
56 | + <path d="M0,0L27.2,0L27.2,5.8L0,5.8L0,0z" transform="matrix(0,-1,1,0,41.2,44)" id="shape3" fill="url(#lg2)"/> | |
57 | + <path d="M36.8,0L51.6,0C51.6,0,75.2,.3,88.4,8.1C88.4,8.1,0,8,0,8.1C15.3,.5,36.8,0,36.8,0z" transform="matrix(-1,0,0,1,88.4,50.7)" id="shape4" fill="url(#lg1)"/> | |
58 | + <path d="M4.6,0L10.4,0L14.9,7L0,7L4.6,0z" transform="matrix(-1,0,0,1,51.6,43.9)" id="shape5" fill="url(#lg1)"/> | |
59 | + <path d="M0,0L88.4,0L88.4,6L0,6L0,0z" transform="matrix(-1,0,0,1,88.4,58.7)" id="shape6" fill="url(#lg1)"/> | |
60 | + <path d="M0,0L88.4,0L88.4,1.1L0,1.1L0,0z" transform="matrix(-1,0,0,1,88.4,58.7)" id="shape7" fill="url(#lg3)"/> | |
61 | + <path d="M0,0L88.4,0L88.4,1.1L0,1.1L0,0z" transform="matrix(-1,0,0,1,88.4,63.5)" id="shape8" fill="url(#lg3)"/> | |
62 | + <path d="M8.7,5.8L8.7,0C8.7,0,5.4,-0.2,2.5,2.6C-0,5,0,8.7,0,8.7L5.8,8.7C5.8,8.6,5.8,7.3,6.6,6.6C7.6,5.8,8.7,5.8,8.7,5.8z" transform="translate(41.19,8.42)" id="shape9" fill="url(#rg1)"/> | |
63 | + <path d="M0,0L14.5,0L14.5,5.8L0,5.8L0,0z" transform="matrix(0,1,-1,0,128,3.9)" id="shape10" fill="url(#lg4)"/> | |
64 | + <path d="M0,8.7C0,1,.3,0,2.9,0C5.6,-0,5.8,1,5.8,8.5L0,8.7z" transform="matrix(0,-1,-1,0,125.1,14.1)" id="shape11" fill="url(#lg3)"/> | |
65 | + <g transform="translate(2.01,64.79)"> | |
66 | + <g transform="translate(-0,0)"> | |
67 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,-0)" id="shape12" fill="url(#lg1)"/> | |
68 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,5.45)" id="shape13" fill="url(#lg1)"/> | |
69 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,10.91)" id="shape14" fill="url(#lg1)"/> | |
70 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,16.8)" id="shape15" fill="url(#lg1)"/> | |
71 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,22.4)" id="shape16" fill="url(#lg1)"/> | |
72 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,28)" id="shape17" fill="url(#lg1)"/> | |
73 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,33.6)" id="shape18" fill="url(#lg1)"/> | |
74 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,39.2)" id="shape19" fill="url(#lg1)"/> | |
75 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,44.8)" id="shape20" fill="url(#lg1)"/> | |
76 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,50.39)" id="shape21" fill="url(#lg1)"/> | |
77 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,55.99)" id="shape22" fill="url(#lg1)"/> | |
78 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,61.59)" id="shape23" fill="url(#lg1)"/> | |
79 | + </g> | |
80 | + <g transform="translate(5.74,0)"> | |
81 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,-0)" id="shape24" fill="url(#lg1)"/> | |
82 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,5.45)" id="shape25" fill="url(#lg1)"/> | |
83 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,10.91)" id="shape26" fill="url(#lg1)"/> | |
84 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,16.8)" id="shape27" fill="url(#lg1)"/> | |
85 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,22.4)" id="shape28" fill="url(#lg1)"/> | |
86 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,28)" id="shape29" fill="url(#lg1)"/> | |
87 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,33.6)" id="shape30" fill="url(#lg1)"/> | |
88 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,39.2)" id="shape31" fill="url(#lg1)"/> | |
89 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,44.8)" id="shape32" fill="url(#lg1)"/> | |
90 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,50.39)" id="shape33" fill="url(#lg1)"/> | |
91 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,55.99)" id="shape34" fill="url(#lg1)"/> | |
92 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,61.59)" id="shape35" fill="url(#lg1)"/> | |
93 | + </g> | |
94 | + <g transform="translate(11.47,0)"> | |
95 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,-0)" id="shape36" fill="url(#lg1)"/> | |
96 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,5.45)" id="shape37" fill="url(#lg1)"/> | |
97 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,10.91)" id="shape38" fill="url(#lg1)"/> | |
98 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,16.8)" id="shape39" fill="url(#lg1)"/> | |
99 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,22.4)" id="shape40" fill="url(#lg1)"/> | |
100 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,28)" id="shape41" fill="url(#lg1)"/> | |
101 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,33.6)" id="shape42" fill="url(#lg1)"/> | |
102 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,39.2)" id="shape43" fill="url(#lg1)"/> | |
103 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,44.8)" id="shape44" fill="url(#lg1)"/> | |
104 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,50.39)" id="shape45" fill="url(#lg1)"/> | |
105 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,55.99)" id="shape46" fill="url(#lg1)"/> | |
106 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,61.59)" id="shape47" fill="url(#lg1)"/> | |
107 | + </g> | |
108 | + <g transform="translate(17.21,0)"> | |
109 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,-0)" id="shape48" fill="url(#lg1)"/> | |
110 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,5.45)" id="shape49" fill="url(#lg1)"/> | |
111 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,10.91)" id="shape50" fill="url(#lg1)"/> | |
112 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,16.8)" id="shape51" fill="url(#lg1)"/> | |
113 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,22.4)" id="shape52" fill="url(#lg1)"/> | |
114 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,28)" id="shape53" fill="url(#lg1)"/> | |
115 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,33.6)" id="shape54" fill="url(#lg1)"/> | |
116 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,39.2)" id="shape55" fill="url(#lg1)"/> | |
117 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,44.8)" id="shape56" fill="url(#lg1)"/> | |
118 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,50.39)" id="shape57" fill="url(#lg1)"/> | |
119 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,55.99)" id="shape58" fill="url(#lg1)"/> | |
120 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,61.59)" id="shape59" fill="url(#lg1)"/> | |
121 | + </g> | |
122 | + <g transform="translate(22.25,0)"> | |
123 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,-0)" id="shape60" fill="url(#lg1)"/> | |
124 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,5.45)" id="shape61" fill="url(#lg1)"/> | |
125 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,10.91)" id="shape62" fill="url(#lg1)"/> | |
126 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,16.8)" id="shape63" fill="url(#lg1)"/> | |
127 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,22.4)" id="shape64" fill="url(#lg1)"/> | |
128 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,28)" id="shape65" fill="url(#lg1)"/> | |
129 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,33.6)" id="shape66" fill="url(#lg1)"/> | |
130 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,39.2)" id="shape67" fill="url(#lg1)"/> | |
131 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,44.8)" id="shape68" fill="url(#lg1)"/> | |
132 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,50.39)" id="shape69" fill="url(#lg1)"/> | |
133 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,55.99)" id="shape70" fill="url(#lg1)"/> | |
134 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,61.59)" id="shape71" fill="url(#lg1)"/> | |
135 | + </g> | |
136 | + <g transform="translate(27.82,0)"> | |
137 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,-0)" id="shape72" fill="url(#lg1)"/> | |
138 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,5.45)" id="shape73" fill="url(#lg1)"/> | |
139 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,10.91)" id="shape74" fill="url(#lg1)"/> | |
140 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,16.8)" id="shape75" fill="url(#lg1)"/> | |
141 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,22.4)" id="shape76" fill="url(#lg1)"/> | |
142 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,28)" id="shape77" fill="url(#lg1)"/> | |
143 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,33.6)" id="shape78" fill="url(#lg1)"/> | |
144 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,39.2)" id="shape79" fill="url(#lg1)"/> | |
145 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,44.8)" id="shape80" fill="url(#lg1)"/> | |
146 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,50.39)" id="shape81" fill="url(#lg1)"/> | |
147 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,55.99)" id="shape82" fill="url(#lg1)"/> | |
148 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,61.59)" id="shape83" fill="url(#lg1)"/> | |
149 | + </g> | |
150 | + <g transform="translate(33.38,0)"> | |
151 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,-0)" id="shape84" fill="url(#lg1)"/> | |
152 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,5.45)" id="shape85" fill="url(#lg1)"/> | |
153 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,10.91)" id="shape86" fill="url(#lg1)"/> | |
154 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,16.8)" id="shape87" fill="url(#lg1)"/> | |
155 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,22.4)" id="shape88" fill="url(#lg1)"/> | |
156 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,28)" id="shape89" fill="url(#lg1)"/> | |
157 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,33.6)" id="shape90" fill="url(#lg1)"/> | |
158 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,39.2)" id="shape91" fill="url(#lg1)"/> | |
159 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,44.8)" id="shape92" fill="url(#lg1)"/> | |
160 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,50.39)" id="shape93" fill="url(#lg1)"/> | |
161 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,55.99)" id="shape94" fill="url(#lg1)"/> | |
162 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,61.59)" id="shape95" fill="url(#lg1)"/> | |
163 | + </g> | |
164 | + <g transform="translate(38.95,0)"> | |
165 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,-0)" id="shape96" fill="url(#lg1)"/> | |
166 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,5.45)" id="shape97" fill="url(#lg1)"/> | |
167 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,10.91)" id="shape98" fill="url(#lg1)"/> | |
168 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,16.8)" id="shape99" fill="url(#lg1)"/> | |
169 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,22.4)" id="shape100" fill="url(#lg1)"/> | |
170 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,28)" id="shape101" fill="url(#lg1)"/> | |
171 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,33.6)" id="shape102" fill="url(#lg1)"/> | |
172 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,39.2)" id="shape103" fill="url(#lg1)"/> | |
173 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,44.8)" id="shape104" fill="url(#lg1)"/> | |
174 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,50.39)" id="shape105" fill="url(#lg1)"/> | |
175 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,55.99)" id="shape106" fill="url(#lg1)"/> | |
176 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,61.59)" id="shape107" fill="url(#lg1)"/> | |
177 | + </g> | |
178 | + <g transform="translate(44.51,0)"> | |
179 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,-0)" id="shape108" fill="url(#lg1)"/> | |
180 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,5.45)" id="shape109" fill="url(#lg1)"/> | |
181 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,10.91)" id="shape110" fill="url(#lg1)"/> | |
182 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,16.8)" id="shape111" fill="url(#lg1)"/> | |
183 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,22.4)" id="shape112" fill="url(#lg1)"/> | |
184 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,28)" id="shape113" fill="url(#lg1)"/> | |
185 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,33.6)" id="shape114" fill="url(#lg1)"/> | |
186 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,39.2)" id="shape115" fill="url(#lg1)"/> | |
187 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,44.8)" id="shape116" fill="url(#lg1)"/> | |
188 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,50.39)" id="shape117" fill="url(#lg1)"/> | |
189 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,55.99)" id="shape118" fill="url(#lg1)"/> | |
190 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,61.59)" id="shape119" fill="url(#lg1)"/> | |
191 | + </g> | |
192 | + <g transform="translate(50.07,0)"> | |
193 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,-0)" id="shape120" fill="url(#lg1)"/> | |
194 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,5.45)" id="shape121" fill="url(#lg1)"/> | |
195 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,10.91)" id="shape122" fill="url(#lg1)"/> | |
196 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,16.8)" id="shape123" fill="url(#lg1)"/> | |
197 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,22.4)" id="shape124" fill="url(#lg1)"/> | |
198 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,28)" id="shape125" fill="url(#lg1)"/> | |
199 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,33.6)" id="shape126" fill="url(#lg1)"/> | |
200 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,39.2)" id="shape127" fill="url(#lg1)"/> | |
201 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,44.8)" id="shape128" fill="url(#lg1)"/> | |
202 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,50.39)" id="shape129" fill="url(#lg1)"/> | |
203 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,55.99)" id="shape130" fill="url(#lg1)"/> | |
204 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,61.59)" id="shape131" fill="url(#lg1)"/> | |
205 | + </g> | |
206 | + <g transform="translate(55.64,0)"> | |
207 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,-0)" id="shape132" fill="url(#lg1)"/> | |
208 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,5.45)" id="shape133" fill="url(#lg1)"/> | |
209 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,10.91)" id="shape134" fill="url(#lg1)"/> | |
210 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,16.8)" id="shape135" fill="url(#lg1)"/> | |
211 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,22.4)" id="shape136" fill="url(#lg1)"/> | |
212 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,28)" id="shape137" fill="url(#lg1)"/> | |
213 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,33.6)" id="shape138" fill="url(#lg1)"/> | |
214 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,39.2)" id="shape139" fill="url(#lg1)"/> | |
215 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,44.8)" id="shape140" fill="url(#lg1)"/> | |
216 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,50.39)" id="shape141" fill="url(#lg1)"/> | |
217 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,55.99)" id="shape142" fill="url(#lg1)"/> | |
218 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,61.59)" id="shape143" fill="url(#lg1)"/> | |
219 | + </g> | |
220 | + <g transform="translate(61.2,0)"> | |
221 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,-0)" id="shape144" fill="url(#lg1)"/> | |
222 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,5.45)" id="shape145" fill="url(#lg1)"/> | |
223 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,10.91)" id="shape146" fill="url(#lg1)"/> | |
224 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,16.8)" id="shape147" fill="url(#lg1)"/> | |
225 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,22.4)" id="shape148" fill="url(#lg1)"/> | |
226 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,28)" id="shape149" fill="url(#lg1)"/> | |
227 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,33.6)" id="shape150" fill="url(#lg1)"/> | |
228 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,39.2)" id="shape151" fill="url(#lg1)"/> | |
229 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,44.8)" id="shape152" fill="url(#lg1)"/> | |
230 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,50.39)" id="shape153" fill="url(#lg1)"/> | |
231 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,55.99)" id="shape154" fill="url(#lg1)"/> | |
232 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,61.59)" id="shape155" fill="url(#lg1)"/> | |
233 | + </g> | |
234 | + <g transform="translate(66.76,0)"> | |
235 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,-0)" id="shape156" fill="url(#lg1)"/> | |
236 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,5.45)" id="shape157" fill="url(#lg1)"/> | |
237 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,10.91)" id="shape158" fill="url(#lg1)"/> | |
238 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,16.8)" id="shape159" fill="url(#lg1)"/> | |
239 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,22.4)" id="shape160" fill="url(#lg1)"/> | |
240 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,28)" id="shape161" fill="url(#lg1)"/> | |
241 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,33.6)" id="shape162" fill="url(#lg1)"/> | |
242 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,39.2)" id="shape163" fill="url(#lg1)"/> | |
243 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,44.8)" id="shape164" fill="url(#lg1)"/> | |
244 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,50.39)" id="shape165" fill="url(#lg1)"/> | |
245 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,55.99)" id="shape166" fill="url(#lg1)"/> | |
246 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,61.59)" id="shape167" fill="url(#lg1)"/> | |
247 | + </g> | |
248 | + <g transform="translate(72.33,0)"> | |
249 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,-0)" id="shape168" fill="url(#lg1)"/> | |
250 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,5.45)" id="shape169" fill="url(#lg1)"/> | |
251 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,10.91)" id="shape170" fill="url(#lg1)"/> | |
252 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,16.8)" id="shape171" fill="url(#lg1)"/> | |
253 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,22.4)" id="shape172" fill="url(#lg1)"/> | |
254 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,28)" id="shape173" fill="url(#lg1)"/> | |
255 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,33.6)" id="shape174" fill="url(#lg1)"/> | |
256 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,39.2)" id="shape175" fill="url(#lg1)"/> | |
257 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,44.8)" id="shape176" fill="url(#lg1)"/> | |
258 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,50.39)" id="shape177" fill="url(#lg1)"/> | |
259 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,55.99)" id="shape178" fill="url(#lg1)"/> | |
260 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,61.59)" id="shape179" fill="url(#lg1)"/> | |
261 | + </g> | |
262 | + <g transform="translate(77.89,0)"> | |
263 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,-0)" id="shape180" fill="url(#lg1)"/> | |
264 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,5.45)" id="shape181" fill="url(#lg1)"/> | |
265 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,10.91)" id="shape182" fill="url(#lg1)"/> | |
266 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,16.8)" id="shape183" fill="url(#lg1)"/> | |
267 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,22.4)" id="shape184" fill="url(#lg1)"/> | |
268 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,28)" id="shape185" fill="url(#lg1)"/> | |
269 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,33.6)" id="shape186" fill="url(#lg1)"/> | |
270 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,39.2)" id="shape187" fill="url(#lg1)"/> | |
271 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,44.8)" id="shape188" fill="url(#lg1)"/> | |
272 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,50.39)" id="shape189" fill="url(#lg1)"/> | |
273 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,55.99)" id="shape190" fill="url(#lg1)"/> | |
274 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,61.59)" id="shape191" fill="url(#lg1)"/> | |
275 | + </g> | |
276 | + <g transform="translate(83.46,0)"> | |
277 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,-0)" id="shape192" fill="url(#lg1)"/> | |
278 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,5.45)" id="shape193" fill="url(#lg1)"/> | |
279 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,10.91)" id="shape194" fill="url(#lg1)"/> | |
280 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,16.8)" id="shape195" fill="url(#lg1)"/> | |
281 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,22.4)" id="shape196" fill="url(#lg1)"/> | |
282 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,28)" id="shape197" fill="url(#lg1)"/> | |
283 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,33.6)" id="shape198" fill="url(#lg1)"/> | |
284 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,39.2)" id="shape199" fill="url(#lg1)"/> | |
285 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,44.8)" id="shape200" fill="url(#lg1)"/> | |
286 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,50.39)" id="shape201" fill="url(#lg1)"/> | |
287 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,55.99)" id="shape202" fill="url(#lg1)"/> | |
288 | + <path d="M0,0L1.3,0L1.3,4.6L0,4.6L0,0z" transform="translate(0,61.59)" id="shape203" fill="url(#lg1)"/> | |
289 | + </g> | |
290 | + </g> | |
291 | + </g> | |
292 | +</svg> | ... | ... |
1 | +<svg viewBox="0 0 154 143.966" height="144" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="154"> | |
2 | + <defs> | |
3 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg1"> | |
4 | + <stop offset="0" stop-color="#bdbdbd"/> | |
5 | + <stop offset="0.15" stop-color="#ffffff"/> | |
6 | + <stop offset="0.25" stop-color="#ffffff"/> | |
7 | + <stop offset="0.52" stop-color="#dfdfdf"/> | |
8 | + <stop offset="0.69" stop-color="#c7c7c7"/> | |
9 | + <stop offset="0.8" stop-color="#bcbcbc"/> | |
10 | + <stop offset="0.92" stop-color="#b1b1b1"/> | |
11 | + <stop offset="1" stop-color="#cbcbcb"/> | |
12 | + </linearGradient> | |
13 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg2"> | |
14 | + <stop offset="0" stop-color="#93afba"/> | |
15 | + <stop offset="0.15" stop-color="#c5e6f4"/> | |
16 | + <stop offset="0.25" stop-color="#dff1f8"/> | |
17 | + <stop offset="0.44" stop-color="#a8c7d5"/> | |
18 | + <stop offset="0.6" stop-color="#95b1bd"/> | |
19 | + <stop offset="0.8" stop-color="#7d95a0"/> | |
20 | + <stop offset="0.97" stop-color="#728992"/> | |
21 | + <stop offset="1" stop-color="#99b6c2"/> | |
22 | + </linearGradient> | |
23 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg3"> | |
24 | + <stop offset="0" stop-color="#2b2827"/> | |
25 | + <stop offset="0.15" stop-color="#5b5858"/> | |
26 | + <stop offset="0.25" stop-color="#b8b7b7"/> | |
27 | + <stop offset="0.52" stop-color="#353130"/> | |
28 | + <stop offset="0.69" stop-color="#2e2a29"/> | |
29 | + <stop offset="0.8" stop-color="#2b2726"/> | |
30 | + <stop offset="0.92" stop-color="#282424"/> | |
31 | + <stop offset="1" stop-color="#2f2b2b"/> | |
32 | + </linearGradient> | |
33 | + <linearGradient x2="0%" y2="0%" x1="100%" y1="0%" id="lg4"> | |
34 | + <stop offset="0" stop-color="#403e3e"/> | |
35 | + <stop offset="0.15" stop-color="#6d6c6c"/> | |
36 | + <stop offset="0.25" stop-color="#bcbcbc"/> | |
37 | + <stop offset="0.52" stop-color="#4d4b4b"/> | |
38 | + <stop offset="0.69" stop-color="#434242"/> | |
39 | + <stop offset="0.8" stop-color="#3f3e3e"/> | |
40 | + <stop offset="0.92" stop-color="#3b3a3a"/> | |
41 | + <stop offset="1" stop-color="#454444"/> | |
42 | + </linearGradient> | |
43 | + </defs> | |
44 | + <g transform="translate(1,1)"> | |
45 | + <path d="M0,0L151.4,0L151.4,102.6L75.9,102.6L0,102.6L0,0z" transform="translate(0.32,37.01)" id="shape1" fill="url(#lg1)"/> | |
46 | + <path d="M0,37.1C0,21.8,34.1,0,75.8,0C117.8,0,151.6,21.8,151.6,37.1C151.6,37.1,0,37.1,0,37.1z" transform="translate(0.2,-0)" id="shape2" fill="url(#lg2)"/> | |
47 | + <g transform="translate(12.57,5.76)"> | |
48 | + <path d="M6.2,0L79,0L85,1.8L0,1.9L6.2,0z" transform="translate(20.95,-0)" id="shape3" fill="url(#lg1)"/> | |
49 | + <path d="M3.2,0L123.7,0L126.9,2.2L0,2.2L3.2,0z" transform="translate(0,11.02)" id="shape4" fill="url(#lg1)"/> | |
50 | + </g> | |
51 | + <path d="M68.1,0C68.1,0,27.2,5.8,0,37L5.3,37C5.3,37,29.3,8.2,68.1,0z" transform="translate(7.91,-0)" id="shape5" fill="#cdcece"/> | |
52 | + <path d="M36.5,0C36.5,0,15,11.2,0,37.2L3.9,37.2C3.9,37.2,18.9,11.2,36.5,0z" transform="translate(39.53,-0)" id="shape6" fill="#cdcece"/> | |
53 | + <path d="M2.4,0L0,37.2L4.1,37.2L2.4,0z" transform="translate(73.64,-0)" id="shape7" fill="#cdcece"/> | |
54 | + <path d="M68.1,0C68.1,0,27.2,5.8,0,37L5.3,37C5.3,37,29.3,8.2,68.1,0z" transform="matrix(-1,0,0,1,144.1,-0)" id="shape8" fill="#eeeeee"/> | |
55 | + <path d="M36.5,0C36.5,0,15,11.2,0,37.2L3.9,37.2C3.9,37.2,18.9,11.2,36.5,0z" transform="matrix(-1,0,0,1,112.5,-0)" id="shape9" fill="#eeeeee"/> | |
56 | + <path d="M.2,-0L151.7,-0C152,-0,152,.1,152,.2L152,3.3C152,3.5,152,3.6,151.7,3.6L.2,3.6C0,3.6,0,3.5,0,3.3L0,.2C0,.1,0,-0,.2,-0z" transform="translate(0,138.37)" id="shape10" fill="url(#lg3)"/> | |
57 | + <path d="M0,0L151.4,0L151.4,3.5L75.9,3.5L0,3.5L0,0z" transform="translate(0.32,37.01)" id="shape11" fill="url(#lg4)"/> | |
58 | + </g> | |
59 | +</svg> | ... | ... |
1 | +<svg viewBox="0 0 172 99.9888" height="100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="172"> | |
2 | + <defs/> | |
3 | + <g transform="translate(1,1)"> | |
4 | + <path d="M0,14.7L139.4,0L139.4,64.7L0,92.1L0,14.7z" transform="translate(30.5,5.92)" id="shape1" fill="#763c30"/> | |
5 | + <path d="M0,19.8L0,14.7L139.5,0L139.5,7.5L124.3,13L78.6,19.8L36.7,24.9L0,19.8z" transform="translate(30.5,5.92)" id="shape2" fill="#b1893d"/> | |
6 | + <path d="M30.5,8L0,0L0,67.6L30.5,85.4L30.5,8z" transform="translate(0,12.62)" id="shape3" fill="#c89a46"/> | |
7 | + <path d="M0,12.6L30.5,20.7L170,5.9L126,0L0,12.6z" transform="translate(0,-0)" id="shape4" fill="#daa94d"/> | |
8 | + <path d="M0,22.5L0,14C0,14,22.8,8.5,37.2,14.4C37.2,14.4,45,15.1,49.4,10.6C53.9,6.2,59.2,11.9,68.9,11.9C78.6,11.9,84.1,5.1,93.4,6.8C102.7,8.5,109.5,7.7,119.6,3.4C129.8,-0.8,139.5,.1,139.5,.1L139.5,6.8L107.4,18.6L59.2,26.7L0,22.5z" transform="translate(30.5,11.73)" id="shape5" fill="#665240"/> | |
9 | + <path d="M0,28.7L0,16.9C0,16.9,32.9,5.5,43.5,9.3C54.1,13.1,56.2,21.1,68.9,15.2C81.6,9.3,89.6,1.7,99.3,6.3C109.1,11,109.5,8.4,116.7,4.2C123.9,0,139.5,0,139.5,0L139.5,12.6L125.5,21.9C125.5,21.9,85.6,27.7,84.5,28.7C83.5,29.8,35,33,30.8,33C26.6,33,0,27.4,0,28.7z" transform="translate(30.5,17.3)" id="shape6" fill="#4b311e"/> | |
10 | + <path d="M0,29.2L0,17C0,17,13.9,3.9,35,7.3C56.2,10.6,56.2,17.4,75.2,10.2C94.3,3,100.2,3.5,108.2,6.4C116.2,9.4,115,3,123.9,.9C132.7,-1.2,139.1,.9,139.5,.9L139.5,14.1L130.6,20.4C130.6,20.4,110.7,30.1,108.2,30.1C105.7,30.1,80.3,31.8,80.3,31.8L55.3,33L32.5,40.3C32.5,40.3,17.3,39.4,14.7,39.4C12.2,39.4,0,30.1,0,29.2z" transform="translate(30.5,29.03)" id="shape7" fill="#665240"/> | |
11 | + <path d="M0,37.2L0,20.7C0,20.7,5,13.6,20.2,19.1C29,22.3,35,17.8,42.7,14.4C50.3,11,64.3,17,70.1,14.4C80.6,9.8,87.1,5.9,104,9.3C120.9,12.7,119.2,1.7,128.5,1.7C137.8,1.7,139.5,0,139.5,0L139.5,12.3L135.2,20.7C135.2,20.7,106.5,30,104,30C101.4,30,58.3,30,58.3,30L39.7,37.2C39.7,37.2,25.8,42.7,22,42.7C18.1,42.7,0,38,0,37.2z" transform="translate(30.5,37.56)" id="shape8" fill="#4b311e"/> | |
12 | + <path d="M0,37.6L0,25.7C0,25.7,6.3,24.9,11.4,21.5C16.4,18.1,23.6,21.5,29.5,20.2C35.5,19,41.8,8.5,52.4,12.7C63,16.9,78.1,13.1,87.4,8.9C96.7,4.6,105.6,1.7,119.6,5.5C133.5,9.3,139.5,0,139.5,0L139.5,21.6L134.8,19.4L105.2,25.7L64.6,33.8L15.4,41.1L0,37.6z" transform="translate(30.5,49.02)" id="shape9" fill="#438c91"/> | |
13 | + <path d="M0,38.4L139.5,11L139.5,0C139.5,0,132.7,10.1,117.1,8.4C101.4,6.7,111.2,10.9,91.3,14.7C71.4,18.5,75.6,10.1,62.1,13.9C48.6,17.7,49.8,28.2,35.9,23.6C21.9,18.9,8.4,21.5,0,27L0,38.4z" transform="translate(30.5,59.61)" id="shape10" fill="#494236"/> | |
14 | + <path d="M30.5,27.5L0,9.7L0,0L30.5,16.1L30.5,27.5z" transform="translate(0,70.52)" id="shape11" fill="#494236"/> | |
15 | + <path d="M30.5,26L0,9.7L0,0L30.5,13.2L30.5,26z" transform="translate(0,60.8)" id="shape12" fill="#438c91"/> | |
16 | + <path d="M30.5,28.7L0,14.3L0,0L30.5,12.7L30.5,28.7z" transform="translate(0,46.5)" id="shape13" fill="#4b311e"/> | |
17 | + <path d="M30.5,25.1L0,14L0,0L30.5,11.4L30.5,25.1z" transform="translate(0,34.37)" id="shape14" fill="#665240"/> | |
18 | + <path d="M30.5,21.5L0,9.8L0,0L30.5,9.6L30.5,21.5z" transform="translate(0,24.54)" id="shape15" fill="#4b311e"/> | |
19 | + <path d="M30.5,18.1L0,8.5L0,0L30.5,9.6L30.5,18.1z" transform="translate(0,16.09)" id="shape16" fill="#665240"/> | |
20 | + </g> | |
21 | +</svg> | ... | ... |