facterdb 0.5.1 → 0.5.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.gitmodules +3 -0
- data/CHANGELOG.md +9 -0
- data/README.md +123 -66
- data/Rakefile +86 -0
- data/facts/1.6/ubuntu-18.04-x86_64.facts +59 -0
- data/facts/1.7/ubuntu-18.04-x86_64.facts +85 -0
- data/facts/2.0/ubuntu-18.04-x86_64.facts +86 -0
- data/facts/2.1/ubuntu-18.04-x86_64.facts +96 -0
- data/facts/2.2/ubuntu-18.04-x86_64.facts +127 -0
- data/facts/2.3/ubuntu-18.04-x86_64.facts +128 -0
- data/facts/2.4/ubuntu-18.04-x86_64.facts +129 -0
- data/facts/2.5/ubuntu-18.04-x86_64.facts +129 -0
- data/facts/3.9/solaris-10-i386.facts +679 -0
- data/facts/3.9/solaris-10-x86_64.facts +679 -0
- data/facts/Vagrantfile +6 -0
- data/hugo/archetypes/default.md +6 -0
- data/hugo/config.toml +155 -0
- data/hugo/content/.placeholder +0 -0
- data/images/facterdb.png +0 -0
- data/images/facterdb.svg +439 -0
- data/lib/facterdb.rb +20 -1
- data/lib/facterdb/version.rb +1 -1
- data/spec/facterdb_spec.rb +0 -1
- metadata +18 -2
data/facts/Vagrantfile
CHANGED
@@ -86,6 +86,12 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
|
86
86
|
host.vm.provision "shell", path: "get_facts.sh"
|
87
87
|
host.vm.provision "shell", inline: "/sbin/shutdown -h now"
|
88
88
|
end
|
89
|
+
config.vm.define "ubuntu-18.04-x86_64" do |host|
|
90
|
+
host.vm.box = "ubuntu/bionic64"
|
91
|
+
host.vm.provision "file", source: "Gemfile", destination: "Gemfile"
|
92
|
+
host.vm.provision "shell", path: "get_facts.sh"
|
93
|
+
host.vm.provision "shell", inline: "/sbin/shutdown -h now"
|
94
|
+
end
|
89
95
|
config.vm.define "centos-5-x86_64" do |host|
|
90
96
|
host.vm.box = "puppetlabs/centos-5.11-64-nocm"
|
91
97
|
host.vm.provision "file", source: "Gemfile", destination: "Gemfile"
|
data/hugo/config.toml
ADDED
@@ -0,0 +1,155 @@
|
|
1
|
+
baseURL = "http://camptocamp.github.io/facterdb/"
|
2
|
+
title = "FacterDB"
|
3
|
+
languageCode = "en-us"
|
4
|
+
theme = "elate"
|
5
|
+
|
6
|
+
[params]
|
7
|
+
|
8
|
+
#custom_css = ["css/custom1.css", "css/custom2.css"]
|
9
|
+
|
10
|
+
# Meta
|
11
|
+
author = "Camptocamp"
|
12
|
+
description = ""
|
13
|
+
email = ""
|
14
|
+
# Navigation
|
15
|
+
[params.navigation]
|
16
|
+
brand = "FacterDB"
|
17
|
+
intro = "<i class='icon-home'></i>Install"
|
18
|
+
#work = "<i class='icon-camera'></i>Screenshots"
|
19
|
+
#testimonials = "<i class='icon-bubbles'></i>Testimonials"
|
20
|
+
services = "<i class='icon-star'></i>Features"
|
21
|
+
about = "<i class='icon-bulb'></i>Other projects"
|
22
|
+
contact = "<i class='icon-envelope'></i> Contact"
|
23
|
+
|
24
|
+
# You can add custom links before or after the default links
|
25
|
+
# Assign a weight to define the order
|
26
|
+
|
27
|
+
# Hero section
|
28
|
+
[params.hero]
|
29
|
+
title = "![FacterDB](images/facterdb.png) <p>FacterDB</p>"
|
30
|
+
subtitle = '''
|
31
|
+
A Database of OS facts provided by Facter
|
32
|
+
|
33
|
+
[![GitHub stars](https://img.shields.io/github/stars/camptocamp/facterdb.svg?style=social&logo=github&label=Stars)](https://github.com/camptocamp/facterdb)
|
34
|
+
[![Gem Downloads](https://img.shields.io/gem/dt/facterdb.svg)](https://rubygems.org/gems/facterdb)
|
35
|
+
[![By Camptocamp](https://img.shields.io/badge/by-camptocamp-fb7047.svg)](http://www.camptocamp.com)
|
36
|
+
'''
|
37
|
+
|
38
|
+
# Intro section
|
39
|
+
# Available icons: http://simplelineicons.com/
|
40
|
+
[params.intro]
|
41
|
+
|
42
|
+
[[params.intro.item]]
|
43
|
+
title = "Install"
|
44
|
+
description = '''
|
45
|
+
```shell
|
46
|
+
$ gem install facterdb
|
47
|
+
```
|
48
|
+
'''
|
49
|
+
#url = "#"
|
50
|
+
#button = "Get In Touch"
|
51
|
+
icon = "icon-bulb"
|
52
|
+
|
53
|
+
[[params.intro.item]]
|
54
|
+
title = "Example usage"
|
55
|
+
description = '''
|
56
|
+
```shell
|
57
|
+
$ facterdb \
|
58
|
+
'facterversion=/^2.4\./ and (operatingsystem=Debian and operatingsystemrelease>=7 or operatingsystem=RedHat and operatingsystemrelease=/^7/)'
|
59
|
+
```
|
60
|
+
'''
|
61
|
+
#url = "#"
|
62
|
+
#button = "Copy"
|
63
|
+
icon = "icon-arrow-right"
|
64
|
+
# img = "img_8.jpg"
|
65
|
+
|
66
|
+
[[params.intro.item]]
|
67
|
+
title = "Use in Rakefile"
|
68
|
+
description = '''
|
69
|
+
```ruby
|
70
|
+
require 'facterdb'
|
71
|
+
FacterDB::get_facts()
|
72
|
+
```
|
73
|
+
'''
|
74
|
+
#url = "#"
|
75
|
+
#button = "Why us?"
|
76
|
+
icon = "icon-diamond"
|
77
|
+
|
78
|
+
#[params.intro.video]
|
79
|
+
# enable = true
|
80
|
+
# title = "Watch the video"
|
81
|
+
# icon = "icon-play2"
|
82
|
+
# url = "https://vimeo.com/channels/staffpicks/93951774"
|
83
|
+
|
84
|
+
|
85
|
+
# Services section
|
86
|
+
[params.services]
|
87
|
+
enable = true
|
88
|
+
title = "Features"
|
89
|
+
description = "FacterDB provides a collection of stock facts for various Operating Systems."
|
90
|
+
|
91
|
+
[[params.services.item]]
|
92
|
+
title = "Command Line Interface"
|
93
|
+
description = "FacterDB can be queried on the CLI."
|
94
|
+
icon = "icon-arrow-right"
|
95
|
+
|
96
|
+
[[params.services.item]]
|
97
|
+
title = "Rakefile integration"
|
98
|
+
description = "Integrate FacterDB into your Rakefile extends rspec-puppet with [rspec-puppet-facts](https://github.com/mcanevet/rspec-puppet-facts)."
|
99
|
+
icon = "icon-diamond"
|
100
|
+
|
101
|
+
# About section
|
102
|
+
[params.about]
|
103
|
+
enable = true
|
104
|
+
title = "Other projects"
|
105
|
+
description = "We love to contribute Open Source projects at Camptocamp.<br /> Here is a list of some of our most useful tools"
|
106
|
+
|
107
|
+
[[params.about.item]]
|
108
|
+
name = "Terraboard"
|
109
|
+
position = "A Web dashboard to inspect and query Terraform states"
|
110
|
+
description = ""
|
111
|
+
img = "terraboard.png"
|
112
|
+
alt = "Terraboard"
|
113
|
+
social = [
|
114
|
+
["icon-globe", "https://camptocamp.github.io/terraboard"],
|
115
|
+
["icon-github", "https://github.com/camptocamp/terraboard"]
|
116
|
+
]
|
117
|
+
|
118
|
+
[[params.about.item]]
|
119
|
+
name = "Conplicity"
|
120
|
+
position = "Automatic backups for Docker containers"
|
121
|
+
description = ""
|
122
|
+
img = "conplicity.png"
|
123
|
+
alt = "Conplicity"
|
124
|
+
social = [
|
125
|
+
["icon-globe", "https://camptocamp.github.io/conplicity"],
|
126
|
+
["icon-github", "https://github.com/camptocamp/conplicity"]
|
127
|
+
]
|
128
|
+
|
129
|
+
[[params.about.item]]
|
130
|
+
name = "Puppet Modules"
|
131
|
+
position = "Camptocamp's Puppet Modules"
|
132
|
+
description = ""
|
133
|
+
img = "puppet.png"
|
134
|
+
alt = "Puppet Modules"
|
135
|
+
social = [
|
136
|
+
["icon-globe", "https://camptocamp.github.io/puppet-modules"],
|
137
|
+
["icon-home", "https://forge.puppet.com/camptocamp"]
|
138
|
+
]
|
139
|
+
|
140
|
+
# Contact section
|
141
|
+
[params.contact]
|
142
|
+
enable = true
|
143
|
+
form = false
|
144
|
+
title = "Contact us!"
|
145
|
+
description = "Are you missing features? Would you like consulting, training or other services? Contact us at [info@camptocamp.com](mailto:info@camptocamp.com?subject=Terraboard)!"
|
146
|
+
|
147
|
+
# Footer section
|
148
|
+
[params.footer]
|
149
|
+
enable = true
|
150
|
+
copyright = '[![Camptocamp](images/camptocamp.png)](https://www.camptocamp.com)'
|
151
|
+
links = [
|
152
|
+
["icon-globe", "https://www.camptocamp.com"],
|
153
|
+
["icon-twitter", "https://twitter.com/camptocamp"],
|
154
|
+
["icon-github", "https://github.com/camptocamp"]
|
155
|
+
]
|
File without changes
|
data/images/facterdb.png
ADDED
Binary file
|
data/images/facterdb.svg
ADDED
@@ -0,0 +1,439 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
3
|
+
|
4
|
+
<svg
|
5
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
6
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
7
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
8
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
10
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
11
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
13
|
+
width="22.077044mm"
|
14
|
+
height="19.871119mm"
|
15
|
+
viewBox="0 0 22.077044 19.871119"
|
16
|
+
version="1.1"
|
17
|
+
id="svg8"
|
18
|
+
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
|
19
|
+
sodipodi:docname="facterdb.svg"
|
20
|
+
inkscape:export-filename="/home/raphink/dev/puppet/facterdb/images/facterdb.png"
|
21
|
+
inkscape:export-xdpi="99"
|
22
|
+
inkscape:export-ydpi="99">
|
23
|
+
<defs
|
24
|
+
id="defs2">
|
25
|
+
<linearGradient
|
26
|
+
id="linearGradient4365">
|
27
|
+
<stop
|
28
|
+
style="stop-color:#ffffff;stop-opacity:0.80000001;"
|
29
|
+
offset="0"
|
30
|
+
id="stop4367" />
|
31
|
+
<stop
|
32
|
+
style="stop-color:#ffffff;stop-opacity:0;"
|
33
|
+
offset="1"
|
34
|
+
id="stop4369" />
|
35
|
+
</linearGradient>
|
36
|
+
<linearGradient
|
37
|
+
id="linearGradient3829">
|
38
|
+
<stop
|
39
|
+
id="stop3831"
|
40
|
+
offset="0"
|
41
|
+
style="stop-color:#ffffff;stop-opacity:0.60000002;" />
|
42
|
+
<stop
|
43
|
+
id="stop3833"
|
44
|
+
offset="1"
|
45
|
+
style="stop-color:#ffffff;stop-opacity:0.20784314;" />
|
46
|
+
</linearGradient>
|
47
|
+
<linearGradient
|
48
|
+
id="linearGradient3820">
|
49
|
+
<stop
|
50
|
+
id="stop3823"
|
51
|
+
offset="0"
|
52
|
+
style="stop-color:#cbdbed;stop-opacity:1;" />
|
53
|
+
<stop
|
54
|
+
id="stop3825"
|
55
|
+
offset="1"
|
56
|
+
style="stop-color:#204a87;stop-opacity:1;" />
|
57
|
+
</linearGradient>
|
58
|
+
<linearGradient
|
59
|
+
id="linearGradient_SkyBlue">
|
60
|
+
<stop
|
61
|
+
style="stop-color:#729fcf;stop-opacity:1;"
|
62
|
+
offset="0"
|
63
|
+
id="stop3832" />
|
64
|
+
<stop
|
65
|
+
style="stop-color:#204a87;stop-opacity:1;"
|
66
|
+
offset="1"
|
67
|
+
id="stop3834" />
|
68
|
+
</linearGradient>
|
69
|
+
<linearGradient
|
70
|
+
y2="12"
|
71
|
+
x2="15.5"
|
72
|
+
y1="12"
|
73
|
+
x1="0.5"
|
74
|
+
gradientUnits="userSpaceOnUse"
|
75
|
+
id="linearGradient4280"
|
76
|
+
xlink:href="#linearGradient_SkyBlue"
|
77
|
+
inkscape:collect="always"
|
78
|
+
gradientTransform="matrix(0.72319443,0,0,0.68035714,96.45951,101.03019)" />
|
79
|
+
<filter
|
80
|
+
height="1.6873863"
|
81
|
+
y="-0.34369317"
|
82
|
+
width="1.1309307"
|
83
|
+
x="-0.065465368"
|
84
|
+
id="filter4938"
|
85
|
+
inkscape:collect="always">
|
86
|
+
<feGaussianBlur
|
87
|
+
id="feGaussianBlur4940"
|
88
|
+
stdDeviation="1.1456439"
|
89
|
+
inkscape:collect="always" />
|
90
|
+
</filter>
|
91
|
+
<linearGradient
|
92
|
+
y2="27"
|
93
|
+
x2="-81.5"
|
94
|
+
y1="27"
|
95
|
+
x1="-122.5"
|
96
|
+
gradientUnits="userSpaceOnUse"
|
97
|
+
id="linearGradient5487"
|
98
|
+
xlink:href="#linearGradient3820"
|
99
|
+
inkscape:collect="always"
|
100
|
+
gradientTransform="matrix(0.26458333,0,0,0.26458333,129.23286,102.71218)" />
|
101
|
+
<linearGradient
|
102
|
+
y2="23.5"
|
103
|
+
x2="-82"
|
104
|
+
y1="23.5"
|
105
|
+
x1="-122"
|
106
|
+
gradientUnits="userSpaceOnUse"
|
107
|
+
id="linearGradient5489"
|
108
|
+
xlink:href="#linearGradient3829"
|
109
|
+
inkscape:collect="always"
|
110
|
+
gradientTransform="matrix(0.26458333,0,0,0.26458333,129.23286,102.97676)" />
|
111
|
+
<linearGradient
|
112
|
+
y2="30"
|
113
|
+
x2="-102"
|
114
|
+
y1="30"
|
115
|
+
x1="-121"
|
116
|
+
gradientUnits="userSpaceOnUse"
|
117
|
+
id="linearGradient5491"
|
118
|
+
xlink:href="#linearGradient4365"
|
119
|
+
inkscape:collect="always"
|
120
|
+
gradientTransform="matrix(0.26458333,0,0,0.26458333,129.23286,100.86009)" />
|
121
|
+
<clipPath
|
122
|
+
id="clipPath6054"
|
123
|
+
clipPathUnits="userSpaceOnUse">
|
124
|
+
<rect
|
125
|
+
transform="matrix(0.9545455,0,0,0.89256196,-4.6363639,-1.3719273)"
|
126
|
+
y="-6"
|
127
|
+
x="-126"
|
128
|
+
height="22"
|
129
|
+
width="48"
|
130
|
+
id="rect6056"
|
131
|
+
style="display:inline;fill:#a40000;fill-opacity:1;stroke:none" />
|
132
|
+
</clipPath>
|
133
|
+
<linearGradient
|
134
|
+
inkscape:collect="always"
|
135
|
+
xlink:href="#linearGradient_SkyBlue"
|
136
|
+
id="linearGradient4982"
|
137
|
+
gradientUnits="userSpaceOnUse"
|
138
|
+
x1="0.5"
|
139
|
+
y1="12"
|
140
|
+
x2="15.5"
|
141
|
+
y2="12"
|
142
|
+
gradientTransform="matrix(0.72319443,0,0,0.68035714,96.45951,107.38019)" />
|
143
|
+
<linearGradient
|
144
|
+
inkscape:collect="always"
|
145
|
+
xlink:href="#linearGradient3820"
|
146
|
+
id="linearGradient4984"
|
147
|
+
gradientUnits="userSpaceOnUse"
|
148
|
+
x1="-122.5"
|
149
|
+
y1="27"
|
150
|
+
x2="-81.5"
|
151
|
+
y2="27"
|
152
|
+
gradientTransform="matrix(0.26458333,0,0,0.26458333,129.23286,109.06218)" />
|
153
|
+
<linearGradient
|
154
|
+
inkscape:collect="always"
|
155
|
+
xlink:href="#linearGradient3829"
|
156
|
+
id="linearGradient4986"
|
157
|
+
gradientUnits="userSpaceOnUse"
|
158
|
+
x1="-122"
|
159
|
+
y1="23.5"
|
160
|
+
x2="-82"
|
161
|
+
y2="23.5"
|
162
|
+
gradientTransform="matrix(0.26458333,0,0,0.26458333,129.23286,109.32676)" />
|
163
|
+
<linearGradient
|
164
|
+
inkscape:collect="always"
|
165
|
+
xlink:href="#linearGradient4365"
|
166
|
+
id="linearGradient4988"
|
167
|
+
gradientUnits="userSpaceOnUse"
|
168
|
+
x1="-121"
|
169
|
+
y1="30"
|
170
|
+
x2="-102"
|
171
|
+
y2="30"
|
172
|
+
gradientTransform="matrix(0.26458333,0,0,0.26458333,129.23286,107.21009)" />
|
173
|
+
<linearGradient
|
174
|
+
inkscape:collect="always"
|
175
|
+
xlink:href="#linearGradient_SkyBlue"
|
176
|
+
id="linearGradient4990"
|
177
|
+
gradientUnits="userSpaceOnUse"
|
178
|
+
x1="0.5"
|
179
|
+
y1="12"
|
180
|
+
x2="15.5"
|
181
|
+
y2="12"
|
182
|
+
gradientTransform="matrix(0.72319443,0,0,0.68035714,96.45951,104.20519)" />
|
183
|
+
<linearGradient
|
184
|
+
inkscape:collect="always"
|
185
|
+
xlink:href="#linearGradient3820"
|
186
|
+
id="linearGradient4992"
|
187
|
+
gradientUnits="userSpaceOnUse"
|
188
|
+
x1="-122.5"
|
189
|
+
y1="27"
|
190
|
+
x2="-81.5"
|
191
|
+
y2="27"
|
192
|
+
gradientTransform="matrix(0.26458333,0,0,0.26458333,129.23286,105.88718)" />
|
193
|
+
<linearGradient
|
194
|
+
inkscape:collect="always"
|
195
|
+
xlink:href="#linearGradient3829"
|
196
|
+
id="linearGradient4994"
|
197
|
+
gradientUnits="userSpaceOnUse"
|
198
|
+
x1="-122"
|
199
|
+
y1="23.5"
|
200
|
+
x2="-82"
|
201
|
+
y2="23.5"
|
202
|
+
gradientTransform="matrix(0.26458333,0,0,0.26458333,129.23286,106.15176)" />
|
203
|
+
<linearGradient
|
204
|
+
inkscape:collect="always"
|
205
|
+
xlink:href="#linearGradient4365"
|
206
|
+
id="linearGradient4996"
|
207
|
+
gradientUnits="userSpaceOnUse"
|
208
|
+
x1="-121"
|
209
|
+
y1="30"
|
210
|
+
x2="-102"
|
211
|
+
y2="30"
|
212
|
+
gradientTransform="matrix(0.26458333,0,0,0.26458333,129.23286,104.03509)" />
|
213
|
+
</defs>
|
214
|
+
<sodipodi:namedview
|
215
|
+
id="base"
|
216
|
+
pagecolor="#ffffff"
|
217
|
+
bordercolor="#666666"
|
218
|
+
borderopacity="1.0"
|
219
|
+
inkscape:pageopacity="0.0"
|
220
|
+
inkscape:pageshadow="2"
|
221
|
+
inkscape:zoom="1.2181641"
|
222
|
+
inkscape:cx="79.701017"
|
223
|
+
inkscape:cy="-82.066222"
|
224
|
+
inkscape:document-units="mm"
|
225
|
+
inkscape:current-layer="layer1"
|
226
|
+
showgrid="false"
|
227
|
+
fit-margin-top="2"
|
228
|
+
fit-margin-left="2"
|
229
|
+
fit-margin-right="2"
|
230
|
+
fit-margin-bottom="2"
|
231
|
+
inkscape:window-width="1920"
|
232
|
+
inkscape:window-height="1052"
|
233
|
+
inkscape:window-x="3840"
|
234
|
+
inkscape:window-y="0"
|
235
|
+
inkscape:window-maximized="1" />
|
236
|
+
<metadata
|
237
|
+
id="metadata5">
|
238
|
+
<rdf:RDF>
|
239
|
+
<cc:Work
|
240
|
+
rdf:about="">
|
241
|
+
<dc:format>image/svg+xml</dc:format>
|
242
|
+
<dc:type
|
243
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
244
|
+
<dc:title></dc:title>
|
245
|
+
</cc:Work>
|
246
|
+
</rdf:RDF>
|
247
|
+
</metadata>
|
248
|
+
<g
|
249
|
+
inkscape:label="Layer 1"
|
250
|
+
inkscape:groupmode="layer"
|
251
|
+
id="layer1"
|
252
|
+
transform="translate(-78.961586,-107.8962)">
|
253
|
+
<g
|
254
|
+
id="layer2"
|
255
|
+
inkscape:label="Plate"
|
256
|
+
style="display:none"
|
257
|
+
transform="matrix(0.26458333,0,0,0.26458333,115.33216,95.382536)">
|
258
|
+
<rect
|
259
|
+
style="fill:#fce94f;fill-opacity:1;stroke:none"
|
260
|
+
id="rect3657"
|
261
|
+
width="22"
|
262
|
+
height="22"
|
263
|
+
x="-30"
|
264
|
+
y="-6"
|
265
|
+
inkscape:export-filename="/home/dracos/skulls.png"
|
266
|
+
inkscape:export-xdpi="90"
|
267
|
+
inkscape:export-ydpi="90" />
|
268
|
+
<rect
|
269
|
+
transform="translate(0,-1036.3622)"
|
270
|
+
style="display:inline;fill:#d3d7cf;fill-opacity:1;stroke:none"
|
271
|
+
id="rect4643"
|
272
|
+
width="158"
|
273
|
+
height="64"
|
274
|
+
x="-134"
|
275
|
+
y="996.36218"
|
276
|
+
inkscape:export-filename="/home/dracos/graphics/tango_applications_database.png"
|
277
|
+
inkscape:export-xdpi="90"
|
278
|
+
inkscape:export-ydpi="90" />
|
279
|
+
<rect
|
280
|
+
y="-16"
|
281
|
+
x="-70"
|
282
|
+
height="32"
|
283
|
+
width="32"
|
284
|
+
id="rect3802"
|
285
|
+
style="fill:#fce94f;fill-opacity:1;stroke:none"
|
286
|
+
inkscape:export-filename="/home/dracos/skulls.png"
|
287
|
+
inkscape:export-xdpi="90"
|
288
|
+
inkscape:export-ydpi="90" />
|
289
|
+
<rect
|
290
|
+
style="fill:#fce94f;fill-opacity:1;stroke:none"
|
291
|
+
id="rect3914"
|
292
|
+
width="48"
|
293
|
+
height="48"
|
294
|
+
x="-126"
|
295
|
+
y="-32"
|
296
|
+
inkscape:export-filename="/home/dracos/skulls.png"
|
297
|
+
inkscape:export-xdpi="90"
|
298
|
+
inkscape:export-ydpi="90" />
|
299
|
+
</g>
|
300
|
+
<g
|
301
|
+
id="g5144"
|
302
|
+
transform="translate(-9.5567313,6.0815568)">
|
303
|
+
<ellipse
|
304
|
+
ry="4"
|
305
|
+
rx="21"
|
306
|
+
cy="6"
|
307
|
+
cx="-102"
|
308
|
+
style="fill:#2e3436;fill-opacity:0.8;stroke:none;filter:url(#filter4938)"
|
309
|
+
id="path4932"
|
310
|
+
transform="matrix(0.27718252,0,0,0.36380208,130.51798,114.68457)"
|
311
|
+
clip-path="url(#clipPath6054)" />
|
312
|
+
<path
|
313
|
+
inkscape:connector-curvature="0"
|
314
|
+
id="path4791"
|
315
|
+
d="m 102.24507,113.16323 c -2.995574,0 -5.423963,0.60921 -5.423963,1.36071 v 2.04107 c 0,0.7515 2.428389,1.36072 5.423963,1.36072 2.99557,0 5.42395,-0.60922 5.42395,-1.36072 v -2.04107 c 0,-0.7515 -2.42838,-1.36071 -5.42395,-1.36071 z"
|
316
|
+
style="fill:url(#linearGradient4982);fill-opacity:1;stroke:none;stroke-width:0.70144886" />
|
317
|
+
<path
|
318
|
+
inkscape:connector-curvature="0"
|
319
|
+
style="fill:url(#linearGradient4984);fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
320
|
+
d="m 96.862743,114.22155 c -0.02769,0.0557 -0.04134,0.11604 -0.04134,0.17364 v 2.16627 c 0,0.75151 2.428388,1.36426 5.423957,1.36426 2.99557,0 5.42396,-0.61275 5.42396,-1.36426 v -2.16627 c 0,-0.0576 -0.0136,-0.11792 -0.0413,-0.17364 -0.3336,0.67124 -2.61663,1.19063 -5.38262,1.19063 -2.765992,0 -5.049019,-0.51939 -5.382616,-1.19063 z"
|
321
|
+
id="path4822"
|
322
|
+
sodipodi:nodetypes="cccscccsc" />
|
323
|
+
<path
|
324
|
+
inkscape:connector-curvature="0"
|
325
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'Bitstream Vera Sans';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient4986);fill-opacity:1;stroke:none;stroke-width:0.2993989;marker:none;enable-background:accumulate"
|
326
|
+
d="m 102.24536,113.29551 c -1.48796,0 -2.830263,0.15482 -3.795117,0.39687 -0.482428,0.12103 -0.877242,0.2536 -1.132747,0.40515 -0.255506,0.15154 -0.363802,0.30708 -0.363802,0.42995 v 2.03398 c 0,0.12286 0.108296,0.2784 0.363802,0.42995 0.255505,0.15154 0.650319,0.28411 1.132747,0.40514 0.964854,0.24206 2.307157,0.39688 3.795117,0.39688 1.48796,0 2.83026,-0.15482 3.79512,-0.39688 0.48242,-0.12103 0.87724,-0.2536 1.13274,-0.40514 0.25551,-0.15155 0.36381,-0.30709 0.36381,-0.42995 v -2.03398 c 0,-0.12287 -0.1083,-0.27841 -0.36381,-0.42995 -0.2555,-0.15155 -0.65032,-0.28412 -1.13274,-0.40515 -0.96486,-0.24205 -2.30716,-0.39687 -3.79512,-0.39687 z m 0,0.26458 c 1.4658,0 2.79081,0.12893 3.7207,0.36381 0.46495,0.11743 0.82459,0.25062 1.0418,0.38033 0.21721,0.12972 0.26458,0.22217 0.26458,0.21498 v 2.05052 c 0,-0.007 -0.0474,0.0853 -0.26458,0.21497 -0.21721,0.12972 -0.57685,0.2629 -1.0418,0.38034 -0.92989,0.23488 -2.2549,0.3638 -3.7207,0.3638 -1.4658,0 -2.790811,-0.12892 -3.720703,-0.3638 -0.464947,-0.11744 -0.824587,-0.25062 -1.041797,-0.38034 -0.217209,-0.12971 -0.264583,-0.22217 -0.264583,-0.21497 v -2.05052 c 0,0.007 0.04737,-0.0853 0.264583,-0.21498 0.21721,-0.12971 0.57685,-0.2629 1.041797,-0.38033 0.929892,-0.23488 2.254903,-0.36381 3.720703,-0.36381 z"
|
327
|
+
id="path4803"
|
328
|
+
sodipodi:nodetypes="cssccsssssccssccssccsssssccssc" />
|
329
|
+
<path
|
330
|
+
inkscape:connector-curvature="0"
|
331
|
+
style="fill:none;stroke:#193965;stroke-width:0.26458332;stroke-opacity:1"
|
332
|
+
d="m 102.24507,113.16323 c -2.995574,0 -5.423963,0.60921 -5.423963,1.36071 v 2.04107 c 0,0.7515 2.428389,1.36072 5.423963,1.36072 2.99557,0 5.42395,-0.60922 5.42395,-1.36072 v -2.04107 c 0,-0.7515 -2.42838,-1.36071 -5.42395,-1.36071 z"
|
333
|
+
id="path4721" />
|
334
|
+
<path
|
335
|
+
inkscape:connector-curvature="0"
|
336
|
+
style="fill:url(#linearGradient4988);fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
337
|
+
d="m 97.218277,114.56055 v 0.26458 c 0.806977,0.49749 2.754188,0.85163 5.027083,0.85163 2.27289,0 4.22011,-0.35414 5.02708,-0.85163 v -0.26458 c -0.80697,0.49748 -2.75419,0.85162 -5.02708,0.85162 -2.272895,0 -4.220106,-0.35414 -5.027083,-0.85162 z"
|
338
|
+
id="path4831"
|
339
|
+
sodipodi:nodetypes="ccsccsc" />
|
340
|
+
<path
|
341
|
+
inkscape:connector-curvature="0"
|
342
|
+
style="fill:url(#linearGradient4990);fill-opacity:1;stroke:none;stroke-width:0.70144886"
|
343
|
+
d="m 102.24507,109.98823 c -2.995574,0 -5.423963,0.60921 -5.423963,1.36071 v 2.04107 c 0,0.7515 2.428389,1.36072 5.423963,1.36072 2.99557,0 5.42395,-0.60922 5.42395,-1.36072 v -2.04107 c 0,-0.7515 -2.42838,-1.36071 -5.42395,-1.36071 z"
|
344
|
+
id="path4882" />
|
345
|
+
<path
|
346
|
+
inkscape:connector-curvature="0"
|
347
|
+
sodipodi:nodetypes="cccscccsc"
|
348
|
+
id="path4884"
|
349
|
+
d="m 96.862743,111.04655 c -0.02769,0.0557 -0.04134,0.11604 -0.04134,0.17364 v 2.16627 c 0,0.75151 2.428388,1.36426 5.423957,1.36426 2.99557,0 5.42396,-0.61275 5.42396,-1.36426 v -2.16627 c 0,-0.0576 -0.0136,-0.11792 -0.0413,-0.17364 -0.3336,0.67124 -2.61663,1.19063 -5.38262,1.19063 -2.765992,0 -5.049019,-0.51939 -5.382616,-1.19063 z"
|
350
|
+
style="fill:url(#linearGradient4992);fill-opacity:1;stroke:none;stroke-width:0.26458332" />
|
351
|
+
<path
|
352
|
+
inkscape:connector-curvature="0"
|
353
|
+
sodipodi:nodetypes="cssccsssssccssccssccsssssccssc"
|
354
|
+
id="path4886"
|
355
|
+
d="m 102.24536,110.12051 c -1.48796,0 -2.830263,0.15482 -3.795117,0.39687 -0.482428,0.12103 -0.877242,0.2536 -1.132747,0.40515 -0.255506,0.15154 -0.363802,0.30708 -0.363802,0.42995 v 2.03398 c 0,0.12286 0.108296,0.2784 0.363802,0.42995 0.255505,0.15154 0.650319,0.28411 1.132747,0.40514 0.964854,0.24206 2.307157,0.39688 3.795117,0.39688 1.48796,0 2.83026,-0.15482 3.79512,-0.39688 0.48242,-0.12103 0.87724,-0.2536 1.13274,-0.40514 0.25551,-0.15155 0.36381,-0.30709 0.36381,-0.42995 v -2.03398 c 0,-0.12287 -0.1083,-0.27841 -0.36381,-0.42995 -0.2555,-0.15155 -0.65032,-0.28412 -1.13274,-0.40515 -0.96486,-0.24205 -2.30716,-0.39687 -3.79512,-0.39687 z m 0,0.26458 c 1.4658,0 2.79081,0.12893 3.7207,0.36381 0.46495,0.11743 0.82459,0.25062 1.0418,0.38033 0.21721,0.12972 0.26458,0.22217 0.26458,0.21498 v 2.05052 c 0,-0.007 -0.0474,0.0853 -0.26458,0.21497 -0.21721,0.12972 -0.57685,0.2629 -1.0418,0.38034 -0.92989,0.23488 -2.2549,0.3638 -3.7207,0.3638 -1.4658,0 -2.790811,-0.12892 -3.720703,-0.3638 -0.464947,-0.11744 -0.824587,-0.25062 -1.041797,-0.38034 -0.217209,-0.12971 -0.264583,-0.22217 -0.264583,-0.21497 v -2.05052 c 0,0.007 0.04737,-0.0853 0.264583,-0.21498 0.21721,-0.12971 0.57685,-0.2629 1.041797,-0.38033 0.929892,-0.23488 2.254903,-0.36381 3.720703,-0.36381 z"
|
356
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'Bitstream Vera Sans';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient4994);fill-opacity:1;stroke:none;stroke-width:0.2993989;marker:none;enable-background:accumulate" />
|
357
|
+
<path
|
358
|
+
inkscape:connector-curvature="0"
|
359
|
+
id="path4888"
|
360
|
+
d="m 102.24507,109.98823 c -2.995574,0 -5.423963,0.60921 -5.423963,1.36071 v 2.04107 c 0,0.7515 2.428389,1.36072 5.423963,1.36072 2.99557,0 5.42395,-0.60922 5.42395,-1.36072 v -2.04107 c 0,-0.7515 -2.42838,-1.36071 -5.42395,-1.36071 z"
|
361
|
+
style="fill:none;stroke:#193965;stroke-width:0.26458332;stroke-opacity:1" />
|
362
|
+
<path
|
363
|
+
inkscape:connector-curvature="0"
|
364
|
+
sodipodi:nodetypes="ccsccsc"
|
365
|
+
id="path4892"
|
366
|
+
d="m 97.218277,111.38555 v 0.26458 c 0.806977,0.49749 2.754188,0.85163 5.027083,0.85163 2.27289,0 4.22011,-0.35414 5.02708,-0.85163 v -0.26458 c -0.80697,0.49748 -2.75419,0.85162 -5.02708,0.85162 -2.272895,0 -4.220106,-0.35414 -5.027083,-0.85162 z"
|
367
|
+
style="fill:url(#linearGradient4996);fill-opacity:1;stroke:none;stroke-width:0.26458332" />
|
368
|
+
<path
|
369
|
+
inkscape:connector-curvature="0"
|
370
|
+
id="path4912"
|
371
|
+
d="m 102.24507,106.81323 c -2.995574,0 -5.423963,0.60921 -5.423963,1.36071 v 2.04107 c 0,0.7515 2.428389,1.36072 5.423963,1.36072 2.99557,0 5.42395,-0.60922 5.42395,-1.36072 v -2.04107 c 0,-0.7515 -2.42838,-1.36071 -5.42395,-1.36071 z"
|
372
|
+
style="fill:url(#linearGradient4280);fill-opacity:1;stroke:none;stroke-width:0.70144886" />
|
373
|
+
<path
|
374
|
+
inkscape:connector-curvature="0"
|
375
|
+
style="fill:url(#linearGradient5487);fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
376
|
+
d="m 96.862743,107.87155 c -0.02769,0.0557 -0.04134,0.11604 -0.04134,0.17364 v 2.16627 c 0,0.75151 2.428388,1.36426 5.423957,1.36426 2.99557,0 5.42396,-0.61275 5.42396,-1.36426 v -2.16627 c 0,-0.0576 -0.0136,-0.11792 -0.0413,-0.17364 -0.3336,0.67124 -2.61663,1.19063 -5.38262,1.19063 -2.765992,0 -5.049019,-0.51939 -5.382616,-1.19063 z"
|
377
|
+
id="path4914"
|
378
|
+
sodipodi:nodetypes="cccscccsc" />
|
379
|
+
<path
|
380
|
+
inkscape:connector-curvature="0"
|
381
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'Bitstream Vera Sans';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient5489);fill-opacity:1;stroke:none;stroke-width:0.2993989;marker:none;enable-background:accumulate"
|
382
|
+
d="m 102.24536,106.94551 c -1.48796,0 -2.830263,0.15482 -3.795117,0.39687 -0.482428,0.12103 -0.877242,0.2536 -1.132747,0.40515 -0.255506,0.15154 -0.363802,0.30708 -0.363802,0.42995 v 2.03398 c 0,0.12286 0.108296,0.2784 0.363802,0.42995 0.255505,0.15154 0.650319,0.28411 1.132747,0.40514 0.964854,0.24206 2.307157,0.39688 3.795117,0.39688 1.48796,0 2.83026,-0.15482 3.79512,-0.39688 0.48242,-0.12103 0.87724,-0.2536 1.13274,-0.40514 0.25551,-0.15155 0.36381,-0.30709 0.36381,-0.42995 v -2.03398 c 0,-0.12287 -0.1083,-0.27841 -0.36381,-0.42995 -0.2555,-0.15155 -0.65032,-0.28412 -1.13274,-0.40515 -0.96486,-0.24205 -2.30716,-0.39687 -3.79512,-0.39687 z m 0,0.26458 c 1.4658,0 2.79081,0.12893 3.7207,0.36381 0.46495,0.11743 0.82459,0.25062 1.0418,0.38033 0.21721,0.12972 0.26458,0.22217 0.26458,0.21498 v 2.05052 c 0,-0.007 -0.0474,0.0853 -0.26458,0.21497 -0.21721,0.12972 -0.57685,0.2629 -1.0418,0.38034 -0.92989,0.23488 -2.2549,0.3638 -3.7207,0.3638 -1.4658,0 -2.790811,-0.12892 -3.720703,-0.3638 -0.464947,-0.11744 -0.824587,-0.25062 -1.041797,-0.38034 -0.217209,-0.12971 -0.264583,-0.22217 -0.264583,-0.21497 v -2.05052 c 0,0.007 0.04737,-0.0853 0.264583,-0.21498 0.21721,-0.12971 0.57685,-0.2629 1.041797,-0.38033 0.929892,-0.23488 2.254903,-0.36381 3.720703,-0.36381 z"
|
383
|
+
id="path4916"
|
384
|
+
sodipodi:nodetypes="cssccsssssccssccssccsssssccssc" />
|
385
|
+
<path
|
386
|
+
inkscape:connector-curvature="0"
|
387
|
+
style="fill:none;stroke:#193965;stroke-width:0.26458332;stroke-opacity:1"
|
388
|
+
d="m 102.24507,106.81323 c -2.995574,0 -5.423963,0.60921 -5.423963,1.36071 v 2.04107 c 0,0.7515 2.428389,1.36072 5.423963,1.36072 2.99557,0 5.42395,-0.60922 5.42395,-1.36072 v -2.04107 c 0,-0.7515 -2.42838,-1.36071 -5.42395,-1.36071 z"
|
389
|
+
id="path4918" />
|
390
|
+
<path
|
391
|
+
inkscape:connector-curvature="0"
|
392
|
+
style="fill:url(#linearGradient5491);fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
393
|
+
d="m 97.218277,108.21055 v 0.26458 c 0.806977,0.49749 2.754188,0.85163 5.027083,0.85163 2.27289,0 4.22011,-0.35414 5.02708,-0.85163 v -0.26458 c -0.80697,0.49748 -2.75419,0.85162 -5.02708,0.85162 -2.272895,0 -4.220106,-0.35414 -5.027083,-0.85162 z"
|
394
|
+
id="path4922"
|
395
|
+
sodipodi:nodetypes="ccsccsc" />
|
396
|
+
</g>
|
397
|
+
<g
|
398
|
+
id="g7923"
|
399
|
+
transform="matrix(0.35162363,0,0,0.35162363,146.91999,44.768379)">
|
400
|
+
<rect
|
401
|
+
y="187.42937"
|
402
|
+
x="-185.37331"
|
403
|
+
height="8.9684505"
|
404
|
+
width="8.9684505"
|
405
|
+
id="rect7888"
|
406
|
+
style="opacity:1;fill:none;fill-opacity:1;stroke:#ffae1a;stroke-width:4.41818476;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:5.11999989;stroke-opacity:1" />
|
407
|
+
<rect
|
408
|
+
y="202.77763"
|
409
|
+
x="-169.42468"
|
410
|
+
height="9.1728382"
|
411
|
+
width="9.1728382"
|
412
|
+
id="rect7892"
|
413
|
+
style="opacity:1;fill:#ffae1a;fill-opacity:1;stroke:#ffae1a;stroke-width:3.81394625;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:5.11999989;stroke-opacity:1" />
|
414
|
+
<rect
|
415
|
+
style="opacity:1;fill:none;fill-opacity:1;stroke:#ffae1a;stroke-width:4.41818476;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:5.11999989;stroke-opacity:1"
|
416
|
+
id="rect7902"
|
417
|
+
width="8.9684505"
|
418
|
+
height="8.9684505"
|
419
|
+
x="-185.37331"
|
420
|
+
y="219.1794" />
|
421
|
+
<rect
|
422
|
+
transform="rotate(45.169379)"
|
423
|
+
y="262.72021"
|
424
|
+
x="15.172524"
|
425
|
+
height="1.1027459"
|
426
|
+
width="14.88707"
|
427
|
+
id="rect7904"
|
428
|
+
style="opacity:1;fill:none;fill-opacity:1;stroke:#ffae1a;stroke-width:3.48128676;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:19.35118103;stroke-opacity:1" />
|
429
|
+
<rect
|
430
|
+
style="opacity:1;fill:none;fill-opacity:1;stroke:#ffae1a;stroke-width:3.48128676;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:19.35118103;stroke-opacity:1"
|
431
|
+
id="rect7906"
|
432
|
+
width="14.88707"
|
433
|
+
height="1.1027459"
|
434
|
+
x="-278.82303"
|
435
|
+
y="30.219513"
|
436
|
+
transform="rotate(-44.830621)" />
|
437
|
+
</g>
|
438
|
+
</g>
|
439
|
+
</svg>
|