emojidex-converter 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +2 -3
- data/emojidex-converter.gemspec +2 -2
- data/lib/emojidex/converter.rb +88 -18
- data/spec/converter_spec.rb +0 -1
- data/spec/support/collection/emoji.json +42 -0
- data/spec/support/collection/family.svg +1028 -0
- data/spec/support/collection/family/0/man(bk).svg +246 -0
- data/spec/support/collection/family/0/man(br).svg +246 -0
- data/spec/support/collection/family/0/man(p).svg +246 -0
- data/spec/support/collection/family/0/man(wh).svg +246 -0
- data/spec/support/collection/family/0/man(ye).svg +246 -0
- data/spec/support/collection/family/0/man.svg +246 -0
- data/spec/support/collection/family/0/woman(bk).svg +237 -0
- data/spec/support/collection/family/0/woman(br).svg +237 -0
- data/spec/support/collection/family/0/woman(p).svg +237 -0
- data/spec/support/collection/family/0/woman(wh).svg +237 -0
- data/spec/support/collection/family/0/woman(ye).svg +237 -0
- data/spec/support/collection/family/0/woman.svg +237 -0
- data/spec/support/collection/family/1/man(bk).svg +169 -0
- data/spec/support/collection/family/1/man(br).svg +169 -0
- data/spec/support/collection/family/1/man(p).svg +169 -0
- data/spec/support/collection/family/1/man(wh).svg +169 -0
- data/spec/support/collection/family/1/man(ye).svg +169 -0
- data/spec/support/collection/family/1/man.svg +169 -0
- data/spec/support/collection/family/1/woman(bk).svg +239 -0
- data/spec/support/collection/family/1/woman(br).svg +239 -0
- data/spec/support/collection/family/1/woman(p).svg +239 -0
- data/spec/support/collection/family/1/woman(wh).svg +239 -0
- data/spec/support/collection/family/1/woman(ye).svg +239 -0
- data/spec/support/collection/family/1/woman.svg +239 -0
- data/spec/support/collection/family/2/boy(bk).svg +198 -0
- data/spec/support/collection/family/2/boy(br).svg +198 -0
- data/spec/support/collection/family/2/boy(p).svg +198 -0
- data/spec/support/collection/family/2/boy(wh).svg +198 -0
- data/spec/support/collection/family/2/boy(ye).svg +198 -0
- data/spec/support/collection/family/2/boy.svg +198 -0
- data/spec/support/collection/family/2/girl(bk).svg +191 -0
- data/spec/support/collection/family/2/girl(br).svg +191 -0
- data/spec/support/collection/family/2/girl(p).svg +191 -0
- data/spec/support/collection/family/2/girl(wh).svg +191 -0
- data/spec/support/collection/family/2/girl(ye).svg +191 -0
- data/spec/support/collection/family/2/girl.svg +191 -0
- data/spec/support/collection/family/3/boy(bk).svg +176 -0
- data/spec/support/collection/family/3/boy(br).svg +176 -0
- data/spec/support/collection/family/3/boy(p).svg +176 -0
- data/spec/support/collection/family/3/boy(wh).svg +176 -0
- data/spec/support/collection/family/3/boy(ye).svg +176 -0
- data/spec/support/collection/family/3/boy.svg +176 -0
- data/spec/support/collection/family/3/girl(bk).svg +187 -0
- data/spec/support/collection/family/3/girl(br).svg +187 -0
- data/spec/support/collection/family/3/girl(p).svg +187 -0
- data/spec/support/collection/family/3/girl(wh).svg +187 -0
- data/spec/support/collection/family/3/girl(ye).svg +187 -0
- data/spec/support/collection/family/3/girl.svg +187 -0
- data/spec/support/collection/family/4/baby(bk).svg +184 -0
- data/spec/support/collection/family/4/baby(br).svg +184 -0
- data/spec/support/collection/family/4/baby(p).svg +184 -0
- data/spec/support/collection/family/4/baby(wh).svg +184 -0
- data/spec/support/collection/family/4/baby(ye).svg +184 -0
- data/spec/support/collection/family/4/baby.svg +184 -0
- data/spec/support/collection/woman.svg +83 -0
- metadata +61 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c98a7c8a7e7783e6500b1226ee352c4852f7a764
|
4
|
+
data.tar.gz: b2c4c3ea47650bee24d6e307daeab487e09a8a48
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 312889835fc0e0704b121ab1bb3839c547e691bee1a1f2c0a6974140bdf519068f47f3851e7f971a7bc3d7335e02dc6ec3e704c672060fb71ad7dd66d04c0a23
|
7
|
+
data.tar.gz: 4b58d74fd76773f49de6c20c893f90150c64dff21a65934a84b1460533ac7fc77970e8727089deaf12ee00704ad4c46d67a99e16f13ec4f7c8d4ef97846b55e6
|
data/Gemfile
CHANGED
@@ -2,9 +2,6 @@ source 'http://rubygems.org'
|
|
2
2
|
|
3
3
|
gemspec
|
4
4
|
|
5
|
-
#gem 'emojidex', '~> 0.2.0'
|
6
|
-
gem 'emojidex', path: '../emojidex'
|
7
|
-
|
8
5
|
group :development do
|
9
6
|
gem 'rb-inotify', require: false
|
10
7
|
gem 'rb-fsevent', require: false
|
@@ -13,6 +10,8 @@ group :development do
|
|
13
10
|
gem 'rubocop'
|
14
11
|
gem 'guard-rubocop'
|
15
12
|
|
13
|
+
gem 'emojidex', '~> 0.4.0' # path: '../emojidex'
|
14
|
+
# gem 'emojidex-vectors', path: '../emojidex-vectors', require: false
|
16
15
|
gem 'emojidex-vectors', require: false
|
17
16
|
end
|
18
17
|
|
data/emojidex-converter.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'emojidex-converter'
|
3
|
-
s.version = '0.3.
|
3
|
+
s.version = '0.3.1'
|
4
4
|
s.license = 'emojiOL'
|
5
5
|
s.summary = 'Image conversion modules for emojidex'
|
6
6
|
s.description = 'Adds the convert method to Emojidex::Collection and Emojidex::Emoji, which\
|
@@ -17,6 +17,6 @@ Gem::Specification.new do |s|
|
|
17
17
|
s.add_dependency 'rapngasm'
|
18
18
|
s.add_dependency 'nokogiri'
|
19
19
|
s.add_dependency 'cairo'
|
20
|
-
s.add_dependency 'emojidex', '~> 0.
|
20
|
+
s.add_dependency 'emojidex', '~> 0.4'
|
21
21
|
s.add_dependency 'phantom_svg'
|
22
22
|
end
|
data/lib/emojidex/converter.rb
CHANGED
@@ -2,6 +2,9 @@ require 'emojidex'
|
|
2
2
|
require 'phantom_svg'
|
3
3
|
require_relative 'preprocessor'
|
4
4
|
|
5
|
+
# WARNING: The following code works, but it's basically just thrown together cowboy code.
|
6
|
+
# This code may be cleaned in the future... maybe...
|
7
|
+
|
5
8
|
module Emojidex
|
6
9
|
# Converter utility for emojidex
|
7
10
|
class Converter
|
@@ -11,38 +14,104 @@ module Emojidex
|
|
11
14
|
@sizes = override[:sizes] || Emojidex::Defaults.sizes
|
12
15
|
@destination = File.expand_path(override[:destination] || ENV['EMOJI_CACHE'] || './')
|
13
16
|
@noisy = override[:noisy] || false
|
17
|
+
@max_threads = override[:max_threads] || @sizes.length
|
18
|
+
puts "Converting to #{@sizes.length} sizes with #{@max_threads}, outputting to #{@destination}." if @noisy
|
14
19
|
end
|
15
20
|
|
16
21
|
def rasterize(emoji, source_dir)
|
17
22
|
_create_output_paths
|
18
23
|
|
19
24
|
start_time = Time.now
|
25
|
+
@queue = []
|
26
|
+
@processed_count = 0
|
27
|
+
@emoji_in_processing = []
|
28
|
+
@source_dir = source_dir
|
29
|
+
info_print = Thread.new do
|
30
|
+
if @noisy
|
31
|
+
puts "Processing..."
|
32
|
+
full_total = emoji.length * @sizes.length
|
33
|
+
while @processed_count < full_total
|
34
|
+
print "\r[#{@processed_count} / #{full_total}](" +
|
35
|
+
"#{((@processed_count.to_f / (full_total).to_f) * 100.0).to_i}%)" +
|
36
|
+
" ⚙ \"#{@emoji_in_processing.first}\"... TC:{#{@emoji_in_processing.length}}" +
|
37
|
+
"⌚ #{(Time.now - start_time).to_i}s\033[K"
|
38
|
+
sleep 3
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
20
42
|
emoji.each do |moji|
|
21
|
-
puts "Source: #{source_dir}/#{moji.code}.svg" if @noisy
|
22
|
-
render_threads = []
|
23
43
|
@sizes.each do |key, val|
|
24
|
-
|
25
|
-
out_dir = "#{@destination}/#{key}"
|
26
|
-
phantom_svg = Phantom::SVG::Base.new("#{source_dir}/#{moji.code}.svg")
|
27
|
-
# Set size.
|
28
|
-
phantom_svg.width = phantom_svg.height = val.to_i
|
29
|
-
# Render PNGs
|
30
|
-
puts "Converting: #{out_dir}/#{moji.code}.png" if @noisy
|
31
|
-
phantom_svg.save_apng("#{out_dir}/#{moji.code}.png")
|
32
|
-
phantom_svg.reset
|
33
|
-
phantom_svg = nil
|
34
|
-
moji.paths[:png][key] = "#{out_dir}/#{moji.code}.png"
|
35
|
-
end
|
44
|
+
@queue << {moji: moji, size_code: key, size: val}
|
36
45
|
end
|
37
|
-
render_threads.each { |th| th.join }
|
38
|
-
GC.start
|
39
46
|
end
|
40
47
|
|
48
|
+
process_queue
|
49
|
+
|
50
|
+
info_print.join
|
41
51
|
run_time = Time.now - start_time
|
42
52
|
puts "Total Converstion Time: #{run_time}" if @noisy
|
43
53
|
@last_run_time = run_time
|
44
54
|
end
|
45
55
|
|
56
|
+
def process_queue
|
57
|
+
processing_threads = []
|
58
|
+
queue_lock = Mutex.new
|
59
|
+
@max_threads.times do
|
60
|
+
processing_threads << Thread.new do
|
61
|
+
while (@queue.length > 0)
|
62
|
+
item = nil
|
63
|
+
queue_lock.synchronize do
|
64
|
+
item = @queue.pop if @queue.length > 0
|
65
|
+
end
|
66
|
+
process_item(item) if item != nil
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
processing_threads.each { |th| th.join }
|
72
|
+
GC.start
|
73
|
+
end
|
74
|
+
|
75
|
+
def process_components(moji, size_code, size, out_dir)
|
76
|
+
moji.combinations.each do |combo|
|
77
|
+
for i in 0..(combo.components.length - 1)
|
78
|
+
combo.components[i].each do |component|
|
79
|
+
Dir.mkdir("#{out_dir}/#{combo.base}") unless Dir.exist? "#{out_dir}/#{combo.base}"
|
80
|
+
Dir.mkdir("#{out_dir}/#{combo.base}/#{i}") unless Dir.exist? "#{out_dir}/#{combo.base}/#{i}"
|
81
|
+
|
82
|
+
next if File.exist? "#{out_dir}/#{combo.base}/#{i}/#{component}.png"
|
83
|
+
|
84
|
+
phantom_svg = Phantom::SVG::Base.new("#{@source_dir}/#{combo.base}/#{i}/#{component}.svg")
|
85
|
+
phantom_svg.width = phantom_svg.height = size.to_i
|
86
|
+
phantom_svg.save_apng("#{out_dir}/#{combo.base}/#{i}/#{component}.png")
|
87
|
+
phantom_svg.reset
|
88
|
+
phantom_svg = nil
|
89
|
+
end
|
90
|
+
end
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
def process_item(item)
|
95
|
+
moji = item[:moji]
|
96
|
+
size_code = item[:size_code]
|
97
|
+
size = item[:size]
|
98
|
+
processing_id = "#{moji.code}@#{size_code}"
|
99
|
+
@emoji_in_processing << processing_id
|
100
|
+
out_dir = "#{@destination}/#{size_code}"
|
101
|
+
phantom_svg = Phantom::SVG::Base.new("#{@source_dir}/#{moji.code}.svg")
|
102
|
+
# Set size.
|
103
|
+
phantom_svg.width = phantom_svg.height = size.to_i
|
104
|
+
# Render PNGs
|
105
|
+
#puts "Converting: #{out_dir}/#{moji.code}.png" if @noisy
|
106
|
+
phantom_svg.save_apng("#{out_dir}/#{moji.code}.png")
|
107
|
+
phantom_svg.reset
|
108
|
+
phantom_svg = nil
|
109
|
+
moji.paths[:png][size_code] = "#{out_dir}/#{moji.code}.png"
|
110
|
+
process_components(moji, size_code, size, out_dir)
|
111
|
+
@emoji_in_processing.delete(processing_id)
|
112
|
+
@processed_count += 1
|
113
|
+
end
|
114
|
+
|
46
115
|
def rasterize_collection(collection)
|
47
116
|
rasterize(collection.emoji.values, collection.source_path)
|
48
117
|
collection.generate_checksums
|
@@ -70,13 +139,14 @@ module Emojidex
|
|
70
139
|
private
|
71
140
|
|
72
141
|
def _create_output_paths
|
142
|
+
print "⚙ Clearing output paths[" if @noisy
|
73
143
|
@sizes.each do |key, _val|
|
74
144
|
out_dir = "#{@destination}/#{key}"
|
75
|
-
|
145
|
+
print "*" if @noisy
|
76
146
|
FileUtils.rm_rf(out_dir)
|
77
|
-
puts "*Creating #{@destination}/#{key}" if @noisy
|
78
147
|
FileUtils.mkdir_p(out_dir)
|
79
148
|
end
|
149
|
+
print "] Done.\n" if @noisy
|
80
150
|
end
|
81
151
|
end
|
82
152
|
end
|
data/spec/converter_spec.rb
CHANGED
@@ -64,7 +64,6 @@ describe Emojidex::Converter do
|
|
64
64
|
expect(File.exist?("#{@destination}/emoji.json")).to be_truthy
|
65
65
|
|
66
66
|
processed_collection.generate_checksums
|
67
|
-
puts "CHECKSUM IS #{collection.emoji.values.first.checksums[:png][:ldpi]}"
|
68
67
|
expect(processed_collection.emoji.values.first.checksums[:png][:ldpi]).to be_truthy
|
69
68
|
end
|
70
69
|
end
|
@@ -26,5 +26,47 @@
|
|
26
26
|
"code_ja": "車",
|
27
27
|
"category": "transportation",
|
28
28
|
"unicode": "1f697"
|
29
|
+
},
|
30
|
+
{
|
31
|
+
"moji": "👪",
|
32
|
+
"code": "family",
|
33
|
+
"code_ja": "家族",
|
34
|
+
"category": "people",
|
35
|
+
"unicode": "1f46a"
|
36
|
+
},
|
37
|
+
{
|
38
|
+
"moji": "👩",
|
39
|
+
"code": "woman",
|
40
|
+
"code_ja": "女の人",
|
41
|
+
"category": "people",
|
42
|
+
"unicode": "1f469",
|
43
|
+
"combinations": [
|
44
|
+
{
|
45
|
+
"base": "family",
|
46
|
+
"component_layer_order": [0, 1, 2, 3, 4],
|
47
|
+
"components": [
|
48
|
+
[
|
49
|
+
"woman", "woman(bk)", "woman(br)", "woman(p)", "woman(wh)", "woman(ye)",
|
50
|
+
"man", "man(p)", "man(ye)", "man(bk)", "man(br)", "man(wh)",
|
51
|
+
""
|
52
|
+
],
|
53
|
+
[
|
54
|
+
|
55
|
+
"boy", "boy(p)", "boy(ye)", "boy(bk)", "boy(br)", "boy(wh)",
|
56
|
+
"girl", "girl(p)", "girl(ye)", "girl(bk)", "girl(br)", "girl(wh)",
|
57
|
+
""
|
58
|
+
],
|
59
|
+
[
|
60
|
+
"girl", "girl(p)", "girl(ye)", "girl(bk)", "girl(br)", "girl(wh)",
|
61
|
+
"boy", "boy(p)", "boy(ye)", "boy(bk)", "boy(br)", "boy(wh)",
|
62
|
+
""
|
63
|
+
],
|
64
|
+
[
|
65
|
+
"baby", "baby(p)", "baby(ye)", "baby(bk)", "baby(br)", "baby(wh)",
|
66
|
+
""
|
67
|
+
]
|
68
|
+
]
|
69
|
+
}
|
70
|
+
]
|
29
71
|
}
|
30
72
|
]
|
@@ -0,0 +1,1028 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!-- Generated by phantom_svg. -->
|
3
|
+
<svg width="64px" height="64px" viewBox="0 0 64 64" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
|
4
|
+
<g>
|
5
|
+
<g>
|
6
|
+
<linearGradient id='SVGID_1_' gradientUnits='userSpaceOnUse' x1='16' y1='33.0236282' x2='16' y2='64'>
|
7
|
+
<stop offset='0' style='stop-color:#3E3A39'/>
|
8
|
+
<stop offset='1' style='stop-color:#231815'/>
|
9
|
+
</linearGradient>
|
10
|
+
<path style='fill:url(#SVGID_1_);' d='M22,33.0236282c0,0,10,0,10,12S32,64,32,64H0c0,0,0-6.9763718,0-18.9763718s10-12,10-12H22z
|
11
|
+
'/>
|
12
|
+
<path style='fill:#231815;' d='M32.25,64.25h-32.5V45.0234375c0-12.1098633,10.1474609-12.25,10.25-12.25h12
|
13
|
+
c0.1025391,0,10.25,0.1401367,10.25,12.25V64.25z M0.25,63.75h31.5V45.0234375c0-11.6015625-9.3520508-11.7490234-9.75-11.75H10
|
14
|
+
c-0.3979492,0.0009766-9.75,0.1484375-9.75,11.75V63.75z'/>
|
15
|
+
</g>
|
16
|
+
<g>
|
17
|
+
<g>
|
18
|
+
<path style='fill:#FFB743;' d='M20.9242554,25.0236301H16h-4.9241943c0,0-0.2424927,6.75-1.0758057,7.9999981
|
19
|
+
c0,0,2.125,1.916626,6,1.916626s6-1.916626,6-1.916626C21.166687,31.7736301,20.9242554,25.0236301,20.9242554,25.0236301z'/>
|
20
|
+
<path style='fill:#231815;' d='M16,35.1904297c-3.9257813,0-6.0776367-1.9003906-6.1674805-1.9814453l-0.1601563-0.1445313
|
21
|
+
l0.1196289-0.1796875c0.6513672-0.9770508,0.9672852-6.0126953,1.0336914-7.8701172l0.0087891-0.2412109h10.3310547
|
22
|
+
l0.0087891,0.2412109c0.0664063,1.8574219,0.3823242,6.8930664,1.0336914,7.8701172l0.1196289,0.1796875l-0.1601563,0.1445313
|
23
|
+
C22.0776367,33.2900391,19.9257813,35.1904297,16,35.1904297z M10.3198242,32.9599609
|
24
|
+
C10.8637695,33.3730469,12.8452148,34.6904297,16,34.6904297c3.1650391,0,5.1386719-1.3164063,5.6806641-1.7299805
|
25
|
+
c-0.699707-1.4912109-0.9443359-6.409668-0.9970703-7.6870117h-9.3671875
|
26
|
+
C11.2636719,26.5507813,11.019043,31.4682617,10.3198242,32.9599609z'/>
|
27
|
+
</g>
|
28
|
+
<g>
|
29
|
+
<path style='fill:#FFB743;' d='M26,15.9379845c0,0,2-1.6124029,2,3.2248058S22,24,22,24L26,15.9379845z'/>
|
30
|
+
<path style='fill:#231815;' d='M22,24.25h-0.4033203l4.246582-8.5068359
|
31
|
+
c0.0395508-0.0317383,0.4018555-0.3129883,0.8608398-0.3129883c1.0258789,0,1.5458984,1.2558594,1.5458984,3.7324219
|
32
|
+
C28.25,24.1918945,22.0625,24.25,22,24.25z M26.1962891,16.1044922l-3.7841797,7.6274414
|
33
|
+
C23.7382813,23.6357422,27.75,23.0249023,27.75,19.1625977c0-2.0541992-0.3813477-3.2324219-1.0458984-3.2324219
|
34
|
+
C26.4829102,15.9301758,26.2797852,16.0488281,26.1962891,16.1044922z'/>
|
35
|
+
</g>
|
36
|
+
<g>
|
37
|
+
<path style='fill:#FFB743;' d='M6,15.9379845c0,0-2-1.6124029-2,3.2248058S10,24,10,24L6,15.9379845z'/>
|
38
|
+
<path style='fill:#231815;' d='M10.4033203,24.25H10c-0.0625,0-6.25-0.0581055-6.25-5.0874023
|
39
|
+
c0-2.4765625,0.5200195-3.7324219,1.5458984-3.7324219c0.4589844,0,0.8212891,0.28125,0.8608398,0.3129883l0.0673828,0.0834961
|
40
|
+
L10.4033203,24.25z M5.2958984,15.9301758c-0.6645508,0-1.0458984,1.1782227-1.0458984,3.2324219
|
41
|
+
c0,3.8623047,4.0117188,4.4731445,5.3378906,4.5693359l-3.7841797-7.6274414
|
42
|
+
C5.7197266,16.0483398,5.5166016,15.9301758,5.2958984,15.9301758z'/>
|
43
|
+
</g>
|
44
|
+
<g>
|
45
|
+
<path style='fill:#FFB743;' d='M16,4c-5.6623144,0-10.6317587,1.7474365-9.437191,14.666626
|
46
|
+
c0.3604612,3.8980103,1.708014,6.9669189,3.2050395,8.5532227C11.2991447,28.8424683,14.100523,31.5,16,31.5
|
47
|
+
s4.7009125-2.6575317,6.2321529-4.2801514c1.4970818-1.5863037,2.844635-4.6552124,3.2050381-8.5532227
|
48
|
+
C26.6317596,5.7474365,21.6623154,4,16,4z'/>
|
49
|
+
<path style='fill:#231815;' d='M16,31.75c-1.9013672,0-4.5371094-2.3701172-6.4135742-4.3588867
|
50
|
+
c-1.7133789-1.8144531-2.9365234-5.0673828-3.2724609-8.7016602C5.7519531,12.6132813,6.5024414,8.5371094,8.6074219,6.2285156
|
51
|
+
C10.6103516,4.0317383,13.6103516,3.75,16,3.75s5.3896484,0.2817383,7.3925781,2.4785156
|
52
|
+
c2.1049805,2.3085938,2.8554688,6.3847656,2.293457,12.4609375c-0.3359375,3.6342773-1.559082,6.887207-3.2724609,8.7016602
|
53
|
+
C20.5371094,29.3798828,17.9013672,31.75,16,31.75z M16,4.25c-2.4287109,0-5.1625977,0.2749023-7.0229492,2.3154297
|
54
|
+
c-2.0053711,2.1992188-2.7133789,6.1499023-2.1650391,12.078125c0.3212891,3.4736328,1.5234375,6.6943359,3.1376953,8.4047852
|
55
|
+
C12.4697266,29.7182617,14.675293,31.25,16,31.25s3.5302734-1.5317383,6.050293-4.2016602
|
56
|
+
c1.6142578-1.7104492,2.8164063-4.9311523,3.1376953-8.4047852c0.5483398-5.9282227-0.159668-9.8789063-2.1650391-12.078125
|
57
|
+
C21.1625977,4.5249023,18.4287109,4.25,16,4.25z'/>
|
58
|
+
</g>
|
59
|
+
</g>
|
60
|
+
<g>
|
61
|
+
<path style='fill:#231815;' d='M12,25.4375c0,0,2,0.625,4,0.625s4-0.625,4-0.625s0.15625,1.21875-4,1.21875S12,25.4375,12,25.4375
|
62
|
+
z'/>
|
63
|
+
<g>
|
64
|
+
<g>
|
65
|
+
<path style='fill:#F5F5F5;' d='M18.012764,17.6929607c0-0.3434982,0.5725288-1.7650261,2.4651241-1.7650261
|
66
|
+
s2.7487202,1.390625,2.7487202,1.390625s-1.034214,1.3278732-2.7488842,1.3014927
|
67
|
+
C19.7651291,18.6090889,18.012764,18.036459,18.012764,17.6929607z'/>
|
68
|
+
<ellipse style='fill:#231815;' cx='20.3797188' cy='17.147644' rx='1.3197482' ry='1.4186682'/>
|
69
|
+
<ellipse style='fill:#3E3A39;' cx='20.3797188' cy='17.147644' rx='1.0280999' ry='1.1888798'/>
|
70
|
+
<ellipse style='fill:#231815;' cx='20.3797188' cy='17.147644' rx='0.4987249' ry='0.5767183'/>
|
71
|
+
<path style='fill:#231815;' d='M20.4778881,15.6808434c-2.0408974,0.1754913-2.6818066,1.731842-2.7487221,2.0121155
|
72
|
+
c0.2033043-0.2063866,1.2585526-1.558157,2.6505527-1.5404987c1.7561283,0.0222797,2.5414753,1.2253494,2.5414753,1.2253494
|
73
|
+
c-0.0242863,0.0357037-0.5733852,0.7718468-0.5733852,0.7718468s0.7598629-0.4199562,1.3984928-0.984705
|
74
|
+
C23.7463017,17.1649513,22.5187855,15.505352,20.4778881,15.6808434z'/>
|
75
|
+
<ellipse style='fill:#FFFFFF;' cx='19.6230812' cy='16.6355705' rx='0.356352' ry='0.3007674'/>
|
76
|
+
</g>
|
77
|
+
<g>
|
78
|
+
<path style='fill:#F5F5F5;' d='M13.9872351,17.6929607c0-0.3434982-0.5725269-1.7650261-2.4651222-1.7650261
|
79
|
+
s-2.7487211,1.390625-2.7487211,1.390625s1.034215,1.3278732,2.7488842,1.3014927
|
80
|
+
C12.23487,18.6090889,13.9872351,18.036459,13.9872351,17.6929607z'/>
|
81
|
+
<ellipse style='fill:#231815;' cx='11.6202812' cy='17.147644' rx='1.3197482' ry='1.4186682'/>
|
82
|
+
<ellipse style='fill:#3E3A39;' cx='11.6202812' cy='17.147644' rx='1.0280999' ry='1.1888798'/>
|
83
|
+
<ellipse style='fill:#231815;' cx='11.6202812' cy='17.147644' rx='0.4987249' ry='0.5767183'/>
|
84
|
+
<path style='fill:#231815;' d='M11.5221128,15.6808434c2.0408964,0.1754913,2.6818047,1.731842,2.7487202,2.0121155
|
85
|
+
c-0.2033033-0.2063866-1.2585516-1.558157-2.6505518-1.5404987c-1.7561274,0.0222797-2.5414762,1.2253494-2.5414762,1.2253494
|
86
|
+
c0.0242863,0.0357037,0.5733862,0.7718468,0.5733862,0.7718468s-0.7598639-0.4199562-1.3984928-0.984705
|
87
|
+
C8.2536983,17.1649513,9.4812155,15.505352,11.5221128,15.6808434z'/>
|
88
|
+
<ellipse style='fill:#FFFFFF;' cx='10.8636427' cy='16.6355705' rx='0.356352' ry='0.3007674'/>
|
89
|
+
</g>
|
90
|
+
</g>
|
91
|
+
<g>
|
92
|
+
<path style='fill:#231815;' d='M14.84375,14.6482391c0,0-2.84375-2.6236181-6.46875-0.2681446
|
93
|
+
c0,0,2.46875-0.8925714,5.40625,0.5679998C13.78125,14.9480944,14.515625,15.0404291,14.84375,14.6482391z'/>
|
94
|
+
<path style='fill:#231815;' d='M17.15625,14.6482391c0,0,2.84375-2.6236181,6.46875-0.2681446
|
95
|
+
c0,0-2.46875-0.8925714-5.40625,0.5679998C18.21875,14.9480944,17.484375,15.0404291,17.15625,14.6482391z'/>
|
96
|
+
</g>
|
97
|
+
<linearGradient id='SVGID_2_' gradientUnits='userSpaceOnUse' x1='15.4719238' y1='22.833334' x2='15.4719238' y2='18'>
|
98
|
+
<stop offset='0' style='stop-color:#FFFFFF;stop-opacity:0.05'/>
|
99
|
+
<stop offset='0.5' style='stop-color:#FFFFFF;stop-opacity:0.4'/>
|
100
|
+
<stop offset='1' style='stop-color:#FFFFFF;stop-opacity:0.05'/>
|
101
|
+
</linearGradient>
|
102
|
+
<path style='fill:url(#SVGID_2_);' d='M16.0000057,20.416666c0,1.3346882-0.6311331,2.4166679-0.9137316,2.4166679
|
103
|
+
c-0.2825994,0-0.0835657-1.4994335,0.0730982-2.7942715C15.3055696,18.8307285,15.4250135,18,15.707612,18
|
104
|
+
S16.0000057,19.0819778,16.0000057,20.416666z'/>
|
105
|
+
</g>
|
106
|
+
<g>
|
107
|
+
<g>
|
108
|
+
<linearGradient id='SVGID_3_' gradientUnits='userSpaceOnUse' x1='16.0000057' y1='0.7147986' x2='16.0000057' y2='21.678812'>
|
109
|
+
<stop offset='0.1504425' style='stop-color:#6E4E30'/>
|
110
|
+
<stop offset='0.9955752' style='stop-color:#2E2114'/>
|
111
|
+
</linearGradient>
|
112
|
+
<path style='fill:url(#SVGID_3_);' d='M26.785675,7.9787483c-2.2882843-2.2723374-1.4450321-4.1529408-3.2612686-5.0932751
|
113
|
+
c-1.8162365-0.9402685-6.7516575-3.7242539-8.7244196-1.0186023c-1.8486691-1.9590029-4.8973513,1.0186023-6.7135878,1.9589368
|
114
|
+
C6.2701635,4.7660761,7.5026093,5.7064109,5.2143874,7.9787483c-2.288285,2.2724037-0.6307287,8.6194153-0.6307287,8.6194153
|
115
|
+
L6.5625,21.678812l0.753468-2.6796532l-0.5794353-2.3878975L7.3125,14.75
|
116
|
+
c0.0746207-0.4507656-0.1477113-1.7557154-0.0458517-2.1643057c0.3190069,0.4021788,0.7716722,2.0423851,1.4359741,2.2194128
|
117
|
+
c0,0,0.1131954-2.2098284-0.1627998-3.7943497c1.1815796,1.1018934,2.2709312,1.3944054,2.2709312,1.3944054
|
118
|
+
c-0.2347574-0.6492767-0.3348436-1.285532-0.3465624-1.8978567c2.2858086,3.850071,7.1072788,5.5894613,7.1072788,5.5894613
|
119
|
+
C18,15.125,18.3072643,11.2773561,18.25,10.7753601c0.8162041,0.9062243,1.2396412,1.6442137,1.2396412,1.6442137
|
120
|
+
c0.6105232-0.6333466,0.9009838-1.2227688,0.8732662-1.7389412c0.8435688,0.7219915,1.5714054,3.3710165,2.0803852,4.1244745
|
121
|
+
c0,0,1.0150414-1.3483839,1.2870502-3.7166767c0.2822018,2.0842705,0.1832581,3.776145,0.1832581,3.776145
|
122
|
+
c0.4630527-0.2404213,0.8520565-0.4883127,1.1945648-0.7403688L25.125,16.1542969L24.75,18.75l0.65625,2.928812
|
123
|
+
l2.0100918-5.0806484C27.4163418,16.5981636,29.0738964,10.251152,26.785675,7.9787483z'/>
|
124
|
+
<path style='fill:#2B1D15;' d='M25.3398438,22.5258789l-0.84375-3.7661133l0.3813477-2.6411133l-0.0146484-1.5195313
|
125
|
+
c-0.2636719,0.1733398-0.5390625,0.3339844-0.8339844,0.4873047l-0.390625,0.203125l0.0258789-0.4394531
|
126
|
+
c0.0004883-0.0117188,0.0473633-0.8535156-0.0224609-2.0639648c-0.4033203,1.3662109-0.9667969,2.1269531-0.9985352,2.1694336
|
127
|
+
l-0.2104492,0.2797852l-0.1962891-0.2900391c-0.2080078-0.3076172-0.4326172-0.8662109-0.6928711-1.5126953
|
128
|
+
c-0.2958984-0.7368164-0.6479492-1.6118164-1.0117188-2.1635742c-0.1318359,0.421875-0.4199219,0.8652344-0.8618164,1.3237305
|
129
|
+
l-0.230957,0.2397461l-0.1660156-0.2885742c-0.003418-0.0058594-0.2714844-0.4682617-0.78125-1.1000977
|
130
|
+
c-0.0629883,1.3081055-0.328125,3.9291992-0.6918945,4.7539063l-0.09375,0.2133789l-0.2197266-0.0791016
|
131
|
+
c-0.1850586-0.0668945-4.2353516-1.5581055-6.6694336-4.8447266c0.0546875,0.284668,0.1313477,0.5625,0.2290039,0.8330078
|
132
|
+
l0.1625977,0.4506836l-0.4628906-0.1245117c-0.0400391-0.0107422-0.8676758-0.2397461-1.8676758-1.019043
|
133
|
+
c0.1591797,1.4731445,0.0786133,3.1113281,0.0742188,3.1904297l-0.015625,0.3085938L8.6381836,15.046875
|
134
|
+
c-0.4838867-0.1293945-0.8188477-0.7426758-1.1054688-1.362793c0,0.0043945,0.0004883,0.0087891,0.0009766,0.0131836
|
135
|
+
c0.0336914,0.4365234,0.065918,0.8496094,0.0253906,1.09375l-0.5634766,1.828125l0.5786133,2.3842773l-0.9731445,3.4624023
|
136
|
+
l-2.2504883-5.7768555c-0.078125-0.2924805-1.675293-6.5410156,0.6875-8.8876953
|
137
|
+
C6.1469727,6.7001953,6.3945313,5.9306641,6.59375,5.3129883C6.7998047,4.671875,6.9780273,4.1181641,7.9716797,3.6035156
|
138
|
+
c0.3994141-0.206543,0.8725586-0.5234375,1.3735352-0.8588867c1.2480469-0.8349609,2.6630859-1.7817383,3.9589844-1.7817383
|
139
|
+
c0.5595703,0,1.0527344,0.1796875,1.4707031,0.5351563c0.6025391-0.6860352,1.4560547-1.0332031,2.5429688-1.0332031
|
140
|
+
c2.1201172,0,4.6577148,1.328125,6.0209961,2.0415039l0.300293,0.1567383
|
141
|
+
c0.9956055,0.515625,1.2631836,1.2880859,1.5737305,2.1831055c0.3017578,0.8710938,0.644043,1.8579102,1.7490234,2.9550781
|
142
|
+
c2.362793,2.3466797,0.765625,8.5952148,0.6962891,8.8598633L25.3398438,22.5258789z M13.3041992,1.4628906
|
143
|
+
c-1.144043,0-2.4916992,0.9018555-3.6806641,1.6977539C9.1103516,3.5039063,8.6259766,3.828125,8.2011719,4.0478516
|
144
|
+
C7.3911133,4.4672852,7.2700195,4.8432617,7.0693359,5.4658203c-0.215332,0.6699219-0.4833984,1.503418-1.6787109,2.6899414
|
145
|
+
c-2.159668,2.1450195-0.581543,8.3173828-0.5654297,8.3793945l1.6987305,4.3564453l0.5336914-1.8974609l-0.5805664-2.390625
|
146
|
+
l0.5966797-1.9272461c0.0224609-0.1513672-0.0097656-0.5708008-0.0385742-0.9404297
|
147
|
+
c-0.0385742-0.4921875-0.074707-0.9570313-0.0112305-1.2104492l0.1230469-0.4921875l0.3154297,0.3974609
|
148
|
+
c0.1235352,0.1557617,0.2416992,0.4179688,0.390625,0.75c0.1625977,0.3618164,0.3833008,0.8530273,0.6152344,1.1445313
|
149
|
+
c0.0166016-0.7285156,0.0180664-2.1660156-0.1743164-3.2714844l-0.1279297-0.7338867l0.5444336,0.5083008
|
150
|
+
c0.6630859,0.6181641,1.2988281,0.972168,1.7080078,1.1586914c-0.1259766-0.4760742-0.1943359-0.9702148-0.2041016-1.4746094
|
151
|
+
L10.1962891,9.565918l0.4829102,0.8139648c1.9291992,3.2495117,5.7651367,4.987793,6.7451172,5.3901367
|
152
|
+
c0.3720703-1.2114258,0.6245117-4.5537109,0.5771484-4.9663086l-0.0878906-0.7753906l0.5219727,0.5795898
|
153
|
+
c0.5258789,0.5834961,0.890625,1.0961914,1.090332,1.3989258c0.4057617-0.4804688,0.6079102-0.9306641,0.5874023-1.3125
|
154
|
+
l-0.0317383-0.5834961l0.4438477,0.3798828c0.5703125,0.4882813,1.0546875,1.6928711,1.4819336,2.7553711
|
155
|
+
c0.159668,0.3969727,0.3134766,0.7792969,0.4511719,1.0678711c0.3032227-0.5292969,0.8398438-1.6557617,1.0234375-3.2539063
|
156
|
+
l0.2280273-1.9853516l0.2680664,1.9799805c0.199707,1.4731445,0.2114258,2.7392578,0.2001953,3.3798828
|
157
|
+
c0.2744141-0.1591797,0.5327148-0.3286133,0.7817383-0.5117188l0.3945313-0.2905273L25.375,16.1523438l-0.3710938,2.5878906
|
158
|
+
l0.46875,2.0913086l1.7114258-4.3251953c0.0068359-0.0332031,1.5849609-6.2055664-0.574707-8.3505859
|
159
|
+
c-1.1870117-1.1787109-1.5649414-2.269043-1.8691406-3.1455078c-0.2973633-0.8588867-0.5126953-1.4794922-1.3305664-1.902832
|
160
|
+
L23.1069336,2.949707c-1.3251953-0.6938477-3.7919922-1.9848633-5.7890625-1.9848633
|
161
|
+
c-1.043457,0-1.8012695,0.3432617-2.315918,1.0493164L14.824707,2.2573242l-0.206543-0.2192383
|
162
|
+
C14.2524414,1.6508789,13.8227539,1.4628906,13.3041992,1.4628906z'/>
|
163
|
+
</g>
|
164
|
+
<linearGradient id='SVGID_4_' gradientUnits='userSpaceOnUse' x1='14.5063419' y1='3.75' x2='14.5063419' y2='15.0625'>
|
165
|
+
<stop offset='0' style='stop-color:#8C6B42'/>
|
166
|
+
<stop offset='0.9955752' style='stop-color:#6E4E30'/>
|
167
|
+
</linearGradient>
|
168
|
+
<path style='fill:url(#SVGID_4_);' d='M14,3.75c0,0-2.8125,5.875,3.15625,11.3125C17.15625,15.0625,7.75,9.4375,14,3.75z'/>
|
169
|
+
<linearGradient id='SVGID_5_' gradientUnits='userSpaceOnUse' x1='22.0538311' y1='4.6841831' x2='22.0538311' y2='13.875'>
|
170
|
+
<stop offset='0' style='stop-color:#8C6B42'/>
|
171
|
+
<stop offset='0.9955752' style='stop-color:#6E4E30'/>
|
172
|
+
</linearGradient>
|
173
|
+
<path style='fill:url(#SVGID_5_);' d='M20.9242249,4.6841831c0,0,3.7632751,3.6908169,1.5757751,9.1908169
|
174
|
+
C22.5,13.875,22.8484497,8.9933662,20.9242249,4.6841831z'/>
|
175
|
+
<linearGradient id='SVGID_6_' gradientUnits='userSpaceOnUse' x1='5.6597223' y1='7.6875' x2='5.6597223' y2='18.8125'>
|
176
|
+
<stop offset='0' style='stop-color:#8C6B42'/>
|
177
|
+
<stop offset='0.9955752' style='stop-color:#6E4E30'/>
|
178
|
+
</linearGradient>
|
179
|
+
<path style='fill:url(#SVGID_6_);' d='M6.5625,7.6875c0,0-4.0625,3.875,0,11.125C6.5625,18.8125,4.25,12.5625,6.5625,7.6875z'/>
|
180
|
+
<linearGradient id='SVGID_7_' gradientUnits='userSpaceOnUse' x1='26.5949516' y1='8' x2='26.5949516' y2='18.3125'>
|
181
|
+
<stop offset='0' style='stop-color:#8C6B42'/>
|
182
|
+
<stop offset='0.9955752' style='stop-color:#6E4E30'/>
|
183
|
+
</linearGradient>
|
184
|
+
<path style='fill:url(#SVGID_7_);' d='M25.8125,8c0,0,3.2542591,2.8125,0.3771305,10.3125
|
185
|
+
C26.1896305,18.3125,27.625,11.25,25.8125,8z'/>
|
186
|
+
</g>
|
187
|
+
<g>
|
188
|
+
<g>
|
189
|
+
<linearGradient id='SVGID_8_' gradientUnits='userSpaceOnUse' x1='18.5078125' y1='23.7229671' x2='18.5078125' y2='25.0236301'>
|
190
|
+
<stop offset='0.1504425' style='stop-color:#6E4E30'/>
|
191
|
+
<stop offset='0.9955752' style='stop-color:#2E2114'/>
|
192
|
+
</linearGradient>
|
193
|
+
<path style='fill:url(#SVGID_8_);' d='M16.625,23.75c0,0,2.96875-0.3125,3.765625,1.1875
|
194
|
+
C20.390625,24.9375,17.1875,25.5,16.625,23.75z'/>
|
195
|
+
<path style='fill:#2B1D15;' d='M19.2695313,25.2734375c-1.581543,0-2.578125-0.5-2.8823242-1.4467773l-0.0942383-0.2929688
|
196
|
+
l0.3056641-0.0322266c0.0009766,0.0009766,3.1381836-0.3286133,4.0126953,1.3188477l0.1616211,0.3037109l-0.3388672,0.0595703
|
197
|
+
C20.4130859,25.1875,19.9145508,25.2734375,19.2695313,25.2734375z M17.0087891,23.9770508
|
198
|
+
c0.5664063,0.8520508,2.1567383,0.8359375,2.9321289,0.7646484
|
199
|
+
C19.2226563,23.9995117,17.7045898,23.953125,17.0087891,23.9770508z'/>
|
200
|
+
</g>
|
201
|
+
<g>
|
202
|
+
<linearGradient id='SVGID_9_' gradientUnits='userSpaceOnUse' x1='13.4921875' y1='23.7229671' x2='13.4921875' y2='25.0236301'>
|
203
|
+
<stop offset='0.1504425' style='stop-color:#6E4E30'/>
|
204
|
+
<stop offset='0.9955752' style='stop-color:#2E2114'/>
|
205
|
+
</linearGradient>
|
206
|
+
<path style='fill:url(#SVGID_9_);' d='M15.375,23.75c0,0-2.96875-0.3125-3.765625,1.1875
|
207
|
+
C11.609375,24.9375,14.8125,25.5,15.375,23.75z'/>
|
208
|
+
<path style='fill:#2B1D15;' d='M12.7304688,25.2734375C12.7304688,25.2734375,12.730957,25.2734375,12.7304688,25.2734375
|
209
|
+
c-0.6450195,0-1.1435547-0.0859375-1.1645508-0.0898438l-0.3388672-0.0595703l0.1616211-0.3037109
|
210
|
+
c0.8759766-1.6474609,4.0131836-1.3178711,4.0126953-1.3188477l0.3056641,0.0322266l-0.0942383,0.2929688
|
211
|
+
C15.3085938,24.7729492,14.3120117,25.2734375,12.7304688,25.2734375z M12.059082,24.7416992
|
212
|
+
c0.7739258,0.0717773,2.3657227,0.0874023,2.9321289-0.7646484
|
213
|
+
C14.2939453,23.9526367,12.7773438,23.9995117,12.059082,24.7416992z'/>
|
214
|
+
</g>
|
215
|
+
<g>
|
216
|
+
<linearGradient id='SVGID_10_' gradientUnits='userSpaceOnUse' x1='16' y1='28.4555569' x2='16' y2='31.5'>
|
217
|
+
<stop offset='0.1504425' style='stop-color:#6E4E30'/>
|
218
|
+
<stop offset='0.9955752' style='stop-color:#2E2114'/>
|
219
|
+
</linearGradient>
|
220
|
+
<path style='fill:url(#SVGID_10_);' d='M17.5750008,30.479166l-0.2953129-1.1694412l-0.3691406,0.2708321L16,28.4555569
|
221
|
+
l-0.9105473,1.125l-0.3691406-0.25l-0.2953119,1.1486092L13.4316406,30.3125c0,0,0.5242157,1.1875,2.5683594,1.1875
|
222
|
+
s2.5683594-1.1875,2.5683594-1.1875L17.5750008,30.479166z'/>
|
223
|
+
<path style='fill:#2B1D15;' d='M16,31.75c-2.1816406,0-2.7729492-1.2817383-2.796875-1.3364258l-0.1875-0.4243164
|
224
|
+
l1.2241211,0.2050781l0.3266602-1.2700195l0.4731445,0.3203125L16,28.0581055l0.9550781,1.1796875l0.4760742-0.3496094
|
225
|
+
l0.3300781,1.3061523l1.2231445-0.2050781l-0.1875,0.4243164C18.7729492,30.4682617,18.1816406,31.75,16,31.75z
|
226
|
+
M14.0488281,30.6694336C14.3881836,30.9477539,14.9887695,31.25,16,31.25c1.0107422,0,1.6113281-0.3017578,1.9511719-0.5805664
|
227
|
+
l-0.5620117,0.0942383L17.128418,29.730957l-0.262207,0.1923828L16,28.8530273l-0.8608398,1.0634766l-0.2651367-0.1796875
|
228
|
+
l-0.2641602,1.0268555L14.0488281,30.6694336z'/>
|
229
|
+
</g>
|
230
|
+
</g>
|
231
|
+
</g>
|
232
|
+
<g>
|
233
|
+
</g>
|
234
|
+
<g>
|
235
|
+
</g>
|
236
|
+
<g>
|
237
|
+
</g>
|
238
|
+
<g>
|
239
|
+
</g>
|
240
|
+
<g>
|
241
|
+
</g>
|
242
|
+
<g>
|
243
|
+
</g>
|
244
|
+
<g>
|
245
|
+
<g>
|
246
|
+
<linearGradient id='SVGID_1_fb76ca38bb8cff584e60141c3497de4f' gradientUnits='userSpaceOnUse' x1='48' y1='15.5625' x2='48' y2='36.333313'>
|
247
|
+
<stop offset='0.1504425' style='stop-color:#6E4E30'/>
|
248
|
+
<stop offset='0.9955752' style='stop-color:#2E2114'/>
|
249
|
+
</linearGradient>
|
250
|
+
<path style='fill:url(#SVGID_1_fb76ca38bb8cff584e60141c3497de4f);' d='M60,26.25c-0.5949707-5.833374-2-10.6875-2-10.6875H48h-9.6066284
|
251
|
+
c0,0-1.7984009,4.854126-2.3933716,10.6875c-0.5949097,5.833313,2,9.083313,2,9.083313C37.75,33.375,38,32,38,32
|
252
|
+
c0.75,4.114563,10,4.333313,10,4.333313S57.25,36.114563,58,32c0,0,0.25,1.3333321,0,3.333313
|
253
|
+
C58,35.333313,60.5949097,32.083313,60,26.25z'/>
|
254
|
+
<path style='fill:#2B1D15;' d='M48,36.5830078h-0.0058594c-0.3515625-0.0087891-7.9082031-0.2275391-9.8447266-3.4873047
|
255
|
+
c-0.0224609,0.5654297-0.0136719,1.3271484,0.0986328,2.2060547l0.1132813,0.8837891l-0.5566406-0.6962891
|
256
|
+
c-0.1083984-0.1357422-2.6513672-3.3969727-2.0537109-9.2646484c0.5917969-5.7978516,2.3896484-10.7001953,2.4082031-10.7490234
|
257
|
+
L38.2197266,15.3125H58.1875l0.0527344,0.1806641c0.0136719,0.0483398,1.4179688,4.9423828,2.0087891,10.7314453
|
258
|
+
c0.5976563,5.8676758-1.9453125,9.1289063-2.0537109,9.2646484l-0.5537109,0.6923828l0.1103516-0.8798828
|
259
|
+
c0.1113281-0.8886719,0.1210938-1.6464844,0.0986328-2.2070313c-1.9345703,3.2607422-9.4931641,3.4794922-9.8447266,3.4882813H48z
|
260
|
+
M38,30.6040039l0.2460938,1.3510742C38.9433594,35.78125,47.7246094,36.0751953,48,36.0830078
|
261
|
+
c0.2753906-0.0078125,9.0566406-0.3017578,9.7539063-4.1279297L57.9960938,30.625l0.25,1.3291016
|
262
|
+
c0.0078125,0.0454102,0.1708984,0.9414063,0.0957031,2.3603516c0.7070313-1.3105469,1.8134766-4.0766602,1.4091797-8.0390625
|
263
|
+
c-0.5214844-5.1191406-1.6845703-9.53125-1.9404297-10.4628906H38.5693359
|
264
|
+
c-0.3125,0.8920898-1.796875,5.3208008-2.3203125,10.4628906c-0.4042969,3.9609375,0.7011719,6.7265625,1.4082031,8.0371094
|
265
|
+
c-0.0732422-1.3959961,0.0878906-2.3105469,0.0966797-2.3574219L38,30.6040039z'/>
|
266
|
+
</g>
|
267
|
+
<g>
|
268
|
+
<linearGradient id='SVGID_2_fb76ca38bb8cff584e60141c3497de4f' gradientUnits='userSpaceOnUse' x1='48' y1='33.0236282' x2='48' y2='64'>
|
269
|
+
<stop offset='0' style='stop-color:#E53828'/>
|
270
|
+
<stop offset='1' style='stop-color:#C10D23'/>
|
271
|
+
</linearGradient>
|
272
|
+
<path style='fill:url(#SVGID_2_fb76ca38bb8cff584e60141c3497de4f);' d='M54,33.0236282c0,0,10,0,10,12S64,64,64,64H32c0,0,0-6.9763718,0-18.9763718s10-12,10-12H54
|
273
|
+
z'/>
|
274
|
+
<path style='fill:#231815;' d='M64.25,64.25h-32.5V45.0234375c0-12.1098633,10.1474609-12.25,10.25-12.25h12
|
275
|
+
c0.1025391,0,10.25,0.1401367,10.25,12.25V64.25z M32.25,63.75h31.5V45.0234375c0-11.6015625-9.3525391-11.7490234-9.75-11.75H42
|
276
|
+
c-0.3974609,0.0009766-9.75,0.1484375-9.75,11.75V63.75z'/>
|
277
|
+
</g>
|
278
|
+
<g>
|
279
|
+
<g>
|
280
|
+
<path style='fill:#FFB743;' d='M52.9242554,25.0236301H48h-4.9241943c0,0-0.2424927,6.75-1.0758057,7.9999981
|
281
|
+
c0,0,2.125,1.916626,6,1.916626s6-1.916626,6-1.916626C53.166687,31.7736301,52.9242554,25.0236301,52.9242554,25.0236301z'/>
|
282
|
+
<path style='fill:#231815;' d='M48,35.1904297c-3.9257813,0-6.078125-1.9003906-6.1669922-1.9814453l-0.1611328-0.1445313
|
283
|
+
l0.1201172-0.1796875c0.6513672-0.9770508,0.9677734-6.0126953,1.0341797-7.8701172l0.0087891-0.2412109h10.3300781
|
284
|
+
l0.0087891,0.2412109c0.0664063,1.8574219,0.3828125,6.8930664,1.0341797,7.8701172l0.1201172,0.1796875l-0.1611328,0.1445313
|
285
|
+
C54.078125,33.2900391,51.9257813,35.1904297,48,35.1904297z M42.3193359,32.9599609
|
286
|
+
C42.8632813,33.3730469,44.8447266,34.6904297,48,34.6904297c3.1650391,0,5.1386719-1.3164063,5.6806641-1.7299805
|
287
|
+
c-0.6992188-1.4912109-0.9443359-6.409668-0.9970703-7.6870117h-9.3671875
|
288
|
+
C43.2636719,26.5507813,43.0185547,31.4682617,42.3193359,32.9599609z'/>
|
289
|
+
</g>
|
290
|
+
<g>
|
291
|
+
<path style='fill:#FFB743;' d='M58,15.9379845c0,0,2-1.6124029,2,3.2248058S54,24,54,24L58,15.9379845z'/>
|
292
|
+
<path style='fill:#231815;' d='M54,24.25h-0.4033203l4.2460938-8.5068359
|
293
|
+
c0.0400391-0.0317383,0.4023438-0.3129883,0.8613281-0.3129883c1.0253906,0,1.5458984,1.2558594,1.5458984,3.7324219
|
294
|
+
C60.25,24.1918945,54.0625,24.25,54,24.25z M58.1962891,16.1044922l-3.7841797,7.6274414
|
295
|
+
C55.7382813,23.6357422,59.75,23.0249023,59.75,19.1625977c0-2.0541992-0.3808594-3.2324219-1.0458984-3.2324219
|
296
|
+
C58.4824219,15.9301758,58.2792969,16.0488281,58.1962891,16.1044922z'/>
|
297
|
+
</g>
|
298
|
+
<g>
|
299
|
+
<path style='fill:#FFB743;' d='M38,15.9379845c0,0-2-1.6124029-2,3.2248058S42,24,42,24L38,15.9379845z'/>
|
300
|
+
<path style='fill:#231815;' d='M42.4033203,24.25H42c-0.0625,0-6.25-0.0581055-6.25-5.0874023
|
301
|
+
c0-2.4765625,0.5205078-3.7324219,1.5458984-3.7324219c0.4589844,0,0.8212891,0.28125,0.8613281,0.3129883l0.0664063,0.0834961
|
302
|
+
L42.4033203,24.25z M37.2958984,15.9301758c-0.6650391,0-1.0458984,1.1782227-1.0458984,3.2324219
|
303
|
+
c0,3.8623047,4.0117188,4.4731445,5.3378906,4.5693359l-3.7841797-7.6274414
|
304
|
+
C37.7197266,16.0483398,37.5166016,15.9301758,37.2958984,15.9301758z'/>
|
305
|
+
</g>
|
306
|
+
<g>
|
307
|
+
<path style='fill:#FFB743;' d='M48,4c-5.6623154,0-10.6317596,1.7474365-9.437191,14.666626
|
308
|
+
c0.3604622,3.8980103,1.7080154,6.4033203,3.20504,7.989624C43.2991447,28.2788696,46.1005249,30.3125,48,30.3125
|
309
|
+
s4.7009125-2.0336304,6.232151-3.65625c1.4970856-1.5863037,2.844635-4.0916138,3.20504-7.989624
|
310
|
+
C58.6317596,5.7474365,53.6623154,4,48,4z'/>
|
311
|
+
<path style='fill:#231815;' d='M48,30.5625c-2.1054688,0-5.0517578-2.2905273-6.4140625-3.7348633
|
312
|
+
c-1.8535156-1.9638672-2.9550781-4.7021484-3.2724609-8.1381836c-0.5615234-6.0761719,0.1884766-10.1523438,2.2939453-12.4609375
|
313
|
+
C42.6103516,4.0317383,45.6103516,3.75,48,3.75s5.3896484,0.2817383,7.3925781,2.4785156
|
314
|
+
c2.1054688,2.3085938,2.8554688,6.3847656,2.2939453,12.4609375c-0.3173828,3.4360352-1.4189453,6.1743164-3.2724609,8.1381836
|
315
|
+
C53.0517578,28.2719727,50.1054688,30.5625,48,30.5625z M48,4.25c-2.4287109,0-5.1630859,0.2749023-7.0234375,2.3154297
|
316
|
+
c-2.0048828,2.1992188-2.7128906,6.1499023-2.1650391,12.078125c0.3066406,3.3217773,1.3623047,5.9599609,3.1376953,7.8413086
|
317
|
+
C43.609375,28.2431641,46.3261719,30.0625,48,30.0625s4.390625-1.8193359,6.0507813-3.5776367
|
318
|
+
c1.7753906-1.8813477,2.8310547-4.5195313,3.1376953-7.8413086c0.5478516-5.9282227-0.1601563-9.8789063-2.1650391-12.078125
|
319
|
+
C53.1630859,4.5249023,50.4287109,4.25,48,4.25z'/>
|
320
|
+
</g>
|
321
|
+
</g>
|
322
|
+
<g>
|
323
|
+
<path style='fill:#C10D23;' d='M44.5727501,24.7319622c0,0,1.713623,0.625,3.4272499,0.625s3.4272499-0.625,3.4272499-0.625
|
324
|
+
s0.1338768,1.21875-3.4272499,1.21875S44.5727501,24.7319622,44.5727501,24.7319622z'/>
|
325
|
+
<g>
|
326
|
+
<g>
|
327
|
+
<path style='fill:#F5F5F5;' d='M50.012764,17.6929607c0-0.3434982,0.5725288-1.7650261,2.4651222-1.7650261
|
328
|
+
c1.8925972,0,2.7487221,1.390625,2.7487221,1.390625s-1.034214,1.3278732-2.7488861,1.3014927
|
329
|
+
C51.7651291,18.6090889,50.012764,18.036459,50.012764,17.6929607z'/>
|
330
|
+
<ellipse style='fill:#231815;' cx='52.3797188' cy='17.147644' rx='1.3197482' ry='1.4186682'/>
|
331
|
+
<ellipse style='fill:#3E3A39;' cx='52.3797188' cy='17.147644' rx='1.0280999' ry='1.1888798'/>
|
332
|
+
<ellipse style='fill:#231815;' cx='52.3797188' cy='17.147644' rx='0.4987249' ry='0.5767183'/>
|
333
|
+
<path style='fill:#231815;' d='M55.916687,17.164917c0,0-0.826355-0.9133911-2.1317139-1.3063965
|
334
|
+
c0.9214478,0.0986328,1.5887451,0.3262939,1.5887451,0.3262939c-3.8999023-2.208374-5.5612183,0.7227173-5.5612183,0.7227173
|
335
|
+
c0.2763672-0.2606201,0.5808716-0.460022,0.8989868-0.6167603c-0.6791992,0.5268555-0.9408569,1.2283936-0.9822998,1.4021606
|
336
|
+
c0.2033081-0.2063599,1.2585449-1.5581665,2.6505127-1.5404663c1.7561646,0.0222778,2.5415039,1.2253418,2.5415039,1.2253418
|
337
|
+
c-0.024292,0.0357056-0.5733643,0.7718506-0.5733643,0.7718506l1.1689453-0.5038452l-0.2330933-0.0792236
|
338
|
+
C55.4769897,17.4448242,55.6902466,17.3096924,55.916687,17.164917z'/>
|
339
|
+
<ellipse style='fill:#FFFFFF;' cx='51.6230812' cy='16.6355705' rx='0.356352' ry='0.3007674'/>
|
340
|
+
</g>
|
341
|
+
<g>
|
342
|
+
<path style='fill:#F5F5F5;' d='M45.987236,17.6929607c0-0.3434982-0.5725288-1.7650261-2.4651222-1.7650261
|
343
|
+
c-1.8925972,0-2.7487221,1.390625-2.7487221,1.390625s1.034214,1.3278732,2.7488861,1.3014927
|
344
|
+
C44.2348709,18.6090889,45.987236,18.036459,45.987236,17.6929607z'/>
|
345
|
+
<ellipse style='fill:#231815;' cx='43.6202812' cy='17.147644' rx='1.3197482' ry='1.4186682'/>
|
346
|
+
<ellipse style='fill:#3E3A39;' cx='43.6202812' cy='17.147644' rx='1.0280999' ry='1.1888798'/>
|
347
|
+
<ellipse style='fill:#231815;' cx='43.6202812' cy='17.147644' rx='0.4987249' ry='0.5767183'/>
|
348
|
+
<path style='fill:#231815;' d='M40.083313,17.164917c0,0,0.826355-0.9133911,2.1317139-1.3063965
|
349
|
+
c-0.9214478,0.0986328-1.5887451,0.3262939-1.5887451,0.3262939c3.8999023-2.208374,5.5612183,0.7227173,5.5612183,0.7227173
|
350
|
+
c-0.2763672-0.2606201-0.5808716-0.460022-0.8989868-0.6167603c0.6791992,0.5268555,0.9408569,1.2283936,0.9822998,1.4021606
|
351
|
+
c-0.2033081-0.2063599-1.2585449-1.5581665-2.6505127-1.5404663c-1.7561646,0.0222778-2.5415039,1.2253418-2.5415039,1.2253418
|
352
|
+
c0.024292,0.0357056,0.5733643,0.7718506,0.5733643,0.7718506l-1.1689453-0.5038452l0.2330933-0.0792236
|
353
|
+
C40.5230103,17.4448242,40.3097534,17.3096924,40.083313,17.164917z'/>
|
354
|
+
<ellipse style='fill:#FFFFFF;' cx='42.8636436' cy='16.6355705' rx='0.356352' ry='0.3007674'/>
|
355
|
+
</g>
|
356
|
+
</g>
|
357
|
+
<g>
|
358
|
+
<path style='fill:#231815;' d='M49.6971626,14.0367432c0,0,2.5632629-2.5064297,6.4541245-0.0431776
|
359
|
+
C56.1512871,13.9935656,52.9242249,13.1240635,49.6971626,14.0367432z'/>
|
360
|
+
<path style='fill:#231815;' d='M46.3028374,14.0367432c0,0-2.5632629-2.5064297-6.4541245-0.0431776
|
361
|
+
C39.8487129,13.9935656,43.0757751,13.1240635,46.3028374,14.0367432z'/>
|
362
|
+
</g>
|
363
|
+
<linearGradient id='SVGID_3_fb76ca38bb8cff584e60141c3497de4f' gradientUnits='userSpaceOnUse' x1='47.4719238' y1='22.833334' x2='47.4719238' y2='18'>
|
364
|
+
<stop offset='0' style='stop-color:#FFFFFF;stop-opacity:0.05'/>
|
365
|
+
<stop offset='0.5' style='stop-color:#FFFFFF;stop-opacity:0.4'/>
|
366
|
+
<stop offset='1' style='stop-color:#FFFFFF;stop-opacity:0.05'/>
|
367
|
+
</linearGradient>
|
368
|
+
<path style='fill:url(#SVGID_3_fb76ca38bb8cff584e60141c3497de4f);' d='M48.0000076,20.416666c0,1.3346882-0.631134,2.4166679-0.9137344,2.4166679
|
369
|
+
c-0.2825966,0-0.0835648-1.4994335,0.073101-2.7942715C47.3055687,18.8307285,47.4250145,18,47.7076111,18
|
370
|
+
C47.9902115,18,48.0000076,19.0819778,48.0000076,20.416666z'/>
|
371
|
+
</g>
|
372
|
+
<g>
|
373
|
+
<g>
|
374
|
+
<linearGradient id='SVGID_4_fb76ca38bb8cff584e60141c3497de4f' gradientUnits='userSpaceOnUse' x1='47.8840904' y1='1.1484413' x2='47.8840904' y2='32.6666679'>
|
375
|
+
<stop offset='0.1504425' style='stop-color:#6E4E30'/>
|
376
|
+
<stop offset='0.9955752' style='stop-color:#2E2114'/>
|
377
|
+
</linearGradient>
|
378
|
+
<path style='fill:url(#SVGID_4_fb76ca38bb8cff584e60141c3497de4f);' d='M59.0416679,8c-1.4054222-2.1595478-1.0741425-3.0596652-2.8903809-4
|
379
|
+
c-1.8162346-0.9402685-4.4628792-3.1370814-6.9950371-2.2083335c-1.8486671-1.9590029-7.2536125,1.0938066-9.0698509,2.0341411
|
380
|
+
C38.2701645,4.7660761,39.2465553,4.7276626,36.9583321,7c-2.2882843,2.2724037-0.3746719,9.5981636-0.3746719,9.5981636
|
381
|
+
l2.7513695,16.0685043c0,0,0.9678421-1.7092762,0.7483025-3.5416679C39.207016,21.81077,38.5625,20.375,38.75,18.3782234
|
382
|
+
c0.137085-1.4598885,0.3547287-2.0866985,0.5429077-3.3157234c0.1057549-0.6906958-0.1133881-1.5891933-0.0262604-2.4768057
|
383
|
+
C39.5,14.0367432,39.6875,15.416667,41.375,15.9616747c0,0,0.0833321-0.3991747,0.375-0.8991747
|
384
|
+
c1.1743546,0.8991747,2.1064339,0.6175003,2.1064339,0.6175003c-0.1152344-0.4031029-0.1897659-1.0758333,0-1.4716673
|
385
|
+
c3.0185661,2.3644419,5.7150345,1.8884344,5.7150345,1.8884344C51.427906,12.9098701,51.9913406,8.501997,51.9340744,8
|
386
|
+
C52.7502785,8.9062252,54,14.8125,55.1834373,16.0982857c0,0,0.6958427-0.8201227,0.9678497-3.1884155
|
387
|
+
c0.2822037,2.0842705-0.1200371,3.3816547-0.1200371,3.3816547c0.4630547-0.2404213,0.8326683-1.3534889,1.1139183-2.0722389
|
388
|
+
c0,0-0.0853348,3.6784248-0.1451683,4.593214c-0.40625,6.2111206-1.2425499,9.3117809-1.25,10.53125
|
389
|
+
s0.9149704,3.3229179,0.9149704,3.3229179l2.7513695-16.0685043C59.4163399,16.5981636,60.8006935,10.7028885,59.0416679,8z'/>
|
390
|
+
<path style='fill:#2B1D15;' d='M56.7705078,33.5302734l-0.3339844-0.7631836
|
391
|
+
C56.3974609,32.6791992,55.4921875,30.6000977,55.5,29.3422852c0.0029297-0.4584961,0.1113281-1.1298828,0.2753906-2.1459961
|
392
|
+
c0.2851563-1.7675781,0.7158203-4.4384766,0.9755859-8.3999023c0.0341797-0.5385742,0.0791016-2.0634766,0.1103516-3.2075195
|
393
|
+
c-0.2021484,0.4233398-0.4335938,0.7783203-0.7148438,0.9243164l-0.5292969,0.2744141l0.1748047-0.5698242
|
394
|
+
c0.0029297-0.0073242,0.1367188-0.4555664,0.1884766-1.2358398c-0.2861328,0.8911133-0.5869141,1.2548828-0.6064453,1.277832
|
395
|
+
l-0.1826172,0.2158203L55,16.2675781c-0.6865234-0.7451172-1.3427734-2.7983398-1.9775391-4.7836914
|
396
|
+
c-0.3085938-0.9672852-0.625-1.956543-0.9003906-2.6171875c-0.2001953,1.597168-0.8876953,4.8720703-2.3349609,7.355957
|
397
|
+
l-0.0585938,0.1000977l-0.1132813,0.0200195c-0.0361328,0.0083008-2.6611328,0.4414063-5.6132813-1.7109375
|
398
|
+
c-0.0341797,0.3061523,0.0126953,0.690918,0.0947266,0.9794922l0.0673828,0.2368164l-0.2353516,0.0712891
|
399
|
+
c-0.0439453,0.0126953-0.9677734,0.2543945-2.0917969-0.4882813c-0.1630859,0.3354492-0.2167969,0.5791016-0.2167969,0.5825195
|
400
|
+
l-0.0585938,0.2705078l-0.2636719-0.0844727c-0.90625-0.2929688-1.4160156-0.8129883-1.7275391-1.4399414
|
401
|
+
c-0.0039063,0.1166992-0.0136719,0.2304688-0.0302734,0.340332c-0.0712891,0.4672852-0.1474609,0.8481445-0.2216797,1.2202148
|
402
|
+
c-0.1210938,0.6088867-0.2353516,1.184082-0.3193359,2.081543c-0.1015625,1.0810547,0.0507813,2.0126953,0.3554688,3.8681641
|
403
|
+
c0.2490234,1.512207,0.5888672,3.5834961,0.9765625,6.8251953c0.2275391,1.8920898-0.7373047,3.621582-0.7783203,3.6943359
|
404
|
+
l-0.3457031,0.6108398l-2.8691406-16.7602539c-0.0751953-0.2836914-1.9189453-7.4707031,0.4443359-9.8173828
|
405
|
+
c1.0009766-0.9941406,1.3574219-1.5253906,1.6181641-1.9130859c0.3603516-0.5371094,0.546875-0.7758789,1.5703125-1.3061523
|
406
|
+
l0.4082031-0.2133789c1.6552734-0.8710938,4.7373047-2.4916992,6.9814453-2.4916992
|
407
|
+
c0.7890625,0,1.4140625,0.2041016,1.8603516,0.6064453c0.3886719-0.1245117,0.7988281-0.1875,1.2207031-0.1875
|
408
|
+
c1.6787109,0,3.3349609,0.9946289,4.6650391,1.793457c0.4150391,0.2490234,0.8056641,0.4838867,1.1601563,0.6669922
|
409
|
+
c1.2539063,0.6494141,1.5654297,1.3212891,1.9960938,2.2509766c0.2363281,0.5112305,0.5048828,1.0913086,0.9892578,1.8349609
|
410
|
+
c1.7958984,2.7607422,0.4648438,8.5463867,0.4072266,8.7915039L56.7705078,33.5302734z M47.3603516,1.3984375
|
411
|
+
c-2.1201172,0-5.2460938,1.644043-6.7490234,2.434082l-0.4101563,0.215332
|
412
|
+
C39.25,4.5400391,39.1230469,4.7299805,38.8154297,5.1884766c-0.2568359,0.3823242-0.6455078,0.9599609-1.6816406,1.9887695
|
413
|
+
c-2.1591797,2.1455078-0.3271484,9.2856445-0.3076172,9.3579102l2.6171875,15.2807617
|
414
|
+
c0.2431641-0.6445313,0.5136719-1.6386719,0.3916016-2.6611328c-0.3867188-3.2314453-0.7255859-5.2958984-0.9736328-6.8037109
|
415
|
+
C38.5498047,20.453125,38.3935547,19.5,38.5009766,18.3549805c0.0869141-0.9228516,0.203125-1.5102539,0.3271484-2.1323242
|
416
|
+
c0.0732422-0.3652344,0.1474609-0.7392578,0.2177734-1.1982422c0.0488281-0.3198242,0.0205078-0.7070313-0.0087891-1.1171875
|
417
|
+
c-0.0322266-0.4345703-0.0644531-0.8837891-0.0195313-1.3457031l0.1884766-1.9243164l0.3222656,1.9990234
|
418
|
+
c0.2109375,1.3173828,0.3945313,2.465332,1.6826172,2.9990234c0.0605469-0.1767578,0.1630859-0.4238281,0.3232422-0.6987305
|
419
|
+
l0.1425781-0.2446289l0.2255859,0.171875c0.7011719,0.5371094,1.2988281,0.621582,1.6494141,0.6069336
|
420
|
+
c-0.0761719-0.4052734-0.1113281-0.9726563,0.0791016-1.3701172l0.1347656-0.2807617l0.2451172,0.1918945
|
421
|
+
c2.0820313,1.6308594,3.9951172,1.8740234,4.9501953,1.8740234c0.2041016,0,0.359375-0.0112305,0.4550781-0.0209961
|
422
|
+
c1.7910156-3.1508789,2.3125-7.4589844,2.2695313-7.8364258l-0.0898438-0.7763672l0.5234375,0.5805664
|
423
|
+
c0.4052734,0.4501953,0.8574219,1.862793,1.3798828,3.4990234c0.5244141,1.6401367,1.1113281,3.4755859,1.6640625,4.3276367
|
424
|
+
c0.2119141-0.3989258,0.5654297-1.2597656,0.7402344-2.7783203l0.2275391-1.9833984l0.2685547,1.9785156
|
425
|
+
c0.1328125,0.9804688,0.1181641,1.7900391,0.0625,2.3818359c0.1269531-0.2817383,0.2441406-0.5878906,0.3398438-0.8393555
|
426
|
+
l0.6269531-1.6083984l-0.0332031,1.4150391c-0.0039063,0.1503906-0.0869141,3.6943359-0.1464844,4.6035156
|
427
|
+
c-0.2597656,3.9858398-0.6933594,6.6708984-0.9804688,8.4472656C56.1142578,28.2333984,56.0029297,28.925293,56,29.3452148
|
428
|
+
c-0.0048828,0.6879883,0.3115234,1.6948242,0.5693359,2.3994141l2.6005859-15.1884766
|
429
|
+
c0.0166016-0.0732422,1.3427734-5.8378906-0.3378906-8.4199219c-0.5029297-0.7734375-0.7919922-1.3964844-1.0234375-1.8974609
|
430
|
+
c-0.4179688-0.9018555-0.6699219-1.4462891-1.7724609-2.0166016c-0.3671875-0.1904297-0.765625-0.4296875-1.1865234-0.6826172
|
431
|
+
c-1.3447266-0.8071289-2.8681641-1.722168-4.4082031-1.722168c-0.4179688,0-0.8212891,0.0703125-1.1992188,0.2089844
|
432
|
+
l-0.1542969,0.0566406l-0.1132813-0.1201172C48.6210938,1.5883789,48.078125,1.3984375,47.3603516,1.3984375z'/>
|
433
|
+
</g>
|
434
|
+
<linearGradient id='SVGID_5_fb76ca38bb8cff584e60141c3497de4f' gradientUnits='userSpaceOnUse' x1='44.8803482' y1='3.75' x2='44.8803482' y2='15.0625'>
|
435
|
+
<stop offset='0' style='stop-color:#8C6B42'/>
|
436
|
+
<stop offset='0.9955752' style='stop-color:#6E4E30'/>
|
437
|
+
</linearGradient>
|
438
|
+
<path style='fill:url(#SVGID_5_fb76ca38bb8cff584e60141c3497de4f);' d='M46,3.75c0,0-5.9166679,5.416667,0.3028374,11.3125
|
439
|
+
C46.3028374,15.0625,42.4271431,9.625,46,3.75z'/>
|
440
|
+
<linearGradient id='SVGID_6_fb76ca38bb8cff584e60141c3497de4f' gradientUnits='userSpaceOnUse' x1='54.2205009' y1='4.6841831' x2='54.2205009' y2='14.4375'>
|
441
|
+
<stop offset='0' style='stop-color:#8C6B42'/>
|
442
|
+
<stop offset='0.9955752' style='stop-color:#6E4E30'/>
|
443
|
+
</linearGradient>
|
444
|
+
<path style='fill:url(#SVGID_6_fb76ca38bb8cff584e60141c3497de4f);' d='M52.9242249,4.6841831c0,0,3.7007751,2.2741504,2.2592125,9.7533169
|
445
|
+
C55.1834373,14.4375,54.8484497,8.9933662,52.9242249,4.6841831z'/>
|
446
|
+
<linearGradient id='SVGID_7_fb76ca38bb8cff584e60141c3497de4f' gradientUnits='userSpaceOnUse' x1='37.5238304' y1='7.375' x2='37.5238304' y2='23.5900002'>
|
447
|
+
<stop offset='0' style='stop-color:#8C6B42'/>
|
448
|
+
<stop offset='0.9955752' style='stop-color:#6E4E30'/>
|
449
|
+
</linearGradient>
|
450
|
+
<path style='fill:url(#SVGID_7_fb76ca38bb8cff584e60141c3497de4f);' d='M37.9583321,7.375c0,0-3.6120834,0.395,0.577919,16.2150002
|
451
|
+
C38.5362511,23.5900002,36,10.3985367,37.9583321,7.375z'/>
|
452
|
+
<linearGradient id='SVGID_8_fb76ca38bb8cff584e60141c3497de4f' gradientUnits='userSpaceOnUse' x1='58.274437' y1='8' x2='58.274437' y2='24'>
|
453
|
+
<stop offset='0' style='stop-color:#8C6B42'/>
|
454
|
+
<stop offset='0.9955752' style='stop-color:#6E4E30'/>
|
455
|
+
</linearGradient>
|
456
|
+
<path style='fill:url(#SVGID_8_fb76ca38bb8cff584e60141c3497de4f);' d='M57.8125,8c0,0,2.2761269,2.833333-0.5625,16C57.25,24,61.4583321,9.666667,57.8125,8z'/>
|
457
|
+
<linearGradient id='SVGID_9_fb76ca38bb8cff584e60141c3497de4f' gradientUnits='userSpaceOnUse' x1='40.3165169' y1='6.3595743' x2='40.3165169' y2='14.791667'>
|
458
|
+
<stop offset='0' style='stop-color:#8C6B42'/>
|
459
|
+
<stop offset='0.9955752' style='stop-color:#6E4E30'/>
|
460
|
+
</linearGradient>
|
461
|
+
<path style='fill:url(#SVGID_9_fb76ca38bb8cff584e60141c3497de4f);' d='M40.75,6.3595743c0,0-2.7916679,3.3904257,0.2916679,8.4320927
|
462
|
+
C41.0416679,14.791667,40,9.1566486,40.75,6.3595743z'/>
|
463
|
+
</g>
|
464
|
+
</g>
|
465
|
+
<g>
|
466
|
+
</g>
|
467
|
+
<g>
|
468
|
+
</g>
|
469
|
+
<g>
|
470
|
+
</g>
|
471
|
+
<g>
|
472
|
+
</g>
|
473
|
+
<g>
|
474
|
+
</g>
|
475
|
+
<g>
|
476
|
+
</g>
|
477
|
+
<g>
|
478
|
+
<g>
|
479
|
+
<linearGradient id='SVGID_1_0011f24705268f84c72dcd01dce2e5c4' gradientUnits='userSpaceOnUse' x1='16' y1='58.8956757' x2='16' y2='86'>
|
480
|
+
<stop offset='0' style='stop-color:#1EA839'/>
|
481
|
+
<stop offset='1' style='stop-color:#006934'/>
|
482
|
+
</linearGradient>
|
483
|
+
<path style='fill:url(#SVGID_1_0011f24705268f84c72dcd01dce2e5c4);' d='M21.25,58.8956757c0,0,8.75,0,8.75,10.5S30,86,30,86H2c0,0,0-6.1043243,0-16.6043243
|
484
|
+
s8.75-10.5,8.75-10.5H21.25z'/>
|
485
|
+
<path style='fill:#231815;' d='M30.25,86.25H1.75V69.3955078c0-10.6269531,8.9101563-10.75,9-10.75h10.5
|
486
|
+
c0.0898438,0,9,0.1230469,9,10.75V86.25z M2.25,85.75h27.5V69.3955078c0-10.1337891-8.152832-10.25-8.5-10.25h-10.5
|
487
|
+
c-0.3466797,0.0009766-8.5,0.1308594-8.5,10.25V85.75z'/>
|
488
|
+
</g>
|
489
|
+
<g>
|
490
|
+
<g>
|
491
|
+
<path style='fill:#FFB743;' d='M20.3087234,52.5150337H16h-4.30867c0,0-0.2121811,5.3482018-0.94133,6.3386116
|
492
|
+
c0,0,1.859375,1.5185928,5.25,1.5185928s5.25-1.5185928,5.25-1.5185928
|
493
|
+
C20.5208511,57.8632355,20.3087234,52.5150337,20.3087234,52.5150337z'/>
|
494
|
+
<path style='fill:#231815;' d='M16,60.6220703c-3.4399414,0-5.3295898-1.5107422-5.4082031-1.5751953l-0.184082-0.1503906
|
495
|
+
l0.1411133-0.1914063c0.5605469-0.7617188,0.8344727-4.734375,0.8925781-6.2001953l0.0097656-0.2402344h9.0976563
|
496
|
+
l0.0097656,0.2402344c0.0581055,1.4658203,0.3320313,5.4384766,0.8925781,6.2001953l0.1411133,0.1914063l-0.184082,0.1503906
|
497
|
+
C21.3295898,59.1113281,19.4404297,60.6220703,16,60.6220703z M11.0791016,58.7822266
|
498
|
+
C11.6030273,59.1337891,13.3144531,60.1220703,16,60.1220703s4.3969727-0.9882813,4.9208984-1.3398438
|
499
|
+
c-0.5893555-1.2382813-0.8017578-4.9482422-0.8515625-6.0175781h-8.1386719
|
500
|
+
C11.8808594,53.8339844,11.668457,57.5439453,11.0791016,58.7822266z'/>
|
501
|
+
</g>
|
502
|
+
<g>
|
503
|
+
<path style='fill:#FFB743;' d='M24.75,45.9985352c0,0,1.75-1.3697052,1.75,2.7394066s-5.25,4.1091118-5.25,4.1091118
|
504
|
+
L24.75,45.9985352z'/>
|
505
|
+
<path style='fill:#231815;' d='M21.25,53.0966797h-0.4086914l3.7548828-7.2958984
|
506
|
+
c0.0351563-0.0273438,0.359375-0.2714844,0.7695313-0.2714844c0.918457,0,1.3842773,1.0791016,1.3842773,3.2089844
|
507
|
+
C26.75,53.046875,21.3051758,53.0966797,21.25,53.0966797z M24.9438477,46.1679688l-3.2753906,6.4091797
|
508
|
+
C22.8779297,52.4824219,26.25,51.9316406,26.25,48.7382813c0-1.7216797-0.3222656-2.7089844-0.8842773-2.7089844
|
509
|
+
C25.1855469,46.0292969,25.0185547,46.1201172,24.9438477,46.1679688z'/>
|
510
|
+
</g>
|
511
|
+
<g>
|
512
|
+
<path style='fill:#FFB743;' d='M7.25,45.9985352c0,0-1.75-1.3697052-1.75,2.7394066s5.25,4.1091118,5.25,4.1091118
|
513
|
+
L7.25,45.9985352z'/>
|
514
|
+
<path style='fill:#231815;' d='M11.1586914,53.0966797H10.75c-0.0551758,0-5.5-0.0498047-5.5-4.3583984
|
515
|
+
c0-2.1298828,0.4658203-3.2089844,1.3842773-3.2089844c0.4101563,0,0.734375,0.2441406,0.7695313,0.2714844l0.0688477,0.0839844
|
516
|
+
L11.1586914,53.0966797z M6.6342773,46.0292969c-0.5620117,0-0.8842773,0.9873047-0.8842773,2.7089844
|
517
|
+
c0,3.1982422,3.3725586,3.7460938,4.581543,3.8388672l-3.2753906-6.4091797
|
518
|
+
C6.9819336,46.1210938,6.8144531,46.0292969,6.6342773,46.0292969z'/>
|
519
|
+
</g>
|
520
|
+
<g>
|
521
|
+
<path style='fill:#FFB743;' d='M16,35.85746c-5.0031185,0-9.3939781,1.3880348-8.3385315,11.6502342
|
522
|
+
C8.5300827,55.9528351,14.1274948,57.7016563,16,57.7016563s7.4699173-1.7488213,8.3385315-10.1939621
|
523
|
+
C25.3940296,37.2454948,21.0031185,35.85746,16,35.85746z'/>
|
524
|
+
<path style='fill:#231815;' d='M16,57.9511719c-2.090332,0-7.7080078-1.8710938-8.5869141-10.4179688
|
525
|
+
c-0.4785156-4.6513672,0.1147461-7.828125,1.8139648-9.7109375C10.9985352,35.859375,13.7773438,35.6074219,16,35.6074219
|
526
|
+
s5.0014648,0.2519531,6.7729492,2.2148438c1.6992188,1.8828125,2.2924805,5.0595703,1.8139648,9.7109375
|
527
|
+
C23.7080078,56.0800781,18.090332,57.9511719,16,57.9511719z M16,36.1074219
|
528
|
+
c-2.2509766,0-4.7714844,0.2431641-6.4018555,2.0498047c-1.5991211,1.7724609-2.1508789,4.8222656-1.6879883,9.3251953
|
529
|
+
c0.8413086,8.1777344,6.125,9.96875,8.0898438,9.96875s7.2485352-1.7910156,8.0898438-9.96875
|
530
|
+
c0.4628906-4.5029297-0.0888672-7.5527344-1.6879883-9.3251953C20.7714844,36.3505859,18.2509766,36.1074219,16,36.1074219z'/>
|
531
|
+
</g>
|
532
|
+
</g>
|
533
|
+
<g>
|
534
|
+
<path style='fill:#231815;' d='M13.2358208,53.3966942c0,0,1.3820896,0.5656815,2.7641792,0.5656815
|
535
|
+
s2.7641792-0.5656815,2.7641792-0.5656815S18.520834,54.4997673,16,54.4997673S13.2358208,53.3966942,13.2358208,53.3966942z'/>
|
536
|
+
<g>
|
537
|
+
<g>
|
538
|
+
<path style='fill:#F5F5F5;' d='M17.8217258,47.6355438c0-0.32967,0.5181885-1.6939697,2.2311516-1.6939697
|
539
|
+
c1.7129612,0,2.4878292,1.3346405,2.4878292,1.3346405s-0.9360542,1.2744179-2.487978,1.2490997
|
540
|
+
C19.4077682,48.5147934,17.8217258,47.9652138,17.8217258,47.6355438z'/>
|
541
|
+
<ellipse style='fill:#231815;' cx='19.9640255' cy='47.1121788' rx='1.1944865' ry='1.3615568'/>
|
542
|
+
<ellipse style='fill:#3E3A39;' cx='19.9640255' cy='47.1121788' rx='0.9305195' ry='1.141019'/>
|
543
|
+
<ellipse style='fill:#231815;' cx='19.9640255' cy='47.1121788' rx='0.4513893' ry='0.5535012'/>
|
544
|
+
<path style='fill:#231815;' d='M20.0528774,45.7044296c-1.8471889,0.1684265-2.4272671,1.6621246-2.4878311,1.9311104
|
545
|
+
c0.1840076-0.1980743,1.1390972-1.4954262,2.3989792-1.4784775c1.589447,0.0213814,2.3002567,1.1760178,2.3002567,1.1760178
|
546
|
+
c-0.0219822,0.0342674-0.5189648,0.7407761-0.5189648,0.7407761s0.6877422-0.4030495,1.2657566-0.9450645
|
547
|
+
C23.0110741,47.1287918,21.9000645,45.5360031,20.0528774,45.7044296z'/>
|
548
|
+
<ellipse style='fill:#FFFFFF;' cx='19.2792015' cy='46.6207237' rx='0.3225295' ry='0.2886593'/>
|
549
|
+
</g>
|
550
|
+
<g>
|
551
|
+
<path style='fill:#F5F5F5;' d='M14.1782732,47.6355438c0-0.32967-0.5181866-1.6939697-2.2311497-1.6939697
|
552
|
+
s-2.4878311,1.3346405-2.4878311,1.3346405s0.9360542,1.2744179,2.4879799,1.2490997
|
553
|
+
C12.5922308,48.5147934,14.1782732,47.9652138,14.1782732,47.6355438z'/>
|
554
|
+
<ellipse style='fill:#231815;' cx='12.0359745' cy='47.1121788' rx='1.1944865' ry='1.3615568'/>
|
555
|
+
<ellipse style='fill:#3E3A39;' cx='12.0359745' cy='47.1121788' rx='0.9305195' ry='1.141019'/>
|
556
|
+
<ellipse style='fill:#231815;' cx='12.0359745' cy='47.1121788' rx='0.4513893' ry='0.5535012'/>
|
557
|
+
<path style='fill:#231815;' d='M11.9471235,45.7044296c1.8471889,0.1684265,2.4272661,1.6621246,2.4878311,1.9311104
|
558
|
+
c-0.1840076-0.1980743-1.1390991-1.4954262-2.3989801-1.4784775c-1.589447,0.0213814-2.3002558,1.1760178-2.3002558,1.1760178
|
559
|
+
c0.0219812,0.0342674,0.5189638,0.7407761,0.5189638,0.7407761s-0.6877422-0.4030495-1.2657566-0.9450645
|
560
|
+
C8.9889259,47.1287918,10.0999346,45.5360031,11.9471235,45.7044296z'/>
|
561
|
+
<ellipse style='fill:#FFFFFF;' cx='11.3511515' cy='46.6207237' rx='0.3225295' ry='0.2886593'/>
|
562
|
+
</g>
|
563
|
+
</g>
|
564
|
+
<g>
|
565
|
+
<path style='fill:#231815;' d='M14.9534931,44.7603073c0,0-2.5738401-2.3746033-5.8547792-0.2426949
|
566
|
+
c0,0,2.2344332-0.8078537,4.8931246,0.5140877C13.9918385,45.0317001,14.6565123,45.1152725,14.9534931,44.7603073z'/>
|
567
|
+
<path style='fill:#231815;' d='M17.0465069,44.7603073c0,0,2.5738392-2.3746033,5.8547783-0.2426949
|
568
|
+
c0,0-2.2344322-0.8078537-4.8931236,0.5140877C18.0081615,45.0317001,17.3434887,45.1152725,17.0465069,44.7603073z'/>
|
569
|
+
</g>
|
570
|
+
<linearGradient id='SVGID_2_0011f24705268f84c72dcd01dce2e5c4' gradientUnits='userSpaceOnUse' x1='15.5220461' y1='51.5990181' x2='15.5220461' y2='48.4343414'>
|
571
|
+
<stop offset='0' style='stop-color:#FFFFFF;stop-opacity:0.05'/>
|
572
|
+
<stop offset='0.5' style='stop-color:#FFFFFF;stop-opacity:0.4'/>
|
573
|
+
<stop offset='1' style='stop-color:#FFFFFF;stop-opacity:0.05'/>
|
574
|
+
</linearGradient>
|
575
|
+
<path style='fill:url(#SVGID_2_0011f24705268f84c72dcd01dce2e5c4);' d='M16.0000057,50.0166817c0,0.8739014-0.5712309,1.5823364-0.8270073,1.5823364
|
576
|
+
s-0.075633-0.9817696,0.0661602-1.8295784c0.1323214-0.7911682,0.240428-1.3350983,0.4962044-1.3350983
|
577
|
+
S16.0000057,49.1427803,16.0000057,50.0166817z'/>
|
578
|
+
</g>
|
579
|
+
<g>
|
580
|
+
<g>
|
581
|
+
<linearGradient id='SVGID_3_0011f24705268f84c72dcd01dce2e5c4' gradientUnits='userSpaceOnUse' x1='15.970439' y1='32.9825096' x2='15.970439' y2='51.3264198'>
|
582
|
+
<stop offset='0.1504425' style='stop-color:#714E2D'/>
|
583
|
+
<stop offset='0.9955752' style='stop-color:#312214'/>
|
584
|
+
</linearGradient>
|
585
|
+
<path style='fill:url(#SVGID_3_0011f24705268f84c72dcd01dce2e5c4);' d='M22.5838566,34.8822479c-1.5881805-0.8247185-5.9077015-3.2587223-7.6338682-0.8912773
|
586
|
+
c-1.6175852-1.7141266-5.1308079,0.6007767-7.4466305,2.7653732c-3.0424204,2.84375-1.4926567,10.1245079-1.4926567,10.1245079
|
587
|
+
l2.4869976,4.4455681L8.4014721,48.98172L8.125,46.8923111L8.3984375,45.26371
|
588
|
+
c0.0652933-0.3944206-0.0182295-2.6922607,0.3098955-4.0776787c0.4242735,3.71875,1.75,4.3511124,1.75,4.3511124
|
589
|
+
S10.057292,42.1546631,10.75,39.9464493c0.182292,3.7552071,2.3234758,5.5906944,2.3234758,5.5906944
|
590
|
+
s-0.4746981-2.3256645-0.3911839-5.4813194c1.130208,3.71875,4.3294268,6.2680969,4.3294268,6.2680969
|
591
|
+
C17.75,44.2428741,17.75,41.0037384,17.75,41.0037384l1.4462223,4.8333473c0,0,0.776165-1.9675407,0.4921875-6.753067
|
592
|
+
c0.5772152,1.2270126,1.6086922,5.0223045,1.9494705,6.2279091c0,0,0.8881607-1.1798363,1.1261692-3.2520943
|
593
|
+
c0.2469273,1.8237381,1.2203255,4.4326363,1.2203255,4.4326363L23.65625,48.76371l-0.1535168,2.5627098l2.4865646-4.4455681
|
594
|
+
C25.9892979,46.8808517,27.9045124,37.6451836,22.5838566,34.8822479z'/>
|
595
|
+
<path style='fill:#2E1E15;' d='M23.1879883,52.4013672l0.21875-3.6523438l0.3212891-2.2294922
|
596
|
+
c-0.1152344-0.3134766-0.6245117-1.7314453-0.9624023-3.140625c-0.3564453,1.3105469-0.8989258,2.0439453-0.9282227,2.0830078
|
597
|
+
l-0.3032227,0.4023438l-0.2788086-0.9902344c-0.2919922-1.0449219-0.8041992-2.8769531-1.2578125-4.2519531
|
598
|
+
c0.0576172,3.6689453-0.5400391,5.2333984-0.5688477,5.3066406l-0.2646484,0.671875l-1.2246094-4.0917969
|
599
|
+
c-0.0800781,1.1347656-0.2646484,2.6943359-0.6918945,3.8994141l-0.1176758,0.3300781l-0.2739258-0.21875
|
600
|
+
c-0.1171875-0.0927734-2.5649414-2.0693359-3.9267578-5.0996094c0.0522461,2.3847656,0.3852539,4.0478516,0.3891602,4.0673828
|
601
|
+
l0.1455078,0.7138672l-0.5532227-0.4746094c-0.0776367-0.0664063-1.6499023-1.4453125-2.2192383-4.2314453
|
602
|
+
c-0.2265625,1.9189453,0.012207,3.9863281,0.0151367,4.0126953l0.0537109,0.4501953l-0.409668-0.1953125
|
603
|
+
c-0.0493164-0.0234375-1.0332031-0.5224609-1.6088867-2.9121094c-0.0380859,0.5771484-0.0498047,1.1523438-0.059082,1.6083984
|
604
|
+
c-0.0087891,0.4267578-0.0146484,0.7080078-0.0375977,0.8457031l-0.2670898,1.5927734l0.2714844,2.0507813l0.140625,3.4130859
|
605
|
+
l-3.0239258-5.4287109c-0.0644531-0.3027344-1.543457-7.4521484,1.5664063-10.359375
|
606
|
+
c0.8608398-0.8046875,3.847168-3.4277344,6.1435547-3.4277344c0.5708008,0,1.0566406,0.1611328,1.4482422,0.4804688
|
607
|
+
c0.5322266-0.5927734,1.28125-0.8935547,2.2304688-0.8935547c1.8681641,0,4.0957031,1.1679688,5.2919922,1.7958984
|
608
|
+
l0.2524414,0.1318359c5.4257813,2.8183594,3.6147461,11.8867188,3.534668,12.2714844l-0.0263672,0.0712891L23.1879883,52.4013672
|
609
|
+
z M6.2480469,46.7929688l1.9570313,3.4980469l-0.0537109-1.2988281l-0.2792969-2.1044922l0.2797852-1.6650391
|
610
|
+
c0.0170898-0.1025391,0.0234375-0.4130859,0.0307617-0.7734375c0.019043-0.9287109,0.0483398-2.3310547,0.2827148-3.3212891
|
611
|
+
l0.3295898-1.3916016l0.1621094,1.4208984c0.246582,2.1611328,0.8027344,3.2373047,1.1923828,3.7451172
|
612
|
+
c-0.0810547-1.109375-0.1591797-3.3701172,0.3618164-5.03125l0.4204102-1.3388672l0.0678711,1.4023438
|
613
|
+
c0.1166992,2.4003906,1.0673828,4.0029297,1.6914063,4.8066406c-0.1347656-0.9628906-0.3125-2.6650391-0.2587891-4.6923828
|
614
|
+
l0.0410156-1.5410156l0.4482422,1.4755859c0.9003906,2.9619141,3.1762695,5.1962891,3.96875,5.90625
|
615
|
+
C17.4926758,43.875,17.5,41.0341797,17.5,41.0039063V39.296875l1.6801758,5.6142578
|
616
|
+
c0.1977539-0.9794922,0.434082-2.8544922,0.2587891-5.8125l-0.0766602-1.2958984l0.5522461,1.1748047
|
617
|
+
c0.5146484,1.0927734,1.3798828,4.1796875,1.8076172,5.7089844c0.269043-0.5117188,0.6518555-1.421875,0.793457-2.6552734
|
618
|
+
l0.2285156-1.9863281l0.2675781,1.9814453c0.2402344,1.7753906,1.1972656,4.3525391,1.2070313,4.3779297l0.0219727,0.0605469
|
619
|
+
l-0.3369141,2.3349609l-0.0864258,1.4521484l1.934082-3.4580078c0.1210938-0.6328125,1.6416016-9.1318359-3.2827148-11.6904297
|
620
|
+
l-0.2539063-0.1328125c-1.1586914-0.6074219-3.3149414-1.7382813-5.0600586-1.7382813
|
621
|
+
c-0.9033203,0-1.5581055,0.296875-2.0024414,0.90625l-0.1772461,0.2431641l-0.206543-0.21875
|
622
|
+
c-0.3286133-0.3486328-0.7514648-0.5175781-1.2924805-0.5175781c-2.1132813,0-4.9750977,2.5205078-5.8017578,3.2929688
|
623
|
+
C4.8754883,39.5546875,6.1376953,46.2392578,6.2480469,46.7929688z'/>
|
624
|
+
</g>
|
625
|
+
<linearGradient id='SVGID_4_0011f24705268f84c72dcd01dce2e5c4' gradientUnits='userSpaceOnUse' x1='15.6050825' y1='35.9931297' x2='15.6050825' y2='45.5371437'>
|
626
|
+
<stop offset='0' style='stop-color:#8F6B3F'/>
|
627
|
+
<stop offset='0.9955752' style='stop-color:#714E2D'/>
|
628
|
+
</linearGradient>
|
629
|
+
<path style='fill:url(#SVGID_4_0011f24705268f84c72dcd01dce2e5c4);' d='M15.1796875,35.9931297c0,0-2.1328125,5.5939445,1.4765625,9.544014
|
630
|
+
C16.65625,45.5371437,14.771554,41.7592049,15.1796875,35.9931297z'/>
|
631
|
+
<linearGradient id='SVGID_5_0011f24705268f84c72dcd01dce2e5c4' gradientUnits='userSpaceOnUse' x1='21.297102' y1='36.4561195' x2='21.297102' y2='44.498085'>
|
632
|
+
<stop offset='0' style='stop-color:#8F6B3F'/>
|
633
|
+
<stop offset='0.9955752' style='stop-color:#714E2D'/>
|
634
|
+
</linearGradient>
|
635
|
+
<path style='fill:url(#SVGID_5_0011f24705268f84c72dcd01dce2e5c4);' d='M20.3086967,36.4561195c0,0,3.2928658,3.2294655,1.3788033,8.0419655
|
636
|
+
C21.6875,44.498085,21.9923935,40.2266541,20.3086967,36.4561195z'/>
|
637
|
+
<linearGradient id='SVGID_6_0011f24705268f84c72dcd01dce2e5c4' gradientUnits='userSpaceOnUse' x1='6.9522572' y1='37.5219688' x2='6.9522572' y2='48.8183975'>
|
638
|
+
<stop offset='0' style='stop-color:#8F6B3F'/>
|
639
|
+
<stop offset='0.9955752' style='stop-color:#714E2D'/>
|
640
|
+
</linearGradient>
|
641
|
+
<path style='fill:url(#SVGID_6_0011f24705268f84c72dcd01dce2e5c4);' d='M7.7421875,37.5219688c0,0-3.5546875,4.9526787,0,11.2964287
|
642
|
+
C7.7421875,48.8183975,5.71875,41.7875938,7.7421875,37.5219688z'/>
|
643
|
+
<linearGradient id='SVGID_7_0011f24705268f84c72dcd01dce2e5c4' gradientUnits='userSpaceOnUse' x1='24.5428448' y1='37.0844688' x2='24.5428448' y2='48.4826927'>
|
644
|
+
<stop offset='0' style='stop-color:#8F6B3F'/>
|
645
|
+
<stop offset='0.9955752' style='stop-color:#714E2D'/>
|
646
|
+
</linearGradient>
|
647
|
+
<path style='fill:url(#SVGID_7_0011f24705268f84c72dcd01dce2e5c4);' d='M23.875,37.0844688c0,0,2.5338535,4.5314865,0.6216545,11.3982239
|
648
|
+
C24.4966545,48.4826927,25.4609375,39.9282188,23.875,37.0844688z'/>
|
649
|
+
<linearGradient id='SVGID_8_0011f24705268f84c72dcd01dce2e5c4' gradientUnits='userSpaceOnUse' x1='9.8418369' y1='36.4561195' x2='9.8418369' y2='43.3735313'>
|
650
|
+
<stop offset='0' style='stop-color:#8F6B3F'/>
|
651
|
+
<stop offset='0.9955752' style='stop-color:#714E2D'/>
|
652
|
+
</linearGradient>
|
653
|
+
<path style='fill:url(#SVGID_8_0011f24705268f84c72dcd01dce2e5c4);' d='M10.421875,36.4561195c0,0-1.9809504,2.0603142-0.765625,6.9174118
|
654
|
+
C9.65625,43.3735313,9.6015625,37.6324539,10.421875,36.4561195z'/>
|
655
|
+
</g>
|
656
|
+
</g>
|
657
|
+
<g>
|
658
|
+
</g>
|
659
|
+
<g>
|
660
|
+
</g>
|
661
|
+
<g>
|
662
|
+
</g>
|
663
|
+
<g>
|
664
|
+
</g>
|
665
|
+
<g>
|
666
|
+
</g>
|
667
|
+
<g>
|
668
|
+
</g>
|
669
|
+
<g>
|
670
|
+
<g>
|
671
|
+
<linearGradient id='SVGID_1_b7bb357c44262fd0102ebaea244fbdfd' gradientUnits='userSpaceOnUse' x1='48' y1='60.0282974' x2='48' y2='86'>
|
672
|
+
<stop offset='0' style='stop-color:#E14FA1'/>
|
673
|
+
<stop offset='1' style='stop-color:#EB1142'/>
|
674
|
+
</linearGradient>
|
675
|
+
<path style='fill:url(#SVGID_1_b7bb357c44262fd0102ebaea244fbdfd);' d='M52.5,60.0282974c0,0,7.5,0.4862747,7.5,10.3591232S60,86,60,86H36
|
676
|
+
c0,0,0-5.7397232,0-15.6125793s7.5-10.3591232,7.5-10.3591232H52.5z'/>
|
677
|
+
<path style='fill:#231815;' d='M60.25,86.25h-24.5V70.3876953c0-9.9921875,7.65625-10.6035156,7.7333984-10.6083984
|
678
|
+
L52.5,59.7783203c0.09375,0.0058594,7.75,0.6171875,7.75,10.609375V86.25z M36.25,85.75h23.5V70.3876953
|
679
|
+
c0-9.5117188-6.9697266-10.0898438-7.2666016-10.1103516L43.5,60.2783203c-0.2802734,0.0195313-7.25,0.5976563-7.25,10.109375
|
680
|
+
V85.75z'/>
|
681
|
+
</g>
|
682
|
+
<g>
|
683
|
+
<g>
|
684
|
+
<path style='fill:#FFB743;' d='M51.4298248,54.5150337H48h-3.4297829c0,0-0.1688995,4.5424919-0.7493134,5.4737434
|
685
|
+
c0,0,1.4800949,1.4278908,4.1790962,1.4278908s4.1790962-1.4278908,4.1790962-1.4278908
|
686
|
+
C51.5986824,59.0575256,51.4298248,54.5150337,51.4298248,54.5150337z'/>
|
687
|
+
<path style='fill:#231815;' d='M48,61.6669922c-2.7685547,0-4.2890625-1.4365234-4.3525391-1.4980469l-0.1455078-0.140625
|
688
|
+
l0.1074219-0.1708984c0.4462891-0.7177734,0.6650391-4.1064453,0.7109375-5.3525391l0.0087891-0.2402344h7.3417969
|
689
|
+
l0.0087891,0.2402344c0.0458984,1.2460938,0.2646484,4.6347656,0.7109375,5.3525391l0.1074219,0.1708984l-0.1455078,0.140625
|
690
|
+
C52.2890625,60.2304688,50.7685547,61.6669922,48,61.6669922z M44.1328125,59.9257813
|
691
|
+
C44.5488281,60.2539063,45.8935547,61.1669922,48,61.1669922s3.4511719-0.9130859,3.8671875-1.2412109
|
692
|
+
c-0.4638672-1.1025391-0.6347656-4.2050781-0.6777344-5.1611328h-6.3789063
|
693
|
+
C44.7675781,55.7207031,44.5966797,58.8232422,44.1328125,59.9257813z'/>
|
694
|
+
</g>
|
695
|
+
<g>
|
696
|
+
<path style='fill:#FFB743;' d='M55.1811218,47.9815559c0,0,1.8735886-1.2636032,1.8735886,2.5272141
|
697
|
+
s-5.6207657,3.7908173-5.6207657,3.7908173L55.1811218,47.9815559z'/>
|
698
|
+
<path style='fill:#231815;' d='M51.4335938,54.5498047h-0.4384766l4.0458984-6.7753906
|
699
|
+
c0.0947266-0.0664063,2.2636719-1.2890625,2.2636719,2.734375
|
700
|
+
C57.3046875,54.5039063,51.4921875,54.5498047,51.4335938,54.5498047z M55.3632813,48.1630859l-3.4775391,5.8642578
|
701
|
+
c1.2939453-0.0986328,4.9189453-0.6318359,4.9189453-3.5185547c0-1.5986328-0.3427734-2.4794922-0.9648438-2.4794922
|
702
|
+
C55.6328125,48.0292969,55.4453125,48.1181641,55.3632813,48.1630859z'/>
|
703
|
+
</g>
|
704
|
+
<g>
|
705
|
+
<path style='fill:#FFB743;' d='M40.8188782,47.9815559c0,0-1.8735886-1.2636032-1.8735886,2.5272141
|
706
|
+
s5.6207657,3.7908173,5.6207657,3.7908173L40.8188782,47.9815559z'/>
|
707
|
+
<path style='fill:#231815;' d='M45.0048828,54.5498047h-0.4384766c-0.0585938,0-5.8710938-0.0458984-5.8710938-4.0410156
|
708
|
+
c0-4.0234375,2.1679688-2.8007813,2.2636719-2.734375l0.0751953,0.0791016L45.0048828,54.5498047z M40.1601563,48.0292969
|
709
|
+
c-0.6220703,0-0.9648438,0.8808594-0.9648438,2.4794922c0,2.8867188,3.625,3.4199219,4.9189453,3.5185547l-3.4775391-5.8632813
|
710
|
+
C40.5546875,48.1181641,40.3662109,48.0292969,40.1601563,48.0292969z'/>
|
711
|
+
</g>
|
712
|
+
<g>
|
713
|
+
<path style='fill:#FFB743;' d='M48,37.8574219c-4.6463623,0-7.3134155,1.2821045-7.3134155,10.5836182
|
714
|
+
c0,3.1785278,0.4978027,5.4829102,1.7301025,6.71521C44.3330688,57.0726318,46.5248413,57.7016602,48,57.7016602
|
715
|
+
s3.6669312-0.6290283,5.583313-2.5454102c1.2322998-1.2322998,1.7301025-3.5366821,1.7301025-6.71521
|
716
|
+
C55.3134155,39.1395264,52.6463623,37.8574219,48,37.8574219z'/>
|
717
|
+
<path style='fill:#231815;' d='M48,57.9511719c-0.7373047,0-3.3300781-0.1884766-5.7597656-2.6181641
|
718
|
+
c-1.2138672-1.2138672-1.8037109-3.4677734-1.8037109-6.8916016c0-9.1582031,2.546875-10.8339844,7.5634766-10.8339844
|
719
|
+
s7.5634766,1.6757813,7.5634766,10.8339844c0,3.4238281-0.5898438,5.6777344-1.8037109,6.8916016
|
720
|
+
C51.3300781,57.7626953,48.7373047,57.9511719,48,57.9511719z M48,38.1074219
|
721
|
+
c-4.1357422,0-7.0634766,0.7412109-7.0634766,10.3339844c0,3.2841797,0.5419922,5.4228516,1.6572266,6.5380859
|
722
|
+
c2.2939453,2.2929688,4.7177734,2.4716797,5.40625,2.4716797s3.1123047-0.1787109,5.40625-2.4716797
|
723
|
+
c1.1152344-1.1152344,1.6572266-3.2539063,1.6572266-6.5380859C55.0634766,38.8486328,52.1357422,38.1074219,48,38.1074219z'/>
|
724
|
+
</g>
|
725
|
+
</g>
|
726
|
+
<g>
|
727
|
+
<path style='fill:#C10D23;' d='M46.0130997,54.2995872c0,0,0.9934502,0.1529007,1.9869003,0.1529007
|
728
|
+
s1.9869003-0.1529007,1.9869003-0.1529007S49.8119812,55.15625,48,55.15625S46.0130997,54.2995872,46.0130997,54.2995872z'/>
|
729
|
+
<g>
|
730
|
+
<g>
|
731
|
+
<path style='fill:#F5F5F5;' d='M46.2907944,49.9984398c0-0.32967-0.472435-1.6939735-2.0341568-1.6939735
|
732
|
+
c-1.5617256,0-2.1003876,1.3346443-2.1003876,1.3346443s0.6854172,1.2490997,2.1005211,1.2490997
|
733
|
+
C45.3489838,50.8882103,46.2907944,50.3281097,46.2907944,49.9984398z'/>
|
734
|
+
<ellipse style='fill:#231815;' cx='44.4164886' cy='49.521637' rx='1.2471797' ry='1.314993'/>
|
735
|
+
<ellipse style='fill:#3E3A39;' cx='44.4164886' cy='49.521637' rx='0.9715682' ry='1.1019974'/>
|
736
|
+
<ellipse style='fill:#231815;' cx='44.4164886' cy='49.521637' rx='0.4713017' ry='0.5345721'/>
|
737
|
+
<path style='fill:#231815;' d='M44.2566376,48.0673256c1.6924973,0,2.2129593,1.6621208,2.268177,1.9311104
|
738
|
+
c-0.1677628-0.1980782-1.0385284-1.49543-2.1871719-1.4784813c-1.4491119,0.0213814-1.993145,1.1760216-1.993145,1.1760216
|
739
|
+
c0.0200424,0.0342636-0.1914635,0.3602333-0.5007477-0.2042923C41.84375,49.491684,42.5208321,48.0673256,44.2566376,48.0673256
|
740
|
+
z'/>
|
741
|
+
<ellipse style='fill:#FFFFFF;' cx='43.8922615' cy='48.9836197' rx='0.304011' ry='0.2886593'/>
|
742
|
+
</g>
|
743
|
+
<g>
|
744
|
+
<path style='fill:#F5F5F5;' d='M49.7092056,49.9984398c0-0.32967,0.472435-1.6939735,2.0341568-1.6939735
|
745
|
+
c1.5617256,0,2.1003876,1.3346443,2.1003876,1.3346443s-0.6854172,1.2490997-2.1005211,1.2490997
|
746
|
+
C50.6510162,50.8882103,49.7092056,50.3281097,49.7092056,49.9984398z'/>
|
747
|
+
<ellipse style='fill:#231815;' cx='51.5835114' cy='49.521637' rx='1.2471797' ry='1.314993'/>
|
748
|
+
<ellipse style='fill:#3E3A39;' cx='51.5835114' cy='49.521637' rx='0.9715682' ry='1.1019974'/>
|
749
|
+
<ellipse style='fill:#231815;' cx='51.5835114' cy='49.521637' rx='0.4713017' ry='0.5345721'/>
|
750
|
+
<path style='fill:#231815;' d='M51.7433624,48.0673256c-1.6924973,0-2.2129593,1.6621208-2.268177,1.9311104
|
751
|
+
c0.1677628-0.1980782,1.0385284-1.49543,2.1871719-1.4784813c1.4491119,0.0213814,1.993145,1.1760216,1.993145,1.1760216
|
752
|
+
c-0.0200424,0.0342636,0.1914635,0.3602333,0.5007477-0.2042923
|
753
|
+
C54.15625,49.491684,53.4791679,48.0673256,51.7433624,48.0673256z'/>
|
754
|
+
<ellipse style='fill:#FFFFFF;' cx='51.0592842' cy='48.9836197' rx='0.304011' ry='0.2886593'/>
|
755
|
+
</g>
|
756
|
+
</g>
|
757
|
+
<g>
|
758
|
+
<path style='fill:#231815;' d='M46.626503,47.1231995c0,0-1.4070663-2.1969643-3.7289619-0.1023674
|
759
|
+
C42.897541,47.0208321,44.971859,46.1008415,46.626503,47.1231995z'/>
|
760
|
+
<path style='fill:#231815;' d='M49.373497,47.1231995c0,0,1.4070663-2.1969643,3.7289619-0.1023674
|
761
|
+
C53.102459,47.0208321,51.028141,46.1008415,49.373497,47.1231995z'/>
|
762
|
+
</g>
|
763
|
+
<linearGradient id='SVGID_2_b7bb357c44262fd0102ebaea244fbdfd' gradientUnits='userSpaceOnUse' x1='47.5494881' y1='52.7635841' x2='47.5494881' y2='50.6150398'>
|
764
|
+
<stop offset='0' style='stop-color:#FFFFFF;stop-opacity:0.05'/>
|
765
|
+
<stop offset='0.5' style='stop-color:#FFFFFF;stop-opacity:0.4'/>
|
766
|
+
<stop offset='1' style='stop-color:#FFFFFF;stop-opacity:0.05'/>
|
767
|
+
</linearGradient>
|
768
|
+
<path style='fill:url(#SVGID_2_b7bb357c44262fd0102ebaea244fbdfd);' d='M48.0000038,51.689312c0,0.5933037-0.5384331,1.0742722-0.7795219,1.0742722
|
769
|
+
s-0.0712891-0.6665344,0.0623627-1.2421265c0.1247215-0.5371361,0.2266235-0.9064178,0.4677124-0.9064178
|
770
|
+
C47.9916496,50.6150398,48.0000038,51.0960083,48.0000038,51.689312z'/>
|
771
|
+
</g>
|
772
|
+
<g>
|
773
|
+
<g>
|
774
|
+
<linearGradient id='SVGID_3_b7bb357c44262fd0102ebaea244fbdfd' gradientUnits='userSpaceOnUse' x1='48.1695824' y1='37.5421906' x2='48.1695824' y2='57.1821823'>
|
775
|
+
<stop offset='0.1504425' style='stop-color:#714E2D'/>
|
776
|
+
<stop offset='0.9955752' style='stop-color:#312214'/>
|
777
|
+
</linearGradient>
|
778
|
+
<path style='fill:url(#SVGID_3_b7bb357c44262fd0102ebaea244fbdfd);' d='M56.5148888,42.7835693c-1.6398888-5.2413788-4.6395836-4.2987061-4.6395836-4.2987061
|
779
|
+
S44.8526001,35.25,41.0625,40.7651367c-3.6450195,5.303894-0.1289673,16.4170456-0.1289673,16.4170456
|
780
|
+
s-0.7893448-13.8631096,3.8724594-15.8905144c0,0-1.4202309,1.625-1.4202499,4.9362984
|
781
|
+
c0,0,3.0561523-2.9832764,5.5744629-4.8015137C48.2313232,43.5828247,48.75,46.5,48.75,46.5
|
782
|
+
c2.4879761-2.75,2.8633423-5.4583321,2.8633423-5.4583321S53.0670776,44.2956543,53.5,46.5586548
|
783
|
+
c0,0,0.65625-0.9093819,0.9541931-2.2988548c0,0,1.2444763,4.711628,0.8587952,12.6814766
|
784
|
+
C55.3129883,56.9412766,57.9203911,47.2757988,56.5148888,42.7835693z'/>
|
785
|
+
<path style='fill:#2E1E15;' d='M54.9511719,59.2421875l0.1113281-2.3125c0.28125-5.7998047-0.3125-9.890625-0.6445313-11.6464844
|
786
|
+
c-0.3164063,0.8632813-0.6943359,1.3925781-0.7148438,1.421875l-0.3398438,0.4697266l-0.1083984-0.5693359
|
787
|
+
c-0.3027344-1.5800781-1.1220703-3.6787109-1.5693359-4.7568359c-0.2880859,1.0185547-1.0146484,2.9013672-2.75,4.8193359
|
788
|
+
l-0.3427734,0.3779297l-0.0888672-0.5019531c-0.0195313-0.109375-0.4208984-2.4277344,0.0244141-4.484375
|
789
|
+
c-2.3457031,1.7939453-4.9394531,4.3193359-4.9677734,4.3466797l-0.4248047,0.4150391v-0.59375
|
790
|
+
c0-1.8955078,0.4511719-3.2519531,0.8554688-4.0869141c-3.4316406,3.2724609-2.8154297,14.9013672-2.8076172,15.0273438
|
791
|
+
l0.1132813,1.9902344l-0.6015625-1.9003906c-0.1455078-0.4580078-3.5107422-11.2910156,0.1611328-16.6337891
|
792
|
+
c1.5195313-2.2109375,3.7041016-3.3320313,6.4931641-3.3320313c2.2558594,0,4.1337891,0.7509766,4.5478516,0.9287109
|
793
|
+
c0.1044922-0.0224609,0.2861328-0.0527344,0.5263672-0.0527344c1.0869141,0,3.09375,0.5898438,4.3291016,4.5410156
|
794
|
+
c1.4111328,4.5097656-1.0917969,13.9003906-1.1992188,14.2978516L54.9511719,59.2421875z M47.3496094,37.7919922
|
795
|
+
c-2.6142578,0-4.6611328,1.0478516-6.0810547,3.1152344c-2.6005859,3.7841797-1.4453125,10.7089844-0.6396484,14.1484375
|
796
|
+
c-0.015625-4.0214844,0.4042969-12.3955078,4.0771484-13.9931641l1.0078125-0.4384766l-0.7197266,0.8320313
|
797
|
+
c-0.0126953,0.0146484-1.1875,1.4052734-1.3417969,4.1699219C44.59375,44.734375,46.8730469,42.625,48.8134766,41.2236328
|
798
|
+
l0.6328125-0.4570313l-0.2490234,0.7402344c-0.5166016,1.5283203-0.3828125,3.484375-0.2753906,4.4130859
|
799
|
+
c2.0849609-2.5087891,2.4404297-4.8876953,2.4433594-4.9121094l0.1220703-0.8613281l0.3544922,0.7939453
|
800
|
+
c0.0546875,0.1210938,1.2285156,2.7626953,1.765625,4.9443359c0.2001953-0.3886719,0.4501953-0.9697266,0.6025391-1.6777344
|
801
|
+
l0.21875-1.0224609l0.2675781,1.0117188c0.0107422,0.0419922,0.9941406,3.8535156,0.9375,10.2851563
|
802
|
+
c0.6689453-3.1425781,1.5839844-8.6123047,0.6425781-11.6240234c-1.140625-3.6445313-2.9033203-4.1894531-3.8525391-4.1894531
|
803
|
+
c-0.2910156,0-0.4736328,0.0546875-0.4755859,0.0556641l-0.0898438,0.0273438l-0.0878906-0.0390625
|
804
|
+
C51.7509766,38.7021484,49.7412109,37.7919922,47.3496094,37.7919922z'/>
|
805
|
+
</g>
|
806
|
+
<linearGradient id='SVGID_4_b7bb357c44262fd0102ebaea244fbdfd' gradientUnits='userSpaceOnUse' x1='40.9321938' y1='40.8606987' x2='40.9321938' y2='51.0394821'>
|
807
|
+
<stop offset='0' style='stop-color:#8F6B3F'/>
|
808
|
+
<stop offset='0.9955752' style='stop-color:#714E2D'/>
|
809
|
+
</linearGradient>
|
810
|
+
<path style='fill:url(#SVGID_4_b7bb357c44262fd0102ebaea244fbdfd);' d='M41.84375,40.8606987c0,0-2.59375,2.3432693-1.59375,10.1787834
|
811
|
+
C40.25,51.0394821,40.5,43.7838936,41.84375,40.8606987z'/>
|
812
|
+
<linearGradient id='SVGID_5_b7bb357c44262fd0102ebaea244fbdfd' gradientUnits='userSpaceOnUse' x1='55.5829849' y1='40.8606987' x2='55.5829849' y2='49.998436'>
|
813
|
+
<stop offset='0' style='stop-color:#8F6B3F'/>
|
814
|
+
<stop offset='0.9955752' style='stop-color:#714E2D'/>
|
815
|
+
</linearGradient>
|
816
|
+
<path style='fill:url(#SVGID_5_b7bb357c44262fd0102ebaea244fbdfd);' d='M54.75,40.8606987c0,0,2.5,1.9486732,1.375,9.1377373
|
817
|
+
C56.125,49.998436,56.125,43.8463936,54.75,40.8606987z'/>
|
818
|
+
<linearGradient id='SVGID_6_b7bb357c44262fd0102ebaea244fbdfd' gradientUnits='userSpaceOnUse' x1='45.3830643' y1='40.2835999' x2='45.3830643' y2='44.75'>
|
819
|
+
<stop offset='0' style='stop-color:#8F6B3F'/>
|
820
|
+
<stop offset='0.9955752' style='stop-color:#714E2D'/>
|
821
|
+
</linearGradient>
|
822
|
+
<path style='fill:url(#SVGID_6_b7bb357c44262fd0102ebaea244fbdfd);' d='M46.626503,40.2835999c0,0-2.0972481,1.9664001-2.4868736,4.4664001
|
823
|
+
C44.1396294,44.75,46.2530098,41.5671997,46.626503,40.2835999z'/>
|
824
|
+
<linearGradient id='SVGID_7_b7bb357c44262fd0102ebaea244fbdfd' gradientUnits='userSpaceOnUse' x1='49.8644905' y1='40.0810204' x2='49.8644905' y2='43.7798004'>
|
825
|
+
<stop offset='0' style='stop-color:#8F6B3F'/>
|
826
|
+
<stop offset='0.9955752' style='stop-color:#714E2D'/>
|
827
|
+
</linearGradient>
|
828
|
+
<path style='fill:url(#SVGID_7_b7bb357c44262fd0102ebaea244fbdfd);' d='M50.3125,40.0810204c0,0-1.0416641,1.856987-0.939003,3.6987801
|
829
|
+
C49.373497,43.7798004,50.625,41.2245407,50.3125,40.0810204z'/>
|
830
|
+
<linearGradient id='SVGID_8_b7bb357c44262fd0102ebaea244fbdfd' gradientUnits='userSpaceOnUse' x1='53.3399925' y1='40.0810204' x2='53.3399925' y2='44.75'>
|
831
|
+
<stop offset='0' style='stop-color:#8F6B3F'/>
|
832
|
+
<stop offset='0.9955752' style='stop-color:#714E2D'/>
|
833
|
+
</linearGradient>
|
834
|
+
<path style='fill:url(#SVGID_8_b7bb357c44262fd0102ebaea244fbdfd);' d='M52.6142387,40.0810204c0,0,2.3456421,1.2719879,1.0732613,4.6689796
|
835
|
+
C53.6875,44.75,54.0879593,41.9601517,52.6142387,40.0810204z'/>
|
836
|
+
</g>
|
837
|
+
</g>
|
838
|
+
<g>
|
839
|
+
</g>
|
840
|
+
<g>
|
841
|
+
</g>
|
842
|
+
<g>
|
843
|
+
</g>
|
844
|
+
<g>
|
845
|
+
</g>
|
846
|
+
<g>
|
847
|
+
</g>
|
848
|
+
<g>
|
849
|
+
</g>
|
850
|
+
<g>
|
851
|
+
<g>
|
852
|
+
<linearGradient id='SVGID_1_5dfcf6efac84c388a05c744534d1e4ff' gradientUnits='userSpaceOnUse' x1='32' y1='61.4627419' x2='32' y2='82'>
|
853
|
+
<stop offset='0' style='stop-color:#FFFFFF'/>
|
854
|
+
<stop offset='1' style='stop-color:#FF7D7D'/>
|
855
|
+
</linearGradient>
|
856
|
+
<path style='fill:url(#SVGID_1_5dfcf6efac84c388a05c744534d1e4ff);' d='M35.332756,61.4627419c0,0,5.5545921,0.5407257,5.5545921,7.206234
|
857
|
+
c0,10.9679337,0,13.3310242,0,13.3310242H23.1126518c0,0,0-2.3630905,0-13.3310242
|
858
|
+
c0-6.6655083,5.5545921-7.206234,5.5545921-7.206234H35.332756z'/>
|
859
|
+
<path style='fill:#231815;' d='M41.1376953,82.25H22.862793V68.6689453c0-6.8134766,5.7226563-7.4492188,5.7802734-7.4550781
|
860
|
+
l6.6899414-0.0009766c0.0820313,0.0068359,5.8046875,0.6425781,5.8046875,7.4560547V82.25z M23.362793,81.75h17.2749023
|
861
|
+
V68.6689453c0-6.3505859-5.1113281-6.9355469-5.3291016-6.9570313l-6.6411133,0.0009766
|
862
|
+
c-0.1928711,0.0205078-5.3046875,0.6054688-5.3046875,6.9560547V81.75z'/>
|
863
|
+
</g>
|
864
|
+
<g>
|
865
|
+
<g>
|
866
|
+
<path style='fill:#FFB743;' d='M34.5401688,55.3379555H32h-2.5401382c0,0-0.1250896,5.0463371-0.5549526,6.080883
|
867
|
+
c0,0,1.0961781,1.5862694,3.0950909,1.5862694s3.0950928-1.5862694,3.0950928-1.5862694
|
868
|
+
C34.665226,60.3842926,34.5401688,55.3379555,34.5401688,55.3379555z'/>
|
869
|
+
<path style='fill:#231815;' d='M32,63.2548828c-2.105957,0-3.2529297-1.625-3.3007813-1.6933594l-0.0776367-0.1123047
|
870
|
+
l0.0522461-0.1259766c0.3383789-0.8134766,0.5019531-4.6005859,0.5361328-5.9912109l0.0063477-0.2441406h5.5678711
|
871
|
+
l0.0058594,0.2441406c0.0341797,1.390625,0.1982422,5.1777344,0.5351563,5.9912109l0.0527344,0.1259766l-0.0771484,0.1123047
|
872
|
+
C35.2529297,61.6298828,34.1054688,63.2548828,32,63.2548828z M29.1860352,61.3740234
|
873
|
+
C29.456543,61.703125,30.4423828,62.7548828,32,62.7548828c1.5654297,0,2.5449219-1.0507813,2.8134766-1.3808594
|
874
|
+
c-0.3535156-1.1416016-0.4863281-4.7939453-0.5166016-5.7861328h-4.59375
|
875
|
+
C29.6728516,56.5791016,29.5400391,60.2304688,29.1860352,61.3740234z'/>
|
876
|
+
</g>
|
877
|
+
<g>
|
878
|
+
<path style='fill:#FFB743;' d='M39.1198692,51.8726768c0,0,1.857605-1.1511917,1.857605,2.3023872
|
879
|
+
c0,3.4535751-5.5728188,3.4535751-5.5728188,3.4535751L39.1198692,51.8726768z'/>
|
880
|
+
<path style='fill:#231815;' d='M35.4042969,57.8789063h-0.4589844l4.0429688-6.21875
|
881
|
+
c0.0146484-0.0087891,0.3632813-0.2216797,0.7861328-0.2216797c0.6630859,0,1.453125,0.4746094,1.453125,2.7363281
|
882
|
+
C41.2275391,57.8369141,35.6416016,57.8789063,35.4042969,57.8789063z M39.2958984,52.0615234l-3.4189453,5.2958984
|
883
|
+
c1.3046875-0.09375,4.8505859-0.5878906,4.8505859-3.1826172c0-0.8349609-0.1240234-2.2363281-0.953125-2.2363281
|
884
|
+
C39.5673828,51.9384766,39.3789063,52.0205078,39.2958984,52.0615234z'/>
|
885
|
+
</g>
|
886
|
+
<g>
|
887
|
+
<path style='fill:#FFB743;' d='M24.8801308,51.8726768c0,0-1.857605-1.1511917-1.857605,2.3023872
|
888
|
+
c0,3.4535751,5.5728188,3.4535751,5.5728188,3.4535751L24.8801308,51.8726768z'/>
|
889
|
+
<path style='fill:#231815;' d='M29.0541992,57.8789063h-0.4589844c-0.237793,0-5.8227539-0.0419922-5.8227539-3.7041016
|
890
|
+
c0-2.2617188,0.7905273-2.7363281,1.4536133-2.7363281c0.4233398,0,0.7714844,0.2128906,0.7861328,0.2216797l0.078125,0.0771484
|
891
|
+
L29.0541992,57.8789063z M24.2260742,51.9384766c-0.8295898,0-0.9536133,1.4013672-0.9536133,2.2363281
|
892
|
+
c0,2.5986328,3.5463867,3.0898438,4.8500977,3.1826172l-3.4179688-5.2958984
|
893
|
+
C24.621582,52.0205078,24.4331055,51.9384766,24.2260742,51.9384766z'/>
|
894
|
+
</g>
|
895
|
+
<g>
|
896
|
+
<path style='fill:#FFB743;' d='M32,43.7195549c-4.4228573,0-6.7917652,2.6563301-6.7917652,8.7271233
|
897
|
+
c0,3.5931282,0.3427792,5.0272713,1.7605152,6.2240334c1.3240299,1.1175613,3.5014992,1.9441071,5.03125,1.9441071
|
898
|
+
s3.7072182-0.8265457,5.03125-1.9441071c1.4177361-1.1967621,1.7605133-2.6309052,1.7605133-6.2240334
|
899
|
+
C38.7917633,46.375885,36.4228592,43.7195549,32,43.7195549z'/>
|
900
|
+
<path style='fill:#231815;' d='M32,60.8652344c-1.6064453,0-3.8388672-0.8613281-5.1923828-2.0029297
|
901
|
+
c-1.4345703-1.2119141-1.8496094-2.6503906-1.8496094-6.4160156c0-6.0400391,2.3032227-8.9765625,7.0419922-8.9765625
|
902
|
+
c4.7382813,0,7.0419922,2.9365234,7.0419922,8.9765625c0,3.765625-0.4150391,5.2041016-1.8496094,6.4160156
|
903
|
+
C35.8388672,60.0039063,33.6064453,60.8652344,32,60.8652344z M32,43.9697266
|
904
|
+
c-4.4018555,0-6.5419922,2.7724609-6.5419922,8.4765625c0,3.6279297,0.359375,4.9248047,1.671875,6.0332031
|
905
|
+
C28.3833008,59.5371094,30.5224609,60.3652344,32,60.3652344s3.6171875-0.828125,4.8701172-1.8857422
|
906
|
+
c1.3125-1.1083984,1.671875-2.4052734,1.671875-6.0332031C38.5419922,46.7421875,36.4023438,43.9697266,32,43.9697266z'/>
|
907
|
+
</g>
|
908
|
+
</g>
|
909
|
+
<g>
|
910
|
+
<path style='fill:#231815;' d='M30.482399,57.1412239c0,0,0.7588005,0.2029076,1.517601,0.2029076
|
911
|
+
s1.517601-0.2029076,1.517601-0.2029076S33.3839989,58.2780609,32,58.2780609S30.482399,57.1412239,30.482399,57.1412239z'/>
|
912
|
+
<g>
|
913
|
+
<g>
|
914
|
+
<path style='fill:#F5F5F5;' d='M33.5696182,53.7745247c0-0.333744,0.4338493-1.7733955,1.8680305-1.7733955
|
915
|
+
c1.4341774,0,1.8443642,1.3511429,1.8443642,1.3511429s-0.2460556,1.2645378-1.8444901,1.2645378
|
916
|
+
C34.4345131,54.6168098,33.5696182,54.1082726,33.5696182,53.7745247z'/>
|
917
|
+
<ellipse style='fill:#231815;' cx='35.2908516' cy='53.233345' rx='1.1528215' ry='1.331249'/>
|
918
|
+
<ellipse style='fill:#3E3A39;' cx='35.2908516' cy='53.233345' rx='0.8980619' ry='1.1156204'/>
|
919
|
+
<ellipse style='fill:#231815;' cx='35.2908516' cy='53.233345' rx='0.4356443' ry='0.5411806'/>
|
920
|
+
<path style='fill:#231815;' d='M35.2908516,51.7610512c-1.5559311,0-1.8854332,1.4469833-1.936142,1.7192993
|
921
|
+
c0.1540604-0.2005272,0.8667297-1.3652077,1.9215698-1.3480492c1.3307648,0.0216446,1.917347,1.2775345,1.917347,1.2775345
|
922
|
+
c-0.0184059,0.0346909,0.175827,0.3646889,0.4598503-0.2068138
|
923
|
+
C37.6534767,53.203022,37.0338478,51.7610512,35.2908516,51.7610512z'/>
|
924
|
+
<ellipse style='fill:#FFFFFF;' cx='34.8062859' cy='52.6886749' rx='0.2810104' ry='0.2922278'/>
|
925
|
+
</g>
|
926
|
+
<g>
|
927
|
+
<path style='fill:#F5F5F5;' d='M30.4303837,53.7745247c0-0.333744-0.4338531-1.7733955-1.8680325-1.7733955
|
928
|
+
s-1.8443661,1.3511429-1.8443661,1.3511429s0.2460575,1.2645378,1.8444901,1.2645378
|
929
|
+
C29.5654869,54.6168098,30.4303837,54.1082726,30.4303837,53.7745247z'/>
|
930
|
+
<ellipse style='fill:#231815;' cx='28.7091465' cy='53.233345' rx='1.1528215' ry='1.331249'/>
|
931
|
+
<ellipse style='fill:#3E3A39;' cx='28.7091465' cy='53.233345' rx='0.8980619' ry='1.1156204'/>
|
932
|
+
<ellipse style='fill:#231815;' cx='28.7091465' cy='53.233345' rx='0.4356443' ry='0.5411806'/>
|
933
|
+
<path style='fill:#231815;' d='M28.7091465,51.7610512c1.5559311,0,1.8854351,1.4469833,1.9361439,1.7192993
|
934
|
+
c-0.1540604-0.2005272-0.8667316-1.3652077-1.9215679-1.3480492c-1.3307667,0.0216446-1.9173489,1.2775345-1.9173489,1.2775345
|
935
|
+
c0.018404,0.0346909-0.1758251,0.3646889-0.4598522-0.2068138
|
936
|
+
C26.3465214,53.203022,26.9661503,51.7610512,28.7091465,51.7610512z'/>
|
937
|
+
<ellipse style='fill:#FFFFFF;' cx='28.2245827' cy='52.6886749' rx='0.2810104' ry='0.2922278'/>
|
938
|
+
</g>
|
939
|
+
</g>
|
940
|
+
<g>
|
941
|
+
<path style='fill:#231815;' d='M33.2728615,50.2285767c0,0,0.8485718-1.0069771,2.6616402-0.1000366
|
942
|
+
C35.9345016,50.12854,34.2462273,50.4727516,33.2728615,50.2285767z'/>
|
943
|
+
<path style='fill:#231815;' d='M30.7271385,50.2285767c0,0-0.8485737-1.0069771-2.6616421-0.1000366
|
944
|
+
C28.0654964,50.12854,29.7537746,50.4727516,30.7271385,50.2285767z'/>
|
945
|
+
</g>
|
946
|
+
<linearGradient id='SVGID_2_5dfcf6efac84c388a05c744534d1e4ff' gradientUnits='userSpaceOnUse' x1='31.5693703' y1='56.0847282' x2='31.5693703' y2='54.3489647'>
|
947
|
+
<stop offset='0' style='stop-color:#FFFFFF;stop-opacity:0.05'/>
|
948
|
+
<stop offset='0.5' style='stop-color:#FFFFFF;stop-opacity:0.4'/>
|
949
|
+
<stop offset='1' style='stop-color:#FFFFFF;stop-opacity:0.05'/>
|
950
|
+
</linearGradient>
|
951
|
+
<path style='fill:url(#SVGID_2_5dfcf6efac84c388a05c744534d1e4ff);' d='M31.9652882,55.2168465c0,0.4793167-0.4731789,0.8678818-0.685051,0.8678818
|
952
|
+
c-0.211874,0-0.0626526-0.5384827,0.0548038-1.0034866c0.1096077-0.4339409,0.1991577-0.7322769,0.4110317-0.7322769
|
953
|
+
C31.9579449,54.3489647,31.9652882,54.7375298,31.9652882,55.2168465z'/>
|
954
|
+
</g>
|
955
|
+
<g>
|
956
|
+
<g>
|
957
|
+
<linearGradient id='SVGID_3_5dfcf6efac84c388a05c744534d1e4ff' gradientUnits='userSpaceOnUse' x1='31.8003922' y1='41.9375' x2='31.8003922' y2='55.6851158'>
|
958
|
+
<stop offset='0.1504425' style='stop-color:#714E2D'/>
|
959
|
+
<stop offset='0.9955752' style='stop-color:#312214'/>
|
960
|
+
</linearGradient>
|
961
|
+
<path style='fill:url(#SVGID_3_5dfcf6efac84c388a05c744534d1e4ff);' d='M37.7768593,45.5357132c0.7038841-0.2516937,1.1446838-0.7167664,1.1446838-0.7167664
|
962
|
+
c-1.1161385-1.11092-2.2001381-0.8331909-2.2001381-0.8331909c0.2082977-1.7242393-3.1517868-2.0482559-3.1517868-2.0482559
|
963
|
+
c0.2428818,0.875,0.955658,1.3647957,1.2539902,1.698719c0,0-1.2539902-0.5183678-2.8236084-0.5183678
|
964
|
+
c-4.4436741,0-11.0050373,4.0982742-7.2310734,12.5672646c0,0,0.2307415-3.5179291,0.49613-4.9644165
|
965
|
+
c0,0,0.2378597,1.5469742,0.9026203,1.9277687c0,0-0.3587551-3.0837784,1.1535015-5.5219116
|
966
|
+
c0,0-0.6031952,2.8138428,0.2351475,4.7755127c0,0,0.6230011-6.4506836,7.2988834-6.3708191
|
967
|
+
c0,0,2.2385406,1.9246445,2.2480736,6.6359367c0,0,0.8910484-0.6359367,1.0877953-2.418541
|
968
|
+
c0,0,0.5246773,5.3481941,0.8125076,5.93647C39.0035858,55.6851158,41.8185844,48.6683769,37.7768593,45.5357132z'/>
|
969
|
+
<path style='fill:#2E1E15;' d='M24.9521484,56.7109375l-0.4116211-0.9238281
|
970
|
+
c-1.9516602-4.3798828-1.0488281-7.3212891,0.0522461-9.0166016c1.75-2.6962891,4.980957-3.9023438,7.4072266-3.9023438
|
971
|
+
c0.7524414,0,1.4316406,0.1142578,1.9443359,0.2363281c-0.2480469-0.2851563-0.4892578-0.6455078-0.6162109-1.0996094
|
972
|
+
l-0.0966797-0.3515625l0.3623047,0.0351563c0.0908203,0.0087891,2.2402344,0.2275391,3.0615234,1.2490234
|
973
|
+
c0.1884766,0.2333984,0.2949219,0.4912109,0.3203125,0.7685547c0.4013672-0.0205078,1.2578125,0.0742188,2.1230469,0.9365234
|
974
|
+
l0.1728516,0.171875l-0.1679688,0.1767578c-0.0166016,0.0175781-0.3320313,0.3457031-0.8554688,0.6123047
|
975
|
+
c3.6816406,3.3115234,1.1025391,9.8896484,0.9882813,10.1748047l-0.2099609,0.5224609l-0.2470703-0.5058594
|
976
|
+
c-0.2099609-0.4296875-0.5117188-2.9570313-0.6904297-4.6132813c-0.3505859,0.8300781-0.8125,1.1689453-0.8398438,1.1884766
|
977
|
+
l-0.3945313,0.2822266l-0.0009766-0.484375c-0.0087891-4.0830078-1.7431641-6.03125-2.0986328-6.3876953h-0.0224609
|
978
|
+
c-6.2607422,0-6.9033203,5.8955078-6.9272461,6.1464844l-0.0942383,0.9736328l-0.3847656-0.8994141
|
979
|
+
c-0.4550781-1.0654297-0.5053711-2.3496094-0.4482422-3.3408203c-0.6772461,1.9794922-0.4648438,3.9355469-0.4619141,3.9599609
|
980
|
+
l0.0561523,0.4912109l-0.4291992-0.2460938c-0.3120117-0.1787109-0.5380859-0.546875-0.6967773-0.9257813
|
981
|
+
c-0.1850586,1.6064453-0.3256836,3.7353516-0.3276367,3.7626953L24.9521484,56.7109375z M38.2060547,47.3408203
|
982
|
+
l0.234375,2.3837891c0.1503906,1.5332031,0.4072266,3.8212891,0.6083984,5.0458984
|
983
|
+
c0.5791016-1.9130859,1.6201172-6.6767578-1.4248047-9.0371094l-0.3603516-0.2792969l0.4296875-0.1533203
|
984
|
+
c0.3779297-0.1357422,0.6757813-0.3408203,0.8564453-0.484375c-0.9472656-0.8056641-1.7636719-0.5878906-1.7675781-0.5888672
|
985
|
+
L36.4326172,44.3125l0.0410156-0.3574219c0.03125-0.2607422-0.0361328-0.4912109-0.2080078-0.7041016
|
986
|
+
c-0.4658203-0.5800781-1.5996094-0.8847656-2.3095703-1.0078125c0.2109375,0.4179688,0.5371094,0.7255859,0.7900391,0.9648438
|
987
|
+
c0.1025391,0.0966797,0.1933594,0.1835938,0.2636719,0.2607422l0.7265625,0.8125l-1.0078125-0.4140625
|
988
|
+
C34.7158203,43.8623047,33.4970703,43.3681641,32,43.3681641c-2.2910156,0-5.3398438,1.1357422-6.987793,3.6738281
|
989
|
+
c-1.3325195,2.0537109-1.4711914,4.6484375-0.4150391,7.5537109c0.0893555-1.1601563,0.2470703-2.9677734,0.421875-3.9199219
|
990
|
+
l0.2670898-1.4541016l0.2260742,1.4609375c0.0522461,0.3388672,0.1811523,0.8330078,0.3662109,1.2177734
|
991
|
+
c-0.0102539-1.0947266,0.1396484-3.1464844,1.2304688-4.9052734l0.7573242-1.2207031l-0.300293,1.4052734
|
992
|
+
c-0.0048828,0.0224609-0.4135742,1.9794922-0.0585938,3.7109375c0.4941406-1.8417969,2.1289063-5.6103516,7.2250977-5.6103516
|
993
|
+
l0.2167969,0.0019531l0.0693359,0.0595703c0.0908203,0.078125,2.1240234,1.8759766,2.3203125,6.1835938
|
994
|
+
c0.2333984-0.3505859,0.5068359-0.9296875,0.6044922-1.8037109L38.2060547,47.3408203z'/>
|
995
|
+
</g>
|
996
|
+
<linearGradient id='SVGID_4_5dfcf6efac84c388a05c744534d1e4ff' gradientUnits='userSpaceOnUse' x1='28.9762936' y1='45.1284294' x2='28.9762936' y2='49.7833633'>
|
997
|
+
<stop offset='0' style='stop-color:#8F6B3F'/>
|
998
|
+
<stop offset='0.9955752' style='stop-color:#714E2D'/>
|
999
|
+
</linearGradient>
|
1000
|
+
<path style='fill:url(#SVGID_4_5dfcf6efac84c388a05c744534d1e4ff);' d='M30.28125,45.1284294c0,0-2.076889,1.6693382-2.6092033,4.6549339
|
1001
|
+
C27.6720467,49.7833633,27.5563259,45.1284294,30.28125,45.1284294z'/>
|
1002
|
+
<linearGradient id='SVGID_5_5dfcf6efac84c388a05c744534d1e4ff' gradientUnits='userSpaceOnUse' x1='25.328537' y1='45.9877243' x2='25.328537' y2='51.7610512'>
|
1003
|
+
<stop offset='0' style='stop-color:#8F6B3F'/>
|
1004
|
+
<stop offset='0.9955752' style='stop-color:#714E2D'/>
|
1005
|
+
</linearGradient>
|
1006
|
+
<path style='fill:url(#SVGID_5_5dfcf6efac84c388a05c744534d1e4ff);' d='M26.3465214,45.9877243c0,0-2.5626888,1.7798309-1.9377975,5.7733269
|
1007
|
+
C24.4087238,51.7610512,24.8821316,47.4920921,26.3465214,45.9877243z'/>
|
1008
|
+
<linearGradient id='SVGID_6_5dfcf6efac84c388a05c744534d1e4ff' gradientUnits='userSpaceOnUse' x1='38.7414856' y1='46.3580284' x2='38.7414856' y2='51.7610512'>
|
1009
|
+
<stop offset='0' style='stop-color:#8F6B3F'/>
|
1010
|
+
<stop offset='0.9955752' style='stop-color:#714E2D'/>
|
1011
|
+
</linearGradient>
|
1012
|
+
<path style='fill:url(#SVGID_6_5dfcf6efac84c388a05c744534d1e4ff);' d='M37.9943314,46.3580284c0,0,1.9902,1.6872559,1.3769798,5.4030228
|
1013
|
+
C39.3713112,51.7610512,39.1283951,48.6261559,37.9943314,46.3580284z'/>
|
1014
|
+
</g>
|
1015
|
+
</g>
|
1016
|
+
<g>
|
1017
|
+
</g>
|
1018
|
+
<g>
|
1019
|
+
</g>
|
1020
|
+
<g>
|
1021
|
+
</g>
|
1022
|
+
<g>
|
1023
|
+
</g>
|
1024
|
+
<g>
|
1025
|
+
</g>
|
1026
|
+
<g>
|
1027
|
+
</g>
|
1028
|
+
</svg>
|