western-world 3.0.271 → 3.0.274
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/scss/cells/ambulance_2.scss +12 -2
- package/src/scss/cells/fake_coins.scss +92 -1
- package/src/scss/cells/protess_mission.scss +122 -1
- package/src/svg/cells/ambulance_2.svg +149 -60
- package/src/svg/cells/fake_coins.svg +326 -263
- package/src/svg/cells/protess_mission.svg +435 -150
package/package.json
CHANGED
|
@@ -42,13 +42,23 @@
|
|
|
42
42
|
animation-iteration-count: infinite;
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
-
#broken-light,
|
|
45
|
+
#broken-light,
|
|
46
|
+
#turn-on-light_1_,
|
|
47
|
+
#pillow {
|
|
46
48
|
@include lightBlinkingAnimationStylesMixin;
|
|
47
49
|
}
|
|
48
50
|
|
|
51
|
+
#pillow {
|
|
52
|
+
animation-delay: 5.3s;
|
|
53
|
+
}
|
|
54
|
+
|
|
49
55
|
#turn-off-light {
|
|
50
56
|
display: block;
|
|
51
57
|
}
|
|
58
|
+
|
|
59
|
+
#pillow-broken {
|
|
60
|
+
stroke: #6387bb;
|
|
61
|
+
}
|
|
52
62
|
}
|
|
53
63
|
}
|
|
54
64
|
|
|
@@ -142,4 +152,4 @@
|
|
|
142
152
|
}
|
|
143
153
|
}
|
|
144
154
|
|
|
145
|
-
@include lightBlinkingAnimationKeyframeMixin;
|
|
155
|
+
@include lightBlinkingAnimationKeyframeMixin;
|
|
@@ -1 +1,92 @@
|
|
|
1
|
-
|
|
1
|
+
.animated {
|
|
2
|
+
.fake_coins {
|
|
3
|
+
#drill,
|
|
4
|
+
#arm_x5F_2 {
|
|
5
|
+
animation-duration: 0.1s;
|
|
6
|
+
animation-timing-function: linear;
|
|
7
|
+
animation-iteration-count: infinite;
|
|
8
|
+
animation-direction: alternate-reverse;
|
|
9
|
+
animation-name: drillAnimation;
|
|
10
|
+
// transform-origin: 4721px 5890px;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
#arm_1 {
|
|
14
|
+
animation-duration: 0.1s;
|
|
15
|
+
animation-timing-function: linear;
|
|
16
|
+
animation-iteration-count: infinite;
|
|
17
|
+
animation-direction: alternate-reverse;
|
|
18
|
+
animation-name: armAnimation;
|
|
19
|
+
transform-origin: 7291px 4555px;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
#arm_x5F_1_x5F_2 {
|
|
23
|
+
animation-duration: 0.1s;
|
|
24
|
+
animation-timing-function: linear;
|
|
25
|
+
animation-iteration-count: infinite;
|
|
26
|
+
animation-direction: alternate-reverse;
|
|
27
|
+
animation-name: arm2Animation;
|
|
28
|
+
transform-origin: 7137px 5144px;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
#head {
|
|
32
|
+
animation-duration: 0.1s;
|
|
33
|
+
animation-timing-function: linear;
|
|
34
|
+
animation-iteration-count: infinite;
|
|
35
|
+
animation-direction: alternate-reverse;
|
|
36
|
+
animation-name: headAnimation;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
#coin_2_ {
|
|
40
|
+
animation-duration: 0.1s;
|
|
41
|
+
animation-timing-function: linear;
|
|
42
|
+
animation-iteration-count: infinite;
|
|
43
|
+
animation-direction: alternate-reverse;
|
|
44
|
+
animation-name: coinAnimation;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
@keyframes drillAnimation {
|
|
50
|
+
0% {
|
|
51
|
+
transform: translate(0px, 0px);
|
|
52
|
+
}
|
|
53
|
+
100% {
|
|
54
|
+
transform: translate(100px, -50px);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
@keyframes armAnimation {
|
|
59
|
+
0% {
|
|
60
|
+
transform: rotate(0deg);
|
|
61
|
+
}
|
|
62
|
+
100% {
|
|
63
|
+
transform: rotate(-5deg);
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
@keyframes arm2Animation {
|
|
68
|
+
0% {
|
|
69
|
+
transform: rotate(0deg);
|
|
70
|
+
}
|
|
71
|
+
100% {
|
|
72
|
+
transform: rotate(10deg);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
@keyframes headAnimation {
|
|
77
|
+
0% {
|
|
78
|
+
transform: translate(0px, 0px);
|
|
79
|
+
}
|
|
80
|
+
100% {
|
|
81
|
+
transform: translate(15px, -15px);
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
@keyframes coinAnimation {
|
|
86
|
+
0% {
|
|
87
|
+
transform: translateX(0px);
|
|
88
|
+
}
|
|
89
|
+
100% {
|
|
90
|
+
transform: translateX(15px);
|
|
91
|
+
}
|
|
92
|
+
}
|
|
@@ -1 +1,122 @@
|
|
|
1
|
-
|
|
1
|
+
@import './mixins/street_clouds';
|
|
2
|
+
@import './mixins/light-blinking';
|
|
3
|
+
|
|
4
|
+
.animated {
|
|
5
|
+
.protess_mission {
|
|
6
|
+
@include clouds_animation;
|
|
7
|
+
|
|
8
|
+
#medical_cross_1_ {
|
|
9
|
+
@include lightBlinkingAnimationStylesMixin;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
#medical_cross_1_ {
|
|
13
|
+
animation-delay: 5.3s;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
#medical-cross-broken {
|
|
17
|
+
display: block;
|
|
18
|
+
stroke: #cf95a5;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
#victim {
|
|
22
|
+
animation-name: victimAnimation;
|
|
23
|
+
animation-duration: 20s;
|
|
24
|
+
animation-iteration-count: 1;
|
|
25
|
+
animation-timing-function: linear;
|
|
26
|
+
animation-fill-mode: forwards;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
#wheel {
|
|
30
|
+
animation-name: wheelAnimation;
|
|
31
|
+
animation-duration: 5s;
|
|
32
|
+
animation-iteration-count: infinite;
|
|
33
|
+
animation-timing-function: linear;
|
|
34
|
+
transform-origin: 6303px 7756px;
|
|
35
|
+
animation-fill-mode: forwards;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
#car {
|
|
39
|
+
animation-name: carAnimation;
|
|
40
|
+
animation-duration: 20s;
|
|
41
|
+
animation-iteration-count: 1;
|
|
42
|
+
animation-timing-function: linear;
|
|
43
|
+
animation-fill-mode: forwards;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
#wheel-broken {
|
|
47
|
+
display: block;
|
|
48
|
+
opacity: 0;
|
|
49
|
+
animation-name: wheelBrokenAnimation;
|
|
50
|
+
animation-duration: 20s;
|
|
51
|
+
animation-iteration-count: 1;
|
|
52
|
+
animation-timing-function: linear;
|
|
53
|
+
animation-fill-mode: forwards;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
@include lightBlinkingAnimationKeyframeMixin;
|
|
59
|
+
|
|
60
|
+
@keyframes victimAnimation {
|
|
61
|
+
0% {
|
|
62
|
+
transform: translateX(2000px);
|
|
63
|
+
opacity: 1;
|
|
64
|
+
}
|
|
65
|
+
50% {
|
|
66
|
+
opacity: 1;
|
|
67
|
+
transform: translateX(0px);
|
|
68
|
+
}
|
|
69
|
+
51% {
|
|
70
|
+
opacity: 0;
|
|
71
|
+
transform: translateX(0px);
|
|
72
|
+
}
|
|
73
|
+
100% {
|
|
74
|
+
opacity: 0;
|
|
75
|
+
transform: translateX(0px);
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
@keyframes wheelAnimation {
|
|
80
|
+
0% {
|
|
81
|
+
transform: rotate(0deg);
|
|
82
|
+
}
|
|
83
|
+
100% {
|
|
84
|
+
transform: rotate(-360deg);
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
@keyframes carAnimation {
|
|
89
|
+
0% {
|
|
90
|
+
transform: translateX(-2500px);
|
|
91
|
+
}
|
|
92
|
+
40% {
|
|
93
|
+
transform: translateX(-25000px);
|
|
94
|
+
}
|
|
95
|
+
50% {
|
|
96
|
+
transform: translateX(5000px);
|
|
97
|
+
}
|
|
98
|
+
60% {
|
|
99
|
+
transform: translateX(5000px);
|
|
100
|
+
}
|
|
101
|
+
70% {
|
|
102
|
+
transform: translateX(10000px);
|
|
103
|
+
}
|
|
104
|
+
100% {
|
|
105
|
+
transform: translateX(10000px);
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
@keyframes wheelBrokenAnimation {
|
|
110
|
+
0% {
|
|
111
|
+
opacity: 0;
|
|
112
|
+
}
|
|
113
|
+
50% {
|
|
114
|
+
opacity: 0;
|
|
115
|
+
}
|
|
116
|
+
51% {
|
|
117
|
+
opacity: 1;
|
|
118
|
+
}
|
|
119
|
+
100% {
|
|
120
|
+
opacity: 1;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="utf-8"?>
|
|
2
2
|
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
3
|
<svg version="1.1" id="main" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
-
viewBox="0 0 10000 10000" style="enable-background:new 0 0 10000 10000;" xml:space="preserve"
|
|
4
|
+
width="10000px" height="10000px" viewBox="0 0 10000 10000" style="enable-background:new 0 0 10000 10000;" xml:space="preserve"
|
|
5
|
+
>
|
|
5
6
|
<style type="text/css">
|
|
6
7
|
.st0{fill:#E9A9AA;}
|
|
7
8
|
.st1{fill:#EA9199;}
|
|
@@ -9,36 +10,111 @@
|
|
|
9
10
|
.st3{fill:#E08190;}
|
|
10
11
|
.st4{fill:#81DCCD;}
|
|
11
12
|
.st5{fill:#52B9AF;}
|
|
12
|
-
.st6{fill:#
|
|
13
|
-
.st7{fill:#
|
|
14
|
-
.st8{
|
|
15
|
-
.st9{fill:#
|
|
16
|
-
.st10{fill:#
|
|
17
|
-
.st11{fill:#
|
|
18
|
-
.st12{fill
|
|
19
|
-
.st13{fill
|
|
20
|
-
.st14{fill:#
|
|
21
|
-
.st15{fill
|
|
13
|
+
.st6{fill:none;stroke:#FFFFFF;stroke-width:34.8868;stroke-miterlimit:10;}
|
|
14
|
+
.st7{fill:none;stroke:#FFFFFF;stroke-width:34.1469;stroke-miterlimit:10;}
|
|
15
|
+
.st8{fill:none;stroke:#FFFFFF;stroke-width:32.4425;stroke-miterlimit:10;}
|
|
16
|
+
.st9{fill:#50B8AE;}
|
|
17
|
+
.st10{fill:#79D7C9;}
|
|
18
|
+
.st11{display:none;fill:#EAD9B0;}
|
|
19
|
+
.st12{fill:#FAF3DF;}
|
|
20
|
+
.st13{fill:#237B7A;}
|
|
21
|
+
.st14{fill:#207878;}
|
|
22
|
+
.st15{fill:url(#broken-light_1_);}
|
|
23
|
+
.st16{fill:url(#SVGID_1_);}
|
|
24
|
+
.st17{fill:#7C2F48;}
|
|
25
|
+
.st18{fill:#F3F3F3;}
|
|
26
|
+
.red-glow {
|
|
27
|
+
filter: url(#red-glow);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.blue-glow {
|
|
31
|
+
filter: url(#blue-glow);
|
|
32
|
+
}
|
|
22
33
|
</style>
|
|
34
|
+
<defs>
|
|
35
|
+
<filter id="red-glow" filterUnits="userSpaceOnUse" x="-50%" y="-50%" width="200%" height="200%">
|
|
36
|
+
<!-- blur the text at different levels-->
|
|
37
|
+
<feGaussianBlur in="SourceGraphic" stdDeviation="5" result="blur5"/>
|
|
38
|
+
<feGaussianBlur in="SourceGraphic" stdDeviation="10" result="blur10"/>
|
|
39
|
+
<feGaussianBlur in="SourceGraphic" stdDeviation="20" result="blur20"/>
|
|
40
|
+
<feGaussianBlur in="SourceGraphic" stdDeviation="30" result="blur30"/>
|
|
41
|
+
<feGaussianBlur in="SourceGraphic" stdDeviation="50" result="blur50"/>
|
|
42
|
+
<feGaussianBlur in="SourceGraphic" stdDeviation="100" result="blur100"/>
|
|
43
|
+
<feGaussianBlur in="SourceGraphic" stdDeviation="300" result="blur300"/>
|
|
44
|
+
<!-- merge all the blurs except for the first one -->
|
|
45
|
+
<feMerge result="blur-merged">
|
|
46
|
+
<feMergeNode in="blur10"/>
|
|
47
|
+
<feMergeNode in="blur20"/>
|
|
48
|
+
<feMergeNode in="blur30"/>
|
|
49
|
+
<feMergeNode in="blur50"/>
|
|
50
|
+
<feMergeNode in="blur100"/>
|
|
51
|
+
</feMerge>
|
|
52
|
+
<!-- recolour the merged blurs red-->
|
|
53
|
+
<feColorMatrix result="red-blur" in="blur-merged" type="matrix"
|
|
54
|
+
values="1 0 0 0 0
|
|
55
|
+
0 0.06 0 0 0
|
|
56
|
+
0 0 0.44 0 0
|
|
57
|
+
0 0 0 1 0" />
|
|
58
|
+
<feMerge>
|
|
59
|
+
<feMergeNode in="blur300"/>
|
|
60
|
+
<feMergeNode in="blur300"/>
|
|
61
|
+
<feMergeNode in="blur300"/>
|
|
62
|
+
<feMergeNode in="blur100"/>
|
|
63
|
+
<feMergeNode in="red-blur"/> <!-- largest blurs coloured red -->
|
|
64
|
+
<feMergeNode in="blur5"/> <!-- smallest blur left white -->
|
|
65
|
+
<feMergeNode in="SourceGraphic"/> <!-- original white text -->
|
|
66
|
+
</feMerge>
|
|
67
|
+
</filter>
|
|
68
|
+
|
|
69
|
+
<filter id="blue-glow" filterUnits="userSpaceOnUse" x="-50%" y="-50%" width="200%" height="200%">
|
|
70
|
+
<feGaussianBlur in="SourceGraphic" stdDeviation="5" result="blur5"/>
|
|
71
|
+
<feGaussianBlur in="SourceGraphic" stdDeviation="10" result="blur10"/>
|
|
72
|
+
<feGaussianBlur in="SourceGraphic" stdDeviation="20" result="blur20"/>
|
|
73
|
+
<feGaussianBlur in="SourceGraphic" stdDeviation="30" result="blur30"/>
|
|
74
|
+
<feGaussianBlur in="SourceGraphic" stdDeviation="50" result="blur50"/>
|
|
75
|
+
<feGaussianBlur in="SourceGraphic" stdDeviation="100" result="blur100"/>
|
|
76
|
+
<feGaussianBlur in="SourceGraphic" stdDeviation="300" result="blur300"/>
|
|
77
|
+
<feMerge result="blur-merged">
|
|
78
|
+
<feMergeNode in="blur10"/>
|
|
79
|
+
<feMergeNode in="blur20"/>
|
|
80
|
+
<feMergeNode in="blur30"/>
|
|
81
|
+
<feMergeNode in="blur50"/>
|
|
82
|
+
<feMergeNode in="blur100"/>
|
|
83
|
+
</feMerge>
|
|
84
|
+
<feColorMatrix result="blue-blur" in="blur-merged" type="matrix"
|
|
85
|
+
values="0.01 0 0 0 0
|
|
86
|
+
0 0.44 0 0 0
|
|
87
|
+
0 0 1 0 0
|
|
88
|
+
0 0 0 1 0" />
|
|
89
|
+
<feMerge>
|
|
90
|
+
<feMergeNode in="blur300"/>
|
|
91
|
+
<feMergeNode in="blur300"/>
|
|
92
|
+
<feMergeNode in="blur300"/>
|
|
93
|
+
<feMergeNode in="blur100"/>
|
|
94
|
+
<feMergeNode in="blue-blur"/>
|
|
95
|
+
<feMergeNode in="blur5"/>
|
|
96
|
+
<feMergeNode in="SourceGraphic"/>
|
|
97
|
+
</feMerge>
|
|
98
|
+
</filter>
|
|
99
|
+
</defs>
|
|
23
100
|
<g id="background">
|
|
24
|
-
<rect
|
|
25
|
-
<path class="st1" d="M2316,5867.8h1066c0,0,142,7,142,
|
|
101
|
+
<rect class="st0" width="10000" height="10001.4"/>
|
|
102
|
+
<path class="st1" d="M2316,5867.8h1066c0,0,142,7,142,173s0,1396.2,0,1396.2s3,153-183,153s-1005,0-1005,0s-166-15-166-166
|
|
26
103
|
s0-1401.2,0-1401.2S2182,5867.8,2316,5867.8z"/>
|
|
27
104
|
<path class="st1" d="M1779,8469.2c0,0,165,23,165,209s0,880.1,0,880.1s6,180-180,180s-1764,0-1764,0V8469.2H1779z"/>
|
|
28
105
|
<path class="st1" d="M7147,7060h41v373.1h103v-160h118v-65h193v63h30v162h100v-171h138v171h173v-187h-26v-44h133v45h-20v186h144
|
|
29
106
|
v-199c0,0-4-42,44-42s42,42,42,42v199h15v-197c0,0,5-35,42-35s41,33,41,33v199h145v-131h307v131h1090v54.2H7188v420.9h138
|
|
30
|
-
c0,0-19-21-19-65s0-170,0-170s9-41,48-55v-69h39v68c0,0,48,17,49,60c0,43,0,170,0,170s2,42-20,65h85c0,0-16-17-17-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
<path class="st2" d="M2791,6221.9c0,0-165-9-228-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
s273-40,301-64s18-51-3-58s-92,22-167,35s-225,20-225,20v-88c0,0,64-3,148-12c84-9,245-48,258-67s2-45-13-47c-15-2-21,5-151,29
|
|
107
|
+
c0,0-19-21-19-65s0-170,0-170s9-41,48-55v-69h39v68c0,0,48,17,49,60c0,43,0,170,0,170s2,42-20,65h85c0,0-16-17-17-47s0-170,0-170
|
|
108
|
+
s-2-36,42-51v-66h39v65c0,0,38,13,38,53s0,171,0,171s-1,35-21,46h118v-188h-17v-39h128v40h-18v187h435c0,0-22-31-22-68s0-174,0-174
|
|
109
|
+
s12-41,52-55v-69h39v67c0,0,49,17,49,51s0,181,0,181s-3,48-23,65h133v-240c0,0,10.8-27,32-27c1,0,12-28,12-28l10,27
|
|
110
|
+
c0,0,32,12,32,36s0,234,0,234h112v-187h-21v-40h130v40h-19v184h194c0,0-16-19-16-43s0-132,0-132s8-39,35-47s49,33,49,52
|
|
111
|
+
s0,130,0,130s-5,32-15,39h995v1785.5H7147V7060z"/>
|
|
112
|
+
<path class="st2" d="M2791,6221.9c0,0-165-9-228-28s-96-56-115-56s-41,6-42,31s22,45,118,83s267,43,267,43l1,91c0,0-94-1-207-27
|
|
113
|
+
s-100-53-126-57s-45,1-52,27s17,46,114,86s271,44,271,44v68c0,0-18,2-153-16s-149-66-178-69s-47,5-50,33s24,46,133,85
|
|
114
|
+
s248,40,248,40v77c0,0-65,6-162-14s-143-54-166-63s-46-10-55,21s29,53,126,93s258,40,258,40v86h-205c0,0-138-4-138,156
|
|
115
|
+
s165,140,165,140s64,125,236,125s231-122,232-122c104.1,0,167-35,167-153s-128-145-128-145h-237c0,0-1-86,0-86c138,0,381-56,401-72
|
|
116
|
+
s16-45-6-55s-72,19-183,34s-214,16-214,16v-80c0,0,103-1,173-8s227-46,240-65s6-40-15-49s-86,19-179,34s-219,19-219,19v-72
|
|
117
|
+
c0,0,6,2,96-2s273-40,301-64s18-51-3-58s-92,22-167,35s-225,20-225,20v-88c0,0,64-3,148-12s245-48,258-67s2-45-13-47s-21,5-151,29
|
|
42
118
|
s-238,14-238,14v-183h508v1387.2h-190v-196c0,0-2-45-43-45s-50,45-50,45v196h-504v-201c0,0-4-40-44-40s-43,43-43,43v198h-209
|
|
43
119
|
V6033.9h475L2791,6221.9z M2601,7089c73,0,84-188,0-188C2511,6901,2516,7089,2601,7089z M3101,6901c84,0,73,188,0,188
|
|
44
120
|
C3016,7089,3011,6901,3101,6901z"/>
|
|
@@ -62,54 +138,67 @@
|
|
|
62
138
|
<path class="st4" d="M7122,8915.3c0-134,49-170,210-170s2668,0,2668,0v302H7332C7332,9047.3,7122,9070.3,7122,8915.3z"/>
|
|
63
139
|
<rect x="7795.4" y="9048.5" class="st5" width="209.2" height="952.9"/>
|
|
64
140
|
</g>
|
|
141
|
+
<g id="neon">
|
|
142
|
+
<path id="pillow-broken" class="st7" d="M3769.2,2685.1h542.9c0,0,134.2,19.1,134.2,172.8s-155.8,159-155.8,159h-521.3
|
|
143
|
+
c0,0-132.1-16.9-132.1-165.9C3637,2702,3769.2,2685.1,3769.2,2685.1z"/>
|
|
144
|
+
<path id="medical_cross" class="st6 red-glow" d="M4476.3,1873.2c0,0,38.9,9.6,38.3-29.3s0-249.3,0-249.3s-8.5-62.8,62.8-62.8
|
|
145
|
+
c71.4,0,215.2,0,215.2,0s40.5-2.1,40.5,63.9c0,66,0,236.5,0,236.5s-4.3,43.1,43.1,43.1s258.3,0,258.3,0s39.1-7.5,39.1,39.1
|
|
146
|
+
c0,46.6,0,241.5,0,241.5s6.4,36.1-36.1,36.1c-42.5,0-273.6,0-273.6,0s-31-1.1-31,31c0,32,0,256.8,0,256.8s5.3,45.8-45.8,45.8
|
|
147
|
+
c-51.1,0-230.1,0-230.1,0s-43.7,9.6-43.7-43.7c0-53.2,0-252.4,0-252.4s-3.2-38.9-38.9-38.9c-35.7,0-255.1,0-255.1,0
|
|
148
|
+
s-42.9,5.3-42.9-42.9c0-48.2,0-235.7,0-235.7s-7.1-36.2,36.1-36.2S4476.3,1873.2,4476.3,1873.2z"/>
|
|
149
|
+
<path id="pillow" class="st7 blue-glow" d="M3769.2,2685.1h542.9c0,0,134.2,19.1,134.2,172.8s-155.8,159-155.8,159h-521.3
|
|
150
|
+
c0,0-132.1-16.9-132.1-165.9C3637,2702,3769.2,2685.1,3769.2,2685.1z"/>
|
|
151
|
+
<path id="bed" class="st8 blue-glow" d="M3284.9,2471.6c0,0,21.6-86.1,103.9-86.1c82.3,0,103.9,68.1,103.9,102.1s0,682.7,0,682.7h2217.4
|
|
152
|
+
v-136.1c0,0,7.8-84.1,96.1-84.1s109.8,46,111.8,88.1c2,42,0,858.9,0,858.9h-209.8v-510.5H3492.7V3887h-207.8V2471.6z"/>
|
|
153
|
+
</g>
|
|
65
154
|
<g id="spotlights">
|
|
66
|
-
<path class="
|
|
67
|
-
S10000,1020,10000,1020v354.8L7714,3002.4l456,1156.2c0,0,81,124-33,
|
|
68
|
-
|
|
69
|
-
<path class="
|
|
155
|
+
<path class="st9" d="M6310,4985.7l158-376.1c0,0,65-147,469-122s681,187,681,187l359-412.1l-533-1293.2c0,0-18-78,88-142
|
|
156
|
+
S10000,1020,10000,1020v354.8L7714,3002.4l456,1156.2c0,0,81,124-33,246s-307,369.1-307,369.1s500,259,477,554.1l-132,363.1
|
|
157
|
+
L6310,4985.7z"/>
|
|
158
|
+
<path class="st9" d="M2736,4824.7l-225-323c0,0-200.3-309.1-1036,239l-357-416.1l1196-1464.2c0,0,42-90-91-236S0,456.1,0,456.1
|
|
70
159
|
v382.1l2064,1971.3L938,4230.6c0,0-83,60-17,194s363,437.1,363,437.1s-498,497.1-443,791.1l203,321L2736,4824.7z"/>
|
|
71
|
-
<path class="
|
|
160
|
+
<path class="st10" d="M6302,5000.7c0,0,161-341,1083-7s783,741.1,783,741.1s-170.4,391.6-1121,6
|
|
72
161
|
C6152,5377.8,6302,5000.7,6302,5000.7z"/>
|
|
73
|
-
<path class="
|
|
74
|
-
<path id="turn-off-light" class="
|
|
75
|
-
/>
|
|
76
|
-
<path id="turn-on-light_1_" class="
|
|
77
|
-
|
|
78
|
-
<path class="
|
|
79
|
-
<path class="
|
|
80
|
-
<path class="
|
|
81
|
-
<path class="
|
|
82
|
-
<path class="
|
|
83
|
-
<path class="
|
|
84
|
-
<path class="
|
|
85
|
-
<path class="
|
|
162
|
+
<path class="st10" d="M2768,4856.7c-331.4-476.4-1991,690.1-1684,1177.2C1394.6,6526.6,3054,5267.7,2768,4856.7z"/>
|
|
163
|
+
<path id="turn-off-light" class="st11" d="M6411,5062.7c316.3-354.5,1776.6,344.6,1603,660.1C7791,6127.9,6129,5378.8,6411,5062.7z
|
|
164
|
+
"/>
|
|
165
|
+
<path id="turn-on-light_1_" class="st12" d="M6411,5062.7c316.3-354.5,1776.6,344.6,1603,660.1
|
|
166
|
+
C7791,6127.9,6129,5378.8,6411,5062.7z"/>
|
|
167
|
+
<path class="st12" d="M1523,5402.8c-111-131,373-476.1,482-354.1C2114,5170.7,1618.1,5515.1,1523,5402.8z"/>
|
|
168
|
+
<path class="st12" d="M2055,5179.7c-111-131,373-476.1,482-354.1C2646,4947.7,2150.1,5292.1,2055,5179.7z"/>
|
|
169
|
+
<path class="st12" d="M2219,5388.8c-111-131,373-476.1,482-354.1C2810,5156.7,2314.1,5501.1,2219,5388.8z"/>
|
|
170
|
+
<path class="st12" d="M1678,5615.8c-111-131,373-476.1,482-354.1C2269,5383.8,1773.1,5728.1,1678,5615.8z"/>
|
|
171
|
+
<path class="st12" d="M1828,5842.8c-111-131,373-476.1,482-354.1C2419,5610.8,1923.1,5955.1,1828,5842.8z"/>
|
|
172
|
+
<path class="st12" d="M1296,6056.9c-111-131,373-476.1,482-354.1S1391.1,6169.2,1296,6056.9z"/>
|
|
173
|
+
<path class="st12" d="M1132,5862.8c-111-131,373-476.1,482-354.1C1723,5630.8,1227.1,5975.1,1132,5862.8z"/>
|
|
174
|
+
<path class="st13" d="M2624,4663.7c0,0-98-87-351-40S1254.9,4993,1002,5593.8c-72,171-26.8,271.2-26.8,271.2l-45.2-70.2
|
|
86
175
|
c0,0-24.3-140.2,97-371.1c175-333,642.5-721.2,1202-840.1c273-58,352,18.5,352,18.5L2624,4663.7z"/>
|
|
87
|
-
<path class="
|
|
176
|
+
<path class="st13" d="M6379,4821.7c0,0,35-95,302-121s1117,136.3,1476,599.1c90,116,82.7,213,82.7,213l24.9-68.4
|
|
88
177
|
c0,0-24.6-167.6-178.6-296.6c-154-129-663.8-482.9-1324-485.1c-305-1-354.7,91.5-354.7,91.5L6379,4821.7z"/>
|
|
89
|
-
<ellipse class="
|
|
90
|
-
<ellipse class="
|
|
91
|
-
<ellipse class="
|
|
92
|
-
<ellipse class="
|
|
93
|
-
<path class="
|
|
178
|
+
<ellipse class="st14" cx="8086" cy="4229.6" rx="43" ry="42"/>
|
|
179
|
+
<ellipse class="st14" cx="7551" cy="2950.4" rx="43" ry="42"/>
|
|
180
|
+
<ellipse class="st14" cx="1003" cy="4313.6" rx="43" ry="42"/>
|
|
181
|
+
<ellipse class="st14" cx="2203" cy="2787.4" rx="43" ry="42"/>
|
|
182
|
+
<path class="st10" d="M7064,5377.8c29.3-65.3,327,61,294,124S7029,5455.8,7064,5377.8z"/>
|
|
94
183
|
</g>
|
|
95
184
|
<g id="light">
|
|
96
185
|
|
|
97
|
-
<linearGradient id="broken-light_1_" gradientUnits="userSpaceOnUse" x1="7173.
|
|
186
|
+
<linearGradient id="broken-light_1_" gradientUnits="userSpaceOnUse" x1="7173.7241" y1="9816.4902" x2="8583.0283" y2="7038.4331" gradientTransform="matrix(0.8192 0 0 0.8192 0.1808 1.8195)">
|
|
98
187
|
<stop offset="0" style="stop-color:#F6F6F6;stop-opacity:0"/>
|
|
99
188
|
<stop offset="1" style="stop-color:#F6F6F6;stop-opacity:0.2"/>
|
|
100
189
|
</linearGradient>
|
|
101
|
-
<polygon id="broken-light" class="
|
|
190
|
+
<polygon id="broken-light" class="st15" points="6411,5062.7 8025.9,5690.8 7321.8,9738.4 3582,8024.1 "/>
|
|
102
191
|
|
|
103
|
-
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="
|
|
192
|
+
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="944.9968" y1="10214.793" x2="2531.5518" y2="7515.8838" gradientTransform="matrix(0.4502 -0.6844 0.6844 0.4502 -3665.0898 4301.6689)">
|
|
104
193
|
<stop offset="0" style="stop-color:#F6F6F6;stop-opacity:0"/>
|
|
105
194
|
<stop offset="1" style="stop-color:#F6F6F6;stop-opacity:0.2"/>
|
|
106
195
|
</linearGradient>
|
|
107
|
-
<polygon class="
|
|
196
|
+
<polygon class="st16" points="1115.3,5835 2527.5,4831 6122.4,7781.1 2008.2,10001.4 "/>
|
|
108
197
|
</g>
|
|
109
198
|
<g id="doctor">
|
|
110
199
|
<g id="head">
|
|
111
|
-
<path class="
|
|
112
|
-
|
|
200
|
+
<path class="st17" d="M4295,5838c249.9-4.4,281,139.9,285.7,409.7c4.8,269.7,6.7,523,6.7,523s139-16.8,149.9,97.2
|
|
201
|
+
s-124.6,128.3-150.5,107.6l6.6,291.7c0,0,21.4,345.7-254.2,344.9c-275.5-0.8-285.4-236.7-282.7-332.8
|
|
113
202
|
c2.6-96.1-11.4-1119.2-11.4-1119.2S4021.2,5842.8,4295,5838z"/>
|
|
114
203
|
<g id="eyes">
|
|
115
204
|
<ellipse cx="4122.8" cy="6607.7" rx="53.5" ry="53.5"/>
|
|
@@ -117,17 +206,17 @@
|
|
|
117
206
|
</g>
|
|
118
207
|
<path class="st4" d="M4044.7,6213.8c0,0-48.2-367.9,239.6-378.4c321.8-11.7,294.5,262.6,296.4,442.1c0,0-128-91.7-291.6-100.3
|
|
119
208
|
C4125.6,6168.5,4044.7,6213.8,4044.7,6213.8z"/>
|
|
120
|
-
<path class="
|
|
209
|
+
<path class="st12" d="M4045.4,6240.7l-1.9-30.3c0,0,116.9-66.4,265.7-43.8c148.9,22.6,245.3,72.3,273.2,100l1.3,37.3
|
|
121
210
|
c0,0-105.7-90.4-279.3-104.5S4045.4,6240.7,4045.4,6240.7z"/>
|
|
122
|
-
<path class="
|
|
123
|
-
c0,0,19.8,263,290.4,262.6c270.7-0.4,268.1-334.4,260.1-390.9c0,0-72.5-27.8-81.2-115.
|
|
211
|
+
<path class="st18" d="M4589.7,6708.8c0,0-64.3,125.4-296.7,120.7c-232.4-4.7-242.8-34-242.8-34l-1.2,558.4
|
|
212
|
+
c0,0,19.8,263,290.4,262.6c270.7-0.4,268.1-334.4,260.1-390.9c0,0-72.5-27.8-81.2-115.3s-16.3-232.5,0.3-277.7
|
|
124
213
|
c9-24.6,61.9-56,72.1-85.5L4589.7,6708.8z"/>
|
|
125
214
|
</g>
|
|
126
215
|
<g id="body">
|
|
127
|
-
<path class="
|
|
216
|
+
<path class="st17" d="M3909,7804.1c0,0,63-82,400-88s437,64,437,64s-160,199-437,214S3909,7804.1,3909,7804.1z"/>
|
|
128
217
|
<path class="st4" d="M3872,7804.1c0,0-788,297-840,1102.2c-52,805.1,266.1,1095.2,266.1,1095.2h2023.6
|
|
129
218
|
c0,0,409.3-369.1,327.3-989.1s-153-969.1-937-1231.2c0,0-111,226-403,224C4017,8003.1,3872,7804.1,3872,7804.1z"/>
|
|
130
|
-
<path class="
|
|
219
|
+
<path class="st12" d="M3845,7812.1l88-34c0,0,139,175,371,164s341-161,366-196l88,31c0,0-105,263.5-466,272
|
|
131
220
|
C3954,8057.1,3845,7812.1,3845,7812.1z"/>
|
|
132
221
|
</g>
|
|
133
222
|
<path id="hand_x5F_1_1_" class="st4" d="M3582,8024.1c0,0-676,189.5-896,1055.2c-122,480.1,23.2,922.1,23.2,922.1l52.8,128l782,12
|