New! Click on the link of any icon to get a direct link to that icon. Please don't use me as a CDN!
+
+
+
+
+
+
diff --git a/js/app.js b/js/app.js
new file mode 100644
index 000000000..5ba05e02e
--- /dev/null
+++ b/js/app.js
@@ -0,0 +1,66 @@
+
+const Data = {
+ glyphs: () => m.request({ method: 'GET', url: 'data/glyphs.json' })
+};
+
+const Filter = {
+ controller: function() {
+ this.searchTerm = m.prop('');
+ },
+ view: (ctrl) => {
+ return m('input.form-control', { placeholder: 'Filter icons...', oninput: m.withAttr('value', ctrl.searchTerm) });
+ }
+};
+
+const ForegroundColor = {
+ controller: function() {
+ this.fgColor = m.prop('');
+ },
+ view: (ctrl) => {
+ return m('input.form-control', { placeholder: 'Set FG Color', oninput: m.withAttr('value', ctrl.fgColor) });
+ }
+};
+
+const List = {
+ controller: function(options) {
+ return {
+ glyphs: Data.glyphs(),
+ visible: options.visible,
+ fgColor: options.fgColor
+ };
+ },
+ view: (ctrl) => {
+ return ctrl
+ .glyphs()
+ .sort((a, b) => a.name > b.name ? 1 : a.name < b.name ? -1 : 0)
+ .filter(ctrl.visible)
+ .map(glyph => m('div.col-md-1.col-sm-2.col-xs-3.icon-block.text-center', [
+ m(`i.game-icon.game-icon-${glyph.name}.icon-md`, { style: { color: ctrl.fgColor() }}),
+ m('br'),
+ m(`a[target="_blank"][href="./svg/${glyph.name}.svg"]`, glyph.name)
+ ]));
+ }
+};
+
+const Page = {
+ controller: function() {
+ this.list = List.controller({
+ visible: (item) => item.name.indexOf(this.filter.searchTerm()) > -1,
+ fgColor: () => this.foregroundColor.fgColor()
+ });
+
+ this.foregroundColor = new ForegroundColor.controller();
+ this.filter = new Filter.controller();
+ },
+ view: (ctrl) => {
+ return [
+ m('div.row.text-center', [
+ m('div.col-sm-6', Filter.view(ctrl.filter)),
+ m('div.col-sm-6', ForegroundColor.view(ctrl.foregroundColor))
+ ]),
+ m('div.row', List.view(ctrl.list))
+ ];
+ }
+};
+
+m.mount(document.getElementById('page'), Page);
diff --git a/png/3d-glasses.png b/png/3d-glasses.png
new file mode 100644
index 000000000..cd18079f3
Binary files /dev/null and b/png/3d-glasses.png differ
diff --git a/png/3d-hammer.png b/png/3d-hammer.png
new file mode 100644
index 000000000..c493a6d28
Binary files /dev/null and b/png/3d-hammer.png differ
diff --git a/png/3d-meeple.png b/png/3d-meeple.png
new file mode 100644
index 000000000..bea01a725
Binary files /dev/null and b/png/3d-meeple.png differ
diff --git a/png/3d-stairs.png b/png/3d-stairs.png
new file mode 100644
index 000000000..146562df7
Binary files /dev/null and b/png/3d-stairs.png differ
diff --git a/png/abacus.png b/png/abacus.png
new file mode 100644
index 000000000..04e2b3644
Binary files /dev/null and b/png/abacus.png differ
diff --git a/png/abbot-meeple.png b/png/abbot-meeple.png
new file mode 100644
index 000000000..b17c6b71c
Binary files /dev/null and b/png/abbot-meeple.png differ
diff --git a/png/abdominal-armor.png b/png/abdominal-armor.png
new file mode 100644
index 000000000..8f4331378
Binary files /dev/null and b/png/abdominal-armor.png differ
diff --git a/png/abstract-001.png b/png/abstract-001.png
new file mode 100644
index 000000000..d3c072743
Binary files /dev/null and b/png/abstract-001.png differ
diff --git a/png/abstract-002.png b/png/abstract-002.png
new file mode 100644
index 000000000..cc78f092a
Binary files /dev/null and b/png/abstract-002.png differ
diff --git a/png/abstract-003.png b/png/abstract-003.png
new file mode 100644
index 000000000..dfa72bf3b
Binary files /dev/null and b/png/abstract-003.png differ
diff --git a/png/abstract-004.png b/png/abstract-004.png
new file mode 100644
index 000000000..dd2901202
Binary files /dev/null and b/png/abstract-004.png differ
diff --git a/png/abstract-005.png b/png/abstract-005.png
new file mode 100644
index 000000000..9caab07fa
Binary files /dev/null and b/png/abstract-005.png differ
diff --git a/png/abstract-006.png b/png/abstract-006.png
new file mode 100644
index 000000000..ab2fc31eb
Binary files /dev/null and b/png/abstract-006.png differ
diff --git a/png/abstract-007.png b/png/abstract-007.png
new file mode 100644
index 000000000..078ba3085
Binary files /dev/null and b/png/abstract-007.png differ
diff --git a/png/abstract-008.png b/png/abstract-008.png
new file mode 100644
index 000000000..d056da17a
Binary files /dev/null and b/png/abstract-008.png differ
diff --git a/png/abstract-009.png b/png/abstract-009.png
new file mode 100644
index 000000000..d00b4aae1
Binary files /dev/null and b/png/abstract-009.png differ
diff --git a/png/abstract-010.png b/png/abstract-010.png
new file mode 100644
index 000000000..21a5d2a42
Binary files /dev/null and b/png/abstract-010.png differ
diff --git a/png/abstract-011.png b/png/abstract-011.png
new file mode 100644
index 000000000..12999b27a
Binary files /dev/null and b/png/abstract-011.png differ
diff --git a/png/abstract-012.png b/png/abstract-012.png
new file mode 100644
index 000000000..9d1b22f58
Binary files /dev/null and b/png/abstract-012.png differ
diff --git a/png/abstract-013.png b/png/abstract-013.png
new file mode 100644
index 000000000..01092c3f8
Binary files /dev/null and b/png/abstract-013.png differ
diff --git a/png/abstract-014.png b/png/abstract-014.png
new file mode 100644
index 000000000..67255c7f8
Binary files /dev/null and b/png/abstract-014.png differ
diff --git a/png/abstract-015.png b/png/abstract-015.png
new file mode 100644
index 000000000..c94df336a
Binary files /dev/null and b/png/abstract-015.png differ
diff --git a/png/abstract-016.png b/png/abstract-016.png
new file mode 100644
index 000000000..38902cee6
Binary files /dev/null and b/png/abstract-016.png differ
diff --git a/png/abstract-017.png b/png/abstract-017.png
new file mode 100644
index 000000000..d83506938
Binary files /dev/null and b/png/abstract-017.png differ
diff --git a/png/abstract-018.png b/png/abstract-018.png
new file mode 100644
index 000000000..f59414b49
Binary files /dev/null and b/png/abstract-018.png differ
diff --git a/png/abstract-019.png b/png/abstract-019.png
new file mode 100644
index 000000000..612178191
Binary files /dev/null and b/png/abstract-019.png differ
diff --git a/png/abstract-020.png b/png/abstract-020.png
new file mode 100644
index 000000000..bd61dd361
Binary files /dev/null and b/png/abstract-020.png differ
diff --git a/png/abstract-021.png b/png/abstract-021.png
new file mode 100644
index 000000000..f28394212
Binary files /dev/null and b/png/abstract-021.png differ
diff --git a/png/abstract-022.png b/png/abstract-022.png
new file mode 100644
index 000000000..e83a25b29
Binary files /dev/null and b/png/abstract-022.png differ
diff --git a/png/abstract-023.png b/png/abstract-023.png
new file mode 100644
index 000000000..2ed60be9f
Binary files /dev/null and b/png/abstract-023.png differ
diff --git a/png/abstract-024.png b/png/abstract-024.png
new file mode 100644
index 000000000..a06091fbc
Binary files /dev/null and b/png/abstract-024.png differ
diff --git a/png/abstract-025.png b/png/abstract-025.png
new file mode 100644
index 000000000..a6c86e566
Binary files /dev/null and b/png/abstract-025.png differ
diff --git a/png/abstract-026.png b/png/abstract-026.png
new file mode 100644
index 000000000..52aef5f1c
Binary files /dev/null and b/png/abstract-026.png differ
diff --git a/png/abstract-027.png b/png/abstract-027.png
new file mode 100644
index 000000000..079530154
Binary files /dev/null and b/png/abstract-027.png differ
diff --git a/png/abstract-028.png b/png/abstract-028.png
new file mode 100644
index 000000000..f3091d42e
Binary files /dev/null and b/png/abstract-028.png differ
diff --git a/png/abstract-029.png b/png/abstract-029.png
new file mode 100644
index 000000000..cab5bd9b8
Binary files /dev/null and b/png/abstract-029.png differ
diff --git a/png/abstract-030.png b/png/abstract-030.png
new file mode 100644
index 000000000..0a249f621
Binary files /dev/null and b/png/abstract-030.png differ
diff --git a/png/abstract-031.png b/png/abstract-031.png
new file mode 100644
index 000000000..3dcf542b9
Binary files /dev/null and b/png/abstract-031.png differ
diff --git a/png/abstract-032.png b/png/abstract-032.png
new file mode 100644
index 000000000..2296e12b4
Binary files /dev/null and b/png/abstract-032.png differ
diff --git a/png/abstract-033.png b/png/abstract-033.png
new file mode 100644
index 000000000..e37a8785b
Binary files /dev/null and b/png/abstract-033.png differ
diff --git a/png/abstract-034.png b/png/abstract-034.png
new file mode 100644
index 000000000..ad6408574
Binary files /dev/null and b/png/abstract-034.png differ
diff --git a/png/abstract-035.png b/png/abstract-035.png
new file mode 100644
index 000000000..c6d8f0f58
Binary files /dev/null and b/png/abstract-035.png differ
diff --git a/png/abstract-036.png b/png/abstract-036.png
new file mode 100644
index 000000000..0f3a24bc3
Binary files /dev/null and b/png/abstract-036.png differ
diff --git a/png/abstract-037.png b/png/abstract-037.png
new file mode 100644
index 000000000..660ba59b4
Binary files /dev/null and b/png/abstract-037.png differ
diff --git a/png/abstract-038.png b/png/abstract-038.png
new file mode 100644
index 000000000..a7ad8d198
Binary files /dev/null and b/png/abstract-038.png differ
diff --git a/png/abstract-039.png b/png/abstract-039.png
new file mode 100644
index 000000000..a3e5a5311
Binary files /dev/null and b/png/abstract-039.png differ
diff --git a/png/abstract-040.png b/png/abstract-040.png
new file mode 100644
index 000000000..2d21470e7
Binary files /dev/null and b/png/abstract-040.png differ
diff --git a/png/abstract-041.png b/png/abstract-041.png
new file mode 100644
index 000000000..a15f118d7
Binary files /dev/null and b/png/abstract-041.png differ
diff --git a/png/abstract-042.png b/png/abstract-042.png
new file mode 100644
index 000000000..f62a99669
Binary files /dev/null and b/png/abstract-042.png differ
diff --git a/png/abstract-043.png b/png/abstract-043.png
new file mode 100644
index 000000000..bed062169
Binary files /dev/null and b/png/abstract-043.png differ
diff --git a/png/abstract-044.png b/png/abstract-044.png
new file mode 100644
index 000000000..798410ec6
Binary files /dev/null and b/png/abstract-044.png differ
diff --git a/png/abstract-045.png b/png/abstract-045.png
new file mode 100644
index 000000000..6d1d14ff2
Binary files /dev/null and b/png/abstract-045.png differ
diff --git a/png/abstract-046.png b/png/abstract-046.png
new file mode 100644
index 000000000..daba8e7a6
Binary files /dev/null and b/png/abstract-046.png differ
diff --git a/png/abstract-047.png b/png/abstract-047.png
new file mode 100644
index 000000000..edde8748d
Binary files /dev/null and b/png/abstract-047.png differ
diff --git a/png/abstract-048.png b/png/abstract-048.png
new file mode 100644
index 000000000..210013edd
Binary files /dev/null and b/png/abstract-048.png differ
diff --git a/png/abstract-049.png b/png/abstract-049.png
new file mode 100644
index 000000000..0cade1251
Binary files /dev/null and b/png/abstract-049.png differ
diff --git a/png/abstract-050.png b/png/abstract-050.png
new file mode 100644
index 000000000..d67e6ddb2
Binary files /dev/null and b/png/abstract-050.png differ
diff --git a/png/abstract-051.png b/png/abstract-051.png
new file mode 100644
index 000000000..146b2bebf
Binary files /dev/null and b/png/abstract-051.png differ
diff --git a/png/abstract-052.png b/png/abstract-052.png
new file mode 100644
index 000000000..7da5e1884
Binary files /dev/null and b/png/abstract-052.png differ
diff --git a/png/abstract-053.png b/png/abstract-053.png
new file mode 100644
index 000000000..8d8575f8a
Binary files /dev/null and b/png/abstract-053.png differ
diff --git a/png/abstract-054.png b/png/abstract-054.png
new file mode 100644
index 000000000..73ddeb518
Binary files /dev/null and b/png/abstract-054.png differ
diff --git a/png/abstract-055.png b/png/abstract-055.png
new file mode 100644
index 000000000..bf3d8afd7
Binary files /dev/null and b/png/abstract-055.png differ
diff --git a/png/abstract-056.png b/png/abstract-056.png
new file mode 100644
index 000000000..74f6ed00c
Binary files /dev/null and b/png/abstract-056.png differ
diff --git a/png/abstract-057.png b/png/abstract-057.png
new file mode 100644
index 000000000..bc1ef58fb
Binary files /dev/null and b/png/abstract-057.png differ
diff --git a/png/abstract-058.png b/png/abstract-058.png
new file mode 100644
index 000000000..b5b8e0da3
Binary files /dev/null and b/png/abstract-058.png differ
diff --git a/png/abstract-059.png b/png/abstract-059.png
new file mode 100644
index 000000000..f0b965d8c
Binary files /dev/null and b/png/abstract-059.png differ
diff --git a/png/abstract-060.png b/png/abstract-060.png
new file mode 100644
index 000000000..aeacfa9ec
Binary files /dev/null and b/png/abstract-060.png differ
diff --git a/png/abstract-061.png b/png/abstract-061.png
new file mode 100644
index 000000000..470e6410c
Binary files /dev/null and b/png/abstract-061.png differ
diff --git a/png/abstract-062.png b/png/abstract-062.png
new file mode 100644
index 000000000..7216a26a5
Binary files /dev/null and b/png/abstract-062.png differ
diff --git a/png/abstract-063.png b/png/abstract-063.png
new file mode 100644
index 000000000..a862296db
Binary files /dev/null and b/png/abstract-063.png differ
diff --git a/png/abstract-064.png b/png/abstract-064.png
new file mode 100644
index 000000000..ac4871e4f
Binary files /dev/null and b/png/abstract-064.png differ
diff --git a/png/abstract-065.png b/png/abstract-065.png
new file mode 100644
index 000000000..a30ece62f
Binary files /dev/null and b/png/abstract-065.png differ
diff --git a/png/abstract-066.png b/png/abstract-066.png
new file mode 100644
index 000000000..840594ba5
Binary files /dev/null and b/png/abstract-066.png differ
diff --git a/png/abstract-067.png b/png/abstract-067.png
new file mode 100644
index 000000000..ab6c557ac
Binary files /dev/null and b/png/abstract-067.png differ
diff --git a/png/abstract-068.png b/png/abstract-068.png
new file mode 100644
index 000000000..00234799f
Binary files /dev/null and b/png/abstract-068.png differ
diff --git a/png/abstract-069.png b/png/abstract-069.png
new file mode 100644
index 000000000..8d5973c0d
Binary files /dev/null and b/png/abstract-069.png differ
diff --git a/png/abstract-070.png b/png/abstract-070.png
new file mode 100644
index 000000000..5c03529e3
Binary files /dev/null and b/png/abstract-070.png differ
diff --git a/png/abstract-071.png b/png/abstract-071.png
new file mode 100644
index 000000000..f783647d7
Binary files /dev/null and b/png/abstract-071.png differ
diff --git a/png/abstract-072.png b/png/abstract-072.png
new file mode 100644
index 000000000..5664d8b8c
Binary files /dev/null and b/png/abstract-072.png differ
diff --git a/png/abstract-073.png b/png/abstract-073.png
new file mode 100644
index 000000000..422dee542
Binary files /dev/null and b/png/abstract-073.png differ
diff --git a/png/abstract-074.png b/png/abstract-074.png
new file mode 100644
index 000000000..d0793c718
Binary files /dev/null and b/png/abstract-074.png differ
diff --git a/png/abstract-075.png b/png/abstract-075.png
new file mode 100644
index 000000000..c52766311
Binary files /dev/null and b/png/abstract-075.png differ
diff --git a/png/abstract-076.png b/png/abstract-076.png
new file mode 100644
index 000000000..994735a9b
Binary files /dev/null and b/png/abstract-076.png differ
diff --git a/png/abstract-077.png b/png/abstract-077.png
new file mode 100644
index 000000000..68b97beaa
Binary files /dev/null and b/png/abstract-077.png differ
diff --git a/png/abstract-078.png b/png/abstract-078.png
new file mode 100644
index 000000000..7ba73b50f
Binary files /dev/null and b/png/abstract-078.png differ
diff --git a/png/abstract-079.png b/png/abstract-079.png
new file mode 100644
index 000000000..f2c2bd97a
Binary files /dev/null and b/png/abstract-079.png differ
diff --git a/png/abstract-080.png b/png/abstract-080.png
new file mode 100644
index 000000000..05f4eff62
Binary files /dev/null and b/png/abstract-080.png differ
diff --git a/png/abstract-081.png b/png/abstract-081.png
new file mode 100644
index 000000000..cc10586b1
Binary files /dev/null and b/png/abstract-081.png differ
diff --git a/png/abstract-082.png b/png/abstract-082.png
new file mode 100644
index 000000000..ef56f7503
Binary files /dev/null and b/png/abstract-082.png differ
diff --git a/png/abstract-083.png b/png/abstract-083.png
new file mode 100644
index 000000000..e8aecc27f
Binary files /dev/null and b/png/abstract-083.png differ
diff --git a/png/abstract-084.png b/png/abstract-084.png
new file mode 100644
index 000000000..0ee982296
Binary files /dev/null and b/png/abstract-084.png differ
diff --git a/png/abstract-085.png b/png/abstract-085.png
new file mode 100644
index 000000000..56a616925
Binary files /dev/null and b/png/abstract-085.png differ
diff --git a/png/abstract-086.png b/png/abstract-086.png
new file mode 100644
index 000000000..94d19bfad
Binary files /dev/null and b/png/abstract-086.png differ
diff --git a/png/abstract-087.png b/png/abstract-087.png
new file mode 100644
index 000000000..aa35094a2
Binary files /dev/null and b/png/abstract-087.png differ
diff --git a/png/abstract-088.png b/png/abstract-088.png
new file mode 100644
index 000000000..7b1debedc
Binary files /dev/null and b/png/abstract-088.png differ
diff --git a/png/abstract-089.png b/png/abstract-089.png
new file mode 100644
index 000000000..387dcad5b
Binary files /dev/null and b/png/abstract-089.png differ
diff --git a/png/abstract-090.png b/png/abstract-090.png
new file mode 100644
index 000000000..c0940e32e
Binary files /dev/null and b/png/abstract-090.png differ
diff --git a/png/abstract-091.png b/png/abstract-091.png
new file mode 100644
index 000000000..8e476eae0
Binary files /dev/null and b/png/abstract-091.png differ
diff --git a/png/abstract-092.png b/png/abstract-092.png
new file mode 100644
index 000000000..5ff6d3877
Binary files /dev/null and b/png/abstract-092.png differ
diff --git a/png/abstract-093.png b/png/abstract-093.png
new file mode 100644
index 000000000..e8237fd4d
Binary files /dev/null and b/png/abstract-093.png differ
diff --git a/png/abstract-094.png b/png/abstract-094.png
new file mode 100644
index 000000000..c7f31bcd0
Binary files /dev/null and b/png/abstract-094.png differ
diff --git a/png/abstract-095.png b/png/abstract-095.png
new file mode 100644
index 000000000..dde83c974
Binary files /dev/null and b/png/abstract-095.png differ
diff --git a/png/abstract-096.png b/png/abstract-096.png
new file mode 100644
index 000000000..e8bca0733
Binary files /dev/null and b/png/abstract-096.png differ
diff --git a/png/abstract-097.png b/png/abstract-097.png
new file mode 100644
index 000000000..3c7e0c4e5
Binary files /dev/null and b/png/abstract-097.png differ
diff --git a/png/abstract-098.png b/png/abstract-098.png
new file mode 100644
index 000000000..ee541f5d1
Binary files /dev/null and b/png/abstract-098.png differ
diff --git a/png/abstract-099.png b/png/abstract-099.png
new file mode 100644
index 000000000..accc1e427
Binary files /dev/null and b/png/abstract-099.png differ
diff --git a/png/abstract-100.png b/png/abstract-100.png
new file mode 100644
index 000000000..ff5ca4d99
Binary files /dev/null and b/png/abstract-100.png differ
diff --git a/png/abstract-101.png b/png/abstract-101.png
new file mode 100644
index 000000000..bb68b376d
Binary files /dev/null and b/png/abstract-101.png differ
diff --git a/png/abstract-102.png b/png/abstract-102.png
new file mode 100644
index 000000000..77fbab7bd
Binary files /dev/null and b/png/abstract-102.png differ
diff --git a/png/abstract-103.png b/png/abstract-103.png
new file mode 100644
index 000000000..044e68766
Binary files /dev/null and b/png/abstract-103.png differ
diff --git a/png/abstract-104.png b/png/abstract-104.png
new file mode 100644
index 000000000..d185480b0
Binary files /dev/null and b/png/abstract-104.png differ
diff --git a/png/abstract-105.png b/png/abstract-105.png
new file mode 100644
index 000000000..2cc21d485
Binary files /dev/null and b/png/abstract-105.png differ
diff --git a/png/abstract-106.png b/png/abstract-106.png
new file mode 100644
index 000000000..641c9e026
Binary files /dev/null and b/png/abstract-106.png differ
diff --git a/png/abstract-107.png b/png/abstract-107.png
new file mode 100644
index 000000000..57c402e7f
Binary files /dev/null and b/png/abstract-107.png differ
diff --git a/png/abstract-108.png b/png/abstract-108.png
new file mode 100644
index 000000000..1760f190b
Binary files /dev/null and b/png/abstract-108.png differ
diff --git a/png/abstract-109.png b/png/abstract-109.png
new file mode 100644
index 000000000..a0d5eb21d
Binary files /dev/null and b/png/abstract-109.png differ
diff --git a/png/abstract-110.png b/png/abstract-110.png
new file mode 100644
index 000000000..bf0759fbb
Binary files /dev/null and b/png/abstract-110.png differ
diff --git a/png/abstract-111.png b/png/abstract-111.png
new file mode 100644
index 000000000..ffc002819
Binary files /dev/null and b/png/abstract-111.png differ
diff --git a/png/abstract-112.png b/png/abstract-112.png
new file mode 100644
index 000000000..7de09f3d5
Binary files /dev/null and b/png/abstract-112.png differ
diff --git a/png/abstract-113.png b/png/abstract-113.png
new file mode 100644
index 000000000..6ceab84e4
Binary files /dev/null and b/png/abstract-113.png differ
diff --git a/png/abstract-114.png b/png/abstract-114.png
new file mode 100644
index 000000000..c628cccae
Binary files /dev/null and b/png/abstract-114.png differ
diff --git a/png/abstract-115.png b/png/abstract-115.png
new file mode 100644
index 000000000..e723bf573
Binary files /dev/null and b/png/abstract-115.png differ
diff --git a/png/abstract-116.png b/png/abstract-116.png
new file mode 100644
index 000000000..bb57f2449
Binary files /dev/null and b/png/abstract-116.png differ
diff --git a/png/abstract-117.png b/png/abstract-117.png
new file mode 100644
index 000000000..32e0ca179
Binary files /dev/null and b/png/abstract-117.png differ
diff --git a/png/abstract-118.png b/png/abstract-118.png
new file mode 100644
index 000000000..3ad3aff3f
Binary files /dev/null and b/png/abstract-118.png differ
diff --git a/png/abstract-119.png b/png/abstract-119.png
new file mode 100644
index 000000000..1a73cfc74
Binary files /dev/null and b/png/abstract-119.png differ
diff --git a/png/abstract-120.png b/png/abstract-120.png
new file mode 100644
index 000000000..fb2822d62
Binary files /dev/null and b/png/abstract-120.png differ
diff --git a/png/abstract-121.png b/png/abstract-121.png
new file mode 100644
index 000000000..bfd686ab5
Binary files /dev/null and b/png/abstract-121.png differ
diff --git a/png/accordion.png b/png/accordion.png
new file mode 100644
index 000000000..f65153075
Binary files /dev/null and b/png/accordion.png differ
diff --git a/png/ace.png b/png/ace.png
new file mode 100644
index 000000000..f54adaf66
Binary files /dev/null and b/png/ace.png differ
diff --git a/png/achievement.png b/png/achievement.png
new file mode 100644
index 000000000..1247db6c9
Binary files /dev/null and b/png/achievement.png differ
diff --git a/png/achilles-heel.png b/png/achilles-heel.png
new file mode 100644
index 000000000..06b271cae
Binary files /dev/null and b/png/achilles-heel.png differ
diff --git a/png/acid-blob.png b/png/acid-blob.png
new file mode 100644
index 000000000..0a4ad56f7
Binary files /dev/null and b/png/acid-blob.png differ
diff --git a/png/acid-tube.png b/png/acid-tube.png
new file mode 100644
index 000000000..b743b8e0b
Binary files /dev/null and b/png/acid-tube.png differ
diff --git a/png/acid.png b/png/acid.png
new file mode 100644
index 000000000..9a04d8e5d
Binary files /dev/null and b/png/acid.png differ
diff --git a/png/acorn.png b/png/acorn.png
new file mode 100644
index 000000000..4d3cc445f
Binary files /dev/null and b/png/acorn.png differ
diff --git a/png/acoustic-megaphone.png b/png/acoustic-megaphone.png
new file mode 100644
index 000000000..ffa866a15
Binary files /dev/null and b/png/acoustic-megaphone.png differ
diff --git a/png/acrobatic.png b/png/acrobatic.png
new file mode 100644
index 000000000..dcb975f1f
Binary files /dev/null and b/png/acrobatic.png differ
diff --git a/png/aerial-signal.png b/png/aerial-signal.png
new file mode 100644
index 000000000..a4d88556b
Binary files /dev/null and b/png/aerial-signal.png differ
diff --git a/png/aerodynamic-harpoon.png b/png/aerodynamic-harpoon.png
new file mode 100644
index 000000000..e70b2f650
Binary files /dev/null and b/png/aerodynamic-harpoon.png differ
diff --git a/png/aerosol.png b/png/aerosol.png
new file mode 100644
index 000000000..32aa1be05
Binary files /dev/null and b/png/aerosol.png differ
diff --git a/png/africa.png b/png/africa.png
new file mode 100644
index 000000000..94ffb3cee
Binary files /dev/null and b/png/africa.png differ
diff --git a/png/afterburn.png b/png/afterburn.png
new file mode 100644
index 000000000..360b79aef
Binary files /dev/null and b/png/afterburn.png differ
diff --git a/png/agave.png b/png/agave.png
new file mode 100644
index 000000000..74830ef14
Binary files /dev/null and b/png/agave.png differ
diff --git a/png/ages.png b/png/ages.png
new file mode 100644
index 000000000..89fc43356
Binary files /dev/null and b/png/ages.png differ
diff --git a/png/air-balloon.png b/png/air-balloon.png
new file mode 100644
index 000000000..ca4d9792b
Binary files /dev/null and b/png/air-balloon.png differ
diff --git a/png/air-force.png b/png/air-force.png
new file mode 100644
index 000000000..9fe223087
Binary files /dev/null and b/png/air-force.png differ
diff --git a/png/air-man.png b/png/air-man.png
new file mode 100644
index 000000000..b8211e8d5
Binary files /dev/null and b/png/air-man.png differ
diff --git a/png/air-zigzag.png b/png/air-zigzag.png
new file mode 100644
index 000000000..669a4a710
Binary files /dev/null and b/png/air-zigzag.png differ
diff --git a/png/airplane-arrival.png b/png/airplane-arrival.png
new file mode 100644
index 000000000..97acd0828
Binary files /dev/null and b/png/airplane-arrival.png differ
diff --git a/png/airplane-departure.png b/png/airplane-departure.png
new file mode 100644
index 000000000..c1ab3aa68
Binary files /dev/null and b/png/airplane-departure.png differ
diff --git a/png/airplane.png b/png/airplane.png
new file mode 100644
index 000000000..cfaafd867
Binary files /dev/null and b/png/airplane.png differ
diff --git a/png/airtight-hatch.png b/png/airtight-hatch.png
new file mode 100644
index 000000000..aabb286df
Binary files /dev/null and b/png/airtight-hatch.png differ
diff --git a/png/ak47.png b/png/ak47.png
new file mode 100644
index 000000000..1a5ebaa4e
Binary files /dev/null and b/png/ak47.png differ
diff --git a/png/ak47u.png b/png/ak47u.png
new file mode 100644
index 000000000..0165cc393
Binary files /dev/null and b/png/ak47u.png differ
diff --git a/png/akhet.png b/png/akhet.png
new file mode 100644
index 000000000..7adcdffc5
Binary files /dev/null and b/png/akhet.png differ
diff --git a/png/alarm-clock.png b/png/alarm-clock.png
new file mode 100644
index 000000000..8aaa1c6f9
Binary files /dev/null and b/png/alarm-clock.png differ
diff --git a/png/algae.png b/png/algae.png
new file mode 100644
index 000000000..5e2473091
Binary files /dev/null and b/png/algae.png differ
diff --git a/png/algeria.png b/png/algeria.png
new file mode 100644
index 000000000..d5934f588
Binary files /dev/null and b/png/algeria.png differ
diff --git a/png/alien-bug.png b/png/alien-bug.png
new file mode 100644
index 000000000..e2ed1a616
Binary files /dev/null and b/png/alien-bug.png differ
diff --git a/png/alien-egg.png b/png/alien-egg.png
new file mode 100644
index 000000000..4870f3b6d
Binary files /dev/null and b/png/alien-egg.png differ
diff --git a/png/alien-fire.png b/png/alien-fire.png
new file mode 100644
index 000000000..e3c86ab6c
Binary files /dev/null and b/png/alien-fire.png differ
diff --git a/png/alien-skull.png b/png/alien-skull.png
new file mode 100644
index 000000000..8160ce7a5
Binary files /dev/null and b/png/alien-skull.png differ
diff --git a/png/alien-stare.png b/png/alien-stare.png
new file mode 100644
index 000000000..8f74a440d
Binary files /dev/null and b/png/alien-stare.png differ
diff --git a/png/all-for-one.png b/png/all-for-one.png
new file mode 100644
index 000000000..a4d44bec6
Binary files /dev/null and b/png/all-for-one.png differ
diff --git a/png/all-seeing-eye.png b/png/all-seeing-eye.png
new file mode 100644
index 000000000..f7858951f
Binary files /dev/null and b/png/all-seeing-eye.png differ
diff --git a/png/allied-star.png b/png/allied-star.png
new file mode 100644
index 000000000..e13527f03
Binary files /dev/null and b/png/allied-star.png differ
diff --git a/png/alligator-clip.png b/png/alligator-clip.png
new file mode 100644
index 000000000..57f8d5b34
Binary files /dev/null and b/png/alligator-clip.png differ
diff --git a/png/almond.png b/png/almond.png
new file mode 100644
index 000000000..c5e8b5c26
Binary files /dev/null and b/png/almond.png differ
diff --git a/png/amber-mosquito.png b/png/amber-mosquito.png
new file mode 100644
index 000000000..4e8737916
Binary files /dev/null and b/png/amber-mosquito.png differ
diff --git a/png/ambulance.png b/png/ambulance.png
new file mode 100644
index 000000000..02c3a38ac
Binary files /dev/null and b/png/ambulance.png differ
diff --git a/png/american-football-ball.png b/png/american-football-ball.png
new file mode 100644
index 000000000..a7049011a
Binary files /dev/null and b/png/american-football-ball.png differ
diff --git a/png/american-football-helmet.png b/png/american-football-helmet.png
new file mode 100644
index 000000000..8064a744e
Binary files /dev/null and b/png/american-football-helmet.png differ
diff --git a/png/american-football-player.png b/png/american-football-player.png
new file mode 100644
index 000000000..79cf7d096
Binary files /dev/null and b/png/american-football-player.png differ
diff --git a/png/american-shield.png b/png/american-shield.png
new file mode 100644
index 000000000..34a611edc
Binary files /dev/null and b/png/american-shield.png differ
diff --git a/png/amethyst.png b/png/amethyst.png
new file mode 100644
index 000000000..d51b4d388
Binary files /dev/null and b/png/amethyst.png differ
diff --git a/png/ammo-box.png b/png/ammo-box.png
new file mode 100644
index 000000000..20f8da4ba
Binary files /dev/null and b/png/ammo-box.png differ
diff --git a/png/ammonite-fossil.png b/png/ammonite-fossil.png
new file mode 100644
index 000000000..bec1fc745
Binary files /dev/null and b/png/ammonite-fossil.png differ
diff --git a/png/ammonite.png b/png/ammonite.png
new file mode 100644
index 000000000..0e7f2e8e0
Binary files /dev/null and b/png/ammonite.png differ
diff --git a/png/amphora.png b/png/amphora.png
new file mode 100644
index 000000000..24433f3a8
Binary files /dev/null and b/png/amphora.png differ
diff --git a/png/ample-dress.png b/png/ample-dress.png
new file mode 100644
index 000000000..f5e61bb79
Binary files /dev/null and b/png/ample-dress.png differ
diff --git a/png/amplitude.png b/png/amplitude.png
new file mode 100644
index 000000000..68e9ee3b0
Binary files /dev/null and b/png/amplitude.png differ
diff --git a/png/amputation.png b/png/amputation.png
new file mode 100644
index 000000000..475bf79f2
Binary files /dev/null and b/png/amputation.png differ
diff --git a/png/anarchy.png b/png/anarchy.png
new file mode 100644
index 000000000..13ff345ec
Binary files /dev/null and b/png/anarchy.png differ
diff --git a/png/anatomy.png b/png/anatomy.png
new file mode 100644
index 000000000..95ef22174
Binary files /dev/null and b/png/anatomy.png differ
diff --git a/png/anchor.png b/png/anchor.png
new file mode 100644
index 000000000..ec7f78097
Binary files /dev/null and b/png/anchor.png differ
diff --git a/png/ancient-columns.png b/png/ancient-columns.png
new file mode 100644
index 000000000..8c5fc5f0d
Binary files /dev/null and b/png/ancient-columns.png differ
diff --git a/png/ancient-ruins.png b/png/ancient-ruins.png
new file mode 100644
index 000000000..d3f9b9abf
Binary files /dev/null and b/png/ancient-ruins.png differ
diff --git a/png/ancient-screw.png b/png/ancient-screw.png
new file mode 100644
index 000000000..36e0c83f8
Binary files /dev/null and b/png/ancient-screw.png differ
diff --git a/png/ancient-sword.png b/png/ancient-sword.png
new file mode 100644
index 000000000..07f26e267
Binary files /dev/null and b/png/ancient-sword.png differ
diff --git a/png/android-mask.png b/png/android-mask.png
new file mode 100644
index 000000000..5704254ba
Binary files /dev/null and b/png/android-mask.png differ
diff --git a/png/andromeda-chain.png b/png/andromeda-chain.png
new file mode 100644
index 000000000..f70f54205
Binary files /dev/null and b/png/andromeda-chain.png differ
diff --git a/png/angel-outfit.png b/png/angel-outfit.png
new file mode 100644
index 000000000..4df59f8b2
Binary files /dev/null and b/png/angel-outfit.png differ
diff --git a/png/angel-wings.png b/png/angel-wings.png
new file mode 100644
index 000000000..8a167e77d
Binary files /dev/null and b/png/angel-wings.png differ
diff --git a/png/angler-fish.png b/png/angler-fish.png
new file mode 100644
index 000000000..48a038a37
Binary files /dev/null and b/png/angler-fish.png differ
diff --git a/png/angola.png b/png/angola.png
new file mode 100644
index 000000000..9ed09ba31
Binary files /dev/null and b/png/angola.png differ
diff --git a/png/angry-eyes.png b/png/angry-eyes.png
new file mode 100644
index 000000000..89f887ab1
Binary files /dev/null and b/png/angry-eyes.png differ
diff --git a/png/angular-spider.png b/png/angular-spider.png
new file mode 100644
index 000000000..8122b3f87
Binary files /dev/null and b/png/angular-spider.png differ
diff --git a/png/animal-hide.png b/png/animal-hide.png
new file mode 100644
index 000000000..e6b53df4f
Binary files /dev/null and b/png/animal-hide.png differ
diff --git a/png/animal-skull.png b/png/animal-skull.png
new file mode 100644
index 000000000..d02a5e717
Binary files /dev/null and b/png/animal-skull.png differ
diff --git a/png/ankh.png b/png/ankh.png
new file mode 100644
index 000000000..732cfbb48
Binary files /dev/null and b/png/ankh.png differ
diff --git a/png/annexation.png b/png/annexation.png
new file mode 100644
index 000000000..9ac873f89
Binary files /dev/null and b/png/annexation.png differ
diff --git a/png/ant.png b/png/ant.png
new file mode 100644
index 000000000..d87d8b29e
Binary files /dev/null and b/png/ant.png differ
diff --git a/png/antarctica.png b/png/antarctica.png
new file mode 100644
index 000000000..079d25fd9
Binary files /dev/null and b/png/antarctica.png differ
diff --git a/png/anteater.png b/png/anteater.png
new file mode 100644
index 000000000..25fa287de
Binary files /dev/null and b/png/anteater.png differ
diff --git a/png/anthem.png b/png/anthem.png
new file mode 100644
index 000000000..f4ccba541
Binary files /dev/null and b/png/anthem.png differ
diff --git a/png/anti-aircraft-gun.png b/png/anti-aircraft-gun.png
new file mode 100644
index 000000000..94d25d0f8
Binary files /dev/null and b/png/anti-aircraft-gun.png differ
diff --git a/png/antibody.png b/png/antibody.png
new file mode 100644
index 000000000..6f5d62ee7
Binary files /dev/null and b/png/antibody.png differ
diff --git a/png/anticlockwise-rotation.png b/png/anticlockwise-rotation.png
new file mode 100644
index 000000000..7a186b618
Binary files /dev/null and b/png/anticlockwise-rotation.png differ
diff --git a/png/ants.png b/png/ants.png
new file mode 100644
index 000000000..fe84fdef2
Binary files /dev/null and b/png/ants.png differ
diff --git a/png/anubis.png b/png/anubis.png
new file mode 100644
index 000000000..a14db4903
Binary files /dev/null and b/png/anubis.png differ
diff --git a/png/anvil-impact.png b/png/anvil-impact.png
new file mode 100644
index 000000000..430771b7a
Binary files /dev/null and b/png/anvil-impact.png differ
diff --git a/png/anvil.png b/png/anvil.png
new file mode 100644
index 000000000..ea3fd8097
Binary files /dev/null and b/png/anvil.png differ
diff --git a/png/apc.png b/png/apc.png
new file mode 100644
index 000000000..8666e24df
Binary files /dev/null and b/png/apc.png differ
diff --git a/png/apollo-capsule.png b/png/apollo-capsule.png
new file mode 100644
index 000000000..d0ee9d11b
Binary files /dev/null and b/png/apollo-capsule.png differ
diff --git a/png/apothecary.png b/png/apothecary.png
new file mode 100644
index 000000000..ca5776163
Binary files /dev/null and b/png/apothecary.png differ
diff --git a/png/apple-core.png b/png/apple-core.png
new file mode 100644
index 000000000..def1d3358
Binary files /dev/null and b/png/apple-core.png differ
diff --git a/png/apple-maggot.png b/png/apple-maggot.png
new file mode 100644
index 000000000..910d4e520
Binary files /dev/null and b/png/apple-maggot.png differ
diff --git a/png/apple-seeds.png b/png/apple-seeds.png
new file mode 100644
index 000000000..1bccd5c9a
Binary files /dev/null and b/png/apple-seeds.png differ
diff --git a/png/aquarium.png b/png/aquarium.png
new file mode 100644
index 000000000..b9bf664a9
Binary files /dev/null and b/png/aquarium.png differ
diff --git a/png/aquarius.png b/png/aquarius.png
new file mode 100644
index 000000000..006b8e064
Binary files /dev/null and b/png/aquarius.png differ
diff --git a/png/aqueduct.png b/png/aqueduct.png
new file mode 100644
index 000000000..4e20055ed
Binary files /dev/null and b/png/aqueduct.png differ
diff --git a/png/arabic-door.png b/png/arabic-door.png
new file mode 100644
index 000000000..cffe48158
Binary files /dev/null and b/png/arabic-door.png differ
diff --git a/png/arc-triomphe.png b/png/arc-triomphe.png
new file mode 100644
index 000000000..0c00305d3
Binary files /dev/null and b/png/arc-triomphe.png differ
diff --git a/png/arch-bridge.png b/png/arch-bridge.png
new file mode 100644
index 000000000..d05545cb0
Binary files /dev/null and b/png/arch-bridge.png differ
diff --git a/png/archaeopteryx-fossil.png b/png/archaeopteryx-fossil.png
new file mode 100644
index 000000000..9567d0240
Binary files /dev/null and b/png/archaeopteryx-fossil.png differ
diff --git a/png/archer.png b/png/archer.png
new file mode 100644
index 000000000..cc5bb0203
Binary files /dev/null and b/png/archer.png differ
diff --git a/png/archery-target.png b/png/archery-target.png
new file mode 100644
index 000000000..dc8c4b697
Binary files /dev/null and b/png/archery-target.png differ
diff --git a/png/architect-mask.png b/png/architect-mask.png
new file mode 100644
index 000000000..df38e7152
Binary files /dev/null and b/png/architect-mask.png differ
diff --git a/png/archive-register.png b/png/archive-register.png
new file mode 100644
index 000000000..565ed0e74
Binary files /dev/null and b/png/archive-register.png differ
diff --git a/png/archive-research.png b/png/archive-research.png
new file mode 100644
index 000000000..8380fbc55
Binary files /dev/null and b/png/archive-research.png differ
diff --git a/png/arcing-bolt.png b/png/arcing-bolt.png
new file mode 100644
index 000000000..78c5a8ef6
Binary files /dev/null and b/png/arcing-bolt.png differ
diff --git a/png/arena.png b/png/arena.png
new file mode 100644
index 000000000..f9a3c5726
Binary files /dev/null and b/png/arena.png differ
diff --git a/png/aries.png b/png/aries.png
new file mode 100644
index 000000000..fe853314a
Binary files /dev/null and b/png/aries.png differ
diff --git a/png/arm-bandage.png b/png/arm-bandage.png
new file mode 100644
index 000000000..8415f15e0
Binary files /dev/null and b/png/arm-bandage.png differ
diff --git a/png/arm-sling.png b/png/arm-sling.png
new file mode 100644
index 000000000..8d714f346
Binary files /dev/null and b/png/arm-sling.png differ
diff --git a/png/arm.png b/png/arm.png
new file mode 100644
index 000000000..91dc78da2
Binary files /dev/null and b/png/arm.png differ
diff --git a/png/armadillo-tail.png b/png/armadillo-tail.png
new file mode 100644
index 000000000..cc4157396
Binary files /dev/null and b/png/armadillo-tail.png differ
diff --git a/png/armadillo.png b/png/armadillo.png
new file mode 100644
index 000000000..2d6df2b68
Binary files /dev/null and b/png/armadillo.png differ
diff --git a/png/armor-downgrade.png b/png/armor-downgrade.png
new file mode 100644
index 000000000..f4f2d807c
Binary files /dev/null and b/png/armor-downgrade.png differ
diff --git a/png/armor-punch.png b/png/armor-punch.png
new file mode 100644
index 000000000..5da0dab82
Binary files /dev/null and b/png/armor-punch.png differ
diff --git a/png/armor-upgrade.png b/png/armor-upgrade.png
new file mode 100644
index 000000000..df68d4039
Binary files /dev/null and b/png/armor-upgrade.png differ
diff --git a/png/armor-vest.png b/png/armor-vest.png
new file mode 100644
index 000000000..40d3e6b0c
Binary files /dev/null and b/png/armor-vest.png differ
diff --git a/png/armored-boomerang.png b/png/armored-boomerang.png
new file mode 100644
index 000000000..fb3ec468a
Binary files /dev/null and b/png/armored-boomerang.png differ
diff --git a/png/armored-pants.png b/png/armored-pants.png
new file mode 100644
index 000000000..ff7afb68b
Binary files /dev/null and b/png/armored-pants.png differ
diff --git a/png/armoured-shell.png b/png/armoured-shell.png
new file mode 100644
index 000000000..bb02b7d1e
Binary files /dev/null and b/png/armoured-shell.png differ
diff --git a/png/arrest.png b/png/arrest.png
new file mode 100644
index 000000000..a748624e2
Binary files /dev/null and b/png/arrest.png differ
diff --git a/png/arrow-cluster.png b/png/arrow-cluster.png
new file mode 100644
index 000000000..6df133d9f
Binary files /dev/null and b/png/arrow-cluster.png differ
diff --git a/png/arrow-cursor.png b/png/arrow-cursor.png
new file mode 100644
index 000000000..fcc60ff53
Binary files /dev/null and b/png/arrow-cursor.png differ
diff --git a/png/arrow-dunk.png b/png/arrow-dunk.png
new file mode 100644
index 000000000..52fc01884
Binary files /dev/null and b/png/arrow-dunk.png differ
diff --git a/png/arrow-flights.png b/png/arrow-flights.png
new file mode 100644
index 000000000..c349d9eea
Binary files /dev/null and b/png/arrow-flights.png differ
diff --git a/png/arrow-scope.png b/png/arrow-scope.png
new file mode 100644
index 000000000..add9ddaff
Binary files /dev/null and b/png/arrow-scope.png differ
diff --git a/png/arrow-wings.png b/png/arrow-wings.png
new file mode 100644
index 000000000..de0723364
Binary files /dev/null and b/png/arrow-wings.png differ
diff --git a/png/arrowed.png b/png/arrowed.png
new file mode 100644
index 000000000..218ff68b9
Binary files /dev/null and b/png/arrowed.png differ
diff --git a/png/arrowhead.png b/png/arrowhead.png
new file mode 100644
index 000000000..c7fa38b00
Binary files /dev/null and b/png/arrowhead.png differ
diff --git a/png/arrows-shield.png b/png/arrows-shield.png
new file mode 100644
index 000000000..1ad4cbaaa
Binary files /dev/null and b/png/arrows-shield.png differ
diff --git a/png/arson.png b/png/arson.png
new file mode 100644
index 000000000..8ab20fe24
Binary files /dev/null and b/png/arson.png differ
diff --git a/png/artichoke.png b/png/artichoke.png
new file mode 100644
index 000000000..98db93e2a
Binary files /dev/null and b/png/artichoke.png differ
diff --git a/png/artificial-hive.png b/png/artificial-hive.png
new file mode 100644
index 000000000..3820b5762
Binary files /dev/null and b/png/artificial-hive.png differ
diff --git a/png/artificial-intelligence.png b/png/artificial-intelligence.png
new file mode 100644
index 000000000..a1aa3c136
Binary files /dev/null and b/png/artificial-intelligence.png differ
diff --git a/png/artillery-shell.png b/png/artillery-shell.png
new file mode 100644
index 000000000..c6aaceed6
Binary files /dev/null and b/png/artillery-shell.png differ
diff --git a/png/ascending-block.png b/png/ascending-block.png
new file mode 100644
index 000000000..644bf6531
Binary files /dev/null and b/png/ascending-block.png differ
diff --git a/png/asian-lantern.png b/png/asian-lantern.png
new file mode 100644
index 000000000..4f06fd223
Binary files /dev/null and b/png/asian-lantern.png differ
diff --git a/png/asparagus.png b/png/asparagus.png
new file mode 100644
index 000000000..52a6ac1ad
Binary files /dev/null and b/png/asparagus.png differ
diff --git a/png/aspergillum.png b/png/aspergillum.png
new file mode 100644
index 000000000..c6e02a71e
Binary files /dev/null and b/png/aspergillum.png differ
diff --git a/png/assassin-pocket.png b/png/assassin-pocket.png
new file mode 100644
index 000000000..d67892a3a
Binary files /dev/null and b/png/assassin-pocket.png differ
diff --git a/png/asteroid.png b/png/asteroid.png
new file mode 100644
index 000000000..b614f1785
Binary files /dev/null and b/png/asteroid.png differ
diff --git a/png/astrolabe.png b/png/astrolabe.png
new file mode 100644
index 000000000..4b4c8a139
Binary files /dev/null and b/png/astrolabe.png differ
diff --git a/png/astronaut-helmet.png b/png/astronaut-helmet.png
new file mode 100644
index 000000000..0b6840f88
Binary files /dev/null and b/png/astronaut-helmet.png differ
diff --git a/png/at-sea.png b/png/at-sea.png
new file mode 100644
index 000000000..564b5a7b4
Binary files /dev/null and b/png/at-sea.png differ
diff --git a/png/atlas.png b/png/atlas.png
new file mode 100644
index 000000000..4d77356f1
Binary files /dev/null and b/png/atlas.png differ
diff --git a/png/atom-core.png b/png/atom-core.png
new file mode 100644
index 000000000..af8c4ed0e
Binary files /dev/null and b/png/atom-core.png differ
diff --git a/png/atom.png b/png/atom.png
new file mode 100644
index 000000000..a425da742
Binary files /dev/null and b/png/atom.png differ
diff --git a/png/atomic-slashes.png b/png/atomic-slashes.png
new file mode 100644
index 000000000..7c1b31aa3
Binary files /dev/null and b/png/atomic-slashes.png differ
diff --git a/png/attached-shield.png b/png/attached-shield.png
new file mode 100644
index 000000000..4efd39f8f
Binary files /dev/null and b/png/attached-shield.png differ
diff --git a/png/aubergine.png b/png/aubergine.png
new file mode 100644
index 000000000..bea341bd8
Binary files /dev/null and b/png/aubergine.png differ
diff --git a/png/audio-cassette.png b/png/audio-cassette.png
new file mode 100644
index 000000000..815237960
Binary files /dev/null and b/png/audio-cassette.png differ
diff --git a/png/aura.png b/png/aura.png
new file mode 100644
index 000000000..a003229c5
Binary files /dev/null and b/png/aura.png differ
diff --git a/png/australia.png b/png/australia.png
new file mode 100644
index 000000000..5be0c64f3
Binary files /dev/null and b/png/australia.png differ
diff --git a/png/auto-repair.png b/png/auto-repair.png
new file mode 100644
index 000000000..8117907a3
Binary files /dev/null and b/png/auto-repair.png differ
diff --git a/png/autogun.png b/png/autogun.png
new file mode 100644
index 000000000..c1aa03fe0
Binary files /dev/null and b/png/autogun.png differ
diff --git a/png/automatic-sas.png b/png/automatic-sas.png
new file mode 100644
index 000000000..6df44e15b
Binary files /dev/null and b/png/automatic-sas.png differ
diff --git a/png/avocado.png b/png/avocado.png
new file mode 100644
index 000000000..84a6ab950
Binary files /dev/null and b/png/avocado.png differ
diff --git a/png/avoidance.png b/png/avoidance.png
new file mode 100644
index 000000000..25668b89d
Binary files /dev/null and b/png/avoidance.png differ
diff --git a/png/awareness.png b/png/awareness.png
new file mode 100644
index 000000000..92475fdd2
Binary files /dev/null and b/png/awareness.png differ
diff --git a/png/axe-in-log.png b/png/axe-in-log.png
new file mode 100644
index 000000000..ef61ec1d8
Binary files /dev/null and b/png/axe-in-log.png differ
diff --git a/png/axe-in-stump.png b/png/axe-in-stump.png
new file mode 100644
index 000000000..e02a0adc7
Binary files /dev/null and b/png/axe-in-stump.png differ
diff --git a/png/axe-swing.png b/png/axe-swing.png
new file mode 100644
index 000000000..04100b9a7
Binary files /dev/null and b/png/axe-swing.png differ
diff --git a/png/axe-sword.png b/png/axe-sword.png
new file mode 100644
index 000000000..bdc77259e
Binary files /dev/null and b/png/axe-sword.png differ
diff --git a/png/axolotl.png b/png/axolotl.png
new file mode 100644
index 000000000..5eee9d837
Binary files /dev/null and b/png/axolotl.png differ
diff --git a/png/aztec-calendar-sun.png b/png/aztec-calendar-sun.png
new file mode 100644
index 000000000..017439633
Binary files /dev/null and b/png/aztec-calendar-sun.png differ
diff --git a/png/azul-flake.png b/png/azul-flake.png
new file mode 100644
index 000000000..4acd30a5e
Binary files /dev/null and b/png/azul-flake.png differ
diff --git a/png/baby-bottle.png b/png/baby-bottle.png
new file mode 100644
index 000000000..73f02abf5
Binary files /dev/null and b/png/baby-bottle.png differ
diff --git a/png/baby-face.png b/png/baby-face.png
new file mode 100644
index 000000000..09c7c11d0
Binary files /dev/null and b/png/baby-face.png differ
diff --git a/png/babyfoot-players.png b/png/babyfoot-players.png
new file mode 100644
index 000000000..7d5ab516f
Binary files /dev/null and b/png/babyfoot-players.png differ
diff --git a/png/back-forth.png b/png/back-forth.png
new file mode 100644
index 000000000..909debeaa
Binary files /dev/null and b/png/back-forth.png differ
diff --git a/png/back-pain.png b/png/back-pain.png
new file mode 100644
index 000000000..76d5b3f29
Binary files /dev/null and b/png/back-pain.png differ
diff --git a/png/backbone-shell.png b/png/backbone-shell.png
new file mode 100644
index 000000000..06597c972
Binary files /dev/null and b/png/backbone-shell.png differ
diff --git a/png/backgammon.png b/png/backgammon.png
new file mode 100644
index 000000000..1aa780cbf
Binary files /dev/null and b/png/backgammon.png differ
diff --git a/png/backpack.png b/png/backpack.png
new file mode 100644
index 000000000..b953ff1a0
Binary files /dev/null and b/png/backpack.png differ
diff --git a/png/backstab.png b/png/backstab.png
new file mode 100644
index 000000000..1eac430e3
Binary files /dev/null and b/png/backstab.png differ
diff --git a/png/backup.png b/png/backup.png
new file mode 100644
index 000000000..a29562dd6
Binary files /dev/null and b/png/backup.png differ
diff --git a/png/backward-time.png b/png/backward-time.png
new file mode 100644
index 000000000..c6898e2fd
Binary files /dev/null and b/png/backward-time.png differ
diff --git a/png/bacon.png b/png/bacon.png
new file mode 100644
index 000000000..ba77b0925
Binary files /dev/null and b/png/bacon.png differ
diff --git a/png/bad-breath.png b/png/bad-breath.png
new file mode 100644
index 000000000..ec2be7e24
Binary files /dev/null and b/png/bad-breath.png differ
diff --git a/png/bad-gnome.png b/png/bad-gnome.png
new file mode 100644
index 000000000..62ecc2bad
Binary files /dev/null and b/png/bad-gnome.png differ
diff --git a/png/badger.png b/png/badger.png
new file mode 100644
index 000000000..7219b0c85
Binary files /dev/null and b/png/badger.png differ
diff --git a/png/bagpipes.png b/png/bagpipes.png
new file mode 100644
index 000000000..bfd5ec03d
Binary files /dev/null and b/png/bagpipes.png differ
diff --git a/png/balaclava.png b/png/balaclava.png
new file mode 100644
index 000000000..f34b33d69
Binary files /dev/null and b/png/balaclava.png differ
diff --git a/png/balkenkreuz.png b/png/balkenkreuz.png
new file mode 100644
index 000000000..3d781e79d
Binary files /dev/null and b/png/balkenkreuz.png differ
diff --git a/png/ball-glow.png b/png/ball-glow.png
new file mode 100644
index 000000000..e5946a336
Binary files /dev/null and b/png/ball-glow.png differ
diff --git a/png/ball-heart.png b/png/ball-heart.png
new file mode 100644
index 000000000..cd5a8f9d7
Binary files /dev/null and b/png/ball-heart.png differ
diff --git a/png/ball-pyramid.png b/png/ball-pyramid.png
new file mode 100644
index 000000000..bbc8a0e11
Binary files /dev/null and b/png/ball-pyramid.png differ
diff --git a/png/ballerina-shoes.png b/png/ballerina-shoes.png
new file mode 100644
index 000000000..335f68f16
Binary files /dev/null and b/png/ballerina-shoes.png differ
diff --git a/png/ballista.png b/png/ballista.png
new file mode 100644
index 000000000..3e29b2352
Binary files /dev/null and b/png/ballista.png differ
diff --git a/png/balloon-dog.png b/png/balloon-dog.png
new file mode 100644
index 000000000..9fb17fe20
Binary files /dev/null and b/png/balloon-dog.png differ
diff --git a/png/balloons.png b/png/balloons.png
new file mode 100644
index 000000000..dcc2a5434
Binary files /dev/null and b/png/balloons.png differ
diff --git a/png/bamboo-fountain.png b/png/bamboo-fountain.png
new file mode 100644
index 000000000..111b8be18
Binary files /dev/null and b/png/bamboo-fountain.png differ
diff --git a/png/bamboo.png b/png/bamboo.png
new file mode 100644
index 000000000..13cc0ec48
Binary files /dev/null and b/png/bamboo.png differ
diff --git a/png/banana-bunch.png b/png/banana-bunch.png
new file mode 100644
index 000000000..a87c85e3e
Binary files /dev/null and b/png/banana-bunch.png differ
diff --git a/png/banana-peel.png b/png/banana-peel.png
new file mode 100644
index 000000000..36926240f
Binary files /dev/null and b/png/banana-peel.png differ
diff --git a/png/banana-peeled.png b/png/banana-peeled.png
new file mode 100644
index 000000000..164239256
Binary files /dev/null and b/png/banana-peeled.png differ
diff --git a/png/banana.png b/png/banana.png
new file mode 100644
index 000000000..cf9c56c95
Binary files /dev/null and b/png/banana.png differ
diff --git a/png/bandage-roll.png b/png/bandage-roll.png
new file mode 100644
index 000000000..57f7abc91
Binary files /dev/null and b/png/bandage-roll.png differ
diff --git a/png/bandaged.png b/png/bandaged.png
new file mode 100644
index 000000000..a7849218e
Binary files /dev/null and b/png/bandaged.png differ
diff --git a/png/bandana.png b/png/bandana.png
new file mode 100644
index 000000000..97ab9e11a
Binary files /dev/null and b/png/bandana.png differ
diff --git a/png/bandit.png b/png/bandit.png
new file mode 100644
index 000000000..3545e3b28
Binary files /dev/null and b/png/bandit.png differ
diff --git a/png/banging-gavel.png b/png/banging-gavel.png
new file mode 100644
index 000000000..2add38dbb
Binary files /dev/null and b/png/banging-gavel.png differ
diff --git a/png/banjo.png b/png/banjo.png
new file mode 100644
index 000000000..0fb2d1fe6
Binary files /dev/null and b/png/banjo.png differ
diff --git a/png/bank.png b/png/bank.png
new file mode 100644
index 000000000..94cb9bb25
Binary files /dev/null and b/png/bank.png differ
diff --git a/png/banknote.png b/png/banknote.png
new file mode 100644
index 000000000..7145f726b
Binary files /dev/null and b/png/banknote.png differ
diff --git a/png/baobab.png b/png/baobab.png
new file mode 100644
index 000000000..7b604b4b0
Binary files /dev/null and b/png/baobab.png differ
diff --git a/png/bar-stool.png b/png/bar-stool.png
new file mode 100644
index 000000000..0ea7fe6e4
Binary files /dev/null and b/png/bar-stool.png differ
diff --git a/png/barbarian.png b/png/barbarian.png
new file mode 100644
index 000000000..dd92360b7
Binary files /dev/null and b/png/barbarian.png differ
diff --git a/png/barbecue.png b/png/barbecue.png
new file mode 100644
index 000000000..2148957f5
Binary files /dev/null and b/png/barbecue.png differ
diff --git a/png/barbed-arrow.png b/png/barbed-arrow.png
new file mode 100644
index 000000000..8a80d3840
Binary files /dev/null and b/png/barbed-arrow.png differ
diff --git a/png/barbed-coil.png b/png/barbed-coil.png
new file mode 100644
index 000000000..b122c2225
Binary files /dev/null and b/png/barbed-coil.png differ
diff --git a/png/barbed-nails.png b/png/barbed-nails.png
new file mode 100644
index 000000000..710064c87
Binary files /dev/null and b/png/barbed-nails.png differ
diff --git a/png/barbed-spear.png b/png/barbed-spear.png
new file mode 100644
index 000000000..e9fb79ddb
Binary files /dev/null and b/png/barbed-spear.png differ
diff --git a/png/barbed-star.png b/png/barbed-star.png
new file mode 100644
index 000000000..cd2936b2a
Binary files /dev/null and b/png/barbed-star.png differ
diff --git a/png/barbed-sun.png b/png/barbed-sun.png
new file mode 100644
index 000000000..8633a87d2
Binary files /dev/null and b/png/barbed-sun.png differ
diff --git a/png/barbed-wire.png b/png/barbed-wire.png
new file mode 100644
index 000000000..e1d188c6a
Binary files /dev/null and b/png/barbed-wire.png differ
diff --git a/png/barbute.png b/png/barbute.png
new file mode 100644
index 000000000..b79121fdc
Binary files /dev/null and b/png/barbute.png differ
diff --git a/png/barefoot.png b/png/barefoot.png
new file mode 100644
index 000000000..5132e2eb1
Binary files /dev/null and b/png/barefoot.png differ
diff --git a/png/barn-owl.png b/png/barn-owl.png
new file mode 100644
index 000000000..d91087253
Binary files /dev/null and b/png/barn-owl.png differ
diff --git a/png/barn.png b/png/barn.png
new file mode 100644
index 000000000..d411dc415
Binary files /dev/null and b/png/barn.png differ
diff --git a/png/barracks-tent.png b/png/barracks-tent.png
new file mode 100644
index 000000000..6d7ab5eef
Binary files /dev/null and b/png/barracks-tent.png differ
diff --git a/png/barracks.png b/png/barracks.png
new file mode 100644
index 000000000..5ac627812
Binary files /dev/null and b/png/barracks.png differ
diff --git a/png/barrel-leak.png b/png/barrel-leak.png
new file mode 100644
index 000000000..0a3402386
Binary files /dev/null and b/png/barrel-leak.png differ
diff --git a/png/barrel.png b/png/barrel.png
new file mode 100644
index 000000000..cf9e6c864
Binary files /dev/null and b/png/barrel.png differ
diff --git a/png/barricade.png b/png/barricade.png
new file mode 100644
index 000000000..59ff42fca
Binary files /dev/null and b/png/barricade.png differ
diff --git a/png/barrier.png b/png/barrier.png
new file mode 100644
index 000000000..2c8d9b80a
Binary files /dev/null and b/png/barrier.png differ
diff --git a/png/base-dome.png b/png/base-dome.png
new file mode 100644
index 000000000..af088e955
Binary files /dev/null and b/png/base-dome.png differ
diff --git a/png/baseball-bat.png b/png/baseball-bat.png
new file mode 100644
index 000000000..565d247d7
Binary files /dev/null and b/png/baseball-bat.png differ
diff --git a/png/baseball-glove.png b/png/baseball-glove.png
new file mode 100644
index 000000000..351ce5ec8
Binary files /dev/null and b/png/baseball-glove.png differ
diff --git a/png/basket.png b/png/basket.png
new file mode 100644
index 000000000..291f283a3
Binary files /dev/null and b/png/basket.png differ
diff --git a/png/basketball-ball.png b/png/basketball-ball.png
new file mode 100644
index 000000000..e5b4dd1cb
Binary files /dev/null and b/png/basketball-ball.png differ
diff --git a/png/basketball-basket.png b/png/basketball-basket.png
new file mode 100644
index 000000000..586493fe7
Binary files /dev/null and b/png/basketball-basket.png differ
diff --git a/png/basketball-jersey.png b/png/basketball-jersey.png
new file mode 100644
index 000000000..1ddd2da4a
Binary files /dev/null and b/png/basketball-jersey.png differ
diff --git a/png/basset-hound-head.png b/png/basset-hound-head.png
new file mode 100644
index 000000000..10c71e317
Binary files /dev/null and b/png/basset-hound-head.png differ
diff --git a/png/bassoon.png b/png/bassoon.png
new file mode 100644
index 000000000..4e6131a5e
Binary files /dev/null and b/png/bassoon.png differ
diff --git a/png/bastet.png b/png/bastet.png
new file mode 100644
index 000000000..ba55163da
Binary files /dev/null and b/png/bastet.png differ
diff --git a/png/bat-2.png b/png/bat-2.png
new file mode 100644
index 000000000..c9f191d6a
Binary files /dev/null and b/png/bat-2.png differ
diff --git a/png/bat-blade.png b/png/bat-blade.png
new file mode 100644
index 000000000..594d2218f
Binary files /dev/null and b/png/bat-blade.png differ
diff --git a/png/bat-leth.png b/png/bat-leth.png
new file mode 100644
index 000000000..a4e007e15
Binary files /dev/null and b/png/bat-leth.png differ
diff --git a/png/bat-mask.png b/png/bat-mask.png
new file mode 100644
index 000000000..204407f40
Binary files /dev/null and b/png/bat-mask.png differ
diff --git a/png/bat-wing.png b/png/bat-wing.png
new file mode 100644
index 000000000..d8103d410
Binary files /dev/null and b/png/bat-wing.png differ
diff --git a/png/bat.png b/png/bat.png
new file mode 100644
index 000000000..e9a6c7278
Binary files /dev/null and b/png/bat.png differ
diff --git a/png/bathtub.png b/png/bathtub.png
new file mode 100644
index 000000000..a8439f4e4
Binary files /dev/null and b/png/bathtub.png differ
diff --git a/png/baton.png b/png/baton.png
new file mode 100644
index 000000000..096a14d70
Binary files /dev/null and b/png/baton.png differ
diff --git a/png/battered-axe.png b/png/battered-axe.png
new file mode 100644
index 000000000..2e743fcb8
Binary files /dev/null and b/png/battered-axe.png differ
diff --git a/png/batteries.png b/png/batteries.png
new file mode 100644
index 000000000..7fafbf67b
Binary files /dev/null and b/png/batteries.png differ
diff --git a/png/battery-0.png b/png/battery-0.png
new file mode 100644
index 000000000..2ef9c5d8e
Binary files /dev/null and b/png/battery-0.png differ
diff --git a/png/battery-100.png b/png/battery-100.png
new file mode 100644
index 000000000..5e426b68b
Binary files /dev/null and b/png/battery-100.png differ
diff --git a/png/battery-25.png b/png/battery-25.png
new file mode 100644
index 000000000..faa120094
Binary files /dev/null and b/png/battery-25.png differ
diff --git a/png/battery-50.png b/png/battery-50.png
new file mode 100644
index 000000000..3750e2997
Binary files /dev/null and b/png/battery-50.png differ
diff --git a/png/battery-75.png b/png/battery-75.png
new file mode 100644
index 000000000..c3cb70ac9
Binary files /dev/null and b/png/battery-75.png differ
diff --git a/png/battery-minus.png b/png/battery-minus.png
new file mode 100644
index 000000000..75c7498b7
Binary files /dev/null and b/png/battery-minus.png differ
diff --git a/png/battery-pack-alt.png b/png/battery-pack-alt.png
new file mode 100644
index 000000000..885402bb5
Binary files /dev/null and b/png/battery-pack-alt.png differ
diff --git a/png/battery-pack.png b/png/battery-pack.png
new file mode 100644
index 000000000..a6f2d8614
Binary files /dev/null and b/png/battery-pack.png differ
diff --git a/png/battery-plus.png b/png/battery-plus.png
new file mode 100644
index 000000000..8fb421fab
Binary files /dev/null and b/png/battery-plus.png differ
diff --git a/png/battle-axe.png b/png/battle-axe.png
new file mode 100644
index 000000000..b9dd05c72
Binary files /dev/null and b/png/battle-axe.png differ
diff --git a/png/battle-gear.png b/png/battle-gear.png
new file mode 100644
index 000000000..a0ce9ec59
Binary files /dev/null and b/png/battle-gear.png differ
diff --git a/png/battle-mech.png b/png/battle-mech.png
new file mode 100644
index 000000000..99bc0025d
Binary files /dev/null and b/png/battle-mech.png differ
diff --git a/png/battle-tank.png b/png/battle-tank.png
new file mode 100644
index 000000000..722d51f67
Binary files /dev/null and b/png/battle-tank.png differ
diff --git a/png/battleship.png b/png/battleship.png
new file mode 100644
index 000000000..536c0f987
Binary files /dev/null and b/png/battleship.png differ
diff --git a/png/batwing-emblem.png b/png/batwing-emblem.png
new file mode 100644
index 000000000..bb8112f49
Binary files /dev/null and b/png/batwing-emblem.png differ
diff --git a/png/bayonet.png b/png/bayonet.png
new file mode 100644
index 000000000..71a0a3c35
Binary files /dev/null and b/png/bayonet.png differ
diff --git a/png/beach-bag.png b/png/beach-bag.png
new file mode 100644
index 000000000..de2803717
Binary files /dev/null and b/png/beach-bag.png differ
diff --git a/png/beach-ball.png b/png/beach-ball.png
new file mode 100644
index 000000000..0e87a90af
Binary files /dev/null and b/png/beach-ball.png differ
diff --git a/png/beach-bucket.png b/png/beach-bucket.png
new file mode 100644
index 000000000..4bd415537
Binary files /dev/null and b/png/beach-bucket.png differ
diff --git a/png/beam-satellite.png b/png/beam-satellite.png
new file mode 100644
index 000000000..44841d7dc
Binary files /dev/null and b/png/beam-satellite.png differ
diff --git a/png/beam-wake.png b/png/beam-wake.png
new file mode 100644
index 000000000..92f5a9112
Binary files /dev/null and b/png/beam-wake.png differ
diff --git a/png/beams-aura.png b/png/beams-aura.png
new file mode 100644
index 000000000..6439abb0c
Binary files /dev/null and b/png/beams-aura.png differ
diff --git a/png/beanstalk.png b/png/beanstalk.png
new file mode 100644
index 000000000..0231f830a
Binary files /dev/null and b/png/beanstalk.png differ
diff --git a/png/bear-face.png b/png/bear-face.png
new file mode 100644
index 000000000..9c36b73c0
Binary files /dev/null and b/png/bear-face.png differ
diff --git a/png/bear-head.png b/png/bear-head.png
new file mode 100644
index 000000000..618d9b450
Binary files /dev/null and b/png/bear-head.png differ
diff --git a/png/beard.png b/png/beard.png
new file mode 100644
index 000000000..53eefb504
Binary files /dev/null and b/png/beard.png differ
diff --git a/png/beast-eye.png b/png/beast-eye.png
new file mode 100644
index 000000000..a11b1872c
Binary files /dev/null and b/png/beast-eye.png differ
diff --git a/png/beaver.png b/png/beaver.png
new file mode 100644
index 000000000..d8f7b9c5a
Binary files /dev/null and b/png/beaver.png differ
diff --git a/png/bed-lamp.png b/png/bed-lamp.png
new file mode 100644
index 000000000..c3a340892
Binary files /dev/null and b/png/bed-lamp.png differ
diff --git a/png/bed.png b/png/bed.png
new file mode 100644
index 000000000..999769017
Binary files /dev/null and b/png/bed.png differ
diff --git a/png/bee.png b/png/bee.png
new file mode 100644
index 000000000..054b7cf09
Binary files /dev/null and b/png/bee.png differ
diff --git a/png/beech.png b/png/beech.png
new file mode 100644
index 000000000..6153ec8ee
Binary files /dev/null and b/png/beech.png differ
diff --git a/png/beehive.png b/png/beehive.png
new file mode 100644
index 000000000..ce9105bff
Binary files /dev/null and b/png/beehive.png differ
diff --git a/png/beer-bottle.png b/png/beer-bottle.png
new file mode 100644
index 000000000..787b733c5
Binary files /dev/null and b/png/beer-bottle.png differ
diff --git a/png/beer-horn.png b/png/beer-horn.png
new file mode 100644
index 000000000..fde0bfc7c
Binary files /dev/null and b/png/beer-horn.png differ
diff --git a/png/beer-stein.png b/png/beer-stein.png
new file mode 100644
index 000000000..828b479a1
Binary files /dev/null and b/png/beer-stein.png differ
diff --git a/png/beet.png b/png/beet.png
new file mode 100644
index 000000000..47bcdcebe
Binary files /dev/null and b/png/beet.png differ
diff --git a/png/beetle-shell.png b/png/beetle-shell.png
new file mode 100644
index 000000000..d1634188e
Binary files /dev/null and b/png/beetle-shell.png differ
diff --git a/png/behold.png b/png/behold.png
new file mode 100644
index 000000000..eb1a10fac
Binary files /dev/null and b/png/behold.png differ
diff --git a/png/belgium.png b/png/belgium.png
new file mode 100644
index 000000000..611772478
Binary files /dev/null and b/png/belgium.png differ
diff --git a/png/bell-pepper.png b/png/bell-pepper.png
new file mode 100644
index 000000000..b2f04b277
Binary files /dev/null and b/png/bell-pepper.png differ
diff --git a/png/bell-shield.png b/png/bell-shield.png
new file mode 100644
index 000000000..9889cd1e2
Binary files /dev/null and b/png/bell-shield.png differ
diff --git a/png/bellows.png b/png/bellows.png
new file mode 100644
index 000000000..1fc0fa74e
Binary files /dev/null and b/png/bellows.png differ
diff --git a/png/belt-armor.png b/png/belt-armor.png
new file mode 100644
index 000000000..47d95c3d6
Binary files /dev/null and b/png/belt-armor.png differ
diff --git a/png/belt-buckles.png b/png/belt-buckles.png
new file mode 100644
index 000000000..21cd91437
Binary files /dev/null and b/png/belt-buckles.png differ
diff --git a/png/belt.png b/png/belt.png
new file mode 100644
index 000000000..3bd083e42
Binary files /dev/null and b/png/belt.png differ
diff --git a/png/berries-bowl.png b/png/berries-bowl.png
new file mode 100644
index 000000000..8f5084567
Binary files /dev/null and b/png/berries-bowl.png differ
diff --git a/png/berry-bush.png b/png/berry-bush.png
new file mode 100644
index 000000000..1e012e312
Binary files /dev/null and b/png/berry-bush.png differ
diff --git a/png/bestial-fangs.png b/png/bestial-fangs.png
new file mode 100644
index 000000000..bef35ac2c
Binary files /dev/null and b/png/bestial-fangs.png differ
diff --git a/png/beveled-star.png b/png/beveled-star.png
new file mode 100644
index 000000000..42c4ac32e
Binary files /dev/null and b/png/beveled-star.png differ
diff --git a/png/biceps.png b/png/biceps.png
new file mode 100644
index 000000000..0479a54cc
Binary files /dev/null and b/png/biceps.png differ
diff --git a/png/big-diamond-ring.png b/png/big-diamond-ring.png
new file mode 100644
index 000000000..ebf796592
Binary files /dev/null and b/png/big-diamond-ring.png differ
diff --git a/png/big-egg.png b/png/big-egg.png
new file mode 100644
index 000000000..3f1474692
Binary files /dev/null and b/png/big-egg.png differ
diff --git a/png/big-gear.png b/png/big-gear.png
new file mode 100644
index 000000000..f5b7bb9e3
Binary files /dev/null and b/png/big-gear.png differ
diff --git a/png/big-wave.png b/png/big-wave.png
new file mode 100644
index 000000000..2fc821bf0
Binary files /dev/null and b/png/big-wave.png differ
diff --git a/png/billed-cap.png b/png/billed-cap.png
new file mode 100644
index 000000000..b1bd9abac
Binary files /dev/null and b/png/billed-cap.png differ
diff --git a/png/bindle.png b/png/bindle.png
new file mode 100644
index 000000000..75db16788
Binary files /dev/null and b/png/bindle.png differ
diff --git a/png/binoculars.png b/png/binoculars.png
new file mode 100644
index 000000000..dcdb5fcf2
Binary files /dev/null and b/png/binoculars.png differ
diff --git a/png/biohazard.png b/png/biohazard.png
new file mode 100644
index 000000000..58444748b
Binary files /dev/null and b/png/biohazard.png differ
diff --git a/png/biplane.png b/png/biplane.png
new file mode 100644
index 000000000..4319d98bc
Binary files /dev/null and b/png/biplane.png differ
diff --git a/png/birch-trees.png b/png/birch-trees.png
new file mode 100644
index 000000000..a695dc21d
Binary files /dev/null and b/png/birch-trees.png differ
diff --git a/png/bird-cage.png b/png/bird-cage.png
new file mode 100644
index 000000000..792fad7eb
Binary files /dev/null and b/png/bird-cage.png differ
diff --git a/png/bird-claw.png b/png/bird-claw.png
new file mode 100644
index 000000000..bcb6c8d12
Binary files /dev/null and b/png/bird-claw.png differ
diff --git a/png/bird-house.png b/png/bird-house.png
new file mode 100644
index 000000000..47bd63a81
Binary files /dev/null and b/png/bird-house.png differ
diff --git a/png/bird-limb.png b/png/bird-limb.png
new file mode 100644
index 000000000..57b2b1576
Binary files /dev/null and b/png/bird-limb.png differ
diff --git a/png/bird-mask.png b/png/bird-mask.png
new file mode 100644
index 000000000..49ea63107
Binary files /dev/null and b/png/bird-mask.png differ
diff --git a/png/bird-twitter.png b/png/bird-twitter.png
new file mode 100644
index 000000000..ff654f5dc
Binary files /dev/null and b/png/bird-twitter.png differ
diff --git a/png/bison.png b/png/bison.png
new file mode 100644
index 000000000..bb2055486
Binary files /dev/null and b/png/bison.png differ
diff --git a/png/black-bar.png b/png/black-bar.png
new file mode 100644
index 000000000..ab9348054
Binary files /dev/null and b/png/black-bar.png differ
diff --git a/png/black-belt.png b/png/black-belt.png
new file mode 100644
index 000000000..6fec5c46e
Binary files /dev/null and b/png/black-belt.png differ
diff --git a/png/black-book.png b/png/black-book.png
new file mode 100644
index 000000000..1dfcc189f
Binary files /dev/null and b/png/black-book.png differ
diff --git a/png/black-bridge.png b/png/black-bridge.png
new file mode 100644
index 000000000..a8dde3449
Binary files /dev/null and b/png/black-bridge.png differ
diff --git a/png/black-cat.png b/png/black-cat.png
new file mode 100644
index 000000000..a1a45b50e
Binary files /dev/null and b/png/black-cat.png differ
diff --git a/png/black-flag.png b/png/black-flag.png
new file mode 100644
index 000000000..f7dd33629
Binary files /dev/null and b/png/black-flag.png differ
diff --git a/png/black-hand-shield.png b/png/black-hand-shield.png
new file mode 100644
index 000000000..9d3f60392
Binary files /dev/null and b/png/black-hand-shield.png differ
diff --git a/png/black-hole-bolas.png b/png/black-hole-bolas.png
new file mode 100644
index 000000000..b9fc50616
Binary files /dev/null and b/png/black-hole-bolas.png differ
diff --git a/png/black-knight-helm.png b/png/black-knight-helm.png
new file mode 100644
index 000000000..3942f8dcf
Binary files /dev/null and b/png/black-knight-helm.png differ
diff --git a/png/black-sea.png b/png/black-sea.png
new file mode 100644
index 000000000..be3fae2a3
Binary files /dev/null and b/png/black-sea.png differ
diff --git a/png/blackball.png b/png/blackball.png
new file mode 100644
index 000000000..6699d0ef7
Binary files /dev/null and b/png/blackball.png differ
diff --git a/png/blackcurrant.png b/png/blackcurrant.png
new file mode 100644
index 000000000..5dc6447c6
Binary files /dev/null and b/png/blackcurrant.png differ
diff --git a/png/blacksmith.png b/png/blacksmith.png
new file mode 100644
index 000000000..d7d0c45a8
Binary files /dev/null and b/png/blacksmith.png differ
diff --git a/png/blade-bite.png b/png/blade-bite.png
new file mode 100644
index 000000000..4ec4d998a
Binary files /dev/null and b/png/blade-bite.png differ
diff --git a/png/blade-drag.png b/png/blade-drag.png
new file mode 100644
index 000000000..08424dba7
Binary files /dev/null and b/png/blade-drag.png differ
diff --git a/png/blade-fall.png b/png/blade-fall.png
new file mode 100644
index 000000000..edead9a77
Binary files /dev/null and b/png/blade-fall.png differ
diff --git a/png/blanket.png b/png/blanket.png
new file mode 100644
index 000000000..ee3798c66
Binary files /dev/null and b/png/blanket.png differ
diff --git a/png/blast.png b/png/blast.png
new file mode 100644
index 000000000..f88a73c04
Binary files /dev/null and b/png/blast.png differ
diff --git a/png/blaster.png b/png/blaster.png
new file mode 100644
index 000000000..ac85d12d8
Binary files /dev/null and b/png/blaster.png differ
diff --git a/png/bleeding-eye.png b/png/bleeding-eye.png
new file mode 100644
index 000000000..67b139ae5
Binary files /dev/null and b/png/bleeding-eye.png differ
diff --git a/png/bleeding-heart.png b/png/bleeding-heart.png
new file mode 100644
index 000000000..cc99a92d1
Binary files /dev/null and b/png/bleeding-heart.png differ
diff --git a/png/bleeding-wound.png b/png/bleeding-wound.png
new file mode 100644
index 000000000..e90231eb7
Binary files /dev/null and b/png/bleeding-wound.png differ
diff --git a/png/blender.png b/png/blender.png
new file mode 100644
index 000000000..ca8d92e34
Binary files /dev/null and b/png/blender.png differ
diff --git a/png/blindfold.png b/png/blindfold.png
new file mode 100644
index 000000000..9c4e4d6b6
Binary files /dev/null and b/png/blindfold.png differ
diff --git a/png/block-house.png b/png/block-house.png
new file mode 100644
index 000000000..d366bc6ab
Binary files /dev/null and b/png/block-house.png differ
diff --git a/png/blood.png b/png/blood.png
new file mode 100644
index 000000000..5fbcc91af
Binary files /dev/null and b/png/blood.png differ
diff --git a/png/bloody-stash.png b/png/bloody-stash.png
new file mode 100644
index 000000000..41a02a0e2
Binary files /dev/null and b/png/bloody-stash.png differ
diff --git a/png/bloody-sword.png b/png/bloody-sword.png
new file mode 100644
index 000000000..d4ddff8d7
Binary files /dev/null and b/png/bloody-sword.png differ
diff --git a/png/blunderbuss.png b/png/blunderbuss.png
new file mode 100644
index 000000000..b20a41951
Binary files /dev/null and b/png/blunderbuss.png differ
diff --git a/png/bo.png b/png/bo.png
new file mode 100644
index 000000000..0d5a3bf2e
Binary files /dev/null and b/png/bo.png differ
diff --git a/png/boar-ensign.png b/png/boar-ensign.png
new file mode 100644
index 000000000..c10da0bf0
Binary files /dev/null and b/png/boar-ensign.png differ
diff --git a/png/boar-tusks.png b/png/boar-tusks.png
new file mode 100644
index 000000000..5b8d81beb
Binary files /dev/null and b/png/boar-tusks.png differ
diff --git a/png/boar.png b/png/boar.png
new file mode 100644
index 000000000..fd95e0d64
Binary files /dev/null and b/png/boar.png differ
diff --git a/png/boarding-pass.png b/png/boarding-pass.png
new file mode 100644
index 000000000..7fb4238c2
Binary files /dev/null and b/png/boarding-pass.png differ
diff --git a/png/boat-engine.png b/png/boat-engine.png
new file mode 100644
index 000000000..ed7498eee
Binary files /dev/null and b/png/boat-engine.png differ
diff --git a/png/boat-fishing.png b/png/boat-fishing.png
new file mode 100644
index 000000000..d0b62b3a4
Binary files /dev/null and b/png/boat-fishing.png differ
diff --git a/png/boat-horizon.png b/png/boat-horizon.png
new file mode 100644
index 000000000..d54e80cce
Binary files /dev/null and b/png/boat-horizon.png differ
diff --git a/png/boat-propeller.png b/png/boat-propeller.png
new file mode 100644
index 000000000..0619210d7
Binary files /dev/null and b/png/boat-propeller.png differ
diff --git a/png/boba.png b/png/boba.png
new file mode 100644
index 000000000..fcbb3310c
Binary files /dev/null and b/png/boba.png differ
diff --git a/png/body-balance.png b/png/body-balance.png
new file mode 100644
index 000000000..53f64a0d9
Binary files /dev/null and b/png/body-balance.png differ
diff --git a/png/body-height.png b/png/body-height.png
new file mode 100644
index 000000000..b0c8c41bd
Binary files /dev/null and b/png/body-height.png differ
diff --git a/png/body-swapping.png b/png/body-swapping.png
new file mode 100644
index 000000000..49efa9159
Binary files /dev/null and b/png/body-swapping.png differ
diff --git a/png/boiling-bubbles.png b/png/boiling-bubbles.png
new file mode 100644
index 000000000..8567dee13
Binary files /dev/null and b/png/boiling-bubbles.png differ
diff --git a/png/bok-choy.png b/png/bok-choy.png
new file mode 100644
index 000000000..b92d246bb
Binary files /dev/null and b/png/bok-choy.png differ
diff --git a/png/bolas.png b/png/bolas.png
new file mode 100644
index 000000000..4ec46a3f6
Binary files /dev/null and b/png/bolas.png differ
diff --git a/png/bolivia.png b/png/bolivia.png
new file mode 100644
index 000000000..8c93ffe54
Binary files /dev/null and b/png/bolivia.png differ
diff --git a/png/bolt-bomb.png b/png/bolt-bomb.png
new file mode 100644
index 000000000..18974e99c
Binary files /dev/null and b/png/bolt-bomb.png differ
diff --git a/png/bolt-cutter.png b/png/bolt-cutter.png
new file mode 100644
index 000000000..06dab16ef
Binary files /dev/null and b/png/bolt-cutter.png differ
diff --git a/png/bolt-drop.png b/png/bolt-drop.png
new file mode 100644
index 000000000..511d75b32
Binary files /dev/null and b/png/bolt-drop.png differ
diff --git a/png/bolt-eye.png b/png/bolt-eye.png
new file mode 100644
index 000000000..b51ddb935
Binary files /dev/null and b/png/bolt-eye.png differ
diff --git a/png/bolt-saw.png b/png/bolt-saw.png
new file mode 100644
index 000000000..2d2817cd1
Binary files /dev/null and b/png/bolt-saw.png differ
diff --git a/png/bolt-shield.png b/png/bolt-shield.png
new file mode 100644
index 000000000..75fa65069
Binary files /dev/null and b/png/bolt-shield.png differ
diff --git a/png/bolt-spell-cast.png b/png/bolt-spell-cast.png
new file mode 100644
index 000000000..d7984de0a
Binary files /dev/null and b/png/bolt-spell-cast.png differ
diff --git a/png/bolter-gun.png b/png/bolter-gun.png
new file mode 100644
index 000000000..bea31bbad
Binary files /dev/null and b/png/bolter-gun.png differ
diff --git a/png/bomber.png b/png/bomber.png
new file mode 100644
index 000000000..eb8d3f353
Binary files /dev/null and b/png/bomber.png differ
diff --git a/png/bombing-run.png b/png/bombing-run.png
new file mode 100644
index 000000000..a3df5e7f9
Binary files /dev/null and b/png/bombing-run.png differ
diff --git a/png/bone-gnawer.png b/png/bone-gnawer.png
new file mode 100644
index 000000000..67040d7a9
Binary files /dev/null and b/png/bone-gnawer.png differ
diff --git a/png/bone-knife-2.png b/png/bone-knife-2.png
new file mode 100644
index 000000000..99ea8e2ef
Binary files /dev/null and b/png/bone-knife-2.png differ
diff --git a/png/bone-knife.png b/png/bone-knife.png
new file mode 100644
index 000000000..d03c495e3
Binary files /dev/null and b/png/bone-knife.png differ
diff --git a/png/bone-mace.png b/png/bone-mace.png
new file mode 100644
index 000000000..86e979c5e
Binary files /dev/null and b/png/bone-mace.png differ
diff --git a/png/bonsai-tree.png b/png/bonsai-tree.png
new file mode 100644
index 000000000..5f56b6ebc
Binary files /dev/null and b/png/bonsai-tree.png differ
diff --git a/png/book-aura.png b/png/book-aura.png
new file mode 100644
index 000000000..2efdabdde
Binary files /dev/null and b/png/book-aura.png differ
diff --git a/png/book-cover-2.png b/png/book-cover-2.png
new file mode 100644
index 000000000..e1249822b
Binary files /dev/null and b/png/book-cover-2.png differ
diff --git a/png/book-cover.png b/png/book-cover.png
new file mode 100644
index 000000000..92d9be607
Binary files /dev/null and b/png/book-cover.png differ
diff --git a/png/book-pile.png b/png/book-pile.png
new file mode 100644
index 000000000..e8d12b9ee
Binary files /dev/null and b/png/book-pile.png differ
diff --git a/png/book-storm.png b/png/book-storm.png
new file mode 100644
index 000000000..0d62ea9f6
Binary files /dev/null and b/png/book-storm.png differ
diff --git a/png/bookmark.png b/png/bookmark.png
new file mode 100644
index 000000000..7a87dee5c
Binary files /dev/null and b/png/bookmark.png differ
diff --git a/png/bookmarklet.png b/png/bookmarklet.png
new file mode 100644
index 000000000..68771de00
Binary files /dev/null and b/png/bookmarklet.png differ
diff --git a/png/bookshelf.png b/png/bookshelf.png
new file mode 100644
index 000000000..73039df9b
Binary files /dev/null and b/png/bookshelf.png differ
diff --git a/png/boombox.png b/png/boombox.png
new file mode 100644
index 000000000..f0bfd05e1
Binary files /dev/null and b/png/boombox.png differ
diff --git a/png/boomerang-cross.png b/png/boomerang-cross.png
new file mode 100644
index 000000000..620db2b9c
Binary files /dev/null and b/png/boomerang-cross.png differ
diff --git a/png/boomerang-sun.png b/png/boomerang-sun.png
new file mode 100644
index 000000000..46c1bc4b7
Binary files /dev/null and b/png/boomerang-sun.png differ
diff --git a/png/boomerang.png b/png/boomerang.png
new file mode 100644
index 000000000..801ecdaba
Binary files /dev/null and b/png/boomerang.png differ
diff --git a/png/boot-kick.png b/png/boot-kick.png
new file mode 100644
index 000000000..7b4850fb0
Binary files /dev/null and b/png/boot-kick.png differ
diff --git a/png/boot-prints.png b/png/boot-prints.png
new file mode 100644
index 000000000..e988bf563
Binary files /dev/null and b/png/boot-prints.png differ
diff --git a/png/boot-stomp.png b/png/boot-stomp.png
new file mode 100644
index 000000000..e78f656ff
Binary files /dev/null and b/png/boot-stomp.png differ
diff --git a/png/boots.png b/png/boots.png
new file mode 100644
index 000000000..d414e0118
Binary files /dev/null and b/png/boots.png differ
diff --git a/png/booze.png b/png/booze.png
new file mode 100644
index 000000000..564c5719f
Binary files /dev/null and b/png/booze.png differ
diff --git a/png/bordered-shield.png b/png/bordered-shield.png
new file mode 100644
index 000000000..1177c2b85
Binary files /dev/null and b/png/bordered-shield.png differ
diff --git a/png/boss-key.png b/png/boss-key.png
new file mode 100644
index 000000000..2f3730275
Binary files /dev/null and b/png/boss-key.png differ
diff --git a/png/bottle-cap.png b/png/bottle-cap.png
new file mode 100644
index 000000000..9c8be37d2
Binary files /dev/null and b/png/bottle-cap.png differ
diff --git a/png/bottle-vapors.png b/png/bottle-vapors.png
new file mode 100644
index 000000000..8b7acf4e0
Binary files /dev/null and b/png/bottle-vapors.png differ
diff --git a/png/bottled-bolt.png b/png/bottled-bolt.png
new file mode 100644
index 000000000..0fe1dc50a
Binary files /dev/null and b/png/bottled-bolt.png differ
diff --git a/png/bottled-shadow.png b/png/bottled-shadow.png
new file mode 100644
index 000000000..fbd1d33e0
Binary files /dev/null and b/png/bottled-shadow.png differ
diff --git a/png/bottom-right-3d-arrow.png b/png/bottom-right-3d-arrow.png
new file mode 100644
index 000000000..b37941311
Binary files /dev/null and b/png/bottom-right-3d-arrow.png differ
diff --git a/png/boulder-dash.png b/png/boulder-dash.png
new file mode 100644
index 000000000..1a20eafe7
Binary files /dev/null and b/png/boulder-dash.png differ
diff --git a/png/bouncing-spring.png b/png/bouncing-spring.png
new file mode 100644
index 000000000..0d0bd9237
Binary files /dev/null and b/png/bouncing-spring.png differ
diff --git a/png/bouncing-sword.png b/png/bouncing-sword.png
new file mode 100644
index 000000000..9704b247d
Binary files /dev/null and b/png/bouncing-sword.png differ
diff --git a/png/bow-arrow.png b/png/bow-arrow.png
new file mode 100644
index 000000000..02d5c0df5
Binary files /dev/null and b/png/bow-arrow.png differ
diff --git a/png/bow-string.png b/png/bow-string.png
new file mode 100644
index 000000000..ef6e362f2
Binary files /dev/null and b/png/bow-string.png differ
diff --git a/png/bow-tie-ribbon.png b/png/bow-tie-ribbon.png
new file mode 100644
index 000000000..18ea2307e
Binary files /dev/null and b/png/bow-tie-ribbon.png differ
diff --git a/png/bow-tie.png b/png/bow-tie.png
new file mode 100644
index 000000000..8ae0c0d5a
Binary files /dev/null and b/png/bow-tie.png differ
diff --git a/png/bowels.png b/png/bowels.png
new file mode 100644
index 000000000..61d4dcd7a
Binary files /dev/null and b/png/bowels.png differ
diff --git a/png/bowen-knot.png b/png/bowen-knot.png
new file mode 100644
index 000000000..51126850e
Binary files /dev/null and b/png/bowen-knot.png differ
diff --git a/png/bowie-knife-2.png b/png/bowie-knife-2.png
new file mode 100644
index 000000000..6a2586893
Binary files /dev/null and b/png/bowie-knife-2.png differ
diff --git a/png/bowie-knife.png b/png/bowie-knife.png
new file mode 100644
index 000000000..8a510d1b9
Binary files /dev/null and b/png/bowie-knife.png differ
diff --git a/png/bowl-of-rice.png b/png/bowl-of-rice.png
new file mode 100644
index 000000000..020aad535
Binary files /dev/null and b/png/bowl-of-rice.png differ
diff --git a/png/bowl-spiral.png b/png/bowl-spiral.png
new file mode 100644
index 000000000..7f7600caf
Binary files /dev/null and b/png/bowl-spiral.png differ
diff --git a/png/bowling-alley.png b/png/bowling-alley.png
new file mode 100644
index 000000000..b76c38ded
Binary files /dev/null and b/png/bowling-alley.png differ
diff --git a/png/bowling-pin.png b/png/bowling-pin.png
new file mode 100644
index 000000000..b0b0c51a5
Binary files /dev/null and b/png/bowling-pin.png differ
diff --git a/png/bowling-propulsion.png b/png/bowling-propulsion.png
new file mode 100644
index 000000000..d742cff54
Binary files /dev/null and b/png/bowling-propulsion.png differ
diff --git a/png/bowling-strike.png b/png/bowling-strike.png
new file mode 100644
index 000000000..12d68eb6e
Binary files /dev/null and b/png/bowling-strike.png differ
diff --git a/png/bowman.png b/png/bowman.png
new file mode 100644
index 000000000..2f694597b
Binary files /dev/null and b/png/bowman.png differ
diff --git a/png/box-cutter.png b/png/box-cutter.png
new file mode 100644
index 000000000..39c6fab1c
Binary files /dev/null and b/png/box-cutter.png differ
diff --git a/png/box-trap.png b/png/box-trap.png
new file mode 100644
index 000000000..e610d2317
Binary files /dev/null and b/png/box-trap.png differ
diff --git a/png/box-unpacking.png b/png/box-unpacking.png
new file mode 100644
index 000000000..77c005935
Binary files /dev/null and b/png/box-unpacking.png differ
diff --git a/png/boxing-glove-surprise.png b/png/boxing-glove-surprise.png
new file mode 100644
index 000000000..0fde117ef
Binary files /dev/null and b/png/boxing-glove-surprise.png differ
diff --git a/png/boxing-glove.png b/png/boxing-glove.png
new file mode 100644
index 000000000..977f36c6d
Binary files /dev/null and b/png/boxing-glove.png differ
diff --git a/png/boxing-ring.png b/png/boxing-ring.png
new file mode 100644
index 000000000..a3fba4410
Binary files /dev/null and b/png/boxing-ring.png differ
diff --git a/png/bracer.png b/png/bracer.png
new file mode 100644
index 000000000..9c788c3a8
Binary files /dev/null and b/png/bracer.png differ
diff --git a/png/bracers.png b/png/bracers.png
new file mode 100644
index 000000000..dee7100be
Binary files /dev/null and b/png/bracers.png differ
diff --git a/png/brain-dump.png b/png/brain-dump.png
new file mode 100644
index 000000000..29f2b5db9
Binary files /dev/null and b/png/brain-dump.png differ
diff --git a/png/brain-freeze.png b/png/brain-freeze.png
new file mode 100644
index 000000000..147be001b
Binary files /dev/null and b/png/brain-freeze.png differ
diff --git a/png/brain-leak.png b/png/brain-leak.png
new file mode 100644
index 000000000..1bd25bd36
Binary files /dev/null and b/png/brain-leak.png differ
diff --git a/png/brain-stem.png b/png/brain-stem.png
new file mode 100644
index 000000000..1ae3bdb26
Binary files /dev/null and b/png/brain-stem.png differ
diff --git a/png/brain-tentacle.png b/png/brain-tentacle.png
new file mode 100644
index 000000000..3444f532f
Binary files /dev/null and b/png/brain-tentacle.png differ
diff --git a/png/brain.png b/png/brain.png
new file mode 100644
index 000000000..bd66c7549
Binary files /dev/null and b/png/brain.png differ
diff --git a/png/brainstorm.png b/png/brainstorm.png
new file mode 100644
index 000000000..4bbe37c02
Binary files /dev/null and b/png/brainstorm.png differ
diff --git a/png/branch-arrow.png b/png/branch-arrow.png
new file mode 100644
index 000000000..0a65e48f8
Binary files /dev/null and b/png/branch-arrow.png differ
diff --git a/png/brandy-bottle.png b/png/brandy-bottle.png
new file mode 100644
index 000000000..97e035a34
Binary files /dev/null and b/png/brandy-bottle.png differ
diff --git a/png/brasero.png b/png/brasero.png
new file mode 100644
index 000000000..93ae5a307
Binary files /dev/null and b/png/brasero.png differ
diff --git a/png/brass-eye.png b/png/brass-eye.png
new file mode 100644
index 000000000..8137a064b
Binary files /dev/null and b/png/brass-eye.png differ
diff --git a/png/brass-knuckles.png b/png/brass-knuckles.png
new file mode 100644
index 000000000..96f23d017
Binary files /dev/null and b/png/brass-knuckles.png differ
diff --git a/png/brazil-flag.png b/png/brazil-flag.png
new file mode 100644
index 000000000..96defd225
Binary files /dev/null and b/png/brazil-flag.png differ
diff --git a/png/brazil.png b/png/brazil.png
new file mode 100644
index 000000000..c552e00dd
Binary files /dev/null and b/png/brazil.png differ
diff --git a/png/bread-slice.png b/png/bread-slice.png
new file mode 100644
index 000000000..352ae423a
Binary files /dev/null and b/png/bread-slice.png differ
diff --git a/png/bread.png b/png/bread.png
new file mode 100644
index 000000000..cebde04c6
Binary files /dev/null and b/png/bread.png differ
diff --git a/png/breaking-chain.png b/png/breaking-chain.png
new file mode 100644
index 000000000..8f79983a7
Binary files /dev/null and b/png/breaking-chain.png differ
diff --git a/png/breastplate.png b/png/breastplate.png
new file mode 100644
index 000000000..a0efed30a
Binary files /dev/null and b/png/breastplate.png differ
diff --git a/png/brick-pile.png b/png/brick-pile.png
new file mode 100644
index 000000000..6907bce2c
Binary files /dev/null and b/png/brick-pile.png differ
diff --git a/png/brick-wall.png b/png/brick-wall.png
new file mode 100644
index 000000000..89d422daf
Binary files /dev/null and b/png/brick-wall.png differ
diff --git a/png/bridge.png b/png/bridge.png
new file mode 100644
index 000000000..492093ed1
Binary files /dev/null and b/png/bridge.png differ
diff --git a/png/briefcase.png b/png/briefcase.png
new file mode 100644
index 000000000..b1437aa41
Binary files /dev/null and b/png/briefcase.png differ
diff --git a/png/bright-explosion.png b/png/bright-explosion.png
new file mode 100644
index 000000000..a8fd88063
Binary files /dev/null and b/png/bright-explosion.png differ
diff --git a/png/broad-dagger.png b/png/broad-dagger.png
new file mode 100644
index 000000000..5d47a3be5
Binary files /dev/null and b/png/broad-dagger.png differ
diff --git a/png/broadhead-arrow.png b/png/broadhead-arrow.png
new file mode 100644
index 000000000..2e6a81bcb
Binary files /dev/null and b/png/broadhead-arrow.png differ
diff --git a/png/broadsword.png b/png/broadsword.png
new file mode 100644
index 000000000..2b2c98c52
Binary files /dev/null and b/png/broadsword.png differ
diff --git a/png/broccoli.png b/png/broccoli.png
new file mode 100644
index 000000000..b1bb45474
Binary files /dev/null and b/png/broccoli.png differ
diff --git a/png/brodie-helmet.png b/png/brodie-helmet.png
new file mode 100644
index 000000000..c9fb511c3
Binary files /dev/null and b/png/brodie-helmet.png differ
diff --git a/png/broken-arrow.png b/png/broken-arrow.png
new file mode 100644
index 000000000..c9673d2a5
Binary files /dev/null and b/png/broken-arrow.png differ
diff --git a/png/broken-axe.png b/png/broken-axe.png
new file mode 100644
index 000000000..d6fb9b4fa
Binary files /dev/null and b/png/broken-axe.png differ
diff --git a/png/broken-bone.png b/png/broken-bone.png
new file mode 100644
index 000000000..fa8c61954
Binary files /dev/null and b/png/broken-bone.png differ
diff --git a/png/broken-bottle.png b/png/broken-bottle.png
new file mode 100644
index 000000000..71b168d1c
Binary files /dev/null and b/png/broken-bottle.png differ
diff --git a/png/broken-heart-zone.png b/png/broken-heart-zone.png
new file mode 100644
index 000000000..71e85155e
Binary files /dev/null and b/png/broken-heart-zone.png differ
diff --git a/png/broken-heart.png b/png/broken-heart.png
new file mode 100644
index 000000000..ea9df8228
Binary files /dev/null and b/png/broken-heart.png differ
diff --git a/png/broken-pottery.png b/png/broken-pottery.png
new file mode 100644
index 000000000..8bd1a2ea9
Binary files /dev/null and b/png/broken-pottery.png differ
diff --git a/png/broken-ribbon.png b/png/broken-ribbon.png
new file mode 100644
index 000000000..962e992d8
Binary files /dev/null and b/png/broken-ribbon.png differ
diff --git a/png/broken-shield.png b/png/broken-shield.png
new file mode 100644
index 000000000..e914420da
Binary files /dev/null and b/png/broken-shield.png differ
diff --git a/png/broken-skull.png b/png/broken-skull.png
new file mode 100644
index 000000000..1bd990fe2
Binary files /dev/null and b/png/broken-skull.png differ
diff --git a/png/broken-tablet.png b/png/broken-tablet.png
new file mode 100644
index 000000000..7945296d4
Binary files /dev/null and b/png/broken-tablet.png differ
diff --git a/png/broken-wall.png b/png/broken-wall.png
new file mode 100644
index 000000000..2dcbb0efd
Binary files /dev/null and b/png/broken-wall.png differ
diff --git a/png/broom.png b/png/broom.png
new file mode 100644
index 000000000..1f396e8d2
Binary files /dev/null and b/png/broom.png differ
diff --git a/png/brutal-helm.png b/png/brutal-helm.png
new file mode 100644
index 000000000..42a09088a
Binary files /dev/null and b/png/brutal-helm.png differ
diff --git a/png/brute.png b/png/brute.png
new file mode 100644
index 000000000..df25a831c
Binary files /dev/null and b/png/brute.png differ
diff --git a/png/bubble-field.png b/png/bubble-field.png
new file mode 100644
index 000000000..1b9767438
Binary files /dev/null and b/png/bubble-field.png differ
diff --git a/png/bubbles.png b/png/bubbles.png
new file mode 100644
index 000000000..4c177c1fe
Binary files /dev/null and b/png/bubbles.png differ
diff --git a/png/bubbling-beam.png b/png/bubbling-beam.png
new file mode 100644
index 000000000..366be5233
Binary files /dev/null and b/png/bubbling-beam.png differ
diff --git a/png/bubbling-bowl.png b/png/bubbling-bowl.png
new file mode 100644
index 000000000..37e6e65fc
Binary files /dev/null and b/png/bubbling-bowl.png differ
diff --git a/png/bubbling-flask.png b/png/bubbling-flask.png
new file mode 100644
index 000000000..df01a270b
Binary files /dev/null and b/png/bubbling-flask.png differ
diff --git a/png/bud.png b/png/bud.png
new file mode 100644
index 000000000..290cbcaaa
Binary files /dev/null and b/png/bud.png differ
diff --git a/png/buffalo-head.png b/png/buffalo-head.png
new file mode 100644
index 000000000..40b407e5e
Binary files /dev/null and b/png/buffalo-head.png differ
diff --git a/png/bug-net.png b/png/bug-net.png
new file mode 100644
index 000000000..faa7b3f66
Binary files /dev/null and b/png/bug-net.png differ
diff --git a/png/bugle-call.png b/png/bugle-call.png
new file mode 100644
index 000000000..baad1143e
Binary files /dev/null and b/png/bugle-call.png differ
diff --git a/png/bulb.png b/png/bulb.png
new file mode 100644
index 000000000..645359587
Binary files /dev/null and b/png/bulb.png differ
diff --git a/png/bulgaria.png b/png/bulgaria.png
new file mode 100644
index 000000000..26e79b81d
Binary files /dev/null and b/png/bulgaria.png differ
diff --git a/png/bull-horns.png b/png/bull-horns.png
new file mode 100644
index 000000000..922d8bf9a
Binary files /dev/null and b/png/bull-horns.png differ
diff --git a/png/bull.png b/png/bull.png
new file mode 100644
index 000000000..94cb9cdab
Binary files /dev/null and b/png/bull.png differ
diff --git a/png/bulldozer.png b/png/bulldozer.png
new file mode 100644
index 000000000..6526748d0
Binary files /dev/null and b/png/bulldozer.png differ
diff --git a/png/bullet-bill.png b/png/bullet-bill.png
new file mode 100644
index 000000000..179a044fd
Binary files /dev/null and b/png/bullet-bill.png differ
diff --git a/png/bullet-impacts.png b/png/bullet-impacts.png
new file mode 100644
index 000000000..aaf583941
Binary files /dev/null and b/png/bullet-impacts.png differ
diff --git a/png/bullets.png b/png/bullets.png
new file mode 100644
index 000000000..2ab2a7580
Binary files /dev/null and b/png/bullets.png differ
diff --git a/png/bullseye.png b/png/bullseye.png
new file mode 100644
index 000000000..a60314a1f
Binary files /dev/null and b/png/bullseye.png differ
diff --git a/png/bully-minion.png b/png/bully-minion.png
new file mode 100644
index 000000000..9403aa822
Binary files /dev/null and b/png/bully-minion.png differ
diff --git a/png/bundle-grenade.png b/png/bundle-grenade.png
new file mode 100644
index 000000000..e08a6fed3
Binary files /dev/null and b/png/bundle-grenade.png differ
diff --git a/png/bunk-beds.png b/png/bunk-beds.png
new file mode 100644
index 000000000..c03cb495b
Binary files /dev/null and b/png/bunk-beds.png differ
diff --git a/png/bunker-assault.png b/png/bunker-assault.png
new file mode 100644
index 000000000..99ec46136
Binary files /dev/null and b/png/bunker-assault.png differ
diff --git a/png/bunker.png b/png/bunker.png
new file mode 100644
index 000000000..07a2dee24
Binary files /dev/null and b/png/bunker.png differ
diff --git a/png/bunny-slippers.png b/png/bunny-slippers.png
new file mode 100644
index 000000000..74dcd9b1d
Binary files /dev/null and b/png/bunny-slippers.png differ
diff --git a/png/buoy.png b/png/buoy.png
new file mode 100644
index 000000000..8fd6d7eed
Binary files /dev/null and b/png/buoy.png differ
diff --git a/png/burn.png b/png/burn.png
new file mode 100644
index 000000000..7f24e5b7f
Binary files /dev/null and b/png/burn.png differ
diff --git a/png/burning-blobs.png b/png/burning-blobs.png
new file mode 100644
index 000000000..c9c60492b
Binary files /dev/null and b/png/burning-blobs.png differ
diff --git a/png/burning-book.png b/png/burning-book.png
new file mode 100644
index 000000000..8635698f4
Binary files /dev/null and b/png/burning-book.png differ
diff --git a/png/burning-dot.png b/png/burning-dot.png
new file mode 100644
index 000000000..add11a1ec
Binary files /dev/null and b/png/burning-dot.png differ
diff --git a/png/burning-embers.png b/png/burning-embers.png
new file mode 100644
index 000000000..a9e501ab8
Binary files /dev/null and b/png/burning-embers.png differ
diff --git a/png/burning-eye.png b/png/burning-eye.png
new file mode 100644
index 000000000..1652c79fe
Binary files /dev/null and b/png/burning-eye.png differ
diff --git a/png/burning-forest.png b/png/burning-forest.png
new file mode 100644
index 000000000..98365acd5
Binary files /dev/null and b/png/burning-forest.png differ
diff --git a/png/burning-meteor.png b/png/burning-meteor.png
new file mode 100644
index 000000000..79272d150
Binary files /dev/null and b/png/burning-meteor.png differ
diff --git a/png/burning-passion.png b/png/burning-passion.png
new file mode 100644
index 000000000..fcd0876ab
Binary files /dev/null and b/png/burning-passion.png differ
diff --git a/png/burning-round-shot.png b/png/burning-round-shot.png
new file mode 100644
index 000000000..271322bdb
Binary files /dev/null and b/png/burning-round-shot.png differ
diff --git a/png/burning-skull.png b/png/burning-skull.png
new file mode 100644
index 000000000..34c8b4d2f
Binary files /dev/null and b/png/burning-skull.png differ
diff --git a/png/burning-tree.png b/png/burning-tree.png
new file mode 100644
index 000000000..cb43dabcc
Binary files /dev/null and b/png/burning-tree.png differ
diff --git a/png/burst-blob.png b/png/burst-blob.png
new file mode 100644
index 000000000..af5d49c11
Binary files /dev/null and b/png/burst-blob.png differ
diff --git a/png/bus-doors.png b/png/bus-doors.png
new file mode 100644
index 000000000..42daf2496
Binary files /dev/null and b/png/bus-doors.png differ
diff --git a/png/bus-stop.png b/png/bus-stop.png
new file mode 100644
index 000000000..def7556c7
Binary files /dev/null and b/png/bus-stop.png differ
diff --git a/png/bus.png b/png/bus.png
new file mode 100644
index 000000000..d2096acd6
Binary files /dev/null and b/png/bus.png differ
diff --git a/png/butter-toast.png b/png/butter-toast.png
new file mode 100644
index 000000000..30618f247
Binary files /dev/null and b/png/butter-toast.png differ
diff --git a/png/butter.png b/png/butter.png
new file mode 100644
index 000000000..35313013b
Binary files /dev/null and b/png/butter.png differ
diff --git a/png/butterfly-flower.png b/png/butterfly-flower.png
new file mode 100644
index 000000000..e8fab4ee1
Binary files /dev/null and b/png/butterfly-flower.png differ
diff --git a/png/butterfly-knife-2.png b/png/butterfly-knife-2.png
new file mode 100644
index 000000000..63ce5ebe3
Binary files /dev/null and b/png/butterfly-knife-2.png differ
diff --git a/png/butterfly-knife.png b/png/butterfly-knife.png
new file mode 100644
index 000000000..7b464ed26
Binary files /dev/null and b/png/butterfly-knife.png differ
diff --git a/png/butterfly-warning.png b/png/butterfly-warning.png
new file mode 100644
index 000000000..73120c0fa
Binary files /dev/null and b/png/butterfly-warning.png differ
diff --git a/png/butterfly.png b/png/butterfly.png
new file mode 100644
index 000000000..c7523f44a
Binary files /dev/null and b/png/butterfly.png differ
diff --git a/png/button-finger.png b/png/button-finger.png
new file mode 100644
index 000000000..6f4ee3cf0
Binary files /dev/null and b/png/button-finger.png differ
diff --git a/png/buy-card.png b/png/buy-card.png
new file mode 100644
index 000000000..c7f907c81
Binary files /dev/null and b/png/buy-card.png differ
diff --git a/png/byzantin-temple.png b/png/byzantin-temple.png
new file mode 100644
index 000000000..1b6ca9bc3
Binary files /dev/null and b/png/byzantin-temple.png differ
diff --git a/png/c96.png b/png/c96.png
new file mode 100644
index 000000000..69fbebbc2
Binary files /dev/null and b/png/c96.png differ
diff --git a/png/cabbage.png b/png/cabbage.png
new file mode 100644
index 000000000..71f9230b6
Binary files /dev/null and b/png/cabbage.png differ
diff --git a/png/cable-stayed-bridge.png b/png/cable-stayed-bridge.png
new file mode 100644
index 000000000..4ebe5087c
Binary files /dev/null and b/png/cable-stayed-bridge.png differ
diff --git a/png/cactus-pot.png b/png/cactus-pot.png
new file mode 100644
index 000000000..68ec838c8
Binary files /dev/null and b/png/cactus-pot.png differ
diff --git a/png/cactus-tap.png b/png/cactus-tap.png
new file mode 100644
index 000000000..d48ae9c9a
Binary files /dev/null and b/png/cactus-tap.png differ
diff --git a/png/cactus.png b/png/cactus.png
new file mode 100644
index 000000000..e32ca5cfe
Binary files /dev/null and b/png/cactus.png differ
diff --git a/png/cadillac-helm.png b/png/cadillac-helm.png
new file mode 100644
index 000000000..25d065b9d
Binary files /dev/null and b/png/cadillac-helm.png differ
diff --git a/png/caduceus.png b/png/caduceus.png
new file mode 100644
index 000000000..8eadfc7d3
Binary files /dev/null and b/png/caduceus.png differ
diff --git a/png/caesar.png b/png/caesar.png
new file mode 100644
index 000000000..3f8521377
Binary files /dev/null and b/png/caesar.png differ
diff --git a/png/cage.png b/png/cage.png
new file mode 100644
index 000000000..00b8f5487
Binary files /dev/null and b/png/cage.png differ
diff --git a/png/caged-ball.png b/png/caged-ball.png
new file mode 100644
index 000000000..0e9983e57
Binary files /dev/null and b/png/caged-ball.png differ
diff --git a/png/cake-slice.png b/png/cake-slice.png
new file mode 100644
index 000000000..9458c0292
Binary files /dev/null and b/png/cake-slice.png differ
diff --git a/png/calavera.png b/png/calavera.png
new file mode 100644
index 000000000..80e6f90be
Binary files /dev/null and b/png/calavera.png differ
diff --git a/png/calculator.png b/png/calculator.png
new file mode 100644
index 000000000..a878e59bd
Binary files /dev/null and b/png/calculator.png differ
diff --git a/png/caldera.png b/png/caldera.png
new file mode 100644
index 000000000..30c0af76e
Binary files /dev/null and b/png/caldera.png differ
diff --git a/png/calendar-half-year.png b/png/calendar-half-year.png
new file mode 100644
index 000000000..05329cc3e
Binary files /dev/null and b/png/calendar-half-year.png differ
diff --git a/png/calendar.png b/png/calendar.png
new file mode 100644
index 000000000..0404b5703
Binary files /dev/null and b/png/calendar.png differ
diff --git a/png/caltrops.png b/png/caltrops.png
new file mode 100644
index 000000000..62ce2076d
Binary files /dev/null and b/png/caltrops.png differ
diff --git a/png/camargue-cross.png b/png/camargue-cross.png
new file mode 100644
index 000000000..95fb274fe
Binary files /dev/null and b/png/camargue-cross.png differ
diff --git a/png/cambodia.png b/png/cambodia.png
new file mode 100644
index 000000000..4118d6b6c
Binary files /dev/null and b/png/cambodia.png differ
diff --git a/png/camel-head.png b/png/camel-head.png
new file mode 100644
index 000000000..90fdc473d
Binary files /dev/null and b/png/camel-head.png differ
diff --git a/png/camel.png b/png/camel.png
new file mode 100644
index 000000000..771cb3483
Binary files /dev/null and b/png/camel.png differ
diff --git a/png/camp-cooking-pot.png b/png/camp-cooking-pot.png
new file mode 100644
index 000000000..48148b570
Binary files /dev/null and b/png/camp-cooking-pot.png differ
diff --git a/png/campfire.png b/png/campfire.png
new file mode 100644
index 000000000..d52251390
Binary files /dev/null and b/png/campfire.png differ
diff --git a/png/camping-tent.png b/png/camping-tent.png
new file mode 100644
index 000000000..4ccde4a9d
Binary files /dev/null and b/png/camping-tent.png differ
diff --git a/png/canadian-goose.png b/png/canadian-goose.png
new file mode 100644
index 000000000..c148b94fd
Binary files /dev/null and b/png/canadian-goose.png differ
diff --git a/png/cancel.png b/png/cancel.png
new file mode 100644
index 000000000..291faedcb
Binary files /dev/null and b/png/cancel.png differ
diff --git a/png/cancer.png b/png/cancer.png
new file mode 100644
index 000000000..f93e79878
Binary files /dev/null and b/png/cancer.png differ
diff --git a/png/candle-flame.png b/png/candle-flame.png
new file mode 100644
index 000000000..450c5112b
Binary files /dev/null and b/png/candle-flame.png differ
diff --git a/png/candle-holder.png b/png/candle-holder.png
new file mode 100644
index 000000000..c6b4146cf
Binary files /dev/null and b/png/candle-holder.png differ
diff --git a/png/candle-light.png b/png/candle-light.png
new file mode 100644
index 000000000..3e8e19189
Binary files /dev/null and b/png/candle-light.png differ
diff --git a/png/candle-skull.png b/png/candle-skull.png
new file mode 100644
index 000000000..3f0f11e93
Binary files /dev/null and b/png/candle-skull.png differ
diff --git a/png/candlebright.png b/png/candlebright.png
new file mode 100644
index 000000000..94af107b4
Binary files /dev/null and b/png/candlebright.png differ
diff --git a/png/candles.png b/png/candles.png
new file mode 100644
index 000000000..0a608b6fa
Binary files /dev/null and b/png/candles.png differ
diff --git a/png/candlestick-phone.png b/png/candlestick-phone.png
new file mode 100644
index 000000000..8a0cd2c96
Binary files /dev/null and b/png/candlestick-phone.png differ
diff --git a/png/candy-canes.png b/png/candy-canes.png
new file mode 100644
index 000000000..6b32d8a13
Binary files /dev/null and b/png/candy-canes.png differ
diff --git a/png/canned-fish.png b/png/canned-fish.png
new file mode 100644
index 000000000..e69086b8c
Binary files /dev/null and b/png/canned-fish.png differ
diff --git a/png/cannister.png b/png/cannister.png
new file mode 100644
index 000000000..412b336bd
Binary files /dev/null and b/png/cannister.png differ
diff --git a/png/cannon-ball.png b/png/cannon-ball.png
new file mode 100644
index 000000000..d45ec3af5
Binary files /dev/null and b/png/cannon-ball.png differ
diff --git a/png/cannon-shot.png b/png/cannon-shot.png
new file mode 100644
index 000000000..1e378d434
Binary files /dev/null and b/png/cannon-shot.png differ
diff --git a/png/cannon.png b/png/cannon.png
new file mode 100644
index 000000000..fbf78fd61
Binary files /dev/null and b/png/cannon.png differ
diff --git a/png/canoe.png b/png/canoe.png
new file mode 100644
index 000000000..f0fe35b4c
Binary files /dev/null and b/png/canoe.png differ
diff --git a/png/cantua.png b/png/cantua.png
new file mode 100644
index 000000000..da12d9d2d
Binary files /dev/null and b/png/cantua.png differ
diff --git a/png/cape-armor.png b/png/cape-armor.png
new file mode 100644
index 000000000..9daa3d0c3
Binary files /dev/null and b/png/cape-armor.png differ
diff --git a/png/cape.png b/png/cape.png
new file mode 100644
index 000000000..9f6479409
Binary files /dev/null and b/png/cape.png differ
diff --git a/png/capitol.png b/png/capitol.png
new file mode 100644
index 000000000..7c02f130c
Binary files /dev/null and b/png/capitol.png differ
diff --git a/png/capricorn.png b/png/capricorn.png
new file mode 100644
index 000000000..0c1a4539f
Binary files /dev/null and b/png/capricorn.png differ
diff --git a/png/captain-hat-profile.png b/png/captain-hat-profile.png
new file mode 100644
index 000000000..a958d4a31
Binary files /dev/null and b/png/captain-hat-profile.png differ
diff --git a/png/capybara.png b/png/capybara.png
new file mode 100644
index 000000000..a91e94d44
Binary files /dev/null and b/png/capybara.png differ
diff --git a/png/car-battery.png b/png/car-battery.png
new file mode 100644
index 000000000..5140a22c7
Binary files /dev/null and b/png/car-battery.png differ
diff --git a/png/car-door.png b/png/car-door.png
new file mode 100644
index 000000000..afea229f6
Binary files /dev/null and b/png/car-door.png differ
diff --git a/png/car-key.png b/png/car-key.png
new file mode 100644
index 000000000..03bf8dead
Binary files /dev/null and b/png/car-key.png differ
diff --git a/png/car-seat.png b/png/car-seat.png
new file mode 100644
index 000000000..7f8e7a038
Binary files /dev/null and b/png/car-seat.png differ
diff --git a/png/car-wheel.png b/png/car-wheel.png
new file mode 100644
index 000000000..18942ab14
Binary files /dev/null and b/png/car-wheel.png differ
diff --git a/png/carabiner.png b/png/carabiner.png
new file mode 100644
index 000000000..8e33c9d8e
Binary files /dev/null and b/png/carabiner.png differ
diff --git a/png/carambola.png b/png/carambola.png
new file mode 100644
index 000000000..2bd2dda03
Binary files /dev/null and b/png/carambola.png differ
diff --git a/png/caravan.png b/png/caravan.png
new file mode 100644
index 000000000..5ccf104a0
Binary files /dev/null and b/png/caravan.png differ
diff --git a/png/caravel.png b/png/caravel.png
new file mode 100644
index 000000000..976e98486
Binary files /dev/null and b/png/caravel.png differ
diff --git a/png/card-10-clubs.png b/png/card-10-clubs.png
new file mode 100644
index 000000000..b99c6de4e
Binary files /dev/null and b/png/card-10-clubs.png differ
diff --git a/png/card-10-diamonds.png b/png/card-10-diamonds.png
new file mode 100644
index 000000000..74054b11a
Binary files /dev/null and b/png/card-10-diamonds.png differ
diff --git a/png/card-10-hearts.png b/png/card-10-hearts.png
new file mode 100644
index 000000000..cad8661cc
Binary files /dev/null and b/png/card-10-hearts.png differ
diff --git a/png/card-10-spades.png b/png/card-10-spades.png
new file mode 100644
index 000000000..47e926962
Binary files /dev/null and b/png/card-10-spades.png differ
diff --git a/png/card-2-clubs.png b/png/card-2-clubs.png
new file mode 100644
index 000000000..86331585a
Binary files /dev/null and b/png/card-2-clubs.png differ
diff --git a/png/card-2-diamonds.png b/png/card-2-diamonds.png
new file mode 100644
index 000000000..076f3e34d
Binary files /dev/null and b/png/card-2-diamonds.png differ
diff --git a/png/card-2-hearts.png b/png/card-2-hearts.png
new file mode 100644
index 000000000..4007ad9fb
Binary files /dev/null and b/png/card-2-hearts.png differ
diff --git a/png/card-2-spades.png b/png/card-2-spades.png
new file mode 100644
index 000000000..6f713274e
Binary files /dev/null and b/png/card-2-spades.png differ
diff --git a/png/card-3-clubs.png b/png/card-3-clubs.png
new file mode 100644
index 000000000..a375766ce
Binary files /dev/null and b/png/card-3-clubs.png differ
diff --git a/png/card-3-diamonds.png b/png/card-3-diamonds.png
new file mode 100644
index 000000000..770370a7a
Binary files /dev/null and b/png/card-3-diamonds.png differ
diff --git a/png/card-3-hearts.png b/png/card-3-hearts.png
new file mode 100644
index 000000000..dd7597763
Binary files /dev/null and b/png/card-3-hearts.png differ
diff --git a/png/card-3-spades.png b/png/card-3-spades.png
new file mode 100644
index 000000000..ddbc53d19
Binary files /dev/null and b/png/card-3-spades.png differ
diff --git a/png/card-4-clubs.png b/png/card-4-clubs.png
new file mode 100644
index 000000000..e2af01d3e
Binary files /dev/null and b/png/card-4-clubs.png differ
diff --git a/png/card-4-diamonds.png b/png/card-4-diamonds.png
new file mode 100644
index 000000000..f0a30aef7
Binary files /dev/null and b/png/card-4-diamonds.png differ
diff --git a/png/card-4-hearts.png b/png/card-4-hearts.png
new file mode 100644
index 000000000..1ab39f62d
Binary files /dev/null and b/png/card-4-hearts.png differ
diff --git a/png/card-4-spades.png b/png/card-4-spades.png
new file mode 100644
index 000000000..7fbc45223
Binary files /dev/null and b/png/card-4-spades.png differ
diff --git a/png/card-5-clubs.png b/png/card-5-clubs.png
new file mode 100644
index 000000000..213f911b3
Binary files /dev/null and b/png/card-5-clubs.png differ
diff --git a/png/card-5-diamonds.png b/png/card-5-diamonds.png
new file mode 100644
index 000000000..7387fa092
Binary files /dev/null and b/png/card-5-diamonds.png differ
diff --git a/png/card-5-hearts.png b/png/card-5-hearts.png
new file mode 100644
index 000000000..f5211ee2e
Binary files /dev/null and b/png/card-5-hearts.png differ
diff --git a/png/card-5-spades.png b/png/card-5-spades.png
new file mode 100644
index 000000000..0d099c11e
Binary files /dev/null and b/png/card-5-spades.png differ
diff --git a/png/card-6-clubs.png b/png/card-6-clubs.png
new file mode 100644
index 000000000..5d357d4b5
Binary files /dev/null and b/png/card-6-clubs.png differ
diff --git a/png/card-6-diamonds.png b/png/card-6-diamonds.png
new file mode 100644
index 000000000..3c8460aa8
Binary files /dev/null and b/png/card-6-diamonds.png differ
diff --git a/png/card-6-hearts.png b/png/card-6-hearts.png
new file mode 100644
index 000000000..3e86bc566
Binary files /dev/null and b/png/card-6-hearts.png differ
diff --git a/png/card-6-spades.png b/png/card-6-spades.png
new file mode 100644
index 000000000..4dd12d6ec
Binary files /dev/null and b/png/card-6-spades.png differ
diff --git a/png/card-7-clubs.png b/png/card-7-clubs.png
new file mode 100644
index 000000000..f5c4bff85
Binary files /dev/null and b/png/card-7-clubs.png differ
diff --git a/png/card-7-diamonds.png b/png/card-7-diamonds.png
new file mode 100644
index 000000000..a105fb61a
Binary files /dev/null and b/png/card-7-diamonds.png differ
diff --git a/png/card-7-hearts.png b/png/card-7-hearts.png
new file mode 100644
index 000000000..3923b9162
Binary files /dev/null and b/png/card-7-hearts.png differ
diff --git a/png/card-7-spades.png b/png/card-7-spades.png
new file mode 100644
index 000000000..082c8c7ec
Binary files /dev/null and b/png/card-7-spades.png differ
diff --git a/png/card-8-clubs.png b/png/card-8-clubs.png
new file mode 100644
index 000000000..b8370ee8e
Binary files /dev/null and b/png/card-8-clubs.png differ
diff --git a/png/card-8-diamonds.png b/png/card-8-diamonds.png
new file mode 100644
index 000000000..0e95ac0b5
Binary files /dev/null and b/png/card-8-diamonds.png differ
diff --git a/png/card-8-hearts.png b/png/card-8-hearts.png
new file mode 100644
index 000000000..8dfd6c51b
Binary files /dev/null and b/png/card-8-hearts.png differ
diff --git a/png/card-8-spades.png b/png/card-8-spades.png
new file mode 100644
index 000000000..545f63f42
Binary files /dev/null and b/png/card-8-spades.png differ
diff --git a/png/card-9-clubs.png b/png/card-9-clubs.png
new file mode 100644
index 000000000..452f3e3dd
Binary files /dev/null and b/png/card-9-clubs.png differ
diff --git a/png/card-9-diamonds.png b/png/card-9-diamonds.png
new file mode 100644
index 000000000..e36c32f53
Binary files /dev/null and b/png/card-9-diamonds.png differ
diff --git a/png/card-9-hearts.png b/png/card-9-hearts.png
new file mode 100644
index 000000000..166729576
Binary files /dev/null and b/png/card-9-hearts.png differ
diff --git a/png/card-9-spades.png b/png/card-9-spades.png
new file mode 100644
index 000000000..0b3b5ed35
Binary files /dev/null and b/png/card-9-spades.png differ
diff --git a/png/card-ace-clubs.png b/png/card-ace-clubs.png
new file mode 100644
index 000000000..27e2dcad0
Binary files /dev/null and b/png/card-ace-clubs.png differ
diff --git a/png/card-ace-diamonds.png b/png/card-ace-diamonds.png
new file mode 100644
index 000000000..4252e5874
Binary files /dev/null and b/png/card-ace-diamonds.png differ
diff --git a/png/card-ace-hearts.png b/png/card-ace-hearts.png
new file mode 100644
index 000000000..ffc7ba1ee
Binary files /dev/null and b/png/card-ace-hearts.png differ
diff --git a/png/card-ace-spades.png b/png/card-ace-spades.png
new file mode 100644
index 000000000..af08cc55a
Binary files /dev/null and b/png/card-ace-spades.png differ
diff --git a/png/card-burn.png b/png/card-burn.png
new file mode 100644
index 000000000..549dea320
Binary files /dev/null and b/png/card-burn.png differ
diff --git a/png/card-discard.png b/png/card-discard.png
new file mode 100644
index 000000000..4e589f7d4
Binary files /dev/null and b/png/card-discard.png differ
diff --git a/png/card-draw.png b/png/card-draw.png
new file mode 100644
index 000000000..434aef52c
Binary files /dev/null and b/png/card-draw.png differ
diff --git a/png/card-exchange.png b/png/card-exchange.png
new file mode 100644
index 000000000..c32a9a7c7
Binary files /dev/null and b/png/card-exchange.png differ
diff --git a/png/card-jack-clubs.png b/png/card-jack-clubs.png
new file mode 100644
index 000000000..410577a0c
Binary files /dev/null and b/png/card-jack-clubs.png differ
diff --git a/png/card-jack-diamonds.png b/png/card-jack-diamonds.png
new file mode 100644
index 000000000..7c0adf74c
Binary files /dev/null and b/png/card-jack-diamonds.png differ
diff --git a/png/card-jack-hearts.png b/png/card-jack-hearts.png
new file mode 100644
index 000000000..396a57bec
Binary files /dev/null and b/png/card-jack-hearts.png differ
diff --git a/png/card-jack-spades.png b/png/card-jack-spades.png
new file mode 100644
index 000000000..cf234e2d3
Binary files /dev/null and b/png/card-jack-spades.png differ
diff --git a/png/card-joker.png b/png/card-joker.png
new file mode 100644
index 000000000..1161d99c9
Binary files /dev/null and b/png/card-joker.png differ
diff --git a/png/card-king-clubs.png b/png/card-king-clubs.png
new file mode 100644
index 000000000..c643a1009
Binary files /dev/null and b/png/card-king-clubs.png differ
diff --git a/png/card-king-diamonds.png b/png/card-king-diamonds.png
new file mode 100644
index 000000000..6d166df76
Binary files /dev/null and b/png/card-king-diamonds.png differ
diff --git a/png/card-king-hearts.png b/png/card-king-hearts.png
new file mode 100644
index 000000000..f133e93c9
Binary files /dev/null and b/png/card-king-hearts.png differ
diff --git a/png/card-king-spades.png b/png/card-king-spades.png
new file mode 100644
index 000000000..1835d6fbb
Binary files /dev/null and b/png/card-king-spades.png differ
diff --git a/png/card-pick.png b/png/card-pick.png
new file mode 100644
index 000000000..20535ffdc
Binary files /dev/null and b/png/card-pick.png differ
diff --git a/png/card-pickup.png b/png/card-pickup.png
new file mode 100644
index 000000000..44607aa04
Binary files /dev/null and b/png/card-pickup.png differ
diff --git a/png/card-play.png b/png/card-play.png
new file mode 100644
index 000000000..2f40a0caa
Binary files /dev/null and b/png/card-play.png differ
diff --git a/png/card-queen-clubs.png b/png/card-queen-clubs.png
new file mode 100644
index 000000000..c7bfbd311
Binary files /dev/null and b/png/card-queen-clubs.png differ
diff --git a/png/card-queen-diamonds.png b/png/card-queen-diamonds.png
new file mode 100644
index 000000000..41f4fa4f6
Binary files /dev/null and b/png/card-queen-diamonds.png differ
diff --git a/png/card-queen-hearts.png b/png/card-queen-hearts.png
new file mode 100644
index 000000000..9193f6766
Binary files /dev/null and b/png/card-queen-hearts.png differ
diff --git a/png/card-queen-spades.png b/png/card-queen-spades.png
new file mode 100644
index 000000000..832e85b92
Binary files /dev/null and b/png/card-queen-spades.png differ
diff --git a/png/card-random.png b/png/card-random.png
new file mode 100644
index 000000000..3e8025b6c
Binary files /dev/null and b/png/card-random.png differ
diff --git a/png/cardboard-box-closed.png b/png/cardboard-box-closed.png
new file mode 100644
index 000000000..c597d26af
Binary files /dev/null and b/png/cardboard-box-closed.png differ
diff --git a/png/cardboard-box.png b/png/cardboard-box.png
new file mode 100644
index 000000000..0df6cccb1
Binary files /dev/null and b/png/cardboard-box.png differ
diff --git a/png/cargo-crane.png b/png/cargo-crane.png
new file mode 100644
index 000000000..0fc8b43da
Binary files /dev/null and b/png/cargo-crane.png differ
diff --git a/png/cargo-crate.png b/png/cargo-crate.png
new file mode 100644
index 000000000..b906eee29
Binary files /dev/null and b/png/cargo-crate.png differ
diff --git a/png/cargo-ship.png b/png/cargo-ship.png
new file mode 100644
index 000000000..0185238e3
Binary files /dev/null and b/png/cargo-ship.png differ
diff --git a/png/carillon.png b/png/carillon.png
new file mode 100644
index 000000000..9b0df0454
Binary files /dev/null and b/png/carillon.png differ
diff --git a/png/carnival-mask.png b/png/carnival-mask.png
new file mode 100644
index 000000000..ce8b80c81
Binary files /dev/null and b/png/carnival-mask.png differ
diff --git a/png/carnivore-mouth.png b/png/carnivore-mouth.png
new file mode 100644
index 000000000..756e5d17c
Binary files /dev/null and b/png/carnivore-mouth.png differ
diff --git a/png/carnivorous-plant.png b/png/carnivorous-plant.png
new file mode 100644
index 000000000..e6adf49eb
Binary files /dev/null and b/png/carnivorous-plant.png differ
diff --git a/png/carnyx.png b/png/carnyx.png
new file mode 100644
index 000000000..aa572b997
Binary files /dev/null and b/png/carnyx.png differ
diff --git a/png/carousel.png b/png/carousel.png
new file mode 100644
index 000000000..6653ae432
Binary files /dev/null and b/png/carousel.png differ
diff --git a/png/carpet-bombing.png b/png/carpet-bombing.png
new file mode 100644
index 000000000..f646a42fd
Binary files /dev/null and b/png/carpet-bombing.png differ
diff --git a/png/carrier.png b/png/carrier.png
new file mode 100644
index 000000000..d8a96375c
Binary files /dev/null and b/png/carrier.png differ
diff --git a/png/carrion.png b/png/carrion.png
new file mode 100644
index 000000000..c8b85a378
Binary files /dev/null and b/png/carrion.png differ
diff --git a/png/carrot.png b/png/carrot.png
new file mode 100644
index 000000000..a8d1f9af7
Binary files /dev/null and b/png/carrot.png differ
diff --git a/png/cartwheel.png b/png/cartwheel.png
new file mode 100644
index 000000000..ae6612d62
Binary files /dev/null and b/png/cartwheel.png differ
diff --git a/png/cash.png b/png/cash.png
new file mode 100644
index 000000000..f300ee71d
Binary files /dev/null and b/png/cash.png differ
diff --git a/png/cassowary-head.png b/png/cassowary-head.png
new file mode 100644
index 000000000..8561682d6
Binary files /dev/null and b/png/cassowary-head.png differ
diff --git a/png/castle-2.png b/png/castle-2.png
new file mode 100644
index 000000000..fc7e30e81
Binary files /dev/null and b/png/castle-2.png differ
diff --git a/png/castle-ruins.png b/png/castle-ruins.png
new file mode 100644
index 000000000..26d00f833
Binary files /dev/null and b/png/castle-ruins.png differ
diff --git a/png/castle.png b/png/castle.png
new file mode 100644
index 000000000..7f950079a
Binary files /dev/null and b/png/castle.png differ
diff --git a/png/cat.png b/png/cat.png
new file mode 100644
index 000000000..c231c3306
Binary files /dev/null and b/png/cat.png differ
diff --git a/png/catapult.png b/png/catapult.png
new file mode 100644
index 000000000..b991376b1
Binary files /dev/null and b/png/catapult.png differ
diff --git a/png/catch.png b/png/catch.png
new file mode 100644
index 000000000..4eba0d410
Binary files /dev/null and b/png/catch.png differ
diff --git a/png/caterpillar.png b/png/caterpillar.png
new file mode 100644
index 000000000..601ccc927
Binary files /dev/null and b/png/caterpillar.png differ
diff --git a/png/cauldron-2.png b/png/cauldron-2.png
new file mode 100644
index 000000000..03afc870a
Binary files /dev/null and b/png/cauldron-2.png differ
diff --git a/png/cauldron.png b/png/cauldron.png
new file mode 100644
index 000000000..a45d045ce
Binary files /dev/null and b/png/cauldron.png differ
diff --git a/png/cavalry.png b/png/cavalry.png
new file mode 100644
index 000000000..7ad8ffe47
Binary files /dev/null and b/png/cavalry.png differ
diff --git a/png/cave-entrance.png b/png/cave-entrance.png
new file mode 100644
index 000000000..e476fb09a
Binary files /dev/null and b/png/cave-entrance.png differ
diff --git a/png/caveman.png b/png/caveman.png
new file mode 100644
index 000000000..c64766c1e
Binary files /dev/null and b/png/caveman.png differ
diff --git a/png/cctv-camera.png b/png/cctv-camera.png
new file mode 100644
index 000000000..f437f1358
Binary files /dev/null and b/png/cctv-camera.png differ
diff --git a/png/ceiling-barnacle.png b/png/ceiling-barnacle.png
new file mode 100644
index 000000000..aa8429c88
Binary files /dev/null and b/png/ceiling-barnacle.png differ
diff --git a/png/ceiling-light.png b/png/ceiling-light.png
new file mode 100644
index 000000000..3cd3d7c14
Binary files /dev/null and b/png/ceiling-light.png differ
diff --git a/png/celebration-fire.png b/png/celebration-fire.png
new file mode 100644
index 000000000..89210a733
Binary files /dev/null and b/png/celebration-fire.png differ
diff --git a/png/cellar-barrels.png b/png/cellar-barrels.png
new file mode 100644
index 000000000..7fc72e4a7
Binary files /dev/null and b/png/cellar-barrels.png differ
diff --git a/png/cement-shoes.png b/png/cement-shoes.png
new file mode 100644
index 000000000..7596d29f1
Binary files /dev/null and b/png/cement-shoes.png differ
diff --git a/png/centaur-heart.png b/png/centaur-heart.png
new file mode 100644
index 000000000..5ea3d5bdc
Binary files /dev/null and b/png/centaur-heart.png differ
diff --git a/png/centaur.png b/png/centaur.png
new file mode 100644
index 000000000..eef09586e
Binary files /dev/null and b/png/centaur.png differ
diff --git a/png/centipede.png b/png/centipede.png
new file mode 100644
index 000000000..96b769788
Binary files /dev/null and b/png/centipede.png differ
diff --git a/png/centurion-helmet.png b/png/centurion-helmet.png
new file mode 100644
index 000000000..9361eb7a7
Binary files /dev/null and b/png/centurion-helmet.png differ
diff --git a/png/ceremonial-mask.png b/png/ceremonial-mask.png
new file mode 100644
index 000000000..7bc673958
Binary files /dev/null and b/png/ceremonial-mask.png differ
diff --git a/png/chain-lightning.png b/png/chain-lightning.png
new file mode 100644
index 000000000..2942f0efe
Binary files /dev/null and b/png/chain-lightning.png differ
diff --git a/png/chain-mail.png b/png/chain-mail.png
new file mode 100644
index 000000000..0130eca1d
Binary files /dev/null and b/png/chain-mail.png differ
diff --git a/png/chained-arrow-heads.png b/png/chained-arrow-heads.png
new file mode 100644
index 000000000..31e2f7c55
Binary files /dev/null and b/png/chained-arrow-heads.png differ
diff --git a/png/chained-heart.png b/png/chained-heart.png
new file mode 100644
index 000000000..98d6bee71
Binary files /dev/null and b/png/chained-heart.png differ
diff --git a/png/chaingun.png b/png/chaingun.png
new file mode 100644
index 000000000..0632e8dfe
Binary files /dev/null and b/png/chaingun.png differ
diff --git a/png/chainsaw.png b/png/chainsaw.png
new file mode 100644
index 000000000..60cb5893a
Binary files /dev/null and b/png/chainsaw.png differ
diff --git a/png/chakram.png b/png/chakram.png
new file mode 100644
index 000000000..e059bac48
Binary files /dev/null and b/png/chakram.png differ
diff --git a/png/chalice-drops.png b/png/chalice-drops.png
new file mode 100644
index 000000000..2168e2441
Binary files /dev/null and b/png/chalice-drops.png differ
diff --git a/png/chalk-outline-murder.png b/png/chalk-outline-murder.png
new file mode 100644
index 000000000..60b411dc2
Binary files /dev/null and b/png/chalk-outline-murder.png differ
diff --git a/png/chameleon-glyph.png b/png/chameleon-glyph.png
new file mode 100644
index 000000000..ead8a5d76
Binary files /dev/null and b/png/chameleon-glyph.png differ
diff --git a/png/champagne-cork.png b/png/champagne-cork.png
new file mode 100644
index 000000000..8dde18430
Binary files /dev/null and b/png/champagne-cork.png differ
diff --git a/png/champions.png b/png/champions.png
new file mode 100644
index 000000000..fc340534f
Binary files /dev/null and b/png/champions.png differ
diff --git a/png/chanterelles.png b/png/chanterelles.png
new file mode 100644
index 000000000..7f41ad47c
Binary files /dev/null and b/png/chanterelles.png differ
diff --git a/png/character.png b/png/character.png
new file mode 100644
index 000000000..f2b8a97fc
Binary files /dev/null and b/png/character.png differ
diff --git a/png/charcuterie.png b/png/charcuterie.png
new file mode 100644
index 000000000..d63340c7d
Binary files /dev/null and b/png/charcuterie.png differ
diff --git a/png/charged-arrow.png b/png/charged-arrow.png
new file mode 100644
index 000000000..4bed1210f
Binary files /dev/null and b/png/charged-arrow.png differ
diff --git a/png/charging-bull.png b/png/charging-bull.png
new file mode 100644
index 000000000..fbc518c92
Binary files /dev/null and b/png/charging-bull.png differ
diff --git a/png/charging.png b/png/charging.png
new file mode 100644
index 000000000..287611051
Binary files /dev/null and b/png/charging.png differ
diff --git a/png/chariot.png b/png/chariot.png
new file mode 100644
index 000000000..d358150fe
Binary files /dev/null and b/png/chariot.png differ
diff --git a/png/charm.png b/png/charm.png
new file mode 100644
index 000000000..041d1f99e
Binary files /dev/null and b/png/charm.png differ
diff --git a/png/chart.png b/png/chart.png
new file mode 100644
index 000000000..a60dba438
Binary files /dev/null and b/png/chart.png differ
diff --git a/png/chat-bubble.png b/png/chat-bubble.png
new file mode 100644
index 000000000..80bc347a3
Binary files /dev/null and b/png/chat-bubble.png differ
diff --git a/png/check-mark.png b/png/check-mark.png
new file mode 100644
index 000000000..be77d9692
Binary files /dev/null and b/png/check-mark.png differ
diff --git a/png/checkbox-tree.png b/png/checkbox-tree.png
new file mode 100644
index 000000000..c168dd72b
Binary files /dev/null and b/png/checkbox-tree.png differ
diff --git a/png/checked-shield.png b/png/checked-shield.png
new file mode 100644
index 000000000..8613f5560
Binary files /dev/null and b/png/checked-shield.png differ
diff --git a/png/checkered-diamond.png b/png/checkered-diamond.png
new file mode 100644
index 000000000..4a931ea9a
Binary files /dev/null and b/png/checkered-diamond.png differ
diff --git a/png/checkered-flag.png b/png/checkered-flag.png
new file mode 100644
index 000000000..621c4869c
Binary files /dev/null and b/png/checkered-flag.png differ
diff --git a/png/checklist.png b/png/checklist.png
new file mode 100644
index 000000000..c8de4a933
Binary files /dev/null and b/png/checklist.png differ
diff --git a/png/cheerful.png b/png/cheerful.png
new file mode 100644
index 000000000..1ab382de6
Binary files /dev/null and b/png/cheerful.png differ
diff --git a/png/cheese-wedge.png b/png/cheese-wedge.png
new file mode 100644
index 000000000..0a0342ac9
Binary files /dev/null and b/png/cheese-wedge.png differ
diff --git a/png/chef-toque.png b/png/chef-toque.png
new file mode 100644
index 000000000..278c2918e
Binary files /dev/null and b/png/chef-toque.png differ
diff --git a/png/chelsea-boot.png b/png/chelsea-boot.png
new file mode 100644
index 000000000..b21f94923
Binary files /dev/null and b/png/chelsea-boot.png differ
diff --git a/png/chemical-arrow.png b/png/chemical-arrow.png
new file mode 100644
index 000000000..d662f030e
Binary files /dev/null and b/png/chemical-arrow.png differ
diff --git a/png/chemical-bolt.png b/png/chemical-bolt.png
new file mode 100644
index 000000000..2d2e72006
Binary files /dev/null and b/png/chemical-bolt.png differ
diff --git a/png/chemical-drop.png b/png/chemical-drop.png
new file mode 100644
index 000000000..470536ca5
Binary files /dev/null and b/png/chemical-drop.png differ
diff --git a/png/chemical-tank.png b/png/chemical-tank.png
new file mode 100644
index 000000000..da6de2ce3
Binary files /dev/null and b/png/chemical-tank.png differ
diff --git a/png/cherish.png b/png/cherish.png
new file mode 100644
index 000000000..f06b3ffb4
Binary files /dev/null and b/png/cherish.png differ
diff --git a/png/cherry.png b/png/cherry.png
new file mode 100644
index 000000000..e0ae97243
Binary files /dev/null and b/png/cherry.png differ
diff --git a/png/chess-bishop.png b/png/chess-bishop.png
new file mode 100644
index 000000000..c31c29d82
Binary files /dev/null and b/png/chess-bishop.png differ
diff --git a/png/chess-king.png b/png/chess-king.png
new file mode 100644
index 000000000..029f9c671
Binary files /dev/null and b/png/chess-king.png differ
diff --git a/png/chess-knight.png b/png/chess-knight.png
new file mode 100644
index 000000000..16345536e
Binary files /dev/null and b/png/chess-knight.png differ
diff --git a/png/chess-pawn.png b/png/chess-pawn.png
new file mode 100644
index 000000000..23dbc51a8
Binary files /dev/null and b/png/chess-pawn.png differ
diff --git a/png/chess-queen.png b/png/chess-queen.png
new file mode 100644
index 000000000..279a9e4f7
Binary files /dev/null and b/png/chess-queen.png differ
diff --git a/png/chess-rook.png b/png/chess-rook.png
new file mode 100644
index 000000000..29cd1476d
Binary files /dev/null and b/png/chess-rook.png differ
diff --git a/png/chest-armor.png b/png/chest-armor.png
new file mode 100644
index 000000000..cb5fe4f07
Binary files /dev/null and b/png/chest-armor.png differ
diff --git a/png/chest.png b/png/chest.png
new file mode 100644
index 000000000..bf9dd63ad
Binary files /dev/null and b/png/chest.png differ
diff --git a/png/chestnut-leaf.png b/png/chestnut-leaf.png
new file mode 100644
index 000000000..f56f9c5e6
Binary files /dev/null and b/png/chestnut-leaf.png differ
diff --git a/png/chewed-heart.png b/png/chewed-heart.png
new file mode 100644
index 000000000..90de6b634
Binary files /dev/null and b/png/chewed-heart.png differ
diff --git a/png/chewed-skull.png b/png/chewed-skull.png
new file mode 100644
index 000000000..2be34a403
Binary files /dev/null and b/png/chewed-skull.png differ
diff --git a/png/chicken-leg.png b/png/chicken-leg.png
new file mode 100644
index 000000000..2dc349365
Binary files /dev/null and b/png/chicken-leg.png differ
diff --git a/png/chicken-oven.png b/png/chicken-oven.png
new file mode 100644
index 000000000..c8b20e7b7
Binary files /dev/null and b/png/chicken-oven.png differ
diff --git a/png/chicken.png b/png/chicken.png
new file mode 100644
index 000000000..a70cceccc
Binary files /dev/null and b/png/chicken.png differ
diff --git a/png/chili-pepper.png b/png/chili-pepper.png
new file mode 100644
index 000000000..e15598984
Binary files /dev/null and b/png/chili-pepper.png differ
diff --git a/png/chimney.png b/png/chimney.png
new file mode 100644
index 000000000..e45377d35
Binary files /dev/null and b/png/chimney.png differ
diff --git a/png/chips-bag.png b/png/chips-bag.png
new file mode 100644
index 000000000..0f88f7d0d
Binary files /dev/null and b/png/chips-bag.png differ
diff --git a/png/chisel.png b/png/chisel.png
new file mode 100644
index 000000000..b71a4b8a3
Binary files /dev/null and b/png/chisel.png differ
diff --git a/png/chocolate-bar.png b/png/chocolate-bar.png
new file mode 100644
index 000000000..87eeffe5c
Binary files /dev/null and b/png/chocolate-bar.png differ
diff --git a/png/choice.png b/png/choice.png
new file mode 100644
index 000000000..3e83fca13
Binary files /dev/null and b/png/choice.png differ
diff --git a/png/chopped-skull.png b/png/chopped-skull.png
new file mode 100644
index 000000000..a2162a964
Binary files /dev/null and b/png/chopped-skull.png differ
diff --git a/png/chopsticks.png b/png/chopsticks.png
new file mode 100644
index 000000000..cd187926d
Binary files /dev/null and b/png/chopsticks.png differ
diff --git a/png/church.png b/png/church.png
new file mode 100644
index 000000000..4ec9880ab
Binary files /dev/null and b/png/church.png differ
diff --git a/png/cigale.png b/png/cigale.png
new file mode 100644
index 000000000..3e0422abf
Binary files /dev/null and b/png/cigale.png differ
diff --git a/png/cigar.png b/png/cigar.png
new file mode 100644
index 000000000..4d18576f0
Binary files /dev/null and b/png/cigar.png differ
diff --git a/png/cigarette.png b/png/cigarette.png
new file mode 100644
index 000000000..5f458d810
Binary files /dev/null and b/png/cigarette.png differ
diff --git a/png/circle-cage.png b/png/circle-cage.png
new file mode 100644
index 000000000..37c06bc45
Binary files /dev/null and b/png/circle-cage.png differ
diff --git a/png/circle-claws.png b/png/circle-claws.png
new file mode 100644
index 000000000..a4e023526
Binary files /dev/null and b/png/circle-claws.png differ
diff --git a/png/circle-forest.png b/png/circle-forest.png
new file mode 100644
index 000000000..bb9e3d985
Binary files /dev/null and b/png/circle-forest.png differ
diff --git a/png/circle-sparks.png b/png/circle-sparks.png
new file mode 100644
index 000000000..ea085ccd5
Binary files /dev/null and b/png/circle-sparks.png differ
diff --git a/png/circle.png b/png/circle.png
new file mode 100644
index 000000000..ae8b34d95
Binary files /dev/null and b/png/circle.png differ
diff --git a/png/circling-fish.png b/png/circling-fish.png
new file mode 100644
index 000000000..a52d3d52f
Binary files /dev/null and b/png/circling-fish.png differ
diff --git a/png/circuitry.png b/png/circuitry.png
new file mode 100644
index 000000000..18954e709
Binary files /dev/null and b/png/circuitry.png differ
diff --git a/png/circular-saw.png b/png/circular-saw.png
new file mode 100644
index 000000000..9cee33729
Binary files /dev/null and b/png/circular-saw.png differ
diff --git a/png/circular-sawblade.png b/png/circular-sawblade.png
new file mode 100644
index 000000000..f9091d188
Binary files /dev/null and b/png/circular-sawblade.png differ
diff --git a/png/city-car.png b/png/city-car.png
new file mode 100644
index 000000000..52b2e1787
Binary files /dev/null and b/png/city-car.png differ
diff --git a/png/clamp.png b/png/clamp.png
new file mode 100644
index 000000000..2f8da9344
Binary files /dev/null and b/png/clamp.png differ
diff --git a/png/clapperboard.png b/png/clapperboard.png
new file mode 100644
index 000000000..d060fd335
Binary files /dev/null and b/png/clapperboard.png differ
diff --git a/png/clarinet.png b/png/clarinet.png
new file mode 100644
index 000000000..d126777fc
Binary files /dev/null and b/png/clarinet.png differ
diff --git a/png/classical-knowledge.png b/png/classical-knowledge.png
new file mode 100644
index 000000000..09aae8ada
Binary files /dev/null and b/png/classical-knowledge.png differ
diff --git a/png/claw-hammer.png b/png/claw-hammer.png
new file mode 100644
index 000000000..1acdf8428
Binary files /dev/null and b/png/claw-hammer.png differ
diff --git a/png/claw-slashes.png b/png/claw-slashes.png
new file mode 100644
index 000000000..6a27c775a
Binary files /dev/null and b/png/claw-slashes.png differ
diff --git a/png/claw-string.png b/png/claw-string.png
new file mode 100644
index 000000000..830c4699b
Binary files /dev/null and b/png/claw-string.png differ
diff --git a/png/claw.png b/png/claw.png
new file mode 100644
index 000000000..ae558a84c
Binary files /dev/null and b/png/claw.png differ
diff --git a/png/claws.png b/png/claws.png
new file mode 100644
index 000000000..0408ccda2
Binary files /dev/null and b/png/claws.png differ
diff --git a/png/clay-brick.png b/png/clay-brick.png
new file mode 100644
index 000000000..4a95195b2
Binary files /dev/null and b/png/clay-brick.png differ
diff --git a/png/claymore-explosive.png b/png/claymore-explosive.png
new file mode 100644
index 000000000..037f13c73
Binary files /dev/null and b/png/claymore-explosive.png differ
diff --git a/png/cleaver.png b/png/cleaver.png
new file mode 100644
index 000000000..4b9a3cc0c
Binary files /dev/null and b/png/cleaver.png differ
diff --git a/png/cleopatra.png b/png/cleopatra.png
new file mode 100644
index 000000000..82753bb91
Binary files /dev/null and b/png/cleopatra.png differ
diff --git a/png/click.png b/png/click.png
new file mode 100644
index 000000000..5e75f4df4
Binary files /dev/null and b/png/click.png differ
diff --git a/png/cliff-crossing.png b/png/cliff-crossing.png
new file mode 100644
index 000000000..c5bf7f7e8
Binary files /dev/null and b/png/cliff-crossing.png differ
diff --git a/png/cloak-dagger.png b/png/cloak-dagger.png
new file mode 100644
index 000000000..fe576d33b
Binary files /dev/null and b/png/cloak-dagger.png differ
diff --git a/png/cloak.png b/png/cloak.png
new file mode 100644
index 000000000..39e41e7a3
Binary files /dev/null and b/png/cloak.png differ
diff --git a/png/cloaked-figure-on-horseback.png b/png/cloaked-figure-on-horseback.png
new file mode 100644
index 000000000..1e1c68b8d
Binary files /dev/null and b/png/cloaked-figure-on-horseback.png differ
diff --git a/png/clock-tower.png b/png/clock-tower.png
new file mode 100644
index 000000000..9eb41804b
Binary files /dev/null and b/png/clock-tower.png differ
diff --git a/png/clockwise-rotation.png b/png/clockwise-rotation.png
new file mode 100644
index 000000000..121b7b953
Binary files /dev/null and b/png/clockwise-rotation.png differ
diff --git a/png/clockwork.png b/png/clockwork.png
new file mode 100644
index 000000000..52a493c56
Binary files /dev/null and b/png/clockwork.png differ
diff --git a/png/closed-barbute.png b/png/closed-barbute.png
new file mode 100644
index 000000000..0183a872b
Binary files /dev/null and b/png/closed-barbute.png differ
diff --git a/png/closed-doors.png b/png/closed-doors.png
new file mode 100644
index 000000000..0cdaff661
Binary files /dev/null and b/png/closed-doors.png differ
diff --git a/png/cloth-jar.png b/png/cloth-jar.png
new file mode 100644
index 000000000..dc3be7050
Binary files /dev/null and b/png/cloth-jar.png differ
diff --git a/png/clothes.png b/png/clothes.png
new file mode 100644
index 000000000..1b979d05c
Binary files /dev/null and b/png/clothes.png differ
diff --git a/png/clothesline.png b/png/clothesline.png
new file mode 100644
index 000000000..075e65be0
Binary files /dev/null and b/png/clothesline.png differ
diff --git a/png/clothespin.png b/png/clothespin.png
new file mode 100644
index 000000000..086c96a85
Binary files /dev/null and b/png/clothespin.png differ
diff --git a/png/cloud-download.png b/png/cloud-download.png
new file mode 100644
index 000000000..06d111bd5
Binary files /dev/null and b/png/cloud-download.png differ
diff --git a/png/cloud-ring.png b/png/cloud-ring.png
new file mode 100644
index 000000000..8ed446be7
Binary files /dev/null and b/png/cloud-ring.png differ
diff --git a/png/cloud-upload.png b/png/cloud-upload.png
new file mode 100644
index 000000000..eef6721f3
Binary files /dev/null and b/png/cloud-upload.png differ
diff --git a/png/cloudy-fork.png b/png/cloudy-fork.png
new file mode 100644
index 000000000..d97367d03
Binary files /dev/null and b/png/cloudy-fork.png differ
diff --git a/png/clout.png b/png/clout.png
new file mode 100644
index 000000000..6058820ca
Binary files /dev/null and b/png/clout.png differ
diff --git a/png/clover-2.png b/png/clover-2.png
new file mode 100644
index 000000000..ffde7b44e
Binary files /dev/null and b/png/clover-2.png differ
diff --git a/png/clover-spiked.png b/png/clover-spiked.png
new file mode 100644
index 000000000..f81bc9390
Binary files /dev/null and b/png/clover-spiked.png differ
diff --git a/png/clover.png b/png/clover.png
new file mode 100644
index 000000000..3fe34a216
Binary files /dev/null and b/png/clover.png differ
diff --git a/png/clown.png b/png/clown.png
new file mode 100644
index 000000000..eb25db8ec
Binary files /dev/null and b/png/clown.png differ
diff --git a/png/clownfish.png b/png/clownfish.png
new file mode 100644
index 000000000..6c87e805b
Binary files /dev/null and b/png/clownfish.png differ
diff --git a/png/clubs.png b/png/clubs.png
new file mode 100644
index 000000000..dcd2bbf29
Binary files /dev/null and b/png/clubs.png differ
diff --git a/png/cluster-bomb.png b/png/cluster-bomb.png
new file mode 100644
index 000000000..a2058654e
Binary files /dev/null and b/png/cluster-bomb.png differ
diff --git a/png/coa-de-jima.png b/png/coa-de-jima.png
new file mode 100644
index 000000000..3d6a1fe64
Binary files /dev/null and b/png/coa-de-jima.png differ
diff --git a/png/coal-pile.png b/png/coal-pile.png
new file mode 100644
index 000000000..9d29dc600
Binary files /dev/null and b/png/coal-pile.png differ
diff --git a/png/coal-wagon.png b/png/coal-wagon.png
new file mode 100644
index 000000000..c697d34bc
Binary files /dev/null and b/png/coal-wagon.png differ
diff --git a/png/cobra-2.png b/png/cobra-2.png
new file mode 100644
index 000000000..04785933f
Binary files /dev/null and b/png/cobra-2.png differ
diff --git a/png/cobra.png b/png/cobra.png
new file mode 100644
index 000000000..ff4622327
Binary files /dev/null and b/png/cobra.png differ
diff --git a/png/cobweb.png b/png/cobweb.png
new file mode 100644
index 000000000..c244980fc
Binary files /dev/null and b/png/cobweb.png differ
diff --git a/png/coconuts.png b/png/coconuts.png
new file mode 100644
index 000000000..98967cce0
Binary files /dev/null and b/png/coconuts.png differ
diff --git a/png/coffee-beans.png b/png/coffee-beans.png
new file mode 100644
index 000000000..a02497dfb
Binary files /dev/null and b/png/coffee-beans.png differ
diff --git a/png/coffee-cup.png b/png/coffee-cup.png
new file mode 100644
index 000000000..e7e17ec29
Binary files /dev/null and b/png/coffee-cup.png differ
diff --git a/png/coffee-mug.png b/png/coffee-mug.png
new file mode 100644
index 000000000..b55892c8e
Binary files /dev/null and b/png/coffee-mug.png differ
diff --git a/png/coffee-pot.png b/png/coffee-pot.png
new file mode 100644
index 000000000..e2eb5901b
Binary files /dev/null and b/png/coffee-pot.png differ
diff --git a/png/coffin.png b/png/coffin.png
new file mode 100644
index 000000000..b9aa19594
Binary files /dev/null and b/png/coffin.png differ
diff --git a/png/cog-lock.png b/png/cog-lock.png
new file mode 100644
index 000000000..37bc364e2
Binary files /dev/null and b/png/cog-lock.png differ
diff --git a/png/cog.png b/png/cog.png
new file mode 100644
index 000000000..9838532db
Binary files /dev/null and b/png/cog.png differ
diff --git a/png/cogsplosion.png b/png/cogsplosion.png
new file mode 100644
index 000000000..67f7bb95a
Binary files /dev/null and b/png/cogsplosion.png differ
diff --git a/png/coiled-nail.png b/png/coiled-nail.png
new file mode 100644
index 000000000..257755982
Binary files /dev/null and b/png/coiled-nail.png differ
diff --git a/png/coiling-curl.png b/png/coiling-curl.png
new file mode 100644
index 000000000..19eb7e604
Binary files /dev/null and b/png/coiling-curl.png differ
diff --git a/png/coinflip.png b/png/coinflip.png
new file mode 100644
index 000000000..8259cb4eb
Binary files /dev/null and b/png/coinflip.png differ
diff --git a/png/coins-pile.png b/png/coins-pile.png
new file mode 100644
index 000000000..0611f2220
Binary files /dev/null and b/png/coins-pile.png differ
diff --git a/png/coins.png b/png/coins.png
new file mode 100644
index 000000000..2d4f8a77a
Binary files /dev/null and b/png/coins.png differ
diff --git a/png/cold-heart.png b/png/cold-heart.png
new file mode 100644
index 000000000..b80337fde
Binary files /dev/null and b/png/cold-heart.png differ
diff --git a/png/coliseum.png b/png/coliseum.png
new file mode 100644
index 000000000..d1094888c
Binary files /dev/null and b/png/coliseum.png differ
diff --git a/png/colombia.png b/png/colombia.png
new file mode 100644
index 000000000..95e8f2dcc
Binary files /dev/null and b/png/colombia.png differ
diff --git a/png/colombian-statue.png b/png/colombian-statue.png
new file mode 100644
index 000000000..94f2c481c
Binary files /dev/null and b/png/colombian-statue.png differ
diff --git a/png/colt-m1911.png b/png/colt-m1911.png
new file mode 100644
index 000000000..650da5388
Binary files /dev/null and b/png/colt-m1911.png differ
diff --git a/png/column-vase.png b/png/column-vase.png
new file mode 100644
index 000000000..d6b7329f8
Binary files /dev/null and b/png/column-vase.png differ
diff --git a/png/coma.png b/png/coma.png
new file mode 100644
index 000000000..2dd5a7ca6
Binary files /dev/null and b/png/coma.png differ
diff --git a/png/comb.png b/png/comb.png
new file mode 100644
index 000000000..c1a8ccd0a
Binary files /dev/null and b/png/comb.png differ
diff --git a/png/combination-lock.png b/png/combination-lock.png
new file mode 100644
index 000000000..8b2ac823e
Binary files /dev/null and b/png/combination-lock.png differ
diff --git a/png/comet-spark.png b/png/comet-spark.png
new file mode 100644
index 000000000..11f28a876
Binary files /dev/null and b/png/comet-spark.png differ
diff --git a/png/commercial-airplane.png b/png/commercial-airplane.png
new file mode 100644
index 000000000..45dfdbf2e
Binary files /dev/null and b/png/commercial-airplane.png differ
diff --git a/png/compact-disc.png b/png/compact-disc.png
new file mode 100644
index 000000000..f960ca818
Binary files /dev/null and b/png/compact-disc.png differ
diff --git a/png/companion-cube.png b/png/companion-cube.png
new file mode 100644
index 000000000..d846ffc50
Binary files /dev/null and b/png/companion-cube.png differ
diff --git a/png/compass.png b/png/compass.png
new file mode 100644
index 000000000..f4a3aaef9
Binary files /dev/null and b/png/compass.png differ
diff --git a/png/computer-fan.png b/png/computer-fan.png
new file mode 100644
index 000000000..c68b903e7
Binary files /dev/null and b/png/computer-fan.png differ
diff --git a/png/computing.png b/png/computing.png
new file mode 100644
index 000000000..607607cb6
Binary files /dev/null and b/png/computing.png differ
diff --git a/png/concentration-orb.png b/png/concentration-orb.png
new file mode 100644
index 000000000..f91a0a4e8
Binary files /dev/null and b/png/concentration-orb.png differ
diff --git a/png/concentric-crescents.png b/png/concentric-crescents.png
new file mode 100644
index 000000000..08d4be192
Binary files /dev/null and b/png/concentric-crescents.png differ
diff --git a/png/concrete-bag.png b/png/concrete-bag.png
new file mode 100644
index 000000000..b65ecd592
Binary files /dev/null and b/png/concrete-bag.png differ
diff --git a/png/condor-emblem.png b/png/condor-emblem.png
new file mode 100644
index 000000000..697f48225
Binary files /dev/null and b/png/condor-emblem.png differ
diff --git a/png/condylura-skull.png b/png/condylura-skull.png
new file mode 100644
index 000000000..cde4d63bb
Binary files /dev/null and b/png/condylura-skull.png differ
diff --git a/png/confirmed.png b/png/confirmed.png
new file mode 100644
index 000000000..feeb5253d
Binary files /dev/null and b/png/confirmed.png differ
diff --git a/png/confrontation.png b/png/confrontation.png
new file mode 100644
index 000000000..a5f3039d7
Binary files /dev/null and b/png/confrontation.png differ
diff --git a/png/congress.png b/png/congress.png
new file mode 100644
index 000000000..21aa759a3
Binary files /dev/null and b/png/congress.png differ
diff --git a/png/conqueror.png b/png/conqueror.png
new file mode 100644
index 000000000..e4ff8485d
Binary files /dev/null and b/png/conqueror.png differ
diff --git a/png/console-controller.png b/png/console-controller.png
new file mode 100644
index 000000000..aeb09cdab
Binary files /dev/null and b/png/console-controller.png differ
diff --git a/png/contortionist.png b/png/contortionist.png
new file mode 100644
index 000000000..4ca22ff39
Binary files /dev/null and b/png/contortionist.png differ
diff --git a/png/contract.png b/png/contract.png
new file mode 100644
index 000000000..b3efcfb39
Binary files /dev/null and b/png/contract.png differ
diff --git a/png/control-tower.png b/png/control-tower.png
new file mode 100644
index 000000000..0aac4c159
Binary files /dev/null and b/png/control-tower.png differ
diff --git a/png/convergence-target.png b/png/convergence-target.png
new file mode 100644
index 000000000..cde513c5b
Binary files /dev/null and b/png/convergence-target.png differ
diff --git a/png/conversation.png b/png/conversation.png
new file mode 100644
index 000000000..54e5d1f23
Binary files /dev/null and b/png/conversation.png differ
diff --git a/png/converse-shoe.png b/png/converse-shoe.png
new file mode 100644
index 000000000..149b5768a
Binary files /dev/null and b/png/converse-shoe.png differ
diff --git a/png/convict.png b/png/convict.png
new file mode 100644
index 000000000..cf77dcd8e
Binary files /dev/null and b/png/convict.png differ
diff --git a/png/convince.png b/png/convince.png
new file mode 100644
index 000000000..e13bd2fd1
Binary files /dev/null and b/png/convince.png differ
diff --git a/png/conway-life-glider.png b/png/conway-life-glider.png
new file mode 100644
index 000000000..ffd563438
Binary files /dev/null and b/png/conway-life-glider.png differ
diff --git a/png/cook.png b/png/cook.png
new file mode 100644
index 000000000..ccefd63b9
Binary files /dev/null and b/png/cook.png differ
diff --git a/png/cookie.png b/png/cookie.png
new file mode 100644
index 000000000..b3860fd0c
Binary files /dev/null and b/png/cookie.png differ
diff --git a/png/cooking-glove.png b/png/cooking-glove.png
new file mode 100644
index 000000000..e10db2508
Binary files /dev/null and b/png/cooking-glove.png differ
diff --git a/png/cooking-pot.png b/png/cooking-pot.png
new file mode 100644
index 000000000..b26d64a63
Binary files /dev/null and b/png/cooking-pot.png differ
diff --git a/png/cool-spices.png b/png/cool-spices.png
new file mode 100644
index 000000000..21a2312c6
Binary files /dev/null and b/png/cool-spices.png differ
diff --git a/png/cooler.png b/png/cooler.png
new file mode 100644
index 000000000..2579694de
Binary files /dev/null and b/png/cooler.png differ
diff --git a/png/cootie-catcher.png b/png/cootie-catcher.png
new file mode 100644
index 000000000..89ea0f20f
Binary files /dev/null and b/png/cootie-catcher.png differ
diff --git a/png/coral.png b/png/coral.png
new file mode 100644
index 000000000..d32846d9d
Binary files /dev/null and b/png/coral.png differ
diff --git a/png/cork-hat.png b/png/cork-hat.png
new file mode 100644
index 000000000..5a6a858be
Binary files /dev/null and b/png/cork-hat.png differ
diff --git a/png/corked-tube.png b/png/corked-tube.png
new file mode 100644
index 000000000..6c797d0a5
Binary files /dev/null and b/png/corked-tube.png differ
diff --git a/png/corkscrew.png b/png/corkscrew.png
new file mode 100644
index 000000000..d47c5ac08
Binary files /dev/null and b/png/corkscrew.png differ
diff --git a/png/corn.png b/png/corn.png
new file mode 100644
index 000000000..fe2068368
Binary files /dev/null and b/png/corn.png differ
diff --git a/png/corner-explosion.png b/png/corner-explosion.png
new file mode 100644
index 000000000..cf7a41e2b
Binary files /dev/null and b/png/corner-explosion.png differ
diff --git a/png/corner-flag.png b/png/corner-flag.png
new file mode 100644
index 000000000..56ed8c243
Binary files /dev/null and b/png/corner-flag.png differ
diff --git a/png/cornucopia.png b/png/cornucopia.png
new file mode 100644
index 000000000..233d1a396
Binary files /dev/null and b/png/cornucopia.png differ
diff --git a/png/coronation.png b/png/coronation.png
new file mode 100644
index 000000000..5f21c47a8
Binary files /dev/null and b/png/coronation.png differ
diff --git a/png/corporal.png b/png/corporal.png
new file mode 100644
index 000000000..921d85464
Binary files /dev/null and b/png/corporal.png differ
diff --git a/png/corset.png b/png/corset.png
new file mode 100644
index 000000000..6571bd5c6
Binary files /dev/null and b/png/corset.png differ
diff --git a/png/corsica.png b/png/corsica.png
new file mode 100644
index 000000000..47491e996
Binary files /dev/null and b/png/corsica.png differ
diff --git a/png/cosmic-egg.png b/png/cosmic-egg.png
new file mode 100644
index 000000000..2090333b3
Binary files /dev/null and b/png/cosmic-egg.png differ
diff --git a/png/cotton-flower.png b/png/cotton-flower.png
new file mode 100644
index 000000000..de74a4c74
Binary files /dev/null and b/png/cotton-flower.png differ
diff --git a/png/covered-jar.png b/png/covered-jar.png
new file mode 100644
index 000000000..1bec8f873
Binary files /dev/null and b/png/covered-jar.png differ
diff --git a/png/cow.png b/png/cow.png
new file mode 100644
index 000000000..775e007d9
Binary files /dev/null and b/png/cow.png differ
diff --git a/png/cowboy-boot.png b/png/cowboy-boot.png
new file mode 100644
index 000000000..9fb01e3b8
Binary files /dev/null and b/png/cowboy-boot.png differ
diff --git a/png/cowboy-holster.png b/png/cowboy-holster.png
new file mode 100644
index 000000000..ecb87646b
Binary files /dev/null and b/png/cowboy-holster.png differ
diff --git a/png/cowled.png b/png/cowled.png
new file mode 100644
index 000000000..a039e6bda
Binary files /dev/null and b/png/cowled.png differ
diff --git a/png/cpu-shot.png b/png/cpu-shot.png
new file mode 100644
index 000000000..d2d611a60
Binary files /dev/null and b/png/cpu-shot.png differ
diff --git a/png/cpu.png b/png/cpu.png
new file mode 100644
index 000000000..aff09a58c
Binary files /dev/null and b/png/cpu.png differ
diff --git a/png/crab-claw.png b/png/crab-claw.png
new file mode 100644
index 000000000..c551aa1fc
Binary files /dev/null and b/png/crab-claw.png differ
diff --git a/png/crab.png b/png/crab.png
new file mode 100644
index 000000000..544b72079
Binary files /dev/null and b/png/crab.png differ
diff --git a/png/cracked-alien-skull.png b/png/cracked-alien-skull.png
new file mode 100644
index 000000000..cde773e63
Binary files /dev/null and b/png/cracked-alien-skull.png differ
diff --git a/png/cracked-ball-dunk.png b/png/cracked-ball-dunk.png
new file mode 100644
index 000000000..8e1699fc9
Binary files /dev/null and b/png/cracked-ball-dunk.png differ
diff --git a/png/cracked-disc.png b/png/cracked-disc.png
new file mode 100644
index 000000000..b38c204af
Binary files /dev/null and b/png/cracked-disc.png differ
diff --git a/png/cracked-glass.png b/png/cracked-glass.png
new file mode 100644
index 000000000..875e1d75f
Binary files /dev/null and b/png/cracked-glass.png differ
diff --git a/png/cracked-helm.png b/png/cracked-helm.png
new file mode 100644
index 000000000..9d6c4a60f
Binary files /dev/null and b/png/cracked-helm.png differ
diff --git a/png/cracked-mask.png b/png/cracked-mask.png
new file mode 100644
index 000000000..99bdd3688
Binary files /dev/null and b/png/cracked-mask.png differ
diff --git a/png/cracked-saber.png b/png/cracked-saber.png
new file mode 100644
index 000000000..6cbf4b656
Binary files /dev/null and b/png/cracked-saber.png differ
diff --git a/png/cracked-shield.png b/png/cracked-shield.png
new file mode 100644
index 000000000..e537eb3d3
Binary files /dev/null and b/png/cracked-shield.png differ
diff --git a/png/crafting.png b/png/crafting.png
new file mode 100644
index 000000000..72325e34f
Binary files /dev/null and b/png/crafting.png differ
diff --git a/png/crags.png b/png/crags.png
new file mode 100644
index 000000000..95ec894f0
Binary files /dev/null and b/png/crags.png differ
diff --git a/png/crane.png b/png/crane.png
new file mode 100644
index 000000000..0e21581f1
Binary files /dev/null and b/png/crane.png differ
diff --git a/png/credits-currency.png b/png/credits-currency.png
new file mode 100644
index 000000000..3e56dcf2b
Binary files /dev/null and b/png/credits-currency.png differ
diff --git a/png/crenel-crown.png b/png/crenel-crown.png
new file mode 100644
index 000000000..c419a7fa5
Binary files /dev/null and b/png/crenel-crown.png differ
diff --git a/png/crenulated-shield.png b/png/crenulated-shield.png
new file mode 100644
index 000000000..ba8217dd8
Binary files /dev/null and b/png/crenulated-shield.png differ
diff --git a/png/crescent-blade-2.png b/png/crescent-blade-2.png
new file mode 100644
index 000000000..4833b926d
Binary files /dev/null and b/png/crescent-blade-2.png differ
diff --git a/png/crescent-blade.png b/png/crescent-blade.png
new file mode 100644
index 000000000..60b064d4d
Binary files /dev/null and b/png/crescent-blade.png differ
diff --git a/png/crescent-staff.png b/png/crescent-staff.png
new file mode 100644
index 000000000..e6c7f383a
Binary files /dev/null and b/png/crescent-staff.png differ
diff --git a/png/crested-helmet.png b/png/crested-helmet.png
new file mode 100644
index 000000000..36380312d
Binary files /dev/null and b/png/crested-helmet.png differ
diff --git a/png/cricket-bat.png b/png/cricket-bat.png
new file mode 100644
index 000000000..85105271a
Binary files /dev/null and b/png/cricket-bat.png differ
diff --git a/png/cricket.png b/png/cricket.png
new file mode 100644
index 000000000..78a7803ab
Binary files /dev/null and b/png/cricket.png differ
diff --git a/png/crime-scene-tape.png b/png/crime-scene-tape.png
new file mode 100644
index 000000000..1fd29c55b
Binary files /dev/null and b/png/crime-scene-tape.png differ
diff --git a/png/croc-jaws.png b/png/croc-jaws.png
new file mode 100644
index 000000000..6483476f1
Binary files /dev/null and b/png/croc-jaws.png differ
diff --git a/png/croc-sword.png b/png/croc-sword.png
new file mode 100644
index 000000000..6c8dd6356
Binary files /dev/null and b/png/croc-sword.png differ
diff --git a/png/croissant.png b/png/croissant.png
new file mode 100644
index 000000000..ab6f65c1c
Binary files /dev/null and b/png/croissant.png differ
diff --git a/png/croissants-pupil.png b/png/croissants-pupil.png
new file mode 100644
index 000000000..5519f2b71
Binary files /dev/null and b/png/croissants-pupil.png differ
diff --git a/png/crook-flail.png b/png/crook-flail.png
new file mode 100644
index 000000000..ef02d4d2a
Binary files /dev/null and b/png/crook-flail.png differ
diff --git a/png/cross-flare.png b/png/cross-flare.png
new file mode 100644
index 000000000..dba5ee35f
Binary files /dev/null and b/png/cross-flare.png differ
diff --git a/png/cross-mark.png b/png/cross-mark.png
new file mode 100644
index 000000000..aa20725d1
Binary files /dev/null and b/png/cross-mark.png differ
diff --git a/png/cross-shield.png b/png/cross-shield.png
new file mode 100644
index 000000000..969a0afa1
Binary files /dev/null and b/png/cross-shield.png differ
diff --git a/png/crossbow.png b/png/crossbow.png
new file mode 100644
index 000000000..b7477bb12
Binary files /dev/null and b/png/crossbow.png differ
diff --git a/png/crosscut-saw.png b/png/crosscut-saw.png
new file mode 100644
index 000000000..4d1131550
Binary files /dev/null and b/png/crosscut-saw.png differ
diff --git a/png/crossed-air-flows.png b/png/crossed-air-flows.png
new file mode 100644
index 000000000..4b9d17e28
Binary files /dev/null and b/png/crossed-air-flows.png differ
diff --git a/png/crossed-axes.png b/png/crossed-axes.png
new file mode 100644
index 000000000..90ba70044
Binary files /dev/null and b/png/crossed-axes.png differ
diff --git a/png/crossed-bones.png b/png/crossed-bones.png
new file mode 100644
index 000000000..6f1bbed3b
Binary files /dev/null and b/png/crossed-bones.png differ
diff --git a/png/crossed-chains.png b/png/crossed-chains.png
new file mode 100644
index 000000000..1ac399a99
Binary files /dev/null and b/png/crossed-chains.png differ
diff --git a/png/crossed-claws.png b/png/crossed-claws.png
new file mode 100644
index 000000000..51c363ea7
Binary files /dev/null and b/png/crossed-claws.png differ
diff --git a/png/crossed-pistols.png b/png/crossed-pistols.png
new file mode 100644
index 000000000..a1e003ceb
Binary files /dev/null and b/png/crossed-pistols.png differ
diff --git a/png/crossed-sabres.png b/png/crossed-sabres.png
new file mode 100644
index 000000000..0a6c5b191
Binary files /dev/null and b/png/crossed-sabres.png differ
diff --git a/png/crossed-slashes.png b/png/crossed-slashes.png
new file mode 100644
index 000000000..438898347
Binary files /dev/null and b/png/crossed-slashes.png differ
diff --git a/png/crossed-swords.png b/png/crossed-swords.png
new file mode 100644
index 000000000..87819a72c
Binary files /dev/null and b/png/crossed-swords.png differ
diff --git a/png/crosshair-arrow.png b/png/crosshair-arrow.png
new file mode 100644
index 000000000..f9feaef0d
Binary files /dev/null and b/png/crosshair-arrow.png differ
diff --git a/png/crosshair.png b/png/crosshair.png
new file mode 100644
index 000000000..ea23f1559
Binary files /dev/null and b/png/crosshair.png differ
diff --git a/png/crossroad.png b/png/crossroad.png
new file mode 100644
index 000000000..fd4d569cd
Binary files /dev/null and b/png/crossroad.png differ
diff --git a/png/crow-dive.png b/png/crow-dive.png
new file mode 100644
index 000000000..0682ff0cb
Binary files /dev/null and b/png/crow-dive.png differ
diff --git a/png/crow-nest.png b/png/crow-nest.png
new file mode 100644
index 000000000..8582e75e7
Binary files /dev/null and b/png/crow-nest.png differ
diff --git a/png/crowbar.png b/png/crowbar.png
new file mode 100644
index 000000000..9b8bd20b1
Binary files /dev/null and b/png/crowbar.png differ
diff --git a/png/crown-coin.png b/png/crown-coin.png
new file mode 100644
index 000000000..dd0ce83c2
Binary files /dev/null and b/png/crown-coin.png differ
diff --git a/png/crown-of-thorns.png b/png/crown-of-thorns.png
new file mode 100644
index 000000000..f932485e7
Binary files /dev/null and b/png/crown-of-thorns.png differ
diff --git a/png/crown.png b/png/crown.png
new file mode 100644
index 000000000..ed2b2b0f0
Binary files /dev/null and b/png/crown.png differ
diff --git a/png/crowned-explosion.png b/png/crowned-explosion.png
new file mode 100644
index 000000000..d3feaa227
Binary files /dev/null and b/png/crowned-explosion.png differ
diff --git a/png/crowned-heart.png b/png/crowned-heart.png
new file mode 100644
index 000000000..76abfc587
Binary files /dev/null and b/png/crowned-heart.png differ
diff --git a/png/crowned-skull.png b/png/crowned-skull.png
new file mode 100644
index 000000000..513e1e1e3
Binary files /dev/null and b/png/crowned-skull.png differ
diff --git a/png/crucifix.png b/png/crucifix.png
new file mode 100644
index 000000000..16141f9cc
Binary files /dev/null and b/png/crucifix.png differ
diff --git a/png/cruiser.png b/png/cruiser.png
new file mode 100644
index 000000000..cdeefaffc
Binary files /dev/null and b/png/cruiser.png differ
diff --git a/png/crumbling-ball.png b/png/crumbling-ball.png
new file mode 100644
index 000000000..9d1ab7581
Binary files /dev/null and b/png/crumbling-ball.png differ
diff --git a/png/crush.png b/png/crush.png
new file mode 100644
index 000000000..1f8740ddb
Binary files /dev/null and b/png/crush.png differ
diff --git a/png/cryo-chamber.png b/png/cryo-chamber.png
new file mode 100644
index 000000000..bb86c2a97
Binary files /dev/null and b/png/cryo-chamber.png differ
diff --git a/png/crypt-entrance.png b/png/crypt-entrance.png
new file mode 100644
index 000000000..be1e158a1
Binary files /dev/null and b/png/crypt-entrance.png differ
diff --git a/png/crystal-ball.png b/png/crystal-ball.png
new file mode 100644
index 000000000..9767ee6fb
Binary files /dev/null and b/png/crystal-ball.png differ
diff --git a/png/crystal-bars.png b/png/crystal-bars.png
new file mode 100644
index 000000000..63627cc68
Binary files /dev/null and b/png/crystal-bars.png differ
diff --git a/png/crystal-cluster.png b/png/crystal-cluster.png
new file mode 100644
index 000000000..f98ba6a32
Binary files /dev/null and b/png/crystal-cluster.png differ
diff --git a/png/crystal-earrings.png b/png/crystal-earrings.png
new file mode 100644
index 000000000..007a7e3c1
Binary files /dev/null and b/png/crystal-earrings.png differ
diff --git a/png/crystal-eye.png b/png/crystal-eye.png
new file mode 100644
index 000000000..aa863656e
Binary files /dev/null and b/png/crystal-eye.png differ
diff --git a/png/crystal-growth.png b/png/crystal-growth.png
new file mode 100644
index 000000000..9cc2f34ce
Binary files /dev/null and b/png/crystal-growth.png differ
diff --git a/png/crystal-shine.png b/png/crystal-shine.png
new file mode 100644
index 000000000..a5724fe97
Binary files /dev/null and b/png/crystal-shine.png differ
diff --git a/png/crystal-shrine.png b/png/crystal-shrine.png
new file mode 100644
index 000000000..50c4bc032
Binary files /dev/null and b/png/crystal-shrine.png differ
diff --git a/png/crystal-wand.png b/png/crystal-wand.png
new file mode 100644
index 000000000..d87f84bc5
Binary files /dev/null and b/png/crystal-wand.png differ
diff --git a/png/crystalize.png b/png/crystalize.png
new file mode 100644
index 000000000..b6795dcf2
Binary files /dev/null and b/png/crystalize.png differ
diff --git a/png/cuauhtli.png b/png/cuauhtli.png
new file mode 100644
index 000000000..37588ad6e
Binary files /dev/null and b/png/cuauhtli.png differ
diff --git a/png/cube.png b/png/cube.png
new file mode 100644
index 000000000..61b902ae1
Binary files /dev/null and b/png/cube.png differ
diff --git a/png/cubeforce.png b/png/cubeforce.png
new file mode 100644
index 000000000..a70cd2e0b
Binary files /dev/null and b/png/cubeforce.png differ
diff --git a/png/cubes.png b/png/cubes.png
new file mode 100644
index 000000000..68d6bec71
Binary files /dev/null and b/png/cubes.png differ
diff --git a/png/cuckoo-clock.png b/png/cuckoo-clock.png
new file mode 100644
index 000000000..e76d160ef
Binary files /dev/null and b/png/cuckoo-clock.png differ
diff --git a/png/cultist-2.png b/png/cultist-2.png
new file mode 100644
index 000000000..9d4df4074
Binary files /dev/null and b/png/cultist-2.png differ
diff --git a/png/cultist.png b/png/cultist.png
new file mode 100644
index 000000000..e43e6eea9
Binary files /dev/null and b/png/cultist.png differ
diff --git a/png/cupcake.png b/png/cupcake.png
new file mode 100644
index 000000000..0f7b42881
Binary files /dev/null and b/png/cupcake.png differ
diff --git a/png/cupidon-arrow.png b/png/cupidon-arrow.png
new file mode 100644
index 000000000..8bec3f7b1
Binary files /dev/null and b/png/cupidon-arrow.png differ
diff --git a/png/curled-leaf.png b/png/curled-leaf.png
new file mode 100644
index 000000000..94286c3a2
Binary files /dev/null and b/png/curled-leaf.png differ
diff --git a/png/curled-tentacle.png b/png/curled-tentacle.png
new file mode 100644
index 000000000..59569eec0
Binary files /dev/null and b/png/curled-tentacle.png differ
diff --git a/png/curling-stone.png b/png/curling-stone.png
new file mode 100644
index 000000000..048945123
Binary files /dev/null and b/png/curling-stone.png differ
diff --git a/png/curling-vines.png b/png/curling-vines.png
new file mode 100644
index 000000000..553361207
Binary files /dev/null and b/png/curling-vines.png differ
diff --git a/png/curly-mask.png b/png/curly-mask.png
new file mode 100644
index 000000000..af75ce933
Binary files /dev/null and b/png/curly-mask.png differ
diff --git a/png/curly-wing.png b/png/curly-wing.png
new file mode 100644
index 000000000..0a7b8a595
Binary files /dev/null and b/png/curly-wing.png differ
diff --git a/png/cursed-star.png b/png/cursed-star.png
new file mode 100644
index 000000000..144e5a68e
Binary files /dev/null and b/png/cursed-star.png differ
diff --git a/png/curvy-knife.png b/png/curvy-knife.png
new file mode 100644
index 000000000..e7c405aa8
Binary files /dev/null and b/png/curvy-knife.png differ
diff --git a/png/custodian-helmet.png b/png/custodian-helmet.png
new file mode 100644
index 000000000..1a07e9112
Binary files /dev/null and b/png/custodian-helmet.png differ
diff --git a/png/cut-diamond.png b/png/cut-diamond.png
new file mode 100644
index 000000000..4fad78938
Binary files /dev/null and b/png/cut-diamond.png differ
diff --git a/png/cut-lemon.png b/png/cut-lemon.png
new file mode 100644
index 000000000..fdabbc7c6
Binary files /dev/null and b/png/cut-lemon.png differ
diff --git a/png/cut-palm.png b/png/cut-palm.png
new file mode 100644
index 000000000..4406ca792
Binary files /dev/null and b/png/cut-palm.png differ
diff --git a/png/cyber-eye.png b/png/cyber-eye.png
new file mode 100644
index 000000000..6d04ea30b
Binary files /dev/null and b/png/cyber-eye.png differ
diff --git a/png/cyborg-face.png b/png/cyborg-face.png
new file mode 100644
index 000000000..abcc5493e
Binary files /dev/null and b/png/cyborg-face.png differ
diff --git a/png/cycle.png b/png/cycle.png
new file mode 100644
index 000000000..cc074895f
Binary files /dev/null and b/png/cycle.png differ
diff --git a/png/cycling.png b/png/cycling.png
new file mode 100644
index 000000000..b2b1c8e05
Binary files /dev/null and b/png/cycling.png differ
diff --git a/png/cyclops.png b/png/cyclops.png
new file mode 100644
index 000000000..60169d8fc
Binary files /dev/null and b/png/cyclops.png differ
diff --git a/png/cz-skorpion.png b/png/cz-skorpion.png
new file mode 100644
index 000000000..9ea3d27b0
Binary files /dev/null and b/png/cz-skorpion.png differ
diff --git a/png/d10.png b/png/d10.png
new file mode 100644
index 000000000..87164013b
Binary files /dev/null and b/png/d10.png differ
diff --git a/png/d12.png b/png/d12.png
new file mode 100644
index 000000000..489a8089d
Binary files /dev/null and b/png/d12.png differ
diff --git a/png/d4.png b/png/d4.png
new file mode 100644
index 000000000..6cbb84913
Binary files /dev/null and b/png/d4.png differ
diff --git a/png/daemon-pull.png b/png/daemon-pull.png
new file mode 100644
index 000000000..47e6dd118
Binary files /dev/null and b/png/daemon-pull.png differ
diff --git a/png/daemon-skull.png b/png/daemon-skull.png
new file mode 100644
index 000000000..21d48c74b
Binary files /dev/null and b/png/daemon-skull.png differ
diff --git a/png/dagger-rose.png b/png/dagger-rose.png
new file mode 100644
index 000000000..ea7a820af
Binary files /dev/null and b/png/dagger-rose.png differ
diff --git a/png/daggers.png b/png/daggers.png
new file mode 100644
index 000000000..c5b229427
Binary files /dev/null and b/png/daggers.png differ
diff --git a/png/daisy.png b/png/daisy.png
new file mode 100644
index 000000000..83e442f7c
Binary files /dev/null and b/png/daisy.png differ
diff --git a/png/dam.png b/png/dam.png
new file mode 100644
index 000000000..f8097ad6e
Binary files /dev/null and b/png/dam.png differ
diff --git a/png/damaged-house.png b/png/damaged-house.png
new file mode 100644
index 000000000..84bd71cc4
Binary files /dev/null and b/png/damaged-house.png differ
diff --git a/png/dandelion-flower.png b/png/dandelion-flower.png
new file mode 100644
index 000000000..022b55eb7
Binary files /dev/null and b/png/dandelion-flower.png differ
diff --git a/png/dango.png b/png/dango.png
new file mode 100644
index 000000000..6b59f4241
Binary files /dev/null and b/png/dango.png differ
diff --git a/png/dark-squad.png b/png/dark-squad.png
new file mode 100644
index 000000000..1249c8596
Binary files /dev/null and b/png/dark-squad.png differ
diff --git a/png/dart.png b/png/dart.png
new file mode 100644
index 000000000..0f6253edc
Binary files /dev/null and b/png/dart.png differ
diff --git a/png/database.png b/png/database.png
new file mode 100644
index 000000000..52d0a8d73
Binary files /dev/null and b/png/database.png differ
diff --git a/png/dead-eye.png b/png/dead-eye.png
new file mode 100644
index 000000000..0599b4003
Binary files /dev/null and b/png/dead-eye.png differ
diff --git a/png/dead-head.png b/png/dead-head.png
new file mode 100644
index 000000000..df71d0a31
Binary files /dev/null and b/png/dead-head.png differ
diff --git a/png/dead-wood.png b/png/dead-wood.png
new file mode 100644
index 000000000..f83e57c0e
Binary files /dev/null and b/png/dead-wood.png differ
diff --git a/png/deadly-strike.png b/png/deadly-strike.png
new file mode 100644
index 000000000..e36ef0778
Binary files /dev/null and b/png/deadly-strike.png differ
diff --git a/png/death-juice.png b/png/death-juice.png
new file mode 100644
index 000000000..cf7b10185
Binary files /dev/null and b/png/death-juice.png differ
diff --git a/png/death-note.png b/png/death-note.png
new file mode 100644
index 000000000..c15a12f7a
Binary files /dev/null and b/png/death-note.png differ
diff --git a/png/death-skull.png b/png/death-skull.png
new file mode 100644
index 000000000..6c5e50826
Binary files /dev/null and b/png/death-skull.png differ
diff --git a/png/death-star.png b/png/death-star.png
new file mode 100644
index 000000000..59bd1f352
Binary files /dev/null and b/png/death-star.png differ
diff --git a/png/death-zone.png b/png/death-zone.png
new file mode 100644
index 000000000..cef2ed539
Binary files /dev/null and b/png/death-zone.png differ
diff --git a/png/deathcab.png b/png/deathcab.png
new file mode 100644
index 000000000..d27a001c8
Binary files /dev/null and b/png/deathcab.png differ
diff --git a/png/decapitation.png b/png/decapitation.png
new file mode 100644
index 000000000..92aee1a9e
Binary files /dev/null and b/png/decapitation.png differ
diff --git a/png/deer-head.png b/png/deer-head.png
new file mode 100644
index 000000000..0041d1cfc
Binary files /dev/null and b/png/deer-head.png differ
diff --git a/png/deer-track.png b/png/deer-track.png
new file mode 100644
index 000000000..35c5a25af
Binary files /dev/null and b/png/deer-track.png differ
diff --git a/png/deer.png b/png/deer.png
new file mode 100644
index 000000000..55e09c030
Binary files /dev/null and b/png/deer.png differ
diff --git a/png/defense-satellite.png b/png/defense-satellite.png
new file mode 100644
index 000000000..f49febdb1
Binary files /dev/null and b/png/defense-satellite.png differ
diff --git a/png/defensive-wall.png b/png/defensive-wall.png
new file mode 100644
index 000000000..0ac3b0d6b
Binary files /dev/null and b/png/defensive-wall.png differ
diff --git a/png/defibrilate.png b/png/defibrilate.png
new file mode 100644
index 000000000..d1c10c760
Binary files /dev/null and b/png/defibrilate.png differ
diff --git a/png/deku-tree.png b/png/deku-tree.png
new file mode 100644
index 000000000..330f4c094
Binary files /dev/null and b/png/deku-tree.png differ
diff --git a/png/delicate-perfume.png b/png/delicate-perfume.png
new file mode 100644
index 000000000..1502f6c4a
Binary files /dev/null and b/png/delicate-perfume.png differ
diff --git a/png/delighted.png b/png/delighted.png
new file mode 100644
index 000000000..a5e176c20
Binary files /dev/null and b/png/delighted.png differ
diff --git a/png/delivery-drone.png b/png/delivery-drone.png
new file mode 100644
index 000000000..2d6c5c6ed
Binary files /dev/null and b/png/delivery-drone.png differ
diff --git a/png/demolish.png b/png/demolish.png
new file mode 100644
index 000000000..ff4223ecd
Binary files /dev/null and b/png/demolish.png differ
diff --git a/png/dervish-swords.png b/png/dervish-swords.png
new file mode 100644
index 000000000..d6801e8b3
Binary files /dev/null and b/png/dervish-swords.png differ
diff --git a/png/desert-camp.png b/png/desert-camp.png
new file mode 100644
index 000000000..1cedb42c3
Binary files /dev/null and b/png/desert-camp.png differ
diff --git a/png/desert-eagle.png b/png/desert-eagle.png
new file mode 100644
index 000000000..27c92ef26
Binary files /dev/null and b/png/desert-eagle.png differ
diff --git a/png/desert-skull.png b/png/desert-skull.png
new file mode 100644
index 000000000..6957508e5
Binary files /dev/null and b/png/desert-skull.png differ
diff --git a/png/desert.png b/png/desert.png
new file mode 100644
index 000000000..fc7058776
Binary files /dev/null and b/png/desert.png differ
diff --git a/png/deshret-red-crown.png b/png/deshret-red-crown.png
new file mode 100644
index 000000000..7906d8f97
Binary files /dev/null and b/png/deshret-red-crown.png differ
diff --git a/png/desk-lamp.png b/png/desk-lamp.png
new file mode 100644
index 000000000..0e978e314
Binary files /dev/null and b/png/desk-lamp.png differ
diff --git a/png/desk.png b/png/desk.png
new file mode 100644
index 000000000..f6aa727fc
Binary files /dev/null and b/png/desk.png differ
diff --git a/png/despair.png b/png/despair.png
new file mode 100644
index 000000000..a774308dc
Binary files /dev/null and b/png/despair.png differ
diff --git a/png/detonator.png b/png/detonator.png
new file mode 100644
index 000000000..1613ddfdd
Binary files /dev/null and b/png/detonator.png differ
diff --git a/png/detour.png b/png/detour.png
new file mode 100644
index 000000000..b537bc3ec
Binary files /dev/null and b/png/detour.png differ
diff --git a/png/devil-mask.png b/png/devil-mask.png
new file mode 100644
index 000000000..7dcbcea22
Binary files /dev/null and b/png/devil-mask.png differ
diff --git a/png/dew.png b/png/dew.png
new file mode 100644
index 000000000..6f6d4c56c
Binary files /dev/null and b/png/dew.png differ
diff --git a/png/diablo-skull.png b/png/diablo-skull.png
new file mode 100644
index 000000000..87036d2ed
Binary files /dev/null and b/png/diablo-skull.png differ
diff --git a/png/diagram.png b/png/diagram.png
new file mode 100644
index 000000000..927e8a1ad
Binary files /dev/null and b/png/diagram.png differ
diff --git a/png/dial-padlock.png b/png/dial-padlock.png
new file mode 100644
index 000000000..b5f8859c1
Binary files /dev/null and b/png/dial-padlock.png differ
diff --git a/png/diamond-hard.png b/png/diamond-hard.png
new file mode 100644
index 000000000..9b0390bd4
Binary files /dev/null and b/png/diamond-hard.png differ
diff --git a/png/diamond-hilt.png b/png/diamond-hilt.png
new file mode 100644
index 000000000..66098673e
Binary files /dev/null and b/png/diamond-hilt.png differ
diff --git a/png/diamond-ring.png b/png/diamond-ring.png
new file mode 100644
index 000000000..b84207cbb
Binary files /dev/null and b/png/diamond-ring.png differ
diff --git a/png/diamond-trophy.png b/png/diamond-trophy.png
new file mode 100644
index 000000000..7a07dd256
Binary files /dev/null and b/png/diamond-trophy.png differ
diff --git a/png/diamonds-smile.png b/png/diamonds-smile.png
new file mode 100644
index 000000000..e36fd836e
Binary files /dev/null and b/png/diamonds-smile.png differ
diff --git a/png/diamonds.png b/png/diamonds.png
new file mode 100644
index 000000000..c2185fc2a
Binary files /dev/null and b/png/diamonds.png differ
diff --git a/png/dice-eight-faces-eight.png b/png/dice-eight-faces-eight.png
new file mode 100644
index 000000000..79acef4b5
Binary files /dev/null and b/png/dice-eight-faces-eight.png differ
diff --git a/png/dice-fire.png b/png/dice-fire.png
new file mode 100644
index 000000000..80552b8a5
Binary files /dev/null and b/png/dice-fire.png differ
diff --git a/png/dice-shield.png b/png/dice-shield.png
new file mode 100644
index 000000000..f61b65805
Binary files /dev/null and b/png/dice-shield.png differ
diff --git a/png/dice-six-faces-five.png b/png/dice-six-faces-five.png
new file mode 100644
index 000000000..fb80c4179
Binary files /dev/null and b/png/dice-six-faces-five.png differ
diff --git a/png/dice-six-faces-four.png b/png/dice-six-faces-four.png
new file mode 100644
index 000000000..d2f276e69
Binary files /dev/null and b/png/dice-six-faces-four.png differ
diff --git a/png/dice-six-faces-one.png b/png/dice-six-faces-one.png
new file mode 100644
index 000000000..85d6aff92
Binary files /dev/null and b/png/dice-six-faces-one.png differ
diff --git a/png/dice-six-faces-six.png b/png/dice-six-faces-six.png
new file mode 100644
index 000000000..24205ed67
Binary files /dev/null and b/png/dice-six-faces-six.png differ
diff --git a/png/dice-six-faces-three.png b/png/dice-six-faces-three.png
new file mode 100644
index 000000000..59ba7d58c
Binary files /dev/null and b/png/dice-six-faces-three.png differ
diff --git a/png/dice-six-faces-two.png b/png/dice-six-faces-two.png
new file mode 100644
index 000000000..a674ce14d
Binary files /dev/null and b/png/dice-six-faces-two.png differ
diff --git a/png/dice-target.png b/png/dice-target.png
new file mode 100644
index 000000000..e317b7ea5
Binary files /dev/null and b/png/dice-target.png differ
diff --git a/png/dice-twenty-faces-one.png b/png/dice-twenty-faces-one.png
new file mode 100644
index 000000000..6a887e4fa
Binary files /dev/null and b/png/dice-twenty-faces-one.png differ
diff --git a/png/dice-twenty-faces-twenty.png b/png/dice-twenty-faces-twenty.png
new file mode 100644
index 000000000..91cd0598b
Binary files /dev/null and b/png/dice-twenty-faces-twenty.png differ
diff --git a/png/dig-dug.png b/png/dig-dug.png
new file mode 100644
index 000000000..526a59bbe
Binary files /dev/null and b/png/dig-dug.png differ
diff --git a/png/dig-hole.png b/png/dig-hole.png
new file mode 100644
index 000000000..c64894f10
Binary files /dev/null and b/png/dig-hole.png differ
diff --git a/png/digital-trace.png b/png/digital-trace.png
new file mode 100644
index 000000000..5c2840a6f
Binary files /dev/null and b/png/digital-trace.png differ
diff --git a/png/dimetrodon.png b/png/dimetrodon.png
new file mode 100644
index 000000000..3c2b4ab65
Binary files /dev/null and b/png/dimetrodon.png differ
diff --git a/png/dinosaur-bones.png b/png/dinosaur-bones.png
new file mode 100644
index 000000000..8205c929a
Binary files /dev/null and b/png/dinosaur-bones.png differ
diff --git a/png/dinosaur-egg.png b/png/dinosaur-egg.png
new file mode 100644
index 000000000..eb2f36cff
Binary files /dev/null and b/png/dinosaur-egg.png differ
diff --git a/png/dinosaur-rex.png b/png/dinosaur-rex.png
new file mode 100644
index 000000000..0cbbefb35
Binary files /dev/null and b/png/dinosaur-rex.png differ
diff --git a/png/diplodocus.png b/png/diplodocus.png
new file mode 100644
index 000000000..b5a111c5b
Binary files /dev/null and b/png/diplodocus.png differ
diff --git a/png/diploma.png b/png/diploma.png
new file mode 100644
index 000000000..e3e22db12
Binary files /dev/null and b/png/diploma.png differ
diff --git a/png/direction-sign.png b/png/direction-sign.png
new file mode 100644
index 000000000..3c2ce50ed
Binary files /dev/null and b/png/direction-sign.png differ
diff --git a/png/direction-signs.png b/png/direction-signs.png
new file mode 100644
index 000000000..2e27fdd1e
Binary files /dev/null and b/png/direction-signs.png differ
diff --git a/png/director-chair.png b/png/director-chair.png
new file mode 100644
index 000000000..20f465ca1
Binary files /dev/null and b/png/director-chair.png differ
diff --git a/png/direwolf.png b/png/direwolf.png
new file mode 100644
index 000000000..76dbb5152
Binary files /dev/null and b/png/direwolf.png differ
diff --git a/png/disc-golf-bag.png b/png/disc-golf-bag.png
new file mode 100644
index 000000000..b7728ee20
Binary files /dev/null and b/png/disc-golf-bag.png differ
diff --git a/png/disc-golf-basket.png b/png/disc-golf-basket.png
new file mode 100644
index 000000000..ba57a8103
Binary files /dev/null and b/png/disc-golf-basket.png differ
diff --git a/png/disc.png b/png/disc.png
new file mode 100644
index 000000000..b3675e556
Binary files /dev/null and b/png/disc.png differ
diff --git a/png/discobolus.png b/png/discobolus.png
new file mode 100644
index 000000000..bc1d397f0
Binary files /dev/null and b/png/discobolus.png differ
diff --git a/png/discussion.png b/png/discussion.png
new file mode 100644
index 000000000..e4fe1280a
Binary files /dev/null and b/png/discussion.png differ
diff --git a/png/disintegrate.png b/png/disintegrate.png
new file mode 100644
index 000000000..e070a8dd6
Binary files /dev/null and b/png/disintegrate.png differ
diff --git a/png/distraction-2.png b/png/distraction-2.png
new file mode 100644
index 000000000..474756fe8
Binary files /dev/null and b/png/distraction-2.png differ
diff --git a/png/distraction.png b/png/distraction.png
new file mode 100644
index 000000000..689cc4ddb
Binary files /dev/null and b/png/distraction.png differ
diff --git a/png/distress-signal.png b/png/distress-signal.png
new file mode 100644
index 000000000..9521a3bc2
Binary files /dev/null and b/png/distress-signal.png differ
diff --git a/png/divergence.png b/png/divergence.png
new file mode 100644
index 000000000..d9607e45a
Binary files /dev/null and b/png/divergence.png differ
diff --git a/png/divert.png b/png/divert.png
new file mode 100644
index 000000000..7be9348ff
Binary files /dev/null and b/png/divert.png differ
diff --git a/png/divided-spiral.png b/png/divided-spiral.png
new file mode 100644
index 000000000..0d30fe613
Binary files /dev/null and b/png/divided-spiral.png differ
diff --git a/png/divided-square.png b/png/divided-square.png
new file mode 100644
index 000000000..f5e0f1846
Binary files /dev/null and b/png/divided-square.png differ
diff --git a/png/diving-dagger.png b/png/diving-dagger.png
new file mode 100644
index 000000000..debbd79a1
Binary files /dev/null and b/png/diving-dagger.png differ
diff --git a/png/diving-helmet.png b/png/diving-helmet.png
new file mode 100644
index 000000000..54e8d849a
Binary files /dev/null and b/png/diving-helmet.png differ
diff --git a/png/djed-pillar.png b/png/djed-pillar.png
new file mode 100644
index 000000000..7c0fba490
Binary files /dev/null and b/png/djed-pillar.png differ
diff --git a/png/djembe.png b/png/djembe.png
new file mode 100644
index 000000000..ede4efde9
Binary files /dev/null and b/png/djembe.png differ
diff --git a/png/djinn.png b/png/djinn.png
new file mode 100644
index 000000000..a4c3fb86d
Binary files /dev/null and b/png/djinn.png differ
diff --git a/png/dna1.png b/png/dna1.png
new file mode 100644
index 000000000..49ebc1506
Binary files /dev/null and b/png/dna1.png differ
diff --git a/png/dna2.png b/png/dna2.png
new file mode 100644
index 000000000..e0778c790
Binary files /dev/null and b/png/dna2.png differ
diff --git a/png/doctor-face.png b/png/doctor-face.png
new file mode 100644
index 000000000..3b7488d41
Binary files /dev/null and b/png/doctor-face.png differ
diff --git a/png/dodge.png b/png/dodge.png
new file mode 100644
index 000000000..728fe32f8
Binary files /dev/null and b/png/dodge.png differ
diff --git a/png/dodging.png b/png/dodging.png
new file mode 100644
index 000000000..6aa27e502
Binary files /dev/null and b/png/dodging.png differ
diff --git a/png/dog-bowl.png b/png/dog-bowl.png
new file mode 100644
index 000000000..b274ea6f7
Binary files /dev/null and b/png/dog-bowl.png differ
diff --git a/png/dog-house.png b/png/dog-house.png
new file mode 100644
index 000000000..11eb95589
Binary files /dev/null and b/png/dog-house.png differ
diff --git a/png/dolmen.png b/png/dolmen.png
new file mode 100644
index 000000000..a76bab896
Binary files /dev/null and b/png/dolmen.png differ
diff --git a/png/dolphin.png b/png/dolphin.png
new file mode 100644
index 000000000..08dfcac00
Binary files /dev/null and b/png/dolphin.png differ
diff --git a/png/domino-mask.png b/png/domino-mask.png
new file mode 100644
index 000000000..f7ce75e73
Binary files /dev/null and b/png/domino-mask.png differ
diff --git a/png/domino-tiles.png b/png/domino-tiles.png
new file mode 100644
index 000000000..94bcf3b69
Binary files /dev/null and b/png/domino-tiles.png differ
diff --git a/png/doner-kebab.png b/png/doner-kebab.png
new file mode 100644
index 000000000..8e29a947f
Binary files /dev/null and b/png/doner-kebab.png differ
diff --git a/png/donkey.png b/png/donkey.png
new file mode 100644
index 000000000..384fc43cd
Binary files /dev/null and b/png/donkey.png differ
diff --git a/png/donut.png b/png/donut.png
new file mode 100644
index 000000000..e676c038c
Binary files /dev/null and b/png/donut.png differ
diff --git a/png/door-handle.png b/png/door-handle.png
new file mode 100644
index 000000000..ae8ea6903
Binary files /dev/null and b/png/door-handle.png differ
diff --git a/png/door-ring-handle.png b/png/door-ring-handle.png
new file mode 100644
index 000000000..260be29f6
Binary files /dev/null and b/png/door-ring-handle.png differ
diff --git a/png/door-watcher.png b/png/door-watcher.png
new file mode 100644
index 000000000..8a3a0a245
Binary files /dev/null and b/png/door-watcher.png differ
diff --git a/png/door.png b/png/door.png
new file mode 100644
index 000000000..833fe38b2
Binary files /dev/null and b/png/door.png differ
diff --git a/png/doorway.png b/png/doorway.png
new file mode 100644
index 000000000..c4e26eb8b
Binary files /dev/null and b/png/doorway.png differ
diff --git a/png/dorsal-scales.png b/png/dorsal-scales.png
new file mode 100644
index 000000000..74fadf265
Binary files /dev/null and b/png/dorsal-scales.png differ
diff --git a/png/double-diaphragm.png b/png/double-diaphragm.png
new file mode 100644
index 000000000..65392506a
Binary files /dev/null and b/png/double-diaphragm.png differ
diff --git a/png/double-dragon.png b/png/double-dragon.png
new file mode 100644
index 000000000..7803767bf
Binary files /dev/null and b/png/double-dragon.png differ
diff --git a/png/double-face-mask.png b/png/double-face-mask.png
new file mode 100644
index 000000000..3df22ec71
Binary files /dev/null and b/png/double-face-mask.png differ
diff --git a/png/double-fish.png b/png/double-fish.png
new file mode 100644
index 000000000..5c6556776
Binary files /dev/null and b/png/double-fish.png differ
diff --git a/png/double-necklace.png b/png/double-necklace.png
new file mode 100644
index 000000000..95e45f325
Binary files /dev/null and b/png/double-necklace.png differ
diff --git a/png/double-quaver.png b/png/double-quaver.png
new file mode 100644
index 000000000..b7e94bf75
Binary files /dev/null and b/png/double-quaver.png differ
diff --git a/png/double-ringed-orb.png b/png/double-ringed-orb.png
new file mode 100644
index 000000000..fd9a14674
Binary files /dev/null and b/png/double-ringed-orb.png differ
diff --git a/png/double-shot.png b/png/double-shot.png
new file mode 100644
index 000000000..2393b3b7d
Binary files /dev/null and b/png/double-shot.png differ
diff --git a/png/double-street-lights.png b/png/double-street-lights.png
new file mode 100644
index 000000000..5d70eefd4
Binary files /dev/null and b/png/double-street-lights.png differ
diff --git a/png/doubled.png b/png/doubled.png
new file mode 100644
index 000000000..3d25ed5f6
Binary files /dev/null and b/png/doubled.png differ
diff --git a/png/dough-roller.png b/png/dough-roller.png
new file mode 100644
index 000000000..a927840d2
Binary files /dev/null and b/png/dough-roller.png differ
diff --git a/png/dove.png b/png/dove.png
new file mode 100644
index 000000000..ce06d863d
Binary files /dev/null and b/png/dove.png differ
diff --git a/png/dozen.png b/png/dozen.png
new file mode 100644
index 000000000..c2a878e02
Binary files /dev/null and b/png/dozen.png differ
diff --git a/png/dragon-balls.png b/png/dragon-balls.png
new file mode 100644
index 000000000..1010fa4ea
Binary files /dev/null and b/png/dragon-balls.png differ
diff --git a/png/dragon-breath.png b/png/dragon-breath.png
new file mode 100644
index 000000000..aca0b2859
Binary files /dev/null and b/png/dragon-breath.png differ
diff --git a/png/dragon-head-2.png b/png/dragon-head-2.png
new file mode 100644
index 000000000..98c9242d7
Binary files /dev/null and b/png/dragon-head-2.png differ
diff --git a/png/dragon-head.png b/png/dragon-head.png
new file mode 100644
index 000000000..b29fc882b
Binary files /dev/null and b/png/dragon-head.png differ
diff --git a/png/dragon-orb.png b/png/dragon-orb.png
new file mode 100644
index 000000000..56b941165
Binary files /dev/null and b/png/dragon-orb.png differ
diff --git a/png/dragon-shield.png b/png/dragon-shield.png
new file mode 100644
index 000000000..66513d5c4
Binary files /dev/null and b/png/dragon-shield.png differ
diff --git a/png/dragon-spiral.png b/png/dragon-spiral.png
new file mode 100644
index 000000000..fe35c79ef
Binary files /dev/null and b/png/dragon-spiral.png differ
diff --git a/png/dragonfly.png b/png/dragonfly.png
new file mode 100644
index 000000000..8afd16adf
Binary files /dev/null and b/png/dragonfly.png differ
diff --git a/png/drakkar-dragon.png b/png/drakkar-dragon.png
new file mode 100644
index 000000000..d1426c22d
Binary files /dev/null and b/png/drakkar-dragon.png differ
diff --git a/png/drakkar.png b/png/drakkar.png
new file mode 100644
index 000000000..efb668caa
Binary files /dev/null and b/png/drakkar.png differ
diff --git a/png/drama-masks.png b/png/drama-masks.png
new file mode 100644
index 000000000..0916be562
Binary files /dev/null and b/png/drama-masks.png differ
diff --git a/png/drawbridge.png b/png/drawbridge.png
new file mode 100644
index 000000000..0835a688a
Binary files /dev/null and b/png/drawbridge.png differ
diff --git a/png/dread-skull.png b/png/dread-skull.png
new file mode 100644
index 000000000..95078e33e
Binary files /dev/null and b/png/dread-skull.png differ
diff --git a/png/dread.png b/png/dread.png
new file mode 100644
index 000000000..a0e71be08
Binary files /dev/null and b/png/dread.png differ
diff --git a/png/dreadnought.png b/png/dreadnought.png
new file mode 100644
index 000000000..d69e622fd
Binary files /dev/null and b/png/dreadnought.png differ
diff --git a/png/dream-catcher.png b/png/dream-catcher.png
new file mode 100644
index 000000000..b452e80a6
Binary files /dev/null and b/png/dream-catcher.png differ
diff --git a/png/dress.png b/png/dress.png
new file mode 100644
index 000000000..9d5d2de6a
Binary files /dev/null and b/png/dress.png differ
diff --git a/png/drill-2.png b/png/drill-2.png
new file mode 100644
index 000000000..c8f52c627
Binary files /dev/null and b/png/drill-2.png differ
diff --git a/png/drill.png b/png/drill.png
new file mode 100644
index 000000000..f017f523d
Binary files /dev/null and b/png/drill.png differ
diff --git a/png/drink-me.png b/png/drink-me.png
new file mode 100644
index 000000000..3c9552bff
Binary files /dev/null and b/png/drink-me.png differ
diff --git a/png/drinking.png b/png/drinking.png
new file mode 100644
index 000000000..8f18486e0
Binary files /dev/null and b/png/drinking.png differ
diff --git a/png/dripping-blade.png b/png/dripping-blade.png
new file mode 100644
index 000000000..8e023d6fa
Binary files /dev/null and b/png/dripping-blade.png differ
diff --git a/png/dripping-goo.png b/png/dripping-goo.png
new file mode 100644
index 000000000..497b4d93f
Binary files /dev/null and b/png/dripping-goo.png differ
diff --git a/png/dripping-honey.png b/png/dripping-honey.png
new file mode 100644
index 000000000..c019f1508
Binary files /dev/null and b/png/dripping-honey.png differ
diff --git a/png/dripping-knife.png b/png/dripping-knife.png
new file mode 100644
index 000000000..267b3fc8a
Binary files /dev/null and b/png/dripping-knife.png differ
diff --git a/png/dripping-star.png b/png/dripping-star.png
new file mode 100644
index 000000000..6692a26f1
Binary files /dev/null and b/png/dripping-star.png differ
diff --git a/png/dripping-stone.png b/png/dripping-stone.png
new file mode 100644
index 000000000..41f85f4bb
Binary files /dev/null and b/png/dripping-stone.png differ
diff --git a/png/dripping-sword.png b/png/dripping-sword.png
new file mode 100644
index 000000000..622b2b8a8
Binary files /dev/null and b/png/dripping-sword.png differ
diff --git a/png/dripping-tube.png b/png/dripping-tube.png
new file mode 100644
index 000000000..8d1e73787
Binary files /dev/null and b/png/dripping-tube.png differ
diff --git a/png/drop-earrings.png b/png/drop-earrings.png
new file mode 100644
index 000000000..965363f33
Binary files /dev/null and b/png/drop-earrings.png differ
diff --git a/png/drop-weapon.png b/png/drop-weapon.png
new file mode 100644
index 000000000..689bb1c24
Binary files /dev/null and b/png/drop-weapon.png differ
diff --git a/png/drop.png b/png/drop.png
new file mode 100644
index 000000000..a7a69aa54
Binary files /dev/null and b/png/drop.png differ
diff --git a/png/droplet-splash.png b/png/droplet-splash.png
new file mode 100644
index 000000000..6b45f7e57
Binary files /dev/null and b/png/droplet-splash.png differ
diff --git a/png/droplets.png b/png/droplets.png
new file mode 100644
index 000000000..9770bbaf6
Binary files /dev/null and b/png/droplets.png differ
diff --git a/png/drowning.png b/png/drowning.png
new file mode 100644
index 000000000..ba48dd863
Binary files /dev/null and b/png/drowning.png differ
diff --git a/png/drum-kit.png b/png/drum-kit.png
new file mode 100644
index 000000000..fc49b75ed
Binary files /dev/null and b/png/drum-kit.png differ
diff --git a/png/drum.png b/png/drum.png
new file mode 100644
index 000000000..c14fc18cd
Binary files /dev/null and b/png/drum.png differ
diff --git a/png/duality-mask.png b/png/duality-mask.png
new file mode 100644
index 000000000..34cfc8a77
Binary files /dev/null and b/png/duality-mask.png differ
diff --git a/png/duality.png b/png/duality.png
new file mode 100644
index 000000000..7c56f951b
Binary files /dev/null and b/png/duality.png differ
diff --git a/png/duck-palm.png b/png/duck-palm.png
new file mode 100644
index 000000000..9485e05d2
Binary files /dev/null and b/png/duck-palm.png differ
diff --git a/png/duck.png b/png/duck.png
new file mode 100644
index 000000000..662f03ae6
Binary files /dev/null and b/png/duck.png differ
diff --git a/png/duel.png b/png/duel.png
new file mode 100644
index 000000000..0b36e810b
Binary files /dev/null and b/png/duel.png differ
diff --git a/png/duffel-bag.png b/png/duffel-bag.png
new file mode 100644
index 000000000..373d42266
Binary files /dev/null and b/png/duffel-bag.png differ
diff --git a/png/dumpling-bao.png b/png/dumpling-bao.png
new file mode 100644
index 000000000..947abab85
Binary files /dev/null and b/png/dumpling-bao.png differ
diff --git a/png/dumpling.png b/png/dumpling.png
new file mode 100644
index 000000000..10da73ee2
Binary files /dev/null and b/png/dumpling.png differ
diff --git a/png/dunce-cap.png b/png/dunce-cap.png
new file mode 100644
index 000000000..db8e6217e
Binary files /dev/null and b/png/dunce-cap.png differ
diff --git a/png/dungeon-gate.png b/png/dungeon-gate.png
new file mode 100644
index 000000000..ede9c9456
Binary files /dev/null and b/png/dungeon-gate.png differ
diff --git a/png/dungeon-light.png b/png/dungeon-light.png
new file mode 100644
index 000000000..1399b5d95
Binary files /dev/null and b/png/dungeon-light.png differ
diff --git a/png/duration.png b/png/duration.png
new file mode 100644
index 000000000..f6b5d8fa7
Binary files /dev/null and b/png/duration.png differ
diff --git a/png/dust-cloud.png b/png/dust-cloud.png
new file mode 100644
index 000000000..39312ec41
Binary files /dev/null and b/png/dust-cloud.png differ
diff --git a/png/dutch-bike.png b/png/dutch-bike.png
new file mode 100644
index 000000000..7b0da7b09
Binary files /dev/null and b/png/dutch-bike.png differ
diff --git a/png/dwarf-face.png b/png/dwarf-face.png
new file mode 100644
index 000000000..a44e4d422
Binary files /dev/null and b/png/dwarf-face.png differ
diff --git a/png/dwarf-helmet.png b/png/dwarf-helmet.png
new file mode 100644
index 000000000..fa24c0c3c
Binary files /dev/null and b/png/dwarf-helmet.png differ
diff --git a/png/dwarf-king.png b/png/dwarf-king.png
new file mode 100644
index 000000000..f6e8187bb
Binary files /dev/null and b/png/dwarf-king.png differ
diff --git a/png/dwennimmen.png b/png/dwennimmen.png
new file mode 100644
index 000000000..3f3c6d09e
Binary files /dev/null and b/png/dwennimmen.png differ
diff --git a/png/dynamite.png b/png/dynamite.png
new file mode 100644
index 000000000..ca393b6d3
Binary files /dev/null and b/png/dynamite.png differ
diff --git a/png/eagle-emblem.png b/png/eagle-emblem.png
new file mode 100644
index 000000000..de3a96e56
Binary files /dev/null and b/png/eagle-emblem.png differ
diff --git a/png/eagle-head.png b/png/eagle-head.png
new file mode 100644
index 000000000..27e8faa6b
Binary files /dev/null and b/png/eagle-head.png differ
diff --git a/png/earbuds.png b/png/earbuds.png
new file mode 100644
index 000000000..2b8d506a6
Binary files /dev/null and b/png/earbuds.png differ
diff --git a/png/earrings.png b/png/earrings.png
new file mode 100644
index 000000000..336cf2c33
Binary files /dev/null and b/png/earrings.png differ
diff --git a/png/earth-africa-europe.png b/png/earth-africa-europe.png
new file mode 100644
index 000000000..f43973b37
Binary files /dev/null and b/png/earth-africa-europe.png differ
diff --git a/png/earth-america.png b/png/earth-america.png
new file mode 100644
index 000000000..b0518f057
Binary files /dev/null and b/png/earth-america.png differ
diff --git a/png/earth-asia-oceania.png b/png/earth-asia-oceania.png
new file mode 100644
index 000000000..cfdfcf683
Binary files /dev/null and b/png/earth-asia-oceania.png differ
diff --git a/png/earth-crack.png b/png/earth-crack.png
new file mode 100644
index 000000000..656aa5c79
Binary files /dev/null and b/png/earth-crack.png differ
diff --git a/png/earth-spit.png b/png/earth-spit.png
new file mode 100644
index 000000000..370b28d8e
Binary files /dev/null and b/png/earth-spit.png differ
diff --git a/png/earth-worm.png b/png/earth-worm.png
new file mode 100644
index 000000000..9e27bb3bc
Binary files /dev/null and b/png/earth-worm.png differ
diff --git a/png/earwig.png b/png/earwig.png
new file mode 100644
index 000000000..22a356731
Binary files /dev/null and b/png/earwig.png differ
diff --git a/png/easel.png b/png/easel.png
new file mode 100644
index 000000000..469b5deda
Binary files /dev/null and b/png/easel.png differ
diff --git a/png/easter-egg.png b/png/easter-egg.png
new file mode 100644
index 000000000..2e218fc64
Binary files /dev/null and b/png/easter-egg.png differ
diff --git a/png/eating-pelican.png b/png/eating-pelican.png
new file mode 100644
index 000000000..75b202044
Binary files /dev/null and b/png/eating-pelican.png differ
diff --git a/png/eating.png b/png/eating.png
new file mode 100644
index 000000000..5edfd1bfd
Binary files /dev/null and b/png/eating.png differ
diff --git a/png/echo-ripples.png b/png/echo-ripples.png
new file mode 100644
index 000000000..e91a11446
Binary files /dev/null and b/png/echo-ripples.png differ
diff --git a/png/eclipse-flare.png b/png/eclipse-flare.png
new file mode 100644
index 000000000..cf1713418
Binary files /dev/null and b/png/eclipse-flare.png differ
diff --git a/png/eclipse-saw.png b/png/eclipse-saw.png
new file mode 100644
index 000000000..ceebc20b8
Binary files /dev/null and b/png/eclipse-saw.png differ
diff --git a/png/eclipse.png b/png/eclipse.png
new file mode 100644
index 000000000..ed421f567
Binary files /dev/null and b/png/eclipse.png differ
diff --git a/png/ecology.png b/png/ecology.png
new file mode 100644
index 000000000..b9f24d018
Binary files /dev/null and b/png/ecology.png differ
diff --git a/png/edge-crack.png b/png/edge-crack.png
new file mode 100644
index 000000000..330e1c55b
Binary files /dev/null and b/png/edge-crack.png differ
diff --git a/png/edged-shield.png b/png/edged-shield.png
new file mode 100644
index 000000000..a860b9bfc
Binary files /dev/null and b/png/edged-shield.png differ
diff --git a/png/eel.png b/png/eel.png
new file mode 100644
index 000000000..0cefe9128
Binary files /dev/null and b/png/eel.png differ
diff --git a/png/egg-clutch.png b/png/egg-clutch.png
new file mode 100644
index 000000000..616cafeb5
Binary files /dev/null and b/png/egg-clutch.png differ
diff --git a/png/egg-defense.png b/png/egg-defense.png
new file mode 100644
index 000000000..ac8610f68
Binary files /dev/null and b/png/egg-defense.png differ
diff --git a/png/egg-eye.png b/png/egg-eye.png
new file mode 100644
index 000000000..844296bff
Binary files /dev/null and b/png/egg-eye.png differ
diff --git a/png/egg-pod.png b/png/egg-pod.png
new file mode 100644
index 000000000..e12036308
Binary files /dev/null and b/png/egg-pod.png differ
diff --git a/png/egypt.png b/png/egypt.png
new file mode 100644
index 000000000..6f4e65306
Binary files /dev/null and b/png/egypt.png differ
diff --git a/png/egyptian-bird.png b/png/egyptian-bird.png
new file mode 100644
index 000000000..edf82d12c
Binary files /dev/null and b/png/egyptian-bird.png differ
diff --git a/png/egyptian-profile.png b/png/egyptian-profile.png
new file mode 100644
index 000000000..8db10b897
Binary files /dev/null and b/png/egyptian-profile.png differ
diff --git a/png/egyptian-pyramids.png b/png/egyptian-pyramids.png
new file mode 100644
index 000000000..940a0bc14
Binary files /dev/null and b/png/egyptian-pyramids.png differ
diff --git a/png/egyptian-sphinx.png b/png/egyptian-sphinx.png
new file mode 100644
index 000000000..28812d255
Binary files /dev/null and b/png/egyptian-sphinx.png differ
diff --git a/png/egyptian-temple.png b/png/egyptian-temple.png
new file mode 100644
index 000000000..87d0d1f68
Binary files /dev/null and b/png/egyptian-temple.png differ
diff --git a/png/egyptian-urns.png b/png/egyptian-urns.png
new file mode 100644
index 000000000..112947b1c
Binary files /dev/null and b/png/egyptian-urns.png differ
diff --git a/png/egyptian-walk.png b/png/egyptian-walk.png
new file mode 100644
index 000000000..b1a891e74
Binary files /dev/null and b/png/egyptian-walk.png differ
diff --git a/png/eight-ball.png b/png/eight-ball.png
new file mode 100644
index 000000000..36c173d47
Binary files /dev/null and b/png/eight-ball.png differ
diff --git a/png/elbow-pad.png b/png/elbow-pad.png
new file mode 100644
index 000000000..d85e91106
Binary files /dev/null and b/png/elbow-pad.png differ
diff --git a/png/elderberry.png b/png/elderberry.png
new file mode 100644
index 000000000..9da47d1c6
Binary files /dev/null and b/png/elderberry.png differ
diff --git a/png/electric-whip.png b/png/electric-whip.png
new file mode 100644
index 000000000..fe08ff617
Binary files /dev/null and b/png/electric-whip.png differ
diff --git a/png/electric.png b/png/electric.png
new file mode 100644
index 000000000..d0a27fb46
Binary files /dev/null and b/png/electric.png differ
diff --git a/png/electrical-crescent.png b/png/electrical-crescent.png
new file mode 100644
index 000000000..5445b5c58
Binary files /dev/null and b/png/electrical-crescent.png differ
diff --git a/png/electrical-resistance.png b/png/electrical-resistance.png
new file mode 100644
index 000000000..f168e8b21
Binary files /dev/null and b/png/electrical-resistance.png differ
diff --git a/png/electrical-socket.png b/png/electrical-socket.png
new file mode 100644
index 000000000..7cab4f522
Binary files /dev/null and b/png/electrical-socket.png differ
diff --git a/png/elephant-head.png b/png/elephant-head.png
new file mode 100644
index 000000000..b35dc6fa1
Binary files /dev/null and b/png/elephant-head.png differ
diff --git a/png/elephant.png b/png/elephant.png
new file mode 100644
index 000000000..6c1d25d4c
Binary files /dev/null and b/png/elephant.png differ
diff --git a/png/elevator.png b/png/elevator.png
new file mode 100644
index 000000000..4fde24702
Binary files /dev/null and b/png/elevator.png differ
diff --git a/png/elf-ear.png b/png/elf-ear.png
new file mode 100644
index 000000000..888ff6c40
Binary files /dev/null and b/png/elf-ear.png differ
diff --git a/png/elf-helmet.png b/png/elf-helmet.png
new file mode 100644
index 000000000..ea370bff2
Binary files /dev/null and b/png/elf-helmet.png differ
diff --git a/png/elven-castle.png b/png/elven-castle.png
new file mode 100644
index 000000000..15aef1530
Binary files /dev/null and b/png/elven-castle.png differ
diff --git a/png/elysium-shade.png b/png/elysium-shade.png
new file mode 100644
index 000000000..df3bf2895
Binary files /dev/null and b/png/elysium-shade.png differ
diff --git a/png/ember-shot.png b/png/ember-shot.png
new file mode 100644
index 000000000..d91b126a2
Binary files /dev/null and b/png/ember-shot.png differ
diff --git a/png/embrassed-energy.png b/png/embrassed-energy.png
new file mode 100644
index 000000000..086f44a40
Binary files /dev/null and b/png/embrassed-energy.png differ
diff --git a/png/embryo.png b/png/embryo.png
new file mode 100644
index 000000000..e57a91bd1
Binary files /dev/null and b/png/embryo.png differ
diff --git a/png/emerald-necklace.png b/png/emerald-necklace.png
new file mode 100644
index 000000000..17f063105
Binary files /dev/null and b/png/emerald-necklace.png differ
diff --git a/png/emerald.png b/png/emerald.png
new file mode 100644
index 000000000..ced026439
Binary files /dev/null and b/png/emerald.png differ
diff --git a/png/empty-chessboard.png b/png/empty-chessboard.png
new file mode 100644
index 000000000..34860a7f9
Binary files /dev/null and b/png/empty-chessboard.png differ
diff --git a/png/empty-hourglass.png b/png/empty-hourglass.png
new file mode 100644
index 000000000..affc5a21e
Binary files /dev/null and b/png/empty-hourglass.png differ
diff --git a/png/empty-metal-bucket-handle.png b/png/empty-metal-bucket-handle.png
new file mode 100644
index 000000000..e52e6af00
Binary files /dev/null and b/png/empty-metal-bucket-handle.png differ
diff --git a/png/empty-metal-bucket.png b/png/empty-metal-bucket.png
new file mode 100644
index 000000000..ca441132e
Binary files /dev/null and b/png/empty-metal-bucket.png differ
diff --git a/png/empty-wood-bucket-handle.png b/png/empty-wood-bucket-handle.png
new file mode 100644
index 000000000..11e3482c3
Binary files /dev/null and b/png/empty-wood-bucket-handle.png differ
diff --git a/png/empty-wood-bucket.png b/png/empty-wood-bucket.png
new file mode 100644
index 000000000..61edcf68e
Binary files /dev/null and b/png/empty-wood-bucket.png differ
diff --git a/png/encirclement.png b/png/encirclement.png
new file mode 100644
index 000000000..953388cc5
Binary files /dev/null and b/png/encirclement.png differ
diff --git a/png/energise.png b/png/energise.png
new file mode 100644
index 000000000..e92c2b124
Binary files /dev/null and b/png/energise.png differ
diff --git a/png/energy-arrow.png b/png/energy-arrow.png
new file mode 100644
index 000000000..bbff02830
Binary files /dev/null and b/png/energy-arrow.png differ
diff --git a/png/energy-breath.png b/png/energy-breath.png
new file mode 100644
index 000000000..1beda567f
Binary files /dev/null and b/png/energy-breath.png differ
diff --git a/png/energy-shield.png b/png/energy-shield.png
new file mode 100644
index 000000000..ef56d4b00
Binary files /dev/null and b/png/energy-shield.png differ
diff --git a/png/energy-sword.png b/png/energy-sword.png
new file mode 100644
index 000000000..62d5c44de
Binary files /dev/null and b/png/energy-sword.png differ
diff --git a/png/energy-tank.png b/png/energy-tank.png
new file mode 100644
index 000000000..d290d1473
Binary files /dev/null and b/png/energy-tank.png differ
diff --git a/png/engagement-ring.png b/png/engagement-ring.png
new file mode 100644
index 000000000..b81924108
Binary files /dev/null and b/png/engagement-ring.png differ
diff --git a/png/enlightenment.png b/png/enlightenment.png
new file mode 100644
index 000000000..d71082312
Binary files /dev/null and b/png/enlightenment.png differ
diff --git a/png/enrage.png b/png/enrage.png
new file mode 100644
index 000000000..b1b9c7752
Binary files /dev/null and b/png/enrage.png differ
diff --git a/png/ent-mouth.png b/png/ent-mouth.png
new file mode 100644
index 000000000..a39b55e43
Binary files /dev/null and b/png/ent-mouth.png differ
diff --git a/png/entangled-typhoon.png b/png/entangled-typhoon.png
new file mode 100644
index 000000000..a7ebcd366
Binary files /dev/null and b/png/entangled-typhoon.png differ
diff --git a/png/entry-door.png b/png/entry-door.png
new file mode 100644
index 000000000..390626b42
Binary files /dev/null and b/png/entry-door.png differ
diff --git a/png/envelope.png b/png/envelope.png
new file mode 100644
index 000000000..80b351628
Binary files /dev/null and b/png/envelope.png differ
diff --git a/png/erlenmeyer.png b/png/erlenmeyer.png
new file mode 100644
index 000000000..9014b6031
Binary files /dev/null and b/png/erlenmeyer.png differ
diff --git a/png/ermine.png b/png/ermine.png
new file mode 100644
index 000000000..37d5ffa6e
Binary files /dev/null and b/png/ermine.png differ
diff --git a/png/eruption.png b/png/eruption.png
new file mode 100644
index 000000000..d040895fb
Binary files /dev/null and b/png/eruption.png differ
diff --git a/png/escalator.png b/png/escalator.png
new file mode 100644
index 000000000..aea08384a
Binary files /dev/null and b/png/escalator.png differ
diff --git a/png/eskimo.png b/png/eskimo.png
new file mode 100644
index 000000000..ab26f8810
Binary files /dev/null and b/png/eskimo.png differ
diff --git a/png/eternal-love.png b/png/eternal-love.png
new file mode 100644
index 000000000..773128ed6
Binary files /dev/null and b/png/eternal-love.png differ
diff --git a/png/european-flag.png b/png/european-flag.png
new file mode 100644
index 000000000..a206ef923
Binary files /dev/null and b/png/european-flag.png differ
diff --git a/png/evasion.png b/png/evasion.png
new file mode 100644
index 000000000..230c230a5
Binary files /dev/null and b/png/evasion.png differ
diff --git a/png/evil-bat.png b/png/evil-bat.png
new file mode 100644
index 000000000..eac1670a7
Binary files /dev/null and b/png/evil-bat.png differ
diff --git a/png/evil-book.png b/png/evil-book.png
new file mode 100644
index 000000000..c70a18528
Binary files /dev/null and b/png/evil-book.png differ
diff --git a/png/evil-bud.png b/png/evil-bud.png
new file mode 100644
index 000000000..b04ccde16
Binary files /dev/null and b/png/evil-bud.png differ
diff --git a/png/evil-comet.png b/png/evil-comet.png
new file mode 100644
index 000000000..913c47ea2
Binary files /dev/null and b/png/evil-comet.png differ
diff --git a/png/evil-eyes.png b/png/evil-eyes.png
new file mode 100644
index 000000000..0cec600a2
Binary files /dev/null and b/png/evil-eyes.png differ
diff --git a/png/evil-fork.png b/png/evil-fork.png
new file mode 100644
index 000000000..42b3a4b97
Binary files /dev/null and b/png/evil-fork.png differ
diff --git a/png/evil-hand.png b/png/evil-hand.png
new file mode 100644
index 000000000..756f93f10
Binary files /dev/null and b/png/evil-hand.png differ
diff --git a/png/evil-love.png b/png/evil-love.png
new file mode 100644
index 000000000..dbc94d19f
Binary files /dev/null and b/png/evil-love.png differ
diff --git a/png/evil-minion.png b/png/evil-minion.png
new file mode 100644
index 000000000..73e1aa494
Binary files /dev/null and b/png/evil-minion.png differ
diff --git a/png/evil-moon.png b/png/evil-moon.png
new file mode 100644
index 000000000..a8a873400
Binary files /dev/null and b/png/evil-moon.png differ
diff --git a/png/evil-tower.png b/png/evil-tower.png
new file mode 100644
index 000000000..5553a99e2
Binary files /dev/null and b/png/evil-tower.png differ
diff --git a/png/evil-tree.png b/png/evil-tree.png
new file mode 100644
index 000000000..d848773d2
Binary files /dev/null and b/png/evil-tree.png differ
diff --git a/png/evil-wings.png b/png/evil-wings.png
new file mode 100644
index 000000000..f82dbb00e
Binary files /dev/null and b/png/evil-wings.png differ
diff --git a/png/executioner-hood.png b/png/executioner-hood.png
new file mode 100644
index 000000000..a0394a013
Binary files /dev/null and b/png/executioner-hood.png differ
diff --git a/png/exit-door.png b/png/exit-door.png
new file mode 100644
index 000000000..5a293c70c
Binary files /dev/null and b/png/exit-door.png differ
diff --git a/png/expand.png b/png/expand.png
new file mode 100644
index 000000000..146521ee9
Binary files /dev/null and b/png/expand.png differ
diff --git a/png/expanded-rays.png b/png/expanded-rays.png
new file mode 100644
index 000000000..d55824379
Binary files /dev/null and b/png/expanded-rays.png differ
diff --git a/png/expander.png b/png/expander.png
new file mode 100644
index 000000000..2ec045ae8
Binary files /dev/null and b/png/expander.png differ
diff --git a/png/expense.png b/png/expense.png
new file mode 100644
index 000000000..3ee7a86aa
Binary files /dev/null and b/png/expense.png differ
diff --git a/png/exploding-planet.png b/png/exploding-planet.png
new file mode 100644
index 000000000..f5bcab20f
Binary files /dev/null and b/png/exploding-planet.png differ
diff --git a/png/explosion-rays.png b/png/explosion-rays.png
new file mode 100644
index 000000000..5e0053a19
Binary files /dev/null and b/png/explosion-rays.png differ
diff --git a/png/explosive-materials.png b/png/explosive-materials.png
new file mode 100644
index 000000000..44b124254
Binary files /dev/null and b/png/explosive-materials.png differ
diff --git a/png/explosive-meeting.png b/png/explosive-meeting.png
new file mode 100644
index 000000000..67262150e
Binary files /dev/null and b/png/explosive-meeting.png differ
diff --git a/png/extra-lucid.png b/png/extra-lucid.png
new file mode 100644
index 000000000..eee97a952
Binary files /dev/null and b/png/extra-lucid.png differ
diff --git a/png/extra-time.png b/png/extra-time.png
new file mode 100644
index 000000000..4667c8e13
Binary files /dev/null and b/png/extra-time.png differ
diff --git a/png/extraction-orb.png b/png/extraction-orb.png
new file mode 100644
index 000000000..ead666204
Binary files /dev/null and b/png/extraction-orb.png differ
diff --git a/png/eye-of-horus.png b/png/eye-of-horus.png
new file mode 100644
index 000000000..ff63c20aa
Binary files /dev/null and b/png/eye-of-horus.png differ
diff --git a/png/eye-shield.png b/png/eye-shield.png
new file mode 100644
index 000000000..498bf236b
Binary files /dev/null and b/png/eye-shield.png differ
diff --git a/png/eye-target.png b/png/eye-target.png
new file mode 100644
index 000000000..3866ea65b
Binary files /dev/null and b/png/eye-target.png differ
diff --git a/png/eyeball.png b/png/eyeball.png
new file mode 100644
index 000000000..342a2ae54
Binary files /dev/null and b/png/eyeball.png differ
diff --git a/png/eyedropper.png b/png/eyedropper.png
new file mode 100644
index 000000000..ae1ccc9db
Binary files /dev/null and b/png/eyedropper.png differ
diff --git a/png/eyelashes.png b/png/eyelashes.png
new file mode 100644
index 000000000..1097ef620
Binary files /dev/null and b/png/eyelashes.png differ
diff --git a/png/eyepatch.png b/png/eyepatch.png
new file mode 100644
index 000000000..4555b74bd
Binary files /dev/null and b/png/eyepatch.png differ
diff --git a/png/eyestalk.png b/png/eyestalk.png
new file mode 100644
index 000000000..476c57414
Binary files /dev/null and b/png/eyestalk.png differ
diff --git a/png/f-clef.png b/png/f-clef.png
new file mode 100644
index 000000000..65fa6fb33
Binary files /dev/null and b/png/f-clef.png differ
diff --git a/png/f1-car.png b/png/f1-car.png
new file mode 100644
index 000000000..d76eb021f
Binary files /dev/null and b/png/f1-car.png differ
diff --git a/png/face-to-face.png b/png/face-to-face.png
new file mode 100644
index 000000000..4f2a177a1
Binary files /dev/null and b/png/face-to-face.png differ
diff --git a/png/factory-arm.png b/png/factory-arm.png
new file mode 100644
index 000000000..25f4c0554
Binary files /dev/null and b/png/factory-arm.png differ
diff --git a/png/factory.png b/png/factory.png
new file mode 100644
index 000000000..fc1bf8020
Binary files /dev/null and b/png/factory.png differ
diff --git a/png/fairy-2.png b/png/fairy-2.png
new file mode 100644
index 000000000..9682de7b7
Binary files /dev/null and b/png/fairy-2.png differ
diff --git a/png/fairy-wand.png b/png/fairy-wand.png
new file mode 100644
index 000000000..839a13992
Binary files /dev/null and b/png/fairy-wand.png differ
diff --git a/png/fairy-wings.png b/png/fairy-wings.png
new file mode 100644
index 000000000..7a7a7d98b
Binary files /dev/null and b/png/fairy-wings.png differ
diff --git a/png/fairy.png b/png/fairy.png
new file mode 100644
index 000000000..0af0cf121
Binary files /dev/null and b/png/fairy.png differ
diff --git a/png/falcon-moon.png b/png/falcon-moon.png
new file mode 100644
index 000000000..c7a8eb18a
Binary files /dev/null and b/png/falcon-moon.png differ
diff --git a/png/fall-down.png b/png/fall-down.png
new file mode 100644
index 000000000..9b9ae922f
Binary files /dev/null and b/png/fall-down.png differ
diff --git a/png/falling-blob.png b/png/falling-blob.png
new file mode 100644
index 000000000..84bfeec54
Binary files /dev/null and b/png/falling-blob.png differ
diff --git a/png/falling-bomb.png b/png/falling-bomb.png
new file mode 100644
index 000000000..f595ea035
Binary files /dev/null and b/png/falling-bomb.png differ
diff --git a/png/falling-boulder.png b/png/falling-boulder.png
new file mode 100644
index 000000000..67b7eed74
Binary files /dev/null and b/png/falling-boulder.png differ
diff --git a/png/falling-eye.png b/png/falling-eye.png
new file mode 100644
index 000000000..59d4390c1
Binary files /dev/null and b/png/falling-eye.png differ
diff --git a/png/falling-leaf.png b/png/falling-leaf.png
new file mode 100644
index 000000000..0920fc568
Binary files /dev/null and b/png/falling-leaf.png differ
diff --git a/png/falling-ovoid.png b/png/falling-ovoid.png
new file mode 100644
index 000000000..7cac2313b
Binary files /dev/null and b/png/falling-ovoid.png differ
diff --git a/png/falling-rocks.png b/png/falling-rocks.png
new file mode 100644
index 000000000..b982b8f67
Binary files /dev/null and b/png/falling-rocks.png differ
diff --git a/png/falling-star.png b/png/falling-star.png
new file mode 100644
index 000000000..bcb94b105
Binary files /dev/null and b/png/falling-star.png differ
diff --git a/png/falling.png b/png/falling.png
new file mode 100644
index 000000000..9b33f6b1e
Binary files /dev/null and b/png/falling.png differ
diff --git a/png/fallout-shelter.png b/png/fallout-shelter.png
new file mode 100644
index 000000000..dea528c20
Binary files /dev/null and b/png/fallout-shelter.png differ
diff --git a/png/famas.png b/png/famas.png
new file mode 100644
index 000000000..b6910f371
Binary files /dev/null and b/png/famas.png differ
diff --git a/png/family-house.png b/png/family-house.png
new file mode 100644
index 000000000..82d6a07f9
Binary files /dev/null and b/png/family-house.png differ
diff --git a/png/family-tree.png b/png/family-tree.png
new file mode 100644
index 000000000..7860edeb6
Binary files /dev/null and b/png/family-tree.png differ
diff --git a/png/fanged-skull.png b/png/fanged-skull.png
new file mode 100644
index 000000000..0b8ed6c50
Binary files /dev/null and b/png/fanged-skull.png differ
diff --git a/png/fangs-circle.png b/png/fangs-circle.png
new file mode 100644
index 000000000..89cdbb803
Binary files /dev/null and b/png/fangs-circle.png differ
diff --git a/png/fangs.png b/png/fangs.png
new file mode 100644
index 000000000..23e6e8341
Binary files /dev/null and b/png/fangs.png differ
diff --git a/png/farm-tractor.png b/png/farm-tractor.png
new file mode 100644
index 000000000..1e905005a
Binary files /dev/null and b/png/farm-tractor.png differ
diff --git a/png/farmer.png b/png/farmer.png
new file mode 100644
index 000000000..1e792e6fa
Binary files /dev/null and b/png/farmer.png differ
diff --git a/png/fast-arrow.png b/png/fast-arrow.png
new file mode 100644
index 000000000..1ef05410a
Binary files /dev/null and b/png/fast-arrow.png differ
diff --git a/png/fast-backward-button.png b/png/fast-backward-button.png
new file mode 100644
index 000000000..847a6cd45
Binary files /dev/null and b/png/fast-backward-button.png differ
diff --git a/png/fast-forward-button.png b/png/fast-forward-button.png
new file mode 100644
index 000000000..9e4f19803
Binary files /dev/null and b/png/fast-forward-button.png differ
diff --git a/png/fast-noodles.png b/png/fast-noodles.png
new file mode 100644
index 000000000..ba6d00167
Binary files /dev/null and b/png/fast-noodles.png differ
diff --git a/png/fat.png b/png/fat.png
new file mode 100644
index 000000000..8a3c0126e
Binary files /dev/null and b/png/fat.png differ
diff --git a/png/feather-necklace.png b/png/feather-necklace.png
new file mode 100644
index 000000000..e233db8d0
Binary files /dev/null and b/png/feather-necklace.png differ
diff --git a/png/feather-wound.png b/png/feather-wound.png
new file mode 100644
index 000000000..3d5d701aa
Binary files /dev/null and b/png/feather-wound.png differ
diff --git a/png/feather.png b/png/feather.png
new file mode 100644
index 000000000..606c54215
Binary files /dev/null and b/png/feather.png differ
diff --git a/png/feathered-wing.png b/png/feathered-wing.png
new file mode 100644
index 000000000..708d1cc28
Binary files /dev/null and b/png/feathered-wing.png differ
diff --git a/png/fedora.png b/png/fedora.png
new file mode 100644
index 000000000..e76f20b66
Binary files /dev/null and b/png/fedora.png differ
diff --git a/png/feline.png b/png/feline.png
new file mode 100644
index 000000000..33bb495d3
Binary files /dev/null and b/png/feline.png differ
diff --git a/png/female-legs.png b/png/female-legs.png
new file mode 100644
index 000000000..2d6007f44
Binary files /dev/null and b/png/female-legs.png differ
diff --git a/png/female-vampire.png b/png/female-vampire.png
new file mode 100644
index 000000000..34ca5be3e
Binary files /dev/null and b/png/female-vampire.png differ
diff --git a/png/female.png b/png/female.png
new file mode 100644
index 000000000..f345a7f90
Binary files /dev/null and b/png/female.png differ
diff --git a/png/fencer.png b/png/fencer.png
new file mode 100644
index 000000000..8cd0ae14a
Binary files /dev/null and b/png/fencer.png differ
diff --git a/png/fern.png b/png/fern.png
new file mode 100644
index 000000000..538f681bd
Binary files /dev/null and b/png/fern.png differ
diff --git a/png/fertilizer-bag.png b/png/fertilizer-bag.png
new file mode 100644
index 000000000..51bf114db
Binary files /dev/null and b/png/fertilizer-bag.png differ
diff --git a/png/fetus.png b/png/fetus.png
new file mode 100644
index 000000000..2a4ba74d8
Binary files /dev/null and b/png/fetus.png differ
diff --git a/png/fez.png b/png/fez.png
new file mode 100644
index 000000000..3dd7a2875
Binary files /dev/null and b/png/fez.png differ
diff --git a/png/field-gun.png b/png/field-gun.png
new file mode 100644
index 000000000..7002c4790
Binary files /dev/null and b/png/field-gun.png differ
diff --git a/png/field.png b/png/field.png
new file mode 100644
index 000000000..712caa002
Binary files /dev/null and b/png/field.png differ
diff --git a/png/figurehead.png b/png/figurehead.png
new file mode 100644
index 000000000..68838c8af
Binary files /dev/null and b/png/figurehead.png differ
diff --git a/png/files.png b/png/files.png
new file mode 100644
index 000000000..b8e64a66e
Binary files /dev/null and b/png/files.png differ
diff --git a/png/film-projector.png b/png/film-projector.png
new file mode 100644
index 000000000..0b729cb71
Binary files /dev/null and b/png/film-projector.png differ
diff --git a/png/film-spool.png b/png/film-spool.png
new file mode 100644
index 000000000..1b90c91d1
Binary files /dev/null and b/png/film-spool.png differ
diff --git a/png/film-strip.png b/png/film-strip.png
new file mode 100644
index 000000000..d1f53fa42
Binary files /dev/null and b/png/film-strip.png differ
diff --git a/png/finch.png b/png/finch.png
new file mode 100644
index 000000000..3d950c0c8
Binary files /dev/null and b/png/finch.png differ
diff --git a/png/finger-print.png b/png/finger-print.png
new file mode 100644
index 000000000..c46e68740
Binary files /dev/null and b/png/finger-print.png differ
diff --git a/png/fingernail.png b/png/fingernail.png
new file mode 100644
index 000000000..0a0f32d1f
Binary files /dev/null and b/png/fingernail.png differ
diff --git a/png/fingers-crossed.png b/png/fingers-crossed.png
new file mode 100644
index 000000000..990cddfbf
Binary files /dev/null and b/png/fingers-crossed.png differ
diff --git a/png/finish-line.png b/png/finish-line.png
new file mode 100644
index 000000000..4b659f782
Binary files /dev/null and b/png/finish-line.png differ
diff --git a/png/fire-ace.png b/png/fire-ace.png
new file mode 100644
index 000000000..c34368861
Binary files /dev/null and b/png/fire-ace.png differ
diff --git a/png/fire-axe.png b/png/fire-axe.png
new file mode 100644
index 000000000..1ba3a1388
Binary files /dev/null and b/png/fire-axe.png differ
diff --git a/png/fire-bomb.png b/png/fire-bomb.png
new file mode 100644
index 000000000..5093afe28
Binary files /dev/null and b/png/fire-bomb.png differ
diff --git a/png/fire-bottle.png b/png/fire-bottle.png
new file mode 100644
index 000000000..c570e5440
Binary files /dev/null and b/png/fire-bottle.png differ
diff --git a/png/fire-bowl.png b/png/fire-bowl.png
new file mode 100644
index 000000000..721735510
Binary files /dev/null and b/png/fire-bowl.png differ
diff --git a/png/fire-breath.png b/png/fire-breath.png
new file mode 100644
index 000000000..98ea17969
Binary files /dev/null and b/png/fire-breath.png differ
diff --git a/png/fire-dash.png b/png/fire-dash.png
new file mode 100644
index 000000000..b1bf7a258
Binary files /dev/null and b/png/fire-dash.png differ
diff --git a/png/fire-extinguisher.png b/png/fire-extinguisher.png
new file mode 100644
index 000000000..b9e90f553
Binary files /dev/null and b/png/fire-extinguisher.png differ
diff --git a/png/fire-flower.png b/png/fire-flower.png
new file mode 100644
index 000000000..6590d7d5f
Binary files /dev/null and b/png/fire-flower.png differ
diff --git a/png/fire-gem.png b/png/fire-gem.png
new file mode 100644
index 000000000..758a2065a
Binary files /dev/null and b/png/fire-gem.png differ
diff --git a/png/fire-iris.png b/png/fire-iris.png
new file mode 100644
index 000000000..4d35ebbd4
Binary files /dev/null and b/png/fire-iris.png differ
diff --git a/png/fire-punch.png b/png/fire-punch.png
new file mode 100644
index 000000000..16fa160d8
Binary files /dev/null and b/png/fire-punch.png differ
diff --git a/png/fire-ray.png b/png/fire-ray.png
new file mode 100644
index 000000000..c37c248f6
Binary files /dev/null and b/png/fire-ray.png differ
diff --git a/png/fire-ring.png b/png/fire-ring.png
new file mode 100644
index 000000000..82e9dc104
Binary files /dev/null and b/png/fire-ring.png differ
diff --git a/png/fire-shield.png b/png/fire-shield.png
new file mode 100644
index 000000000..1383f1143
Binary files /dev/null and b/png/fire-shield.png differ
diff --git a/png/fire-shrine.png b/png/fire-shrine.png
new file mode 100644
index 000000000..27b48f714
Binary files /dev/null and b/png/fire-shrine.png differ
diff --git a/png/fire-silhouette.png b/png/fire-silhouette.png
new file mode 100644
index 000000000..223028907
Binary files /dev/null and b/png/fire-silhouette.png differ
diff --git a/png/fire-spell-cast.png b/png/fire-spell-cast.png
new file mode 100644
index 000000000..b0dfc970a
Binary files /dev/null and b/png/fire-spell-cast.png differ
diff --git a/png/fire-tail.png b/png/fire-tail.png
new file mode 100644
index 000000000..25eb64f70
Binary files /dev/null and b/png/fire-tail.png differ
diff --git a/png/fire-wave.png b/png/fire-wave.png
new file mode 100644
index 000000000..10b1c58bb
Binary files /dev/null and b/png/fire-wave.png differ
diff --git a/png/fire-zone.png b/png/fire-zone.png
new file mode 100644
index 000000000..618f1b3cc
Binary files /dev/null and b/png/fire-zone.png differ
diff --git a/png/fire.png b/png/fire.png
new file mode 100644
index 000000000..d7b6bd437
Binary files /dev/null and b/png/fire.png differ
diff --git a/png/fireball.png b/png/fireball.png
new file mode 100644
index 000000000..39c4e6cd4
Binary files /dev/null and b/png/fireball.png differ
diff --git a/png/fireflake.png b/png/fireflake.png
new file mode 100644
index 000000000..5f83c135c
Binary files /dev/null and b/png/fireflake.png differ
diff --git a/png/fireplace.png b/png/fireplace.png
new file mode 100644
index 000000000..a8f86c01d
Binary files /dev/null and b/png/fireplace.png differ
diff --git a/png/firewall.png b/png/firewall.png
new file mode 100644
index 000000000..a6dd1a6b0
Binary files /dev/null and b/png/firewall.png differ
diff --git a/png/firework-rocket.png b/png/firework-rocket.png
new file mode 100644
index 000000000..54e52b69a
Binary files /dev/null and b/png/firework-rocket.png differ
diff --git a/png/first-aid-kit.png b/png/first-aid-kit.png
new file mode 100644
index 000000000..e7562c180
Binary files /dev/null and b/png/first-aid-kit.png differ
diff --git a/png/fish-bucket.png b/png/fish-bucket.png
new file mode 100644
index 000000000..169797ec6
Binary files /dev/null and b/png/fish-bucket.png differ
diff --git a/png/fish-cooked.png b/png/fish-cooked.png
new file mode 100644
index 000000000..74ebd5aa3
Binary files /dev/null and b/png/fish-cooked.png differ
diff --git a/png/fish-corpse.png b/png/fish-corpse.png
new file mode 100644
index 000000000..4c70993d0
Binary files /dev/null and b/png/fish-corpse.png differ
diff --git a/png/fish-eggs.png b/png/fish-eggs.png
new file mode 100644
index 000000000..fce114c0c
Binary files /dev/null and b/png/fish-eggs.png differ
diff --git a/png/fish-escape.png b/png/fish-escape.png
new file mode 100644
index 000000000..1ff315528
Binary files /dev/null and b/png/fish-escape.png differ
diff --git a/png/fish-monster.png b/png/fish-monster.png
new file mode 100644
index 000000000..33384d11c
Binary files /dev/null and b/png/fish-monster.png differ
diff --git a/png/fish-scales.png b/png/fish-scales.png
new file mode 100644
index 000000000..34741f0f9
Binary files /dev/null and b/png/fish-scales.png differ
diff --git a/png/fish-smoking.png b/png/fish-smoking.png
new file mode 100644
index 000000000..a4769d28d
Binary files /dev/null and b/png/fish-smoking.png differ
diff --git a/png/fishbone.png b/png/fishbone.png
new file mode 100644
index 000000000..b3e263d95
Binary files /dev/null and b/png/fishbone.png differ
diff --git a/png/fishhook-fork.png b/png/fishhook-fork.png
new file mode 100644
index 000000000..b0e8ef1a7
Binary files /dev/null and b/png/fishhook-fork.png differ
diff --git a/png/fishing-boat.png b/png/fishing-boat.png
new file mode 100644
index 000000000..d580ab2ad
Binary files /dev/null and b/png/fishing-boat.png differ
diff --git a/png/fishing-hook.png b/png/fishing-hook.png
new file mode 100644
index 000000000..e6524716d
Binary files /dev/null and b/png/fishing-hook.png differ
diff --git a/png/fishing-jig.png b/png/fishing-jig.png
new file mode 100644
index 000000000..fdbe0d0cb
Binary files /dev/null and b/png/fishing-jig.png differ
diff --git a/png/fishing-lure.png b/png/fishing-lure.png
new file mode 100644
index 000000000..4e8a5fbbe
Binary files /dev/null and b/png/fishing-lure.png differ
diff --git a/png/fishing-net.png b/png/fishing-net.png
new file mode 100644
index 000000000..f3edeeba7
Binary files /dev/null and b/png/fishing-net.png differ
diff --git a/png/fishing-pole.png b/png/fishing-pole.png
new file mode 100644
index 000000000..063a17700
Binary files /dev/null and b/png/fishing-pole.png differ
diff --git a/png/fishing-spoon.png b/png/fishing-spoon.png
new file mode 100644
index 000000000..141ce04f7
Binary files /dev/null and b/png/fishing-spoon.png differ
diff --git a/png/fishing.png b/png/fishing.png
new file mode 100644
index 000000000..c5b5bba5d
Binary files /dev/null and b/png/fishing.png differ
diff --git a/png/fission.png b/png/fission.png
new file mode 100644
index 000000000..19aefcb03
Binary files /dev/null and b/png/fission.png differ
diff --git a/png/fist-2.png b/png/fist-2.png
new file mode 100644
index 000000000..60e79e9db
Binary files /dev/null and b/png/fist-2.png differ
diff --git a/png/fist.png b/png/fist.png
new file mode 100644
index 000000000..c2d19925a
Binary files /dev/null and b/png/fist.png differ
diff --git a/png/fizzing-flask.png b/png/fizzing-flask.png
new file mode 100644
index 000000000..1c3ceb90e
Binary files /dev/null and b/png/fizzing-flask.png differ
diff --git a/png/flag-objective.png b/png/flag-objective.png
new file mode 100644
index 000000000..354b6f82b
Binary files /dev/null and b/png/flag-objective.png differ
diff --git a/png/flail.png b/png/flail.png
new file mode 100644
index 000000000..9923ad7da
Binary files /dev/null and b/png/flail.png differ
diff --git a/png/flake.png b/png/flake.png
new file mode 100644
index 000000000..781760cd0
Binary files /dev/null and b/png/flake.png differ
diff --git a/png/flame-claws.png b/png/flame-claws.png
new file mode 100644
index 000000000..d1ba25000
Binary files /dev/null and b/png/flame-claws.png differ
diff --git a/png/flame-spin.png b/png/flame-spin.png
new file mode 100644
index 000000000..e4089525e
Binary files /dev/null and b/png/flame-spin.png differ
diff --git a/png/flame-tunnel.png b/png/flame-tunnel.png
new file mode 100644
index 000000000..e2260e12d
Binary files /dev/null and b/png/flame-tunnel.png differ
diff --git a/png/flame.png b/png/flame.png
new file mode 100644
index 000000000..710fa02d5
Binary files /dev/null and b/png/flame.png differ
diff --git a/png/flamed-leaf.png b/png/flamed-leaf.png
new file mode 100644
index 000000000..7bafec660
Binary files /dev/null and b/png/flamed-leaf.png differ
diff --git a/png/flamer.png b/png/flamer.png
new file mode 100644
index 000000000..04763f611
Binary files /dev/null and b/png/flamer.png differ
diff --git a/png/flamethrower-soldier.png b/png/flamethrower-soldier.png
new file mode 100644
index 000000000..d02443aaf
Binary files /dev/null and b/png/flamethrower-soldier.png differ
diff --git a/png/flamethrower.png b/png/flamethrower.png
new file mode 100644
index 000000000..7b7d07a9f
Binary files /dev/null and b/png/flamethrower.png differ
diff --git a/png/flaming-arrow.png b/png/flaming-arrow.png
new file mode 100644
index 000000000..5860a9767
Binary files /dev/null and b/png/flaming-arrow.png differ
diff --git a/png/flaming-claw.png b/png/flaming-claw.png
new file mode 100644
index 000000000..42f4b893f
Binary files /dev/null and b/png/flaming-claw.png differ
diff --git a/png/flaming-sheet.png b/png/flaming-sheet.png
new file mode 100644
index 000000000..96f6fd6e6
Binary files /dev/null and b/png/flaming-sheet.png differ
diff --git a/png/flaming-trident.png b/png/flaming-trident.png
new file mode 100644
index 000000000..442c422fc
Binary files /dev/null and b/png/flaming-trident.png differ
diff --git a/png/flamingo.png b/png/flamingo.png
new file mode 100644
index 000000000..29f8062f8
Binary files /dev/null and b/png/flamingo.png differ
diff --git a/png/flanged-mace.png b/png/flanged-mace.png
new file mode 100644
index 000000000..a4aeea8ae
Binary files /dev/null and b/png/flanged-mace.png differ
diff --git a/png/flash-grenade.png b/png/flash-grenade.png
new file mode 100644
index 000000000..62afd5c3b
Binary files /dev/null and b/png/flash-grenade.png differ
diff --git a/png/flashlight.png b/png/flashlight.png
new file mode 100644
index 000000000..c07666d36
Binary files /dev/null and b/png/flashlight.png differ
diff --git a/png/flat-hammer.png b/png/flat-hammer.png
new file mode 100644
index 000000000..e63e4b326
Binary files /dev/null and b/png/flat-hammer.png differ
diff --git a/png/flat-paw-print.png b/png/flat-paw-print.png
new file mode 100644
index 000000000..85762f18c
Binary files /dev/null and b/png/flat-paw-print.png differ
diff --git a/png/flat-platform.png b/png/flat-platform.png
new file mode 100644
index 000000000..ef5e67d82
Binary files /dev/null and b/png/flat-platform.png differ
diff --git a/png/flat-star.png b/png/flat-star.png
new file mode 100644
index 000000000..7be905957
Binary files /dev/null and b/png/flat-star.png differ
diff --git a/png/flat-tire.png b/png/flat-tire.png
new file mode 100644
index 000000000..b3c490f96
Binary files /dev/null and b/png/flat-tire.png differ
diff --git a/png/flatbed-covered.png b/png/flatbed-covered.png
new file mode 100644
index 000000000..2066a4e81
Binary files /dev/null and b/png/flatbed-covered.png differ
diff --git a/png/flatbed.png b/png/flatbed.png
new file mode 100644
index 000000000..5e8392e14
Binary files /dev/null and b/png/flatbed.png differ
diff --git a/png/flatfish.png b/png/flatfish.png
new file mode 100644
index 000000000..8c9c424c6
Binary files /dev/null and b/png/flatfish.png differ
diff --git a/png/flax.png b/png/flax.png
new file mode 100644
index 000000000..fb6f6eb1b
Binary files /dev/null and b/png/flax.png differ
diff --git a/png/fleshy-mass.png b/png/fleshy-mass.png
new file mode 100644
index 000000000..3cb815ebb
Binary files /dev/null and b/png/fleshy-mass.png differ
diff --git a/png/fleur-de-lys.png b/png/fleur-de-lys.png
new file mode 100644
index 000000000..f543a594d
Binary files /dev/null and b/png/fleur-de-lys.png differ
diff --git a/png/flexible-lamp.png b/png/flexible-lamp.png
new file mode 100644
index 000000000..f1621b8ae
Binary files /dev/null and b/png/flexible-lamp.png differ
diff --git a/png/flexible-star.png b/png/flexible-star.png
new file mode 100644
index 000000000..ed85a1ab9
Binary files /dev/null and b/png/flexible-star.png differ
diff --git a/png/flint-spark.png b/png/flint-spark.png
new file mode 100644
index 000000000..ac73efa53
Binary files /dev/null and b/png/flint-spark.png differ
diff --git a/png/flip-flops.png b/png/flip-flops.png
new file mode 100644
index 000000000..09932ed1e
Binary files /dev/null and b/png/flip-flops.png differ
diff --git a/png/floating-crystal.png b/png/floating-crystal.png
new file mode 100644
index 000000000..fe7747eba
Binary files /dev/null and b/png/floating-crystal.png differ
diff --git a/png/floating-ghost.png b/png/floating-ghost.png
new file mode 100644
index 000000000..397a0a8a6
Binary files /dev/null and b/png/floating-ghost.png differ
diff --git a/png/floating-platforms.png b/png/floating-platforms.png
new file mode 100644
index 000000000..34e376f89
Binary files /dev/null and b/png/floating-platforms.png differ
diff --git a/png/floating-tentacles.png b/png/floating-tentacles.png
new file mode 100644
index 000000000..d759fd56e
Binary files /dev/null and b/png/floating-tentacles.png differ
diff --git a/png/flood.png b/png/flood.png
new file mode 100644
index 000000000..0eb7dcb08
Binary files /dev/null and b/png/flood.png differ
diff --git a/png/floor-hatch.png b/png/floor-hatch.png
new file mode 100644
index 000000000..99559d60e
Binary files /dev/null and b/png/floor-hatch.png differ
diff --git a/png/floor-polisher.png b/png/floor-polisher.png
new file mode 100644
index 000000000..5b68c3b72
Binary files /dev/null and b/png/floor-polisher.png differ
diff --git a/png/flour.png b/png/flour.png
new file mode 100644
index 000000000..48c5fec03
Binary files /dev/null and b/png/flour.png differ
diff --git a/png/flower-emblem.png b/png/flower-emblem.png
new file mode 100644
index 000000000..bd6d55ffa
Binary files /dev/null and b/png/flower-emblem.png differ
diff --git a/png/flower-hat.png b/png/flower-hat.png
new file mode 100644
index 000000000..f427b78db
Binary files /dev/null and b/png/flower-hat.png differ
diff --git a/png/flower-pot.png b/png/flower-pot.png
new file mode 100644
index 000000000..15a7311b5
Binary files /dev/null and b/png/flower-pot.png differ
diff --git a/png/flower-star.png b/png/flower-star.png
new file mode 100644
index 000000000..9771a98ee
Binary files /dev/null and b/png/flower-star.png differ
diff --git a/png/flower-twirl.png b/png/flower-twirl.png
new file mode 100644
index 000000000..8b482e92d
Binary files /dev/null and b/png/flower-twirl.png differ
diff --git a/png/flowers.png b/png/flowers.png
new file mode 100644
index 000000000..e4fc26514
Binary files /dev/null and b/png/flowers.png differ
diff --git a/png/fluffy-cloud.png b/png/fluffy-cloud.png
new file mode 100644
index 000000000..efdc0a69f
Binary files /dev/null and b/png/fluffy-cloud.png differ
diff --git a/png/fluffy-flame.png b/png/fluffy-flame.png
new file mode 100644
index 000000000..219663360
Binary files /dev/null and b/png/fluffy-flame.png differ
diff --git a/png/fluffy-swirl.png b/png/fluffy-swirl.png
new file mode 100644
index 000000000..030d5f38e
Binary files /dev/null and b/png/fluffy-swirl.png differ
diff --git a/png/fluffy-trefoil.png b/png/fluffy-trefoil.png
new file mode 100644
index 000000000..4b6ac85b5
Binary files /dev/null and b/png/fluffy-trefoil.png differ
diff --git a/png/fluffy-wing.png b/png/fluffy-wing.png
new file mode 100644
index 000000000..11e8705d4
Binary files /dev/null and b/png/fluffy-wing.png differ
diff --git a/png/flute.png b/png/flute.png
new file mode 100644
index 000000000..12c1732fe
Binary files /dev/null and b/png/flute.png differ
diff --git a/png/fly.png b/png/fly.png
new file mode 100644
index 000000000..259b6739c
Binary files /dev/null and b/png/fly.png differ
diff --git a/png/flying-beetle.png b/png/flying-beetle.png
new file mode 100644
index 000000000..4a1cad901
Binary files /dev/null and b/png/flying-beetle.png differ
diff --git a/png/flying-dagger.png b/png/flying-dagger.png
new file mode 100644
index 000000000..bdbff5365
Binary files /dev/null and b/png/flying-dagger.png differ
diff --git a/png/flying-flag.png b/png/flying-flag.png
new file mode 100644
index 000000000..2d75efc5d
Binary files /dev/null and b/png/flying-flag.png differ
diff --git a/png/flying-fox.png b/png/flying-fox.png
new file mode 100644
index 000000000..aeb284629
Binary files /dev/null and b/png/flying-fox.png differ
diff --git a/png/flying-shuriken.png b/png/flying-shuriken.png
new file mode 100644
index 000000000..326bbdd88
Binary files /dev/null and b/png/flying-shuriken.png differ
diff --git a/png/flying-target.png b/png/flying-target.png
new file mode 100644
index 000000000..5c36da7cf
Binary files /dev/null and b/png/flying-target.png differ
diff --git a/png/flying-trout.png b/png/flying-trout.png
new file mode 100644
index 000000000..f2f0e1d53
Binary files /dev/null and b/png/flying-trout.png differ
diff --git a/png/fn-fal.png b/png/fn-fal.png
new file mode 100644
index 000000000..6902b27a4
Binary files /dev/null and b/png/fn-fal.png differ
diff --git a/png/foam.png b/png/foam.png
new file mode 100644
index 000000000..0f206d951
Binary files /dev/null and b/png/foam.png differ
diff --git a/png/foamy-disc.png b/png/foamy-disc.png
new file mode 100644
index 000000000..1567b02bd
Binary files /dev/null and b/png/foamy-disc.png differ
diff --git a/png/focused-lightning.png b/png/focused-lightning.png
new file mode 100644
index 000000000..1f0faa863
Binary files /dev/null and b/png/focused-lightning.png differ
diff --git a/png/fog-light.png b/png/fog-light.png
new file mode 100644
index 000000000..9d503bb2f
Binary files /dev/null and b/png/fog-light.png differ
diff --git a/png/fog.png b/png/fog.png
new file mode 100644
index 000000000..ea1f4babb
Binary files /dev/null and b/png/fog.png differ
diff --git a/png/folded-paper.png b/png/folded-paper.png
new file mode 100644
index 000000000..4fc109735
Binary files /dev/null and b/png/folded-paper.png differ
diff --git a/png/fomorian.png b/png/fomorian.png
new file mode 100644
index 000000000..55279f280
Binary files /dev/null and b/png/fomorian.png differ
diff --git a/png/food-chain.png b/png/food-chain.png
new file mode 100644
index 000000000..37a9c8a96
Binary files /dev/null and b/png/food-chain.png differ
diff --git a/png/food-truck.png b/png/food-truck.png
new file mode 100644
index 000000000..bcd47b7ab
Binary files /dev/null and b/png/food-truck.png differ
diff --git a/png/foot-plaster.png b/png/foot-plaster.png
new file mode 100644
index 000000000..30becd23a
Binary files /dev/null and b/png/foot-plaster.png differ
diff --git a/png/foot-trip.png b/png/foot-trip.png
new file mode 100644
index 000000000..edf8f356b
Binary files /dev/null and b/png/foot-trip.png differ
diff --git a/png/footprint.png b/png/footprint.png
new file mode 100644
index 000000000..70f0ab391
Binary files /dev/null and b/png/footprint.png differ
diff --git a/png/footsteps.png b/png/footsteps.png
new file mode 100644
index 000000000..edf95a96b
Binary files /dev/null and b/png/footsteps.png differ
diff --git a/png/footy-field.png b/png/footy-field.png
new file mode 100644
index 000000000..635502467
Binary files /dev/null and b/png/footy-field.png differ
diff --git a/png/forearm.png b/png/forearm.png
new file mode 100644
index 000000000..f70f50e7c
Binary files /dev/null and b/png/forearm.png differ
diff --git a/png/forest-camp.png b/png/forest-camp.png
new file mode 100644
index 000000000..c474d384c
Binary files /dev/null and b/png/forest-camp.png differ
diff --git a/png/forest-entrance.png b/png/forest-entrance.png
new file mode 100644
index 000000000..2114c5337
Binary files /dev/null and b/png/forest-entrance.png differ
diff --git a/png/forest.png b/png/forest.png
new file mode 100644
index 000000000..26fc16a5d
Binary files /dev/null and b/png/forest.png differ
diff --git a/png/fork-knife-spoon.png b/png/fork-knife-spoon.png
new file mode 100644
index 000000000..4fe173dfb
Binary files /dev/null and b/png/fork-knife-spoon.png differ
diff --git a/png/forklift.png b/png/forklift.png
new file mode 100644
index 000000000..e9099d0a3
Binary files /dev/null and b/png/forklift.png differ
diff --git a/png/forward-field.png b/png/forward-field.png
new file mode 100644
index 000000000..7cd0b6081
Binary files /dev/null and b/png/forward-field.png differ
diff --git a/png/forward-sun.png b/png/forward-sun.png
new file mode 100644
index 000000000..a85528536
Binary files /dev/null and b/png/forward-sun.png differ
diff --git a/png/fossil.png b/png/fossil.png
new file mode 100644
index 000000000..02abb7de4
Binary files /dev/null and b/png/fossil.png differ
diff --git a/png/foundry-bucket.png b/png/foundry-bucket.png
new file mode 100644
index 000000000..67f1ee428
Binary files /dev/null and b/png/foundry-bucket.png differ
diff --git a/png/fountain-pen.png b/png/fountain-pen.png
new file mode 100644
index 000000000..d85f9632f
Binary files /dev/null and b/png/fountain-pen.png differ
diff --git a/png/fountain.png b/png/fountain.png
new file mode 100644
index 000000000..a696362d4
Binary files /dev/null and b/png/fountain.png differ
diff --git a/png/fox-head.png b/png/fox-head.png
new file mode 100644
index 000000000..2bce4afff
Binary files /dev/null and b/png/fox-head.png differ
diff --git a/png/fox-tail.png b/png/fox-tail.png
new file mode 100644
index 000000000..2f8a116ec
Binary files /dev/null and b/png/fox-tail.png differ
diff --git a/png/fox.png b/png/fox.png
new file mode 100644
index 000000000..5f71844c5
Binary files /dev/null and b/png/fox.png differ
diff --git a/png/fragmented-meteor.png b/png/fragmented-meteor.png
new file mode 100644
index 000000000..b95c1f479
Binary files /dev/null and b/png/fragmented-meteor.png differ
diff --git a/png/fragmented-sword.png b/png/fragmented-sword.png
new file mode 100644
index 000000000..c903862bd
Binary files /dev/null and b/png/fragmented-sword.png differ
diff --git a/png/fragrance.png b/png/fragrance.png
new file mode 100644
index 000000000..79cdca847
Binary files /dev/null and b/png/fragrance.png differ
diff --git a/png/france.png b/png/france.png
new file mode 100644
index 000000000..cdb65d3d5
Binary files /dev/null and b/png/france.png differ
diff --git a/png/frankenstein-creature.png b/png/frankenstein-creature.png
new file mode 100644
index 000000000..cf15d33d5
Binary files /dev/null and b/png/frankenstein-creature.png differ
diff --git a/png/frayed-arrow.png b/png/frayed-arrow.png
new file mode 100644
index 000000000..77819bad3
Binary files /dev/null and b/png/frayed-arrow.png differ
diff --git a/png/freedom-dove.png b/png/freedom-dove.png
new file mode 100644
index 000000000..6c299d11b
Binary files /dev/null and b/png/freedom-dove.png differ
diff --git a/png/freemasonry.png b/png/freemasonry.png
new file mode 100644
index 000000000..a4aad0a66
Binary files /dev/null and b/png/freemasonry.png differ
diff --git a/png/french-fries.png b/png/french-fries.png
new file mode 100644
index 000000000..2a8881df4
Binary files /dev/null and b/png/french-fries.png differ
diff --git a/png/french-horn.png b/png/french-horn.png
new file mode 100644
index 000000000..9aac656bc
Binary files /dev/null and b/png/french-horn.png differ
diff --git a/png/fridge.png b/png/fridge.png
new file mode 100644
index 000000000..46f274732
Binary files /dev/null and b/png/fridge.png differ
diff --git a/png/fried-eggs.png b/png/fried-eggs.png
new file mode 100644
index 000000000..b6cb38382
Binary files /dev/null and b/png/fried-eggs.png differ
diff --git a/png/fried-fish.png b/png/fried-fish.png
new file mode 100644
index 000000000..bdcd68cbc
Binary files /dev/null and b/png/fried-fish.png differ
diff --git a/png/frisbee.png b/png/frisbee.png
new file mode 100644
index 000000000..08719490e
Binary files /dev/null and b/png/frisbee.png differ
diff --git a/png/froe-and-mallet.png b/png/froe-and-mallet.png
new file mode 100644
index 000000000..dcffce4ce
Binary files /dev/null and b/png/froe-and-mallet.png differ
diff --git a/png/frog-foot.png b/png/frog-foot.png
new file mode 100644
index 000000000..d724b9d71
Binary files /dev/null and b/png/frog-foot.png differ
diff --git a/png/frog-mouth-helm.png b/png/frog-mouth-helm.png
new file mode 100644
index 000000000..494919d51
Binary files /dev/null and b/png/frog-mouth-helm.png differ
diff --git a/png/frog-prince.png b/png/frog-prince.png
new file mode 100644
index 000000000..825e93d53
Binary files /dev/null and b/png/frog-prince.png differ
diff --git a/png/frog.png b/png/frog.png
new file mode 100644
index 000000000..ea8342458
Binary files /dev/null and b/png/frog.png differ
diff --git a/png/front-teeth.png b/png/front-teeth.png
new file mode 100644
index 000000000..0ffd771fc
Binary files /dev/null and b/png/front-teeth.png differ
diff --git a/png/frontal-lobe.png b/png/frontal-lobe.png
new file mode 100644
index 000000000..c270ec4d0
Binary files /dev/null and b/png/frontal-lobe.png differ
diff --git a/png/frostfire.png b/png/frostfire.png
new file mode 100644
index 000000000..ba23d5aed
Binary files /dev/null and b/png/frostfire.png differ
diff --git a/png/frozen-arrow.png b/png/frozen-arrow.png
new file mode 100644
index 000000000..1d016ed47
Binary files /dev/null and b/png/frozen-arrow.png differ
diff --git a/png/frozen-block.png b/png/frozen-block.png
new file mode 100644
index 000000000..f82cc76c7
Binary files /dev/null and b/png/frozen-block.png differ
diff --git a/png/frozen-body.png b/png/frozen-body.png
new file mode 100644
index 000000000..d5958217d
Binary files /dev/null and b/png/frozen-body.png differ
diff --git a/png/frozen-orb.png b/png/frozen-orb.png
new file mode 100644
index 000000000..350c76e8c
Binary files /dev/null and b/png/frozen-orb.png differ
diff --git a/png/frozen-ring.png b/png/frozen-ring.png
new file mode 100644
index 000000000..0aad45520
Binary files /dev/null and b/png/frozen-ring.png differ
diff --git a/png/fruit-bowl.png b/png/fruit-bowl.png
new file mode 100644
index 000000000..2b61ce168
Binary files /dev/null and b/png/fruit-bowl.png differ
diff --git a/png/fruit-tree.png b/png/fruit-tree.png
new file mode 100644
index 000000000..b1037c91e
Binary files /dev/null and b/png/fruit-tree.png differ
diff --git a/png/fruiting.png b/png/fruiting.png
new file mode 100644
index 000000000..30f948149
Binary files /dev/null and b/png/fruiting.png differ
diff --git a/png/fuel-tank.png b/png/fuel-tank.png
new file mode 100644
index 000000000..4a2ca2b9a
Binary files /dev/null and b/png/fuel-tank.png differ
diff --git a/png/fuji.png b/png/fuji.png
new file mode 100644
index 000000000..ce03eb22e
Binary files /dev/null and b/png/fuji.png differ
diff --git a/png/fulguro-punch.png b/png/fulguro-punch.png
new file mode 100644
index 000000000..303eedf3e
Binary files /dev/null and b/png/fulguro-punch.png differ
diff --git a/png/full-folder.png b/png/full-folder.png
new file mode 100644
index 000000000..b504a6d6c
Binary files /dev/null and b/png/full-folder.png differ
diff --git a/png/full-metal-bucket-handle.png b/png/full-metal-bucket-handle.png
new file mode 100644
index 000000000..ad03dcde6
Binary files /dev/null and b/png/full-metal-bucket-handle.png differ
diff --git a/png/full-metal-bucket.png b/png/full-metal-bucket.png
new file mode 100644
index 000000000..5d4536cfc
Binary files /dev/null and b/png/full-metal-bucket.png differ
diff --git a/png/full-motorcycle-helmet.png b/png/full-motorcycle-helmet.png
new file mode 100644
index 000000000..aab6cc003
Binary files /dev/null and b/png/full-motorcycle-helmet.png differ
diff --git a/png/full-pizza.png b/png/full-pizza.png
new file mode 100644
index 000000000..7931e1d10
Binary files /dev/null and b/png/full-pizza.png differ
diff --git a/png/full-wood-bucket-handle.png b/png/full-wood-bucket-handle.png
new file mode 100644
index 000000000..52defacdb
Binary files /dev/null and b/png/full-wood-bucket-handle.png differ
diff --git a/png/full-wood-bucket.png b/png/full-wood-bucket.png
new file mode 100644
index 000000000..ae8cef48d
Binary files /dev/null and b/png/full-wood-bucket.png differ
diff --git a/png/funnel.png b/png/funnel.png
new file mode 100644
index 000000000..8d6d39e90
Binary files /dev/null and b/png/funnel.png differ
diff --git a/png/fur-boot.png b/png/fur-boot.png
new file mode 100644
index 000000000..6410b54f4
Binary files /dev/null and b/png/fur-boot.png differ
diff --git a/png/fur-shirt.png b/png/fur-shirt.png
new file mode 100644
index 000000000..e939e1541
Binary files /dev/null and b/png/fur-shirt.png differ
diff --git a/png/furnace.png b/png/furnace.png
new file mode 100644
index 000000000..8aa81ef64
Binary files /dev/null and b/png/furnace.png differ
diff --git a/png/g-clef.png b/png/g-clef.png
new file mode 100644
index 000000000..2bd14fe7d
Binary files /dev/null and b/png/g-clef.png differ
diff --git a/png/galaxy.png b/png/galaxy.png
new file mode 100644
index 000000000..7ccad3a2d
Binary files /dev/null and b/png/galaxy.png differ
diff --git a/png/galea.png b/png/galea.png
new file mode 100644
index 000000000..ff10f8794
Binary files /dev/null and b/png/galea.png differ
diff --git a/png/galleon.png b/png/galleon.png
new file mode 100644
index 000000000..74434c45d
Binary files /dev/null and b/png/galleon.png differ
diff --git a/png/galley.png b/png/galley.png
new file mode 100644
index 000000000..a483339ae
Binary files /dev/null and b/png/galley.png differ
diff --git a/png/game-console.png b/png/game-console.png
new file mode 100644
index 000000000..3f2f54fd5
Binary files /dev/null and b/png/game-console.png differ
diff --git a/png/gamepad-cross.png b/png/gamepad-cross.png
new file mode 100644
index 000000000..67100d22a
Binary files /dev/null and b/png/gamepad-cross.png differ
diff --git a/png/gamepad.png b/png/gamepad.png
new file mode 100644
index 000000000..a28d8431f
Binary files /dev/null and b/png/gamepad.png differ
diff --git a/png/gardening-shears.png b/png/gardening-shears.png
new file mode 100644
index 000000000..a8a34b9ee
Binary files /dev/null and b/png/gardening-shears.png differ
diff --git a/png/gargoyle.png b/png/gargoyle.png
new file mode 100644
index 000000000..d13d15cc5
Binary files /dev/null and b/png/gargoyle.png differ
diff --git a/png/garlic.png b/png/garlic.png
new file mode 100644
index 000000000..736425cee
Binary files /dev/null and b/png/garlic.png differ
diff --git a/png/gas-mask-2.png b/png/gas-mask-2.png
new file mode 100644
index 000000000..899dc0002
Binary files /dev/null and b/png/gas-mask-2.png differ
diff --git a/png/gas-mask.png b/png/gas-mask.png
new file mode 100644
index 000000000..7b02b9ca3
Binary files /dev/null and b/png/gas-mask.png differ
diff --git a/png/gas-pump.png b/png/gas-pump.png
new file mode 100644
index 000000000..ed608c3d9
Binary files /dev/null and b/png/gas-pump.png differ
diff --git a/png/gas-stove.png b/png/gas-stove.png
new file mode 100644
index 000000000..016873f45
Binary files /dev/null and b/png/gas-stove.png differ
diff --git a/png/gate.png b/png/gate.png
new file mode 100644
index 000000000..09f096e99
Binary files /dev/null and b/png/gate.png differ
diff --git a/png/gauls-helm.png b/png/gauls-helm.png
new file mode 100644
index 000000000..5dc4cbb87
Binary files /dev/null and b/png/gauls-helm.png differ
diff --git a/png/gauntlet.png b/png/gauntlet.png
new file mode 100644
index 000000000..6a6e8ceaa
Binary files /dev/null and b/png/gauntlet.png differ
diff --git a/png/gavel.png b/png/gavel.png
new file mode 100644
index 000000000..3d9d38a66
Binary files /dev/null and b/png/gavel.png differ
diff --git a/png/gaze.png b/png/gaze.png
new file mode 100644
index 000000000..78df33275
Binary files /dev/null and b/png/gaze.png differ
diff --git a/png/gear-hammer.png b/png/gear-hammer.png
new file mode 100644
index 000000000..20fa10b60
Binary files /dev/null and b/png/gear-hammer.png differ
diff --git a/png/gear-stick-pattern.png b/png/gear-stick-pattern.png
new file mode 100644
index 000000000..f95403be9
Binary files /dev/null and b/png/gear-stick-pattern.png differ
diff --git a/png/gear-stick.png b/png/gear-stick.png
new file mode 100644
index 000000000..65dc3301b
Binary files /dev/null and b/png/gear-stick.png differ
diff --git a/png/gears.png b/png/gears.png
new file mode 100644
index 000000000..9d66d2a79
Binary files /dev/null and b/png/gears.png differ
diff --git a/png/gecko.png b/png/gecko.png
new file mode 100644
index 000000000..e1776f0f3
Binary files /dev/null and b/png/gecko.png differ
diff --git a/png/gem-chain.png b/png/gem-chain.png
new file mode 100644
index 000000000..1141c3dc6
Binary files /dev/null and b/png/gem-chain.png differ
diff --git a/png/gem-necklace.png b/png/gem-necklace.png
new file mode 100644
index 000000000..9d7a85422
Binary files /dev/null and b/png/gem-necklace.png differ
diff --git a/png/gem-pendant.png b/png/gem-pendant.png
new file mode 100644
index 000000000..aed6bfdc5
Binary files /dev/null and b/png/gem-pendant.png differ
diff --git a/png/gemini.png b/png/gemini.png
new file mode 100644
index 000000000..10c3dbd88
Binary files /dev/null and b/png/gemini.png differ
diff --git a/png/gems.png b/png/gems.png
new file mode 100644
index 000000000..439b1b9de
Binary files /dev/null and b/png/gems.png differ
diff --git a/png/ghost-ally.png b/png/ghost-ally.png
new file mode 100644
index 000000000..06ebf7e41
Binary files /dev/null and b/png/ghost-ally.png differ
diff --git a/png/ghost.png b/png/ghost.png
new file mode 100644
index 000000000..c3235269f
Binary files /dev/null and b/png/ghost.png differ
diff --git a/png/giant-squid.png b/png/giant-squid.png
new file mode 100644
index 000000000..f9ed0f898
Binary files /dev/null and b/png/giant-squid.png differ
diff --git a/png/giant.png b/png/giant.png
new file mode 100644
index 000000000..9374ab01f
Binary files /dev/null and b/png/giant.png differ
diff --git a/png/gibbet.png b/png/gibbet.png
new file mode 100644
index 000000000..4be86660c
Binary files /dev/null and b/png/gibbet.png differ
diff --git a/png/gift-of-knowledge.png b/png/gift-of-knowledge.png
new file mode 100644
index 000000000..ac027d7f5
Binary files /dev/null and b/png/gift-of-knowledge.png differ
diff --git a/png/gift-trap.png b/png/gift-trap.png
new file mode 100644
index 000000000..2d8187737
Binary files /dev/null and b/png/gift-trap.png differ
diff --git a/png/gingerbread-man.png b/png/gingerbread-man.png
new file mode 100644
index 000000000..e8e67b28d
Binary files /dev/null and b/png/gingerbread-man.png differ
diff --git a/png/ginkgo-leaf.png b/png/ginkgo-leaf.png
new file mode 100644
index 000000000..e07962993
Binary files /dev/null and b/png/ginkgo-leaf.png differ
diff --git a/png/gladius.png b/png/gladius.png
new file mode 100644
index 000000000..b90fb9a5e
Binary files /dev/null and b/png/gladius.png differ
diff --git a/png/glaive.png b/png/glaive.png
new file mode 100644
index 000000000..d9e9ee11d
Binary files /dev/null and b/png/glaive.png differ
diff --git a/png/glass-ball.png b/png/glass-ball.png
new file mode 100644
index 000000000..e783570dc
Binary files /dev/null and b/png/glass-ball.png differ
diff --git a/png/glass-celebration.png b/png/glass-celebration.png
new file mode 100644
index 000000000..bdabac413
Binary files /dev/null and b/png/glass-celebration.png differ
diff --git a/png/glass-heart.png b/png/glass-heart.png
new file mode 100644
index 000000000..9f8c452cb
Binary files /dev/null and b/png/glass-heart.png differ
diff --git a/png/glass-shot.png b/png/glass-shot.png
new file mode 100644
index 000000000..38570bff9
Binary files /dev/null and b/png/glass-shot.png differ
diff --git a/png/glider.png b/png/glider.png
new file mode 100644
index 000000000..28d0a6ac0
Binary files /dev/null and b/png/glider.png differ
diff --git a/png/globe-ring.png b/png/globe-ring.png
new file mode 100644
index 000000000..742db2db7
Binary files /dev/null and b/png/globe-ring.png differ
diff --git a/png/globe.png b/png/globe.png
new file mode 100644
index 000000000..0cf82af08
Binary files /dev/null and b/png/globe.png differ
diff --git a/png/glock.png b/png/glock.png
new file mode 100644
index 000000000..d46c09619
Binary files /dev/null and b/png/glock.png differ
diff --git a/png/gloop.png b/png/gloop.png
new file mode 100644
index 000000000..87822c70a
Binary files /dev/null and b/png/gloop.png differ
diff --git a/png/gloves.png b/png/gloves.png
new file mode 100644
index 000000000..b3ecb949f
Binary files /dev/null and b/png/gloves.png differ
diff --git a/png/glowing-artifact.png b/png/glowing-artifact.png
new file mode 100644
index 000000000..0b123e4cb
Binary files /dev/null and b/png/glowing-artifact.png differ
diff --git a/png/glowing-hands.png b/png/glowing-hands.png
new file mode 100644
index 000000000..16515067c
Binary files /dev/null and b/png/glowing-hands.png differ
diff --git a/png/gluttonous-smile.png b/png/gluttonous-smile.png
new file mode 100644
index 000000000..ad4f4c7b9
Binary files /dev/null and b/png/gluttonous-smile.png differ
diff --git a/png/gluttony.png b/png/gluttony.png
new file mode 100644
index 000000000..a3e417152
Binary files /dev/null and b/png/gluttony.png differ
diff --git a/png/goal-keeper.png b/png/goal-keeper.png
new file mode 100644
index 000000000..171f92bfe
Binary files /dev/null and b/png/goal-keeper.png differ
diff --git a/png/goat.png b/png/goat.png
new file mode 100644
index 000000000..6b4a99c4d
Binary files /dev/null and b/png/goat.png differ
diff --git a/png/goblin-camp.png b/png/goblin-camp.png
new file mode 100644
index 000000000..7234543de
Binary files /dev/null and b/png/goblin-camp.png differ
diff --git a/png/goblin-head.png b/png/goblin-head.png
new file mode 100644
index 000000000..f34d3bbc0
Binary files /dev/null and b/png/goblin-head.png differ
diff --git a/png/goblin.png b/png/goblin.png
new file mode 100644
index 000000000..2d56adcda
Binary files /dev/null and b/png/goblin.png differ
diff --git a/png/gold-bar.png b/png/gold-bar.png
new file mode 100644
index 000000000..46be5d907
Binary files /dev/null and b/png/gold-bar.png differ
diff --git a/png/gold-mine.png b/png/gold-mine.png
new file mode 100644
index 000000000..ecd0d5238
Binary files /dev/null and b/png/gold-mine.png differ
diff --git a/png/gold-nuggets.png b/png/gold-nuggets.png
new file mode 100644
index 000000000..0d1d4c9c1
Binary files /dev/null and b/png/gold-nuggets.png differ
diff --git a/png/gold-scarab.png b/png/gold-scarab.png
new file mode 100644
index 000000000..74f60f377
Binary files /dev/null and b/png/gold-scarab.png differ
diff --git a/png/gold-shell.png b/png/gold-shell.png
new file mode 100644
index 000000000..86b52fa27
Binary files /dev/null and b/png/gold-shell.png differ
diff --git a/png/gold-stack.png b/png/gold-stack.png
new file mode 100644
index 000000000..0b35c2af0
Binary files /dev/null and b/png/gold-stack.png differ
diff --git a/png/golem-head.png b/png/golem-head.png
new file mode 100644
index 000000000..c023bf6a9
Binary files /dev/null and b/png/golem-head.png differ
diff --git a/png/golf-flag.png b/png/golf-flag.png
new file mode 100644
index 000000000..f8401cd1d
Binary files /dev/null and b/png/golf-flag.png differ
diff --git a/png/golf-tee.png b/png/golf-tee.png
new file mode 100644
index 000000000..689eaa2d8
Binary files /dev/null and b/png/golf-tee.png differ
diff --git a/png/gong.png b/png/gong.png
new file mode 100644
index 000000000..50b314920
Binary files /dev/null and b/png/gong.png differ
diff --git a/png/goo-explosion.png b/png/goo-explosion.png
new file mode 100644
index 000000000..f7291defc
Binary files /dev/null and b/png/goo-explosion.png differ
diff --git a/png/goo-skull.png b/png/goo-skull.png
new file mode 100644
index 000000000..7ad06a29c
Binary files /dev/null and b/png/goo-skull.png differ
diff --git a/png/goo-spurt.png b/png/goo-spurt.png
new file mode 100644
index 000000000..a70ae71d5
Binary files /dev/null and b/png/goo-spurt.png differ
diff --git a/png/gooey-daemon.png b/png/gooey-daemon.png
new file mode 100644
index 000000000..129bbbf6c
Binary files /dev/null and b/png/gooey-daemon.png differ
diff --git a/png/gooey-eyed-sun.png b/png/gooey-eyed-sun.png
new file mode 100644
index 000000000..7a0342760
Binary files /dev/null and b/png/gooey-eyed-sun.png differ
diff --git a/png/gooey-impact.png b/png/gooey-impact.png
new file mode 100644
index 000000000..92cb74c1d
Binary files /dev/null and b/png/gooey-impact.png differ
diff --git a/png/gooey-molecule.png b/png/gooey-molecule.png
new file mode 100644
index 000000000..910575d86
Binary files /dev/null and b/png/gooey-molecule.png differ
diff --git a/png/gooey-sword.png b/png/gooey-sword.png
new file mode 100644
index 000000000..8a1f36a19
Binary files /dev/null and b/png/gooey-sword.png differ
diff --git a/png/goose.png b/png/goose.png
new file mode 100644
index 000000000..24de15b23
Binary files /dev/null and b/png/goose.png differ
diff --git a/png/gorilla.png b/png/gorilla.png
new file mode 100644
index 000000000..f4df2e44a
Binary files /dev/null and b/png/gorilla.png differ
diff --git a/png/gothic-cross.png b/png/gothic-cross.png
new file mode 100644
index 000000000..d80e296bd
Binary files /dev/null and b/png/gothic-cross.png differ
diff --git a/png/gps.png b/png/gps.png
new file mode 100644
index 000000000..599d75677
Binary files /dev/null and b/png/gps.png differ
diff --git a/png/grab.png b/png/grab.png
new file mode 100644
index 000000000..1084c354e
Binary files /dev/null and b/png/grab.png differ
diff --git a/png/graduate-cap.png b/png/graduate-cap.png
new file mode 100644
index 000000000..47d83a752
Binary files /dev/null and b/png/graduate-cap.png differ
diff --git a/png/grain-bundle.png b/png/grain-bundle.png
new file mode 100644
index 000000000..afca34101
Binary files /dev/null and b/png/grain-bundle.png differ
diff --git a/png/grain.png b/png/grain.png
new file mode 100644
index 000000000..a5adda63e
Binary files /dev/null and b/png/grain.png differ
diff --git a/png/granary.png b/png/granary.png
new file mode 100644
index 000000000..6cf083458
Binary files /dev/null and b/png/granary.png differ
diff --git a/png/grand-piano.png b/png/grand-piano.png
new file mode 100644
index 000000000..166af3115
Binary files /dev/null and b/png/grand-piano.png differ
diff --git a/png/grapes.png b/png/grapes.png
new file mode 100644
index 000000000..b49a37313
Binary files /dev/null and b/png/grapes.png differ
diff --git a/png/grapple.png b/png/grapple.png
new file mode 100644
index 000000000..7b43374db
Binary files /dev/null and b/png/grapple.png differ
diff --git a/png/grasping-claws.png b/png/grasping-claws.png
new file mode 100644
index 000000000..729fa2d13
Binary files /dev/null and b/png/grasping-claws.png differ
diff --git a/png/grasping-slug.png b/png/grasping-slug.png
new file mode 100644
index 000000000..c45a68534
Binary files /dev/null and b/png/grasping-slug.png differ
diff --git a/png/grass-mushroom.png b/png/grass-mushroom.png
new file mode 100644
index 000000000..f4df4da7e
Binary files /dev/null and b/png/grass-mushroom.png differ
diff --git a/png/grass.png b/png/grass.png
new file mode 100644
index 000000000..ee31f962e
Binary files /dev/null and b/png/grass.png differ
diff --git a/png/grave-flowers.png b/png/grave-flowers.png
new file mode 100644
index 000000000..a230b146b
Binary files /dev/null and b/png/grave-flowers.png differ
diff --git a/png/graveyard.png b/png/graveyard.png
new file mode 100644
index 000000000..3f59f6455
Binary files /dev/null and b/png/graveyard.png differ
diff --git a/png/gravitation.png b/png/gravitation.png
new file mode 100644
index 000000000..e201698c9
Binary files /dev/null and b/png/gravitation.png differ
diff --git a/png/grease-trap.png b/png/grease-trap.png
new file mode 100644
index 000000000..a4417bdab
Binary files /dev/null and b/png/grease-trap.png differ
diff --git a/png/great-pyramid.png b/png/great-pyramid.png
new file mode 100644
index 000000000..c832967ef
Binary files /dev/null and b/png/great-pyramid.png differ
diff --git a/png/great-war-tank.png b/png/great-war-tank.png
new file mode 100644
index 000000000..05fed6f6c
Binary files /dev/null and b/png/great-war-tank.png differ
diff --git a/png/greaves.png b/png/greaves.png
new file mode 100644
index 000000000..d42ed72c8
Binary files /dev/null and b/png/greaves.png differ
diff --git a/png/greek-sphinx.png b/png/greek-sphinx.png
new file mode 100644
index 000000000..c6daf3235
Binary files /dev/null and b/png/greek-sphinx.png differ
diff --git a/png/greek-temple.png b/png/greek-temple.png
new file mode 100644
index 000000000..6cc019f20
Binary files /dev/null and b/png/greek-temple.png differ
diff --git a/png/green-power.png b/png/green-power.png
new file mode 100644
index 000000000..edcfa9795
Binary files /dev/null and b/png/green-power.png differ
diff --git a/png/greenhouse.png b/png/greenhouse.png
new file mode 100644
index 000000000..4ca5ad691
Binary files /dev/null and b/png/greenhouse.png differ
diff --git a/png/grenade-2.png b/png/grenade-2.png
new file mode 100644
index 000000000..4b145e9bd
Binary files /dev/null and b/png/grenade-2.png differ
diff --git a/png/grenade.png b/png/grenade.png
new file mode 100644
index 000000000..944b280b0
Binary files /dev/null and b/png/grenade.png differ
diff --git a/png/griffin-shield.png b/png/griffin-shield.png
new file mode 100644
index 000000000..f47f8f51e
Binary files /dev/null and b/png/griffin-shield.png differ
diff --git a/png/griffin-symbol.png b/png/griffin-symbol.png
new file mode 100644
index 000000000..f233b4957
Binary files /dev/null and b/png/griffin-symbol.png differ
diff --git a/png/grim-reaper.png b/png/grim-reaper.png
new file mode 100644
index 000000000..a8443e801
Binary files /dev/null and b/png/grim-reaper.png differ
diff --git a/png/ground-sprout.png b/png/ground-sprout.png
new file mode 100644
index 000000000..4563cea13
Binary files /dev/null and b/png/ground-sprout.png differ
diff --git a/png/groundbreaker.png b/png/groundbreaker.png
new file mode 100644
index 000000000..a1d540e2e
Binary files /dev/null and b/png/groundbreaker.png differ
diff --git a/png/grouped-drops.png b/png/grouped-drops.png
new file mode 100644
index 000000000..f03db7641
Binary files /dev/null and b/png/grouped-drops.png differ
diff --git a/png/growth.png b/png/growth.png
new file mode 100644
index 000000000..d2866fa65
Binary files /dev/null and b/png/growth.png differ
diff --git a/png/guarded-tower.png b/png/guarded-tower.png
new file mode 100644
index 000000000..c4c1c149d
Binary files /dev/null and b/png/guarded-tower.png differ
diff --git a/png/guards.png b/png/guards.png
new file mode 100644
index 000000000..6a73c4b4c
Binary files /dev/null and b/png/guards.png differ
diff --git a/png/guatemala.png b/png/guatemala.png
new file mode 100644
index 000000000..b4643a769
Binary files /dev/null and b/png/guatemala.png differ
diff --git a/png/guillotine.png b/png/guillotine.png
new file mode 100644
index 000000000..b5434a8d9
Binary files /dev/null and b/png/guillotine.png differ
diff --git a/png/guitar-bass-head.png b/png/guitar-bass-head.png
new file mode 100644
index 000000000..2425ba3d2
Binary files /dev/null and b/png/guitar-bass-head.png differ
diff --git a/png/guitar-head.png b/png/guitar-head.png
new file mode 100644
index 000000000..a09925d51
Binary files /dev/null and b/png/guitar-head.png differ
diff --git a/png/guitar.png b/png/guitar.png
new file mode 100644
index 000000000..d4b935a46
Binary files /dev/null and b/png/guitar.png differ
diff --git a/png/gun-rose.png b/png/gun-rose.png
new file mode 100644
index 000000000..b24628229
Binary files /dev/null and b/png/gun-rose.png differ
diff --git a/png/gun-stock.png b/png/gun-stock.png
new file mode 100644
index 000000000..e4478b747
Binary files /dev/null and b/png/gun-stock.png differ
diff --git a/png/gunshot.png b/png/gunshot.png
new file mode 100644
index 000000000..5f4f3ae0f
Binary files /dev/null and b/png/gunshot.png differ
diff --git a/png/gym-bag.png b/png/gym-bag.png
new file mode 100644
index 000000000..300500990
Binary files /dev/null and b/png/gym-bag.png differ
diff --git a/png/gyroscope.png b/png/gyroscope.png
new file mode 100644
index 000000000..e02166a81
Binary files /dev/null and b/png/gyroscope.png differ
diff --git a/png/h2o.png b/png/h2o.png
new file mode 100644
index 000000000..b9c42c9af
Binary files /dev/null and b/png/h2o.png differ
diff --git a/png/habitat-dome.png b/png/habitat-dome.png
new file mode 100644
index 000000000..2e3c85bc9
Binary files /dev/null and b/png/habitat-dome.png differ
diff --git a/png/hades-symbol.png b/png/hades-symbol.png
new file mode 100644
index 000000000..09620995e
Binary files /dev/null and b/png/hades-symbol.png differ
diff --git a/png/hair-strands.png b/png/hair-strands.png
new file mode 100644
index 000000000..ba3d6764e
Binary files /dev/null and b/png/hair-strands.png differ
diff --git a/png/halberd-shuriken.png b/png/halberd-shuriken.png
new file mode 100644
index 000000000..545a2e0df
Binary files /dev/null and b/png/halberd-shuriken.png differ
diff --git a/png/halberd.png b/png/halberd.png
new file mode 100644
index 000000000..2da7e24f2
Binary files /dev/null and b/png/halberd.png differ
diff --git a/png/half-body-crawling.png b/png/half-body-crawling.png
new file mode 100644
index 000000000..53c477ecd
Binary files /dev/null and b/png/half-body-crawling.png differ
diff --git a/png/half-dead.png b/png/half-dead.png
new file mode 100644
index 000000000..ada0fdc31
Binary files /dev/null and b/png/half-dead.png differ
diff --git a/png/half-heart.png b/png/half-heart.png
new file mode 100644
index 000000000..7206d960e
Binary files /dev/null and b/png/half-heart.png differ
diff --git a/png/half-log.png b/png/half-log.png
new file mode 100644
index 000000000..1054fcce2
Binary files /dev/null and b/png/half-log.png differ
diff --git a/png/half-tornado.png b/png/half-tornado.png
new file mode 100644
index 000000000..263c90239
Binary files /dev/null and b/png/half-tornado.png differ
diff --git a/png/halt.png b/png/halt.png
new file mode 100644
index 000000000..9bfed5031
Binary files /dev/null and b/png/halt.png differ
diff --git a/png/ham-shank.png b/png/ham-shank.png
new file mode 100644
index 000000000..8906442ae
Binary files /dev/null and b/png/ham-shank.png differ
diff --git a/png/hamburger-menu.png b/png/hamburger-menu.png
new file mode 100644
index 000000000..80acbfe8e
Binary files /dev/null and b/png/hamburger-menu.png differ
diff --git a/png/hamburger.png b/png/hamburger.png
new file mode 100644
index 000000000..1649e4c9c
Binary files /dev/null and b/png/hamburger.png differ
diff --git a/png/hammer-break.png b/png/hammer-break.png
new file mode 100644
index 000000000..f03eccd96
Binary files /dev/null and b/png/hammer-break.png differ
diff --git a/png/hammer-drop.png b/png/hammer-drop.png
new file mode 100644
index 000000000..9afe54529
Binary files /dev/null and b/png/hammer-drop.png differ
diff --git a/png/hammer-nails.png b/png/hammer-nails.png
new file mode 100644
index 000000000..9cbad9b52
Binary files /dev/null and b/png/hammer-nails.png differ
diff --git a/png/hammer-sickle.png b/png/hammer-sickle.png
new file mode 100644
index 000000000..60876adc2
Binary files /dev/null and b/png/hammer-sickle.png differ
diff --git a/png/hand-2.png b/png/hand-2.png
new file mode 100644
index 000000000..9becac252
Binary files /dev/null and b/png/hand-2.png differ
diff --git a/png/hand-bag.png b/png/hand-bag.png
new file mode 100644
index 000000000..243c69556
Binary files /dev/null and b/png/hand-bag.png differ
diff --git a/png/hand-bandage.png b/png/hand-bandage.png
new file mode 100644
index 000000000..1264aceaf
Binary files /dev/null and b/png/hand-bandage.png differ
diff --git a/png/hand-grip.png b/png/hand-grip.png
new file mode 100644
index 000000000..29c0dadde
Binary files /dev/null and b/png/hand-grip.png differ
diff --git a/png/hand-of-god.png b/png/hand-of-god.png
new file mode 100644
index 000000000..ec635d170
Binary files /dev/null and b/png/hand-of-god.png differ
diff --git a/png/hand-ok.png b/png/hand-ok.png
new file mode 100644
index 000000000..9b89aea5a
Binary files /dev/null and b/png/hand-ok.png differ
diff --git a/png/hand-saw.png b/png/hand-saw.png
new file mode 100644
index 000000000..bc28e226a
Binary files /dev/null and b/png/hand-saw.png differ
diff --git a/png/hand-truck.png b/png/hand-truck.png
new file mode 100644
index 000000000..fc96078fe
Binary files /dev/null and b/png/hand-truck.png differ
diff --git a/png/hand-wing.png b/png/hand-wing.png
new file mode 100644
index 000000000..cf80b8fbf
Binary files /dev/null and b/png/hand-wing.png differ
diff --git a/png/hand.png b/png/hand.png
new file mode 100644
index 000000000..204753930
Binary files /dev/null and b/png/hand.png differ
diff --git a/png/handcuffed.png b/png/handcuffed.png
new file mode 100644
index 000000000..417561523
Binary files /dev/null and b/png/handcuffed.png differ
diff --git a/png/handcuffs.png b/png/handcuffs.png
new file mode 100644
index 000000000..4bb8df878
Binary files /dev/null and b/png/handcuffs.png differ
diff --git a/png/handheld-fan.png b/png/handheld-fan.png
new file mode 100644
index 000000000..7634b3ec3
Binary files /dev/null and b/png/handheld-fan.png differ
diff --git a/png/hang-glider-2.png b/png/hang-glider-2.png
new file mode 100644
index 000000000..dc70120bb
Binary files /dev/null and b/png/hang-glider-2.png differ
diff --git a/png/hang-glider.png b/png/hang-glider.png
new file mode 100644
index 000000000..e331523b4
Binary files /dev/null and b/png/hang-glider.png differ
diff --git a/png/hanger.png b/png/hanger.png
new file mode 100644
index 000000000..6c14f2c67
Binary files /dev/null and b/png/hanger.png differ
diff --git a/png/hanging-sign.png b/png/hanging-sign.png
new file mode 100644
index 000000000..4228ce2b9
Binary files /dev/null and b/png/hanging-sign.png differ
diff --git a/png/hanging-spider.png b/png/hanging-spider.png
new file mode 100644
index 000000000..07686dcda
Binary files /dev/null and b/png/hanging-spider.png differ
diff --git a/png/happy-skull.png b/png/happy-skull.png
new file mode 100644
index 000000000..f1e3955a7
Binary files /dev/null and b/png/happy-skull.png differ
diff --git a/png/harbor-dock.png b/png/harbor-dock.png
new file mode 100644
index 000000000..ad728fc4b
Binary files /dev/null and b/png/harbor-dock.png differ
diff --git a/png/harp.png b/png/harp.png
new file mode 100644
index 000000000..41790051b
Binary files /dev/null and b/png/harp.png differ
diff --git a/png/harpoon-chain.png b/png/harpoon-chain.png
new file mode 100644
index 000000000..fb3d02e16
Binary files /dev/null and b/png/harpoon-chain.png differ
diff --git a/png/harpoon-trident.png b/png/harpoon-trident.png
new file mode 100644
index 000000000..5d4d2b0bc
Binary files /dev/null and b/png/harpoon-trident.png differ
diff --git a/png/harpy.png b/png/harpy.png
new file mode 100644
index 000000000..87c47f646
Binary files /dev/null and b/png/harpy.png differ
diff --git a/png/harry-potter-skull.png b/png/harry-potter-skull.png
new file mode 100644
index 000000000..616e98f97
Binary files /dev/null and b/png/harry-potter-skull.png differ
diff --git a/png/hasty-grave.png b/png/hasty-grave.png
new file mode 100644
index 000000000..b5485a461
Binary files /dev/null and b/png/hasty-grave.png differ
diff --git a/png/hatchet.png b/png/hatchet.png
new file mode 100644
index 000000000..0367bcb94
Binary files /dev/null and b/png/hatchet.png differ
diff --git a/png/hatchets.png b/png/hatchets.png
new file mode 100644
index 000000000..c66e75395
Binary files /dev/null and b/png/hatchets.png differ
diff --git a/png/haunting.png b/png/haunting.png
new file mode 100644
index 000000000..f96ffeb61
Binary files /dev/null and b/png/haunting.png differ
diff --git a/png/hawk-emblem.png b/png/hawk-emblem.png
new file mode 100644
index 000000000..fccff9852
Binary files /dev/null and b/png/hawk-emblem.png differ
diff --git a/png/hazard-sign.png b/png/hazard-sign.png
new file mode 100644
index 000000000..d50e789c8
Binary files /dev/null and b/png/hazard-sign.png differ
diff --git a/png/hazmat-suit.png b/png/hazmat-suit.png
new file mode 100644
index 000000000..992dfc590
Binary files /dev/null and b/png/hazmat-suit.png differ
diff --git a/png/head-shot.png b/png/head-shot.png
new file mode 100644
index 000000000..f2e231a74
Binary files /dev/null and b/png/head-shot.png differ
diff --git a/png/headband-knot.png b/png/headband-knot.png
new file mode 100644
index 000000000..fff697fd4
Binary files /dev/null and b/png/headband-knot.png differ
diff --git a/png/headphones.png b/png/headphones.png
new file mode 100644
index 000000000..2406f7e04
Binary files /dev/null and b/png/headphones.png differ
diff --git a/png/headshot-2.png b/png/headshot-2.png
new file mode 100644
index 000000000..fba978f4b
Binary files /dev/null and b/png/headshot-2.png differ
diff --git a/png/headshot.png b/png/headshot.png
new file mode 100644
index 000000000..5b4e60012
Binary files /dev/null and b/png/headshot.png differ
diff --git a/png/healing-shield.png b/png/healing-shield.png
new file mode 100644
index 000000000..0cdc05946
Binary files /dev/null and b/png/healing-shield.png differ
diff --git a/png/healing.png b/png/healing.png
new file mode 100644
index 000000000..f65e47b16
Binary files /dev/null and b/png/healing.png differ
diff --git a/png/health-capsule.png b/png/health-capsule.png
new file mode 100644
index 000000000..de4cf6240
Binary files /dev/null and b/png/health-capsule.png differ
diff --git a/png/health-decrease.png b/png/health-decrease.png
new file mode 100644
index 000000000..f08703d7f
Binary files /dev/null and b/png/health-decrease.png differ
diff --git a/png/health-increase.png b/png/health-increase.png
new file mode 100644
index 000000000..41ec7933a
Binary files /dev/null and b/png/health-increase.png differ
diff --git a/png/health-normal.png b/png/health-normal.png
new file mode 100644
index 000000000..674044f60
Binary files /dev/null and b/png/health-normal.png differ
diff --git a/png/health-potion.png b/png/health-potion.png
new file mode 100644
index 000000000..737934e0a
Binary files /dev/null and b/png/health-potion.png differ
diff --git a/png/hearing-disabled.png b/png/hearing-disabled.png
new file mode 100644
index 000000000..06dc3040c
Binary files /dev/null and b/png/hearing-disabled.png differ
diff --git a/png/heart-armor.png b/png/heart-armor.png
new file mode 100644
index 000000000..edab00d36
Binary files /dev/null and b/png/heart-armor.png differ
diff --git a/png/heart-battery.png b/png/heart-battery.png
new file mode 100644
index 000000000..c42ad460f
Binary files /dev/null and b/png/heart-battery.png differ
diff --git a/png/heart-beats.png b/png/heart-beats.png
new file mode 100644
index 000000000..6f9d44f27
Binary files /dev/null and b/png/heart-beats.png differ
diff --git a/png/heart-bottle.png b/png/heart-bottle.png
new file mode 100644
index 000000000..93f6d4b4f
Binary files /dev/null and b/png/heart-bottle.png differ
diff --git a/png/heart-drop.png b/png/heart-drop.png
new file mode 100644
index 000000000..0d174b8ac
Binary files /dev/null and b/png/heart-drop.png differ
diff --git a/png/heart-earrings.png b/png/heart-earrings.png
new file mode 100644
index 000000000..c7ffa083e
Binary files /dev/null and b/png/heart-earrings.png differ
diff --git a/png/heart-inside.png b/png/heart-inside.png
new file mode 100644
index 000000000..fecf548bb
Binary files /dev/null and b/png/heart-inside.png differ
diff --git a/png/heart-key.png b/png/heart-key.png
new file mode 100644
index 000000000..41d3bb4d0
Binary files /dev/null and b/png/heart-key.png differ
diff --git a/png/heart-minus.png b/png/heart-minus.png
new file mode 100644
index 000000000..64e88eac2
Binary files /dev/null and b/png/heart-minus.png differ
diff --git a/png/heart-necklace.png b/png/heart-necklace.png
new file mode 100644
index 000000000..57601b188
Binary files /dev/null and b/png/heart-necklace.png differ
diff --git a/png/heart-organ.png b/png/heart-organ.png
new file mode 100644
index 000000000..2185d7517
Binary files /dev/null and b/png/heart-organ.png differ
diff --git a/png/heart-plus.png b/png/heart-plus.png
new file mode 100644
index 000000000..b1fa61e52
Binary files /dev/null and b/png/heart-plus.png differ
diff --git a/png/heart-shield.png b/png/heart-shield.png
new file mode 100644
index 000000000..35fa831d7
Binary files /dev/null and b/png/heart-shield.png differ
diff --git a/png/heart-stake.png b/png/heart-stake.png
new file mode 100644
index 000000000..068aa3fc6
Binary files /dev/null and b/png/heart-stake.png differ
diff --git a/png/heart-tower.png b/png/heart-tower.png
new file mode 100644
index 000000000..5198b73e9
Binary files /dev/null and b/png/heart-tower.png differ
diff --git a/png/heart-wings.png b/png/heart-wings.png
new file mode 100644
index 000000000..59d19461c
Binary files /dev/null and b/png/heart-wings.png differ
diff --git a/png/heartburn.png b/png/heartburn.png
new file mode 100644
index 000000000..a354922c6
Binary files /dev/null and b/png/heartburn.png differ
diff --git a/png/hearts.png b/png/hearts.png
new file mode 100644
index 000000000..aaf148359
Binary files /dev/null and b/png/hearts.png differ
diff --git a/png/heat-haze.png b/png/heat-haze.png
new file mode 100644
index 000000000..9c85ea364
Binary files /dev/null and b/png/heat-haze.png differ
diff --git a/png/heaven-gate.png b/png/heaven-gate.png
new file mode 100644
index 000000000..0dab05feb
Binary files /dev/null and b/png/heaven-gate.png differ
diff --git a/png/heavy-arrow.png b/png/heavy-arrow.png
new file mode 100644
index 000000000..6f4b36244
Binary files /dev/null and b/png/heavy-arrow.png differ
diff --git a/png/heavy-bullets.png b/png/heavy-bullets.png
new file mode 100644
index 000000000..2ffd6ec75
Binary files /dev/null and b/png/heavy-bullets.png differ
diff --git a/png/heavy-collar.png b/png/heavy-collar.png
new file mode 100644
index 000000000..5476eee0a
Binary files /dev/null and b/png/heavy-collar.png differ
diff --git a/png/heavy-fall.png b/png/heavy-fall.png
new file mode 100644
index 000000000..e2e8bcc58
Binary files /dev/null and b/png/heavy-fall.png differ
diff --git a/png/heavy-fighter.png b/png/heavy-fighter.png
new file mode 100644
index 000000000..1b1dbc7b5
Binary files /dev/null and b/png/heavy-fighter.png differ
diff --git a/png/heavy-helm.png b/png/heavy-helm.png
new file mode 100644
index 000000000..182550975
Binary files /dev/null and b/png/heavy-helm.png differ
diff --git a/png/heavy-lightning.png b/png/heavy-lightning.png
new file mode 100644
index 000000000..7622d8e28
Binary files /dev/null and b/png/heavy-lightning.png differ
diff --git a/png/heavy-rain.png b/png/heavy-rain.png
new file mode 100644
index 000000000..816637805
Binary files /dev/null and b/png/heavy-rain.png differ
diff --git a/png/heavy-thorny-triskelion.png b/png/heavy-thorny-triskelion.png
new file mode 100644
index 000000000..50ee5d023
Binary files /dev/null and b/png/heavy-thorny-triskelion.png differ
diff --git a/png/heavy-timer.png b/png/heavy-timer.png
new file mode 100644
index 000000000..532a61a72
Binary files /dev/null and b/png/heavy-timer.png differ
diff --git a/png/hedgehog.png b/png/hedgehog.png
new file mode 100644
index 000000000..c475fe661
Binary files /dev/null and b/png/hedgehog.png differ
diff --git a/png/hedjet-white-crown.png b/png/hedjet-white-crown.png
new file mode 100644
index 000000000..0c7d866f7
Binary files /dev/null and b/png/hedjet-white-crown.png differ
diff --git a/png/helicoprion.png b/png/helicoprion.png
new file mode 100644
index 000000000..ffe848045
Binary files /dev/null and b/png/helicoprion.png differ
diff --git a/png/helicopter-tail.png b/png/helicopter-tail.png
new file mode 100644
index 000000000..afd1bec2b
Binary files /dev/null and b/png/helicopter-tail.png differ
diff --git a/png/helicopter.png b/png/helicopter.png
new file mode 100644
index 000000000..514907320
Binary files /dev/null and b/png/helicopter.png differ
diff --git a/png/hell-crosses.png b/png/hell-crosses.png
new file mode 100644
index 000000000..cbb13013b
Binary files /dev/null and b/png/hell-crosses.png differ
diff --git a/png/helmet-head-shot.png b/png/helmet-head-shot.png
new file mode 100644
index 000000000..687efdabf
Binary files /dev/null and b/png/helmet-head-shot.png differ
diff --git a/png/helmet.png b/png/helmet.png
new file mode 100644
index 000000000..39027b400
Binary files /dev/null and b/png/helmet.png differ
diff --git a/png/help.png b/png/help.png
new file mode 100644
index 000000000..4f7bb5325
Binary files /dev/null and b/png/help.png differ
diff --git a/png/hemp.png b/png/hemp.png
new file mode 100644
index 000000000..c8c229762
Binary files /dev/null and b/png/hemp.png differ
diff --git a/png/heptagram.png b/png/heptagram.png
new file mode 100644
index 000000000..9e0832974
Binary files /dev/null and b/png/heptagram.png differ
diff --git a/png/heraldic-sun.png b/png/heraldic-sun.png
new file mode 100644
index 000000000..50a2b3f9b
Binary files /dev/null and b/png/heraldic-sun.png differ
diff --git a/png/herbs-bundle.png b/png/herbs-bundle.png
new file mode 100644
index 000000000..8269efd52
Binary files /dev/null and b/png/herbs-bundle.png differ
diff --git a/png/heron.png b/png/heron.png
new file mode 100644
index 000000000..cea103522
Binary files /dev/null and b/png/heron.png differ
diff --git a/png/hexagonal-nut.png b/png/hexagonal-nut.png
new file mode 100644
index 000000000..7734752a3
Binary files /dev/null and b/png/hexagonal-nut.png differ
diff --git a/png/hexes.png b/png/hexes.png
new file mode 100644
index 000000000..751d28312
Binary files /dev/null and b/png/hexes.png differ
diff --git a/png/hidden.png b/png/hidden.png
new file mode 100644
index 000000000..7190e7557
Binary files /dev/null and b/png/hidden.png differ
diff --git a/png/hieroglyph-legs.png b/png/hieroglyph-legs.png
new file mode 100644
index 000000000..39500c845
Binary files /dev/null and b/png/hieroglyph-legs.png differ
diff --git a/png/hieroglyph-y.png b/png/hieroglyph-y.png
new file mode 100644
index 000000000..6cb7963e9
Binary files /dev/null and b/png/hieroglyph-y.png differ
diff --git a/png/high-five.png b/png/high-five.png
new file mode 100644
index 000000000..9a97ebe4e
Binary files /dev/null and b/png/high-five.png differ
diff --git a/png/high-grass.png b/png/high-grass.png
new file mode 100644
index 000000000..6772edc73
Binary files /dev/null and b/png/high-grass.png differ
diff --git a/png/high-heel.png b/png/high-heel.png
new file mode 100644
index 000000000..954f01c62
Binary files /dev/null and b/png/high-heel.png differ
diff --git a/png/high-kick.png b/png/high-kick.png
new file mode 100644
index 000000000..8ceb81c7d
Binary files /dev/null and b/png/high-kick.png differ
diff --git a/png/high-punch.png b/png/high-punch.png
new file mode 100644
index 000000000..499400eeb
Binary files /dev/null and b/png/high-punch.png differ
diff --git a/png/high-shot.png b/png/high-shot.png
new file mode 100644
index 000000000..bf604ffa7
Binary files /dev/null and b/png/high-shot.png differ
diff --git a/png/high-tide.png b/png/high-tide.png
new file mode 100644
index 000000000..18517b8a4
Binary files /dev/null and b/png/high-tide.png differ
diff --git a/png/highlighter.png b/png/highlighter.png
new file mode 100644
index 000000000..e31b73b28
Binary files /dev/null and b/png/highlighter.png differ
diff --git a/png/hiking.png b/png/hiking.png
new file mode 100644
index 000000000..518002b51
Binary files /dev/null and b/png/hiking.png differ
diff --git a/png/hill-conquest.png b/png/hill-conquest.png
new file mode 100644
index 000000000..a1e0d5d17
Binary files /dev/null and b/png/hill-conquest.png differ
diff --git a/png/hill-fort.png b/png/hill-fort.png
new file mode 100644
index 000000000..8dbb94d21
Binary files /dev/null and b/png/hill-fort.png differ
diff --git a/png/hills.png b/png/hills.png
new file mode 100644
index 000000000..17408a754
Binary files /dev/null and b/png/hills.png differ
diff --git a/png/histogram.png b/png/histogram.png
new file mode 100644
index 000000000..4531bcfee
Binary files /dev/null and b/png/histogram.png differ
diff --git a/png/hive-mind.png b/png/hive-mind.png
new file mode 100644
index 000000000..51ae2cb2d
Binary files /dev/null and b/png/hive-mind.png differ
diff --git a/png/hive.png b/png/hive.png
new file mode 100644
index 000000000..ead73909a
Binary files /dev/null and b/png/hive.png differ
diff --git a/png/hobbit-door.png b/png/hobbit-door.png
new file mode 100644
index 000000000..99f6af015
Binary files /dev/null and b/png/hobbit-door.png differ
diff --git a/png/hobbit-dwelling.png b/png/hobbit-dwelling.png
new file mode 100644
index 000000000..c7b1df838
Binary files /dev/null and b/png/hobbit-dwelling.png differ
diff --git a/png/hockey.png b/png/hockey.png
new file mode 100644
index 000000000..20971e63c
Binary files /dev/null and b/png/hockey.png differ
diff --git a/png/hole-ladder.png b/png/hole-ladder.png
new file mode 100644
index 000000000..650bbeee2
Binary files /dev/null and b/png/hole-ladder.png differ
diff --git a/png/hole.png b/png/hole.png
new file mode 100644
index 000000000..7624e2167
Binary files /dev/null and b/png/hole.png differ
diff --git a/png/hollow-cat.png b/png/hollow-cat.png
new file mode 100644
index 000000000..6f67dd40c
Binary files /dev/null and b/png/hollow-cat.png differ
diff --git a/png/holosphere.png b/png/holosphere.png
new file mode 100644
index 000000000..c8696f216
Binary files /dev/null and b/png/holosphere.png differ
diff --git a/png/holy-grail.png b/png/holy-grail.png
new file mode 100644
index 000000000..76e27d3be
Binary files /dev/null and b/png/holy-grail.png differ
diff --git a/png/holy-hand-grenade.png b/png/holy-hand-grenade.png
new file mode 100644
index 000000000..23222d220
Binary files /dev/null and b/png/holy-hand-grenade.png differ
diff --git a/png/holy-oak.png b/png/holy-oak.png
new file mode 100644
index 000000000..38057233e
Binary files /dev/null and b/png/holy-oak.png differ
diff --git a/png/holy-symbol.png b/png/holy-symbol.png
new file mode 100644
index 000000000..e39b9af29
Binary files /dev/null and b/png/holy-symbol.png differ
diff --git a/png/holy-water.png b/png/holy-water.png
new file mode 100644
index 000000000..fc623c6d5
Binary files /dev/null and b/png/holy-water.png differ
diff --git a/png/home-garage.png b/png/home-garage.png
new file mode 100644
index 000000000..53ff8aa44
Binary files /dev/null and b/png/home-garage.png differ
diff --git a/png/honey-jar.png b/png/honey-jar.png
new file mode 100644
index 000000000..7fb043ded
Binary files /dev/null and b/png/honey-jar.png differ
diff --git a/png/honeycomb.png b/png/honeycomb.png
new file mode 100644
index 000000000..38ceb4e6d
Binary files /dev/null and b/png/honeycomb.png differ
diff --git a/png/honeypot.png b/png/honeypot.png
new file mode 100644
index 000000000..85899bd5d
Binary files /dev/null and b/png/honeypot.png differ
diff --git a/png/hood.png b/png/hood.png
new file mode 100644
index 000000000..a71eb8ee5
Binary files /dev/null and b/png/hood.png differ
diff --git a/png/hooded-assassin.png b/png/hooded-assassin.png
new file mode 100644
index 000000000..48fe18d62
Binary files /dev/null and b/png/hooded-assassin.png differ
diff --git a/png/hooded-figure.png b/png/hooded-figure.png
new file mode 100644
index 000000000..1e1245de8
Binary files /dev/null and b/png/hooded-figure.png differ
diff --git a/png/hoodie.png b/png/hoodie.png
new file mode 100644
index 000000000..5a4ae7895
Binary files /dev/null and b/png/hoodie.png differ
diff --git a/png/hoof.png b/png/hoof.png
new file mode 100644
index 000000000..c250790ce
Binary files /dev/null and b/png/hoof.png differ
diff --git a/png/hook.png b/png/hook.png
new file mode 100644
index 000000000..576a47530
Binary files /dev/null and b/png/hook.png differ
diff --git a/png/hops.png b/png/hops.png
new file mode 100644
index 000000000..1770aaeb9
Binary files /dev/null and b/png/hops.png differ
diff --git a/png/horizon-road.png b/png/horizon-road.png
new file mode 100644
index 000000000..58c743cba
Binary files /dev/null and b/png/horizon-road.png differ
diff --git a/png/horizontal-flip.png b/png/horizontal-flip.png
new file mode 100644
index 000000000..b7a06cd1a
Binary files /dev/null and b/png/horizontal-flip.png differ
diff --git a/png/horn-internal.png b/png/horn-internal.png
new file mode 100644
index 000000000..47a6a7ab6
Binary files /dev/null and b/png/horn-internal.png differ
diff --git a/png/horned-helm.png b/png/horned-helm.png
new file mode 100644
index 000000000..96946b255
Binary files /dev/null and b/png/horned-helm.png differ
diff --git a/png/horned-reptile.png b/png/horned-reptile.png
new file mode 100644
index 000000000..c69aecc93
Binary files /dev/null and b/png/horned-reptile.png differ
diff --git a/png/horned-skull.png b/png/horned-skull.png
new file mode 100644
index 000000000..8974dffa7
Binary files /dev/null and b/png/horned-skull.png differ
diff --git a/png/horse-head-2.png b/png/horse-head-2.png
new file mode 100644
index 000000000..0b89a2d07
Binary files /dev/null and b/png/horse-head-2.png differ
diff --git a/png/horse-head.png b/png/horse-head.png
new file mode 100644
index 000000000..fceb34135
Binary files /dev/null and b/png/horse-head.png differ
diff --git a/png/horseshoe.png b/png/horseshoe.png
new file mode 100644
index 000000000..22276ee1f
Binary files /dev/null and b/png/horseshoe.png differ
diff --git a/png/horus.png b/png/horus.png
new file mode 100644
index 000000000..e698e60ea
Binary files /dev/null and b/png/horus.png differ
diff --git a/png/hospital-cross.png b/png/hospital-cross.png
new file mode 100644
index 000000000..dceabb568
Binary files /dev/null and b/png/hospital-cross.png differ
diff --git a/png/hospital.png b/png/hospital.png
new file mode 100644
index 000000000..c518546ca
Binary files /dev/null and b/png/hospital.png differ
diff --git a/png/hot-dog.png b/png/hot-dog.png
new file mode 100644
index 000000000..893ee2222
Binary files /dev/null and b/png/hot-dog.png differ
diff --git a/png/hot-meal.png b/png/hot-meal.png
new file mode 100644
index 000000000..efe0dd2dc
Binary files /dev/null and b/png/hot-meal.png differ
diff --git a/png/hot-spices.png b/png/hot-spices.png
new file mode 100644
index 000000000..fe9694869
Binary files /dev/null and b/png/hot-spices.png differ
diff --git a/png/hot-surface.png b/png/hot-surface.png
new file mode 100644
index 000000000..1db1e3070
Binary files /dev/null and b/png/hot-surface.png differ
diff --git a/png/hound.png b/png/hound.png
new file mode 100644
index 000000000..ffb9a5a8e
Binary files /dev/null and b/png/hound.png differ
diff --git a/png/hourglass.png b/png/hourglass.png
new file mode 100644
index 000000000..6c98f3ac4
Binary files /dev/null and b/png/hourglass.png differ
diff --git a/png/house-keys.png b/png/house-keys.png
new file mode 100644
index 000000000..dfdd7a419
Binary files /dev/null and b/png/house-keys.png differ
diff --git a/png/house.png b/png/house.png
new file mode 100644
index 000000000..1597e16ca
Binary files /dev/null and b/png/house.png differ
diff --git a/png/human-cannonball.png b/png/human-cannonball.png
new file mode 100644
index 000000000..24d2f3599
Binary files /dev/null and b/png/human-cannonball.png differ
diff --git a/png/human-ear.png b/png/human-ear.png
new file mode 100644
index 000000000..97e4dbbed
Binary files /dev/null and b/png/human-ear.png differ
diff --git a/png/human-pyramid.png b/png/human-pyramid.png
new file mode 100644
index 000000000..8bd037f77
Binary files /dev/null and b/png/human-pyramid.png differ
diff --git a/png/human-target.png b/png/human-target.png
new file mode 100644
index 000000000..b05a48a69
Binary files /dev/null and b/png/human-target.png differ
diff --git a/png/hummingbird.png b/png/hummingbird.png
new file mode 100644
index 000000000..2a9504f2a
Binary files /dev/null and b/png/hummingbird.png differ
diff --git a/png/hungary.png b/png/hungary.png
new file mode 100644
index 000000000..b6b369972
Binary files /dev/null and b/png/hungary.png differ
diff --git a/png/hunter-eyes.png b/png/hunter-eyes.png
new file mode 100644
index 000000000..914a38d2b
Binary files /dev/null and b/png/hunter-eyes.png differ
diff --git a/png/hunting-bolas.png b/png/hunting-bolas.png
new file mode 100644
index 000000000..d22c341de
Binary files /dev/null and b/png/hunting-bolas.png differ
diff --git a/png/hunting-horn.png b/png/hunting-horn.png
new file mode 100644
index 000000000..18ae11114
Binary files /dev/null and b/png/hunting-horn.png differ
diff --git a/png/hut.png b/png/hut.png
new file mode 100644
index 000000000..d9589da7a
Binary files /dev/null and b/png/hut.png differ
diff --git a/png/huts-village.png b/png/huts-village.png
new file mode 100644
index 000000000..46d85f0dd
Binary files /dev/null and b/png/huts-village.png differ
diff --git a/png/hydra-shot.png b/png/hydra-shot.png
new file mode 100644
index 000000000..da9a6c74d
Binary files /dev/null and b/png/hydra-shot.png differ
diff --git a/png/hydra.png b/png/hydra.png
new file mode 100644
index 000000000..7e8e1efa0
Binary files /dev/null and b/png/hydra.png differ
diff --git a/png/hyena-head.png b/png/hyena-head.png
new file mode 100644
index 000000000..cd35c822a
Binary files /dev/null and b/png/hyena-head.png differ
diff --git a/png/hypersonic-bolt.png b/png/hypersonic-bolt.png
new file mode 100644
index 000000000..93b0630ea
Binary files /dev/null and b/png/hypersonic-bolt.png differ
diff --git a/png/hypersonic-melon.png b/png/hypersonic-melon.png
new file mode 100644
index 000000000..3d8b8aae3
Binary files /dev/null and b/png/hypersonic-melon.png differ
diff --git a/png/hypodermic-test.png b/png/hypodermic-test.png
new file mode 100644
index 000000000..2a6c5db14
Binary files /dev/null and b/png/hypodermic-test.png differ
diff --git a/png/i-beam.png b/png/i-beam.png
new file mode 100644
index 000000000..2e12d2f80
Binary files /dev/null and b/png/i-beam.png differ
diff --git a/png/i-brick.png b/png/i-brick.png
new file mode 100644
index 000000000..68c2f2804
Binary files /dev/null and b/png/i-brick.png differ
diff --git a/png/ibis.png b/png/ibis.png
new file mode 100644
index 000000000..4cdc5dd62
Binary files /dev/null and b/png/ibis.png differ
diff --git a/png/icarus.png b/png/icarus.png
new file mode 100644
index 000000000..f48c0eb76
Binary files /dev/null and b/png/icarus.png differ
diff --git a/png/ice-bolt.png b/png/ice-bolt.png
new file mode 100644
index 000000000..ebf1f0c65
Binary files /dev/null and b/png/ice-bolt.png differ
diff --git a/png/ice-bomb.png b/png/ice-bomb.png
new file mode 100644
index 000000000..4adac05cb
Binary files /dev/null and b/png/ice-bomb.png differ
diff --git a/png/ice-cream-cone.png b/png/ice-cream-cone.png
new file mode 100644
index 000000000..557adcb2a
Binary files /dev/null and b/png/ice-cream-cone.png differ
diff --git a/png/ice-cream-scoop.png b/png/ice-cream-scoop.png
new file mode 100644
index 000000000..7a8a2bddc
Binary files /dev/null and b/png/ice-cream-scoop.png differ
diff --git a/png/ice-cube.png b/png/ice-cube.png
new file mode 100644
index 000000000..44f217333
Binary files /dev/null and b/png/ice-cube.png differ
diff --git a/png/ice-cubes.png b/png/ice-cubes.png
new file mode 100644
index 000000000..8171b1c84
Binary files /dev/null and b/png/ice-cubes.png differ
diff --git a/png/ice-golem.png b/png/ice-golem.png
new file mode 100644
index 000000000..0818cdafd
Binary files /dev/null and b/png/ice-golem.png differ
diff --git a/png/ice-iris.png b/png/ice-iris.png
new file mode 100644
index 000000000..64b341b2a
Binary files /dev/null and b/png/ice-iris.png differ
diff --git a/png/ice-pop.png b/png/ice-pop.png
new file mode 100644
index 000000000..e1889d7a9
Binary files /dev/null and b/png/ice-pop.png differ
diff --git a/png/ice-shield.png b/png/ice-shield.png
new file mode 100644
index 000000000..4a9a17d99
Binary files /dev/null and b/png/ice-shield.png differ
diff --git a/png/ice-skate.png b/png/ice-skate.png
new file mode 100644
index 000000000..cfc18674a
Binary files /dev/null and b/png/ice-skate.png differ
diff --git a/png/ice-spear.png b/png/ice-spear.png
new file mode 100644
index 000000000..8c5ce3809
Binary files /dev/null and b/png/ice-spear.png differ
diff --git a/png/ice-spell-cast.png b/png/ice-spell-cast.png
new file mode 100644
index 000000000..231e6f1e7
Binary files /dev/null and b/png/ice-spell-cast.png differ
diff --git a/png/iceberg.png b/png/iceberg.png
new file mode 100644
index 000000000..dd17b7734
Binary files /dev/null and b/png/iceberg.png differ
diff --git a/png/icebergs.png b/png/icebergs.png
new file mode 100644
index 000000000..9958dbb75
Binary files /dev/null and b/png/icebergs.png differ
diff --git a/png/iceland.png b/png/iceland.png
new file mode 100644
index 000000000..6de1adc59
Binary files /dev/null and b/png/iceland.png differ
diff --git a/png/icicles-aura.png b/png/icicles-aura.png
new file mode 100644
index 000000000..b260bb8bb
Binary files /dev/null and b/png/icicles-aura.png differ
diff --git a/png/icicles-fence.png b/png/icicles-fence.png
new file mode 100644
index 000000000..acf69e571
Binary files /dev/null and b/png/icicles-fence.png differ
diff --git a/png/id-card.png b/png/id-card.png
new file mode 100644
index 000000000..f863c0a7e
Binary files /dev/null and b/png/id-card.png differ
diff --git a/png/idea.png b/png/idea.png
new file mode 100644
index 000000000..2b1e8e5b9
Binary files /dev/null and b/png/idea.png differ
diff --git a/png/ifrit.png b/png/ifrit.png
new file mode 100644
index 000000000..881e397ef
Binary files /dev/null and b/png/ifrit.png differ
diff --git a/png/igloo.png b/png/igloo.png
new file mode 100644
index 000000000..0861ca748
Binary files /dev/null and b/png/igloo.png differ
diff --git a/png/imbricated-arrows.png b/png/imbricated-arrows.png
new file mode 100644
index 000000000..97d1e1e4e
Binary files /dev/null and b/png/imbricated-arrows.png differ
diff --git a/png/imp-laugh.png b/png/imp-laugh.png
new file mode 100644
index 000000000..078c6f78b
Binary files /dev/null and b/png/imp-laugh.png differ
diff --git a/png/imp.png b/png/imp.png
new file mode 100644
index 000000000..a862516b0
Binary files /dev/null and b/png/imp.png differ
diff --git a/png/impact-point.png b/png/impact-point.png
new file mode 100644
index 000000000..2036c6942
Binary files /dev/null and b/png/impact-point.png differ
diff --git a/png/imperial-crown.png b/png/imperial-crown.png
new file mode 100644
index 000000000..daa78ec62
Binary files /dev/null and b/png/imperial-crown.png differ
diff --git a/png/implosion.png b/png/implosion.png
new file mode 100644
index 000000000..4d04c9dbf
Binary files /dev/null and b/png/implosion.png differ
diff --git a/png/imprisoned.png b/png/imprisoned.png
new file mode 100644
index 000000000..42aec03bd
Binary files /dev/null and b/png/imprisoned.png differ
diff --git a/png/inauguration.png b/png/inauguration.png
new file mode 100644
index 000000000..3d72f34c4
Binary files /dev/null and b/png/inauguration.png differ
diff --git a/png/incense.png b/png/incense.png
new file mode 100644
index 000000000..2643187f3
Binary files /dev/null and b/png/incense.png differ
diff --git a/png/incisors.png b/png/incisors.png
new file mode 100644
index 000000000..cb231679c
Binary files /dev/null and b/png/incisors.png differ
diff --git a/png/incoming-rocket.png b/png/incoming-rocket.png
new file mode 100644
index 000000000..d48a3bb0f
Binary files /dev/null and b/png/incoming-rocket.png differ
diff --git a/png/incubator.png b/png/incubator.png
new file mode 100644
index 000000000..43eaa0b48
Binary files /dev/null and b/png/incubator.png differ
diff --git a/png/india-gate.png b/png/india-gate.png
new file mode 100644
index 000000000..f92736248
Binary files /dev/null and b/png/india-gate.png differ
diff --git a/png/indian-palace.png b/png/indian-palace.png
new file mode 100644
index 000000000..5462e1430
Binary files /dev/null and b/png/indian-palace.png differ
diff --git a/png/inferno-bomb.png b/png/inferno-bomb.png
new file mode 100644
index 000000000..5d09124a4
Binary files /dev/null and b/png/inferno-bomb.png differ
diff --git a/png/infested-mass.png b/png/infested-mass.png
new file mode 100644
index 000000000..054bf4327
Binary files /dev/null and b/png/infested-mass.png differ
diff --git a/png/infinity.png b/png/infinity.png
new file mode 100644
index 000000000..1ca0a1746
Binary files /dev/null and b/png/infinity.png differ
diff --git a/png/info.png b/png/info.png
new file mode 100644
index 000000000..f0a8a8408
Binary files /dev/null and b/png/info.png differ
diff --git a/png/injustice.png b/png/injustice.png
new file mode 100644
index 000000000..cfd41fbb1
Binary files /dev/null and b/png/injustice.png differ
diff --git a/png/ink-swirl.png b/png/ink-swirl.png
new file mode 100644
index 000000000..2438156e1
Binary files /dev/null and b/png/ink-swirl.png differ
diff --git a/png/inner-self.png b/png/inner-self.png
new file mode 100644
index 000000000..5f3f89d8a
Binary files /dev/null and b/png/inner-self.png differ
diff --git a/png/insect-jaws.png b/png/insect-jaws.png
new file mode 100644
index 000000000..c67eba3e3
Binary files /dev/null and b/png/insect-jaws.png differ
diff --git a/png/inspiration.png b/png/inspiration.png
new file mode 100644
index 000000000..d5a388cc9
Binary files /dev/null and b/png/inspiration.png differ
diff --git a/png/interceptor-ship.png b/png/interceptor-ship.png
new file mode 100644
index 000000000..574a59331
Binary files /dev/null and b/png/interceptor-ship.png differ
diff --git a/png/interdiction.png b/png/interdiction.png
new file mode 100644
index 000000000..8cb4b6964
Binary files /dev/null and b/png/interdiction.png differ
diff --git a/png/interlaced-tentacles.png b/png/interlaced-tentacles.png
new file mode 100644
index 000000000..49e329e30
Binary files /dev/null and b/png/interlaced-tentacles.png differ
diff --git a/png/interleaved-arrows.png b/png/interleaved-arrows.png
new file mode 100644
index 000000000..6e30cb71c
Binary files /dev/null and b/png/interleaved-arrows.png differ
diff --git a/png/interleaved-claws.png b/png/interleaved-claws.png
new file mode 100644
index 000000000..e52729645
Binary files /dev/null and b/png/interleaved-claws.png differ
diff --git a/png/internal-injury.png b/png/internal-injury.png
new file mode 100644
index 000000000..6d67b30b8
Binary files /dev/null and b/png/internal-injury.png differ
diff --git a/png/internal-organ.png b/png/internal-organ.png
new file mode 100644
index 000000000..a263054c3
Binary files /dev/null and b/png/internal-organ.png differ
diff --git a/png/interstellar-path.png b/png/interstellar-path.png
new file mode 100644
index 000000000..e43284464
Binary files /dev/null and b/png/interstellar-path.png differ
diff --git a/png/intricate-necklace.png b/png/intricate-necklace.png
new file mode 100644
index 000000000..67376baf9
Binary files /dev/null and b/png/intricate-necklace.png differ
diff --git a/png/inverted-dice-1.png b/png/inverted-dice-1.png
new file mode 100644
index 000000000..d66ff32d9
Binary files /dev/null and b/png/inverted-dice-1.png differ
diff --git a/png/inverted-dice-2.png b/png/inverted-dice-2.png
new file mode 100644
index 000000000..94b13d361
Binary files /dev/null and b/png/inverted-dice-2.png differ
diff --git a/png/inverted-dice-3.png b/png/inverted-dice-3.png
new file mode 100644
index 000000000..283a65553
Binary files /dev/null and b/png/inverted-dice-3.png differ
diff --git a/png/inverted-dice-4.png b/png/inverted-dice-4.png
new file mode 100644
index 000000000..eb3dd9012
Binary files /dev/null and b/png/inverted-dice-4.png differ
diff --git a/png/inverted-dice-5.png b/png/inverted-dice-5.png
new file mode 100644
index 000000000..5e5162b39
Binary files /dev/null and b/png/inverted-dice-5.png differ
diff --git a/png/inverted-dice-6.png b/png/inverted-dice-6.png
new file mode 100644
index 000000000..d5bdcdecb
Binary files /dev/null and b/png/inverted-dice-6.png differ
diff --git a/png/invisible-face.png b/png/invisible-face.png
new file mode 100644
index 000000000..78831f6fa
Binary files /dev/null and b/png/invisible-face.png differ
diff --git a/png/invisible.png b/png/invisible.png
new file mode 100644
index 000000000..a8e4df1cd
Binary files /dev/null and b/png/invisible.png differ
diff --git a/png/ion-cannon-blast.png b/png/ion-cannon-blast.png
new file mode 100644
index 000000000..bcaf99b95
Binary files /dev/null and b/png/ion-cannon-blast.png differ
diff --git a/png/ionic-column.png b/png/ionic-column.png
new file mode 100644
index 000000000..d00e082c5
Binary files /dev/null and b/png/ionic-column.png differ
diff --git a/png/iraq.png b/png/iraq.png
new file mode 100644
index 000000000..5cb590a80
Binary files /dev/null and b/png/iraq.png differ
diff --git a/png/iron-cross.png b/png/iron-cross.png
new file mode 100644
index 000000000..0d7cf868e
Binary files /dev/null and b/png/iron-cross.png differ
diff --git a/png/iron-hulled-warship.png b/png/iron-hulled-warship.png
new file mode 100644
index 000000000..adc76703c
Binary files /dev/null and b/png/iron-hulled-warship.png differ
diff --git a/png/iron-mask.png b/png/iron-mask.png
new file mode 100644
index 000000000..f58b7f694
Binary files /dev/null and b/png/iron-mask.png differ
diff --git a/png/island.png b/png/island.png
new file mode 100644
index 000000000..c8ad95279
Binary files /dev/null and b/png/island.png differ
diff --git a/png/italia.png b/png/italia.png
new file mode 100644
index 000000000..ab1f3da5a
Binary files /dev/null and b/png/italia.png differ
diff --git a/png/ivory-tusks.png b/png/ivory-tusks.png
new file mode 100644
index 000000000..0252a3fd7
Binary files /dev/null and b/png/ivory-tusks.png differ
diff --git a/png/j-brick.png b/png/j-brick.png
new file mode 100644
index 000000000..50aa5ca0c
Binary files /dev/null and b/png/j-brick.png differ
diff --git a/png/jack-plug.png b/png/jack-plug.png
new file mode 100644
index 000000000..d60f742c7
Binary files /dev/null and b/png/jack-plug.png differ
diff --git a/png/james-bond-aperture.png b/png/james-bond-aperture.png
new file mode 100644
index 000000000..2d589705d
Binary files /dev/null and b/png/james-bond-aperture.png differ
diff --git a/png/japan.png b/png/japan.png
new file mode 100644
index 000000000..e90ca2970
Binary files /dev/null and b/png/japan.png differ
diff --git a/png/japanese-bridge.png b/png/japanese-bridge.png
new file mode 100644
index 000000000..8364bf3ec
Binary files /dev/null and b/png/japanese-bridge.png differ
diff --git a/png/jasmine.png b/png/jasmine.png
new file mode 100644
index 000000000..75f9a5254
Binary files /dev/null and b/png/jasmine.png differ
diff --git a/png/jason-mask.png b/png/jason-mask.png
new file mode 100644
index 000000000..4d2026e68
Binary files /dev/null and b/png/jason-mask.png differ
diff --git a/png/jawbone.png b/png/jawbone.png
new file mode 100644
index 000000000..175522576
Binary files /dev/null and b/png/jawbone.png differ
diff --git a/png/jawless-cyclop.png b/png/jawless-cyclop.png
new file mode 100644
index 000000000..fb3e23b5e
Binary files /dev/null and b/png/jawless-cyclop.png differ
diff --git a/png/jeep-2.png b/png/jeep-2.png
new file mode 100644
index 000000000..93f1cc4ee
Binary files /dev/null and b/png/jeep-2.png differ
diff --git a/png/jeep.png b/png/jeep.png
new file mode 100644
index 000000000..8a29fec88
Binary files /dev/null and b/png/jeep.png differ
diff --git a/png/jelly-beans.png b/png/jelly-beans.png
new file mode 100644
index 000000000..e4ae178a5
Binary files /dev/null and b/png/jelly-beans.png differ
diff --git a/png/jelly.png b/png/jelly.png
new file mode 100644
index 000000000..fe62649d5
Binary files /dev/null and b/png/jelly.png differ
diff --git a/png/jellyfish.png b/png/jellyfish.png
new file mode 100644
index 000000000..c32f295f2
Binary files /dev/null and b/png/jellyfish.png differ
diff --git a/png/jerrycan.png b/png/jerrycan.png
new file mode 100644
index 000000000..6d5df6f8e
Binary files /dev/null and b/png/jerrycan.png differ
diff --git a/png/jerusalem-cross.png b/png/jerusalem-cross.png
new file mode 100644
index 000000000..50affd94e
Binary files /dev/null and b/png/jerusalem-cross.png differ
diff --git a/png/jester-hat.png b/png/jester-hat.png
new file mode 100644
index 000000000..a809e7b86
Binary files /dev/null and b/png/jester-hat.png differ
diff --git a/png/jet-fighter.png b/png/jet-fighter.png
new file mode 100644
index 000000000..47c0604b6
Binary files /dev/null and b/png/jet-fighter.png differ
diff --git a/png/jet-pack.png b/png/jet-pack.png
new file mode 100644
index 000000000..8ce311908
Binary files /dev/null and b/png/jet-pack.png differ
diff --git a/png/jetpack.png b/png/jetpack.png
new file mode 100644
index 000000000..703ae9665
Binary files /dev/null and b/png/jetpack.png differ
diff --git a/png/jewel-crown.png b/png/jewel-crown.png
new file mode 100644
index 000000000..34861c92c
Binary files /dev/null and b/png/jewel-crown.png differ
diff --git a/png/jeweled-chalice.png b/png/jeweled-chalice.png
new file mode 100644
index 000000000..d5950d672
Binary files /dev/null and b/png/jeweled-chalice.png differ
diff --git a/png/jigsaw-box.png b/png/jigsaw-box.png
new file mode 100644
index 000000000..f7dd97ae2
Binary files /dev/null and b/png/jigsaw-box.png differ
diff --git a/png/jigsaw-piece.png b/png/jigsaw-piece.png
new file mode 100644
index 000000000..7adf6368a
Binary files /dev/null and b/png/jigsaw-piece.png differ
diff --git a/png/join.png b/png/join.png
new file mode 100644
index 000000000..70c48fc8e
Binary files /dev/null and b/png/join.png differ
diff --git a/png/joint.png b/png/joint.png
new file mode 100644
index 000000000..58bb331e3
Binary files /dev/null and b/png/joint.png differ
diff --git a/png/journey.png b/png/journey.png
new file mode 100644
index 000000000..a94507494
Binary files /dev/null and b/png/journey.png differ
diff --git a/png/joystick.png b/png/joystick.png
new file mode 100644
index 000000000..1a0289af6
Binary files /dev/null and b/png/joystick.png differ
diff --git a/png/jug.png b/png/jug.png
new file mode 100644
index 000000000..0d6ec998b
Binary files /dev/null and b/png/jug.png differ
diff --git a/png/juggler.png b/png/juggler.png
new file mode 100644
index 000000000..610441417
Binary files /dev/null and b/png/juggler.png differ
diff --git a/png/juggling-clubs.png b/png/juggling-clubs.png
new file mode 100644
index 000000000..2250f4988
Binary files /dev/null and b/png/juggling-clubs.png differ
diff --git a/png/juggling-seal.png b/png/juggling-seal.png
new file mode 100644
index 000000000..24a87b5fd
Binary files /dev/null and b/png/juggling-seal.png differ
diff --git a/png/jump-across.png b/png/jump-across.png
new file mode 100644
index 000000000..b17c9c49b
Binary files /dev/null and b/png/jump-across.png differ
diff --git a/png/jumping-dog.png b/png/jumping-dog.png
new file mode 100644
index 000000000..a83a1e22c
Binary files /dev/null and b/png/jumping-dog.png differ
diff --git a/png/jumping-rope.png b/png/jumping-rope.png
new file mode 100644
index 000000000..c0193128f
Binary files /dev/null and b/png/jumping-rope.png differ
diff --git a/png/jungle.png b/png/jungle.png
new file mode 100644
index 000000000..b50de447f
Binary files /dev/null and b/png/jungle.png differ
diff --git a/png/jupiter.png b/png/jupiter.png
new file mode 100644
index 000000000..2da6cc8b6
Binary files /dev/null and b/png/jupiter.png differ
diff --git a/png/justice-star.png b/png/justice-star.png
new file mode 100644
index 000000000..71242e85a
Binary files /dev/null and b/png/justice-star.png differ
diff --git a/png/kaleidoscope-pearls.png b/png/kaleidoscope-pearls.png
new file mode 100644
index 000000000..2a0626769
Binary files /dev/null and b/png/kaleidoscope-pearls.png differ
diff --git a/png/kangaroo.png b/png/kangaroo.png
new file mode 100644
index 000000000..7f93c5a69
Binary files /dev/null and b/png/kangaroo.png differ
diff --git a/png/katana.png b/png/katana.png
new file mode 100644
index 000000000..e3ca4eae8
Binary files /dev/null and b/png/katana.png differ
diff --git a/png/kebab-spit.png b/png/kebab-spit.png
new file mode 100644
index 000000000..8953fb119
Binary files /dev/null and b/png/kebab-spit.png differ
diff --git a/png/kenku-head.png b/png/kenku-head.png
new file mode 100644
index 000000000..dde01b7f1
Binary files /dev/null and b/png/kenku-head.png differ
diff --git a/png/kenya.png b/png/kenya.png
new file mode 100644
index 000000000..23979ba7b
Binary files /dev/null and b/png/kenya.png differ
diff --git a/png/ketchup.png b/png/ketchup.png
new file mode 100644
index 000000000..1825e2b39
Binary files /dev/null and b/png/ketchup.png differ
diff --git a/png/kevlar-vest.png b/png/kevlar-vest.png
new file mode 100644
index 000000000..56520a506
Binary files /dev/null and b/png/kevlar-vest.png differ
diff --git a/png/kevlar.png b/png/kevlar.png
new file mode 100644
index 000000000..e57d0d223
Binary files /dev/null and b/png/kevlar.png differ
diff --git a/png/key-2.png b/png/key-2.png
new file mode 100644
index 000000000..3cefc1f21
Binary files /dev/null and b/png/key-2.png differ
diff --git a/png/key-card.png b/png/key-card.png
new file mode 100644
index 000000000..283cf7f0a
Binary files /dev/null and b/png/key-card.png differ
diff --git a/png/key-lock.png b/png/key-lock.png
new file mode 100644
index 000000000..e4cb13a77
Binary files /dev/null and b/png/key-lock.png differ
diff --git a/png/key.png b/png/key.png
new file mode 100644
index 000000000..7d6c71770
Binary files /dev/null and b/png/key.png differ
diff --git a/png/keyboard.png b/png/keyboard.png
new file mode 100644
index 000000000..147761780
Binary files /dev/null and b/png/keyboard.png differ
diff --git a/png/keyring.png b/png/keyring.png
new file mode 100644
index 000000000..1600bd60c
Binary files /dev/null and b/png/keyring.png differ
diff --git a/png/kick-scooter.png b/png/kick-scooter.png
new file mode 100644
index 000000000..d51ab8dda
Binary files /dev/null and b/png/kick-scooter.png differ
diff --git a/png/kid-slide.png b/png/kid-slide.png
new file mode 100644
index 000000000..12d9e8ea1
Binary files /dev/null and b/png/kid-slide.png differ
diff --git a/png/kidneys.png b/png/kidneys.png
new file mode 100644
index 000000000..8e087b11d
Binary files /dev/null and b/png/kidneys.png differ
diff --git a/png/kimono.png b/png/kimono.png
new file mode 100644
index 000000000..9621cab0a
Binary files /dev/null and b/png/kimono.png differ
diff --git a/png/kindle.png b/png/kindle.png
new file mode 100644
index 000000000..b0225918e
Binary files /dev/null and b/png/kindle.png differ
diff --git a/png/king-ju-mask.png b/png/king-ju-mask.png
new file mode 100644
index 000000000..bbea59411
Binary files /dev/null and b/png/king-ju-mask.png differ
diff --git a/png/king.png b/png/king.png
new file mode 100644
index 000000000..0f27009cf
Binary files /dev/null and b/png/king.png differ
diff --git a/png/kitchen-knives.png b/png/kitchen-knives.png
new file mode 100644
index 000000000..9e1269aec
Binary files /dev/null and b/png/kitchen-knives.png differ
diff --git a/png/kitchen-scale.png b/png/kitchen-scale.png
new file mode 100644
index 000000000..bbb2ca2ce
Binary files /dev/null and b/png/kitchen-scale.png differ
diff --git a/png/kitchen-tap.png b/png/kitchen-tap.png
new file mode 100644
index 000000000..839a14f39
Binary files /dev/null and b/png/kitchen-tap.png differ
diff --git a/png/kite.png b/png/kite.png
new file mode 100644
index 000000000..72274d1f7
Binary files /dev/null and b/png/kite.png differ
diff --git a/png/kiwi-bird.png b/png/kiwi-bird.png
new file mode 100644
index 000000000..3ac2d3875
Binary files /dev/null and b/png/kiwi-bird.png differ
diff --git a/png/kiwi-fruit.png b/png/kiwi-fruit.png
new file mode 100644
index 000000000..68b2aa7fc
Binary files /dev/null and b/png/kiwi-fruit.png differ
diff --git a/png/klingon.png b/png/klingon.png
new file mode 100644
index 000000000..7ea2c5e64
Binary files /dev/null and b/png/klingon.png differ
diff --git a/png/knapsack.png b/png/knapsack.png
new file mode 100644
index 000000000..80a34aeee
Binary files /dev/null and b/png/knapsack.png differ
diff --git a/png/knee-bandage.png b/png/knee-bandage.png
new file mode 100644
index 000000000..a9c38ec5a
Binary files /dev/null and b/png/knee-bandage.png differ
diff --git a/png/knee-cap.png b/png/knee-cap.png
new file mode 100644
index 000000000..0ded4a672
Binary files /dev/null and b/png/knee-cap.png differ
diff --git a/png/knee-pad.png b/png/knee-pad.png
new file mode 100644
index 000000000..8448d051d
Binary files /dev/null and b/png/knee-pad.png differ
diff --git a/png/kneeling.png b/png/kneeling.png
new file mode 100644
index 000000000..8857583b3
Binary files /dev/null and b/png/kneeling.png differ
diff --git a/png/knife-fork.png b/png/knife-fork.png
new file mode 100644
index 000000000..a69f2955b
Binary files /dev/null and b/png/knife-fork.png differ
diff --git a/png/knife-thrust.png b/png/knife-thrust.png
new file mode 100644
index 000000000..a2b60faba
Binary files /dev/null and b/png/knife-thrust.png differ
diff --git a/png/knight-banner.png b/png/knight-banner.png
new file mode 100644
index 000000000..23b29bf50
Binary files /dev/null and b/png/knight-banner.png differ
diff --git a/png/knocked-out-stars.png b/png/knocked-out-stars.png
new file mode 100644
index 000000000..f14a86333
Binary files /dev/null and b/png/knocked-out-stars.png differ
diff --git a/png/knockout.png b/png/knockout.png
new file mode 100644
index 000000000..23a18dd5f
Binary files /dev/null and b/png/knockout.png differ
diff --git a/png/knot.png b/png/knot.png
new file mode 100644
index 000000000..cd92c1370
Binary files /dev/null and b/png/knot.png differ
diff --git a/png/koala.png b/png/koala.png
new file mode 100644
index 000000000..2ab776a4b
Binary files /dev/null and b/png/koala.png differ
diff --git a/png/koholint-egg.png b/png/koholint-egg.png
new file mode 100644
index 000000000..d212162fc
Binary files /dev/null and b/png/koholint-egg.png differ
diff --git a/png/kraken-tentacle.png b/png/kraken-tentacle.png
new file mode 100644
index 000000000..8a67d623f
Binary files /dev/null and b/png/kraken-tentacle.png differ
diff --git a/png/kusarigama.png b/png/kusarigama.png
new file mode 100644
index 000000000..35c740497
Binary files /dev/null and b/png/kusarigama.png differ
diff --git a/png/l-brick.png b/png/l-brick.png
new file mode 100644
index 000000000..681d90eeb
Binary files /dev/null and b/png/l-brick.png differ
diff --git a/png/lab-coat.png b/png/lab-coat.png
new file mode 100644
index 000000000..1074f3681
Binary files /dev/null and b/png/lab-coat.png differ
diff --git a/png/labrador-head.png b/png/labrador-head.png
new file mode 100644
index 000000000..ee4887e7c
Binary files /dev/null and b/png/labrador-head.png differ
diff --git a/png/ladder.png b/png/ladder.png
new file mode 100644
index 000000000..b2301f832
Binary files /dev/null and b/png/ladder.png differ
diff --git a/png/ladders-platform.png b/png/ladders-platform.png
new file mode 100644
index 000000000..3905dc2a5
Binary files /dev/null and b/png/ladders-platform.png differ
diff --git a/png/ladle.png b/png/ladle.png
new file mode 100644
index 000000000..0f1620f2f
Binary files /dev/null and b/png/ladle.png differ
diff --git a/png/ladybug.png b/png/ladybug.png
new file mode 100644
index 000000000..afcef86a1
Binary files /dev/null and b/png/ladybug.png differ
diff --git a/png/lamellar.png b/png/lamellar.png
new file mode 100644
index 000000000..b8d6f1fae
Binary files /dev/null and b/png/lamellar.png differ
diff --git a/png/lamprey-mouth.png b/png/lamprey-mouth.png
new file mode 100644
index 000000000..f5323bff9
Binary files /dev/null and b/png/lamprey-mouth.png differ
diff --git a/png/land-mine.png b/png/land-mine.png
new file mode 100644
index 000000000..032f49255
Binary files /dev/null and b/png/land-mine.png differ
diff --git a/png/lantern-flame.png b/png/lantern-flame.png
new file mode 100644
index 000000000..4b97151b2
Binary files /dev/null and b/png/lantern-flame.png differ
diff --git a/png/lantern.png b/png/lantern.png
new file mode 100644
index 000000000..b8471badc
Binary files /dev/null and b/png/lantern.png differ
diff --git a/png/laptop.png b/png/laptop.png
new file mode 100644
index 000000000..9886c9bb6
Binary files /dev/null and b/png/laptop.png differ
diff --git a/png/large-dress.png b/png/large-dress.png
new file mode 100644
index 000000000..a94a4db51
Binary files /dev/null and b/png/large-dress.png differ
diff --git a/png/large-paint-brush.png b/png/large-paint-brush.png
new file mode 100644
index 000000000..305ca02b5
Binary files /dev/null and b/png/large-paint-brush.png differ
diff --git a/png/large-wound.png b/png/large-wound.png
new file mode 100644
index 000000000..f8aa3f15b
Binary files /dev/null and b/png/large-wound.png differ
diff --git a/png/laser-blast.png b/png/laser-blast.png
new file mode 100644
index 000000000..9029d3b54
Binary files /dev/null and b/png/laser-blast.png differ
diff --git a/png/laser-burst.png b/png/laser-burst.png
new file mode 100644
index 000000000..14d368476
Binary files /dev/null and b/png/laser-burst.png differ
diff --git a/png/laser-gun.png b/png/laser-gun.png
new file mode 100644
index 000000000..a0fa05a5b
Binary files /dev/null and b/png/laser-gun.png differ
diff --git a/png/laser-precision.png b/png/laser-precision.png
new file mode 100644
index 000000000..a24499dea
Binary files /dev/null and b/png/laser-precision.png differ
diff --git a/png/laser-sparks.png b/png/laser-sparks.png
new file mode 100644
index 000000000..7896370ff
Binary files /dev/null and b/png/laser-sparks.png differ
diff --git a/png/laser-turret.png b/png/laser-turret.png
new file mode 100644
index 000000000..66f4717d5
Binary files /dev/null and b/png/laser-turret.png differ
diff --git a/png/laser-warning.png b/png/laser-warning.png
new file mode 100644
index 000000000..4a14bd56c
Binary files /dev/null and b/png/laser-warning.png differ
diff --git a/png/laserburn.png b/png/laserburn.png
new file mode 100644
index 000000000..bacbd759d
Binary files /dev/null and b/png/laserburn.png differ
diff --git a/png/lasso.png b/png/lasso.png
new file mode 100644
index 000000000..e93e19e5e
Binary files /dev/null and b/png/lasso.png differ
diff --git a/png/latvia.png b/png/latvia.png
new file mode 100644
index 000000000..95035946b
Binary files /dev/null and b/png/latvia.png differ
diff --git a/png/laurel-crown.png b/png/laurel-crown.png
new file mode 100644
index 000000000..3e6d88109
Binary files /dev/null and b/png/laurel-crown.png differ
diff --git a/png/laurels-trophy.png b/png/laurels-trophy.png
new file mode 100644
index 000000000..816ce6f35
Binary files /dev/null and b/png/laurels-trophy.png differ
diff --git a/png/laurels.png b/png/laurels.png
new file mode 100644
index 000000000..1e1811532
Binary files /dev/null and b/png/laurels.png differ
diff --git a/png/lava.png b/png/lava.png
new file mode 100644
index 000000000..0bc624306
Binary files /dev/null and b/png/lava.png differ
diff --git a/png/law-star.png b/png/law-star.png
new file mode 100644
index 000000000..d814d0d71
Binary files /dev/null and b/png/law-star.png differ
diff --git a/png/layered-armor.png b/png/layered-armor.png
new file mode 100644
index 000000000..b4b3fb7af
Binary files /dev/null and b/png/layered-armor.png differ
diff --git a/png/lead-pipe.png b/png/lead-pipe.png
new file mode 100644
index 000000000..0fcd106ae
Binary files /dev/null and b/png/lead-pipe.png differ
diff --git a/png/leaf-skeleton.png b/png/leaf-skeleton.png
new file mode 100644
index 000000000..4102701fa
Binary files /dev/null and b/png/leaf-skeleton.png differ
diff --git a/png/leaf-swirl.png b/png/leaf-swirl.png
new file mode 100644
index 000000000..dc1659170
Binary files /dev/null and b/png/leaf-swirl.png differ
diff --git a/png/leak.png b/png/leak.png
new file mode 100644
index 000000000..ee12fd969
Binary files /dev/null and b/png/leak.png differ
diff --git a/png/leaky-skull.png b/png/leaky-skull.png
new file mode 100644
index 000000000..09445dc35
Binary files /dev/null and b/png/leaky-skull.png differ
diff --git a/png/leapfrog.png b/png/leapfrog.png
new file mode 100644
index 000000000..0a0f54c31
Binary files /dev/null and b/png/leapfrog.png differ
diff --git a/png/leather-armor.png b/png/leather-armor.png
new file mode 100644
index 000000000..a025f3ee5
Binary files /dev/null and b/png/leather-armor.png differ
diff --git a/png/leather-boot.png b/png/leather-boot.png
new file mode 100644
index 000000000..7aba34532
Binary files /dev/null and b/png/leather-boot.png differ
diff --git a/png/leather-vest.png b/png/leather-vest.png
new file mode 100644
index 000000000..6b72b32a2
Binary files /dev/null and b/png/leather-vest.png differ
diff --git a/png/led.png b/png/led.png
new file mode 100644
index 000000000..0b8fefb81
Binary files /dev/null and b/png/led.png differ
diff --git a/png/lee-enfield.png b/png/lee-enfield.png
new file mode 100644
index 000000000..05227f257
Binary files /dev/null and b/png/lee-enfield.png differ
diff --git a/png/leeching-worm.png b/png/leeching-worm.png
new file mode 100644
index 000000000..67ebc0722
Binary files /dev/null and b/png/leeching-worm.png differ
diff --git a/png/leek.png b/png/leek.png
new file mode 100644
index 000000000..d585e0279
Binary files /dev/null and b/png/leek.png differ
diff --git a/png/leg-armor.png b/png/leg-armor.png
new file mode 100644
index 000000000..0ce4bcba3
Binary files /dev/null and b/png/leg-armor.png differ
diff --git a/png/leg.png b/png/leg.png
new file mode 100644
index 000000000..a38e8bdaf
Binary files /dev/null and b/png/leg.png differ
diff --git a/png/lemon.png b/png/lemon.png
new file mode 100644
index 000000000..5c6b2f79e
Binary files /dev/null and b/png/lemon.png differ
diff --git a/png/leo.png b/png/leo.png
new file mode 100644
index 000000000..20bb6c05a
Binary files /dev/null and b/png/leo.png differ
diff --git a/png/letter-bomb.png b/png/letter-bomb.png
new file mode 100644
index 000000000..1b2bbe745
Binary files /dev/null and b/png/letter-bomb.png differ
diff --git a/png/level-crossing.png b/png/level-crossing.png
new file mode 100644
index 000000000..b0f3188be
Binary files /dev/null and b/png/level-crossing.png differ
diff --git a/png/level-end-flag.png b/png/level-end-flag.png
new file mode 100644
index 000000000..f597db00f
Binary files /dev/null and b/png/level-end-flag.png differ
diff --git a/png/level-four-advanced.png b/png/level-four-advanced.png
new file mode 100644
index 000000000..c82ac605d
Binary files /dev/null and b/png/level-four-advanced.png differ
diff --git a/png/level-four.png b/png/level-four.png
new file mode 100644
index 000000000..059fdb968
Binary files /dev/null and b/png/level-four.png differ
diff --git a/png/level-three-advanced.png b/png/level-three-advanced.png
new file mode 100644
index 000000000..d9f3dee85
Binary files /dev/null and b/png/level-three-advanced.png differ
diff --git a/png/level-three.png b/png/level-three.png
new file mode 100644
index 000000000..e57cb26ae
Binary files /dev/null and b/png/level-three.png differ
diff --git a/png/level-two-advanced.png b/png/level-two-advanced.png
new file mode 100644
index 000000000..4aa4d65b2
Binary files /dev/null and b/png/level-two-advanced.png differ
diff --git a/png/level-two.png b/png/level-two.png
new file mode 100644
index 000000000..0f5fb6257
Binary files /dev/null and b/png/level-two.png differ
diff --git a/png/lever.png b/png/lever.png
new file mode 100644
index 000000000..01891a419
Binary files /dev/null and b/png/lever.png differ
diff --git a/png/liar.png b/png/liar.png
new file mode 100644
index 000000000..3be1f5cd6
Binary files /dev/null and b/png/liar.png differ
diff --git a/png/liberty-wing.png b/png/liberty-wing.png
new file mode 100644
index 000000000..244cd9a17
Binary files /dev/null and b/png/liberty-wing.png differ
diff --git a/png/libra.png b/png/libra.png
new file mode 100644
index 000000000..e92530032
Binary files /dev/null and b/png/libra.png differ
diff --git a/png/libya.png b/png/libya.png
new file mode 100644
index 000000000..bbd51f762
Binary files /dev/null and b/png/libya.png differ
diff --git a/png/life-bar.png b/png/life-bar.png
new file mode 100644
index 000000000..84e768218
Binary files /dev/null and b/png/life-bar.png differ
diff --git a/png/life-buoy.png b/png/life-buoy.png
new file mode 100644
index 000000000..f9fd68502
Binary files /dev/null and b/png/life-buoy.png differ
diff --git a/png/life-in-the-balance.png b/png/life-in-the-balance.png
new file mode 100644
index 000000000..69957b6e3
Binary files /dev/null and b/png/life-in-the-balance.png differ
diff --git a/png/life-jacket.png b/png/life-jacket.png
new file mode 100644
index 000000000..9e09e7ccd
Binary files /dev/null and b/png/life-jacket.png differ
diff --git a/png/life-support.png b/png/life-support.png
new file mode 100644
index 000000000..350bc3c83
Binary files /dev/null and b/png/life-support.png differ
diff --git a/png/life-tap.png b/png/life-tap.png
new file mode 100644
index 000000000..b4fa23246
Binary files /dev/null and b/png/life-tap.png differ
diff --git a/png/lift.png b/png/lift.png
new file mode 100644
index 000000000..a13a32546
Binary files /dev/null and b/png/lift.png differ
diff --git a/png/light-backpack.png b/png/light-backpack.png
new file mode 100644
index 000000000..445f76908
Binary files /dev/null and b/png/light-backpack.png differ
diff --git a/png/light-bulb.png b/png/light-bulb.png
new file mode 100644
index 000000000..8176bb059
Binary files /dev/null and b/png/light-bulb.png differ
diff --git a/png/light-fighter.png b/png/light-fighter.png
new file mode 100644
index 000000000..42725f962
Binary files /dev/null and b/png/light-fighter.png differ
diff --git a/png/light-helm.png b/png/light-helm.png
new file mode 100644
index 000000000..18d4ca11e
Binary files /dev/null and b/png/light-helm.png differ
diff --git a/png/light-projector.png b/png/light-projector.png
new file mode 100644
index 000000000..c6313f568
Binary files /dev/null and b/png/light-projector.png differ
diff --git a/png/light-sabers.png b/png/light-sabers.png
new file mode 100644
index 000000000..79b6a955a
Binary files /dev/null and b/png/light-sabers.png differ
diff --git a/png/light-thorny-triskelion.png b/png/light-thorny-triskelion.png
new file mode 100644
index 000000000..da33314e1
Binary files /dev/null and b/png/light-thorny-triskelion.png differ
diff --git a/png/lighter.png b/png/lighter.png
new file mode 100644
index 000000000..e25b55a7b
Binary files /dev/null and b/png/lighter.png differ
diff --git a/png/lighthouse.png b/png/lighthouse.png
new file mode 100644
index 000000000..3d6962733
Binary files /dev/null and b/png/lighthouse.png differ
diff --git a/png/lightning-arc.png b/png/lightning-arc.png
new file mode 100644
index 000000000..22e02378f
Binary files /dev/null and b/png/lightning-arc.png differ
diff --git a/png/lightning-bow.png b/png/lightning-bow.png
new file mode 100644
index 000000000..0fcf4b2de
Binary files /dev/null and b/png/lightning-bow.png differ
diff --git a/png/lightning-branches.png b/png/lightning-branches.png
new file mode 100644
index 000000000..56b7ffc50
Binary files /dev/null and b/png/lightning-branches.png differ
diff --git a/png/lightning-dissipation.png b/png/lightning-dissipation.png
new file mode 100644
index 000000000..7e7bcc0fb
Binary files /dev/null and b/png/lightning-dissipation.png differ
diff --git a/png/lightning-dome.png b/png/lightning-dome.png
new file mode 100644
index 000000000..ea6801f38
Binary files /dev/null and b/png/lightning-dome.png differ
diff --git a/png/lightning-electron.png b/png/lightning-electron.png
new file mode 100644
index 000000000..efda81954
Binary files /dev/null and b/png/lightning-electron.png differ
diff --git a/png/lightning-flame.png b/png/lightning-flame.png
new file mode 100644
index 000000000..af9697d1e
Binary files /dev/null and b/png/lightning-flame.png differ
diff --git a/png/lightning-frequency.png b/png/lightning-frequency.png
new file mode 100644
index 000000000..e272b9c47
Binary files /dev/null and b/png/lightning-frequency.png differ
diff --git a/png/lightning-helix.png b/png/lightning-helix.png
new file mode 100644
index 000000000..a129fda31
Binary files /dev/null and b/png/lightning-helix.png differ
diff --git a/png/lightning-mask.png b/png/lightning-mask.png
new file mode 100644
index 000000000..9222e655d
Binary files /dev/null and b/png/lightning-mask.png differ
diff --git a/png/lightning-saber.png b/png/lightning-saber.png
new file mode 100644
index 000000000..36fe4b0fc
Binary files /dev/null and b/png/lightning-saber.png differ
diff --git a/png/lightning-shadow.png b/png/lightning-shadow.png
new file mode 100644
index 000000000..676d65075
Binary files /dev/null and b/png/lightning-shadow.png differ
diff --git a/png/lightning-shield.png b/png/lightning-shield.png
new file mode 100644
index 000000000..7511cae83
Binary files /dev/null and b/png/lightning-shield.png differ
diff --git a/png/lightning-shout.png b/png/lightning-shout.png
new file mode 100644
index 000000000..fd029a9f8
Binary files /dev/null and b/png/lightning-shout.png differ
diff --git a/png/lightning-slashes.png b/png/lightning-slashes.png
new file mode 100644
index 000000000..c01af63fb
Binary files /dev/null and b/png/lightning-slashes.png differ
diff --git a/png/lightning-spanner.png b/png/lightning-spanner.png
new file mode 100644
index 000000000..49463a027
Binary files /dev/null and b/png/lightning-spanner.png differ
diff --git a/png/lightning-storm.png b/png/lightning-storm.png
new file mode 100644
index 000000000..cb2c2c157
Binary files /dev/null and b/png/lightning-storm.png differ
diff --git a/png/lightning-tear.png b/png/lightning-tear.png
new file mode 100644
index 000000000..f8b843e69
Binary files /dev/null and b/png/lightning-tear.png differ
diff --git a/png/lightning-tree.png b/png/lightning-tree.png
new file mode 100644
index 000000000..4e65182e4
Binary files /dev/null and b/png/lightning-tree.png differ
diff --git a/png/lightning-trio.png b/png/lightning-trio.png
new file mode 100644
index 000000000..cc06bdf0a
Binary files /dev/null and b/png/lightning-trio.png differ
diff --git a/png/lily-pads.png b/png/lily-pads.png
new file mode 100644
index 000000000..5c2084e06
Binary files /dev/null and b/png/lily-pads.png differ
diff --git a/png/linden-leaf.png b/png/linden-leaf.png
new file mode 100644
index 000000000..a6e1cf2dc
Binary files /dev/null and b/png/linden-leaf.png differ
diff --git a/png/linked-rings.png b/png/linked-rings.png
new file mode 100644
index 000000000..9ae341613
Binary files /dev/null and b/png/linked-rings.png differ
diff --git a/png/lion.png b/png/lion.png
new file mode 100644
index 000000000..a9150789d
Binary files /dev/null and b/png/lion.png differ
diff --git a/png/lips.png b/png/lips.png
new file mode 100644
index 000000000..eb938343d
Binary files /dev/null and b/png/lips.png differ
diff --git a/png/lipstick.png b/png/lipstick.png
new file mode 100644
index 000000000..540e517be
Binary files /dev/null and b/png/lipstick.png differ
diff --git a/png/liquid-soap.png b/png/liquid-soap.png
new file mode 100644
index 000000000..e078b19b2
Binary files /dev/null and b/png/liquid-soap.png differ
diff --git a/png/lit-candelabra.png b/png/lit-candelabra.png
new file mode 100644
index 000000000..a0a58185e
Binary files /dev/null and b/png/lit-candelabra.png differ
diff --git a/png/liver.png b/png/liver.png
new file mode 100644
index 000000000..71f408f12
Binary files /dev/null and b/png/liver.png differ
diff --git a/png/lizard-tongue.png b/png/lizard-tongue.png
new file mode 100644
index 000000000..eb9bc3d6a
Binary files /dev/null and b/png/lizard-tongue.png differ
diff --git a/png/lizardman.png b/png/lizardman.png
new file mode 100644
index 000000000..15899b889
Binary files /dev/null and b/png/lizardman.png differ
diff --git a/png/load.png b/png/load.png
new file mode 100644
index 000000000..dd69bba45
Binary files /dev/null and b/png/load.png differ
diff --git a/png/lob-arrow.png b/png/lob-arrow.png
new file mode 100644
index 000000000..0f1358377
Binary files /dev/null and b/png/lob-arrow.png differ
diff --git a/png/lock-picking.png b/png/lock-picking.png
new file mode 100644
index 000000000..1ea6d2448
Binary files /dev/null and b/png/lock-picking.png differ
diff --git a/png/lock-spy.png b/png/lock-spy.png
new file mode 100644
index 000000000..5864f982f
Binary files /dev/null and b/png/lock-spy.png differ
diff --git a/png/locked-box.png b/png/locked-box.png
new file mode 100644
index 000000000..f0c055199
Binary files /dev/null and b/png/locked-box.png differ
diff --git a/png/locked-chest.png b/png/locked-chest.png
new file mode 100644
index 000000000..de75174ff
Binary files /dev/null and b/png/locked-chest.png differ
diff --git a/png/locked-door.png b/png/locked-door.png
new file mode 100644
index 000000000..1b4007526
Binary files /dev/null and b/png/locked-door.png differ
diff --git a/png/locked-fortress.png b/png/locked-fortress.png
new file mode 100644
index 000000000..e72bd9938
Binary files /dev/null and b/png/locked-fortress.png differ
diff --git a/png/locked-heart.png b/png/locked-heart.png
new file mode 100644
index 000000000..fc4d6ea2a
Binary files /dev/null and b/png/locked-heart.png differ
diff --git a/png/lockers.png b/png/lockers.png
new file mode 100644
index 000000000..0370a5249
Binary files /dev/null and b/png/lockers.png differ
diff --git a/png/lockpicks.png b/png/lockpicks.png
new file mode 100644
index 000000000..1a586cedb
Binary files /dev/null and b/png/lockpicks.png differ
diff --git a/png/log.png b/png/log.png
new file mode 100644
index 000000000..ed25dea9b
Binary files /dev/null and b/png/log.png differ
diff --git a/png/logging.png b/png/logging.png
new file mode 100644
index 000000000..0b9b7cce8
Binary files /dev/null and b/png/logging.png differ
diff --git a/png/logic-gate-and.png b/png/logic-gate-and.png
new file mode 100644
index 000000000..c53477188
Binary files /dev/null and b/png/logic-gate-and.png differ
diff --git a/png/logic-gate-nand.png b/png/logic-gate-nand.png
new file mode 100644
index 000000000..bcb65b526
Binary files /dev/null and b/png/logic-gate-nand.png differ
diff --git a/png/logic-gate-nor.png b/png/logic-gate-nor.png
new file mode 100644
index 000000000..15e2ae93a
Binary files /dev/null and b/png/logic-gate-nor.png differ
diff --git a/png/logic-gate-not.png b/png/logic-gate-not.png
new file mode 100644
index 000000000..d6c3eca33
Binary files /dev/null and b/png/logic-gate-not.png differ
diff --git a/png/logic-gate-nxor.png b/png/logic-gate-nxor.png
new file mode 100644
index 000000000..e6e022d24
Binary files /dev/null and b/png/logic-gate-nxor.png differ
diff --git a/png/logic-gate-or.png b/png/logic-gate-or.png
new file mode 100644
index 000000000..333666eff
Binary files /dev/null and b/png/logic-gate-or.png differ
diff --git a/png/logic-gate-xor.png b/png/logic-gate-xor.png
new file mode 100644
index 000000000..574718d08
Binary files /dev/null and b/png/logic-gate-xor.png differ
diff --git a/png/loincloth.png b/png/loincloth.png
new file mode 100644
index 000000000..e7fc11c13
Binary files /dev/null and b/png/loincloth.png differ
diff --git a/png/long-antennae-bug.png b/png/long-antennae-bug.png
new file mode 100644
index 000000000..ec5716aa8
Binary files /dev/null and b/png/long-antennae-bug.png differ
diff --git a/png/long-legged-spider.png b/png/long-legged-spider.png
new file mode 100644
index 000000000..b8e376402
Binary files /dev/null and b/png/long-legged-spider.png differ
diff --git a/png/look-at.png b/png/look-at.png
new file mode 100644
index 000000000..f7f60fdde
Binary files /dev/null and b/png/look-at.png differ
diff --git a/png/lorgnette.png b/png/lorgnette.png
new file mode 100644
index 000000000..4a32319cb
Binary files /dev/null and b/png/lorgnette.png differ
diff --git a/png/lost-limb.png b/png/lost-limb.png
new file mode 100644
index 000000000..e65dc3ebf
Binary files /dev/null and b/png/lost-limb.png differ
diff --git a/png/lotus-flower.png b/png/lotus-flower.png
new file mode 100644
index 000000000..d2f30412c
Binary files /dev/null and b/png/lotus-flower.png differ
diff --git a/png/lotus.png b/png/lotus.png
new file mode 100644
index 000000000..14ae55d73
Binary files /dev/null and b/png/lotus.png differ
diff --git a/png/louvre-pyramid.png b/png/louvre-pyramid.png
new file mode 100644
index 000000000..3ff339548
Binary files /dev/null and b/png/louvre-pyramid.png differ
diff --git a/png/love-howl.png b/png/love-howl.png
new file mode 100644
index 000000000..ff52e0343
Binary files /dev/null and b/png/love-howl.png differ
diff --git a/png/love-injection.png b/png/love-injection.png
new file mode 100644
index 000000000..e5c0a7b4c
Binary files /dev/null and b/png/love-injection.png differ
diff --git a/png/love-letter.png b/png/love-letter.png
new file mode 100644
index 000000000..981eb2e7e
Binary files /dev/null and b/png/love-letter.png differ
diff --git a/png/love-mystery.png b/png/love-mystery.png
new file mode 100644
index 000000000..1b68cb34f
Binary files /dev/null and b/png/love-mystery.png differ
diff --git a/png/love-song.png b/png/love-song.png
new file mode 100644
index 000000000..d650bf50f
Binary files /dev/null and b/png/love-song.png differ
diff --git a/png/lovers.png b/png/lovers.png
new file mode 100644
index 000000000..461dca20b
Binary files /dev/null and b/png/lovers.png differ
diff --git a/png/low-tide.png b/png/low-tide.png
new file mode 100644
index 000000000..6e6f63bff
Binary files /dev/null and b/png/low-tide.png differ
diff --git a/png/luchador.png b/png/luchador.png
new file mode 100644
index 000000000..7ce39ad5f
Binary files /dev/null and b/png/luchador.png differ
diff --git a/png/lucifer-cannon.png b/png/lucifer-cannon.png
new file mode 100644
index 000000000..eb16a7a58
Binary files /dev/null and b/png/lucifer-cannon.png differ
diff --git a/png/lucky-fisherman.png b/png/lucky-fisherman.png
new file mode 100644
index 000000000..3b4bd0134
Binary files /dev/null and b/png/lucky-fisherman.png differ
diff --git a/png/luger.png b/png/luger.png
new file mode 100644
index 000000000..ab7b11900
Binary files /dev/null and b/png/luger.png differ
diff --git a/png/lunar-module.png b/png/lunar-module.png
new file mode 100644
index 000000000..a1c3fed1d
Binary files /dev/null and b/png/lunar-module.png differ
diff --git a/png/lunar-wand.png b/png/lunar-wand.png
new file mode 100644
index 000000000..bbfc1182f
Binary files /dev/null and b/png/lunar-wand.png differ
diff --git a/png/lungs.png b/png/lungs.png
new file mode 100644
index 000000000..0afffed21
Binary files /dev/null and b/png/lungs.png differ
diff --git a/png/lynx-head.png b/png/lynx-head.png
new file mode 100644
index 000000000..3231c6307
Binary files /dev/null and b/png/lynx-head.png differ
diff --git a/png/lyre.png b/png/lyre.png
new file mode 100644
index 000000000..152403c8b
Binary files /dev/null and b/png/lyre.png differ
diff --git a/png/m3-grease-gun.png b/png/m3-grease-gun.png
new file mode 100644
index 000000000..c4d803c07
Binary files /dev/null and b/png/m3-grease-gun.png differ
diff --git a/png/mac-10.png b/png/mac-10.png
new file mode 100644
index 000000000..ad50f9f8b
Binary files /dev/null and b/png/mac-10.png differ
diff --git a/png/mace-head.png b/png/mace-head.png
new file mode 100644
index 000000000..55e802e81
Binary files /dev/null and b/png/mace-head.png differ
diff --git a/png/machete.png b/png/machete.png
new file mode 100644
index 000000000..b42868c81
Binary files /dev/null and b/png/machete.png differ
diff --git a/png/machine-gun-magazine.png b/png/machine-gun-magazine.png
new file mode 100644
index 000000000..3d698284c
Binary files /dev/null and b/png/machine-gun-magazine.png differ
diff --git a/png/machine-gun.png b/png/machine-gun.png
new file mode 100644
index 000000000..607b15620
Binary files /dev/null and b/png/machine-gun.png differ
diff --git a/png/mad-scientist.png b/png/mad-scientist.png
new file mode 100644
index 000000000..140e5bd79
Binary files /dev/null and b/png/mad-scientist.png differ
diff --git a/png/maggot.png b/png/maggot.png
new file mode 100644
index 000000000..6eec6d25d
Binary files /dev/null and b/png/maggot.png differ
diff --git a/png/magic-axe.png b/png/magic-axe.png
new file mode 100644
index 000000000..9b349c299
Binary files /dev/null and b/png/magic-axe.png differ
diff --git a/png/magic-broom.png b/png/magic-broom.png
new file mode 100644
index 000000000..6fbfc3c96
Binary files /dev/null and b/png/magic-broom.png differ
diff --git a/png/magic-gate.png b/png/magic-gate.png
new file mode 100644
index 000000000..0e68bb79d
Binary files /dev/null and b/png/magic-gate.png differ
diff --git a/png/magic-hat.png b/png/magic-hat.png
new file mode 100644
index 000000000..ee07473e8
Binary files /dev/null and b/png/magic-hat.png differ
diff --git a/png/magic-lamp.png b/png/magic-lamp.png
new file mode 100644
index 000000000..7e556a1cb
Binary files /dev/null and b/png/magic-lamp.png differ
diff --git a/png/magic-palm.png b/png/magic-palm.png
new file mode 100644
index 000000000..fdff3e5af
Binary files /dev/null and b/png/magic-palm.png differ
diff --git a/png/magic-portal.png b/png/magic-portal.png
new file mode 100644
index 000000000..b2ba4df9c
Binary files /dev/null and b/png/magic-portal.png differ
diff --git a/png/magic-potion.png b/png/magic-potion.png
new file mode 100644
index 000000000..2d37c8b3c
Binary files /dev/null and b/png/magic-potion.png differ
diff --git a/png/magic-shield.png b/png/magic-shield.png
new file mode 100644
index 000000000..c245cefc8
Binary files /dev/null and b/png/magic-shield.png differ
diff --git a/png/magic-swirl.png b/png/magic-swirl.png
new file mode 100644
index 000000000..4556624e2
Binary files /dev/null and b/png/magic-swirl.png differ
diff --git a/png/magic-trident.png b/png/magic-trident.png
new file mode 100644
index 000000000..7a2dc3a9b
Binary files /dev/null and b/png/magic-trident.png differ
diff --git a/png/magick-trick.png b/png/magick-trick.png
new file mode 100644
index 000000000..a24b80a64
Binary files /dev/null and b/png/magick-trick.png differ
diff --git a/png/magnet-blast.png b/png/magnet-blast.png
new file mode 100644
index 000000000..48fd2e538
Binary files /dev/null and b/png/magnet-blast.png differ
diff --git a/png/magnet-man.png b/png/magnet-man.png
new file mode 100644
index 000000000..2bec8a3bf
Binary files /dev/null and b/png/magnet-man.png differ
diff --git a/png/magnet.png b/png/magnet.png
new file mode 100644
index 000000000..c9ff0ef27
Binary files /dev/null and b/png/magnet.png differ
diff --git a/png/magnifying-glass.png b/png/magnifying-glass.png
new file mode 100644
index 000000000..b5c1bfad3
Binary files /dev/null and b/png/magnifying-glass.png differ
diff --git a/png/mail-shirt.png b/png/mail-shirt.png
new file mode 100644
index 000000000..760c24ad7
Binary files /dev/null and b/png/mail-shirt.png differ
diff --git a/png/mailbox.png b/png/mailbox.png
new file mode 100644
index 000000000..76dad0f4d
Binary files /dev/null and b/png/mailbox.png differ
diff --git a/png/mailed-fist.png b/png/mailed-fist.png
new file mode 100644
index 000000000..7df75a6aa
Binary files /dev/null and b/png/mailed-fist.png differ
diff --git a/png/male.png b/png/male.png
new file mode 100644
index 000000000..47aff6223
Binary files /dev/null and b/png/male.png differ
diff --git a/png/mammoth.png b/png/mammoth.png
new file mode 100644
index 000000000..0ff43bb31
Binary files /dev/null and b/png/mammoth.png differ
diff --git a/png/manacles.png b/png/manacles.png
new file mode 100644
index 000000000..9dd6a05ef
Binary files /dev/null and b/png/manacles.png differ
diff --git a/png/mandrill-head.png b/png/mandrill-head.png
new file mode 100644
index 000000000..f26aed532
Binary files /dev/null and b/png/mandrill-head.png differ
diff --git a/png/manta-ray.png b/png/manta-ray.png
new file mode 100644
index 000000000..7ad8469db
Binary files /dev/null and b/png/manta-ray.png differ
diff --git a/png/mantrap.png b/png/mantrap.png
new file mode 100644
index 000000000..405f35984
Binary files /dev/null and b/png/mantrap.png differ
diff --git a/png/manual-juicer.png b/png/manual-juicer.png
new file mode 100644
index 000000000..da3503309
Binary files /dev/null and b/png/manual-juicer.png differ
diff --git a/png/manual-meat-grinder.png b/png/manual-meat-grinder.png
new file mode 100644
index 000000000..1cb666231
Binary files /dev/null and b/png/manual-meat-grinder.png differ
diff --git a/png/maple-leaf.png b/png/maple-leaf.png
new file mode 100644
index 000000000..de8ae31c5
Binary files /dev/null and b/png/maple-leaf.png differ
diff --git a/png/maracas.png b/png/maracas.png
new file mode 100644
index 000000000..14e0a03e9
Binary files /dev/null and b/png/maracas.png differ
diff --git a/png/marble-tap.png b/png/marble-tap.png
new file mode 100644
index 000000000..532b1a60c
Binary files /dev/null and b/png/marble-tap.png differ
diff --git a/png/marbles.png b/png/marbles.png
new file mode 100644
index 000000000..08c40a1b7
Binary files /dev/null and b/png/marbles.png differ
diff --git a/png/marrow-drain.png b/png/marrow-drain.png
new file mode 100644
index 000000000..8f416160e
Binary files /dev/null and b/png/marrow-drain.png differ
diff --git a/png/mars-curiosity.png b/png/mars-curiosity.png
new file mode 100644
index 000000000..35a1d1f79
Binary files /dev/null and b/png/mars-curiosity.png differ
diff --git a/png/mars-pathfinder.png b/png/mars-pathfinder.png
new file mode 100644
index 000000000..989ba3cb1
Binary files /dev/null and b/png/mars-pathfinder.png differ
diff --git a/png/marshmallows.png b/png/marshmallows.png
new file mode 100644
index 000000000..35e53e81e
Binary files /dev/null and b/png/marshmallows.png differ
diff --git a/png/martini.png b/png/martini.png
new file mode 100644
index 000000000..75771f9c7
Binary files /dev/null and b/png/martini.png differ
diff --git a/png/martyr-memorial.png b/png/martyr-memorial.png
new file mode 100644
index 000000000..c4c4540ac
Binary files /dev/null and b/png/martyr-memorial.png differ
diff --git a/png/masked-spider.png b/png/masked-spider.png
new file mode 100644
index 000000000..82e39a8c8
Binary files /dev/null and b/png/masked-spider.png differ
diff --git a/png/mason-jar.png b/png/mason-jar.png
new file mode 100644
index 000000000..5ed419229
Binary files /dev/null and b/png/mason-jar.png differ
diff --git a/png/mass-driver.png b/png/mass-driver.png
new file mode 100644
index 000000000..51f6a4ec5
Binary files /dev/null and b/png/mass-driver.png differ
diff --git a/png/master-of-arms.png b/png/master-of-arms.png
new file mode 100644
index 000000000..e67e762f1
Binary files /dev/null and b/png/master-of-arms.png differ
diff --git a/png/match-head.png b/png/match-head.png
new file mode 100644
index 000000000..b2065554f
Binary files /dev/null and b/png/match-head.png differ
diff --git a/png/match-tip.png b/png/match-tip.png
new file mode 100644
index 000000000..1afa310dd
Binary files /dev/null and b/png/match-tip.png differ
diff --git a/png/matchbox.png b/png/matchbox.png
new file mode 100644
index 000000000..778a6ff6d
Binary files /dev/null and b/png/matchbox.png differ
diff --git a/png/materials-science.png b/png/materials-science.png
new file mode 100644
index 000000000..9d4d774fa
Binary files /dev/null and b/png/materials-science.png differ
diff --git a/png/matryoshka-dolls.png b/png/matryoshka-dolls.png
new file mode 100644
index 000000000..57b0839c1
Binary files /dev/null and b/png/matryoshka-dolls.png differ
diff --git a/png/matter-states.png b/png/matter-states.png
new file mode 100644
index 000000000..88ad6b6f9
Binary files /dev/null and b/png/matter-states.png differ
diff --git a/png/mayan-pyramid.png b/png/mayan-pyramid.png
new file mode 100644
index 000000000..9f96370de
Binary files /dev/null and b/png/mayan-pyramid.png differ
diff --git a/png/maze-cornea.png b/png/maze-cornea.png
new file mode 100644
index 000000000..0f40a0275
Binary files /dev/null and b/png/maze-cornea.png differ
diff --git a/png/maze-saw.png b/png/maze-saw.png
new file mode 100644
index 000000000..cc0976699
Binary files /dev/null and b/png/maze-saw.png differ
diff --git a/png/maze.png b/png/maze.png
new file mode 100644
index 000000000..bd2c3fdec
Binary files /dev/null and b/png/maze.png differ
diff --git a/png/meal.png b/png/meal.png
new file mode 100644
index 000000000..f8e2cface
Binary files /dev/null and b/png/meal.png differ
diff --git a/png/measure-tape.png b/png/measure-tape.png
new file mode 100644
index 000000000..1fae852d9
Binary files /dev/null and b/png/measure-tape.png differ
diff --git a/png/meat-cleaver.png b/png/meat-cleaver.png
new file mode 100644
index 000000000..ad25a40a5
Binary files /dev/null and b/png/meat-cleaver.png differ
diff --git a/png/meat-hook.png b/png/meat-hook.png
new file mode 100644
index 000000000..6d58902e8
Binary files /dev/null and b/png/meat-hook.png differ
diff --git a/png/meat.png b/png/meat.png
new file mode 100644
index 000000000..193b85097
Binary files /dev/null and b/png/meat.png differ
diff --git a/png/mecha-head.png b/png/mecha-head.png
new file mode 100644
index 000000000..ef7eaa48a
Binary files /dev/null and b/png/mecha-head.png differ
diff --git a/png/mecha-mask.png b/png/mecha-mask.png
new file mode 100644
index 000000000..035ad9772
Binary files /dev/null and b/png/mecha-mask.png differ
diff --git a/png/mechanic-garage.png b/png/mechanic-garage.png
new file mode 100644
index 000000000..e9aaf8cfc
Binary files /dev/null and b/png/mechanic-garage.png differ
diff --git a/png/mechanical-arm.png b/png/mechanical-arm.png
new file mode 100644
index 000000000..80f324b8d
Binary files /dev/null and b/png/mechanical-arm.png differ
diff --git a/png/medal-skull.png b/png/medal-skull.png
new file mode 100644
index 000000000..3aa1e7530
Binary files /dev/null and b/png/medal-skull.png differ
diff --git a/png/medal.png b/png/medal.png
new file mode 100644
index 000000000..f5ba590b8
Binary files /dev/null and b/png/medal.png differ
diff --git a/png/medallist.png b/png/medallist.png
new file mode 100644
index 000000000..738935f72
Binary files /dev/null and b/png/medallist.png differ
diff --git a/png/medical-drip.png b/png/medical-drip.png
new file mode 100644
index 000000000..47fdcdb28
Binary files /dev/null and b/png/medical-drip.png differ
diff --git a/png/medical-pack-alt.png b/png/medical-pack-alt.png
new file mode 100644
index 000000000..e40e4bfd1
Binary files /dev/null and b/png/medical-pack-alt.png differ
diff --git a/png/medical-pack.png b/png/medical-pack.png
new file mode 100644
index 000000000..fbfdd4603
Binary files /dev/null and b/png/medical-pack.png differ
diff --git a/png/medical-thermometer.png b/png/medical-thermometer.png
new file mode 100644
index 000000000..f3ecd7c0f
Binary files /dev/null and b/png/medical-thermometer.png differ
diff --git a/png/medicine-pills.png b/png/medicine-pills.png
new file mode 100644
index 000000000..7f5d8f078
Binary files /dev/null and b/png/medicine-pills.png differ
diff --git a/png/medicines.png b/png/medicines.png
new file mode 100644
index 000000000..b7d8d262d
Binary files /dev/null and b/png/medicines.png differ
diff --git a/png/medieval-barracks.png b/png/medieval-barracks.png
new file mode 100644
index 000000000..703a232ab
Binary files /dev/null and b/png/medieval-barracks.png differ
diff --git a/png/medieval-gate.png b/png/medieval-gate.png
new file mode 100644
index 000000000..3698cd97d
Binary files /dev/null and b/png/medieval-gate.png differ
diff --git a/png/medieval-pavilion.png b/png/medieval-pavilion.png
new file mode 100644
index 000000000..827cdbc14
Binary files /dev/null and b/png/medieval-pavilion.png differ
diff --git a/png/meditation.png b/png/meditation.png
new file mode 100644
index 000000000..4d3afd48a
Binary files /dev/null and b/png/meditation.png differ
diff --git a/png/medusa-head.png b/png/medusa-head.png
new file mode 100644
index 000000000..500d49ff6
Binary files /dev/null and b/png/medusa-head.png differ
diff --git a/png/meeple-army.png b/png/meeple-army.png
new file mode 100644
index 000000000..47d7744cb
Binary files /dev/null and b/png/meeple-army.png differ
diff --git a/png/meeple-circle.png b/png/meeple-circle.png
new file mode 100644
index 000000000..ed6828c41
Binary files /dev/null and b/png/meeple-circle.png differ
diff --git a/png/meeple-group.png b/png/meeple-group.png
new file mode 100644
index 000000000..a35bfeda7
Binary files /dev/null and b/png/meeple-group.png differ
diff --git a/png/meeple-king.png b/png/meeple-king.png
new file mode 100644
index 000000000..044af513c
Binary files /dev/null and b/png/meeple-king.png differ
diff --git a/png/meeple.png b/png/meeple.png
new file mode 100644
index 000000000..058ec0773
Binary files /dev/null and b/png/meeple.png differ
diff --git a/png/megabot.png b/png/megabot.png
new file mode 100644
index 000000000..272fce526
Binary files /dev/null and b/png/megabot.png differ
diff --git a/png/megaphone.png b/png/megaphone.png
new file mode 100644
index 000000000..eac30f826
Binary files /dev/null and b/png/megaphone.png differ
diff --git a/png/melting-ice-cube.png b/png/melting-ice-cube.png
new file mode 100644
index 000000000..a3425320a
Binary files /dev/null and b/png/melting-ice-cube.png differ
diff --git a/png/melting-metal.png b/png/melting-metal.png
new file mode 100644
index 000000000..dc0530cf5
Binary files /dev/null and b/png/melting-metal.png differ
diff --git a/png/menhir.png b/png/menhir.png
new file mode 100644
index 000000000..3ba6f96a9
Binary files /dev/null and b/png/menhir.png differ
diff --git a/png/mermaid.png b/png/mermaid.png
new file mode 100644
index 000000000..9c9a2d739
Binary files /dev/null and b/png/mermaid.png differ
diff --git a/png/mesh-ball.png b/png/mesh-ball.png
new file mode 100644
index 000000000..20eec5019
Binary files /dev/null and b/png/mesh-ball.png differ
diff --git a/png/mesh-network.png b/png/mesh-network.png
new file mode 100644
index 000000000..009dc08d0
Binary files /dev/null and b/png/mesh-network.png differ
diff --git a/png/metal-bar.png b/png/metal-bar.png
new file mode 100644
index 000000000..1964c212f
Binary files /dev/null and b/png/metal-bar.png differ
diff --git a/png/metal-boot.png b/png/metal-boot.png
new file mode 100644
index 000000000..959883ceb
Binary files /dev/null and b/png/metal-boot.png differ
diff --git a/png/metal-detector.png b/png/metal-detector.png
new file mode 100644
index 000000000..153786532
Binary files /dev/null and b/png/metal-detector.png differ
diff --git a/png/metal-disc.png b/png/metal-disc.png
new file mode 100644
index 000000000..f6a04023d
Binary files /dev/null and b/png/metal-disc.png differ
diff --git a/png/metal-golem-head.png b/png/metal-golem-head.png
new file mode 100644
index 000000000..a889d70df
Binary files /dev/null and b/png/metal-golem-head.png differ
diff --git a/png/metal-hand.png b/png/metal-hand.png
new file mode 100644
index 000000000..19898facd
Binary files /dev/null and b/png/metal-hand.png differ
diff --git a/png/metal-plate.png b/png/metal-plate.png
new file mode 100644
index 000000000..89270661f
Binary files /dev/null and b/png/metal-plate.png differ
diff --git a/png/metal-scales.png b/png/metal-scales.png
new file mode 100644
index 000000000..20536388b
Binary files /dev/null and b/png/metal-scales.png differ
diff --git a/png/metal-skirt.png b/png/metal-skirt.png
new file mode 100644
index 000000000..89785a8d1
Binary files /dev/null and b/png/metal-skirt.png differ
diff --git a/png/meteor-impact.png b/png/meteor-impact.png
new file mode 100644
index 000000000..32d04186d
Binary files /dev/null and b/png/meteor-impact.png differ
diff --git a/png/metroid.png b/png/metroid.png
new file mode 100644
index 000000000..31c17762d
Binary files /dev/null and b/png/metroid.png differ
diff --git a/png/metronome.png b/png/metronome.png
new file mode 100644
index 000000000..de010492d
Binary files /dev/null and b/png/metronome.png differ
diff --git a/png/mexico.png b/png/mexico.png
new file mode 100644
index 000000000..ecd17481b
Binary files /dev/null and b/png/mexico.png differ
diff --git a/png/microchip.png b/png/microchip.png
new file mode 100644
index 000000000..bee811417
Binary files /dev/null and b/png/microchip.png differ
diff --git a/png/microphone.png b/png/microphone.png
new file mode 100644
index 000000000..3c0090a61
Binary files /dev/null and b/png/microphone.png differ
diff --git a/png/microscope-lens.png b/png/microscope-lens.png
new file mode 100644
index 000000000..5d4827e8e
Binary files /dev/null and b/png/microscope-lens.png differ
diff --git a/png/microscope.png b/png/microscope.png
new file mode 100644
index 000000000..c535be88b
Binary files /dev/null and b/png/microscope.png differ
diff --git a/png/middle-arrow.png b/png/middle-arrow.png
new file mode 100644
index 000000000..7aecbc979
Binary files /dev/null and b/png/middle-arrow.png differ
diff --git a/png/midnight-claw.png b/png/midnight-claw.png
new file mode 100644
index 000000000..9479e004a
Binary files /dev/null and b/png/midnight-claw.png differ
diff --git a/png/mighty-boosh.png b/png/mighty-boosh.png
new file mode 100644
index 000000000..960a89211
Binary files /dev/null and b/png/mighty-boosh.png differ
diff --git a/png/mighty-force.png b/png/mighty-force.png
new file mode 100644
index 000000000..810b05aea
Binary files /dev/null and b/png/mighty-force.png differ
diff --git a/png/mighty-horn.png b/png/mighty-horn.png
new file mode 100644
index 000000000..aaa273dfe
Binary files /dev/null and b/png/mighty-horn.png differ
diff --git a/png/mighty-spanner.png b/png/mighty-spanner.png
new file mode 100644
index 000000000..f5e23cc3b
Binary files /dev/null and b/png/mighty-spanner.png differ
diff --git a/png/military-ambulance.png b/png/military-ambulance.png
new file mode 100644
index 000000000..162966bc7
Binary files /dev/null and b/png/military-ambulance.png differ
diff --git a/png/military-fort.png b/png/military-fort.png
new file mode 100644
index 000000000..a63ca2292
Binary files /dev/null and b/png/military-fort.png differ
diff --git a/png/milk-carton.png b/png/milk-carton.png
new file mode 100644
index 000000000..fa64b4224
Binary files /dev/null and b/png/milk-carton.png differ
diff --git a/png/millenium-key.png b/png/millenium-key.png
new file mode 100644
index 000000000..596f8708a
Binary files /dev/null and b/png/millenium-key.png differ
diff --git a/png/mimic-chest.png b/png/mimic-chest.png
new file mode 100644
index 000000000..03a7120c4
Binary files /dev/null and b/png/mimic-chest.png differ
diff --git a/png/mine-explosion.png b/png/mine-explosion.png
new file mode 100644
index 000000000..e97c33a1b
Binary files /dev/null and b/png/mine-explosion.png differ
diff --git a/png/mine-truck.png b/png/mine-truck.png
new file mode 100644
index 000000000..88574b2cc
Binary files /dev/null and b/png/mine-truck.png differ
diff --git a/png/mine-wagon.png b/png/mine-wagon.png
new file mode 100644
index 000000000..6a5c59b53
Binary files /dev/null and b/png/mine-wagon.png differ
diff --git a/png/minefield.png b/png/minefield.png
new file mode 100644
index 000000000..2d21eb525
Binary files /dev/null and b/png/minefield.png differ
diff --git a/png/miner.png b/png/miner.png
new file mode 100644
index 000000000..b01cde2cf
Binary files /dev/null and b/png/miner.png differ
diff --git a/png/mineral-heart.png b/png/mineral-heart.png
new file mode 100644
index 000000000..bf3710206
Binary files /dev/null and b/png/mineral-heart.png differ
diff --git a/png/mineral-pearls.png b/png/mineral-pearls.png
new file mode 100644
index 000000000..4bc9e6900
Binary files /dev/null and b/png/mineral-pearls.png differ
diff --git a/png/minerals.png b/png/minerals.png
new file mode 100644
index 000000000..060810f6f
Binary files /dev/null and b/png/minerals.png differ
diff --git a/png/mini-submarine.png b/png/mini-submarine.png
new file mode 100644
index 000000000..66add14bf
Binary files /dev/null and b/png/mini-submarine.png differ
diff --git a/png/minigun.png b/png/minigun.png
new file mode 100644
index 000000000..ef1e9aaae
Binary files /dev/null and b/png/minigun.png differ
diff --git a/png/mining-helmet.png b/png/mining-helmet.png
new file mode 100644
index 000000000..ae670927f
Binary files /dev/null and b/png/mining-helmet.png differ
diff --git a/png/mining.png b/png/mining.png
new file mode 100644
index 000000000..5809cf8a9
Binary files /dev/null and b/png/mining.png differ
diff --git a/png/minions.png b/png/minions.png
new file mode 100644
index 000000000..95af8314d
Binary files /dev/null and b/png/minions.png differ
diff --git a/png/minotaur.png b/png/minotaur.png
new file mode 100644
index 000000000..c2f05d44d
Binary files /dev/null and b/png/minotaur.png differ
diff --git a/png/miracle-medecine.png b/png/miracle-medecine.png
new file mode 100644
index 000000000..ca86e026e
Binary files /dev/null and b/png/miracle-medecine.png differ
diff --git a/png/mirror-mirror.png b/png/mirror-mirror.png
new file mode 100644
index 000000000..64385f2c0
Binary files /dev/null and b/png/mirror-mirror.png differ
diff --git a/png/misdirection.png b/png/misdirection.png
new file mode 100644
index 000000000..a6c024ce4
Binary files /dev/null and b/png/misdirection.png differ
diff --git a/png/missile-launcher.png b/png/missile-launcher.png
new file mode 100644
index 000000000..1a07211bc
Binary files /dev/null and b/png/missile-launcher.png differ
diff --git a/png/missile-mech.png b/png/missile-mech.png
new file mode 100644
index 000000000..90b6588fc
Binary files /dev/null and b/png/missile-mech.png differ
diff --git a/png/missile-pod.png b/png/missile-pod.png
new file mode 100644
index 000000000..8676b97cf
Binary files /dev/null and b/png/missile-pod.png differ
diff --git a/png/missile-swarm.png b/png/missile-swarm.png
new file mode 100644
index 000000000..c5a2ac1d9
Binary files /dev/null and b/png/missile-swarm.png differ
diff --git a/png/mite-alt.png b/png/mite-alt.png
new file mode 100644
index 000000000..613b2e364
Binary files /dev/null and b/png/mite-alt.png differ
diff --git a/png/mite.png b/png/mite.png
new file mode 100644
index 000000000..c975e53bf
Binary files /dev/null and b/png/mite.png differ
diff --git a/png/moai.png b/png/moai.png
new file mode 100644
index 000000000..56fc778d8
Binary files /dev/null and b/png/moai.png differ
diff --git a/png/modern-city.png b/png/modern-city.png
new file mode 100644
index 000000000..e49f2cc47
Binary files /dev/null and b/png/modern-city.png differ
diff --git a/png/moebius-star.png b/png/moebius-star.png
new file mode 100644
index 000000000..9f514e786
Binary files /dev/null and b/png/moebius-star.png differ
diff --git a/png/moebius-trefoil.png b/png/moebius-trefoil.png
new file mode 100644
index 000000000..e7caa4b4b
Binary files /dev/null and b/png/moebius-trefoil.png differ
diff --git a/png/moebius-triangle.png b/png/moebius-triangle.png
new file mode 100644
index 000000000..1c23fa43b
Binary files /dev/null and b/png/moebius-triangle.png differ
diff --git a/png/moka-pot.png b/png/moka-pot.png
new file mode 100644
index 000000000..57c19f544
Binary files /dev/null and b/png/moka-pot.png differ
diff --git a/png/moldova.png b/png/moldova.png
new file mode 100644
index 000000000..8ccfb49b5
Binary files /dev/null and b/png/moldova.png differ
diff --git a/png/mole.png b/png/mole.png
new file mode 100644
index 000000000..656709b35
Binary files /dev/null and b/png/mole.png differ
diff --git a/png/molecule-2.png b/png/molecule-2.png
new file mode 100644
index 000000000..5f0c3e41d
Binary files /dev/null and b/png/molecule-2.png differ
diff --git a/png/molecule.png b/png/molecule.png
new file mode 100644
index 000000000..cf7ea3831
Binary files /dev/null and b/png/molecule.png differ
diff --git a/png/molotov.png b/png/molotov.png
new file mode 100644
index 000000000..c31a731ed
Binary files /dev/null and b/png/molotov.png differ
diff --git a/png/mona-lisa.png b/png/mona-lisa.png
new file mode 100644
index 000000000..2f222ae3b
Binary files /dev/null and b/png/mona-lisa.png differ
diff --git a/png/moncler-jacket.png b/png/moncler-jacket.png
new file mode 100644
index 000000000..9a1431b82
Binary files /dev/null and b/png/moncler-jacket.png differ
diff --git a/png/money-stack.png b/png/money-stack.png
new file mode 100644
index 000000000..ac2de8056
Binary files /dev/null and b/png/money-stack.png differ
diff --git a/png/mongolia.png b/png/mongolia.png
new file mode 100644
index 000000000..a809ac586
Binary files /dev/null and b/png/mongolia.png differ
diff --git a/png/monk-face.png b/png/monk-face.png
new file mode 100644
index 000000000..f5c9985ff
Binary files /dev/null and b/png/monk-face.png differ
diff --git a/png/monkey-wrench.png b/png/monkey-wrench.png
new file mode 100644
index 000000000..f0b1747ed
Binary files /dev/null and b/png/monkey-wrench.png differ
diff --git a/png/monkey.png b/png/monkey.png
new file mode 100644
index 000000000..78ffbf884
Binary files /dev/null and b/png/monkey.png differ
diff --git a/png/mono-wheel-robot.png b/png/mono-wheel-robot.png
new file mode 100644
index 000000000..38d570778
Binary files /dev/null and b/png/mono-wheel-robot.png differ
diff --git a/png/monster-grasp.png b/png/monster-grasp.png
new file mode 100644
index 000000000..46010b11e
Binary files /dev/null and b/png/monster-grasp.png differ
diff --git a/png/monstera-leaf.png b/png/monstera-leaf.png
new file mode 100644
index 000000000..9062525ef
Binary files /dev/null and b/png/monstera-leaf.png differ
diff --git a/png/monument-valley.png b/png/monument-valley.png
new file mode 100644
index 000000000..e58361e36
Binary files /dev/null and b/png/monument-valley.png differ
diff --git a/png/moon-bats.png b/png/moon-bats.png
new file mode 100644
index 000000000..b045c100c
Binary files /dev/null and b/png/moon-bats.png differ
diff --git a/png/moon-claws.png b/png/moon-claws.png
new file mode 100644
index 000000000..e7316be67
Binary files /dev/null and b/png/moon-claws.png differ
diff --git a/png/moon-orbit.png b/png/moon-orbit.png
new file mode 100644
index 000000000..312ff8211
Binary files /dev/null and b/png/moon-orbit.png differ
diff --git a/png/moon.png b/png/moon.png
new file mode 100644
index 000000000..116ea49e3
Binary files /dev/null and b/png/moon.png differ
diff --git a/png/mooring-bollard.png b/png/mooring-bollard.png
new file mode 100644
index 000000000..599d66ebb
Binary files /dev/null and b/png/mooring-bollard.png differ
diff --git a/png/morbid-humour.png b/png/morbid-humour.png
new file mode 100644
index 000000000..aaa957f8d
Binary files /dev/null and b/png/morbid-humour.png differ
diff --git a/png/morgue-feet.png b/png/morgue-feet.png
new file mode 100644
index 000000000..5994e2a41
Binary files /dev/null and b/png/morgue-feet.png differ
diff --git a/png/morph-ball.png b/png/morph-ball.png
new file mode 100644
index 000000000..5d00560cd
Binary files /dev/null and b/png/morph-ball.png differ
diff --git a/png/mortar.png b/png/mortar.png
new file mode 100644
index 000000000..63e0662af
Binary files /dev/null and b/png/mortar.png differ
diff --git a/png/mountain-cave.png b/png/mountain-cave.png
new file mode 100644
index 000000000..c45175b49
Binary files /dev/null and b/png/mountain-cave.png differ
diff --git a/png/mountain-climbing.png b/png/mountain-climbing.png
new file mode 100644
index 000000000..360b1d954
Binary files /dev/null and b/png/mountain-climbing.png differ
diff --git a/png/mountain-road.png b/png/mountain-road.png
new file mode 100644
index 000000000..8276de3ee
Binary files /dev/null and b/png/mountain-road.png differ
diff --git a/png/mountains.png b/png/mountains.png
new file mode 100644
index 000000000..4b8873792
Binary files /dev/null and b/png/mountains.png differ
diff --git a/png/mountaintop.png b/png/mountaintop.png
new file mode 100644
index 000000000..b08856919
Binary files /dev/null and b/png/mountaintop.png differ
diff --git a/png/mounted-knight.png b/png/mounted-knight.png
new file mode 100644
index 000000000..2c151724d
Binary files /dev/null and b/png/mounted-knight.png differ
diff --git a/png/mouse-2.png b/png/mouse-2.png
new file mode 100644
index 000000000..82625bb3d
Binary files /dev/null and b/png/mouse-2.png differ
diff --git a/png/mouse.png b/png/mouse.png
new file mode 100644
index 000000000..33cd9462a
Binary files /dev/null and b/png/mouse.png differ
diff --git a/png/mouth-watering.png b/png/mouth-watering.png
new file mode 100644
index 000000000..bc031dc88
Binary files /dev/null and b/png/mouth-watering.png differ
diff --git a/png/move.png b/png/move.png
new file mode 100644
index 000000000..d5fb0b262
Binary files /dev/null and b/png/move.png differ
diff --git a/png/movement-sensor.png b/png/movement-sensor.png
new file mode 100644
index 000000000..fb2015796
Binary files /dev/null and b/png/movement-sensor.png differ
diff --git a/png/mp-40.png b/png/mp-40.png
new file mode 100644
index 000000000..aaade1a6e
Binary files /dev/null and b/png/mp-40.png differ
diff --git a/png/mp5-2.png b/png/mp5-2.png
new file mode 100644
index 000000000..35723c929
Binary files /dev/null and b/png/mp5-2.png differ
diff --git a/png/mp5.png b/png/mp5.png
new file mode 100644
index 000000000..aed333f30
Binary files /dev/null and b/png/mp5.png differ
diff --git a/png/mp5k.png b/png/mp5k.png
new file mode 100644
index 000000000..f67e43eac
Binary files /dev/null and b/png/mp5k.png differ
diff --git a/png/mucous-pillar.png b/png/mucous-pillar.png
new file mode 100644
index 000000000..81ee46499
Binary files /dev/null and b/png/mucous-pillar.png differ
diff --git a/png/mug-shot.png b/png/mug-shot.png
new file mode 100644
index 000000000..34a508dfe
Binary files /dev/null and b/png/mug-shot.png differ
diff --git a/png/multi-directions.png b/png/multi-directions.png
new file mode 100644
index 000000000..da0e546e4
Binary files /dev/null and b/png/multi-directions.png differ
diff --git a/png/multiple-targets.png b/png/multiple-targets.png
new file mode 100644
index 000000000..5834d5154
Binary files /dev/null and b/png/multiple-targets.png differ
diff --git a/png/mummy-head.png b/png/mummy-head.png
new file mode 100644
index 000000000..d45a4b4cc
Binary files /dev/null and b/png/mummy-head.png differ
diff --git a/png/muscle-fat.png b/png/muscle-fat.png
new file mode 100644
index 000000000..1190c9c6e
Binary files /dev/null and b/png/muscle-fat.png differ
diff --git a/png/muscle-up.png b/png/muscle-up.png
new file mode 100644
index 000000000..96b3316c0
Binary files /dev/null and b/png/muscle-up.png differ
diff --git a/png/muscular-torso.png b/png/muscular-torso.png
new file mode 100644
index 000000000..50ba76f03
Binary files /dev/null and b/png/muscular-torso.png differ
diff --git a/png/mushroom-cloud.png b/png/mushroom-cloud.png
new file mode 100644
index 000000000..ec2bb042a
Binary files /dev/null and b/png/mushroom-cloud.png differ
diff --git a/png/mushroom-gills.png b/png/mushroom-gills.png
new file mode 100644
index 000000000..9952c6f38
Binary files /dev/null and b/png/mushroom-gills.png differ
diff --git a/png/mushroom-house.png b/png/mushroom-house.png
new file mode 100644
index 000000000..e3f1f077c
Binary files /dev/null and b/png/mushroom-house.png differ
diff --git a/png/mushroom.png b/png/mushroom.png
new file mode 100644
index 000000000..3b97eee54
Binary files /dev/null and b/png/mushroom.png differ
diff --git a/png/mushrooms-cluster.png b/png/mushrooms-cluster.png
new file mode 100644
index 000000000..e15e6c684
Binary files /dev/null and b/png/mushrooms-cluster.png differ
diff --git a/png/mushrooms.png b/png/mushrooms.png
new file mode 100644
index 000000000..d84e777ca
Binary files /dev/null and b/png/mushrooms.png differ
diff --git a/png/music-spell.png b/png/music-spell.png
new file mode 100644
index 000000000..8f90e98e6
Binary files /dev/null and b/png/music-spell.png differ
diff --git a/png/musical-keyboard.png b/png/musical-keyboard.png
new file mode 100644
index 000000000..180841e9e
Binary files /dev/null and b/png/musical-keyboard.png differ
diff --git a/png/musical-notes.png b/png/musical-notes.png
new file mode 100644
index 000000000..f6a1560dd
Binary files /dev/null and b/png/musical-notes.png differ
diff --git a/png/musical-score.png b/png/musical-score.png
new file mode 100644
index 000000000..478bf4089
Binary files /dev/null and b/png/musical-score.png differ
diff --git a/png/musket.png b/png/musket.png
new file mode 100644
index 000000000..63fd46d0c
Binary files /dev/null and b/png/musket.png differ
diff --git a/png/mussel.png b/png/mussel.png
new file mode 100644
index 000000000..ccfe7419a
Binary files /dev/null and b/png/mussel.png differ
diff --git a/png/mustache.png b/png/mustache.png
new file mode 100644
index 000000000..d1efc4bb0
Binary files /dev/null and b/png/mustache.png differ
diff --git a/png/mute.png b/png/mute.png
new file mode 100644
index 000000000..9d7856d29
Binary files /dev/null and b/png/mute.png differ
diff --git a/png/nachos.png b/png/nachos.png
new file mode 100644
index 000000000..35416b44e
Binary files /dev/null and b/png/nachos.png differ
diff --git a/png/nailed-foot.png b/png/nailed-foot.png
new file mode 100644
index 000000000..3c460efc0
Binary files /dev/null and b/png/nailed-foot.png differ
diff --git a/png/nailed-head.png b/png/nailed-head.png
new file mode 100644
index 000000000..295a20c39
Binary files /dev/null and b/png/nailed-head.png differ
diff --git a/png/nails.png b/png/nails.png
new file mode 100644
index 000000000..08cc77045
Binary files /dev/null and b/png/nails.png differ
diff --git a/png/nano-bot.png b/png/nano-bot.png
new file mode 100644
index 000000000..a26a97ec4
Binary files /dev/null and b/png/nano-bot.png differ
diff --git a/png/nautilus-shell.png b/png/nautilus-shell.png
new file mode 100644
index 000000000..2c152115c
Binary files /dev/null and b/png/nautilus-shell.png differ
diff --git a/png/neck-bite.png b/png/neck-bite.png
new file mode 100644
index 000000000..7eda4d3c3
Binary files /dev/null and b/png/neck-bite.png differ
diff --git a/png/necklace-display.png b/png/necklace-display.png
new file mode 100644
index 000000000..fa6007c19
Binary files /dev/null and b/png/necklace-display.png differ
diff --git a/png/necklace.png b/png/necklace.png
new file mode 100644
index 000000000..f20d3acfa
Binary files /dev/null and b/png/necklace.png differ
diff --git a/png/nectar.png b/png/nectar.png
new file mode 100644
index 000000000..dcb83268e
Binary files /dev/null and b/png/nectar.png differ
diff --git a/png/needle-drill.png b/png/needle-drill.png
new file mode 100644
index 000000000..7d8d050fc
Binary files /dev/null and b/png/needle-drill.png differ
diff --git a/png/needle-jaws.png b/png/needle-jaws.png
new file mode 100644
index 000000000..c71f32381
Binary files /dev/null and b/png/needle-jaws.png differ
diff --git a/png/nefertiti.png b/png/nefertiti.png
new file mode 100644
index 000000000..870340456
Binary files /dev/null and b/png/nefertiti.png differ
diff --git a/png/nest-birds.png b/png/nest-birds.png
new file mode 100644
index 000000000..3bf7afd94
Binary files /dev/null and b/png/nest-birds.png differ
diff --git a/png/nest-eggs.png b/png/nest-eggs.png
new file mode 100644
index 000000000..e94fb2c79
Binary files /dev/null and b/png/nest-eggs.png differ
diff --git a/png/nested-eclipses.png b/png/nested-eclipses.png
new file mode 100644
index 000000000..58dd75e70
Binary files /dev/null and b/png/nested-eclipses.png differ
diff --git a/png/nested-hearts.png b/png/nested-hearts.png
new file mode 100644
index 000000000..3657bcff6
Binary files /dev/null and b/png/nested-hearts.png differ
diff --git a/png/nested-hexagons.png b/png/nested-hexagons.png
new file mode 100644
index 000000000..ca8d92739
Binary files /dev/null and b/png/nested-hexagons.png differ
diff --git a/png/network-bars.png b/png/network-bars.png
new file mode 100644
index 000000000..bdfd70847
Binary files /dev/null and b/png/network-bars.png differ
diff --git a/png/new-born.png b/png/new-born.png
new file mode 100644
index 000000000..79f4004e7
Binary files /dev/null and b/png/new-born.png differ
diff --git a/png/new-shoot.png b/png/new-shoot.png
new file mode 100644
index 000000000..5131aa293
Binary files /dev/null and b/png/new-shoot.png differ
diff --git a/png/newspaper.png b/png/newspaper.png
new file mode 100644
index 000000000..ba7cec069
Binary files /dev/null and b/png/newspaper.png differ
diff --git a/png/next-button.png b/png/next-button.png
new file mode 100644
index 000000000..6bcd72eeb
Binary files /dev/null and b/png/next-button.png differ
diff --git a/png/nigeria.png b/png/nigeria.png
new file mode 100644
index 000000000..b7d203b72
Binary files /dev/null and b/png/nigeria.png differ
diff --git a/png/night-sky.png b/png/night-sky.png
new file mode 100644
index 000000000..5553b56c0
Binary files /dev/null and b/png/night-sky.png differ
diff --git a/png/night-sleep.png b/png/night-sleep.png
new file mode 100644
index 000000000..0614f3f63
Binary files /dev/null and b/png/night-sleep.png differ
diff --git a/png/night-vision.png b/png/night-vision.png
new file mode 100644
index 000000000..3be9c0cea
Binary files /dev/null and b/png/night-vision.png differ
diff --git a/png/ninja-armor.png b/png/ninja-armor.png
new file mode 100644
index 000000000..a46e04896
Binary files /dev/null and b/png/ninja-armor.png differ
diff --git a/png/ninja-head.png b/png/ninja-head.png
new file mode 100644
index 000000000..d65fcd5c1
Binary files /dev/null and b/png/ninja-head.png differ
diff --git a/png/ninja-heroic-stance.png b/png/ninja-heroic-stance.png
new file mode 100644
index 000000000..34425a9d3
Binary files /dev/null and b/png/ninja-heroic-stance.png differ
diff --git a/png/ninja-mask.png b/png/ninja-mask.png
new file mode 100644
index 000000000..a0b78340b
Binary files /dev/null and b/png/ninja-mask.png differ
diff --git a/png/ninja-star.png b/png/ninja-star.png
new file mode 100644
index 000000000..f503141c7
Binary files /dev/null and b/png/ninja-star.png differ
diff --git a/png/ninja-velociraptor.png b/png/ninja-velociraptor.png
new file mode 100644
index 000000000..80b60aa1b
Binary files /dev/null and b/png/ninja-velociraptor.png differ
diff --git a/png/nodular.png b/png/nodular.png
new file mode 100644
index 000000000..e4405bbe3
Binary files /dev/null and b/png/nodular.png differ
diff --git a/png/noodle-ball.png b/png/noodle-ball.png
new file mode 100644
index 000000000..dccfd012e
Binary files /dev/null and b/png/noodle-ball.png differ
diff --git a/png/noodles.png b/png/noodles.png
new file mode 100644
index 000000000..7f1b7c8fe
Binary files /dev/null and b/png/noodles.png differ
diff --git a/png/north-star-shuriken.png b/png/north-star-shuriken.png
new file mode 100644
index 000000000..7cf04ce66
Binary files /dev/null and b/png/north-star-shuriken.png differ
diff --git a/png/nose-front.png b/png/nose-front.png
new file mode 100644
index 000000000..9729d8b8f
Binary files /dev/null and b/png/nose-front.png differ
diff --git a/png/nose-side.png b/png/nose-side.png
new file mode 100644
index 000000000..14230f224
Binary files /dev/null and b/png/nose-side.png differ
diff --git a/png/notebook.png b/png/notebook.png
new file mode 100644
index 000000000..d25b25636
Binary files /dev/null and b/png/notebook.png differ
diff --git a/png/nothing-to-say.png b/png/nothing-to-say.png
new file mode 100644
index 000000000..58d19b310
Binary files /dev/null and b/png/nothing-to-say.png differ
diff --git a/png/nuclear-bomb.png b/png/nuclear-bomb.png
new file mode 100644
index 000000000..08cf04ea4
Binary files /dev/null and b/png/nuclear-bomb.png differ
diff --git a/png/nuclear-plant.png b/png/nuclear-plant.png
new file mode 100644
index 000000000..fbb59b300
Binary files /dev/null and b/png/nuclear-plant.png differ
diff --git a/png/nuclear-waste.png b/png/nuclear-waste.png
new file mode 100644
index 000000000..8ee19e7d0
Binary files /dev/null and b/png/nuclear-waste.png differ
diff --git a/png/nuclear.png b/png/nuclear.png
new file mode 100644
index 000000000..5cf85c385
Binary files /dev/null and b/png/nuclear.png differ
diff --git a/png/nun-face.png b/png/nun-face.png
new file mode 100644
index 000000000..636e1bc63
Binary files /dev/null and b/png/nun-face.png differ
diff --git a/png/nunchaku.png b/png/nunchaku.png
new file mode 100644
index 000000000..54866df83
Binary files /dev/null and b/png/nunchaku.png differ
diff --git a/png/nurse-female.png b/png/nurse-female.png
new file mode 100644
index 000000000..2930f7f7d
Binary files /dev/null and b/png/nurse-female.png differ
diff --git a/png/nurse-male.png b/png/nurse-male.png
new file mode 100644
index 000000000..75c8422b0
Binary files /dev/null and b/png/nurse-male.png differ
diff --git a/png/o-brick.png b/png/o-brick.png
new file mode 100644
index 000000000..8d65c7f23
Binary files /dev/null and b/png/o-brick.png differ
diff --git a/png/oak-leaf.png b/png/oak-leaf.png
new file mode 100644
index 000000000..059d28d20
Binary files /dev/null and b/png/oak-leaf.png differ
diff --git a/png/oak.png b/png/oak.png
new file mode 100644
index 000000000..c5fe58d06
Binary files /dev/null and b/png/oak.png differ
diff --git a/png/oasis.png b/png/oasis.png
new file mode 100644
index 000000000..8aa40a3a9
Binary files /dev/null and b/png/oasis.png differ
diff --git a/png/oat.png b/png/oat.png
new file mode 100644
index 000000000..c8f1833cf
Binary files /dev/null and b/png/oat.png differ
diff --git a/png/obelisk.png b/png/obelisk.png
new file mode 100644
index 000000000..526b59e13
Binary files /dev/null and b/png/obelisk.png differ
diff --git a/png/observatory.png b/png/observatory.png
new file mode 100644
index 000000000..39e359bf6
Binary files /dev/null and b/png/observatory.png differ
diff --git a/png/ocarina.png b/png/ocarina.png
new file mode 100644
index 000000000..984dd9434
Binary files /dev/null and b/png/ocarina.png differ
diff --git a/png/occupy.png b/png/occupy.png
new file mode 100644
index 000000000..7602f98be
Binary files /dev/null and b/png/occupy.png differ
diff --git a/png/octogonal-eye.png b/png/octogonal-eye.png
new file mode 100644
index 000000000..01dacf970
Binary files /dev/null and b/png/octogonal-eye.png differ
diff --git a/png/octoman.png b/png/octoman.png
new file mode 100644
index 000000000..b4f704b5e
Binary files /dev/null and b/png/octoman.png differ
diff --git a/png/octopus.png b/png/octopus.png
new file mode 100644
index 000000000..921282265
Binary files /dev/null and b/png/octopus.png differ
diff --git a/png/oden.png b/png/oden.png
new file mode 100644
index 000000000..ec7ed9cca
Binary files /dev/null and b/png/oden.png differ
diff --git a/png/office-chair.png b/png/office-chair.png
new file mode 100644
index 000000000..8155e2fa7
Binary files /dev/null and b/png/office-chair.png differ
diff --git a/png/offshore-platform.png b/png/offshore-platform.png
new file mode 100644
index 000000000..c4abbb386
Binary files /dev/null and b/png/offshore-platform.png differ
diff --git a/png/ogre.png b/png/ogre.png
new file mode 100644
index 000000000..c74695b47
Binary files /dev/null and b/png/ogre.png differ
diff --git a/png/oil-can.png b/png/oil-can.png
new file mode 100644
index 000000000..38405946d
Binary files /dev/null and b/png/oil-can.png differ
diff --git a/png/oil-drum.png b/png/oil-drum.png
new file mode 100644
index 000000000..910ccb86c
Binary files /dev/null and b/png/oil-drum.png differ
diff --git a/png/oil-pump.png b/png/oil-pump.png
new file mode 100644
index 000000000..81acc7848
Binary files /dev/null and b/png/oil-pump.png differ
diff --git a/png/oil-rig.png b/png/oil-rig.png
new file mode 100644
index 000000000..ed9484a0d
Binary files /dev/null and b/png/oil-rig.png differ
diff --git a/png/oily-spiral.png b/png/oily-spiral.png
new file mode 100644
index 000000000..058360486
Binary files /dev/null and b/png/oily-spiral.png differ
diff --git a/png/old-king.png b/png/old-king.png
new file mode 100644
index 000000000..cc254e46e
Binary files /dev/null and b/png/old-king.png differ
diff --git a/png/old-lantern.png b/png/old-lantern.png
new file mode 100644
index 000000000..bb48e71f1
Binary files /dev/null and b/png/old-lantern.png differ
diff --git a/png/old-microphone.png b/png/old-microphone.png
new file mode 100644
index 000000000..f864b896f
Binary files /dev/null and b/png/old-microphone.png differ
diff --git a/png/old-wagon.png b/png/old-wagon.png
new file mode 100644
index 000000000..b777e8217
Binary files /dev/null and b/png/old-wagon.png differ
diff --git a/png/olive.png b/png/olive.png
new file mode 100644
index 000000000..776eaeac6
Binary files /dev/null and b/png/olive.png differ
diff --git a/png/omega.png b/png/omega.png
new file mode 100644
index 000000000..d4cb61d52
Binary files /dev/null and b/png/omega.png differ
diff --git a/png/on-sight.png b/png/on-sight.png
new file mode 100644
index 000000000..c359b09da
Binary files /dev/null and b/png/on-sight.png differ
diff --git a/png/on-target.png b/png/on-target.png
new file mode 100644
index 000000000..3d2711252
Binary files /dev/null and b/png/on-target.png differ
diff --git a/png/one-eyed.png b/png/one-eyed.png
new file mode 100644
index 000000000..2645896a3
Binary files /dev/null and b/png/one-eyed.png differ
diff --git a/png/oni.png b/png/oni.png
new file mode 100644
index 000000000..122d9c2a7
Binary files /dev/null and b/png/oni.png differ
diff --git a/png/onigori.png b/png/onigori.png
new file mode 100644
index 000000000..d448697ec
Binary files /dev/null and b/png/onigori.png differ
diff --git a/png/open-book.png b/png/open-book.png
new file mode 100644
index 000000000..6883c26ff
Binary files /dev/null and b/png/open-book.png differ
diff --git a/png/open-chest.png b/png/open-chest.png
new file mode 100644
index 000000000..7b2dafaa9
Binary files /dev/null and b/png/open-chest.png differ
diff --git a/png/open-folder.png b/png/open-folder.png
new file mode 100644
index 000000000..7602e16cc
Binary files /dev/null and b/png/open-folder.png differ
diff --git a/png/open-gate.png b/png/open-gate.png
new file mode 100644
index 000000000..817dafb3a
Binary files /dev/null and b/png/open-gate.png differ
diff --git a/png/open-palm.png b/png/open-palm.png
new file mode 100644
index 000000000..dff5ade60
Binary files /dev/null and b/png/open-palm.png differ
diff --git a/png/open-treasure-chest.png b/png/open-treasure-chest.png
new file mode 100644
index 000000000..bdb61de88
Binary files /dev/null and b/png/open-treasure-chest.png differ
diff --git a/png/open-wound.png b/png/open-wound.png
new file mode 100644
index 000000000..8d9866841
Binary files /dev/null and b/png/open-wound.png differ
diff --git a/png/opened-food-can.png b/png/opened-food-can.png
new file mode 100644
index 000000000..6d24f409b
Binary files /dev/null and b/png/opened-food-can.png differ
diff --git a/png/opening-shell.png b/png/opening-shell.png
new file mode 100644
index 000000000..a62bce72e
Binary files /dev/null and b/png/opening-shell.png differ
diff --git a/png/ophanim.png b/png/ophanim.png
new file mode 100644
index 000000000..ba3a214c8
Binary files /dev/null and b/png/ophanim.png differ
diff --git a/png/ophiuchus.png b/png/ophiuchus.png
new file mode 100644
index 000000000..7e260e50d
Binary files /dev/null and b/png/ophiuchus.png differ
diff --git a/png/oppidum.png b/png/oppidum.png
new file mode 100644
index 000000000..7fb0a4d74
Binary files /dev/null and b/png/oppidum.png differ
diff --git a/png/opposite-hearts.png b/png/opposite-hearts.png
new file mode 100644
index 000000000..5eb6cd87b
Binary files /dev/null and b/png/opposite-hearts.png differ
diff --git a/png/oppression.png b/png/oppression.png
new file mode 100644
index 000000000..24f8c1a52
Binary files /dev/null and b/png/oppression.png differ
diff --git a/png/orange-slice.png b/png/orange-slice.png
new file mode 100644
index 000000000..a2cc698ed
Binary files /dev/null and b/png/orange-slice.png differ
diff --git a/png/orange.png b/png/orange.png
new file mode 100644
index 000000000..0f8230c3d
Binary files /dev/null and b/png/orange.png differ
diff --git a/png/orb-direction.png b/png/orb-direction.png
new file mode 100644
index 000000000..dcd17edd8
Binary files /dev/null and b/png/orb-direction.png differ
diff --git a/png/orb-wand.png b/png/orb-wand.png
new file mode 100644
index 000000000..b75df1f77
Binary files /dev/null and b/png/orb-wand.png differ
diff --git a/png/orbit.png b/png/orbit.png
new file mode 100644
index 000000000..17dd93a9d
Binary files /dev/null and b/png/orbit.png differ
diff --git a/png/orbital-rays.png b/png/orbital-rays.png
new file mode 100644
index 000000000..ef7206bb3
Binary files /dev/null and b/png/orbital-rays.png differ
diff --git a/png/orbital.png b/png/orbital.png
new file mode 100644
index 000000000..9586d9f45
Binary files /dev/null and b/png/orbital.png differ
diff --git a/png/orc-head.png b/png/orc-head.png
new file mode 100644
index 000000000..c1ecd7861
Binary files /dev/null and b/png/orc-head.png differ
diff --git a/png/ore.png b/png/ore.png
new file mode 100644
index 000000000..b23d90eac
Binary files /dev/null and b/png/ore.png differ
diff --git a/png/organigram.png b/png/organigram.png
new file mode 100644
index 000000000..fada4572a
Binary files /dev/null and b/png/organigram.png differ
diff --git a/png/orrery.png b/png/orrery.png
new file mode 100644
index 000000000..5b876b82d
Binary files /dev/null and b/png/orrery.png differ
diff --git a/png/ostrich.png b/png/ostrich.png
new file mode 100644
index 000000000..0430e6a60
Binary files /dev/null and b/png/ostrich.png differ
diff --git a/png/otamatone.png b/png/otamatone.png
new file mode 100644
index 000000000..7f6ba93cd
Binary files /dev/null and b/png/otamatone.png differ
diff --git a/png/ouroboros.png b/png/ouroboros.png
new file mode 100644
index 000000000..6ac93ea58
Binary files /dev/null and b/png/ouroboros.png differ
diff --git a/png/outback-hat.png b/png/outback-hat.png
new file mode 100644
index 000000000..b3eb36aba
Binary files /dev/null and b/png/outback-hat.png differ
diff --git a/png/over-infinity.png b/png/over-infinity.png
new file mode 100644
index 000000000..ff8392d65
Binary files /dev/null and b/png/over-infinity.png differ
diff --git a/png/overdose.png b/png/overdose.png
new file mode 100644
index 000000000..81a67c4fb
Binary files /dev/null and b/png/overdose.png differ
diff --git a/png/overdrive.png b/png/overdrive.png
new file mode 100644
index 000000000..597a4301e
Binary files /dev/null and b/png/overdrive.png differ
diff --git a/png/overhead.png b/png/overhead.png
new file mode 100644
index 000000000..0e367e73a
Binary files /dev/null and b/png/overhead.png differ
diff --git a/png/overkill.png b/png/overkill.png
new file mode 100644
index 000000000..a900642eb
Binary files /dev/null and b/png/overkill.png differ
diff --git a/png/overlord-helm.png b/png/overlord-helm.png
new file mode 100644
index 000000000..3b5c0276e
Binary files /dev/null and b/png/overlord-helm.png differ
diff --git a/png/overmind.png b/png/overmind.png
new file mode 100644
index 000000000..d208287eb
Binary files /dev/null and b/png/overmind.png differ
diff --git a/png/owl.png b/png/owl.png
new file mode 100644
index 000000000..7de586d43
Binary files /dev/null and b/png/owl.png differ
diff --git a/png/oyster-pearl.png b/png/oyster-pearl.png
new file mode 100644
index 000000000..98f5adbdb
Binary files /dev/null and b/png/oyster-pearl.png differ
diff --git a/png/oyster.png b/png/oyster.png
new file mode 100644
index 000000000..60a0c654b
Binary files /dev/null and b/png/oyster.png differ
diff --git a/png/p90.png b/png/p90.png
new file mode 100644
index 000000000..711c4567e
Binary files /dev/null and b/png/p90.png differ
diff --git a/png/packed-planks.png b/png/packed-planks.png
new file mode 100644
index 000000000..7df502f5b
Binary files /dev/null and b/png/packed-planks.png differ
diff --git a/png/paddle-steamer.png b/png/paddle-steamer.png
new file mode 100644
index 000000000..35cf69732
Binary files /dev/null and b/png/paddle-steamer.png differ
diff --git a/png/paddles.png b/png/paddles.png
new file mode 100644
index 000000000..0d94a83b7
Binary files /dev/null and b/png/paddles.png differ
diff --git a/png/padlock-open.png b/png/padlock-open.png
new file mode 100644
index 000000000..866e66cbf
Binary files /dev/null and b/png/padlock-open.png differ
diff --git a/png/padlock.png b/png/padlock.png
new file mode 100644
index 000000000..e3eb94500
Binary files /dev/null and b/png/padlock.png differ
diff --git a/png/pagoda.png b/png/pagoda.png
new file mode 100644
index 000000000..88d8de7dd
Binary files /dev/null and b/png/pagoda.png differ
diff --git a/png/paint-brush.png b/png/paint-brush.png
new file mode 100644
index 000000000..80679d414
Binary files /dev/null and b/png/paint-brush.png differ
diff --git a/png/paint-bucket.png b/png/paint-bucket.png
new file mode 100644
index 000000000..200047514
Binary files /dev/null and b/png/paint-bucket.png differ
diff --git a/png/paint-roller.png b/png/paint-roller.png
new file mode 100644
index 000000000..07544bbd2
Binary files /dev/null and b/png/paint-roller.png differ
diff --git a/png/painted-pottery.png b/png/painted-pottery.png
new file mode 100644
index 000000000..b134f38fa
Binary files /dev/null and b/png/painted-pottery.png differ
diff --git a/png/palette.png b/png/palette.png
new file mode 100644
index 000000000..dc9a2c029
Binary files /dev/null and b/png/palette.png differ
diff --git a/png/palisade.png b/png/palisade.png
new file mode 100644
index 000000000..50411a36e
Binary files /dev/null and b/png/palisade.png differ
diff --git a/png/palm-tree.png b/png/palm-tree.png
new file mode 100644
index 000000000..b287162e6
Binary files /dev/null and b/png/palm-tree.png differ
diff --git a/png/palm.png b/png/palm.png
new file mode 100644
index 000000000..233f69f2c
Binary files /dev/null and b/png/palm.png differ
diff --git a/png/pan-flute.png b/png/pan-flute.png
new file mode 100644
index 000000000..486984e8b
Binary files /dev/null and b/png/pan-flute.png differ
diff --git a/png/panda.png b/png/panda.png
new file mode 100644
index 000000000..abd74a359
Binary files /dev/null and b/png/panda.png differ
diff --git a/png/pangolin.png b/png/pangolin.png
new file mode 100644
index 000000000..93caac7e9
Binary files /dev/null and b/png/pangolin.png differ
diff --git a/png/panzerfaust.png b/png/panzerfaust.png
new file mode 100644
index 000000000..27bdff808
Binary files /dev/null and b/png/panzerfaust.png differ
diff --git a/png/paper-arrow.png b/png/paper-arrow.png
new file mode 100644
index 000000000..a0abfbc89
Binary files /dev/null and b/png/paper-arrow.png differ
diff --git a/png/paper-bag-crumpled.png b/png/paper-bag-crumpled.png
new file mode 100644
index 000000000..d46109898
Binary files /dev/null and b/png/paper-bag-crumpled.png differ
diff --git a/png/paper-bag-folded.png b/png/paper-bag-folded.png
new file mode 100644
index 000000000..8f5f90bd0
Binary files /dev/null and b/png/paper-bag-folded.png differ
diff --git a/png/paper-bag-open.png b/png/paper-bag-open.png
new file mode 100644
index 000000000..bfcddd154
Binary files /dev/null and b/png/paper-bag-open.png differ
diff --git a/png/paper-boat.png b/png/paper-boat.png
new file mode 100644
index 000000000..2ef01f534
Binary files /dev/null and b/png/paper-boat.png differ
diff --git a/png/paper-bomb.png b/png/paper-bomb.png
new file mode 100644
index 000000000..85893c706
Binary files /dev/null and b/png/paper-bomb.png differ
diff --git a/png/paper-clip.png b/png/paper-clip.png
new file mode 100644
index 000000000..228259037
Binary files /dev/null and b/png/paper-clip.png differ
diff --git a/png/paper-crane.png b/png/paper-crane.png
new file mode 100644
index 000000000..b2955cf51
Binary files /dev/null and b/png/paper-crane.png differ
diff --git a/png/paper-frog.png b/png/paper-frog.png
new file mode 100644
index 000000000..970cfa7a3
Binary files /dev/null and b/png/paper-frog.png differ
diff --git a/png/paper-lantern.png b/png/paper-lantern.png
new file mode 100644
index 000000000..8b3658033
Binary files /dev/null and b/png/paper-lantern.png differ
diff --git a/png/paper-plane.png b/png/paper-plane.png
new file mode 100644
index 000000000..b3bd95b46
Binary files /dev/null and b/png/paper-plane.png differ
diff --git a/png/paper-tray.png b/png/paper-tray.png
new file mode 100644
index 000000000..f24fadc61
Binary files /dev/null and b/png/paper-tray.png differ
diff --git a/png/paper-windmill.png b/png/paper-windmill.png
new file mode 100644
index 000000000..70e058505
Binary files /dev/null and b/png/paper-windmill.png differ
diff --git a/png/paper.png b/png/paper.png
new file mode 100644
index 000000000..65ffc24ef
Binary files /dev/null and b/png/paper.png differ
diff --git a/png/papers.png b/png/papers.png
new file mode 100644
index 000000000..885e99fbf
Binary files /dev/null and b/png/papers.png differ
diff --git a/png/papyrus.png b/png/papyrus.png
new file mode 100644
index 000000000..ee3af5473
Binary files /dev/null and b/png/papyrus.png differ
diff --git a/png/parachute.png b/png/parachute.png
new file mode 100644
index 000000000..8a5173270
Binary files /dev/null and b/png/parachute.png differ
diff --git a/png/paraguay.png b/png/paraguay.png
new file mode 100644
index 000000000..9eb9d03a6
Binary files /dev/null and b/png/paraguay.png differ
diff --git a/png/paranoia.png b/png/paranoia.png
new file mode 100644
index 000000000..db89a1b56
Binary files /dev/null and b/png/paranoia.png differ
diff --git a/png/parasaurolophus.png b/png/parasaurolophus.png
new file mode 100644
index 000000000..93f63e9f9
Binary files /dev/null and b/png/parasaurolophus.png differ
diff --git a/png/park-bench.png b/png/park-bench.png
new file mode 100644
index 000000000..b1d4a6124
Binary files /dev/null and b/png/park-bench.png differ
diff --git a/png/parmecia.png b/png/parmecia.png
new file mode 100644
index 000000000..e9e521af9
Binary files /dev/null and b/png/parmecia.png differ
diff --git a/png/parrot-head.png b/png/parrot-head.png
new file mode 100644
index 000000000..fdcc97b43
Binary files /dev/null and b/png/parrot-head.png differ
diff --git a/png/party-flags.png b/png/party-flags.png
new file mode 100644
index 000000000..2616bb6fd
Binary files /dev/null and b/png/party-flags.png differ
diff --git a/png/party-hat.png b/png/party-hat.png
new file mode 100644
index 000000000..5597036c3
Binary files /dev/null and b/png/party-hat.png differ
diff --git a/png/party-popper.png b/png/party-popper.png
new file mode 100644
index 000000000..ad9039723
Binary files /dev/null and b/png/party-popper.png differ
diff --git a/png/passport.png b/png/passport.png
new file mode 100644
index 000000000..d71ea213a
Binary files /dev/null and b/png/passport.png differ
diff --git a/png/path-distance.png b/png/path-distance.png
new file mode 100644
index 000000000..5017a6e68
Binary files /dev/null and b/png/path-distance.png differ
diff --git a/png/path-tile.png b/png/path-tile.png
new file mode 100644
index 000000000..675a3eb26
Binary files /dev/null and b/png/path-tile.png differ
diff --git a/png/pauldrons.png b/png/pauldrons.png
new file mode 100644
index 000000000..f0fe6058b
Binary files /dev/null and b/png/pauldrons.png differ
diff --git a/png/pause-button.png b/png/pause-button.png
new file mode 100644
index 000000000..80ceda57f
Binary files /dev/null and b/png/pause-button.png differ
diff --git a/png/paw-front.png b/png/paw-front.png
new file mode 100644
index 000000000..a63afdbd9
Binary files /dev/null and b/png/paw-front.png differ
diff --git a/png/paw-heart.png b/png/paw-heart.png
new file mode 100644
index 000000000..90638ab9e
Binary files /dev/null and b/png/paw-heart.png differ
diff --git a/png/paw-print.png b/png/paw-print.png
new file mode 100644
index 000000000..9e88ac26d
Binary files /dev/null and b/png/paw-print.png differ
diff --git a/png/paw.png b/png/paw.png
new file mode 100644
index 000000000..17217c442
Binary files /dev/null and b/png/paw.png differ
diff --git a/png/pawn.png b/png/pawn.png
new file mode 100644
index 000000000..f953693fe
Binary files /dev/null and b/png/pawn.png differ
diff --git a/png/pawprint.png b/png/pawprint.png
new file mode 100644
index 000000000..e2ab7f190
Binary files /dev/null and b/png/pawprint.png differ
diff --git a/png/pay-money.png b/png/pay-money.png
new file mode 100644
index 000000000..f77a07a6b
Binary files /dev/null and b/png/pay-money.png differ
diff --git a/png/pc.png b/png/pc.png
new file mode 100644
index 000000000..9d5ad9740
Binary files /dev/null and b/png/pc.png differ
diff --git a/png/peace-dove.png b/png/peace-dove.png
new file mode 100644
index 000000000..866dab138
Binary files /dev/null and b/png/peace-dove.png differ
diff --git a/png/peach.png b/png/peach.png
new file mode 100644
index 000000000..298b93fc3
Binary files /dev/null and b/png/peach.png differ
diff --git a/png/peaks.png b/png/peaks.png
new file mode 100644
index 000000000..eeb2333ed
Binary files /dev/null and b/png/peaks.png differ
diff --git a/png/peanut.png b/png/peanut.png
new file mode 100644
index 000000000..b8cad5b3c
Binary files /dev/null and b/png/peanut.png differ
diff --git a/png/pear.png b/png/pear.png
new file mode 100644
index 000000000..5f2b7104d
Binary files /dev/null and b/png/pear.png differ
diff --git a/png/pearl-earring.png b/png/pearl-earring.png
new file mode 100644
index 000000000..f30167dea
Binary files /dev/null and b/png/pearl-earring.png differ
diff --git a/png/pearl-necklace.png b/png/pearl-necklace.png
new file mode 100644
index 000000000..bbf392779
Binary files /dev/null and b/png/pearl-necklace.png differ
diff --git a/png/peas.png b/png/peas.png
new file mode 100644
index 000000000..8d40dc6f8
Binary files /dev/null and b/png/peas.png differ
diff --git a/png/pegasus.png b/png/pegasus.png
new file mode 100644
index 000000000..7c0fda908
Binary files /dev/null and b/png/pegasus.png differ
diff --git a/png/pelvis-bone.png b/png/pelvis-bone.png
new file mode 100644
index 000000000..7032b5150
Binary files /dev/null and b/png/pelvis-bone.png differ
diff --git a/png/pencil-brush.png b/png/pencil-brush.png
new file mode 100644
index 000000000..6e357a9ab
Binary files /dev/null and b/png/pencil-brush.png differ
diff --git a/png/pencil-ruler.png b/png/pencil-ruler.png
new file mode 100644
index 000000000..a6089100b
Binary files /dev/null and b/png/pencil-ruler.png differ
diff --git a/png/pencil.png b/png/pencil.png
new file mode 100644
index 000000000..2b94f5a4d
Binary files /dev/null and b/png/pencil.png differ
diff --git a/png/pendant-key.png b/png/pendant-key.png
new file mode 100644
index 000000000..1d561794d
Binary files /dev/null and b/png/pendant-key.png differ
diff --git a/png/pendulum-swing.png b/png/pendulum-swing.png
new file mode 100644
index 000000000..b3924c90c
Binary files /dev/null and b/png/pendulum-swing.png differ
diff --git a/png/penguin.png b/png/penguin.png
new file mode 100644
index 000000000..b73e95c57
Binary files /dev/null and b/png/penguin.png differ
diff --git a/png/pentacle.png b/png/pentacle.png
new file mode 100644
index 000000000..252b2c972
Binary files /dev/null and b/png/pentacle.png differ
diff --git a/png/pentagram-rose.png b/png/pentagram-rose.png
new file mode 100644
index 000000000..7e4317534
Binary files /dev/null and b/png/pentagram-rose.png differ
diff --git a/png/pentarrows-tornado.png b/png/pentarrows-tornado.png
new file mode 100644
index 000000000..049f906a2
Binary files /dev/null and b/png/pentarrows-tornado.png differ
diff --git a/png/perfume-bottle.png b/png/perfume-bottle.png
new file mode 100644
index 000000000..7e7d3b38b
Binary files /dev/null and b/png/perfume-bottle.png differ
diff --git a/png/periscope.png b/png/periscope.png
new file mode 100644
index 000000000..412c14986
Binary files /dev/null and b/png/periscope.png differ
diff --git a/png/perpendicular-rings.png b/png/perpendicular-rings.png
new file mode 100644
index 000000000..26f1ac757
Binary files /dev/null and b/png/perpendicular-rings.png differ
diff --git a/png/person-in-bed.png b/png/person-in-bed.png
new file mode 100644
index 000000000..6a6e9bfc2
Binary files /dev/null and b/png/person-in-bed.png differ
diff --git a/png/person.png b/png/person.png
new file mode 100644
index 000000000..642bada02
Binary files /dev/null and b/png/person.png differ
diff --git a/png/perspective-dice-five.png b/png/perspective-dice-five.png
new file mode 100644
index 000000000..54e8f81b3
Binary files /dev/null and b/png/perspective-dice-five.png differ
diff --git a/png/perspective-dice-four.png b/png/perspective-dice-four.png
new file mode 100644
index 000000000..6520e034d
Binary files /dev/null and b/png/perspective-dice-four.png differ
diff --git a/png/perspective-dice-one.png b/png/perspective-dice-one.png
new file mode 100644
index 000000000..ae4194aa2
Binary files /dev/null and b/png/perspective-dice-one.png differ
diff --git a/png/perspective-dice-six-faces-five.png b/png/perspective-dice-six-faces-five.png
new file mode 100644
index 000000000..5edd898b8
Binary files /dev/null and b/png/perspective-dice-six-faces-five.png differ
diff --git a/png/perspective-dice-six-faces-four.png b/png/perspective-dice-six-faces-four.png
new file mode 100644
index 000000000..2df917a8b
Binary files /dev/null and b/png/perspective-dice-six-faces-four.png differ
diff --git a/png/perspective-dice-six-faces-one.png b/png/perspective-dice-six-faces-one.png
new file mode 100644
index 000000000..b6f82f731
Binary files /dev/null and b/png/perspective-dice-six-faces-one.png differ
diff --git a/png/perspective-dice-six-faces-random.png b/png/perspective-dice-six-faces-random.png
new file mode 100644
index 000000000..d293d7a4e
Binary files /dev/null and b/png/perspective-dice-six-faces-random.png differ
diff --git a/png/perspective-dice-six-faces-six.png b/png/perspective-dice-six-faces-six.png
new file mode 100644
index 000000000..79b70efda
Binary files /dev/null and b/png/perspective-dice-six-faces-six.png differ
diff --git a/png/perspective-dice-six-faces-three.png b/png/perspective-dice-six-faces-three.png
new file mode 100644
index 000000000..a7cae1327
Binary files /dev/null and b/png/perspective-dice-six-faces-three.png differ
diff --git a/png/perspective-dice-six-faces-two.png b/png/perspective-dice-six-faces-two.png
new file mode 100644
index 000000000..07fdbdca9
Binary files /dev/null and b/png/perspective-dice-six-faces-two.png differ
diff --git a/png/perspective-dice-six.png b/png/perspective-dice-six.png
new file mode 100644
index 000000000..01b5a02de
Binary files /dev/null and b/png/perspective-dice-six.png differ
diff --git a/png/perspective-dice-three.png b/png/perspective-dice-three.png
new file mode 100644
index 000000000..27695cb8b
Binary files /dev/null and b/png/perspective-dice-three.png differ
diff --git a/png/perspective-dice-two.png b/png/perspective-dice-two.png
new file mode 100644
index 000000000..9682c81d6
Binary files /dev/null and b/png/perspective-dice-two.png differ
diff --git a/png/peru.png b/png/peru.png
new file mode 100644
index 000000000..801c026c6
Binary files /dev/null and b/png/peru.png differ
diff --git a/png/pestle-mortar.png b/png/pestle-mortar.png
new file mode 100644
index 000000000..5a8fa2a06
Binary files /dev/null and b/png/pestle-mortar.png differ
diff --git a/png/pharoah.png b/png/pharoah.png
new file mode 100644
index 000000000..82af2910a
Binary files /dev/null and b/png/pharoah.png differ
diff --git a/png/philosopher-bust.png b/png/philosopher-bust.png
new file mode 100644
index 000000000..bef739434
Binary files /dev/null and b/png/philosopher-bust.png differ
diff --git a/png/phone.png b/png/phone.png
new file mode 100644
index 000000000..61b2c95a7
Binary files /dev/null and b/png/phone.png differ
diff --git a/png/photo-camera.png b/png/photo-camera.png
new file mode 100644
index 000000000..2f1ff6f72
Binary files /dev/null and b/png/photo-camera.png differ
diff --git a/png/phrygian-cap.png b/png/phrygian-cap.png
new file mode 100644
index 000000000..c9bf675a7
Binary files /dev/null and b/png/phrygian-cap.png differ
diff --git a/png/pianist.png b/png/pianist.png
new file mode 100644
index 000000000..ef7908b1a
Binary files /dev/null and b/png/pianist.png differ
diff --git a/png/piano-keys.png b/png/piano-keys.png
new file mode 100644
index 000000000..3cff32ee7
Binary files /dev/null and b/png/piano-keys.png differ
diff --git a/png/pick-of-destiny.png b/png/pick-of-destiny.png
new file mode 100644
index 000000000..e3b355ca5
Binary files /dev/null and b/png/pick-of-destiny.png differ
diff --git a/png/pickelhaube.png b/png/pickelhaube.png
new file mode 100644
index 000000000..48753dd9b
Binary files /dev/null and b/png/pickelhaube.png differ
diff --git a/png/pickle.png b/png/pickle.png
new file mode 100644
index 000000000..9136d75e9
Binary files /dev/null and b/png/pickle.png differ
diff --git a/png/pie-chart.png b/png/pie-chart.png
new file mode 100644
index 000000000..21be06e43
Binary files /dev/null and b/png/pie-chart.png differ
diff --git a/png/pie-slice.png b/png/pie-slice.png
new file mode 100644
index 000000000..e9459421f
Binary files /dev/null and b/png/pie-slice.png differ
diff --git a/png/piece-skull.png b/png/piece-skull.png
new file mode 100644
index 000000000..06db85bbe
Binary files /dev/null and b/png/piece-skull.png differ
diff --git a/png/pierced-body.png b/png/pierced-body.png
new file mode 100644
index 000000000..497ab84d4
Binary files /dev/null and b/png/pierced-body.png differ
diff --git a/png/pierced-heart.png b/png/pierced-heart.png
new file mode 100644
index 000000000..4553936b0
Binary files /dev/null and b/png/pierced-heart.png differ
diff --git a/png/piercing-sword.png b/png/piercing-sword.png
new file mode 100644
index 000000000..a4960d84c
Binary files /dev/null and b/png/piercing-sword.png differ
diff --git a/png/pig-face.png b/png/pig-face.png
new file mode 100644
index 000000000..c67c5de2e
Binary files /dev/null and b/png/pig-face.png differ
diff --git a/png/pig.png b/png/pig.png
new file mode 100644
index 000000000..a5e7cea9e
Binary files /dev/null and b/png/pig.png differ
diff --git a/png/piggy-bank.png b/png/piggy-bank.png
new file mode 100644
index 000000000..2f7094427
Binary files /dev/null and b/png/piggy-bank.png differ
diff --git a/png/pikeman.png b/png/pikeman.png
new file mode 100644
index 000000000..f160caa8f
Binary files /dev/null and b/png/pikeman.png differ
diff --git a/png/pilgrim-hat.png b/png/pilgrim-hat.png
new file mode 100644
index 000000000..4dafe60b8
Binary files /dev/null and b/png/pilgrim-hat.png differ
diff --git a/png/pill-drop.png b/png/pill-drop.png
new file mode 100644
index 000000000..b9657d6ab
Binary files /dev/null and b/png/pill-drop.png differ
diff --git a/png/pill.png b/png/pill.png
new file mode 100644
index 000000000..28140c5ba
Binary files /dev/null and b/png/pill.png differ
diff --git a/png/pillow.png b/png/pillow.png
new file mode 100644
index 000000000..9c3b84676
Binary files /dev/null and b/png/pillow.png differ
diff --git a/png/pimiento.png b/png/pimiento.png
new file mode 100644
index 000000000..5d784ba48
Binary files /dev/null and b/png/pimiento.png differ
diff --git a/png/pin.png b/png/pin.png
new file mode 100644
index 000000000..3cc282678
Binary files /dev/null and b/png/pin.png differ
diff --git a/png/pinata.png b/png/pinata.png
new file mode 100644
index 000000000..1370899ae
Binary files /dev/null and b/png/pinata.png differ
diff --git a/png/pinball-flipper.png b/png/pinball-flipper.png
new file mode 100644
index 000000000..f3fbd2033
Binary files /dev/null and b/png/pinball-flipper.png differ
diff --git a/png/pincers.png b/png/pincers.png
new file mode 100644
index 000000000..e8e20944a
Binary files /dev/null and b/png/pincers.png differ
diff --git a/png/pine-tree.png b/png/pine-tree.png
new file mode 100644
index 000000000..e1233c3f2
Binary files /dev/null and b/png/pine-tree.png differ
diff --git a/png/pineapple.png b/png/pineapple.png
new file mode 100644
index 000000000..183b14395
Binary files /dev/null and b/png/pineapple.png differ
diff --git a/png/ping-pong-bat.png b/png/ping-pong-bat.png
new file mode 100644
index 000000000..80a37eb6a
Binary files /dev/null and b/png/ping-pong-bat.png differ
diff --git a/png/pipe-organ.png b/png/pipe-organ.png
new file mode 100644
index 000000000..b9feb5a94
Binary files /dev/null and b/png/pipe-organ.png differ
diff --git a/png/pipes.png b/png/pipes.png
new file mode 100644
index 000000000..2d95e1668
Binary files /dev/null and b/png/pipes.png differ
diff --git a/png/piranha.png b/png/piranha.png
new file mode 100644
index 000000000..e174f6ce6
Binary files /dev/null and b/png/piranha.png differ
diff --git a/png/pirate-cannon.png b/png/pirate-cannon.png
new file mode 100644
index 000000000..fea3e8b80
Binary files /dev/null and b/png/pirate-cannon.png differ
diff --git a/png/pirate-captain.png b/png/pirate-captain.png
new file mode 100644
index 000000000..6bcfa7503
Binary files /dev/null and b/png/pirate-captain.png differ
diff --git a/png/pirate-coat.png b/png/pirate-coat.png
new file mode 100644
index 000000000..e01aae729
Binary files /dev/null and b/png/pirate-coat.png differ
diff --git a/png/pirate-flag.png b/png/pirate-flag.png
new file mode 100644
index 000000000..2011f0565
Binary files /dev/null and b/png/pirate-flag.png differ
diff --git a/png/pirate-grave.png b/png/pirate-grave.png
new file mode 100644
index 000000000..74f677af8
Binary files /dev/null and b/png/pirate-grave.png differ
diff --git a/png/pirate-hat.png b/png/pirate-hat.png
new file mode 100644
index 000000000..d75fdd1aa
Binary files /dev/null and b/png/pirate-hat.png differ
diff --git a/png/pirate-hook.png b/png/pirate-hook.png
new file mode 100644
index 000000000..9a912d20d
Binary files /dev/null and b/png/pirate-hook.png differ
diff --git a/png/pirate-skull.png b/png/pirate-skull.png
new file mode 100644
index 000000000..f913d9604
Binary files /dev/null and b/png/pirate-skull.png differ
diff --git a/png/pisa-tower.png b/png/pisa-tower.png
new file mode 100644
index 000000000..2a50d6bea
Binary files /dev/null and b/png/pisa-tower.png differ
diff --git a/png/pisces.png b/png/pisces.png
new file mode 100644
index 000000000..a5866a68a
Binary files /dev/null and b/png/pisces.png differ
diff --git a/png/pistol-gun.png b/png/pistol-gun.png
new file mode 100644
index 000000000..aa7d18359
Binary files /dev/null and b/png/pistol-gun.png differ
diff --git a/png/pitchfork.png b/png/pitchfork.png
new file mode 100644
index 000000000..512271259
Binary files /dev/null and b/png/pitchfork.png differ
diff --git a/png/pizza-cutter.png b/png/pizza-cutter.png
new file mode 100644
index 000000000..41a91fa2d
Binary files /dev/null and b/png/pizza-cutter.png differ
diff --git a/png/pizza-slice.png b/png/pizza-slice.png
new file mode 100644
index 000000000..6c773f1ec
Binary files /dev/null and b/png/pizza-slice.png differ
diff --git a/png/plague-doctor-profile.png b/png/plague-doctor-profile.png
new file mode 100644
index 000000000..12319051f
Binary files /dev/null and b/png/plague-doctor-profile.png differ
diff --git a/png/plain-arrow.png b/png/plain-arrow.png
new file mode 100644
index 000000000..cbc36055a
Binary files /dev/null and b/png/plain-arrow.png differ
diff --git a/png/plain-circle.png b/png/plain-circle.png
new file mode 100644
index 000000000..d67ba5000
Binary files /dev/null and b/png/plain-circle.png differ
diff --git a/png/plain-dagger.png b/png/plain-dagger.png
new file mode 100644
index 000000000..0340efe5d
Binary files /dev/null and b/png/plain-dagger.png differ
diff --git a/png/plain-padlock.png b/png/plain-padlock.png
new file mode 100644
index 000000000..21ac9ef2f
Binary files /dev/null and b/png/plain-padlock.png differ
diff --git a/png/plain-square.png b/png/plain-square.png
new file mode 100644
index 000000000..88f0862f7
Binary files /dev/null and b/png/plain-square.png differ
diff --git a/png/plane-pilot.png b/png/plane-pilot.png
new file mode 100644
index 000000000..a5282507e
Binary files /dev/null and b/png/plane-pilot.png differ
diff --git a/png/plane-wing.png b/png/plane-wing.png
new file mode 100644
index 000000000..bcc0d722a
Binary files /dev/null and b/png/plane-wing.png differ
diff --git a/png/planet-conquest.png b/png/planet-conquest.png
new file mode 100644
index 000000000..eedde0aab
Binary files /dev/null and b/png/planet-conquest.png differ
diff --git a/png/planet-core.png b/png/planet-core.png
new file mode 100644
index 000000000..4b0a6cd20
Binary files /dev/null and b/png/planet-core.png differ
diff --git a/png/planks.png b/png/planks.png
new file mode 100644
index 000000000..15295674b
Binary files /dev/null and b/png/planks.png differ
diff --git a/png/plant-roots.png b/png/plant-roots.png
new file mode 100644
index 000000000..d33e79ec7
Binary files /dev/null and b/png/plant-roots.png differ
diff --git a/png/plant-seed.png b/png/plant-seed.png
new file mode 100644
index 000000000..64db352c0
Binary files /dev/null and b/png/plant-seed.png differ
diff --git a/png/plant-watering.png b/png/plant-watering.png
new file mode 100644
index 000000000..44be03426
Binary files /dev/null and b/png/plant-watering.png differ
diff --git a/png/plants-and-animals.png b/png/plants-and-animals.png
new file mode 100644
index 000000000..437e87293
Binary files /dev/null and b/png/plants-and-animals.png differ
diff --git a/png/plasma-bolt.png b/png/plasma-bolt.png
new file mode 100644
index 000000000..cc0177ed9
Binary files /dev/null and b/png/plasma-bolt.png differ
diff --git a/png/plastic-duck.png b/png/plastic-duck.png
new file mode 100644
index 000000000..91a6dd46e
Binary files /dev/null and b/png/plastic-duck.png differ
diff --git a/png/plastron.png b/png/plastron.png
new file mode 100644
index 000000000..fce9c5dd8
Binary files /dev/null and b/png/plastron.png differ
diff --git a/png/plate-claw.png b/png/plate-claw.png
new file mode 100644
index 000000000..e3208ef5f
Binary files /dev/null and b/png/plate-claw.png differ
diff --git a/png/platform.png b/png/platform.png
new file mode 100644
index 000000000..bf7412e4f
Binary files /dev/null and b/png/platform.png differ
diff --git a/png/play-button.png b/png/play-button.png
new file mode 100644
index 000000000..25d19ad38
Binary files /dev/null and b/png/play-button.png differ
diff --git a/png/player-base.png b/png/player-base.png
new file mode 100644
index 000000000..a180d18a6
Binary files /dev/null and b/png/player-base.png differ
diff --git a/png/player-next.png b/png/player-next.png
new file mode 100644
index 000000000..0c9037823
Binary files /dev/null and b/png/player-next.png differ
diff --git a/png/player-previous.png b/png/player-previous.png
new file mode 100644
index 000000000..c48ce89d3
Binary files /dev/null and b/png/player-previous.png differ
diff --git a/png/player-time.png b/png/player-time.png
new file mode 100644
index 000000000..1a953dee4
Binary files /dev/null and b/png/player-time.png differ
diff --git a/png/plesiosaurus.png b/png/plesiosaurus.png
new file mode 100644
index 000000000..967431a16
Binary files /dev/null and b/png/plesiosaurus.png differ
diff --git a/png/plow.png b/png/plow.png
new file mode 100644
index 000000000..5054d2f8b
Binary files /dev/null and b/png/plow.png differ
diff --git a/png/plug.png b/png/plug.png
new file mode 100644
index 000000000..17fcef2d9
Binary files /dev/null and b/png/plug.png differ
diff --git a/png/plunger.png b/png/plunger.png
new file mode 100644
index 000000000..84167940c
Binary files /dev/null and b/png/plunger.png differ
diff --git a/png/pocket-bow.png b/png/pocket-bow.png
new file mode 100644
index 000000000..6c123ee41
Binary files /dev/null and b/png/pocket-bow.png differ
diff --git a/png/pocket-radio.png b/png/pocket-radio.png
new file mode 100644
index 000000000..9e157b0e5
Binary files /dev/null and b/png/pocket-radio.png differ
diff --git a/png/pocket-watch.png b/png/pocket-watch.png
new file mode 100644
index 000000000..6c5fe9221
Binary files /dev/null and b/png/pocket-watch.png differ
diff --git a/png/podium-second.png b/png/podium-second.png
new file mode 100644
index 000000000..e330e564a
Binary files /dev/null and b/png/podium-second.png differ
diff --git a/png/podium-third.png b/png/podium-third.png
new file mode 100644
index 000000000..73dcf61aa
Binary files /dev/null and b/png/podium-third.png differ
diff --git a/png/podium-winner.png b/png/podium-winner.png
new file mode 100644
index 000000000..5f781d557
Binary files /dev/null and b/png/podium-winner.png differ
diff --git a/png/podium.png b/png/podium.png
new file mode 100644
index 000000000..2c348d651
Binary files /dev/null and b/png/podium.png differ
diff --git a/png/pointing.png b/png/pointing.png
new file mode 100644
index 000000000..6cec8f6c3
Binary files /dev/null and b/png/pointing.png differ
diff --git a/png/pointy-hat.png b/png/pointy-hat.png
new file mode 100644
index 000000000..69064f27c
Binary files /dev/null and b/png/pointy-hat.png differ
diff --git a/png/pointy-sword.png b/png/pointy-sword.png
new file mode 100644
index 000000000..6b531bf34
Binary files /dev/null and b/png/pointy-sword.png differ
diff --git a/png/poison-bottle.png b/png/poison-bottle.png
new file mode 100644
index 000000000..36f2f90d0
Binary files /dev/null and b/png/poison-bottle.png differ
diff --git a/png/poison-cloud.png b/png/poison-cloud.png
new file mode 100644
index 000000000..89b836b55
Binary files /dev/null and b/png/poison-cloud.png differ
diff --git a/png/poison-gas.png b/png/poison-gas.png
new file mode 100644
index 000000000..d535c78dd
Binary files /dev/null and b/png/poison-gas.png differ
diff --git a/png/poison.png b/png/poison.png
new file mode 100644
index 000000000..89d17af4b
Binary files /dev/null and b/png/poison.png differ
diff --git a/png/pokecog.png b/png/pokecog.png
new file mode 100644
index 000000000..de81a7b33
Binary files /dev/null and b/png/pokecog.png differ
diff --git a/png/poker-hand.png b/png/poker-hand.png
new file mode 100644
index 000000000..d14869816
Binary files /dev/null and b/png/poker-hand.png differ
diff --git a/png/poland.png b/png/poland.png
new file mode 100644
index 000000000..a32f343a1
Binary files /dev/null and b/png/poland.png differ
diff --git a/png/polar-bear.png b/png/polar-bear.png
new file mode 100644
index 000000000..c7a22a78b
Binary files /dev/null and b/png/polar-bear.png differ
diff --git a/png/polar-star.png b/png/polar-star.png
new file mode 100644
index 000000000..ca1667deb
Binary files /dev/null and b/png/polar-star.png differ
diff --git a/png/police-badge.png b/png/police-badge.png
new file mode 100644
index 000000000..d0bfb845a
Binary files /dev/null and b/png/police-badge.png differ
diff --git a/png/police-car.png b/png/police-car.png
new file mode 100644
index 000000000..347a10bae
Binary files /dev/null and b/png/police-car.png differ
diff --git a/png/police-officer-head.png b/png/police-officer-head.png
new file mode 100644
index 000000000..83eb49428
Binary files /dev/null and b/png/police-officer-head.png differ
diff --git a/png/police-target.png b/png/police-target.png
new file mode 100644
index 000000000..4f0d18f48
Binary files /dev/null and b/png/police-target.png differ
diff --git a/png/pollen-dust.png b/png/pollen-dust.png
new file mode 100644
index 000000000..ee8ce193b
Binary files /dev/null and b/png/pollen-dust.png differ
diff --git a/png/polo-shirt.png b/png/polo-shirt.png
new file mode 100644
index 000000000..069dd69c7
Binary files /dev/null and b/png/polo-shirt.png differ
diff --git a/png/poncho.png b/png/poncho.png
new file mode 100644
index 000000000..ce79cf70d
Binary files /dev/null and b/png/poncho.png differ
diff --git a/png/pool-dive.png b/png/pool-dive.png
new file mode 100644
index 000000000..115426913
Binary files /dev/null and b/png/pool-dive.png differ
diff --git a/png/pool-table-corner.png b/png/pool-table-corner.png
new file mode 100644
index 000000000..2662fd643
Binary files /dev/null and b/png/pool-table-corner.png differ
diff --git a/png/pool-triangle.png b/png/pool-triangle.png
new file mode 100644
index 000000000..69a7cb880
Binary files /dev/null and b/png/pool-triangle.png differ
diff --git a/png/popcorn.png b/png/popcorn.png
new file mode 100644
index 000000000..bb889f16a
Binary files /dev/null and b/png/popcorn.png differ
diff --git a/png/pope-crown.png b/png/pope-crown.png
new file mode 100644
index 000000000..1783ade9d
Binary files /dev/null and b/png/pope-crown.png differ
diff --git a/png/poppy.png b/png/poppy.png
new file mode 100644
index 000000000..20882d96d
Binary files /dev/null and b/png/poppy.png differ
diff --git a/png/porcelain-vase.png b/png/porcelain-vase.png
new file mode 100644
index 000000000..eff01f5ca
Binary files /dev/null and b/png/porcelain-vase.png differ
diff --git a/png/porcupine.png b/png/porcupine.png
new file mode 100644
index 000000000..52807c2a4
Binary files /dev/null and b/png/porcupine.png differ
diff --git a/png/porcupinefish.png b/png/porcupinefish.png
new file mode 100644
index 000000000..84a4312e4
Binary files /dev/null and b/png/porcupinefish.png differ
diff --git a/png/portal.png b/png/portal.png
new file mode 100644
index 000000000..6cab9c5ea
Binary files /dev/null and b/png/portal.png differ
diff --git a/png/portculis.png b/png/portculis.png
new file mode 100644
index 000000000..33ef76a30
Binary files /dev/null and b/png/portculis.png differ
diff --git a/png/portrait.png b/png/portrait.png
new file mode 100644
index 000000000..d807ec5ae
Binary files /dev/null and b/png/portrait.png differ
diff --git a/png/portugal.png b/png/portugal.png
new file mode 100644
index 000000000..0aae31e24
Binary files /dev/null and b/png/portugal.png differ
diff --git a/png/position-marker.png b/png/position-marker.png
new file mode 100644
index 000000000..f50be954d
Binary files /dev/null and b/png/position-marker.png differ
diff --git a/png/post-office.png b/png/post-office.png
new file mode 100644
index 000000000..b43cf7821
Binary files /dev/null and b/png/post-office.png differ
diff --git a/png/post-stamp.png b/png/post-stamp.png
new file mode 100644
index 000000000..41d653b45
Binary files /dev/null and b/png/post-stamp.png differ
diff --git a/png/potato.png b/png/potato.png
new file mode 100644
index 000000000..ab66c324f
Binary files /dev/null and b/png/potato.png differ
diff --git a/png/potion-ball.png b/png/potion-ball.png
new file mode 100644
index 000000000..b053c8a67
Binary files /dev/null and b/png/potion-ball.png differ
diff --git a/png/potion-of-madness.png b/png/potion-of-madness.png
new file mode 100644
index 000000000..f5e11fd57
Binary files /dev/null and b/png/potion-of-madness.png differ
diff --git a/png/pounce.png b/png/pounce.png
new file mode 100644
index 000000000..7bfb67190
Binary files /dev/null and b/png/pounce.png differ
diff --git a/png/pouring-chalice.png b/png/pouring-chalice.png
new file mode 100644
index 000000000..5766c0963
Binary files /dev/null and b/png/pouring-chalice.png differ
diff --git a/png/pouring-pot.png b/png/pouring-pot.png
new file mode 100644
index 000000000..6ce52d1e5
Binary files /dev/null and b/png/pouring-pot.png differ
diff --git a/png/powder-bag.png b/png/powder-bag.png
new file mode 100644
index 000000000..192c5e605
Binary files /dev/null and b/png/powder-bag.png differ
diff --git a/png/powder.png b/png/powder.png
new file mode 100644
index 000000000..25cfc6662
Binary files /dev/null and b/png/powder.png differ
diff --git a/png/power-button.png b/png/power-button.png
new file mode 100644
index 000000000..72a04ccc8
Binary files /dev/null and b/png/power-button.png differ
diff --git a/png/power-generator.png b/png/power-generator.png
new file mode 100644
index 000000000..04efcd240
Binary files /dev/null and b/png/power-generator.png differ
diff --git a/png/power-lightning.png b/png/power-lightning.png
new file mode 100644
index 000000000..6d806d1d1
Binary files /dev/null and b/png/power-lightning.png differ
diff --git a/png/power-ring.png b/png/power-ring.png
new file mode 100644
index 000000000..ad0b66d33
Binary files /dev/null and b/png/power-ring.png differ
diff --git a/png/prank-glasses.png b/png/prank-glasses.png
new file mode 100644
index 000000000..3533f6c73
Binary files /dev/null and b/png/prank-glasses.png differ
diff --git a/png/prayer-beads.png b/png/prayer-beads.png
new file mode 100644
index 000000000..66af06123
Binary files /dev/null and b/png/prayer-beads.png differ
diff --git a/png/prayer.png b/png/prayer.png
new file mode 100644
index 000000000..7e1c0b7a6
Binary files /dev/null and b/png/prayer.png differ
diff --git a/png/praying-mantis.png b/png/praying-mantis.png
new file mode 100644
index 000000000..933027ba2
Binary files /dev/null and b/png/praying-mantis.png differ
diff --git a/png/present.png b/png/present.png
new file mode 100644
index 000000000..6530d4411
Binary files /dev/null and b/png/present.png differ
diff --git a/png/pressure-cooker.png b/png/pressure-cooker.png
new file mode 100644
index 000000000..4e46b7b77
Binary files /dev/null and b/png/pressure-cooker.png differ
diff --git a/png/pretty-fangs.png b/png/pretty-fangs.png
new file mode 100644
index 000000000..e28a9d50b
Binary files /dev/null and b/png/pretty-fangs.png differ
diff --git a/png/pretzel.png b/png/pretzel.png
new file mode 100644
index 000000000..7a9c260c7
Binary files /dev/null and b/png/pretzel.png differ
diff --git a/png/previous-button.png b/png/previous-button.png
new file mode 100644
index 000000000..9f50cc27e
Binary files /dev/null and b/png/previous-button.png differ
diff --git a/png/price-tag.png b/png/price-tag.png
new file mode 100644
index 000000000..340523124
Binary files /dev/null and b/png/price-tag.png differ
diff --git a/png/primitive-necklace.png b/png/primitive-necklace.png
new file mode 100644
index 000000000..139d82853
Binary files /dev/null and b/png/primitive-necklace.png differ
diff --git a/png/primitive-torch.png b/png/primitive-torch.png
new file mode 100644
index 000000000..455578344
Binary files /dev/null and b/png/primitive-torch.png differ
diff --git a/png/prism.png b/png/prism.png
new file mode 100644
index 000000000..760bc8012
Binary files /dev/null and b/png/prism.png differ
diff --git a/png/prisoner.png b/png/prisoner.png
new file mode 100644
index 000000000..97bf3596a
Binary files /dev/null and b/png/prisoner.png differ
diff --git a/png/private-first-class.png b/png/private-first-class.png
new file mode 100644
index 000000000..e06272924
Binary files /dev/null and b/png/private-first-class.png differ
diff --git a/png/private.png b/png/private.png
new file mode 100644
index 000000000..7f2457975
Binary files /dev/null and b/png/private.png differ
diff --git a/png/processor.png b/png/processor.png
new file mode 100644
index 000000000..6a542053b
Binary files /dev/null and b/png/processor.png differ
diff --git a/png/profit.png b/png/profit.png
new file mode 100644
index 000000000..6c0bc9025
Binary files /dev/null and b/png/profit.png differ
diff --git a/png/progression.png b/png/progression.png
new file mode 100644
index 000000000..d255a643f
Binary files /dev/null and b/png/progression.png differ
diff --git a/png/propeller-beanie.png b/png/propeller-beanie.png
new file mode 100644
index 000000000..42a71c505
Binary files /dev/null and b/png/propeller-beanie.png differ
diff --git a/png/protection-glasses.png b/png/protection-glasses.png
new file mode 100644
index 000000000..d91cb7258
Binary files /dev/null and b/png/protection-glasses.png differ
diff --git a/png/pschent-double-crown.png b/png/pschent-double-crown.png
new file mode 100644
index 000000000..549f6f391
Binary files /dev/null and b/png/pschent-double-crown.png differ
diff --git a/png/psychic-waves.png b/png/psychic-waves.png
new file mode 100644
index 000000000..f699dfffd
Binary files /dev/null and b/png/psychic-waves.png differ
diff --git a/png/pterodactylus.png b/png/pterodactylus.png
new file mode 100644
index 000000000..46b8bd506
Binary files /dev/null and b/png/pterodactylus.png differ
diff --git a/png/pteruges.png b/png/pteruges.png
new file mode 100644
index 000000000..d7266c716
Binary files /dev/null and b/png/pteruges.png differ
diff --git a/png/public-speaker.png b/png/public-speaker.png
new file mode 100644
index 000000000..96fd08e1c
Binary files /dev/null and b/png/public-speaker.png differ
diff --git a/png/pull.png b/png/pull.png
new file mode 100644
index 000000000..b1123f6d6
Binary files /dev/null and b/png/pull.png differ
diff --git a/png/pulley-hook.png b/png/pulley-hook.png
new file mode 100644
index 000000000..23a280a4b
Binary files /dev/null and b/png/pulley-hook.png differ
diff --git a/png/pulse.png b/png/pulse.png
new file mode 100644
index 000000000..73101ec8a
Binary files /dev/null and b/png/pulse.png differ
diff --git a/png/pummeled.png b/png/pummeled.png
new file mode 100644
index 000000000..0c073e042
Binary files /dev/null and b/png/pummeled.png differ
diff --git a/png/pumpkin-lantern.png b/png/pumpkin-lantern.png
new file mode 100644
index 000000000..5e9711d30
Binary files /dev/null and b/png/pumpkin-lantern.png differ
diff --git a/png/pumpkin-mask.png b/png/pumpkin-mask.png
new file mode 100644
index 000000000..fafaf7fcc
Binary files /dev/null and b/png/pumpkin-mask.png differ
diff --git a/png/pumpkin.png b/png/pumpkin.png
new file mode 100644
index 000000000..e03e1cdb9
Binary files /dev/null and b/png/pumpkin.png differ
diff --git a/png/punch-blast.png b/png/punch-blast.png
new file mode 100644
index 000000000..39b1388c3
Binary files /dev/null and b/png/punch-blast.png differ
diff --git a/png/punch.png b/png/punch.png
new file mode 100644
index 000000000..afe4896ba
Binary files /dev/null and b/png/punch.png differ
diff --git a/png/punching-bag.png b/png/punching-bag.png
new file mode 100644
index 000000000..77a1ede37
Binary files /dev/null and b/png/punching-bag.png differ
diff --git a/png/puppet.png b/png/puppet.png
new file mode 100644
index 000000000..3989f26f4
Binary files /dev/null and b/png/puppet.png differ
diff --git a/png/purple-tentacle.png b/png/purple-tentacle.png
new file mode 100644
index 000000000..c1aa0fa4c
Binary files /dev/null and b/png/purple-tentacle.png differ
diff --git a/png/push.png b/png/push.png
new file mode 100644
index 000000000..cef3936e7
Binary files /dev/null and b/png/push.png differ
diff --git a/png/puzzle.png b/png/puzzle.png
new file mode 100644
index 000000000..6bd3c08ca
Binary files /dev/null and b/png/puzzle.png differ
diff --git a/png/pylon.png b/png/pylon.png
new file mode 100644
index 000000000..ecf96e8b7
Binary files /dev/null and b/png/pylon.png differ
diff --git a/png/pyre.png b/png/pyre.png
new file mode 100644
index 000000000..77565f6be
Binary files /dev/null and b/png/pyre.png differ
diff --git a/png/pyromaniac.png b/png/pyromaniac.png
new file mode 100644
index 000000000..f30245a6e
Binary files /dev/null and b/png/pyromaniac.png differ
diff --git a/png/qaitbay-citadel.png b/png/qaitbay-citadel.png
new file mode 100644
index 000000000..a6ec63ff1
Binary files /dev/null and b/png/qaitbay-citadel.png differ
diff --git a/png/quake-stomp.png b/png/quake-stomp.png
new file mode 100644
index 000000000..467fc5417
Binary files /dev/null and b/png/quake-stomp.png differ
diff --git a/png/queen-crown.png b/png/queen-crown.png
new file mode 100644
index 000000000..ab4072e69
Binary files /dev/null and b/png/queen-crown.png differ
diff --git a/png/quick-man.png b/png/quick-man.png
new file mode 100644
index 000000000..48215b939
Binary files /dev/null and b/png/quick-man.png differ
diff --git a/png/quick-slash.png b/png/quick-slash.png
new file mode 100644
index 000000000..1d0367ac1
Binary files /dev/null and b/png/quick-slash.png differ
diff --git a/png/quicksand.png b/png/quicksand.png
new file mode 100644
index 000000000..17ff2a39b
Binary files /dev/null and b/png/quicksand.png differ
diff --git a/png/quill-ink.png b/png/quill-ink.png
new file mode 100644
index 000000000..98f6cd7ed
Binary files /dev/null and b/png/quill-ink.png differ
diff --git a/png/quill.png b/png/quill.png
new file mode 100644
index 000000000..c23a4d7de
Binary files /dev/null and b/png/quill.png differ
diff --git a/png/quiver.png b/png/quiver.png
new file mode 100644
index 000000000..d265aaedf
Binary files /dev/null and b/png/quiver.png differ
diff --git a/png/rabbit-head.png b/png/rabbit-head.png
new file mode 100644
index 000000000..6ebee103a
Binary files /dev/null and b/png/rabbit-head.png differ
diff --git a/png/rabbit.png b/png/rabbit.png
new file mode 100644
index 000000000..b93ba6883
Binary files /dev/null and b/png/rabbit.png differ
diff --git a/png/raccoon-head.png b/png/raccoon-head.png
new file mode 100644
index 000000000..ec7b2d34b
Binary files /dev/null and b/png/raccoon-head.png differ
diff --git a/png/race-car.png b/png/race-car.png
new file mode 100644
index 000000000..1a0fb718b
Binary files /dev/null and b/png/race-car.png differ
diff --git a/png/radar-cross-section.png b/png/radar-cross-section.png
new file mode 100644
index 000000000..15a405f63
Binary files /dev/null and b/png/radar-cross-section.png differ
diff --git a/png/radar-dish.png b/png/radar-dish.png
new file mode 100644
index 000000000..df669be4e
Binary files /dev/null and b/png/radar-dish.png differ
diff --git a/png/radar-sweep.png b/png/radar-sweep.png
new file mode 100644
index 000000000..bfccd77ff
Binary files /dev/null and b/png/radar-sweep.png differ
diff --git a/png/raddish.png b/png/raddish.png
new file mode 100644
index 000000000..ad88be043
Binary files /dev/null and b/png/raddish.png differ
diff --git a/png/radial-balance.png b/png/radial-balance.png
new file mode 100644
index 000000000..a30537128
Binary files /dev/null and b/png/radial-balance.png differ
diff --git a/png/radiations.png b/png/radiations.png
new file mode 100644
index 000000000..014db334c
Binary files /dev/null and b/png/radiations.png differ
diff --git a/png/radio-tower.png b/png/radio-tower.png
new file mode 100644
index 000000000..6b7b17157
Binary files /dev/null and b/png/radio-tower.png differ
diff --git a/png/radioactive.png b/png/radioactive.png
new file mode 100644
index 000000000..a1d9a246b
Binary files /dev/null and b/png/radioactive.png differ
diff --git a/png/raft.png b/png/raft.png
new file mode 100644
index 000000000..1d43dd0fc
Binary files /dev/null and b/png/raft.png differ
diff --git a/png/ragged-wound.png b/png/ragged-wound.png
new file mode 100644
index 000000000..f67083d70
Binary files /dev/null and b/png/ragged-wound.png differ
diff --git a/png/rail-road.png b/png/rail-road.png
new file mode 100644
index 000000000..64c40e0f3
Binary files /dev/null and b/png/rail-road.png differ
diff --git a/png/railway.png b/png/railway.png
new file mode 100644
index 000000000..d9a5fab55
Binary files /dev/null and b/png/railway.png differ
diff --git a/png/rainbow-star.png b/png/rainbow-star.png
new file mode 100644
index 000000000..9a729a7fb
Binary files /dev/null and b/png/rainbow-star.png differ
diff --git a/png/raining.png b/png/raining.png
new file mode 100644
index 000000000..fa52d8f09
Binary files /dev/null and b/png/raining.png differ
diff --git a/png/raise-skeleton.png b/png/raise-skeleton.png
new file mode 100644
index 000000000..0ac562ab0
Binary files /dev/null and b/png/raise-skeleton.png differ
diff --git a/png/raise-zombie.png b/png/raise-zombie.png
new file mode 100644
index 000000000..7a5379450
Binary files /dev/null and b/png/raise-zombie.png differ
diff --git a/png/rake.png b/png/rake.png
new file mode 100644
index 000000000..ae43530a2
Binary files /dev/null and b/png/rake.png differ
diff --git a/png/rally-the-troops.png b/png/rally-the-troops.png
new file mode 100644
index 000000000..4bfdfed5f
Binary files /dev/null and b/png/rally-the-troops.png differ
diff --git a/png/ram-2.png b/png/ram-2.png
new file mode 100644
index 000000000..f8a48ba2a
Binary files /dev/null and b/png/ram-2.png differ
diff --git a/png/ram-profile.png b/png/ram-profile.png
new file mode 100644
index 000000000..4a613532f
Binary files /dev/null and b/png/ram-profile.png differ
diff --git a/png/ram.png b/png/ram.png
new file mode 100644
index 000000000..6113be737
Binary files /dev/null and b/png/ram.png differ
diff --git a/png/ranch-gate.png b/png/ranch-gate.png
new file mode 100644
index 000000000..dba3403df
Binary files /dev/null and b/png/ranch-gate.png differ
diff --git a/png/rank-1.png b/png/rank-1.png
new file mode 100644
index 000000000..222441f82
Binary files /dev/null and b/png/rank-1.png differ
diff --git a/png/rank-2.png b/png/rank-2.png
new file mode 100644
index 000000000..e72415ab4
Binary files /dev/null and b/png/rank-2.png differ
diff --git a/png/rank-3.png b/png/rank-3.png
new file mode 100644
index 000000000..009c5e9ce
Binary files /dev/null and b/png/rank-3.png differ
diff --git a/png/rapidshare-arrow.png b/png/rapidshare-arrow.png
new file mode 100644
index 000000000..f17bdf47c
Binary files /dev/null and b/png/rapidshare-arrow.png differ
diff --git a/png/raspberry.png b/png/raspberry.png
new file mode 100644
index 000000000..78de6c851
Binary files /dev/null and b/png/raspberry.png differ
diff --git a/png/rat.png b/png/rat.png
new file mode 100644
index 000000000..2ff8873f3
Binary files /dev/null and b/png/rat.png differ
diff --git a/png/rattlesnake.png b/png/rattlesnake.png
new file mode 100644
index 000000000..4915d056b
Binary files /dev/null and b/png/rattlesnake.png differ
diff --git a/png/raven.png b/png/raven.png
new file mode 100644
index 000000000..c5c7a79bb
Binary files /dev/null and b/png/raven.png differ
diff --git a/png/raw-egg.png b/png/raw-egg.png
new file mode 100644
index 000000000..b2d3808e9
Binary files /dev/null and b/png/raw-egg.png differ
diff --git a/png/ray-gun.png b/png/ray-gun.png
new file mode 100644
index 000000000..41a12f950
Binary files /dev/null and b/png/ray-gun.png differ
diff --git a/png/razor-blade.png b/png/razor-blade.png
new file mode 100644
index 000000000..a3363e562
Binary files /dev/null and b/png/razor-blade.png differ
diff --git a/png/razor.png b/png/razor.png
new file mode 100644
index 000000000..7420fafca
Binary files /dev/null and b/png/razor.png differ
diff --git a/png/reactor.png b/png/reactor.png
new file mode 100644
index 000000000..d9916e08b
Binary files /dev/null and b/png/reactor.png differ
diff --git a/png/read.png b/png/read.png
new file mode 100644
index 000000000..c7e166e80
Binary files /dev/null and b/png/read.png differ
diff --git a/png/reaper-scythe.png b/png/reaper-scythe.png
new file mode 100644
index 000000000..830acc622
Binary files /dev/null and b/png/reaper-scythe.png differ
diff --git a/png/rear-aura.png b/png/rear-aura.png
new file mode 100644
index 000000000..12c5a15ba
Binary files /dev/null and b/png/rear-aura.png differ
diff --git a/png/receive-money.png b/png/receive-money.png
new file mode 100644
index 000000000..e6cf04869
Binary files /dev/null and b/png/receive-money.png differ
diff --git a/png/recycle.png b/png/recycle.png
new file mode 100644
index 000000000..f485f6fa9
Binary files /dev/null and b/png/recycle.png differ
diff --git a/png/red-carpet.png b/png/red-carpet.png
new file mode 100644
index 000000000..8c1c10a10
Binary files /dev/null and b/png/red-carpet.png differ
diff --git a/png/reed.png b/png/reed.png
new file mode 100644
index 000000000..fcf17bb74
Binary files /dev/null and b/png/reed.png differ
diff --git a/png/refinery.png b/png/refinery.png
new file mode 100644
index 000000000..89ac28ad1
Binary files /dev/null and b/png/refinery.png differ
diff --git a/png/regeneration.png b/png/regeneration.png
new file mode 100644
index 000000000..e95e111b7
Binary files /dev/null and b/png/regeneration.png differ
diff --git a/png/relationship-bounds.png b/png/relationship-bounds.png
new file mode 100644
index 000000000..53f05126f
Binary files /dev/null and b/png/relationship-bounds.png differ
diff --git a/png/relic-blade.png b/png/relic-blade.png
new file mode 100644
index 000000000..d177ffb8a
Binary files /dev/null and b/png/relic-blade.png differ
diff --git a/png/reload-gun-barrel.png b/png/reload-gun-barrel.png
new file mode 100644
index 000000000..e357b8483
Binary files /dev/null and b/png/reload-gun-barrel.png differ
diff --git a/png/remedy.png b/png/remedy.png
new file mode 100644
index 000000000..c08673b80
Binary files /dev/null and b/png/remedy.png differ
diff --git a/png/rempart.png b/png/rempart.png
new file mode 100644
index 000000000..e5d7f02ba
Binary files /dev/null and b/png/rempart.png differ
diff --git a/png/reptile-tail.png b/png/reptile-tail.png
new file mode 100644
index 000000000..225edb6ca
Binary files /dev/null and b/png/reptile-tail.png differ
diff --git a/png/resize.png b/png/resize.png
new file mode 100644
index 000000000..1d3209128
Binary files /dev/null and b/png/resize.png differ
diff --git a/png/resonance.png b/png/resonance.png
new file mode 100644
index 000000000..3cecd60aa
Binary files /dev/null and b/png/resonance.png differ
diff --git a/png/resting-vampire.png b/png/resting-vampire.png
new file mode 100644
index 000000000..fcfcac37f
Binary files /dev/null and b/png/resting-vampire.png differ
diff --git a/png/reticule.png b/png/reticule.png
new file mode 100644
index 000000000..ec63caeb1
Binary files /dev/null and b/png/reticule.png differ
diff --git a/png/retro-controller.png b/png/retro-controller.png
new file mode 100644
index 000000000..91eb00166
Binary files /dev/null and b/png/retro-controller.png differ
diff --git a/png/return-arrow.png b/png/return-arrow.png
new file mode 100644
index 000000000..c17127981
Binary files /dev/null and b/png/return-arrow.png differ
diff --git a/png/revolt-2.png b/png/revolt-2.png
new file mode 100644
index 000000000..c6f93b092
Binary files /dev/null and b/png/revolt-2.png differ
diff --git a/png/revolt.png b/png/revolt.png
new file mode 100644
index 000000000..a027c1557
Binary files /dev/null and b/png/revolt.png differ
diff --git a/png/revolver-2.png b/png/revolver-2.png
new file mode 100644
index 000000000..def1a2ba5
Binary files /dev/null and b/png/revolver-2.png differ
diff --git a/png/revolver.png b/png/revolver.png
new file mode 100644
index 000000000..8eff3f9c1
Binary files /dev/null and b/png/revolver.png differ
diff --git a/png/rhinoceros-horn.png b/png/rhinoceros-horn.png
new file mode 100644
index 000000000..34ac917ed
Binary files /dev/null and b/png/rhinoceros-horn.png differ
diff --git a/png/rialto-bridge.png b/png/rialto-bridge.png
new file mode 100644
index 000000000..b99334f44
Binary files /dev/null and b/png/rialto-bridge.png differ
diff --git a/png/ribbon-medal.png b/png/ribbon-medal.png
new file mode 100644
index 000000000..1762135f6
Binary files /dev/null and b/png/ribbon-medal.png differ
diff --git a/png/ribbon-shield.png b/png/ribbon-shield.png
new file mode 100644
index 000000000..1ac1cfc22
Binary files /dev/null and b/png/ribbon-shield.png differ
diff --git a/png/ribbon.png b/png/ribbon.png
new file mode 100644
index 000000000..10c4e7e17
Binary files /dev/null and b/png/ribbon.png differ
diff --git a/png/ribcage.png b/png/ribcage.png
new file mode 100644
index 000000000..85f1b0d67
Binary files /dev/null and b/png/ribcage.png differ
diff --git a/png/rice-cooker.png b/png/rice-cooker.png
new file mode 100644
index 000000000..c84bbbdb6
Binary files /dev/null and b/png/rice-cooker.png differ
diff --git a/png/ricochet.png b/png/ricochet.png
new file mode 100644
index 000000000..bec9866d4
Binary files /dev/null and b/png/ricochet.png differ
diff --git a/png/rifle.png b/png/rifle.png
new file mode 100644
index 000000000..573f76a4f
Binary files /dev/null and b/png/rifle.png differ
diff --git a/png/ring-box.png b/png/ring-box.png
new file mode 100644
index 000000000..58af76d15
Binary files /dev/null and b/png/ring-box.png differ
diff --git a/png/ring-mould.png b/png/ring-mould.png
new file mode 100644
index 000000000..21eafaaab
Binary files /dev/null and b/png/ring-mould.png differ
diff --git a/png/ring.png b/png/ring.png
new file mode 100644
index 000000000..216d952b3
Binary files /dev/null and b/png/ring.png differ
diff --git a/png/ringed-beam.png b/png/ringed-beam.png
new file mode 100644
index 000000000..fec2af414
Binary files /dev/null and b/png/ringed-beam.png differ
diff --git a/png/ringed-planet.png b/png/ringed-planet.png
new file mode 100644
index 000000000..a3b5c8148
Binary files /dev/null and b/png/ringed-planet.png differ
diff --git a/png/ringing-alarm.png b/png/ringing-alarm.png
new file mode 100644
index 000000000..ae587d729
Binary files /dev/null and b/png/ringing-alarm.png differ
diff --git a/png/ringing-bell.png b/png/ringing-bell.png
new file mode 100644
index 000000000..2499d7337
Binary files /dev/null and b/png/ringing-bell.png differ
diff --git a/png/ringmaster.png b/png/ringmaster.png
new file mode 100644
index 000000000..d82a333e4
Binary files /dev/null and b/png/ringmaster.png differ
diff --git a/png/riot-shield.png b/png/riot-shield.png
new file mode 100644
index 000000000..2e1d3b870
Binary files /dev/null and b/png/riot-shield.png differ
diff --git a/png/riposte.png b/png/riposte.png
new file mode 100644
index 000000000..0bcd3090c
Binary files /dev/null and b/png/riposte.png differ
diff --git a/png/river.png b/png/river.png
new file mode 100644
index 000000000..c3fa0026d
Binary files /dev/null and b/png/river.png differ
diff --git a/png/road.png b/png/road.png
new file mode 100644
index 000000000..ac834eb8d
Binary files /dev/null and b/png/road.png differ
diff --git a/png/roast-chicken.png b/png/roast-chicken.png
new file mode 100644
index 000000000..dea362093
Binary files /dev/null and b/png/roast-chicken.png differ
diff --git a/png/robber-hand.png b/png/robber-hand.png
new file mode 100644
index 000000000..6391c3f64
Binary files /dev/null and b/png/robber-hand.png differ
diff --git a/png/robber-mask.png b/png/robber-mask.png
new file mode 100644
index 000000000..ac95bb151
Binary files /dev/null and b/png/robber-mask.png differ
diff --git a/png/robber.png b/png/robber.png
new file mode 100644
index 000000000..a87e543dc
Binary files /dev/null and b/png/robber.png differ
diff --git a/png/robe.png b/png/robe.png
new file mode 100644
index 000000000..c6ce58696
Binary files /dev/null and b/png/robe.png differ
diff --git a/png/robin-hood-hat.png b/png/robin-hood-hat.png
new file mode 100644
index 000000000..721ddb4db
Binary files /dev/null and b/png/robin-hood-hat.png differ
diff --git a/png/robot-antennas.png b/png/robot-antennas.png
new file mode 100644
index 000000000..8a1dffa45
Binary files /dev/null and b/png/robot-antennas.png differ
diff --git a/png/robot-golem.png b/png/robot-golem.png
new file mode 100644
index 000000000..e89457229
Binary files /dev/null and b/png/robot-golem.png differ
diff --git a/png/robot-grab.png b/png/robot-grab.png
new file mode 100644
index 000000000..0bbfdbe8a
Binary files /dev/null and b/png/robot-grab.png differ
diff --git a/png/robot-helmet.png b/png/robot-helmet.png
new file mode 100644
index 000000000..7f42ea20e
Binary files /dev/null and b/png/robot-helmet.png differ
diff --git a/png/robot-leg.png b/png/robot-leg.png
new file mode 100644
index 000000000..7c0bbcf95
Binary files /dev/null and b/png/robot-leg.png differ
diff --git a/png/rock-2.png b/png/rock-2.png
new file mode 100644
index 000000000..763ee849c
Binary files /dev/null and b/png/rock-2.png differ
diff --git a/png/rock-golem.png b/png/rock-golem.png
new file mode 100644
index 000000000..bd1a0612a
Binary files /dev/null and b/png/rock-golem.png differ
diff --git a/png/rock.png b/png/rock.png
new file mode 100644
index 000000000..47322ec87
Binary files /dev/null and b/png/rock.png differ
diff --git a/png/rocket-flight.png b/png/rocket-flight.png
new file mode 100644
index 000000000..b3ba67662
Binary files /dev/null and b/png/rocket-flight.png differ
diff --git a/png/rocket-thruster.png b/png/rocket-thruster.png
new file mode 100644
index 000000000..8ecc33ec5
Binary files /dev/null and b/png/rocket-thruster.png differ
diff --git a/png/rocket.png b/png/rocket.png
new file mode 100644
index 000000000..d8dead8a0
Binary files /dev/null and b/png/rocket.png differ
diff --git a/png/rocking-chair.png b/png/rocking-chair.png
new file mode 100644
index 000000000..2f9a7b5b1
Binary files /dev/null and b/png/rocking-chair.png differ
diff --git a/png/rod-of-asclepius.png b/png/rod-of-asclepius.png
new file mode 100644
index 000000000..36bbfcd69
Binary files /dev/null and b/png/rod-of-asclepius.png differ
diff --git a/png/rogue.png b/png/rogue.png
new file mode 100644
index 000000000..0f1ef1ead
Binary files /dev/null and b/png/rogue.png differ
diff --git a/png/rolled-cloth.png b/png/rolled-cloth.png
new file mode 100644
index 000000000..bb52fb30a
Binary files /dev/null and b/png/rolled-cloth.png differ
diff --git a/png/roller-skate.png b/png/roller-skate.png
new file mode 100644
index 000000000..6dba1ef58
Binary files /dev/null and b/png/roller-skate.png differ
diff --git a/png/rolling-bomb.png b/png/rolling-bomb.png
new file mode 100644
index 000000000..4f358e5f2
Binary files /dev/null and b/png/rolling-bomb.png differ
diff --git a/png/rolling-dice-cup.png b/png/rolling-dice-cup.png
new file mode 100644
index 000000000..713dff476
Binary files /dev/null and b/png/rolling-dice-cup.png differ
diff --git a/png/rolling-dices.png b/png/rolling-dices.png
new file mode 100644
index 000000000..fdbf19611
Binary files /dev/null and b/png/rolling-dices.png differ
diff --git a/png/rolling-energy.png b/png/rolling-energy.png
new file mode 100644
index 000000000..7e0c621d6
Binary files /dev/null and b/png/rolling-energy.png differ
diff --git a/png/rolling-suitcase.png b/png/rolling-suitcase.png
new file mode 100644
index 000000000..d944e8837
Binary files /dev/null and b/png/rolling-suitcase.png differ
diff --git a/png/roman-shield.png b/png/roman-shield.png
new file mode 100644
index 000000000..9a58a179a
Binary files /dev/null and b/png/roman-shield.png differ
diff --git a/png/roman-toga.png b/png/roman-toga.png
new file mode 100644
index 000000000..36811abc7
Binary files /dev/null and b/png/roman-toga.png differ
diff --git a/png/rooster.png b/png/rooster.png
new file mode 100644
index 000000000..c658f24d3
Binary files /dev/null and b/png/rooster.png differ
diff --git a/png/root-tip.png b/png/root-tip.png
new file mode 100644
index 000000000..8787d6075
Binary files /dev/null and b/png/root-tip.png differ
diff --git a/png/rope-bridge.png b/png/rope-bridge.png
new file mode 100644
index 000000000..f95d55eee
Binary files /dev/null and b/png/rope-bridge.png differ
diff --git a/png/rope-coil.png b/png/rope-coil.png
new file mode 100644
index 000000000..b9a17dbcf
Binary files /dev/null and b/png/rope-coil.png differ
diff --git a/png/rope-dart.png b/png/rope-dart.png
new file mode 100644
index 000000000..2bdc476cb
Binary files /dev/null and b/png/rope-dart.png differ
diff --git a/png/ropeway.png b/png/ropeway.png
new file mode 100644
index 000000000..db69b4e07
Binary files /dev/null and b/png/ropeway.png differ
diff --git a/png/rosa-shield.png b/png/rosa-shield.png
new file mode 100644
index 000000000..00f120826
Binary files /dev/null and b/png/rosa-shield.png differ
diff --git a/png/rose.png b/png/rose.png
new file mode 100644
index 000000000..46e8eb711
Binary files /dev/null and b/png/rose.png differ
diff --git a/png/rotary-phone.png b/png/rotary-phone.png
new file mode 100644
index 000000000..d42dfdf3e
Binary files /dev/null and b/png/rotary-phone.png differ
diff --git a/png/rough-wound.png b/png/rough-wound.png
new file mode 100644
index 000000000..6a6cb9ad1
Binary files /dev/null and b/png/rough-wound.png differ
diff --git a/png/round-bottom-flask.png b/png/round-bottom-flask.png
new file mode 100644
index 000000000..d8bc9a60d
Binary files /dev/null and b/png/round-bottom-flask.png differ
diff --git a/png/round-knob.png b/png/round-knob.png
new file mode 100644
index 000000000..8cc9e0493
Binary files /dev/null and b/png/round-knob.png differ
diff --git a/png/round-potion.png b/png/round-potion.png
new file mode 100644
index 000000000..a858d1c68
Binary files /dev/null and b/png/round-potion.png differ
diff --git a/png/round-shield.png b/png/round-shield.png
new file mode 100644
index 000000000..3d3ea1892
Binary files /dev/null and b/png/round-shield.png differ
diff --git a/png/round-silo.png b/png/round-silo.png
new file mode 100644
index 000000000..9868162b8
Binary files /dev/null and b/png/round-silo.png differ
diff --git a/png/round-star.png b/png/round-star.png
new file mode 100644
index 000000000..9ebe4eb0b
Binary files /dev/null and b/png/round-star.png differ
diff --git a/png/round-straw-bale.png b/png/round-straw-bale.png
new file mode 100644
index 000000000..3ff1be351
Binary files /dev/null and b/png/round-straw-bale.png differ
diff --git a/png/round-struck.png b/png/round-struck.png
new file mode 100644
index 000000000..2e3dee6df
Binary files /dev/null and b/png/round-struck.png differ
diff --git a/png/round-table.png b/png/round-table.png
new file mode 100644
index 000000000..07d932cb9
Binary files /dev/null and b/png/round-table.png differ
diff --git a/png/royal-love.png b/png/royal-love.png
new file mode 100644
index 000000000..bab2d09c2
Binary files /dev/null and b/png/royal-love.png differ
diff --git a/png/rss-2.png b/png/rss-2.png
new file mode 100644
index 000000000..4bbcd76ed
Binary files /dev/null and b/png/rss-2.png differ
diff --git a/png/rss.png b/png/rss.png
new file mode 100644
index 000000000..78e77ac03
Binary files /dev/null and b/png/rss.png differ
diff --git a/png/rub-el-hizb.png b/png/rub-el-hizb.png
new file mode 100644
index 000000000..100149f81
Binary files /dev/null and b/png/rub-el-hizb.png differ
diff --git a/png/rubber-boot.png b/png/rubber-boot.png
new file mode 100644
index 000000000..855b279e5
Binary files /dev/null and b/png/rubber-boot.png differ
diff --git a/png/rugby-conversion.png b/png/rugby-conversion.png
new file mode 100644
index 000000000..3244ec097
Binary files /dev/null and b/png/rugby-conversion.png differ
diff --git a/png/rule-book.png b/png/rule-book.png
new file mode 100644
index 000000000..aca1f4e0b
Binary files /dev/null and b/png/rule-book.png differ
diff --git a/png/run.png b/png/run.png
new file mode 100644
index 000000000..03ef9c998
Binary files /dev/null and b/png/run.png differ
diff --git a/png/rune-stone.png b/png/rune-stone.png
new file mode 100644
index 000000000..b8f646964
Binary files /dev/null and b/png/rune-stone.png differ
diff --git a/png/rune-sword.png b/png/rune-sword.png
new file mode 100644
index 000000000..078cc51d6
Binary files /dev/null and b/png/rune-sword.png differ
diff --git a/png/running-ninja.png b/png/running-ninja.png
new file mode 100644
index 000000000..335d054ab
Binary files /dev/null and b/png/running-ninja.png differ
diff --git a/png/running-shoe.png b/png/running-shoe.png
new file mode 100644
index 000000000..aa017a3dc
Binary files /dev/null and b/png/running-shoe.png differ
diff --git a/png/rupee.png b/png/rupee.png
new file mode 100644
index 000000000..514fdb693
Binary files /dev/null and b/png/rupee.png differ
diff --git a/png/rusty-sword.png b/png/rusty-sword.png
new file mode 100644
index 000000000..a51bc0613
Binary files /dev/null and b/png/rusty-sword.png differ
diff --git a/png/s-brick.png b/png/s-brick.png
new file mode 100644
index 000000000..75c5697fb
Binary files /dev/null and b/png/s-brick.png differ
diff --git a/png/saber-and-pistol.png b/png/saber-and-pistol.png
new file mode 100644
index 000000000..b2804ebc3
Binary files /dev/null and b/png/saber-and-pistol.png differ
diff --git a/png/saber-slash.png b/png/saber-slash.png
new file mode 100644
index 000000000..48479fae0
Binary files /dev/null and b/png/saber-slash.png differ
diff --git a/png/saber-tooth.png b/png/saber-tooth.png
new file mode 100644
index 000000000..7e2c96a16
Binary files /dev/null and b/png/saber-tooth.png differ
diff --git a/png/saber-toothed-cat-head.png b/png/saber-toothed-cat-head.png
new file mode 100644
index 000000000..06b3b9b2b
Binary files /dev/null and b/png/saber-toothed-cat-head.png differ
diff --git a/png/sabers-choc.png b/png/sabers-choc.png
new file mode 100644
index 000000000..6aaa66c74
Binary files /dev/null and b/png/sabers-choc.png differ
diff --git a/png/sacrificial-dagger.png b/png/sacrificial-dagger.png
new file mode 100644
index 000000000..716f4daaa
Binary files /dev/null and b/png/sacrificial-dagger.png differ
diff --git a/png/sad-crab.png b/png/sad-crab.png
new file mode 100644
index 000000000..e6b44708d
Binary files /dev/null and b/png/sad-crab.png differ
diff --git a/png/saddle.png b/png/saddle.png
new file mode 100644
index 000000000..b223ac94c
Binary files /dev/null and b/png/saddle.png differ
diff --git a/png/safety-pin.png b/png/safety-pin.png
new file mode 100644
index 000000000..b4fb0beb7
Binary files /dev/null and b/png/safety-pin.png differ
diff --git a/png/sagittarius.png b/png/sagittarius.png
new file mode 100644
index 000000000..801dc350a
Binary files /dev/null and b/png/sagittarius.png differ
diff --git a/png/sai.png b/png/sai.png
new file mode 100644
index 000000000..953f400a5
Binary files /dev/null and b/png/sai.png differ
diff --git a/png/sail.png b/png/sail.png
new file mode 100644
index 000000000..a939185e2
Binary files /dev/null and b/png/sail.png differ
diff --git a/png/sailboat.png b/png/sailboat.png
new file mode 100644
index 000000000..337461a4f
Binary files /dev/null and b/png/sailboat.png differ
diff --git a/png/saint-basil-cathedral.png b/png/saint-basil-cathedral.png
new file mode 100644
index 000000000..0c2179a0b
Binary files /dev/null and b/png/saint-basil-cathedral.png differ
diff --git a/png/saiyan-suit.png b/png/saiyan-suit.png
new file mode 100644
index 000000000..49d527d9c
Binary files /dev/null and b/png/saiyan-suit.png differ
diff --git a/png/salamander.png b/png/salamander.png
new file mode 100644
index 000000000..d515c2aac
Binary files /dev/null and b/png/salamander.png differ
diff --git a/png/salmon.png b/png/salmon.png
new file mode 100644
index 000000000..caf108597
Binary files /dev/null and b/png/salmon.png differ
diff --git a/png/saloon-doors.png b/png/saloon-doors.png
new file mode 100644
index 000000000..b79ea066c
Binary files /dev/null and b/png/saloon-doors.png differ
diff --git a/png/saloon.png b/png/saloon.png
new file mode 100644
index 000000000..f76b41087
Binary files /dev/null and b/png/saloon.png differ
diff --git a/png/salt-shaker.png b/png/salt-shaker.png
new file mode 100644
index 000000000..5e5527950
Binary files /dev/null and b/png/salt-shaker.png differ
diff --git a/png/samara-mosque.png b/png/samara-mosque.png
new file mode 100644
index 000000000..5ba64c5f0
Binary files /dev/null and b/png/samara-mosque.png differ
diff --git a/png/samurai-helmet.png b/png/samurai-helmet.png
new file mode 100644
index 000000000..c3b8d1758
Binary files /dev/null and b/png/samurai-helmet.png differ
diff --git a/png/samus-helmet.png b/png/samus-helmet.png
new file mode 100644
index 000000000..8ae87683d
Binary files /dev/null and b/png/samus-helmet.png differ
diff --git a/png/sand-castle.png b/png/sand-castle.png
new file mode 100644
index 000000000..35ee194ac
Binary files /dev/null and b/png/sand-castle.png differ
diff --git a/png/sand-snake.png b/png/sand-snake.png
new file mode 100644
index 000000000..396a65a7d
Binary files /dev/null and b/png/sand-snake.png differ
diff --git a/png/sandal.png b/png/sandal.png
new file mode 100644
index 000000000..40b0ccff6
Binary files /dev/null and b/png/sandal.png differ
diff --git a/png/sands-of-time.png b/png/sands-of-time.png
new file mode 100644
index 000000000..601dea5ed
Binary files /dev/null and b/png/sands-of-time.png differ
diff --git a/png/sandstorm.png b/png/sandstorm.png
new file mode 100644
index 000000000..16c737926
Binary files /dev/null and b/png/sandstorm.png differ
diff --git a/png/sandwich.png b/png/sandwich.png
new file mode 100644
index 000000000..b168d36aa
Binary files /dev/null and b/png/sandwich.png differ
diff --git a/png/santa-hat.png b/png/santa-hat.png
new file mode 100644
index 000000000..22e9c6c4b
Binary files /dev/null and b/png/santa-hat.png differ
diff --git a/png/saphir.png b/png/saphir.png
new file mode 100644
index 000000000..a69db2727
Binary files /dev/null and b/png/saphir.png differ
diff --git a/png/sarcophagus.png b/png/sarcophagus.png
new file mode 100644
index 000000000..01572bc7c
Binary files /dev/null and b/png/sarcophagus.png differ
diff --git a/png/sasquatch.png b/png/sasquatch.png
new file mode 100644
index 000000000..53ecd946f
Binary files /dev/null and b/png/sasquatch.png differ
diff --git a/png/satellite-communication.png b/png/satellite-communication.png
new file mode 100644
index 000000000..c25c0db4a
Binary files /dev/null and b/png/satellite-communication.png differ
diff --git a/png/sattelite.png b/png/sattelite.png
new file mode 100644
index 000000000..c479d3511
Binary files /dev/null and b/png/sattelite.png differ
diff --git a/png/saucepan.png b/png/saucepan.png
new file mode 100644
index 000000000..fffe08a3c
Binary files /dev/null and b/png/saucepan.png differ
diff --git a/png/sauropod-head.png b/png/sauropod-head.png
new file mode 100644
index 000000000..8b563b0d0
Binary files /dev/null and b/png/sauropod-head.png differ
diff --git a/png/sauropod-skeleton.png b/png/sauropod-skeleton.png
new file mode 100644
index 000000000..2e3340ea7
Binary files /dev/null and b/png/sauropod-skeleton.png differ
diff --git a/png/sausage.png b/png/sausage.png
new file mode 100644
index 000000000..4a6cc4701
Binary files /dev/null and b/png/sausage.png differ
diff --git a/png/sausages-ribbon.png b/png/sausages-ribbon.png
new file mode 100644
index 000000000..9e3aed2fd
Binary files /dev/null and b/png/sausages-ribbon.png differ
diff --git a/png/save-arrow.png b/png/save-arrow.png
new file mode 100644
index 000000000..46acfde4b
Binary files /dev/null and b/png/save-arrow.png differ
diff --git a/png/save.png b/png/save.png
new file mode 100644
index 000000000..cd99b2c44
Binary files /dev/null and b/png/save.png differ
diff --git a/png/saw-claw.png b/png/saw-claw.png
new file mode 100644
index 000000000..1a7b98264
Binary files /dev/null and b/png/saw-claw.png differ
diff --git a/png/sawed-off-shotgun.png b/png/sawed-off-shotgun.png
new file mode 100644
index 000000000..ac43c9b03
Binary files /dev/null and b/png/sawed-off-shotgun.png differ
diff --git a/png/saxophone.png b/png/saxophone.png
new file mode 100644
index 000000000..a962e3b1c
Binary files /dev/null and b/png/saxophone.png differ
diff --git a/png/scabbard.png b/png/scabbard.png
new file mode 100644
index 000000000..ae0a87735
Binary files /dev/null and b/png/scabbard.png differ
diff --git a/png/scale-mail.png b/png/scale-mail.png
new file mode 100644
index 000000000..d7f39c5ca
Binary files /dev/null and b/png/scale-mail.png differ
diff --git a/png/scales.png b/png/scales.png
new file mode 100644
index 000000000..a2ff2ceb7
Binary files /dev/null and b/png/scales.png differ
diff --git a/png/scallop.png b/png/scallop.png
new file mode 100644
index 000000000..c853096d7
Binary files /dev/null and b/png/scallop.png differ
diff --git a/png/scalpel-strike.png b/png/scalpel-strike.png
new file mode 100644
index 000000000..56eb37f99
Binary files /dev/null and b/png/scalpel-strike.png differ
diff --git a/png/scalpel.png b/png/scalpel.png
new file mode 100644
index 000000000..ef84383db
Binary files /dev/null and b/png/scalpel.png differ
diff --git a/png/scar-wound.png b/png/scar-wound.png
new file mode 100644
index 000000000..4b533aca7
Binary files /dev/null and b/png/scar-wound.png differ
diff --git a/png/scarab-beetle.png b/png/scarab-beetle.png
new file mode 100644
index 000000000..bae63a8c2
Binary files /dev/null and b/png/scarab-beetle.png differ
diff --git a/png/scarecrow.png b/png/scarecrow.png
new file mode 100644
index 000000000..b744bc749
Binary files /dev/null and b/png/scarecrow.png differ
diff --git a/png/school-bag.png b/png/school-bag.png
new file mode 100644
index 000000000..75376bc36
Binary files /dev/null and b/png/school-bag.png differ
diff --git a/png/school-of-fish.png b/png/school-of-fish.png
new file mode 100644
index 000000000..7e1c55853
Binary files /dev/null and b/png/school-of-fish.png differ
diff --git a/png/scissors-2.png b/png/scissors-2.png
new file mode 100644
index 000000000..911098a10
Binary files /dev/null and b/png/scissors-2.png differ
diff --git a/png/scissors.png b/png/scissors.png
new file mode 100644
index 000000000..098a67c85
Binary files /dev/null and b/png/scissors.png differ
diff --git a/png/scooter.png b/png/scooter.png
new file mode 100644
index 000000000..a1a09f063
Binary files /dev/null and b/png/scooter.png differ
diff --git a/png/scorpio.png b/png/scorpio.png
new file mode 100644
index 000000000..897885515
Binary files /dev/null and b/png/scorpio.png differ
diff --git a/png/scorpion-tail.png b/png/scorpion-tail.png
new file mode 100644
index 000000000..91ea950a2
Binary files /dev/null and b/png/scorpion-tail.png differ
diff --git a/png/scorpion.png b/png/scorpion.png
new file mode 100644
index 000000000..83a75752d
Binary files /dev/null and b/png/scorpion.png differ
diff --git a/png/scout-ship.png b/png/scout-ship.png
new file mode 100644
index 000000000..4ebc104d2
Binary files /dev/null and b/png/scout-ship.png differ
diff --git a/png/screaming.png b/png/screaming.png
new file mode 100644
index 000000000..4fb6dd3ef
Binary files /dev/null and b/png/screaming.png differ
diff --git a/png/screen-impact.png b/png/screen-impact.png
new file mode 100644
index 000000000..d7eec39ca
Binary files /dev/null and b/png/screen-impact.png differ
diff --git a/png/screw-2.png b/png/screw-2.png
new file mode 100644
index 000000000..22d80ae74
Binary files /dev/null and b/png/screw-2.png differ
diff --git a/png/screw.png b/png/screw.png
new file mode 100644
index 000000000..6d605042b
Binary files /dev/null and b/png/screw.png differ
diff --git a/png/screwdriver.png b/png/screwdriver.png
new file mode 100644
index 000000000..e66e14801
Binary files /dev/null and b/png/screwdriver.png differ
diff --git a/png/scroll-quill.png b/png/scroll-quill.png
new file mode 100644
index 000000000..d299b8755
Binary files /dev/null and b/png/scroll-quill.png differ
diff --git a/png/scroll-unfurled.png b/png/scroll-unfurled.png
new file mode 100644
index 000000000..aea9e3e8f
Binary files /dev/null and b/png/scroll-unfurled.png differ
diff --git a/png/scuba-mask.png b/png/scuba-mask.png
new file mode 100644
index 000000000..aa4d6e468
Binary files /dev/null and b/png/scuba-mask.png differ
diff --git a/png/scuba-tanks.png b/png/scuba-tanks.png
new file mode 100644
index 000000000..ee2da85d2
Binary files /dev/null and b/png/scuba-tanks.png differ
diff --git a/png/scythe.png b/png/scythe.png
new file mode 100644
index 000000000..6eeba45a0
Binary files /dev/null and b/png/scythe.png differ
diff --git a/png/sea-cliff.png b/png/sea-cliff.png
new file mode 100644
index 000000000..ff3270cdb
Binary files /dev/null and b/png/sea-cliff.png differ
diff --git a/png/sea-creature.png b/png/sea-creature.png
new file mode 100644
index 000000000..8a29671b5
Binary files /dev/null and b/png/sea-creature.png differ
diff --git a/png/sea-dragon.png b/png/sea-dragon.png
new file mode 100644
index 000000000..8b4de384b
Binary files /dev/null and b/png/sea-dragon.png differ
diff --git a/png/sea-serpent.png b/png/sea-serpent.png
new file mode 100644
index 000000000..0de1aae20
Binary files /dev/null and b/png/sea-serpent.png differ
diff --git a/png/sea-star.png b/png/sea-star.png
new file mode 100644
index 000000000..423ce56d2
Binary files /dev/null and b/png/sea-star.png differ
diff --git a/png/sea-turtle.png b/png/sea-turtle.png
new file mode 100644
index 000000000..f2e3ed1a7
Binary files /dev/null and b/png/sea-turtle.png differ
diff --git a/png/seagull.png b/png/seagull.png
new file mode 100644
index 000000000..5b28da4ef
Binary files /dev/null and b/png/seagull.png differ
diff --git a/png/seahorse.png b/png/seahorse.png
new file mode 100644
index 000000000..473b8101e
Binary files /dev/null and b/png/seahorse.png differ
diff --git a/png/seated-mouse.png b/png/seated-mouse.png
new file mode 100644
index 000000000..95d428d22
Binary files /dev/null and b/png/seated-mouse.png differ
diff --git a/png/secret-book.png b/png/secret-book.png
new file mode 100644
index 000000000..43d45578b
Binary files /dev/null and b/png/secret-book.png differ
diff --git a/png/secret-door.png b/png/secret-door.png
new file mode 100644
index 000000000..ec073f1fe
Binary files /dev/null and b/png/secret-door.png differ
diff --git a/png/security-gate.png b/png/security-gate.png
new file mode 100644
index 000000000..7da1649d2
Binary files /dev/null and b/png/security-gate.png differ
diff --git a/png/seedling.png b/png/seedling.png
new file mode 100644
index 000000000..b4dff54cd
Binary files /dev/null and b/png/seedling.png differ
diff --git a/png/select.png b/png/select.png
new file mode 100644
index 000000000..7f8cff633
Binary files /dev/null and b/png/select.png differ
diff --git a/png/self-love.png b/png/self-love.png
new file mode 100644
index 000000000..ee35d6f87
Binary files /dev/null and b/png/self-love.png differ
diff --git a/png/sell-card.png b/png/sell-card.png
new file mode 100644
index 000000000..37ce998d7
Binary files /dev/null and b/png/sell-card.png differ
diff --git a/png/semi-closed-eye.png b/png/semi-closed-eye.png
new file mode 100644
index 000000000..5431fa440
Binary files /dev/null and b/png/semi-closed-eye.png differ
diff --git a/png/sensuousness.png b/png/sensuousness.png
new file mode 100644
index 000000000..2656394af
Binary files /dev/null and b/png/sensuousness.png differ
diff --git a/png/sentry-gun.png b/png/sentry-gun.png
new file mode 100644
index 000000000..a185098e1
Binary files /dev/null and b/png/sentry-gun.png differ
diff --git a/png/sergeant.png b/png/sergeant.png
new file mode 100644
index 000000000..57cf1830c
Binary files /dev/null and b/png/sergeant.png differ
diff --git a/png/serrated-slash.png b/png/serrated-slash.png
new file mode 100644
index 000000000..db714b99d
Binary files /dev/null and b/png/serrated-slash.png differ
diff --git a/png/server-rack.png b/png/server-rack.png
new file mode 100644
index 000000000..80530c8a4
Binary files /dev/null and b/png/server-rack.png differ
diff --git a/png/sesame.png b/png/sesame.png
new file mode 100644
index 000000000..7448036fe
Binary files /dev/null and b/png/sesame.png differ
diff --git a/png/settings-knobs.png b/png/settings-knobs.png
new file mode 100644
index 000000000..a7c0bf58f
Binary files /dev/null and b/png/settings-knobs.png differ
diff --git a/png/seven-pointed-star.png b/png/seven-pointed-star.png
new file mode 100644
index 000000000..5fc6e4d6f
Binary files /dev/null and b/png/seven-pointed-star.png differ
diff --git a/png/severed-hand.png b/png/severed-hand.png
new file mode 100644
index 000000000..50c464479
Binary files /dev/null and b/png/severed-hand.png differ
diff --git a/png/sewed-shell.png b/png/sewed-shell.png
new file mode 100644
index 000000000..11267909a
Binary files /dev/null and b/png/sewed-shell.png differ
diff --git a/png/sewing-machine.png b/png/sewing-machine.png
new file mode 100644
index 000000000..e577cc46f
Binary files /dev/null and b/png/sewing-machine.png differ
diff --git a/png/sewing-needle.png b/png/sewing-needle.png
new file mode 100644
index 000000000..af6cf10b6
Binary files /dev/null and b/png/sewing-needle.png differ
diff --git a/png/sewing-string.png b/png/sewing-string.png
new file mode 100644
index 000000000..80774e5d2
Binary files /dev/null and b/png/sewing-string.png differ
diff --git a/png/sextant.png b/png/sextant.png
new file mode 100644
index 000000000..aa17e084c
Binary files /dev/null and b/png/sextant.png differ
diff --git a/png/shadow-follower.png b/png/shadow-follower.png
new file mode 100644
index 000000000..7d3ae19d1
Binary files /dev/null and b/png/shadow-follower.png differ
diff --git a/png/shadow-grasp.png b/png/shadow-grasp.png
new file mode 100644
index 000000000..25f94b373
Binary files /dev/null and b/png/shadow-grasp.png differ
diff --git a/png/shaking-hands.png b/png/shaking-hands.png
new file mode 100644
index 000000000..ed4a718b1
Binary files /dev/null and b/png/shaking-hands.png differ
diff --git a/png/shambling-mound.png b/png/shambling-mound.png
new file mode 100644
index 000000000..6c40e5448
Binary files /dev/null and b/png/shambling-mound.png differ
diff --git a/png/shambling-zombie.png b/png/shambling-zombie.png
new file mode 100644
index 000000000..79019aa2b
Binary files /dev/null and b/png/shambling-zombie.png differ
diff --git a/png/shamrock.png b/png/shamrock.png
new file mode 100644
index 000000000..0c620836c
Binary files /dev/null and b/png/shamrock.png differ
diff --git a/png/shard-sword.png b/png/shard-sword.png
new file mode 100644
index 000000000..327148692
Binary files /dev/null and b/png/shard-sword.png differ
diff --git a/png/share.png b/png/share.png
new file mode 100644
index 000000000..cca8ad888
Binary files /dev/null and b/png/share.png differ
diff --git a/png/shark-bite.png b/png/shark-bite.png
new file mode 100644
index 000000000..9914b09ad
Binary files /dev/null and b/png/shark-bite.png differ
diff --git a/png/shark-fin.png b/png/shark-fin.png
new file mode 100644
index 000000000..52eee2966
Binary files /dev/null and b/png/shark-fin.png differ
diff --git a/png/shark-jaws.png b/png/shark-jaws.png
new file mode 100644
index 000000000..b993027aa
Binary files /dev/null and b/png/shark-jaws.png differ
diff --git a/png/sharp-axe.png b/png/sharp-axe.png
new file mode 100644
index 000000000..5d0237241
Binary files /dev/null and b/png/sharp-axe.png differ
diff --git a/png/sharp-crown.png b/png/sharp-crown.png
new file mode 100644
index 000000000..1fa953e78
Binary files /dev/null and b/png/sharp-crown.png differ
diff --git a/png/sharp-halberd.png b/png/sharp-halberd.png
new file mode 100644
index 000000000..249640151
Binary files /dev/null and b/png/sharp-halberd.png differ
diff --git a/png/sharp-lips.png b/png/sharp-lips.png
new file mode 100644
index 000000000..2f86a8bb6
Binary files /dev/null and b/png/sharp-lips.png differ
diff --git a/png/sharp-shuriken.png b/png/sharp-shuriken.png
new file mode 100644
index 000000000..25ff68316
Binary files /dev/null and b/png/sharp-shuriken.png differ
diff --git a/png/sharp-smile.png b/png/sharp-smile.png
new file mode 100644
index 000000000..5ca40b2f5
Binary files /dev/null and b/png/sharp-smile.png differ
diff --git a/png/sharped-teeth-skull.png b/png/sharped-teeth-skull.png
new file mode 100644
index 000000000..d263b4a93
Binary files /dev/null and b/png/sharped-teeth-skull.png differ
diff --git a/png/shatter.png b/png/shatter.png
new file mode 100644
index 000000000..7ccdb15c9
Binary files /dev/null and b/png/shatter.png differ
diff --git a/png/shattered-glass.png b/png/shattered-glass.png
new file mode 100644
index 000000000..4a1020e55
Binary files /dev/null and b/png/shattered-glass.png differ
diff --git a/png/shattered-heart.png b/png/shattered-heart.png
new file mode 100644
index 000000000..16f92241b
Binary files /dev/null and b/png/shattered-heart.png differ
diff --git a/png/shattered-sword.png b/png/shattered-sword.png
new file mode 100644
index 000000000..8105341b7
Binary files /dev/null and b/png/shattered-sword.png differ
diff --git a/png/shears.png b/png/shears.png
new file mode 100644
index 000000000..f08e471da
Binary files /dev/null and b/png/shears.png differ
diff --git a/png/sheep.png b/png/sheep.png
new file mode 100644
index 000000000..b00bb5ac3
Binary files /dev/null and b/png/sheep.png differ
diff --git a/png/sheikah-eye.png b/png/sheikah-eye.png
new file mode 100644
index 000000000..79f17e5ec
Binary files /dev/null and b/png/sheikah-eye.png differ
diff --git a/png/shepherds-crook.png b/png/shepherds-crook.png
new file mode 100644
index 000000000..e84173bf2
Binary files /dev/null and b/png/shepherds-crook.png differ
diff --git a/png/sherlock-holmes.png b/png/sherlock-holmes.png
new file mode 100644
index 000000000..a95955913
Binary files /dev/null and b/png/sherlock-holmes.png differ
diff --git a/png/shield-bash.png b/png/shield-bash.png
new file mode 100644
index 000000000..7665bf785
Binary files /dev/null and b/png/shield-bash.png differ
diff --git a/png/shield-bounces.png b/png/shield-bounces.png
new file mode 100644
index 000000000..923b07123
Binary files /dev/null and b/png/shield-bounces.png differ
diff --git a/png/shield-disabled.png b/png/shield-disabled.png
new file mode 100644
index 000000000..98d92dbc2
Binary files /dev/null and b/png/shield-disabled.png differ
diff --git a/png/shield-echoes.png b/png/shield-echoes.png
new file mode 100644
index 000000000..affc5968c
Binary files /dev/null and b/png/shield-echoes.png differ
diff --git a/png/shield-impact.png b/png/shield-impact.png
new file mode 100644
index 000000000..db5e1b562
Binary files /dev/null and b/png/shield-impact.png differ
diff --git a/png/shield-opposition.png b/png/shield-opposition.png
new file mode 100644
index 000000000..62ab9af72
Binary files /dev/null and b/png/shield-opposition.png differ
diff --git a/png/shield-reflect.png b/png/shield-reflect.png
new file mode 100644
index 000000000..b6e477d39
Binary files /dev/null and b/png/shield-reflect.png differ
diff --git a/png/shield.png b/png/shield.png
new file mode 100644
index 000000000..80ec61473
Binary files /dev/null and b/png/shield.png differ
diff --git a/png/shieldcomb.png b/png/shieldcomb.png
new file mode 100644
index 000000000..5981bc897
Binary files /dev/null and b/png/shieldcomb.png differ
diff --git a/png/shining-claw.png b/png/shining-claw.png
new file mode 100644
index 000000000..deccb82b0
Binary files /dev/null and b/png/shining-claw.png differ
diff --git a/png/shining-heart.png b/png/shining-heart.png
new file mode 100644
index 000000000..ab7b938dc
Binary files /dev/null and b/png/shining-heart.png differ
diff --git a/png/shining-sword.png b/png/shining-sword.png
new file mode 100644
index 000000000..a19a58c77
Binary files /dev/null and b/png/shining-sword.png differ
diff --git a/png/shinto-shrine-mirror.png b/png/shinto-shrine-mirror.png
new file mode 100644
index 000000000..b3f2aa13f
Binary files /dev/null and b/png/shinto-shrine-mirror.png differ
diff --git a/png/shinto-shrine.png b/png/shinto-shrine.png
new file mode 100644
index 000000000..e6040678d
Binary files /dev/null and b/png/shinto-shrine.png differ
diff --git a/png/shiny-apple.png b/png/shiny-apple.png
new file mode 100644
index 000000000..78bd2d126
Binary files /dev/null and b/png/shiny-apple.png differ
diff --git a/png/shiny-entrance.png b/png/shiny-entrance.png
new file mode 100644
index 000000000..47f18fa03
Binary files /dev/null and b/png/shiny-entrance.png differ
diff --git a/png/shiny-iris.png b/png/shiny-iris.png
new file mode 100644
index 000000000..1b1fb6cb1
Binary files /dev/null and b/png/shiny-iris.png differ
diff --git a/png/shiny-omega.png b/png/shiny-omega.png
new file mode 100644
index 000000000..955112a12
Binary files /dev/null and b/png/shiny-omega.png differ
diff --git a/png/shiny-purse.png b/png/shiny-purse.png
new file mode 100644
index 000000000..f2d01b9dd
Binary files /dev/null and b/png/shiny-purse.png differ
diff --git a/png/ship-bow.png b/png/ship-bow.png
new file mode 100644
index 000000000..8d1a5bd7a
Binary files /dev/null and b/png/ship-bow.png differ
diff --git a/png/ship-wheel.png b/png/ship-wheel.png
new file mode 100644
index 000000000..3b647c522
Binary files /dev/null and b/png/ship-wheel.png differ
diff --git a/png/ship-wreck.png b/png/ship-wreck.png
new file mode 100644
index 000000000..139c71a7a
Binary files /dev/null and b/png/ship-wreck.png differ
diff --git a/png/shirt-button.png b/png/shirt-button.png
new file mode 100644
index 000000000..52e9f5e7c
Binary files /dev/null and b/png/shirt-button.png differ
diff --git a/png/shirt.png b/png/shirt.png
new file mode 100644
index 000000000..1974cfc50
Binary files /dev/null and b/png/shirt.png differ
diff --git a/png/shoebill-stork.png b/png/shoebill-stork.png
new file mode 100644
index 000000000..883eec353
Binary files /dev/null and b/png/shoebill-stork.png differ
diff --git a/png/shooner-sailboat.png b/png/shooner-sailboat.png
new file mode 100644
index 000000000..0eb3ea69b
Binary files /dev/null and b/png/shooner-sailboat.png differ
diff --git a/png/shop.png b/png/shop.png
new file mode 100644
index 000000000..f99bf8bce
Binary files /dev/null and b/png/shop.png differ
diff --git a/png/shopping-bag.png b/png/shopping-bag.png
new file mode 100644
index 000000000..d7e52c6d4
Binary files /dev/null and b/png/shopping-bag.png differ
diff --git a/png/shopping-cart.png b/png/shopping-cart.png
new file mode 100644
index 000000000..a8762d699
Binary files /dev/null and b/png/shopping-cart.png differ
diff --git a/png/shorts.png b/png/shorts.png
new file mode 100644
index 000000000..3f3d4cb8e
Binary files /dev/null and b/png/shorts.png differ
diff --git a/png/shotgun-rounds.png b/png/shotgun-rounds.png
new file mode 100644
index 000000000..7a6b81b9c
Binary files /dev/null and b/png/shotgun-rounds.png differ
diff --git a/png/shotgun.png b/png/shotgun.png
new file mode 100644
index 000000000..d459b7c74
Binary files /dev/null and b/png/shotgun.png differ
diff --git a/png/shoulder-armor.png b/png/shoulder-armor.png
new file mode 100644
index 000000000..f062da5d8
Binary files /dev/null and b/png/shoulder-armor.png differ
diff --git a/png/shoulder-bag.png b/png/shoulder-bag.png
new file mode 100644
index 000000000..42836b507
Binary files /dev/null and b/png/shoulder-bag.png differ
diff --git a/png/shoulder-scales.png b/png/shoulder-scales.png
new file mode 100644
index 000000000..48dc13b9f
Binary files /dev/null and b/png/shoulder-scales.png differ
diff --git a/png/shouting.png b/png/shouting.png
new file mode 100644
index 000000000..7189671f6
Binary files /dev/null and b/png/shouting.png differ
diff --git a/png/shower.png b/png/shower.png
new file mode 100644
index 000000000..230e703db
Binary files /dev/null and b/png/shower.png differ
diff --git a/png/shrimp.png b/png/shrimp.png
new file mode 100644
index 000000000..a1879add9
Binary files /dev/null and b/png/shrimp.png differ
diff --git a/png/shrug.png b/png/shrug.png
new file mode 100644
index 000000000..1c2aef56c
Binary files /dev/null and b/png/shrug.png differ
diff --git a/png/shuriken-2.png b/png/shuriken-2.png
new file mode 100644
index 000000000..600b1939a
Binary files /dev/null and b/png/shuriken-2.png differ
diff --git a/png/shuriken-aperture.png b/png/shuriken-aperture.png
new file mode 100644
index 000000000..f27e0937d
Binary files /dev/null and b/png/shuriken-aperture.png differ
diff --git a/png/shuriken.png b/png/shuriken.png
new file mode 100644
index 000000000..6dbf6aa22
Binary files /dev/null and b/png/shuriken.png differ
diff --git a/png/shut-rose.png b/png/shut-rose.png
new file mode 100644
index 000000000..6227c7cc3
Binary files /dev/null and b/png/shut-rose.png differ
diff --git a/png/shuttlecock.png b/png/shuttlecock.png
new file mode 100644
index 000000000..336894adc
Binary files /dev/null and b/png/shuttlecock.png differ
diff --git a/png/sickle.png b/png/sickle.png
new file mode 100644
index 000000000..cb1482614
Binary files /dev/null and b/png/sickle.png differ
diff --git a/png/sideswipe.png b/png/sideswipe.png
new file mode 100644
index 000000000..5b693ebce
Binary files /dev/null and b/png/sideswipe.png differ
diff --git a/png/siege-ram.png b/png/siege-ram.png
new file mode 100644
index 000000000..026d50f7c
Binary files /dev/null and b/png/siege-ram.png differ
diff --git a/png/siege-tower.png b/png/siege-tower.png
new file mode 100644
index 000000000..d4578d8b3
Binary files /dev/null and b/png/siege-tower.png differ
diff --git a/png/sight-disabled.png b/png/sight-disabled.png
new file mode 100644
index 000000000..1eb3743c7
Binary files /dev/null and b/png/sight-disabled.png differ
diff --git a/png/silence.png b/png/silence.png
new file mode 100644
index 000000000..0ffd9eb7b
Binary files /dev/null and b/png/silence.png differ
diff --git a/png/silenced.png b/png/silenced.png
new file mode 100644
index 000000000..f3166cf26
Binary files /dev/null and b/png/silenced.png differ
diff --git a/png/silex.png b/png/silex.png
new file mode 100644
index 000000000..ef6ab3962
Binary files /dev/null and b/png/silex.png differ
diff --git a/png/silver-bullet.png b/png/silver-bullet.png
new file mode 100644
index 000000000..225993979
Binary files /dev/null and b/png/silver-bullet.png differ
diff --git a/png/sinagot.png b/png/sinagot.png
new file mode 100644
index 000000000..e20b277ba
Binary files /dev/null and b/png/sinagot.png differ
diff --git a/png/sing.png b/png/sing.png
new file mode 100644
index 000000000..79743c4a5
Binary files /dev/null and b/png/sing.png differ
diff --git a/png/sinking-ship.png b/png/sinking-ship.png
new file mode 100644
index 000000000..f9186ad03
Binary files /dev/null and b/png/sinking-ship.png differ
diff --git a/png/sinking-trap.png b/png/sinking-trap.png
new file mode 100644
index 000000000..bd12e28d4
Binary files /dev/null and b/png/sinking-trap.png differ
diff --git a/png/sinusoidal-beam.png b/png/sinusoidal-beam.png
new file mode 100644
index 000000000..e0142b62e
Binary files /dev/null and b/png/sinusoidal-beam.png differ
diff --git a/png/siren.png b/png/siren.png
new file mode 100644
index 000000000..3651f451a
Binary files /dev/null and b/png/siren.png differ
diff --git a/png/sitting-dog.png b/png/sitting-dog.png
new file mode 100644
index 000000000..6231d0875
Binary files /dev/null and b/png/sitting-dog.png differ
diff --git a/png/six-eyes.png b/png/six-eyes.png
new file mode 100644
index 000000000..4825794d8
Binary files /dev/null and b/png/six-eyes.png differ
diff --git a/png/skateboard.png b/png/skateboard.png
new file mode 100644
index 000000000..8723b76a1
Binary files /dev/null and b/png/skateboard.png differ
diff --git a/png/skateboarding-01.png b/png/skateboarding-01.png
new file mode 100644
index 000000000..16f73a524
Binary files /dev/null and b/png/skateboarding-01.png differ
diff --git a/png/skateboarding-02.png b/png/skateboarding-02.png
new file mode 100644
index 000000000..0fe029976
Binary files /dev/null and b/png/skateboarding-02.png differ
diff --git a/png/skeletal-hand.png b/png/skeletal-hand.png
new file mode 100644
index 000000000..e86c172b7
Binary files /dev/null and b/png/skeletal-hand.png differ
diff --git a/png/skeleton-inside.png b/png/skeleton-inside.png
new file mode 100644
index 000000000..5dbb59978
Binary files /dev/null and b/png/skeleton-inside.png differ
diff --git a/png/skeleton-key.png b/png/skeleton-key.png
new file mode 100644
index 000000000..8f2928599
Binary files /dev/null and b/png/skeleton-key.png differ
diff --git a/png/skeleton.png b/png/skeleton.png
new file mode 100644
index 000000000..aa85af7df
Binary files /dev/null and b/png/skeleton.png differ
diff --git a/png/ski-boot.png b/png/ski-boot.png
new file mode 100644
index 000000000..9ad29a775
Binary files /dev/null and b/png/ski-boot.png differ
diff --git a/png/skid-mark.png b/png/skid-mark.png
new file mode 100644
index 000000000..b07954d04
Binary files /dev/null and b/png/skid-mark.png differ
diff --git a/png/skier.png b/png/skier.png
new file mode 100644
index 000000000..fae2c1895
Binary files /dev/null and b/png/skier.png differ
diff --git a/png/skills.png b/png/skills.png
new file mode 100644
index 000000000..9db431a54
Binary files /dev/null and b/png/skills.png differ
diff --git a/png/skimmer-hat.png b/png/skimmer-hat.png
new file mode 100644
index 000000000..c94aaa6d8
Binary files /dev/null and b/png/skimmer-hat.png differ
diff --git a/png/skipping-rope.png b/png/skipping-rope.png
new file mode 100644
index 000000000..f2bda3b56
Binary files /dev/null and b/png/skipping-rope.png differ
diff --git a/png/skirt.png b/png/skirt.png
new file mode 100644
index 000000000..22152ffbe
Binary files /dev/null and b/png/skirt.png differ
diff --git a/png/skis.png b/png/skis.png
new file mode 100644
index 000000000..903eb2353
Binary files /dev/null and b/png/skis.png differ
diff --git a/png/skull-bolt.png b/png/skull-bolt.png
new file mode 100644
index 000000000..16ba836e6
Binary files /dev/null and b/png/skull-bolt.png differ
diff --git a/png/skull-crack.png b/png/skull-crack.png
new file mode 100644
index 000000000..23692562a
Binary files /dev/null and b/png/skull-crack.png differ
diff --git a/png/skull-crossed-bones.png b/png/skull-crossed-bones.png
new file mode 100644
index 000000000..baee73fcf
Binary files /dev/null and b/png/skull-crossed-bones.png differ
diff --git a/png/skull-in-jar.png b/png/skull-in-jar.png
new file mode 100644
index 000000000..28f7679f3
Binary files /dev/null and b/png/skull-in-jar.png differ
diff --git a/png/skull-mask.png b/png/skull-mask.png
new file mode 100644
index 000000000..8ed63488b
Binary files /dev/null and b/png/skull-mask.png differ
diff --git a/png/skull-ring.png b/png/skull-ring.png
new file mode 100644
index 000000000..6f46396ca
Binary files /dev/null and b/png/skull-ring.png differ
diff --git a/png/skull-sabertooth.png b/png/skull-sabertooth.png
new file mode 100644
index 000000000..6254d1980
Binary files /dev/null and b/png/skull-sabertooth.png differ
diff --git a/png/skull-shield.png b/png/skull-shield.png
new file mode 100644
index 000000000..5fbbedd95
Binary files /dev/null and b/png/skull-shield.png differ
diff --git a/png/skull-signet.png b/png/skull-signet.png
new file mode 100644
index 000000000..bfb0fa7ce
Binary files /dev/null and b/png/skull-signet.png differ
diff --git a/png/skull-slices.png b/png/skull-slices.png
new file mode 100644
index 000000000..e37d2d417
Binary files /dev/null and b/png/skull-slices.png differ
diff --git a/png/skull-staff.png b/png/skull-staff.png
new file mode 100644
index 000000000..a1a478ed4
Binary files /dev/null and b/png/skull-staff.png differ
diff --git a/png/skull-with-syringe.png b/png/skull-with-syringe.png
new file mode 100644
index 000000000..fec50a5e6
Binary files /dev/null and b/png/skull-with-syringe.png differ
diff --git a/png/slalom.png b/png/slalom.png
new file mode 100644
index 000000000..8a49992e1
Binary files /dev/null and b/png/slalom.png differ
diff --git a/png/slap.png b/png/slap.png
new file mode 100644
index 000000000..12ac59d78
Binary files /dev/null and b/png/slap.png differ
diff --git a/png/slashed-shield.png b/png/slashed-shield.png
new file mode 100644
index 000000000..199584215
Binary files /dev/null and b/png/slashed-shield.png differ
diff --git a/png/slavery-whip.png b/png/slavery-whip.png
new file mode 100644
index 000000000..ea636c8cc
Binary files /dev/null and b/png/slavery-whip.png differ
diff --git a/png/sleeping-bag.png b/png/sleeping-bag.png
new file mode 100644
index 000000000..41cfc6ff4
Binary files /dev/null and b/png/sleeping-bag.png differ
diff --git a/png/sleepy.png b/png/sleepy.png
new file mode 100644
index 000000000..50608e2d9
Binary files /dev/null and b/png/sleepy.png differ
diff --git a/png/sleeveless-jacket.png b/png/sleeveless-jacket.png
new file mode 100644
index 000000000..0a83bb5d8
Binary files /dev/null and b/png/sleeveless-jacket.png differ
diff --git a/png/sleeveless-top.png b/png/sleeveless-top.png
new file mode 100644
index 000000000..0e9ee1c90
Binary files /dev/null and b/png/sleeveless-top.png differ
diff --git a/png/sliced-bread.png b/png/sliced-bread.png
new file mode 100644
index 000000000..ac887d67f
Binary files /dev/null and b/png/sliced-bread.png differ
diff --git a/png/sliced-mushroom.png b/png/sliced-mushroom.png
new file mode 100644
index 000000000..101ced481
Binary files /dev/null and b/png/sliced-mushroom.png differ
diff --git a/png/sliced-sausage.png b/png/sliced-sausage.png
new file mode 100644
index 000000000..690d9b556
Binary files /dev/null and b/png/sliced-sausage.png differ
diff --git a/png/slicing-arrow.png b/png/slicing-arrow.png
new file mode 100644
index 000000000..52775a19a
Binary files /dev/null and b/png/slicing-arrow.png differ
diff --git a/png/slime.png b/png/slime.png
new file mode 100644
index 000000000..d1167158c
Binary files /dev/null and b/png/slime.png differ
diff --git a/png/sling.png b/png/sling.png
new file mode 100644
index 000000000..99d700c61
Binary files /dev/null and b/png/sling.png differ
diff --git a/png/slingshot.png b/png/slingshot.png
new file mode 100644
index 000000000..f4f09ccc5
Binary files /dev/null and b/png/slingshot.png differ
diff --git a/png/slipknot.png b/png/slipknot.png
new file mode 100644
index 000000000..8adea027f
Binary files /dev/null and b/png/slipknot.png differ
diff --git a/png/slippers.png b/png/slippers.png
new file mode 100644
index 000000000..17da6e8ac
Binary files /dev/null and b/png/slippers.png differ
diff --git a/png/slot-machine.png b/png/slot-machine.png
new file mode 100644
index 000000000..ec5074c49
Binary files /dev/null and b/png/slot-machine.png differ
diff --git a/png/sloth.png b/png/sloth.png
new file mode 100644
index 000000000..9994d374e
Binary files /dev/null and b/png/sloth.png differ
diff --git a/png/slow-blob.png b/png/slow-blob.png
new file mode 100644
index 000000000..a8f66d824
Binary files /dev/null and b/png/slow-blob.png differ
diff --git a/png/slumbering-sanctuary.png b/png/slumbering-sanctuary.png
new file mode 100644
index 000000000..64452c39e
Binary files /dev/null and b/png/slumbering-sanctuary.png differ
diff --git a/png/sly.png b/png/sly.png
new file mode 100644
index 000000000..d30304959
Binary files /dev/null and b/png/sly.png differ
diff --git a/png/small-fire.png b/png/small-fire.png
new file mode 100644
index 000000000..002ebbdf6
Binary files /dev/null and b/png/small-fire.png differ
diff --git a/png/small-fishing-sailboat.png b/png/small-fishing-sailboat.png
new file mode 100644
index 000000000..9ee227bc4
Binary files /dev/null and b/png/small-fishing-sailboat.png differ
diff --git a/png/smart.png b/png/smart.png
new file mode 100644
index 000000000..3213eade1
Binary files /dev/null and b/png/smart.png differ
diff --git a/png/smartphone-2.png b/png/smartphone-2.png
new file mode 100644
index 000000000..831e753e9
Binary files /dev/null and b/png/smartphone-2.png differ
diff --git a/png/smartphone.png b/png/smartphone.png
new file mode 100644
index 000000000..c6f22a8b8
Binary files /dev/null and b/png/smartphone.png differ
diff --git a/png/smash-arrows.png b/png/smash-arrows.png
new file mode 100644
index 000000000..ce5d24ba6
Binary files /dev/null and b/png/smash-arrows.png differ
diff --git a/png/smitten.png b/png/smitten.png
new file mode 100644
index 000000000..30c81e6a9
Binary files /dev/null and b/png/smitten.png differ
diff --git a/png/smoke-bomb.png b/png/smoke-bomb.png
new file mode 100644
index 000000000..11e47b0fe
Binary files /dev/null and b/png/smoke-bomb.png differ
diff --git a/png/smoking-finger.png b/png/smoking-finger.png
new file mode 100644
index 000000000..c2e91cd38
Binary files /dev/null and b/png/smoking-finger.png differ
diff --git a/png/smoking-orb.png b/png/smoking-orb.png
new file mode 100644
index 000000000..094825081
Binary files /dev/null and b/png/smoking-orb.png differ
diff --git a/png/smoking-pipe.png b/png/smoking-pipe.png
new file mode 100644
index 000000000..b9d69685e
Binary files /dev/null and b/png/smoking-pipe.png differ
diff --git a/png/smoking-volcano.png b/png/smoking-volcano.png
new file mode 100644
index 000000000..b1b6e15b5
Binary files /dev/null and b/png/smoking-volcano.png differ
diff --git a/png/snail-eyes.png b/png/snail-eyes.png
new file mode 100644
index 000000000..fcff6b1d4
Binary files /dev/null and b/png/snail-eyes.png differ
diff --git a/png/snail.png b/png/snail.png
new file mode 100644
index 000000000..34a2324ca
Binary files /dev/null and b/png/snail.png differ
diff --git a/png/snake-bite.png b/png/snake-bite.png
new file mode 100644
index 000000000..8c636af3e
Binary files /dev/null and b/png/snake-bite.png differ
diff --git a/png/snake-egg.png b/png/snake-egg.png
new file mode 100644
index 000000000..2c23d2f35
Binary files /dev/null and b/png/snake-egg.png differ
diff --git a/png/snake-jar.png b/png/snake-jar.png
new file mode 100644
index 000000000..0630cb2f6
Binary files /dev/null and b/png/snake-jar.png differ
diff --git a/png/snake-spiral.png b/png/snake-spiral.png
new file mode 100644
index 000000000..b975f23ae
Binary files /dev/null and b/png/snake-spiral.png differ
diff --git a/png/snake-tongue.png b/png/snake-tongue.png
new file mode 100644
index 000000000..dd0ecc932
Binary files /dev/null and b/png/snake-tongue.png differ
diff --git a/png/snake-totem.png b/png/snake-totem.png
new file mode 100644
index 000000000..d134a8297
Binary files /dev/null and b/png/snake-totem.png differ
diff --git a/png/snake.png b/png/snake.png
new file mode 100644
index 000000000..145658ba8
Binary files /dev/null and b/png/snake.png differ
diff --git a/png/snatch.png b/png/snatch.png
new file mode 100644
index 000000000..dbe07b381
Binary files /dev/null and b/png/snatch.png differ
diff --git a/png/sniffing-dog.png b/png/sniffing-dog.png
new file mode 100644
index 000000000..74cf08236
Binary files /dev/null and b/png/sniffing-dog.png differ
diff --git a/png/snitch-quidditch-ball.png b/png/snitch-quidditch-ball.png
new file mode 100644
index 000000000..e8db9faeb
Binary files /dev/null and b/png/snitch-quidditch-ball.png differ
diff --git a/png/snorkel.png b/png/snorkel.png
new file mode 100644
index 000000000..fc9041849
Binary files /dev/null and b/png/snorkel.png differ
diff --git a/png/snout.png b/png/snout.png
new file mode 100644
index 000000000..e6b0fa232
Binary files /dev/null and b/png/snout.png differ
diff --git a/png/snow-bottle.png b/png/snow-bottle.png
new file mode 100644
index 000000000..333a6c3e0
Binary files /dev/null and b/png/snow-bottle.png differ
diff --git a/png/snowboard.png b/png/snowboard.png
new file mode 100644
index 000000000..1550d58bc
Binary files /dev/null and b/png/snowboard.png differ
diff --git a/png/snowflake-1.png b/png/snowflake-1.png
new file mode 100644
index 000000000..8f26df5f7
Binary files /dev/null and b/png/snowflake-1.png differ
diff --git a/png/snowflake-2.png b/png/snowflake-2.png
new file mode 100644
index 000000000..773ba9a4a
Binary files /dev/null and b/png/snowflake-2.png differ
diff --git a/png/snowing.png b/png/snowing.png
new file mode 100644
index 000000000..3cf58b86a
Binary files /dev/null and b/png/snowing.png differ
diff --git a/png/snowman.png b/png/snowman.png
new file mode 100644
index 000000000..b0c54e27b
Binary files /dev/null and b/png/snowman.png differ
diff --git a/png/soap-experiment.png b/png/soap-experiment.png
new file mode 100644
index 000000000..579295ad1
Binary files /dev/null and b/png/soap-experiment.png differ
diff --git a/png/soap.png b/png/soap.png
new file mode 100644
index 000000000..6bf9ca3aa
Binary files /dev/null and b/png/soap.png differ
diff --git a/png/soccer-ball.png b/png/soccer-ball.png
new file mode 100644
index 000000000..d8df0b852
Binary files /dev/null and b/png/soccer-ball.png differ
diff --git a/png/soccer-field.png b/png/soccer-field.png
new file mode 100644
index 000000000..7bfbc0cfc
Binary files /dev/null and b/png/soccer-field.png differ
diff --git a/png/soccer-kick.png b/png/soccer-kick.png
new file mode 100644
index 000000000..21402c1fa
Binary files /dev/null and b/png/soccer-kick.png differ
diff --git a/png/socks.png b/png/socks.png
new file mode 100644
index 000000000..2fb7c666a
Binary files /dev/null and b/png/socks.png differ
diff --git a/png/soda-bottle.png b/png/soda-bottle.png
new file mode 100644
index 000000000..2f29a3688
Binary files /dev/null and b/png/soda-bottle.png differ
diff --git a/png/soda-can.png b/png/soda-can.png
new file mode 100644
index 000000000..de9b92d00
Binary files /dev/null and b/png/soda-can.png differ
diff --git a/png/sofa.png b/png/sofa.png
new file mode 100644
index 000000000..6ea4a708b
Binary files /dev/null and b/png/sofa.png differ
diff --git a/png/solar-power.png b/png/solar-power.png
new file mode 100644
index 000000000..5813f6aae
Binary files /dev/null and b/png/solar-power.png differ
diff --git a/png/solar-system.png b/png/solar-system.png
new file mode 100644
index 000000000..41a907b63
Binary files /dev/null and b/png/solar-system.png differ
diff --git a/png/solar-time.png b/png/solar-time.png
new file mode 100644
index 000000000..d85eda59d
Binary files /dev/null and b/png/solar-time.png differ
diff --git a/png/soldering-iron.png b/png/soldering-iron.png
new file mode 100644
index 000000000..c7c39f605
Binary files /dev/null and b/png/soldering-iron.png differ
diff --git a/png/solid-leaf.png b/png/solid-leaf.png
new file mode 100644
index 000000000..19b154080
Binary files /dev/null and b/png/solid-leaf.png differ
diff --git a/png/sombrero.png b/png/sombrero.png
new file mode 100644
index 000000000..7316f8aed
Binary files /dev/null and b/png/sombrero.png differ
diff --git a/png/sonic-boom.png b/png/sonic-boom.png
new file mode 100644
index 000000000..1106b23a7
Binary files /dev/null and b/png/sonic-boom.png differ
diff --git a/png/sonic-lightning.png b/png/sonic-lightning.png
new file mode 100644
index 000000000..66bcc9d53
Binary files /dev/null and b/png/sonic-lightning.png differ
diff --git a/png/sonic-screech.png b/png/sonic-screech.png
new file mode 100644
index 000000000..06f11c3b4
Binary files /dev/null and b/png/sonic-screech.png differ
diff --git a/png/sonic-shoes.png b/png/sonic-shoes.png
new file mode 100644
index 000000000..6f8d09104
Binary files /dev/null and b/png/sonic-shoes.png differ
diff --git a/png/sonic-shout.png b/png/sonic-shout.png
new file mode 100644
index 000000000..1d84b6b03
Binary files /dev/null and b/png/sonic-shout.png differ
diff --git a/png/soul-vessel.png b/png/soul-vessel.png
new file mode 100644
index 000000000..50d942e16
Binary files /dev/null and b/png/soul-vessel.png differ
diff --git a/png/sound-off.png b/png/sound-off.png
new file mode 100644
index 000000000..fcbee2d11
Binary files /dev/null and b/png/sound-off.png differ
diff --git a/png/sound-on.png b/png/sound-on.png
new file mode 100644
index 000000000..045e12a3f
Binary files /dev/null and b/png/sound-on.png differ
diff --git a/png/sound-waves.png b/png/sound-waves.png
new file mode 100644
index 000000000..139f09884
Binary files /dev/null and b/png/sound-waves.png differ
diff --git a/png/south-africa-flag.png b/png/south-africa-flag.png
new file mode 100644
index 000000000..249487871
Binary files /dev/null and b/png/south-africa-flag.png differ
diff --git a/png/south-africa.png b/png/south-africa.png
new file mode 100644
index 000000000..5dfbcec1a
Binary files /dev/null and b/png/south-africa.png differ
diff --git a/png/south-america.png b/png/south-america.png
new file mode 100644
index 000000000..445649157
Binary files /dev/null and b/png/south-america.png differ
diff --git a/png/south-korea.png b/png/south-korea.png
new file mode 100644
index 000000000..6a967c1e9
Binary files /dev/null and b/png/south-korea.png differ
diff --git a/png/space-needle.png b/png/space-needle.png
new file mode 100644
index 000000000..9f7eb3db7
Binary files /dev/null and b/png/space-needle.png differ
diff --git a/png/space-shuttle.png b/png/space-shuttle.png
new file mode 100644
index 000000000..5d63d2405
Binary files /dev/null and b/png/space-shuttle.png differ
diff --git a/png/space-suit.png b/png/space-suit.png
new file mode 100644
index 000000000..22ca9ac1b
Binary files /dev/null and b/png/space-suit.png differ
diff --git a/png/spaceship.png b/png/spaceship.png
new file mode 100644
index 000000000..afc91c19f
Binary files /dev/null and b/png/spaceship.png differ
diff --git a/png/spade-skull.png b/png/spade-skull.png
new file mode 100644
index 000000000..9c60ca39c
Binary files /dev/null and b/png/spade-skull.png differ
diff --git a/png/spade.png b/png/spade.png
new file mode 100644
index 000000000..513fa36e0
Binary files /dev/null and b/png/spade.png differ
diff --git a/png/spades.png b/png/spades.png
new file mode 100644
index 000000000..0d9fa42a5
Binary files /dev/null and b/png/spades.png differ
diff --git a/png/spain.png b/png/spain.png
new file mode 100644
index 000000000..e03760abe
Binary files /dev/null and b/png/spain.png differ
diff --git a/png/spanner.png b/png/spanner.png
new file mode 100644
index 000000000..c6a935332
Binary files /dev/null and b/png/spanner.png differ
diff --git a/png/spark-plug.png b/png/spark-plug.png
new file mode 100644
index 000000000..6bcabf889
Binary files /dev/null and b/png/spark-plug.png differ
diff --git a/png/spark-spirit.png b/png/spark-spirit.png
new file mode 100644
index 000000000..32303e35f
Binary files /dev/null and b/png/spark-spirit.png differ
diff --git a/png/sparkles.png b/png/sparkles.png
new file mode 100644
index 000000000..8c14f4c68
Binary files /dev/null and b/png/sparkles.png differ
diff --git a/png/sparkling-sabre.png b/png/sparkling-sabre.png
new file mode 100644
index 000000000..8fd84e53a
Binary files /dev/null and b/png/sparkling-sabre.png differ
diff --git a/png/sparky-bomb.png b/png/sparky-bomb.png
new file mode 100644
index 000000000..45a266cf0
Binary files /dev/null and b/png/sparky-bomb.png differ
diff --git a/png/sparrow.png b/png/sparrow.png
new file mode 100644
index 000000000..d14709609
Binary files /dev/null and b/png/sparrow.png differ
diff --git a/png/spartan-helmet.png b/png/spartan-helmet.png
new file mode 100644
index 000000000..c27f49d17
Binary files /dev/null and b/png/spartan-helmet.png differ
diff --git a/png/spartan.png b/png/spartan.png
new file mode 100644
index 000000000..d10ec9a3d
Binary files /dev/null and b/png/spartan.png differ
diff --git a/png/spatter.png b/png/spatter.png
new file mode 100644
index 000000000..8027b5d49
Binary files /dev/null and b/png/spatter.png differ
diff --git a/png/spawn-node.png b/png/spawn-node.png
new file mode 100644
index 000000000..e363cf0fd
Binary files /dev/null and b/png/spawn-node.png differ
diff --git a/png/speaker-off.png b/png/speaker-off.png
new file mode 100644
index 000000000..63d59a43c
Binary files /dev/null and b/png/speaker-off.png differ
diff --git a/png/speaker.png b/png/speaker.png
new file mode 100644
index 000000000..5d8e4a746
Binary files /dev/null and b/png/speaker.png differ
diff --git a/png/spear-feather.png b/png/spear-feather.png
new file mode 100644
index 000000000..039acc344
Binary files /dev/null and b/png/spear-feather.png differ
diff --git a/png/spear-hook.png b/png/spear-hook.png
new file mode 100644
index 000000000..c0b1b122a
Binary files /dev/null and b/png/spear-hook.png differ
diff --git a/png/spearfishing.png b/png/spearfishing.png
new file mode 100644
index 000000000..0ef9345ab
Binary files /dev/null and b/png/spearfishing.png differ
diff --git a/png/spears.png b/png/spears.png
new file mode 100644
index 000000000..89a3cb88c
Binary files /dev/null and b/png/spears.png differ
diff --git a/png/spectacle-lenses.png b/png/spectacle-lenses.png
new file mode 100644
index 000000000..7ec5df5a8
Binary files /dev/null and b/png/spectacle-lenses.png differ
diff --git a/png/spectacles.png b/png/spectacles.png
new file mode 100644
index 000000000..d04b36d85
Binary files /dev/null and b/png/spectacles.png differ
diff --git a/png/spectre-m4.png b/png/spectre-m4.png
new file mode 100644
index 000000000..7ec75846e
Binary files /dev/null and b/png/spectre-m4.png differ
diff --git a/png/spectre.png b/png/spectre.png
new file mode 100644
index 000000000..2bcea586f
Binary files /dev/null and b/png/spectre.png differ
diff --git a/png/speed-boat.png b/png/speed-boat.png
new file mode 100644
index 000000000..3f6d73bbf
Binary files /dev/null and b/png/speed-boat.png differ
diff --git a/png/speedometer.png b/png/speedometer.png
new file mode 100644
index 000000000..9ea782459
Binary files /dev/null and b/png/speedometer.png differ
diff --git a/png/spell-book.png b/png/spell-book.png
new file mode 100644
index 000000000..b15a33e68
Binary files /dev/null and b/png/spell-book.png differ
diff --git a/png/sperm-whale.png b/png/sperm-whale.png
new file mode 100644
index 000000000..3d60fdb4d
Binary files /dev/null and b/png/sperm-whale.png differ
diff --git a/png/spider-alt.png b/png/spider-alt.png
new file mode 100644
index 000000000..75d384cc2
Binary files /dev/null and b/png/spider-alt.png differ
diff --git a/png/spider-bot.png b/png/spider-bot.png
new file mode 100644
index 000000000..06e71928b
Binary files /dev/null and b/png/spider-bot.png differ
diff --git a/png/spider-eye.png b/png/spider-eye.png
new file mode 100644
index 000000000..b3d20a5de
Binary files /dev/null and b/png/spider-eye.png differ
diff --git a/png/spider-face.png b/png/spider-face.png
new file mode 100644
index 000000000..946b1e99d
Binary files /dev/null and b/png/spider-face.png differ
diff --git a/png/spider-mask.png b/png/spider-mask.png
new file mode 100644
index 000000000..317752d1d
Binary files /dev/null and b/png/spider-mask.png differ
diff --git a/png/spider-web.png b/png/spider-web.png
new file mode 100644
index 000000000..49117b675
Binary files /dev/null and b/png/spider-web.png differ
diff --git a/png/spikeball.png b/png/spikeball.png
new file mode 100644
index 000000000..1d2a270ab
Binary files /dev/null and b/png/spikeball.png differ
diff --git a/png/spiked-armor.png b/png/spiked-armor.png
new file mode 100644
index 000000000..9633cb621
Binary files /dev/null and b/png/spiked-armor.png differ
diff --git a/png/spiked-ball.png b/png/spiked-ball.png
new file mode 100644
index 000000000..d7b1b5811
Binary files /dev/null and b/png/spiked-ball.png differ
diff --git a/png/spiked-bat.png b/png/spiked-bat.png
new file mode 100644
index 000000000..527bbfdf0
Binary files /dev/null and b/png/spiked-bat.png differ
diff --git a/png/spiked-collar.png b/png/spiked-collar.png
new file mode 100644
index 000000000..f747cebbd
Binary files /dev/null and b/png/spiked-collar.png differ
diff --git a/png/spiked-dragon-head.png b/png/spiked-dragon-head.png
new file mode 100644
index 000000000..85e4e4edf
Binary files /dev/null and b/png/spiked-dragon-head.png differ
diff --git a/png/spiked-fence.png b/png/spiked-fence.png
new file mode 100644
index 000000000..0d51d59a0
Binary files /dev/null and b/png/spiked-fence.png differ
diff --git a/png/spiked-halo.png b/png/spiked-halo.png
new file mode 100644
index 000000000..15c869165
Binary files /dev/null and b/png/spiked-halo.png differ
diff --git a/png/spiked-mace.png b/png/spiked-mace.png
new file mode 100644
index 000000000..9ca77ce50
Binary files /dev/null and b/png/spiked-mace.png differ
diff --git a/png/spiked-shell.png b/png/spiked-shell.png
new file mode 100644
index 000000000..e39317809
Binary files /dev/null and b/png/spiked-shell.png differ
diff --git a/png/spiked-shield.png b/png/spiked-shield.png
new file mode 100644
index 000000000..e3331f7c5
Binary files /dev/null and b/png/spiked-shield.png differ
diff --git a/png/spiked-shoulder-armor.png b/png/spiked-shoulder-armor.png
new file mode 100644
index 000000000..382f510cd
Binary files /dev/null and b/png/spiked-shoulder-armor.png differ
diff --git a/png/spiked-snail.png b/png/spiked-snail.png
new file mode 100644
index 000000000..e6ca839a8
Binary files /dev/null and b/png/spiked-snail.png differ
diff --git a/png/spiked-tail.png b/png/spiked-tail.png
new file mode 100644
index 000000000..ad1489464
Binary files /dev/null and b/png/spiked-tail.png differ
diff --git a/png/spiked-tentacle.png b/png/spiked-tentacle.png
new file mode 100644
index 000000000..3c923f765
Binary files /dev/null and b/png/spiked-tentacle.png differ
diff --git a/png/spiked-trunk.png b/png/spiked-trunk.png
new file mode 100644
index 000000000..60cf01959
Binary files /dev/null and b/png/spiked-trunk.png differ
diff --git a/png/spiked-wall.png b/png/spiked-wall.png
new file mode 100644
index 000000000..c4e906d57
Binary files /dev/null and b/png/spiked-wall.png differ
diff --git a/png/spikes-full.png b/png/spikes-full.png
new file mode 100644
index 000000000..1a961d6f0
Binary files /dev/null and b/png/spikes-full.png differ
diff --git a/png/spikes-half.png b/png/spikes-half.png
new file mode 100644
index 000000000..dfbd4dbb1
Binary files /dev/null and b/png/spikes-half.png differ
diff --git a/png/spikes-init.png b/png/spikes-init.png
new file mode 100644
index 000000000..34199746d
Binary files /dev/null and b/png/spikes-init.png differ
diff --git a/png/spikes.png b/png/spikes.png
new file mode 100644
index 000000000..e7d5eb527
Binary files /dev/null and b/png/spikes.png differ
diff --git a/png/spiky-eclipse.png b/png/spiky-eclipse.png
new file mode 100644
index 000000000..f13da1ece
Binary files /dev/null and b/png/spiky-eclipse.png differ
diff --git a/png/spiky-explosion.png b/png/spiky-explosion.png
new file mode 100644
index 000000000..c33b74934
Binary files /dev/null and b/png/spiky-explosion.png differ
diff --git a/png/spiky-field.png b/png/spiky-field.png
new file mode 100644
index 000000000..97ca93de3
Binary files /dev/null and b/png/spiky-field.png differ
diff --git a/png/spiky-pit.png b/png/spiky-pit.png
new file mode 100644
index 000000000..235bfa132
Binary files /dev/null and b/png/spiky-pit.png differ
diff --git a/png/spiky-wing.png b/png/spiky-wing.png
new file mode 100644
index 000000000..478195330
Binary files /dev/null and b/png/spiky-wing.png differ
diff --git a/png/spill.png b/png/spill.png
new file mode 100644
index 000000000..afd27d5d3
Binary files /dev/null and b/png/spill.png differ
diff --git a/png/spinal-coil.png b/png/spinal-coil.png
new file mode 100644
index 000000000..2390014e9
Binary files /dev/null and b/png/spinal-coil.png differ
diff --git a/png/spine-arrow.png b/png/spine-arrow.png
new file mode 100644
index 000000000..31d12633e
Binary files /dev/null and b/png/spine-arrow.png differ
diff --git a/png/spinning-blades.png b/png/spinning-blades.png
new file mode 100644
index 000000000..554745ae4
Binary files /dev/null and b/png/spinning-blades.png differ
diff --git a/png/spinning-ribbons.png b/png/spinning-ribbons.png
new file mode 100644
index 000000000..5ef429f68
Binary files /dev/null and b/png/spinning-ribbons.png differ
diff --git a/png/spinning-sword.png b/png/spinning-sword.png
new file mode 100644
index 000000000..15afe0adb
Binary files /dev/null and b/png/spinning-sword.png differ
diff --git a/png/spinning-top.png b/png/spinning-top.png
new file mode 100644
index 000000000..1aa831f12
Binary files /dev/null and b/png/spinning-top.png differ
diff --git a/png/spinning-wheel.png b/png/spinning-wheel.png
new file mode 100644
index 000000000..cea745ce6
Binary files /dev/null and b/png/spinning-wheel.png differ
diff --git a/png/spiral-arrow.png b/png/spiral-arrow.png
new file mode 100644
index 000000000..b1c4db264
Binary files /dev/null and b/png/spiral-arrow.png differ
diff --git a/png/spiral-bloom.png b/png/spiral-bloom.png
new file mode 100644
index 000000000..5fae0c7d5
Binary files /dev/null and b/png/spiral-bloom.png differ
diff --git a/png/spiral-bottle.png b/png/spiral-bottle.png
new file mode 100644
index 000000000..63eec3cd5
Binary files /dev/null and b/png/spiral-bottle.png differ
diff --git a/png/spiral-hilt.png b/png/spiral-hilt.png
new file mode 100644
index 000000000..5771f81b5
Binary files /dev/null and b/png/spiral-hilt.png differ
diff --git a/png/spiral-lollipop.png b/png/spiral-lollipop.png
new file mode 100644
index 000000000..86b00b97f
Binary files /dev/null and b/png/spiral-lollipop.png differ
diff --git a/png/spiral-shell.png b/png/spiral-shell.png
new file mode 100644
index 000000000..54e9ae2d6
Binary files /dev/null and b/png/spiral-shell.png differ
diff --git a/png/spiral-tentacle.png b/png/spiral-tentacle.png
new file mode 100644
index 000000000..d6498d177
Binary files /dev/null and b/png/spiral-tentacle.png differ
diff --git a/png/spiral-thrust.png b/png/spiral-thrust.png
new file mode 100644
index 000000000..0b04c1a56
Binary files /dev/null and b/png/spiral-thrust.png differ
diff --git a/png/splash-2.png b/png/splash-2.png
new file mode 100644
index 000000000..cadf0c242
Binary files /dev/null and b/png/splash-2.png differ
diff --git a/png/splash.png b/png/splash.png
new file mode 100644
index 000000000..6ec168f54
Binary files /dev/null and b/png/splash.png differ
diff --git a/png/splashy-stream.png b/png/splashy-stream.png
new file mode 100644
index 000000000..50955b397
Binary files /dev/null and b/png/splashy-stream.png differ
diff --git a/png/split-arrows.png b/png/split-arrows.png
new file mode 100644
index 000000000..bc78c7edf
Binary files /dev/null and b/png/split-arrows.png differ
diff --git a/png/split-body.png b/png/split-body.png
new file mode 100644
index 000000000..c6b4e83a5
Binary files /dev/null and b/png/split-body.png differ
diff --git a/png/split-cross.png b/png/split-cross.png
new file mode 100644
index 000000000..85750c282
Binary files /dev/null and b/png/split-cross.png differ
diff --git a/png/splurt.png b/png/splurt.png
new file mode 100644
index 000000000..3dc04d6b9
Binary files /dev/null and b/png/splurt.png differ
diff --git a/png/spock-hand.png b/png/spock-hand.png
new file mode 100644
index 000000000..013719237
Binary files /dev/null and b/png/spock-hand.png differ
diff --git a/png/spooky-house.png b/png/spooky-house.png
new file mode 100644
index 000000000..17d0f10d4
Binary files /dev/null and b/png/spooky-house.png differ
diff --git a/png/spoon.png b/png/spoon.png
new file mode 100644
index 000000000..796f125a0
Binary files /dev/null and b/png/spoon.png differ
diff --git a/png/sport-medal.png b/png/sport-medal.png
new file mode 100644
index 000000000..955cd49c0
Binary files /dev/null and b/png/sport-medal.png differ
diff --git a/png/spoted-flower.png b/png/spoted-flower.png
new file mode 100644
index 000000000..3bab25c43
Binary files /dev/null and b/png/spoted-flower.png differ
diff --git a/png/spotted-arrowhead.png b/png/spotted-arrowhead.png
new file mode 100644
index 000000000..f458160a2
Binary files /dev/null and b/png/spotted-arrowhead.png differ
diff --git a/png/spotted-bug.png b/png/spotted-bug.png
new file mode 100644
index 000000000..7fb1f287e
Binary files /dev/null and b/png/spotted-bug.png differ
diff --git a/png/spotted-mushroom.png b/png/spotted-mushroom.png
new file mode 100644
index 000000000..8b6ccb167
Binary files /dev/null and b/png/spotted-mushroom.png differ
diff --git a/png/spotted-wound.png b/png/spotted-wound.png
new file mode 100644
index 000000000..ca59b7d02
Binary files /dev/null and b/png/spotted-wound.png differ
diff --git a/png/spoutnik.png b/png/spoutnik.png
new file mode 100644
index 000000000..aa26f1719
Binary files /dev/null and b/png/spoutnik.png differ
diff --git a/png/spray.png b/png/spray.png
new file mode 100644
index 000000000..6ca957396
Binary files /dev/null and b/png/spray.png differ
diff --git a/png/spring.png b/png/spring.png
new file mode 100644
index 000000000..cdc4239c2
Binary files /dev/null and b/png/spring.png differ
diff --git a/png/sprint.png b/png/sprint.png
new file mode 100644
index 000000000..82fa68f2f
Binary files /dev/null and b/png/sprint.png differ
diff --git a/png/sprout-disc.png b/png/sprout-disc.png
new file mode 100644
index 000000000..458f5d407
Binary files /dev/null and b/png/sprout-disc.png differ
diff --git a/png/sprout.png b/png/sprout.png
new file mode 100644
index 000000000..b5867d989
Binary files /dev/null and b/png/sprout.png differ
diff --git a/png/spy.png b/png/spy.png
new file mode 100644
index 000000000..d05329b75
Binary files /dev/null and b/png/spy.png differ
diff --git a/png/spyglass.png b/png/spyglass.png
new file mode 100644
index 000000000..5ca55e673
Binary files /dev/null and b/png/spyglass.png differ
diff --git a/png/square-bottle.png b/png/square-bottle.png
new file mode 100644
index 000000000..4ce0f02b4
Binary files /dev/null and b/png/square-bottle.png differ
diff --git a/png/square.png b/png/square.png
new file mode 100644
index 000000000..b4b5eb9b5
Binary files /dev/null and b/png/square.png differ
diff --git a/png/squib.png b/png/squib.png
new file mode 100644
index 000000000..4e9dc2efd
Binary files /dev/null and b/png/squib.png differ
diff --git a/png/squid-head.png b/png/squid-head.png
new file mode 100644
index 000000000..49a8c6e75
Binary files /dev/null and b/png/squid-head.png differ
diff --git a/png/squid.png b/png/squid.png
new file mode 100644
index 000000000..37c3ecb04
Binary files /dev/null and b/png/squid.png differ
diff --git a/png/squirrel.png b/png/squirrel.png
new file mode 100644
index 000000000..f959d5e09
Binary files /dev/null and b/png/squirrel.png differ
diff --git a/png/sri-lanka.png b/png/sri-lanka.png
new file mode 100644
index 000000000..13dc5880b
Binary files /dev/null and b/png/sri-lanka.png differ
diff --git a/png/stabbed-note.png b/png/stabbed-note.png
new file mode 100644
index 000000000..1247fbede
Binary files /dev/null and b/png/stabbed-note.png differ
diff --git a/png/stable.png b/png/stable.png
new file mode 100644
index 000000000..5011fa39b
Binary files /dev/null and b/png/stable.png differ
diff --git a/png/stack.png b/png/stack.png
new file mode 100644
index 000000000..6c21d9cfc
Binary files /dev/null and b/png/stack.png differ
diff --git a/png/stag-head.png b/png/stag-head.png
new file mode 100644
index 000000000..01f35fe36
Binary files /dev/null and b/png/stag-head.png differ
diff --git a/png/stahlhelm.png b/png/stahlhelm.png
new file mode 100644
index 000000000..1394adbd8
Binary files /dev/null and b/png/stahlhelm.png differ
diff --git a/png/stairs-cake.png b/png/stairs-cake.png
new file mode 100644
index 000000000..cf9130b93
Binary files /dev/null and b/png/stairs-cake.png differ
diff --git a/png/stairs-goal.png b/png/stairs-goal.png
new file mode 100644
index 000000000..63b5fc837
Binary files /dev/null and b/png/stairs-goal.png differ
diff --git a/png/stairs.png b/png/stairs.png
new file mode 100644
index 000000000..a99b6210e
Binary files /dev/null and b/png/stairs.png differ
diff --git a/png/stake-hammer.png b/png/stake-hammer.png
new file mode 100644
index 000000000..9c764e5a1
Binary files /dev/null and b/png/stake-hammer.png differ
diff --git a/png/stakes-fence.png b/png/stakes-fence.png
new file mode 100644
index 000000000..b8a778a25
Binary files /dev/null and b/png/stakes-fence.png differ
diff --git a/png/stalactites.png b/png/stalactites.png
new file mode 100644
index 000000000..0aeadaf4e
Binary files /dev/null and b/png/stalactites.png differ
diff --git a/png/stalagtite.png b/png/stalagtite.png
new file mode 100644
index 000000000..72e0ebc3c
Binary files /dev/null and b/png/stalagtite.png differ
diff --git a/png/stamper.png b/png/stamper.png
new file mode 100644
index 000000000..373851005
Binary files /dev/null and b/png/stamper.png differ
diff --git a/png/standing-potion.png b/png/standing-potion.png
new file mode 100644
index 000000000..8acc6d92d
Binary files /dev/null and b/png/standing-potion.png differ
diff --git a/png/stapler-heavy-duty.png b/png/stapler-heavy-duty.png
new file mode 100644
index 000000000..0092a31d5
Binary files /dev/null and b/png/stapler-heavy-duty.png differ
diff --git a/png/stapler-pneumatic.png b/png/stapler-pneumatic.png
new file mode 100644
index 000000000..88b4abae0
Binary files /dev/null and b/png/stapler-pneumatic.png differ
diff --git a/png/stapler.png b/png/stapler.png
new file mode 100644
index 000000000..c31500b99
Binary files /dev/null and b/png/stapler.png differ
diff --git a/png/star-altar.png b/png/star-altar.png
new file mode 100644
index 000000000..6618475b4
Binary files /dev/null and b/png/star-altar.png differ
diff --git a/png/star-cycle.png b/png/star-cycle.png
new file mode 100644
index 000000000..1ba46c619
Binary files /dev/null and b/png/star-cycle.png differ
diff --git a/png/star-flag.png b/png/star-flag.png
new file mode 100644
index 000000000..295332266
Binary files /dev/null and b/png/star-flag.png differ
diff --git a/png/star-formation.png b/png/star-formation.png
new file mode 100644
index 000000000..c6c22761a
Binary files /dev/null and b/png/star-formation.png differ
diff --git a/png/star-gate.png b/png/star-gate.png
new file mode 100644
index 000000000..c635a3eb7
Binary files /dev/null and b/png/star-gate.png differ
diff --git a/png/star-key.png b/png/star-key.png
new file mode 100644
index 000000000..df24f06aa
Binary files /dev/null and b/png/star-key.png differ
diff --git a/png/star-medal.png b/png/star-medal.png
new file mode 100644
index 000000000..555442bb1
Binary files /dev/null and b/png/star-medal.png differ
diff --git a/png/star-prominences.png b/png/star-prominences.png
new file mode 100644
index 000000000..6759038b5
Binary files /dev/null and b/png/star-prominences.png differ
diff --git a/png/star-pupil.png b/png/star-pupil.png
new file mode 100644
index 000000000..33a5fa742
Binary files /dev/null and b/png/star-pupil.png differ
diff --git a/png/star-sattelites.png b/png/star-sattelites.png
new file mode 100644
index 000000000..5df241864
Binary files /dev/null and b/png/star-sattelites.png differ
diff --git a/png/star-shuriken.png b/png/star-shuriken.png
new file mode 100644
index 000000000..e48c14926
Binary files /dev/null and b/png/star-shuriken.png differ
diff --git a/png/star-skull.png b/png/star-skull.png
new file mode 100644
index 000000000..c09c83b13
Binary files /dev/null and b/png/star-skull.png differ
diff --git a/png/star-struck.png b/png/star-struck.png
new file mode 100644
index 000000000..246e69079
Binary files /dev/null and b/png/star-struck.png differ
diff --git a/png/star-swirl.png b/png/star-swirl.png
new file mode 100644
index 000000000..4de979697
Binary files /dev/null and b/png/star-swirl.png differ
diff --git a/png/starfighter.png b/png/starfighter.png
new file mode 100644
index 000000000..088733ce4
Binary files /dev/null and b/png/starfighter.png differ
diff --git a/png/stars-stack.png b/png/stars-stack.png
new file mode 100644
index 000000000..125c364ca
Binary files /dev/null and b/png/stars-stack.png differ
diff --git a/png/staryu.png b/png/staryu.png
new file mode 100644
index 000000000..326a923f6
Binary files /dev/null and b/png/staryu.png differ
diff --git a/png/static-guard.png b/png/static-guard.png
new file mode 100644
index 000000000..f1a6a7ca7
Binary files /dev/null and b/png/static-guard.png differ
diff --git a/png/static-waves.png b/png/static-waves.png
new file mode 100644
index 000000000..54ea0e3d1
Binary files /dev/null and b/png/static-waves.png differ
diff --git a/png/static.png b/png/static.png
new file mode 100644
index 000000000..d909e70d9
Binary files /dev/null and b/png/static.png differ
diff --git a/png/steak.png b/png/steak.png
new file mode 100644
index 000000000..5086c8f81
Binary files /dev/null and b/png/steak.png differ
diff --git a/png/stealth-bomber.png b/png/stealth-bomber.png
new file mode 100644
index 000000000..24cae6add
Binary files /dev/null and b/png/stealth-bomber.png differ
diff --git a/png/steam-blast.png b/png/steam-blast.png
new file mode 100644
index 000000000..a0f44f9be
Binary files /dev/null and b/png/steam-blast.png differ
diff --git a/png/steam-locomotive.png b/png/steam-locomotive.png
new file mode 100644
index 000000000..96c3cf29a
Binary files /dev/null and b/png/steam-locomotive.png differ
diff --git a/png/steam.png b/png/steam.png
new file mode 100644
index 000000000..234e16a8a
Binary files /dev/null and b/png/steam.png differ
diff --git a/png/steampunk-goggles.png b/png/steampunk-goggles.png
new file mode 100644
index 000000000..4bedd7721
Binary files /dev/null and b/png/steampunk-goggles.png differ
diff --git a/png/steamroller.png b/png/steamroller.png
new file mode 100644
index 000000000..5a60d5721
Binary files /dev/null and b/png/steamroller.png differ
diff --git a/png/steel-claws-2.png b/png/steel-claws-2.png
new file mode 100644
index 000000000..a392ca16b
Binary files /dev/null and b/png/steel-claws-2.png differ
diff --git a/png/steel-claws.png b/png/steel-claws.png
new file mode 100644
index 000000000..d81713b31
Binary files /dev/null and b/png/steel-claws.png differ
diff --git a/png/steel-door.png b/png/steel-door.png
new file mode 100644
index 000000000..24a823d3a
Binary files /dev/null and b/png/steel-door.png differ
diff --git a/png/steeltoe-boots.png b/png/steeltoe-boots.png
new file mode 100644
index 000000000..7f1da5896
Binary files /dev/null and b/png/steeltoe-boots.png differ
diff --git a/png/steelwing-emblem.png b/png/steelwing-emblem.png
new file mode 100644
index 000000000..8ea1a047f
Binary files /dev/null and b/png/steelwing-emblem.png differ
diff --git a/png/steering-wheel.png b/png/steering-wheel.png
new file mode 100644
index 000000000..28e7d2f48
Binary files /dev/null and b/png/steering-wheel.png differ
diff --git a/png/stegosaurus-scales.png b/png/stegosaurus-scales.png
new file mode 100644
index 000000000..ce2261889
Binary files /dev/null and b/png/stegosaurus-scales.png differ
diff --git a/png/stethoscope.png b/png/stethoscope.png
new file mode 100644
index 000000000..fdec90afd
Binary files /dev/null and b/png/stethoscope.png differ
diff --git a/png/steyr-aug.png b/png/steyr-aug.png
new file mode 100644
index 000000000..92c1f1829
Binary files /dev/null and b/png/steyr-aug.png differ
diff --git a/png/stick-frame.png b/png/stick-frame.png
new file mode 100644
index 000000000..c08b150d5
Binary files /dev/null and b/png/stick-frame.png differ
diff --git a/png/stick-grenade.png b/png/stick-grenade.png
new file mode 100644
index 000000000..5997f39d0
Binary files /dev/null and b/png/stick-grenade.png differ
diff --git a/png/stick-splitting.png b/png/stick-splitting.png
new file mode 100644
index 000000000..42beca2d7
Binary files /dev/null and b/png/stick-splitting.png differ
diff --git a/png/sticking-plaster.png b/png/sticking-plaster.png
new file mode 100644
index 000000000..2c917baa7
Binary files /dev/null and b/png/sticking-plaster.png differ
diff --git a/png/sticky-boot.png b/png/sticky-boot.png
new file mode 100644
index 000000000..1148f980c
Binary files /dev/null and b/png/sticky-boot.png differ
diff --git a/png/stigmata.png b/png/stigmata.png
new file mode 100644
index 000000000..e45909081
Binary files /dev/null and b/png/stigmata.png differ
diff --git a/png/stiletto-2.png b/png/stiletto-2.png
new file mode 100644
index 000000000..fee43a088
Binary files /dev/null and b/png/stiletto-2.png differ
diff --git a/png/stiletto.png b/png/stiletto.png
new file mode 100644
index 000000000..71d231018
Binary files /dev/null and b/png/stiletto.png differ
diff --git a/png/stitched-wound.png b/png/stitched-wound.png
new file mode 100644
index 000000000..dde774b67
Binary files /dev/null and b/png/stitched-wound.png differ
diff --git a/png/stockpiles.png b/png/stockpiles.png
new file mode 100644
index 000000000..54ff1ad16
Binary files /dev/null and b/png/stockpiles.png differ
diff --git a/png/stomach.png b/png/stomach.png
new file mode 100644
index 000000000..16a601019
Binary files /dev/null and b/png/stomach.png differ
diff --git a/png/stomp-tornado.png b/png/stomp-tornado.png
new file mode 100644
index 000000000..376662c43
Binary files /dev/null and b/png/stomp-tornado.png differ
diff --git a/png/stomp.png b/png/stomp.png
new file mode 100644
index 000000000..cce6d14aa
Binary files /dev/null and b/png/stomp.png differ
diff --git a/png/stone-axe.png b/png/stone-axe.png
new file mode 100644
index 000000000..24d853990
Binary files /dev/null and b/png/stone-axe.png differ
diff --git a/png/stone-block.png b/png/stone-block.png
new file mode 100644
index 000000000..97f2a1847
Binary files /dev/null and b/png/stone-block.png differ
diff --git a/png/stone-bridge.png b/png/stone-bridge.png
new file mode 100644
index 000000000..afa6a0ff0
Binary files /dev/null and b/png/stone-bridge.png differ
diff --git a/png/stone-bust.png b/png/stone-bust.png
new file mode 100644
index 000000000..0cdbf9558
Binary files /dev/null and b/png/stone-bust.png differ
diff --git a/png/stone-crafting.png b/png/stone-crafting.png
new file mode 100644
index 000000000..3cf6f1478
Binary files /dev/null and b/png/stone-crafting.png differ
diff --git a/png/stone-path.png b/png/stone-path.png
new file mode 100644
index 000000000..b2afab2bb
Binary files /dev/null and b/png/stone-path.png differ
diff --git a/png/stone-pile.png b/png/stone-pile.png
new file mode 100644
index 000000000..f924bad46
Binary files /dev/null and b/png/stone-pile.png differ
diff --git a/png/stone-spear.png b/png/stone-spear.png
new file mode 100644
index 000000000..2a29214c4
Binary files /dev/null and b/png/stone-spear.png differ
diff --git a/png/stone-sphere.png b/png/stone-sphere.png
new file mode 100644
index 000000000..08fd653e6
Binary files /dev/null and b/png/stone-sphere.png differ
diff --git a/png/stone-stack.png b/png/stone-stack.png
new file mode 100644
index 000000000..7203034cf
Binary files /dev/null and b/png/stone-stack.png differ
diff --git a/png/stone-tablet.png b/png/stone-tablet.png
new file mode 100644
index 000000000..79bf1056b
Binary files /dev/null and b/png/stone-tablet.png differ
diff --git a/png/stone-throne.png b/png/stone-throne.png
new file mode 100644
index 000000000..35f78ad1f
Binary files /dev/null and b/png/stone-throne.png differ
diff --git a/png/stone-tower.png b/png/stone-tower.png
new file mode 100644
index 000000000..dc64af702
Binary files /dev/null and b/png/stone-tower.png differ
diff --git a/png/stone-wall.png b/png/stone-wall.png
new file mode 100644
index 000000000..6bd19f5b5
Binary files /dev/null and b/png/stone-wall.png differ
diff --git a/png/stone-wheel.png b/png/stone-wheel.png
new file mode 100644
index 000000000..6a856d93c
Binary files /dev/null and b/png/stone-wheel.png differ
diff --git a/png/stoned-skull.png b/png/stoned-skull.png
new file mode 100644
index 000000000..f2e42926a
Binary files /dev/null and b/png/stoned-skull.png differ
diff --git a/png/stop-sign.png b/png/stop-sign.png
new file mode 100644
index 000000000..4612107c7
Binary files /dev/null and b/png/stop-sign.png differ
diff --git a/png/stopwatch-2.png b/png/stopwatch-2.png
new file mode 100644
index 000000000..cfcf077e2
Binary files /dev/null and b/png/stopwatch-2.png differ
diff --git a/png/stopwatch.png b/png/stopwatch.png
new file mode 100644
index 000000000..4d0b4d3e9
Binary files /dev/null and b/png/stopwatch.png differ
diff --git a/png/stork-delivery.png b/png/stork-delivery.png
new file mode 100644
index 000000000..da20c7868
Binary files /dev/null and b/png/stork-delivery.png differ
diff --git a/png/strafe.png b/png/strafe.png
new file mode 100644
index 000000000..962fa309f
Binary files /dev/null and b/png/strafe.png differ
diff --git a/png/straight-pipe.png b/png/straight-pipe.png
new file mode 100644
index 000000000..b8a9d4dc9
Binary files /dev/null and b/png/straight-pipe.png differ
diff --git a/png/strawberry.png b/png/strawberry.png
new file mode 100644
index 000000000..e1a322035
Binary files /dev/null and b/png/strawberry.png differ
diff --git a/png/street-light.png b/png/street-light.png
new file mode 100644
index 000000000..70b0ace6e
Binary files /dev/null and b/png/street-light.png differ
diff --git a/png/striking-arrows.png b/png/striking-arrows.png
new file mode 100644
index 000000000..914f7e2a7
Binary files /dev/null and b/png/striking-arrows.png differ
diff --git a/png/striking-balls.png b/png/striking-balls.png
new file mode 100644
index 000000000..44774b3e2
Binary files /dev/null and b/png/striking-balls.png differ
diff --git a/png/striking-clamps.png b/png/striking-clamps.png
new file mode 100644
index 000000000..813de699e
Binary files /dev/null and b/png/striking-clamps.png differ
diff --git a/png/striking-diamonds.png b/png/striking-diamonds.png
new file mode 100644
index 000000000..9b99d2e97
Binary files /dev/null and b/png/striking-diamonds.png differ
diff --git a/png/striking-splinter.png b/png/striking-splinter.png
new file mode 100644
index 000000000..466fe9e93
Binary files /dev/null and b/png/striking-splinter.png differ
diff --git a/png/striped-sun.png b/png/striped-sun.png
new file mode 100644
index 000000000..fc15cc7b8
Binary files /dev/null and b/png/striped-sun.png differ
diff --git a/png/striped-sword.png b/png/striped-sword.png
new file mode 100644
index 000000000..3a821bdcf
Binary files /dev/null and b/png/striped-sword.png differ
diff --git a/png/strong-man.png b/png/strong-man.png
new file mode 100644
index 000000000..a70effd0c
Binary files /dev/null and b/png/strong-man.png differ
diff --git a/png/strong.png b/png/strong.png
new file mode 100644
index 000000000..c38b1685f
Binary files /dev/null and b/png/strong.png differ
diff --git a/png/strongbox.png b/png/strongbox.png
new file mode 100644
index 000000000..8835065f2
Binary files /dev/null and b/png/strongbox.png differ
diff --git a/png/stump-regrowth.png b/png/stump-regrowth.png
new file mode 100644
index 000000000..2dcf3ab8c
Binary files /dev/null and b/png/stump-regrowth.png differ
diff --git a/png/stun-grenade.png b/png/stun-grenade.png
new file mode 100644
index 000000000..9f7551107
Binary files /dev/null and b/png/stun-grenade.png differ
diff --git a/png/submarine-missile.png b/png/submarine-missile.png
new file mode 100644
index 000000000..92576735b
Binary files /dev/null and b/png/submarine-missile.png differ
diff --git a/png/submarine.png b/png/submarine.png
new file mode 100644
index 000000000..c94704d21
Binary files /dev/null and b/png/submarine.png differ
diff --git a/png/subway-pass.png b/png/subway-pass.png
new file mode 100644
index 000000000..a11accade
Binary files /dev/null and b/png/subway-pass.png differ
diff --git a/png/subway-train.png b/png/subway-train.png
new file mode 100644
index 000000000..d6d0260aa
Binary files /dev/null and b/png/subway-train.png differ
diff --git a/png/subway.png b/png/subway.png
new file mode 100644
index 000000000..2049b03d7
Binary files /dev/null and b/png/subway.png differ
diff --git a/png/suckered-tentacle.png b/png/suckered-tentacle.png
new file mode 100644
index 000000000..d9638dbc6
Binary files /dev/null and b/png/suckered-tentacle.png differ
diff --git a/png/sugar-cane.png b/png/sugar-cane.png
new file mode 100644
index 000000000..86dc1b154
Binary files /dev/null and b/png/sugar-cane.png differ
diff --git a/png/suicide.png b/png/suicide.png
new file mode 100644
index 000000000..b18530f04
Binary files /dev/null and b/png/suicide.png differ
diff --git a/png/suitcase.png b/png/suitcase.png
new file mode 100644
index 000000000..e353c59e7
Binary files /dev/null and b/png/suitcase.png differ
diff --git a/png/suits.png b/png/suits.png
new file mode 100644
index 000000000..627eeb7fa
Binary files /dev/null and b/png/suits.png differ
diff --git a/png/summits.png b/png/summits.png
new file mode 100644
index 000000000..56b4d74c4
Binary files /dev/null and b/png/summits.png differ
diff --git a/png/sun-cloud.png b/png/sun-cloud.png
new file mode 100644
index 000000000..5beb72a13
Binary files /dev/null and b/png/sun-cloud.png differ
diff --git a/png/sun-priest.png b/png/sun-priest.png
new file mode 100644
index 000000000..11795eef3
Binary files /dev/null and b/png/sun-priest.png differ
diff --git a/png/sun-radiations.png b/png/sun-radiations.png
new file mode 100644
index 000000000..88a6874ee
Binary files /dev/null and b/png/sun-radiations.png differ
diff --git a/png/sun-spear.png b/png/sun-spear.png
new file mode 100644
index 000000000..006b68f8e
Binary files /dev/null and b/png/sun-spear.png differ
diff --git a/png/sun.png b/png/sun.png
new file mode 100644
index 000000000..bc00ee157
Binary files /dev/null and b/png/sun.png differ
diff --git a/png/sunbeams.png b/png/sunbeams.png
new file mode 100644
index 000000000..0b3f11b97
Binary files /dev/null and b/png/sunbeams.png differ
diff --git a/png/sundial.png b/png/sundial.png
new file mode 100644
index 000000000..2d7ff57a3
Binary files /dev/null and b/png/sundial.png differ
diff --git a/png/sunflower.png b/png/sunflower.png
new file mode 100644
index 000000000..996d86776
Binary files /dev/null and b/png/sunflower.png differ
diff --git a/png/sunglasses.png b/png/sunglasses.png
new file mode 100644
index 000000000..6de2c074b
Binary files /dev/null and b/png/sunglasses.png differ
diff --git a/png/sunken-eye.png b/png/sunken-eye.png
new file mode 100644
index 000000000..3d28d839f
Binary files /dev/null and b/png/sunken-eye.png differ
diff --git a/png/sunrise-2.png b/png/sunrise-2.png
new file mode 100644
index 000000000..432aca377
Binary files /dev/null and b/png/sunrise-2.png differ
diff --git a/png/sunrise.png b/png/sunrise.png
new file mode 100644
index 000000000..7ab8be33b
Binary files /dev/null and b/png/sunrise.png differ
diff --git a/png/sunset.png b/png/sunset.png
new file mode 100644
index 000000000..107c2de52
Binary files /dev/null and b/png/sunset.png differ
diff --git a/png/super-mushroom.png b/png/super-mushroom.png
new file mode 100644
index 000000000..8c7d36deb
Binary files /dev/null and b/png/super-mushroom.png differ
diff --git a/png/supersonic-arrow.png b/png/supersonic-arrow.png
new file mode 100644
index 000000000..0ec665703
Binary files /dev/null and b/png/supersonic-arrow.png differ
diff --git a/png/supersonic-bullet.png b/png/supersonic-bullet.png
new file mode 100644
index 000000000..1d8bd6baa
Binary files /dev/null and b/png/supersonic-bullet.png differ
diff --git a/png/surf-board.png b/png/surf-board.png
new file mode 100644
index 000000000..42db2a9a4
Binary files /dev/null and b/png/surf-board.png differ
diff --git a/png/surfer-van.png b/png/surfer-van.png
new file mode 100644
index 000000000..31974b75a
Binary files /dev/null and b/png/surfer-van.png differ
diff --git a/png/surprised-skull.png b/png/surprised-skull.png
new file mode 100644
index 000000000..59acbeac5
Binary files /dev/null and b/png/surprised-skull.png differ
diff --git a/png/surprised.png b/png/surprised.png
new file mode 100644
index 000000000..a460e05c1
Binary files /dev/null and b/png/surprised.png differ
diff --git a/png/surrounded-eye.png b/png/surrounded-eye.png
new file mode 100644
index 000000000..2397331e9
Binary files /dev/null and b/png/surrounded-eye.png differ
diff --git a/png/surrounded-shield.png b/png/surrounded-shield.png
new file mode 100644
index 000000000..275123d26
Binary files /dev/null and b/png/surrounded-shield.png differ
diff --git a/png/sushis.png b/png/sushis.png
new file mode 100644
index 000000000..085ea9c94
Binary files /dev/null and b/png/sushis.png differ
diff --git a/png/suspension-bridge.png b/png/suspension-bridge.png
new file mode 100644
index 000000000..79ba8c8be
Binary files /dev/null and b/png/suspension-bridge.png differ
diff --git a/png/suspicious.png b/png/suspicious.png
new file mode 100644
index 000000000..83cf37d39
Binary files /dev/null and b/png/suspicious.png differ
diff --git a/png/sverd-i-fjell.png b/png/sverd-i-fjell.png
new file mode 100644
index 000000000..50e84cee8
Binary files /dev/null and b/png/sverd-i-fjell.png differ
diff --git a/png/swallow-2.png b/png/swallow-2.png
new file mode 100644
index 000000000..81d737008
Binary files /dev/null and b/png/swallow-2.png differ
diff --git a/png/swallow.png b/png/swallow.png
new file mode 100644
index 000000000..af4f1c7d3
Binary files /dev/null and b/png/swallow.png differ
diff --git a/png/swallower.png b/png/swallower.png
new file mode 100644
index 000000000..612446e47
Binary files /dev/null and b/png/swallower.png differ
diff --git a/png/swamp-bat.png b/png/swamp-bat.png
new file mode 100644
index 000000000..c5ecf6c6d
Binary files /dev/null and b/png/swamp-bat.png differ
diff --git a/png/swamp.png b/png/swamp.png
new file mode 100644
index 000000000..7c5ec623d
Binary files /dev/null and b/png/swamp.png differ
diff --git a/png/swan-breeze.png b/png/swan-breeze.png
new file mode 100644
index 000000000..9fc1c9845
Binary files /dev/null and b/png/swan-breeze.png differ
diff --git a/png/swan.png b/png/swan.png
new file mode 100644
index 000000000..7980884d2
Binary files /dev/null and b/png/swan.png differ
diff --git a/png/swap-bag.png b/png/swap-bag.png
new file mode 100644
index 000000000..e6405c56b
Binary files /dev/null and b/png/swap-bag.png differ
diff --git a/png/swimfins.png b/png/swimfins.png
new file mode 100644
index 000000000..a12ba1fae
Binary files /dev/null and b/png/swimfins.png differ
diff --git a/png/swipe-card.png b/png/swipe-card.png
new file mode 100644
index 000000000..cadf9097b
Binary files /dev/null and b/png/swipe-card.png differ
diff --git a/png/swirl-ring.png b/png/swirl-ring.png
new file mode 100644
index 000000000..bd15c0b09
Binary files /dev/null and b/png/swirl-ring.png differ
diff --git a/png/swirl-string.png b/png/swirl-string.png
new file mode 100644
index 000000000..0f972fb46
Binary files /dev/null and b/png/swirl-string.png differ
diff --git a/png/swirled-shell.png b/png/swirled-shell.png
new file mode 100644
index 000000000..fb4f85669
Binary files /dev/null and b/png/swirled-shell.png differ
diff --git a/png/swiss-army-knife.png b/png/swiss-army-knife.png
new file mode 100644
index 000000000..0baa50d3d
Binary files /dev/null and b/png/swiss-army-knife.png differ
diff --git a/png/switch-weapon.png b/png/switch-weapon.png
new file mode 100644
index 000000000..fc144d472
Binary files /dev/null and b/png/switch-weapon.png differ
diff --git a/png/switchblade.png b/png/switchblade.png
new file mode 100644
index 000000000..1d88db476
Binary files /dev/null and b/png/switchblade.png differ
diff --git a/png/switzerland.png b/png/switzerland.png
new file mode 100644
index 000000000..8324ad344
Binary files /dev/null and b/png/switzerland.png differ
diff --git a/png/sword-altar.png b/png/sword-altar.png
new file mode 100644
index 000000000..d6b4b9f10
Binary files /dev/null and b/png/sword-altar.png differ
diff --git a/png/sword-array.png b/png/sword-array.png
new file mode 100644
index 000000000..9c112a009
Binary files /dev/null and b/png/sword-array.png differ
diff --git a/png/sword-brandish.png b/png/sword-brandish.png
new file mode 100644
index 000000000..c7e7e4dde
Binary files /dev/null and b/png/sword-brandish.png differ
diff --git a/png/sword-break.png b/png/sword-break.png
new file mode 100644
index 000000000..0bbf64bad
Binary files /dev/null and b/png/sword-break.png differ
diff --git a/png/sword-clash.png b/png/sword-clash.png
new file mode 100644
index 000000000..5dafd921b
Binary files /dev/null and b/png/sword-clash.png differ
diff --git a/png/sword-hilt.png b/png/sword-hilt.png
new file mode 100644
index 000000000..545ca7884
Binary files /dev/null and b/png/sword-hilt.png differ
diff --git a/png/sword-in-stone.png b/png/sword-in-stone.png
new file mode 100644
index 000000000..82613478a
Binary files /dev/null and b/png/sword-in-stone.png differ
diff --git a/png/sword-mold.png b/png/sword-mold.png
new file mode 100644
index 000000000..338055347
Binary files /dev/null and b/png/sword-mold.png differ
diff --git a/png/sword-slice.png b/png/sword-slice.png
new file mode 100644
index 000000000..0587cb037
Binary files /dev/null and b/png/sword-slice.png differ
diff --git a/png/sword-smithing.png b/png/sword-smithing.png
new file mode 100644
index 000000000..22dcb38b3
Binary files /dev/null and b/png/sword-smithing.png differ
diff --git a/png/sword-spade.png b/png/sword-spade.png
new file mode 100644
index 000000000..ca3efc716
Binary files /dev/null and b/png/sword-spade.png differ
diff --git a/png/sword-spin.png b/png/sword-spin.png
new file mode 100644
index 000000000..551d341d7
Binary files /dev/null and b/png/sword-spin.png differ
diff --git a/png/sword-tie.png b/png/sword-tie.png
new file mode 100644
index 000000000..e590f52d2
Binary files /dev/null and b/png/sword-tie.png differ
diff --git a/png/sword-wound.png b/png/sword-wound.png
new file mode 100644
index 000000000..71216a456
Binary files /dev/null and b/png/sword-wound.png differ
diff --git a/png/swordman.png b/png/swordman.png
new file mode 100644
index 000000000..b97cccbd1
Binary files /dev/null and b/png/swordman.png differ
diff --git a/png/swords-emblem.png b/png/swords-emblem.png
new file mode 100644
index 000000000..4960a4475
Binary files /dev/null and b/png/swords-emblem.png differ
diff --git a/png/swords-power.png b/png/swords-power.png
new file mode 100644
index 000000000..b892916b2
Binary files /dev/null and b/png/swords-power.png differ
diff --git a/png/swordwoman.png b/png/swordwoman.png
new file mode 100644
index 000000000..7fcbf8348
Binary files /dev/null and b/png/swordwoman.png differ
diff --git a/png/sydney-opera-house.png b/png/sydney-opera-house.png
new file mode 100644
index 000000000..a73e3fad2
Binary files /dev/null and b/png/sydney-opera-house.png differ
diff --git a/png/syringe-2.png b/png/syringe-2.png
new file mode 100644
index 000000000..40aa9fe16
Binary files /dev/null and b/png/syringe-2.png differ
diff --git a/png/syringe.png b/png/syringe.png
new file mode 100644
index 000000000..5c68a40bc
Binary files /dev/null and b/png/syringe.png differ
diff --git a/png/t-brick.png b/png/t-brick.png
new file mode 100644
index 000000000..6eb79e6cb
Binary files /dev/null and b/png/t-brick.png differ
diff --git a/png/t-rex-skull.png b/png/t-rex-skull.png
new file mode 100644
index 000000000..9b23a457d
Binary files /dev/null and b/png/t-rex-skull.png differ
diff --git a/png/t-shirt.png b/png/t-shirt.png
new file mode 100644
index 000000000..a57784aed
Binary files /dev/null and b/png/t-shirt.png differ
diff --git a/png/tabi-boot.png b/png/tabi-boot.png
new file mode 100644
index 000000000..62815af77
Binary files /dev/null and b/png/tabi-boot.png differ
diff --git a/png/table.png b/png/table.png
new file mode 100644
index 000000000..62e8078d9
Binary files /dev/null and b/png/table.png differ
diff --git a/png/tablet.png b/png/tablet.png
new file mode 100644
index 000000000..9ea9d3dce
Binary files /dev/null and b/png/tablet.png differ
diff --git a/png/tabletop-players.png b/png/tabletop-players.png
new file mode 100644
index 000000000..8d02a79b9
Binary files /dev/null and b/png/tabletop-players.png differ
diff --git a/png/tacos.png b/png/tacos.png
new file mode 100644
index 000000000..67b882430
Binary files /dev/null and b/png/tacos.png differ
diff --git a/png/tadpole.png b/png/tadpole.png
new file mode 100644
index 000000000..2bffc042c
Binary files /dev/null and b/png/tadpole.png differ
diff --git a/png/take-my-money.png b/png/take-my-money.png
new file mode 100644
index 000000000..5429fdcf1
Binary files /dev/null and b/png/take-my-money.png differ
diff --git a/png/talk.png b/png/talk.png
new file mode 100644
index 000000000..cc95bd15d
Binary files /dev/null and b/png/talk.png differ
diff --git a/png/tall-bridge.png b/png/tall-bridge.png
new file mode 100644
index 000000000..c0d4376a6
Binary files /dev/null and b/png/tall-bridge.png differ
diff --git a/png/tally-mark-5.png b/png/tally-mark-5.png
new file mode 100644
index 000000000..7259597d0
Binary files /dev/null and b/png/tally-mark-5.png differ
diff --git a/png/tambourine.png b/png/tambourine.png
new file mode 100644
index 000000000..d9629f038
Binary files /dev/null and b/png/tambourine.png differ
diff --git a/png/tangerine.png b/png/tangerine.png
new file mode 100644
index 000000000..ff654591a
Binary files /dev/null and b/png/tangerine.png differ
diff --git a/png/tank-top.png b/png/tank-top.png
new file mode 100644
index 000000000..0f8a0e652
Binary files /dev/null and b/png/tank-top.png differ
diff --git a/png/tank-tread.png b/png/tank-tread.png
new file mode 100644
index 000000000..8504ae5ca
Binary files /dev/null and b/png/tank-tread.png differ
diff --git a/png/tank.png b/png/tank.png
new file mode 100644
index 000000000..3e0979602
Binary files /dev/null and b/png/tank.png differ
diff --git a/png/tanzania.png b/png/tanzania.png
new file mode 100644
index 000000000..4a837ee43
Binary files /dev/null and b/png/tanzania.png differ
diff --git a/png/tap.png b/png/tap.png
new file mode 100644
index 000000000..ca0539d2e
Binary files /dev/null and b/png/tap.png differ
diff --git a/png/tapir.png b/png/tapir.png
new file mode 100644
index 000000000..2ff9244af
Binary files /dev/null and b/png/tapir.png differ
diff --git a/png/target-arrows.png b/png/target-arrows.png
new file mode 100644
index 000000000..b0f3bc26f
Binary files /dev/null and b/png/target-arrows.png differ
diff --git a/png/target-dummy.png b/png/target-dummy.png
new file mode 100644
index 000000000..4a95f1203
Binary files /dev/null and b/png/target-dummy.png differ
diff --git a/png/target-laser.png b/png/target-laser.png
new file mode 100644
index 000000000..3b1efb213
Binary files /dev/null and b/png/target-laser.png differ
diff --git a/png/target-poster.png b/png/target-poster.png
new file mode 100644
index 000000000..aaefcba5b
Binary files /dev/null and b/png/target-poster.png differ
diff --git a/png/target-prize.png b/png/target-prize.png
new file mode 100644
index 000000000..8f9291400
Binary files /dev/null and b/png/target-prize.png differ
diff --git a/png/target-shot.png b/png/target-shot.png
new file mode 100644
index 000000000..1ca520480
Binary files /dev/null and b/png/target-shot.png differ
diff --git a/png/targeted.png b/png/targeted.png
new file mode 100644
index 000000000..be3a3459b
Binary files /dev/null and b/png/targeted.png differ
diff --git a/png/targeting.png b/png/targeting.png
new file mode 100644
index 000000000..b3b261273
Binary files /dev/null and b/png/targeting.png differ
diff --git a/png/tattered-banner.png b/png/tattered-banner.png
new file mode 100644
index 000000000..550d1bc91
Binary files /dev/null and b/png/tattered-banner.png differ
diff --git a/png/taurus.png b/png/taurus.png
new file mode 100644
index 000000000..bf1e05482
Binary files /dev/null and b/png/taurus.png differ
diff --git a/png/tavern-sign.png b/png/tavern-sign.png
new file mode 100644
index 000000000..6811c9375
Binary files /dev/null and b/png/tavern-sign.png differ
diff --git a/png/teacher.png b/png/teacher.png
new file mode 100644
index 000000000..fd216d9a9
Binary files /dev/null and b/png/teacher.png differ
diff --git a/png/team-downgrade.png b/png/team-downgrade.png
new file mode 100644
index 000000000..3fb67b683
Binary files /dev/null and b/png/team-downgrade.png differ
diff --git a/png/team-idea.png b/png/team-idea.png
new file mode 100644
index 000000000..9d0aa5889
Binary files /dev/null and b/png/team-idea.png differ
diff --git a/png/team-upgrade.png b/png/team-upgrade.png
new file mode 100644
index 000000000..de481be5f
Binary files /dev/null and b/png/team-upgrade.png differ
diff --git a/png/teapot-leaves.png b/png/teapot-leaves.png
new file mode 100644
index 000000000..70ea4c0f4
Binary files /dev/null and b/png/teapot-leaves.png differ
diff --git a/png/teapot.png b/png/teapot.png
new file mode 100644
index 000000000..6a2c13d4b
Binary files /dev/null and b/png/teapot.png differ
diff --git a/png/tear-tracks.png b/png/tear-tracks.png
new file mode 100644
index 000000000..722493719
Binary files /dev/null and b/png/tear-tracks.png differ
diff --git a/png/tearing.png b/png/tearing.png
new file mode 100644
index 000000000..27179e1f6
Binary files /dev/null and b/png/tearing.png differ
diff --git a/png/tec-9.png b/png/tec-9.png
new file mode 100644
index 000000000..a4894f3a6
Binary files /dev/null and b/png/tec-9.png differ
diff --git a/png/techno-heart.png b/png/techno-heart.png
new file mode 100644
index 000000000..95503c334
Binary files /dev/null and b/png/techno-heart.png differ
diff --git a/png/tee-pipe.png b/png/tee-pipe.png
new file mode 100644
index 000000000..4e60e243a
Binary files /dev/null and b/png/tee-pipe.png differ
diff --git a/png/telefrag.png b/png/telefrag.png
new file mode 100644
index 000000000..08bd539ef
Binary files /dev/null and b/png/telefrag.png differ
diff --git a/png/telepathy.png b/png/telepathy.png
new file mode 100644
index 000000000..06ec5af9f
Binary files /dev/null and b/png/telepathy.png differ
diff --git a/png/teleport.png b/png/teleport.png
new file mode 100644
index 000000000..0fdc1b076
Binary files /dev/null and b/png/teleport.png differ
diff --git a/png/telescope.png b/png/telescope.png
new file mode 100644
index 000000000..e6a881fb3
Binary files /dev/null and b/png/telescope.png differ
diff --git a/png/telescopic-baton.png b/png/telescopic-baton.png
new file mode 100644
index 000000000..a83d9cce3
Binary files /dev/null and b/png/telescopic-baton.png differ
diff --git a/png/teller-mine.png b/png/teller-mine.png
new file mode 100644
index 000000000..6f060048a
Binary files /dev/null and b/png/teller-mine.png differ
diff --git a/png/templar-eye.png b/png/templar-eye.png
new file mode 100644
index 000000000..e56ad037c
Binary files /dev/null and b/png/templar-eye.png differ
diff --git a/png/templar-heart.png b/png/templar-heart.png
new file mode 100644
index 000000000..2eeac9dad
Binary files /dev/null and b/png/templar-heart.png differ
diff --git a/png/templar-shield.png b/png/templar-shield.png
new file mode 100644
index 000000000..a74a014f7
Binary files /dev/null and b/png/templar-shield.png differ
diff --git a/png/temple-door.png b/png/temple-door.png
new file mode 100644
index 000000000..fe6d9346f
Binary files /dev/null and b/png/temple-door.png differ
diff --git a/png/temple-gate.png b/png/temple-gate.png
new file mode 100644
index 000000000..69a2ab76d
Binary files /dev/null and b/png/temple-gate.png differ
diff --git a/png/temporary-shield.png b/png/temporary-shield.png
new file mode 100644
index 000000000..da262e99f
Binary files /dev/null and b/png/temporary-shield.png differ
diff --git a/png/temptation.png b/png/temptation.png
new file mode 100644
index 000000000..5a93af0dd
Binary files /dev/null and b/png/temptation.png differ
diff --git a/png/tennis-ball.png b/png/tennis-ball.png
new file mode 100644
index 000000000..96e2f6ddf
Binary files /dev/null and b/png/tennis-ball.png differ
diff --git a/png/tennis-court.png b/png/tennis-court.png
new file mode 100644
index 000000000..19d310c0e
Binary files /dev/null and b/png/tennis-court.png differ
diff --git a/png/tennis-racket.png b/png/tennis-racket.png
new file mode 100644
index 000000000..ed432b6e8
Binary files /dev/null and b/png/tennis-racket.png differ
diff --git a/png/tension-snowflake.png b/png/tension-snowflake.png
new file mode 100644
index 000000000..059c056b9
Binary files /dev/null and b/png/tension-snowflake.png differ
diff --git a/png/tentacle-heart.png b/png/tentacle-heart.png
new file mode 100644
index 000000000..218d2593d
Binary files /dev/null and b/png/tentacle-heart.png differ
diff --git a/png/tentacle-strike.png b/png/tentacle-strike.png
new file mode 100644
index 000000000..2f08c42f6
Binary files /dev/null and b/png/tentacle-strike.png differ
diff --git a/png/tentacles-barrier.png b/png/tentacles-barrier.png
new file mode 100644
index 000000000..7940fe2fa
Binary files /dev/null and b/png/tentacles-barrier.png differ
diff --git a/png/tentacles-skull.png b/png/tentacles-skull.png
new file mode 100644
index 000000000..46f86fa70
Binary files /dev/null and b/png/tentacles-skull.png differ
diff --git a/png/tentacurl.png b/png/tentacurl.png
new file mode 100644
index 000000000..03210ab75
Binary files /dev/null and b/png/tentacurl.png differ
diff --git a/png/terror.png b/png/terror.png
new file mode 100644
index 000000000..5947b4909
Binary files /dev/null and b/png/terror.png differ
diff --git a/png/tesla-coil-2.png b/png/tesla-coil-2.png
new file mode 100644
index 000000000..8c06aa2c3
Binary files /dev/null and b/png/tesla-coil-2.png differ
diff --git a/png/tesla-coil.png b/png/tesla-coil.png
new file mode 100644
index 000000000..9292448c3
Binary files /dev/null and b/png/tesla-coil.png differ
diff --git a/png/tesla-turret.png b/png/tesla-turret.png
new file mode 100644
index 000000000..a458bf523
Binary files /dev/null and b/png/tesla-turret.png differ
diff --git a/png/tesla.png b/png/tesla.png
new file mode 100644
index 000000000..aaa9bd486
Binary files /dev/null and b/png/tesla.png differ
diff --git a/png/test-tube-held.png b/png/test-tube-held.png
new file mode 100644
index 000000000..9ec0130fc
Binary files /dev/null and b/png/test-tube-held.png differ
diff --git a/png/test-tube-rack.png b/png/test-tube-rack.png
new file mode 100644
index 000000000..6f7c807e7
Binary files /dev/null and b/png/test-tube-rack.png differ
diff --git a/png/test-tubes.png b/png/test-tubes.png
new file mode 100644
index 000000000..c802f28ea
Binary files /dev/null and b/png/test-tubes.png differ
diff --git a/png/texas.png b/png/texas.png
new file mode 100644
index 000000000..b3eaec9e0
Binary files /dev/null and b/png/texas.png differ
diff --git a/png/theater-curtains.png b/png/theater-curtains.png
new file mode 100644
index 000000000..25c5ba3d3
Binary files /dev/null and b/png/theater-curtains.png differ
diff --git a/png/theater.png b/png/theater.png
new file mode 100644
index 000000000..653c5f723
Binary files /dev/null and b/png/theater.png differ
diff --git a/png/thermometer-cold.png b/png/thermometer-cold.png
new file mode 100644
index 000000000..2837bcac8
Binary files /dev/null and b/png/thermometer-cold.png differ
diff --git a/png/thermometer-hot.png b/png/thermometer-hot.png
new file mode 100644
index 000000000..295294d06
Binary files /dev/null and b/png/thermometer-hot.png differ
diff --git a/png/thermometer-scale.png b/png/thermometer-scale.png
new file mode 100644
index 000000000..ae98e98d8
Binary files /dev/null and b/png/thermometer-scale.png differ
diff --git a/png/think.png b/png/think.png
new file mode 100644
index 000000000..e0e69610f
Binary files /dev/null and b/png/think.png differ
diff --git a/png/third-eye.png b/png/third-eye.png
new file mode 100644
index 000000000..cb40f1ff4
Binary files /dev/null and b/png/third-eye.png differ
diff --git a/png/thompson-m1.png b/png/thompson-m1.png
new file mode 100644
index 000000000..85d6a0fb6
Binary files /dev/null and b/png/thompson-m1.png differ
diff --git a/png/thompson-m1928.png b/png/thompson-m1928.png
new file mode 100644
index 000000000..9e1d99b25
Binary files /dev/null and b/png/thompson-m1928.png differ
diff --git a/png/thor-fist.png b/png/thor-fist.png
new file mode 100644
index 000000000..cc18e767c
Binary files /dev/null and b/png/thor-fist.png differ
diff --git a/png/thor-hammer.png b/png/thor-hammer.png
new file mode 100644
index 000000000..0fc8f1a97
Binary files /dev/null and b/png/thor-hammer.png differ
diff --git a/png/thorn-helix.png b/png/thorn-helix.png
new file mode 100644
index 000000000..7198c5383
Binary files /dev/null and b/png/thorn-helix.png differ
diff --git a/png/thorned-arrow.png b/png/thorned-arrow.png
new file mode 100644
index 000000000..bffc74695
Binary files /dev/null and b/png/thorned-arrow.png differ
diff --git a/png/thorny-tentacle.png b/png/thorny-tentacle.png
new file mode 100644
index 000000000..a6ff002c6
Binary files /dev/null and b/png/thorny-tentacle.png differ
diff --git a/png/thorny-vine.png b/png/thorny-vine.png
new file mode 100644
index 000000000..a25ad0274
Binary files /dev/null and b/png/thorny-vine.png differ
diff --git a/png/three-burning-balls.png b/png/three-burning-balls.png
new file mode 100644
index 000000000..e816c5fae
Binary files /dev/null and b/png/three-burning-balls.png differ
diff --git a/png/three-friends.png b/png/three-friends.png
new file mode 100644
index 000000000..949453314
Binary files /dev/null and b/png/three-friends.png differ
diff --git a/png/three-keys.png b/png/three-keys.png
new file mode 100644
index 000000000..540d239ec
Binary files /dev/null and b/png/three-keys.png differ
diff --git a/png/three-leaves.png b/png/three-leaves.png
new file mode 100644
index 000000000..ec0d271b1
Binary files /dev/null and b/png/three-leaves.png differ
diff --git a/png/three-pointed-shuriken.png b/png/three-pointed-shuriken.png
new file mode 100644
index 000000000..3d0e765db
Binary files /dev/null and b/png/three-pointed-shuriken.png differ
diff --git a/png/throne-king.png b/png/throne-king.png
new file mode 100644
index 000000000..6cdcb6ece
Binary files /dev/null and b/png/throne-king.png differ
diff --git a/png/throwing-ball.png b/png/throwing-ball.png
new file mode 100644
index 000000000..613908726
Binary files /dev/null and b/png/throwing-ball.png differ
diff --git a/png/thrown-charcoal.png b/png/thrown-charcoal.png
new file mode 100644
index 000000000..fd489c19f
Binary files /dev/null and b/png/thrown-charcoal.png differ
diff --git a/png/thrown-daggers.png b/png/thrown-daggers.png
new file mode 100644
index 000000000..c1ac624d0
Binary files /dev/null and b/png/thrown-daggers.png differ
diff --git a/png/thrown-knife.png b/png/thrown-knife.png
new file mode 100644
index 000000000..5ac215ea0
Binary files /dev/null and b/png/thrown-knife.png differ
diff --git a/png/thrown-spear.png b/png/thrown-spear.png
new file mode 100644
index 000000000..cd119c56c
Binary files /dev/null and b/png/thrown-spear.png differ
diff --git a/png/thrust-bend.png b/png/thrust-bend.png
new file mode 100644
index 000000000..69dc836de
Binary files /dev/null and b/png/thrust-bend.png differ
diff --git a/png/thrust.png b/png/thrust.png
new file mode 100644
index 000000000..be3af836d
Binary files /dev/null and b/png/thrust.png differ
diff --git a/png/thumb-down.png b/png/thumb-down.png
new file mode 100644
index 000000000..be69cf7ed
Binary files /dev/null and b/png/thumb-down.png differ
diff --git a/png/thumb-up.png b/png/thumb-up.png
new file mode 100644
index 000000000..5c729e372
Binary files /dev/null and b/png/thumb-up.png differ
diff --git a/png/thunder-blade.png b/png/thunder-blade.png
new file mode 100644
index 000000000..83ca9713a
Binary files /dev/null and b/png/thunder-blade.png differ
diff --git a/png/thunder-skull.png b/png/thunder-skull.png
new file mode 100644
index 000000000..99ac1a1f2
Binary files /dev/null and b/png/thunder-skull.png differ
diff --git a/png/thunder-struck.png b/png/thunder-struck.png
new file mode 100644
index 000000000..74181121b
Binary files /dev/null and b/png/thunder-struck.png differ
diff --git a/png/thunderball.png b/png/thunderball.png
new file mode 100644
index 000000000..48f4649bc
Binary files /dev/null and b/png/thunderball.png differ
diff --git a/png/thwomp.png b/png/thwomp.png
new file mode 100644
index 000000000..e78c59ec3
Binary files /dev/null and b/png/thwomp.png differ
diff --git a/png/tiara.png b/png/tiara.png
new file mode 100644
index 000000000..73c5fc25e
Binary files /dev/null and b/png/tiara.png differ
diff --git a/png/tic-tac-toe.png b/png/tic-tac-toe.png
new file mode 100644
index 000000000..482e4ae99
Binary files /dev/null and b/png/tic-tac-toe.png differ
diff --git a/png/tick.png b/png/tick.png
new file mode 100644
index 000000000..e467abacf
Binary files /dev/null and b/png/tick.png differ
diff --git a/png/ticket.png b/png/ticket.png
new file mode 100644
index 000000000..64f761b8d
Binary files /dev/null and b/png/ticket.png differ
diff --git a/png/tie.png b/png/tie.png
new file mode 100644
index 000000000..be7f9bcfd
Binary files /dev/null and b/png/tie.png differ
diff --git a/png/tied-scroll.png b/png/tied-scroll.png
new file mode 100644
index 000000000..650c24ab0
Binary files /dev/null and b/png/tied-scroll.png differ
diff --git a/png/tiger-head.png b/png/tiger-head.png
new file mode 100644
index 000000000..991f2ef80
Binary files /dev/null and b/png/tiger-head.png differ
diff --git a/png/tiger.png b/png/tiger.png
new file mode 100644
index 000000000..8a49a7295
Binary files /dev/null and b/png/tiger.png differ
diff --git a/png/tightrope.png b/png/tightrope.png
new file mode 100644
index 000000000..2b2516414
Binary files /dev/null and b/png/tightrope.png differ
diff --git a/png/time-bomb.png b/png/time-bomb.png
new file mode 100644
index 000000000..072aeaac6
Binary files /dev/null and b/png/time-bomb.png differ
diff --git a/png/time-dynamite.png b/png/time-dynamite.png
new file mode 100644
index 000000000..372364f10
Binary files /dev/null and b/png/time-dynamite.png differ
diff --git a/png/time-synchronization.png b/png/time-synchronization.png
new file mode 100644
index 000000000..9e59ae765
Binary files /dev/null and b/png/time-synchronization.png differ
diff --git a/png/time-trap.png b/png/time-trap.png
new file mode 100644
index 000000000..719814996
Binary files /dev/null and b/png/time-trap.png differ
diff --git a/png/tinker.png b/png/tinker.png
new file mode 100644
index 000000000..c9d1d889c
Binary files /dev/null and b/png/tinker.png differ
diff --git a/png/tipi.png b/png/tipi.png
new file mode 100644
index 000000000..2073bcb73
Binary files /dev/null and b/png/tipi.png differ
diff --git a/png/tire-iron-cross.png b/png/tire-iron-cross.png
new file mode 100644
index 000000000..c1fdef676
Binary files /dev/null and b/png/tire-iron-cross.png differ
diff --git a/png/tire-iron.png b/png/tire-iron.png
new file mode 100644
index 000000000..11aec0898
Binary files /dev/null and b/png/tire-iron.png differ
diff --git a/png/tire-tracks.png b/png/tire-tracks.png
new file mode 100644
index 000000000..7e8d1ea85
Binary files /dev/null and b/png/tire-tracks.png differ
diff --git a/png/tired-eye.png b/png/tired-eye.png
new file mode 100644
index 000000000..638d9edca
Binary files /dev/null and b/png/tired-eye.png differ
diff --git a/png/toad-teeth.png b/png/toad-teeth.png
new file mode 100644
index 000000000..6d39a5f83
Binary files /dev/null and b/png/toad-teeth.png differ
diff --git a/png/toaster.png b/png/toaster.png
new file mode 100644
index 000000000..4cc90932e
Binary files /dev/null and b/png/toaster.png differ
diff --git a/png/toggles.png b/png/toggles.png
new file mode 100644
index 000000000..8168e460f
Binary files /dev/null and b/png/toggles.png differ
diff --git a/png/token.png b/png/token.png
new file mode 100644
index 000000000..694f9f3ed
Binary files /dev/null and b/png/token.png differ
diff --git a/png/tomahawk.png b/png/tomahawk.png
new file mode 100644
index 000000000..3a433b1e9
Binary files /dev/null and b/png/tomahawk.png differ
diff --git a/png/tomato.png b/png/tomato.png
new file mode 100644
index 000000000..0e31bd19e
Binary files /dev/null and b/png/tomato.png differ
diff --git a/png/tombstone-2.png b/png/tombstone-2.png
new file mode 100644
index 000000000..27656379b
Binary files /dev/null and b/png/tombstone-2.png differ
diff --git a/png/tombstone.png b/png/tombstone.png
new file mode 100644
index 000000000..7639deabc
Binary files /dev/null and b/png/tombstone.png differ
diff --git a/png/tongue.png b/png/tongue.png
new file mode 100644
index 000000000..d9d40085c
Binary files /dev/null and b/png/tongue.png differ
diff --git a/png/toolbox.png b/png/toolbox.png
new file mode 100644
index 000000000..48b01ef2a
Binary files /dev/null and b/png/toolbox.png differ
diff --git a/png/tooth.png b/png/tooth.png
new file mode 100644
index 000000000..029e36da8
Binary files /dev/null and b/png/tooth.png differ
diff --git a/png/toothbrush.png b/png/toothbrush.png
new file mode 100644
index 000000000..7ef5f4998
Binary files /dev/null and b/png/toothbrush.png differ
diff --git a/png/top-hat.png b/png/top-hat.png
new file mode 100644
index 000000000..41cc07e5b
Binary files /dev/null and b/png/top-hat.png differ
diff --git a/png/top-paw.png b/png/top-paw.png
new file mode 100644
index 000000000..34cbc7bab
Binary files /dev/null and b/png/top-paw.png differ
diff --git a/png/topaz.png b/png/topaz.png
new file mode 100644
index 000000000..09bea0593
Binary files /dev/null and b/png/topaz.png differ
diff --git a/png/torc.png b/png/torc.png
new file mode 100644
index 000000000..bc5a1740a
Binary files /dev/null and b/png/torc.png differ
diff --git a/png/torch.png b/png/torch.png
new file mode 100644
index 000000000..90c3d4bfd
Binary files /dev/null and b/png/torch.png differ
diff --git a/png/tornado-discs.png b/png/tornado-discs.png
new file mode 100644
index 000000000..7ae96b54a
Binary files /dev/null and b/png/tornado-discs.png differ
diff --git a/png/tornado.png b/png/tornado.png
new file mode 100644
index 000000000..350c87469
Binary files /dev/null and b/png/tornado.png differ
diff --git a/png/torpedo.png b/png/torpedo.png
new file mode 100644
index 000000000..2b9e702bc
Binary files /dev/null and b/png/torpedo.png differ
diff --git a/png/tortoise.png b/png/tortoise.png
new file mode 100644
index 000000000..54de02fcd
Binary files /dev/null and b/png/tortoise.png differ
diff --git a/png/totem-head.png b/png/totem-head.png
new file mode 100644
index 000000000..0f55f3927
Binary files /dev/null and b/png/totem-head.png differ
diff --git a/png/totem-mask.png b/png/totem-mask.png
new file mode 100644
index 000000000..d45ecbe5f
Binary files /dev/null and b/png/totem-mask.png differ
diff --git a/png/totem.png b/png/totem.png
new file mode 100644
index 000000000..5ebc5cdae
Binary files /dev/null and b/png/totem.png differ
diff --git a/png/toucan.png b/png/toucan.png
new file mode 100644
index 000000000..6b767b643
Binary files /dev/null and b/png/toucan.png differ
diff --git a/png/tow-truck.png b/png/tow-truck.png
new file mode 100644
index 000000000..db32f3467
Binary files /dev/null and b/png/tow-truck.png differ
diff --git a/png/towel.png b/png/towel.png
new file mode 100644
index 000000000..6c505f1fa
Binary files /dev/null and b/png/towel.png differ
diff --git a/png/tower-bridge.png b/png/tower-bridge.png
new file mode 100644
index 000000000..3c4efddb3
Binary files /dev/null and b/png/tower-bridge.png differ
diff --git a/png/tower-fall.png b/png/tower-fall.png
new file mode 100644
index 000000000..624eec9ca
Binary files /dev/null and b/png/tower-fall.png differ
diff --git a/png/tower-flag.png b/png/tower-flag.png
new file mode 100644
index 000000000..59f12a57b
Binary files /dev/null and b/png/tower-flag.png differ
diff --git a/png/toy-mallet.png b/png/toy-mallet.png
new file mode 100644
index 000000000..465e59917
Binary files /dev/null and b/png/toy-mallet.png differ
diff --git a/png/tracked-robot.png b/png/tracked-robot.png
new file mode 100644
index 000000000..3d6763778
Binary files /dev/null and b/png/tracked-robot.png differ
diff --git a/png/trade.png b/png/trade.png
new file mode 100644
index 000000000..af61ec455
Binary files /dev/null and b/png/trade.png differ
diff --git a/png/traffic-cone.png b/png/traffic-cone.png
new file mode 100644
index 000000000..3757d94c3
Binary files /dev/null and b/png/traffic-cone.png differ
diff --git a/png/traffic-lights-green.png b/png/traffic-lights-green.png
new file mode 100644
index 000000000..445964ca0
Binary files /dev/null and b/png/traffic-lights-green.png differ
diff --git a/png/traffic-lights-orange.png b/png/traffic-lights-orange.png
new file mode 100644
index 000000000..8f2d681fc
Binary files /dev/null and b/png/traffic-lights-orange.png differ
diff --git a/png/traffic-lights-ready-to-go.png b/png/traffic-lights-ready-to-go.png
new file mode 100644
index 000000000..4c77a1919
Binary files /dev/null and b/png/traffic-lights-ready-to-go.png differ
diff --git a/png/traffic-lights-red.png b/png/traffic-lights-red.png
new file mode 100644
index 000000000..4ab24b0dd
Binary files /dev/null and b/png/traffic-lights-red.png differ
diff --git a/png/trail.png b/png/trail.png
new file mode 100644
index 000000000..b0f6a20a9
Binary files /dev/null and b/png/trail.png differ
diff --git a/png/trample.png b/png/trample.png
new file mode 100644
index 000000000..ea1283170
Binary files /dev/null and b/png/trample.png differ
diff --git a/png/transform.png b/png/transform.png
new file mode 100644
index 000000000..eea272855
Binary files /dev/null and b/png/transform.png differ
diff --git a/png/transfuse.png b/png/transfuse.png
new file mode 100644
index 000000000..7de8ed6d0
Binary files /dev/null and b/png/transfuse.png differ
diff --git a/png/transparent-slime.png b/png/transparent-slime.png
new file mode 100644
index 000000000..df03e1313
Binary files /dev/null and b/png/transparent-slime.png differ
diff --git a/png/transparent-tubes.png b/png/transparent-tubes.png
new file mode 100644
index 000000000..f04b90941
Binary files /dev/null and b/png/transparent-tubes.png differ
diff --git a/png/transportation-rings.png b/png/transportation-rings.png
new file mode 100644
index 000000000..96d303168
Binary files /dev/null and b/png/transportation-rings.png differ
diff --git a/png/trap-mask.png b/png/trap-mask.png
new file mode 100644
index 000000000..cac7defb4
Binary files /dev/null and b/png/trap-mask.png differ
diff --git a/png/trash-can.png b/png/trash-can.png
new file mode 100644
index 000000000..a2c5620c8
Binary files /dev/null and b/png/trash-can.png differ
diff --git a/png/travel-dress.png b/png/travel-dress.png
new file mode 100644
index 000000000..ca7484c30
Binary files /dev/null and b/png/travel-dress.png differ
diff --git a/png/tread.png b/png/tread.png
new file mode 100644
index 000000000..0af195f43
Binary files /dev/null and b/png/tread.png differ
diff --git a/png/treasure-map.png b/png/treasure-map.png
new file mode 100644
index 000000000..93652ce86
Binary files /dev/null and b/png/treasure-map.png differ
diff --git a/png/trebuchet.png b/png/trebuchet.png
new file mode 100644
index 000000000..57a79ddfd
Binary files /dev/null and b/png/trebuchet.png differ
diff --git a/png/tree-beehive.png b/png/tree-beehive.png
new file mode 100644
index 000000000..291c568c0
Binary files /dev/null and b/png/tree-beehive.png differ
diff --git a/png/tree-branch.png b/png/tree-branch.png
new file mode 100644
index 000000000..b3306bff7
Binary files /dev/null and b/png/tree-branch.png differ
diff --git a/png/tree-door.png b/png/tree-door.png
new file mode 100644
index 000000000..d9de1d477
Binary files /dev/null and b/png/tree-door.png differ
diff --git a/png/tree-face.png b/png/tree-face.png
new file mode 100644
index 000000000..777a22189
Binary files /dev/null and b/png/tree-face.png differ
diff --git a/png/tree-growth.png b/png/tree-growth.png
new file mode 100644
index 000000000..0105c00a7
Binary files /dev/null and b/png/tree-growth.png differ
diff --git a/png/tree-roots.png b/png/tree-roots.png
new file mode 100644
index 000000000..1ab2410a0
Binary files /dev/null and b/png/tree-roots.png differ
diff --git a/png/tree-swing.png b/png/tree-swing.png
new file mode 100644
index 000000000..69856f86e
Binary files /dev/null and b/png/tree-swing.png differ
diff --git a/png/treehouse.png b/png/treehouse.png
new file mode 100644
index 000000000..c9ffbe127
Binary files /dev/null and b/png/treehouse.png differ
diff --git a/png/trefoil-lily.png b/png/trefoil-lily.png
new file mode 100644
index 000000000..5e3f1e5af
Binary files /dev/null and b/png/trefoil-lily.png differ
diff --git a/png/trefoil-shuriken.png b/png/trefoil-shuriken.png
new file mode 100644
index 000000000..5d356a4dd
Binary files /dev/null and b/png/trefoil-shuriken.png differ
diff --git a/png/trench-assault.png b/png/trench-assault.png
new file mode 100644
index 000000000..2f23ff440
Binary files /dev/null and b/png/trench-assault.png differ
diff --git a/png/trench-body-armor.png b/png/trench-body-armor.png
new file mode 100644
index 000000000..8dbc2a796
Binary files /dev/null and b/png/trench-body-armor.png differ
diff --git a/png/trench-knife.png b/png/trench-knife.png
new file mode 100644
index 000000000..cdd477047
Binary files /dev/null and b/png/trench-knife.png differ
diff --git a/png/trench-spade.png b/png/trench-spade.png
new file mode 100644
index 000000000..cf3c181c7
Binary files /dev/null and b/png/trench-spade.png differ
diff --git a/png/triangle-target.png b/png/triangle-target.png
new file mode 100644
index 000000000..7dc2eaa7a
Binary files /dev/null and b/png/triangle-target.png differ
diff --git a/png/tribal-gear.png b/png/tribal-gear.png
new file mode 100644
index 000000000..bf8385651
Binary files /dev/null and b/png/tribal-gear.png differ
diff --git a/png/tribal-mask.png b/png/tribal-mask.png
new file mode 100644
index 000000000..096e2bfcb
Binary files /dev/null and b/png/tribal-mask.png differ
diff --git a/png/tribal-pendant.png b/png/tribal-pendant.png
new file mode 100644
index 000000000..b0ecab5cd
Binary files /dev/null and b/png/tribal-pendant.png differ
diff --git a/png/tribal-shield.png b/png/tribal-shield.png
new file mode 100644
index 000000000..87d95e85f
Binary files /dev/null and b/png/tribal-shield.png differ
diff --git a/png/tribunal-jury.png b/png/tribunal-jury.png
new file mode 100644
index 000000000..2238f1b2b
Binary files /dev/null and b/png/tribunal-jury.png differ
diff --git a/png/triceratops-head.png b/png/triceratops-head.png
new file mode 100644
index 000000000..c77c2e75a
Binary files /dev/null and b/png/triceratops-head.png differ
diff --git a/png/trident-shield.png b/png/trident-shield.png
new file mode 100644
index 000000000..7aa5aef6e
Binary files /dev/null and b/png/trident-shield.png differ
diff --git a/png/trident.png b/png/trident.png
new file mode 100644
index 000000000..0d4aee2ce
Binary files /dev/null and b/png/trident.png differ
diff --git a/png/triforce.png b/png/triforce.png
new file mode 100644
index 000000000..cba95f65e
Binary files /dev/null and b/png/triforce.png differ
diff --git a/png/trigger-hurt.png b/png/trigger-hurt.png
new file mode 100644
index 000000000..02e7a6109
Binary files /dev/null and b/png/trigger-hurt.png differ
diff --git a/png/trilobite.png b/png/trilobite.png
new file mode 100644
index 000000000..7b3eb83e1
Binary files /dev/null and b/png/trilobite.png differ
diff --git a/png/trinacria.png b/png/trinacria.png
new file mode 100644
index 000000000..ec58ff4bd
Binary files /dev/null and b/png/trinacria.png differ
diff --git a/png/triorb.png b/png/triorb.png
new file mode 100644
index 000000000..d0b6b1142
Binary files /dev/null and b/png/triorb.png differ
diff --git a/png/triple-beak.png b/png/triple-beak.png
new file mode 100644
index 000000000..47c44288d
Binary files /dev/null and b/png/triple-beak.png differ
diff --git a/png/triple-claws.png b/png/triple-claws.png
new file mode 100644
index 000000000..9446a1723
Binary files /dev/null and b/png/triple-claws.png differ
diff --git a/png/triple-corn.png b/png/triple-corn.png
new file mode 100644
index 000000000..d3fec7ae0
Binary files /dev/null and b/png/triple-corn.png differ
diff --git a/png/triple-gate.png b/png/triple-gate.png
new file mode 100644
index 000000000..5bcfc4460
Binary files /dev/null and b/png/triple-gate.png differ
diff --git a/png/triple-lock.png b/png/triple-lock.png
new file mode 100644
index 000000000..f7c09e3a0
Binary files /dev/null and b/png/triple-lock.png differ
diff --git a/png/triple-needle.png b/png/triple-needle.png
new file mode 100644
index 000000000..9f6bfcf05
Binary files /dev/null and b/png/triple-needle.png differ
diff --git a/png/triple-plier.png b/png/triple-plier.png
new file mode 100644
index 000000000..df7373da2
Binary files /dev/null and b/png/triple-plier.png differ
diff --git a/png/triple-scratches.png b/png/triple-scratches.png
new file mode 100644
index 000000000..ebc1eb375
Binary files /dev/null and b/png/triple-scratches.png differ
diff --git a/png/triple-shells.png b/png/triple-shells.png
new file mode 100644
index 000000000..b8f22e093
Binary files /dev/null and b/png/triple-shells.png differ
diff --git a/png/triple-skulls.png b/png/triple-skulls.png
new file mode 100644
index 000000000..919eb8f78
Binary files /dev/null and b/png/triple-skulls.png differ
diff --git a/png/triple-yin.png b/png/triple-yin.png
new file mode 100644
index 000000000..0b2cd1a9b
Binary files /dev/null and b/png/triple-yin.png differ
diff --git a/png/tripwire.png b/png/tripwire.png
new file mode 100644
index 000000000..b53af9a68
Binary files /dev/null and b/png/tripwire.png differ
diff --git a/png/triquetra.png b/png/triquetra.png
new file mode 100644
index 000000000..8761ff0c9
Binary files /dev/null and b/png/triquetra.png differ
diff --git a/png/trireme.png b/png/trireme.png
new file mode 100644
index 000000000..777e88a6a
Binary files /dev/null and b/png/trireme.png differ
diff --git a/png/triton-head.png b/png/triton-head.png
new file mode 100644
index 000000000..062c8c1cb
Binary files /dev/null and b/png/triton-head.png differ
diff --git a/png/troglodyte.png b/png/troglodyte.png
new file mode 100644
index 000000000..e305e4729
Binary files /dev/null and b/png/troglodyte.png differ
diff --git a/png/trojan-horse.png b/png/trojan-horse.png
new file mode 100644
index 000000000..f2018f626
Binary files /dev/null and b/png/trojan-horse.png differ
diff --git a/png/troll.png b/png/troll.png
new file mode 100644
index 000000000..a94743235
Binary files /dev/null and b/png/troll.png differ
diff --git a/png/trombone.png b/png/trombone.png
new file mode 100644
index 000000000..44782430e
Binary files /dev/null and b/png/trombone.png differ
diff --git a/png/tron-arrow.png b/png/tron-arrow.png
new file mode 100644
index 000000000..ebf3af5cb
Binary files /dev/null and b/png/tron-arrow.png differ
diff --git a/png/trophies-shelf.png b/png/trophies-shelf.png
new file mode 100644
index 000000000..cfcbedb70
Binary files /dev/null and b/png/trophies-shelf.png differ
diff --git a/png/trophy-cup.png b/png/trophy-cup.png
new file mode 100644
index 000000000..91c0a8fe5
Binary files /dev/null and b/png/trophy-cup.png differ
diff --git a/png/trophy.png b/png/trophy.png
new file mode 100644
index 000000000..714106166
Binary files /dev/null and b/png/trophy.png differ
diff --git a/png/tropical-fish.png b/png/tropical-fish.png
new file mode 100644
index 000000000..90621f746
Binary files /dev/null and b/png/tropical-fish.png differ
diff --git a/png/trousers-2.png b/png/trousers-2.png
new file mode 100644
index 000000000..674d202e8
Binary files /dev/null and b/png/trousers-2.png differ
diff --git a/png/trousers.png b/png/trousers.png
new file mode 100644
index 000000000..4e30974e6
Binary files /dev/null and b/png/trousers.png differ
diff --git a/png/trowel.png b/png/trowel.png
new file mode 100644
index 000000000..b05e48583
Binary files /dev/null and b/png/trowel.png differ
diff --git a/png/truce.png b/png/truce.png
new file mode 100644
index 000000000..037b8b80b
Binary files /dev/null and b/png/truce.png differ
diff --git a/png/truck.png b/png/truck.png
new file mode 100644
index 000000000..08f038af8
Binary files /dev/null and b/png/truck.png differ
diff --git a/png/trumpet-flag.png b/png/trumpet-flag.png
new file mode 100644
index 000000000..2d488acd0
Binary files /dev/null and b/png/trumpet-flag.png differ
diff --git a/png/trumpet.png b/png/trumpet.png
new file mode 100644
index 000000000..7dc823c1e
Binary files /dev/null and b/png/trumpet.png differ
diff --git a/png/trunk-mushroom.png b/png/trunk-mushroom.png
new file mode 100644
index 000000000..871e30095
Binary files /dev/null and b/png/trunk-mushroom.png differ
diff --git a/png/tuba.png b/png/tuba.png
new file mode 100644
index 000000000..f3656a6f8
Binary files /dev/null and b/png/tuba.png differ
diff --git a/png/tumbleweed.png b/png/tumbleweed.png
new file mode 100644
index 000000000..6fe088f1c
Binary files /dev/null and b/png/tumbleweed.png differ
diff --git a/png/tumor.png b/png/tumor.png
new file mode 100644
index 000000000..f49790573
Binary files /dev/null and b/png/tumor.png differ
diff --git a/png/tumulus.png b/png/tumulus.png
new file mode 100644
index 000000000..4cb8e7513
Binary files /dev/null and b/png/tumulus.png differ
diff --git a/png/tune-pitch.png b/png/tune-pitch.png
new file mode 100644
index 000000000..40e594d17
Binary files /dev/null and b/png/tune-pitch.png differ
diff --git a/png/tunisia.png b/png/tunisia.png
new file mode 100644
index 000000000..74177b100
Binary files /dev/null and b/png/tunisia.png differ
diff --git a/png/turban.png b/png/turban.png
new file mode 100644
index 000000000..74fa65438
Binary files /dev/null and b/png/turban.png differ
diff --git a/png/turbine.png b/png/turbine.png
new file mode 100644
index 000000000..386cf84da
Binary files /dev/null and b/png/turbine.png differ
diff --git a/png/turd.png b/png/turd.png
new file mode 100644
index 000000000..7112caf5b
Binary files /dev/null and b/png/turd.png differ
diff --git a/png/turnstile.png b/png/turnstile.png
new file mode 100644
index 000000000..187b77a0c
Binary files /dev/null and b/png/turnstile.png differ
diff --git a/png/turret.png b/png/turret.png
new file mode 100644
index 000000000..7fe2d6ebb
Binary files /dev/null and b/png/turret.png differ
diff --git a/png/turtle-shell.png b/png/turtle-shell.png
new file mode 100644
index 000000000..fa2d81f57
Binary files /dev/null and b/png/turtle-shell.png differ
diff --git a/png/turtle.png b/png/turtle.png
new file mode 100644
index 000000000..b7bd44fde
Binary files /dev/null and b/png/turtle.png differ
diff --git a/png/tusks-flag.png b/png/tusks-flag.png
new file mode 100644
index 000000000..fee63dd66
Binary files /dev/null and b/png/tusks-flag.png differ
diff --git a/png/tv-remote.png b/png/tv-remote.png
new file mode 100644
index 000000000..8a84e2fbd
Binary files /dev/null and b/png/tv-remote.png differ
diff --git a/png/tv-tower.png b/png/tv-tower.png
new file mode 100644
index 000000000..0d0637375
Binary files /dev/null and b/png/tv-tower.png differ
diff --git a/png/tv.png b/png/tv.png
new file mode 100644
index 000000000..897b2b40f
Binary files /dev/null and b/png/tv.png differ
diff --git a/png/twin-shell.png b/png/twin-shell.png
new file mode 100644
index 000000000..c6babc655
Binary files /dev/null and b/png/twin-shell.png differ
diff --git a/png/twirl-center.png b/png/twirl-center.png
new file mode 100644
index 000000000..95544535d
Binary files /dev/null and b/png/twirl-center.png differ
diff --git a/png/twirly-flower.png b/png/twirly-flower.png
new file mode 100644
index 000000000..2173c533a
Binary files /dev/null and b/png/twirly-flower.png differ
diff --git a/png/twister.png b/png/twister.png
new file mode 100644
index 000000000..5eaaaaf1a
Binary files /dev/null and b/png/twister.png differ
diff --git a/png/two-coins.png b/png/two-coins.png
new file mode 100644
index 000000000..41c14b952
Binary files /dev/null and b/png/two-coins.png differ
diff --git a/png/two-feathers.png b/png/two-feathers.png
new file mode 100644
index 000000000..8a75b2f56
Binary files /dev/null and b/png/two-feathers.png differ
diff --git a/png/two-handed-sword.png b/png/two-handed-sword.png
new file mode 100644
index 000000000..5c58bfec1
Binary files /dev/null and b/png/two-handed-sword.png differ
diff --git a/png/two-shadows.png b/png/two-shadows.png
new file mode 100644
index 000000000..bcf34801e
Binary files /dev/null and b/png/two-shadows.png differ
diff --git a/png/tyre.png b/png/tyre.png
new file mode 100644
index 000000000..6f2a4be83
Binary files /dev/null and b/png/tyre.png differ
diff --git a/png/ubisoft-sun.png b/png/ubisoft-sun.png
new file mode 100644
index 000000000..79b4cb4de
Binary files /dev/null and b/png/ubisoft-sun.png differ
diff --git a/png/udder.png b/png/udder.png
new file mode 100644
index 000000000..77e2b19fc
Binary files /dev/null and b/png/udder.png differ
diff --git a/png/ufo.png b/png/ufo.png
new file mode 100644
index 000000000..0a1c4a0b5
Binary files /dev/null and b/png/ufo.png differ
diff --git a/png/ultrasound.png b/png/ultrasound.png
new file mode 100644
index 000000000..e9e37de6b
Binary files /dev/null and b/png/ultrasound.png differ
diff --git a/png/uluru.png b/png/uluru.png
new file mode 100644
index 000000000..059d81516
Binary files /dev/null and b/png/uluru.png differ
diff --git a/png/umbrella-bayonet.png b/png/umbrella-bayonet.png
new file mode 100644
index 000000000..3ec9b60ae
Binary files /dev/null and b/png/umbrella-bayonet.png differ
diff --git a/png/umbrella.png b/png/umbrella.png
new file mode 100644
index 000000000..6aeaa83d5
Binary files /dev/null and b/png/umbrella.png differ
diff --git a/png/unbalanced.png b/png/unbalanced.png
new file mode 100644
index 000000000..edff51c4b
Binary files /dev/null and b/png/unbalanced.png differ
diff --git a/png/uncertainty.png b/png/uncertainty.png
new file mode 100644
index 000000000..d3cb89772
Binary files /dev/null and b/png/uncertainty.png differ
diff --git a/png/underground-cave.png b/png/underground-cave.png
new file mode 100644
index 000000000..3d30c27fc
Binary files /dev/null and b/png/underground-cave.png differ
diff --git a/png/underhand.png b/png/underhand.png
new file mode 100644
index 000000000..a2c54fb37
Binary files /dev/null and b/png/underhand.png differ
diff --git a/png/underwear-shorts.png b/png/underwear-shorts.png
new file mode 100644
index 000000000..6e312cf37
Binary files /dev/null and b/png/underwear-shorts.png differ
diff --git a/png/underwear.png b/png/underwear.png
new file mode 100644
index 000000000..6a70bfa5d
Binary files /dev/null and b/png/underwear.png differ
diff --git a/png/unfriendly-fire.png b/png/unfriendly-fire.png
new file mode 100644
index 000000000..6f2802ae9
Binary files /dev/null and b/png/unfriendly-fire.png differ
diff --git a/png/unicorn.png b/png/unicorn.png
new file mode 100644
index 000000000..ec1538593
Binary files /dev/null and b/png/unicorn.png differ
diff --git a/png/unicycle.png b/png/unicycle.png
new file mode 100644
index 000000000..95ae95e99
Binary files /dev/null and b/png/unicycle.png differ
diff --git a/png/union-jack.png b/png/union-jack.png
new file mode 100644
index 000000000..55fa95300
Binary files /dev/null and b/png/union-jack.png differ
diff --git a/png/unlit-bomb.png b/png/unlit-bomb.png
new file mode 100644
index 000000000..b5ad0a946
Binary files /dev/null and b/png/unlit-bomb.png differ
diff --git a/png/unlit-candelabra.png b/png/unlit-candelabra.png
new file mode 100644
index 000000000..61d31cdd5
Binary files /dev/null and b/png/unlit-candelabra.png differ
diff --git a/png/unlocking.png b/png/unlocking.png
new file mode 100644
index 000000000..47d428291
Binary files /dev/null and b/png/unlocking.png differ
diff --git a/png/unplugged.png b/png/unplugged.png
new file mode 100644
index 000000000..5889a0575
Binary files /dev/null and b/png/unplugged.png differ
diff --git a/png/unstable-orb.png b/png/unstable-orb.png
new file mode 100644
index 000000000..f155806cf
Binary files /dev/null and b/png/unstable-orb.png differ
diff --git a/png/unstable-projectile.png b/png/unstable-projectile.png
new file mode 100644
index 000000000..78aa70444
Binary files /dev/null and b/png/unstable-projectile.png differ
diff --git a/png/up-card.png b/png/up-card.png
new file mode 100644
index 000000000..b8798b307
Binary files /dev/null and b/png/up-card.png differ
diff --git a/png/upgrade.png b/png/upgrade.png
new file mode 100644
index 000000000..750707911
Binary files /dev/null and b/png/upgrade.png differ
diff --git a/png/uprising.png b/png/uprising.png
new file mode 100644
index 000000000..ab93b3780
Binary files /dev/null and b/png/uprising.png differ
diff --git a/png/ursa-major.png b/png/ursa-major.png
new file mode 100644
index 000000000..c320e1c16
Binary files /dev/null and b/png/ursa-major.png differ
diff --git a/png/uruguay.png b/png/uruguay.png
new file mode 100644
index 000000000..79f431c51
Binary files /dev/null and b/png/uruguay.png differ
diff --git a/png/usa-flag.png b/png/usa-flag.png
new file mode 100644
index 000000000..eb7485121
Binary files /dev/null and b/png/usa-flag.png differ
diff --git a/png/usable.png b/png/usable.png
new file mode 100644
index 000000000..4ed6f4f01
Binary files /dev/null and b/png/usable.png differ
diff --git a/png/usb-key.png b/png/usb-key.png
new file mode 100644
index 000000000..a58a313c8
Binary files /dev/null and b/png/usb-key.png differ
diff --git a/png/ushanka.png b/png/ushanka.png
new file mode 100644
index 000000000..b6ba03178
Binary files /dev/null and b/png/ushanka.png differ
diff --git a/png/uzi.png b/png/uzi.png
new file mode 100644
index 000000000..5d2e0c0f8
Binary files /dev/null and b/png/uzi.png differ
diff --git a/png/vacuum-cleaner.png b/png/vacuum-cleaner.png
new file mode 100644
index 000000000..3e25008bb
Binary files /dev/null and b/png/vacuum-cleaner.png differ
diff --git a/png/valley.png b/png/valley.png
new file mode 100644
index 000000000..c7ff6956c
Binary files /dev/null and b/png/valley.png differ
diff --git a/png/valve.png b/png/valve.png
new file mode 100644
index 000000000..9372628a5
Binary files /dev/null and b/png/valve.png differ
diff --git a/png/vampire-cape.png b/png/vampire-cape.png
new file mode 100644
index 000000000..746ff91af
Binary files /dev/null and b/png/vampire-cape.png differ
diff --git a/png/vampire-dracula.png b/png/vampire-dracula.png
new file mode 100644
index 000000000..9664b0814
Binary files /dev/null and b/png/vampire-dracula.png differ
diff --git a/png/van-damme-split.png b/png/van-damme-split.png
new file mode 100644
index 000000000..3984cd772
Binary files /dev/null and b/png/van-damme-split.png differ
diff --git a/png/vanilla-flower.png b/png/vanilla-flower.png
new file mode 100644
index 000000000..4dda984b5
Binary files /dev/null and b/png/vanilla-flower.png differ
diff --git a/png/velocipede.png b/png/velocipede.png
new file mode 100644
index 000000000..7701b6a95
Binary files /dev/null and b/png/velocipede.png differ
diff --git a/png/velociraptor-tracks.png b/png/velociraptor-tracks.png
new file mode 100644
index 000000000..b774a6d91
Binary files /dev/null and b/png/velociraptor-tracks.png differ
diff --git a/png/velociraptor.png b/png/velociraptor.png
new file mode 100644
index 000000000..93fb9f793
Binary files /dev/null and b/png/velociraptor.png differ
diff --git a/png/vending-machine.png b/png/vending-machine.png
new file mode 100644
index 000000000..d671c0bde
Binary files /dev/null and b/png/vending-machine.png differ
diff --git a/png/venezuela.png b/png/venezuela.png
new file mode 100644
index 000000000..6d260e273
Binary files /dev/null and b/png/venezuela.png differ
diff --git a/png/venus-flytrap.png b/png/venus-flytrap.png
new file mode 100644
index 000000000..ec045de8c
Binary files /dev/null and b/png/venus-flytrap.png differ
diff --git a/png/venus-of-willendorf.png b/png/venus-of-willendorf.png
new file mode 100644
index 000000000..02ee86fb5
Binary files /dev/null and b/png/venus-of-willendorf.png differ
diff --git a/png/vertical-banner.png b/png/vertical-banner.png
new file mode 100644
index 000000000..dc17f6a93
Binary files /dev/null and b/png/vertical-banner.png differ
diff --git a/png/vertical-flip.png b/png/vertical-flip.png
new file mode 100644
index 000000000..3dff0c330
Binary files /dev/null and b/png/vertical-flip.png differ
diff --git a/png/vhs.png b/png/vhs.png
new file mode 100644
index 000000000..dbf1abe53
Binary files /dev/null and b/png/vhs.png differ
diff --git a/png/vial.png b/png/vial.png
new file mode 100644
index 000000000..7c2154dad
Binary files /dev/null and b/png/vial.png differ
diff --git a/png/vibrating-ball.png b/png/vibrating-ball.png
new file mode 100644
index 000000000..63e8c0d5e
Binary files /dev/null and b/png/vibrating-ball.png differ
diff --git a/png/vibrating-shield.png b/png/vibrating-shield.png
new file mode 100644
index 000000000..10a08145c
Binary files /dev/null and b/png/vibrating-shield.png differ
diff --git a/png/vibrating-smartphone.png b/png/vibrating-smartphone.png
new file mode 100644
index 000000000..81d6018a9
Binary files /dev/null and b/png/vibrating-smartphone.png differ
diff --git a/png/video-camera.png b/png/video-camera.png
new file mode 100644
index 000000000..45e33a5f6
Binary files /dev/null and b/png/video-camera.png differ
diff --git a/png/video-conference.png b/png/video-conference.png
new file mode 100644
index 000000000..1e5e263c2
Binary files /dev/null and b/png/video-conference.png differ
diff --git a/png/viking-church.png b/png/viking-church.png
new file mode 100644
index 000000000..041552978
Binary files /dev/null and b/png/viking-church.png differ
diff --git a/png/viking-head.png b/png/viking-head.png
new file mode 100644
index 000000000..9e69b5ce9
Binary files /dev/null and b/png/viking-head.png differ
diff --git a/png/viking-helmet.png b/png/viking-helmet.png
new file mode 100644
index 000000000..ce3deaf9b
Binary files /dev/null and b/png/viking-helmet.png differ
diff --git a/png/viking-longhouse.png b/png/viking-longhouse.png
new file mode 100644
index 000000000..5bc1075e3
Binary files /dev/null and b/png/viking-longhouse.png differ
diff --git a/png/viking-shield.png b/png/viking-shield.png
new file mode 100644
index 000000000..bfdd366f7
Binary files /dev/null and b/png/viking-shield.png differ
diff --git a/png/vile-fluid.png b/png/vile-fluid.png
new file mode 100644
index 000000000..01f5f82c9
Binary files /dev/null and b/png/vile-fluid.png differ
diff --git a/png/village.png b/png/village.png
new file mode 100644
index 000000000..5247ffa65
Binary files /dev/null and b/png/village.png differ
diff --git a/png/vine-flower.png b/png/vine-flower.png
new file mode 100644
index 000000000..a63c3f0ff
Binary files /dev/null and b/png/vine-flower.png differ
diff --git a/png/vine-leaf.png b/png/vine-leaf.png
new file mode 100644
index 000000000..09d478e57
Binary files /dev/null and b/png/vine-leaf.png differ
diff --git a/png/vine-whip.png b/png/vine-whip.png
new file mode 100644
index 000000000..22d2b4e1a
Binary files /dev/null and b/png/vine-whip.png differ
diff --git a/png/vines.png b/png/vines.png
new file mode 100644
index 000000000..52cf45465
Binary files /dev/null and b/png/vines.png differ
diff --git a/png/vintage-robot.png b/png/vintage-robot.png
new file mode 100644
index 000000000..58d5b3293
Binary files /dev/null and b/png/vintage-robot.png differ
diff --git a/png/viola.png b/png/viola.png
new file mode 100644
index 000000000..884ac42c8
Binary files /dev/null and b/png/viola.png differ
diff --git a/png/violin.png b/png/violin.png
new file mode 100644
index 000000000..02cb11b34
Binary files /dev/null and b/png/violin.png differ
diff --git a/png/virgo.png b/png/virgo.png
new file mode 100644
index 000000000..3c46803da
Binary files /dev/null and b/png/virgo.png differ
diff --git a/png/virtual-marker.png b/png/virtual-marker.png
new file mode 100644
index 000000000..cea640c29
Binary files /dev/null and b/png/virtual-marker.png differ
diff --git a/png/virus.png b/png/virus.png
new file mode 100644
index 000000000..6aecfc0a5
Binary files /dev/null and b/png/virus.png differ
diff --git a/png/visored-helm.png b/png/visored-helm.png
new file mode 100644
index 000000000..7cd870748
Binary files /dev/null and b/png/visored-helm.png differ
diff --git a/png/vitruvian-man.png b/png/vitruvian-man.png
new file mode 100644
index 000000000..a49302896
Binary files /dev/null and b/png/vitruvian-man.png differ
diff --git a/png/volcano.png b/png/volcano.png
new file mode 100644
index 000000000..ba9b2c9c6
Binary files /dev/null and b/png/volcano.png differ
diff --git a/png/volleyball-ball.png b/png/volleyball-ball.png
new file mode 100644
index 000000000..81022f6a0
Binary files /dev/null and b/png/volleyball-ball.png differ
diff --git a/png/vomiting.png b/png/vomiting.png
new file mode 100644
index 000000000..91822b17e
Binary files /dev/null and b/png/vomiting.png differ
diff --git a/png/voodoo-doll.png b/png/voodoo-doll.png
new file mode 100644
index 000000000..d8296f123
Binary files /dev/null and b/png/voodoo-doll.png differ
diff --git a/png/vortex.png b/png/vortex.png
new file mode 100644
index 000000000..e3d1dbeb4
Binary files /dev/null and b/png/vortex.png differ
diff --git a/png/vote.png b/png/vote.png
new file mode 100644
index 000000000..19e3d49a7
Binary files /dev/null and b/png/vote.png differ
diff --git a/png/vr-headset.png b/png/vr-headset.png
new file mode 100644
index 000000000..f8d0410a6
Binary files /dev/null and b/png/vr-headset.png differ
diff --git a/png/vulture.png b/png/vulture.png
new file mode 100644
index 000000000..6a7800089
Binary files /dev/null and b/png/vulture.png differ
diff --git a/png/vuvuzelas.png b/png/vuvuzelas.png
new file mode 100644
index 000000000..a297f6f86
Binary files /dev/null and b/png/vuvuzelas.png differ
diff --git a/png/walk.png b/png/walk.png
new file mode 100644
index 000000000..e02ea304e
Binary files /dev/null and b/png/walk.png differ
diff --git a/png/walkie-talkie.png b/png/walkie-talkie.png
new file mode 100644
index 000000000..60b7373cb
Binary files /dev/null and b/png/walkie-talkie.png differ
diff --git a/png/walking-boot.png b/png/walking-boot.png
new file mode 100644
index 000000000..b4f1083ef
Binary files /dev/null and b/png/walking-boot.png differ
diff --git a/png/walking-scout.png b/png/walking-scout.png
new file mode 100644
index 000000000..03877ecc7
Binary files /dev/null and b/png/walking-scout.png differ
diff --git a/png/walking-turret.png b/png/walking-turret.png
new file mode 100644
index 000000000..86d308b27
Binary files /dev/null and b/png/walking-turret.png differ
diff --git a/png/wall-light.png b/png/wall-light.png
new file mode 100644
index 000000000..ef1ed4a23
Binary files /dev/null and b/png/wall-light.png differ
diff --git a/png/wallet.png b/png/wallet.png
new file mode 100644
index 000000000..221228e64
Binary files /dev/null and b/png/wallet.png differ
diff --git a/png/walrus-head.png b/png/walrus-head.png
new file mode 100644
index 000000000..2c54a2d59
Binary files /dev/null and b/png/walrus-head.png differ
diff --git a/png/walther-ppk.png b/png/walther-ppk.png
new file mode 100644
index 000000000..6f1f512ed
Binary files /dev/null and b/png/walther-ppk.png differ
diff --git a/png/wanted-reward.png b/png/wanted-reward.png
new file mode 100644
index 000000000..a06587488
Binary files /dev/null and b/png/wanted-reward.png differ
diff --git a/png/war-axe.png b/png/war-axe.png
new file mode 100644
index 000000000..6cad8498b
Binary files /dev/null and b/png/war-axe.png differ
diff --git a/png/war-bonnet.png b/png/war-bonnet.png
new file mode 100644
index 000000000..3663e5221
Binary files /dev/null and b/png/war-bonnet.png differ
diff --git a/png/war-pick.png b/png/war-pick.png
new file mode 100644
index 000000000..f4884875f
Binary files /dev/null and b/png/war-pick.png differ
diff --git a/png/warhammer.png b/png/warhammer.png
new file mode 100644
index 000000000..a0270f145
Binary files /dev/null and b/png/warhammer.png differ
diff --git a/png/warlock-eye.png b/png/warlock-eye.png
new file mode 100644
index 000000000..d283b43e2
Binary files /dev/null and b/png/warlock-eye.png differ
diff --git a/png/warlock-hood.png b/png/warlock-hood.png
new file mode 100644
index 000000000..7813277dc
Binary files /dev/null and b/png/warlock-hood.png differ
diff --git a/png/warlord-helmet.png b/png/warlord-helmet.png
new file mode 100644
index 000000000..228348fb0
Binary files /dev/null and b/png/warlord-helmet.png differ
diff --git a/png/warp-pipe.png b/png/warp-pipe.png
new file mode 100644
index 000000000..97cf3cbf1
Binary files /dev/null and b/png/warp-pipe.png differ
diff --git a/png/washing-machine.png b/png/washing-machine.png
new file mode 100644
index 000000000..eb64b0a6e
Binary files /dev/null and b/png/washing-machine.png differ
diff --git a/png/wasp-sting.png b/png/wasp-sting.png
new file mode 100644
index 000000000..fe0df6c41
Binary files /dev/null and b/png/wasp-sting.png differ
diff --git a/png/watch.png b/png/watch.png
new file mode 100644
index 000000000..e633d81d9
Binary files /dev/null and b/png/watch.png differ
diff --git a/png/watchtower.png b/png/watchtower.png
new file mode 100644
index 000000000..59028b062
Binary files /dev/null and b/png/watchtower.png differ
diff --git a/png/water-bolt.png b/png/water-bolt.png
new file mode 100644
index 000000000..cf1d6955e
Binary files /dev/null and b/png/water-bolt.png differ
diff --git a/png/water-bottle.png b/png/water-bottle.png
new file mode 100644
index 000000000..5c47c08cc
Binary files /dev/null and b/png/water-bottle.png differ
diff --git a/png/water-diviner-stick.png b/png/water-diviner-stick.png
new file mode 100644
index 000000000..3211b74bb
Binary files /dev/null and b/png/water-diviner-stick.png differ
diff --git a/png/water-drop.png b/png/water-drop.png
new file mode 100644
index 000000000..8d54debf5
Binary files /dev/null and b/png/water-drop.png differ
diff --git a/png/water-flask.png b/png/water-flask.png
new file mode 100644
index 000000000..b04c76eba
Binary files /dev/null and b/png/water-flask.png differ
diff --git a/png/water-fountain.png b/png/water-fountain.png
new file mode 100644
index 000000000..5d7ee1436
Binary files /dev/null and b/png/water-fountain.png differ
diff --git a/png/water-gallon.png b/png/water-gallon.png
new file mode 100644
index 000000000..2674a969e
Binary files /dev/null and b/png/water-gallon.png differ
diff --git a/png/water-gun.png b/png/water-gun.png
new file mode 100644
index 000000000..836ecbfbc
Binary files /dev/null and b/png/water-gun.png differ
diff --git a/png/water-mill.png b/png/water-mill.png
new file mode 100644
index 000000000..c741cb01e
Binary files /dev/null and b/png/water-mill.png differ
diff --git a/png/water-polo.png b/png/water-polo.png
new file mode 100644
index 000000000..8baf8e099
Binary files /dev/null and b/png/water-polo.png differ
diff --git a/png/water-recycling.png b/png/water-recycling.png
new file mode 100644
index 000000000..9bb369b7a
Binary files /dev/null and b/png/water-recycling.png differ
diff --git a/png/water-splash.png b/png/water-splash.png
new file mode 100644
index 000000000..79b048db0
Binary files /dev/null and b/png/water-splash.png differ
diff --git a/png/water-tank.png b/png/water-tank.png
new file mode 100644
index 000000000..f02304310
Binary files /dev/null and b/png/water-tank.png differ
diff --git a/png/water-tower.png b/png/water-tower.png
new file mode 100644
index 000000000..c97b395b0
Binary files /dev/null and b/png/water-tower.png differ
diff --git a/png/waterfall.png b/png/waterfall.png
new file mode 100644
index 000000000..96e597de6
Binary files /dev/null and b/png/waterfall.png differ
diff --git a/png/watering-can.png b/png/watering-can.png
new file mode 100644
index 000000000..242131861
Binary files /dev/null and b/png/watering-can.png differ
diff --git a/png/watermelon.png b/png/watermelon.png
new file mode 100644
index 000000000..c45d05dd3
Binary files /dev/null and b/png/watermelon.png differ
diff --git a/png/wave-crest.png b/png/wave-crest.png
new file mode 100644
index 000000000..5afe540de
Binary files /dev/null and b/png/wave-crest.png differ
diff --git a/png/wave-strike.png b/png/wave-strike.png
new file mode 100644
index 000000000..7854b5b6f
Binary files /dev/null and b/png/wave-strike.png differ
diff --git a/png/wave-surfer.png b/png/wave-surfer.png
new file mode 100644
index 000000000..9ac363abd
Binary files /dev/null and b/png/wave-surfer.png differ
diff --git a/png/waves.png b/png/waves.png
new file mode 100644
index 000000000..053db0a95
Binary files /dev/null and b/png/waves.png differ
diff --git a/png/wavy-chains.png b/png/wavy-chains.png
new file mode 100644
index 000000000..ebf70409c
Binary files /dev/null and b/png/wavy-chains.png differ
diff --git a/png/wavy-itinerary.png b/png/wavy-itinerary.png
new file mode 100644
index 000000000..ad3f00931
Binary files /dev/null and b/png/wavy-itinerary.png differ
diff --git a/png/wax-seal.png b/png/wax-seal.png
new file mode 100644
index 000000000..ae3073658
Binary files /dev/null and b/png/wax-seal.png differ
diff --git a/png/wax-tablet.png b/png/wax-tablet.png
new file mode 100644
index 000000000..49071f9d4
Binary files /dev/null and b/png/wax-tablet.png differ
diff --git a/png/web-spit.png b/png/web-spit.png
new file mode 100644
index 000000000..6f6ed85e6
Binary files /dev/null and b/png/web-spit.png differ
diff --git a/png/weight-crush.png b/png/weight-crush.png
new file mode 100644
index 000000000..17b8241fa
Binary files /dev/null and b/png/weight-crush.png differ
diff --git a/png/weight-lifting-down.png b/png/weight-lifting-down.png
new file mode 100644
index 000000000..371148a88
Binary files /dev/null and b/png/weight-lifting-down.png differ
diff --git a/png/weight-lifting-up.png b/png/weight-lifting-up.png
new file mode 100644
index 000000000..617f32122
Binary files /dev/null and b/png/weight-lifting-up.png differ
diff --git a/png/weight-scale.png b/png/weight-scale.png
new file mode 100644
index 000000000..700572f89
Binary files /dev/null and b/png/weight-scale.png differ
diff --git a/png/weight.png b/png/weight.png
new file mode 100644
index 000000000..a36383800
Binary files /dev/null and b/png/weight.png differ
diff --git a/png/well.png b/png/well.png
new file mode 100644
index 000000000..37caa6bd9
Binary files /dev/null and b/png/well.png differ
diff --git a/png/werewolf.png b/png/werewolf.png
new file mode 100644
index 000000000..16eea6552
Binary files /dev/null and b/png/werewolf.png differ
diff --git a/png/western-hat.png b/png/western-hat.png
new file mode 100644
index 000000000..0d72251c7
Binary files /dev/null and b/png/western-hat.png differ
diff --git a/png/whale-tail.png b/png/whale-tail.png
new file mode 100644
index 000000000..a4c549700
Binary files /dev/null and b/png/whale-tail.png differ
diff --git a/png/wheat.png b/png/wheat.png
new file mode 100644
index 000000000..954ed7da0
Binary files /dev/null and b/png/wheat.png differ
diff --git a/png/wheelbarrow.png b/png/wheelbarrow.png
new file mode 100644
index 000000000..0b05a63ae
Binary files /dev/null and b/png/wheelbarrow.png differ
diff --git a/png/whip.png b/png/whip.png
new file mode 100644
index 000000000..47ceeeb6e
Binary files /dev/null and b/png/whip.png differ
diff --git a/png/whiplash.png b/png/whiplash.png
new file mode 100644
index 000000000..5280a4847
Binary files /dev/null and b/png/whiplash.png differ
diff --git a/png/whirlpool-shuriken.png b/png/whirlpool-shuriken.png
new file mode 100644
index 000000000..df0a4fad5
Binary files /dev/null and b/png/whirlpool-shuriken.png differ
diff --git a/png/whirlwind.png b/png/whirlwind.png
new file mode 100644
index 000000000..07f636a8a
Binary files /dev/null and b/png/whirlwind.png differ
diff --git a/png/whisk.png b/png/whisk.png
new file mode 100644
index 000000000..129513733
Binary files /dev/null and b/png/whisk.png differ
diff --git a/png/whistle.png b/png/whistle.png
new file mode 100644
index 000000000..242944f30
Binary files /dev/null and b/png/whistle.png differ
diff --git a/png/white-book.png b/png/white-book.png
new file mode 100644
index 000000000..0c27ff563
Binary files /dev/null and b/png/white-book.png differ
diff --git a/png/white-cat.png b/png/white-cat.png
new file mode 100644
index 000000000..0f68e885b
Binary files /dev/null and b/png/white-cat.png differ
diff --git a/png/white-tower.png b/png/white-tower.png
new file mode 100644
index 000000000..17921d32f
Binary files /dev/null and b/png/white-tower.png differ
diff --git a/png/wide-arrow-dunk.png b/png/wide-arrow-dunk.png
new file mode 100644
index 000000000..d8526c6f8
Binary files /dev/null and b/png/wide-arrow-dunk.png differ
diff --git a/png/wifi-router.png b/png/wifi-router.png
new file mode 100644
index 000000000..e07334335
Binary files /dev/null and b/png/wifi-router.png differ
diff --git a/png/wildfires.png b/png/wildfires.png
new file mode 100644
index 000000000..9931b218d
Binary files /dev/null and b/png/wildfires.png differ
diff --git a/png/william-tell-skull.png b/png/william-tell-skull.png
new file mode 100644
index 000000000..66baa1c85
Binary files /dev/null and b/png/william-tell-skull.png differ
diff --git a/png/william-tell.png b/png/william-tell.png
new file mode 100644
index 000000000..fc0645f7f
Binary files /dev/null and b/png/william-tell.png differ
diff --git a/png/willow-tree.png b/png/willow-tree.png
new file mode 100644
index 000000000..981055a63
Binary files /dev/null and b/png/willow-tree.png differ
diff --git a/png/winchester-rifle.png b/png/winchester-rifle.png
new file mode 100644
index 000000000..5eb95c0fa
Binary files /dev/null and b/png/winchester-rifle.png differ
diff --git a/png/wind-hole.png b/png/wind-hole.png
new file mode 100644
index 000000000..2845d9e2c
Binary files /dev/null and b/png/wind-hole.png differ
diff --git a/png/wind-slap.png b/png/wind-slap.png
new file mode 100644
index 000000000..a9cbb0c01
Binary files /dev/null and b/png/wind-slap.png differ
diff --git a/png/wind-turbine.png b/png/wind-turbine.png
new file mode 100644
index 000000000..ab8a60583
Binary files /dev/null and b/png/wind-turbine.png differ
diff --git a/png/windchimes.png b/png/windchimes.png
new file mode 100644
index 000000000..0e8d80d8f
Binary files /dev/null and b/png/windchimes.png differ
diff --git a/png/windmill.png b/png/windmill.png
new file mode 100644
index 000000000..8e537b708
Binary files /dev/null and b/png/windmill.png differ
diff --git a/png/window-bars.png b/png/window-bars.png
new file mode 100644
index 000000000..69f94895d
Binary files /dev/null and b/png/window-bars.png differ
diff --git a/png/window.png b/png/window.png
new file mode 100644
index 000000000..a894fc5c5
Binary files /dev/null and b/png/window.png differ
diff --git a/png/windpump.png b/png/windpump.png
new file mode 100644
index 000000000..ef6b9374d
Binary files /dev/null and b/png/windpump.png differ
diff --git a/png/windsock.png b/png/windsock.png
new file mode 100644
index 000000000..bf0c7b0fb
Binary files /dev/null and b/png/windsock.png differ
diff --git a/png/windy-stripes.png b/png/windy-stripes.png
new file mode 100644
index 000000000..12310efd8
Binary files /dev/null and b/png/windy-stripes.png differ
diff --git a/png/wine-bottle.png b/png/wine-bottle.png
new file mode 100644
index 000000000..ca99f0e91
Binary files /dev/null and b/png/wine-bottle.png differ
diff --git a/png/wine-glass.png b/png/wine-glass.png
new file mode 100644
index 000000000..dcdce7653
Binary files /dev/null and b/png/wine-glass.png differ
diff --git a/png/wing-cloak.png b/png/wing-cloak.png
new file mode 100644
index 000000000..64d3d64c4
Binary files /dev/null and b/png/wing-cloak.png differ
diff --git a/png/winged-arrow.png b/png/winged-arrow.png
new file mode 100644
index 000000000..3b427229d
Binary files /dev/null and b/png/winged-arrow.png differ
diff --git a/png/winged-emblem.png b/png/winged-emblem.png
new file mode 100644
index 000000000..1d11f5f5f
Binary files /dev/null and b/png/winged-emblem.png differ
diff --git a/png/winged-leg.png b/png/winged-leg.png
new file mode 100644
index 000000000..6040874dc
Binary files /dev/null and b/png/winged-leg.png differ
diff --git a/png/winged-scepter.png b/png/winged-scepter.png
new file mode 100644
index 000000000..aa6e519dc
Binary files /dev/null and b/png/winged-scepter.png differ
diff --git a/png/winged-shield.png b/png/winged-shield.png
new file mode 100644
index 000000000..760dae460
Binary files /dev/null and b/png/winged-shield.png differ
diff --git a/png/winged-sword.png b/png/winged-sword.png
new file mode 100644
index 000000000..9c1d31c73
Binary files /dev/null and b/png/winged-sword.png differ
diff --git a/png/wingfoot.png b/png/wingfoot.png
new file mode 100644
index 000000000..0b8e13266
Binary files /dev/null and b/png/wingfoot.png differ
diff --git a/png/winter-gloves.png b/png/winter-gloves.png
new file mode 100644
index 000000000..d88263ff3
Binary files /dev/null and b/png/winter-gloves.png differ
diff --git a/png/winter-hat.png b/png/winter-hat.png
new file mode 100644
index 000000000..4e0f958e9
Binary files /dev/null and b/png/winter-hat.png differ
diff --git a/png/wire-coil.png b/png/wire-coil.png
new file mode 100644
index 000000000..0d5223227
Binary files /dev/null and b/png/wire-coil.png differ
diff --git a/png/wireframe-globe.png b/png/wireframe-globe.png
new file mode 100644
index 000000000..b1846dbd7
Binary files /dev/null and b/png/wireframe-globe.png differ
diff --git a/png/wisdom.png b/png/wisdom.png
new file mode 100644
index 000000000..d86205960
Binary files /dev/null and b/png/wisdom.png differ
diff --git a/png/witch-face.png b/png/witch-face.png
new file mode 100644
index 000000000..a65f061f6
Binary files /dev/null and b/png/witch-face.png differ
diff --git a/png/witch-flight.png b/png/witch-flight.png
new file mode 100644
index 000000000..af090e984
Binary files /dev/null and b/png/witch-flight.png differ
diff --git a/png/wizard-face.png b/png/wizard-face.png
new file mode 100644
index 000000000..fc81067ca
Binary files /dev/null and b/png/wizard-face.png differ
diff --git a/png/wizard-staff.png b/png/wizard-staff.png
new file mode 100644
index 000000000..2b5178841
Binary files /dev/null and b/png/wizard-staff.png differ
diff --git a/png/wok.png b/png/wok.png
new file mode 100644
index 000000000..e8d282ac4
Binary files /dev/null and b/png/wok.png differ
diff --git a/png/wolf-head.png b/png/wolf-head.png
new file mode 100644
index 000000000..508a7ae82
Binary files /dev/null and b/png/wolf-head.png differ
diff --git a/png/wolf-howl.png b/png/wolf-howl.png
new file mode 100644
index 000000000..a7f5852d6
Binary files /dev/null and b/png/wolf-howl.png differ
diff --git a/png/wolf-trap.png b/png/wolf-trap.png
new file mode 100644
index 000000000..63bb576c1
Binary files /dev/null and b/png/wolf-trap.png differ
diff --git a/png/wolverine-claws-2.png b/png/wolverine-claws-2.png
new file mode 100644
index 000000000..b9c8883f0
Binary files /dev/null and b/png/wolverine-claws-2.png differ
diff --git a/png/wolverine-claws.png b/png/wolverine-claws.png
new file mode 100644
index 000000000..0015710a6
Binary files /dev/null and b/png/wolverine-claws.png differ
diff --git a/png/woman-elf-face.png b/png/woman-elf-face.png
new file mode 100644
index 000000000..063316563
Binary files /dev/null and b/png/woman-elf-face.png differ
diff --git a/png/wood-axe.png b/png/wood-axe.png
new file mode 100644
index 000000000..a7291cf41
Binary files /dev/null and b/png/wood-axe.png differ
diff --git a/png/wood-beam.png b/png/wood-beam.png
new file mode 100644
index 000000000..13421e856
Binary files /dev/null and b/png/wood-beam.png differ
diff --git a/png/wood-cabin.png b/png/wood-cabin.png
new file mode 100644
index 000000000..573ce77e7
Binary files /dev/null and b/png/wood-cabin.png differ
diff --git a/png/wood-canoe.png b/png/wood-canoe.png
new file mode 100644
index 000000000..5ec2e8159
Binary files /dev/null and b/png/wood-canoe.png differ
diff --git a/png/wood-club.png b/png/wood-club.png
new file mode 100644
index 000000000..abb43ab0a
Binary files /dev/null and b/png/wood-club.png differ
diff --git a/png/wood-frame.png b/png/wood-frame.png
new file mode 100644
index 000000000..ad6761082
Binary files /dev/null and b/png/wood-frame.png differ
diff --git a/png/wood-pile.png b/png/wood-pile.png
new file mode 100644
index 000000000..25f78e4fa
Binary files /dev/null and b/png/wood-pile.png differ
diff --git a/png/wood-stick.png b/png/wood-stick.png
new file mode 100644
index 000000000..77fe8a844
Binary files /dev/null and b/png/wood-stick.png differ
diff --git a/png/wooden-chair.png b/png/wooden-chair.png
new file mode 100644
index 000000000..4775a719a
Binary files /dev/null and b/png/wooden-chair.png differ
diff --git a/png/wooden-clogs.png b/png/wooden-clogs.png
new file mode 100644
index 000000000..834ab641d
Binary files /dev/null and b/png/wooden-clogs.png differ
diff --git a/png/wooden-crate.png b/png/wooden-crate.png
new file mode 100644
index 000000000..7a3f101a7
Binary files /dev/null and b/png/wooden-crate.png differ
diff --git a/png/wooden-door.png b/png/wooden-door.png
new file mode 100644
index 000000000..b4d7e7c0a
Binary files /dev/null and b/png/wooden-door.png differ
diff --git a/png/wooden-fence.png b/png/wooden-fence.png
new file mode 100644
index 000000000..6205a2e5e
Binary files /dev/null and b/png/wooden-fence.png differ
diff --git a/png/wooden-helmet.png b/png/wooden-helmet.png
new file mode 100644
index 000000000..b83c61f14
Binary files /dev/null and b/png/wooden-helmet.png differ
diff --git a/png/wooden-pegleg.png b/png/wooden-pegleg.png
new file mode 100644
index 000000000..8f2bd4e6e
Binary files /dev/null and b/png/wooden-pegleg.png differ
diff --git a/png/wooden-pier.png b/png/wooden-pier.png
new file mode 100644
index 000000000..3d2b9f32c
Binary files /dev/null and b/png/wooden-pier.png differ
diff --git a/png/wooden-sign.png b/png/wooden-sign.png
new file mode 100644
index 000000000..df917f174
Binary files /dev/null and b/png/wooden-sign.png differ
diff --git a/png/wool.png b/png/wool.png
new file mode 100644
index 000000000..56d99e10d
Binary files /dev/null and b/png/wool.png differ
diff --git a/png/world.png b/png/world.png
new file mode 100644
index 000000000..f01d412e6
Binary files /dev/null and b/png/world.png differ
diff --git a/png/worm-mouth.png b/png/worm-mouth.png
new file mode 100644
index 000000000..0d3eee9d9
Binary files /dev/null and b/png/worm-mouth.png differ
diff --git a/png/worms.png b/png/worms.png
new file mode 100644
index 000000000..1c6fc2046
Binary files /dev/null and b/png/worms.png differ
diff --git a/png/worried-eyes.png b/png/worried-eyes.png
new file mode 100644
index 000000000..efdbe1cc1
Binary files /dev/null and b/png/worried-eyes.png differ
diff --git a/png/wrapped-heart.png b/png/wrapped-heart.png
new file mode 100644
index 000000000..8dc33595a
Binary files /dev/null and b/png/wrapped-heart.png differ
diff --git a/png/wrapped-sweet.png b/png/wrapped-sweet.png
new file mode 100644
index 000000000..3ff713efc
Binary files /dev/null and b/png/wrapped-sweet.png differ
diff --git a/png/wrapping-star.png b/png/wrapping-star.png
new file mode 100644
index 000000000..1119aee5b
Binary files /dev/null and b/png/wrapping-star.png differ
diff --git a/png/wrecking-ball.png b/png/wrecking-ball.png
new file mode 100644
index 000000000..9d16a28a0
Binary files /dev/null and b/png/wrecking-ball.png differ
diff --git a/png/wrench.png b/png/wrench.png
new file mode 100644
index 000000000..89635130e
Binary files /dev/null and b/png/wrench.png differ
diff --git a/png/wyvern.png b/png/wyvern.png
new file mode 100644
index 000000000..1af566cad
Binary files /dev/null and b/png/wyvern.png differ
diff --git a/png/xylophone.png b/png/xylophone.png
new file mode 100644
index 000000000..b6bf6d659
Binary files /dev/null and b/png/xylophone.png differ
diff --git a/png/yarn.png b/png/yarn.png
new file mode 100644
index 000000000..4e688781b
Binary files /dev/null and b/png/yarn.png differ
diff --git a/png/yin-yang.png b/png/yin-yang.png
new file mode 100644
index 000000000..b60133489
Binary files /dev/null and b/png/yin-yang.png differ
diff --git a/png/yunluo.png b/png/yunluo.png
new file mode 100644
index 000000000..5a0c0fcde
Binary files /dev/null and b/png/yunluo.png differ
diff --git a/png/z-brick.png b/png/z-brick.png
new file mode 100644
index 000000000..994ce388d
Binary files /dev/null and b/png/z-brick.png differ
diff --git a/png/zat-gun.png b/png/zat-gun.png
new file mode 100644
index 000000000..178513725
Binary files /dev/null and b/png/zat-gun.png differ
diff --git a/png/zebra-shield.png b/png/zebra-shield.png
new file mode 100644
index 000000000..d4a61b039
Binary files /dev/null and b/png/zebra-shield.png differ
diff --git a/png/zeppelin.png b/png/zeppelin.png
new file mode 100644
index 000000000..611b23b03
Binary files /dev/null and b/png/zeppelin.png differ
diff --git a/png/zeus-sword.png b/png/zeus-sword.png
new file mode 100644
index 000000000..1b1058fda
Binary files /dev/null and b/png/zeus-sword.png differ
diff --git a/png/zig-arrow.png b/png/zig-arrow.png
new file mode 100644
index 000000000..d85ca6803
Binary files /dev/null and b/png/zig-arrow.png differ
diff --git a/png/zigzag-cage.png b/png/zigzag-cage.png
new file mode 100644
index 000000000..e7952fedb
Binary files /dev/null and b/png/zigzag-cage.png differ
diff --git a/png/zigzag-hieroglyph.png b/png/zigzag-hieroglyph.png
new file mode 100644
index 000000000..50d08a9f9
Binary files /dev/null and b/png/zigzag-hieroglyph.png differ
diff --git a/png/zigzag-leaf.png b/png/zigzag-leaf.png
new file mode 100644
index 000000000..4afa7f2b1
Binary files /dev/null and b/png/zigzag-leaf.png differ
diff --git a/png/zigzag-tune.png b/png/zigzag-tune.png
new file mode 100644
index 000000000..3a2408499
Binary files /dev/null and b/png/zigzag-tune.png differ
diff --git a/png/zipper.png b/png/zipper.png
new file mode 100644
index 000000000..3a45da60e
Binary files /dev/null and b/png/zipper.png differ
diff --git a/svg/3d-glasses.svg b/svg/3d-glasses.svg
new file mode 100644
index 000000000..9ccd77d77
--- /dev/null
+++ b/svg/3d-glasses.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/3d-hammer.svg b/svg/3d-hammer.svg
new file mode 100644
index 000000000..90265aa78
--- /dev/null
+++ b/svg/3d-hammer.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/3d-meeple.svg b/svg/3d-meeple.svg
new file mode 100644
index 000000000..c0f56ca6f
--- /dev/null
+++ b/svg/3d-meeple.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/3d-stairs.svg b/svg/3d-stairs.svg
new file mode 100644
index 000000000..bd067a0f6
--- /dev/null
+++ b/svg/3d-stairs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abacus.svg b/svg/abacus.svg
new file mode 100644
index 000000000..7f76f780a
--- /dev/null
+++ b/svg/abacus.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abbot-meeple.svg b/svg/abbot-meeple.svg
new file mode 100644
index 000000000..7e393dc66
--- /dev/null
+++ b/svg/abbot-meeple.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abdominal-armor.svg b/svg/abdominal-armor.svg
new file mode 100644
index 000000000..94f97c1af
--- /dev/null
+++ b/svg/abdominal-armor.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-001.svg b/svg/abstract-001.svg
new file mode 100644
index 000000000..ebdb24328
--- /dev/null
+++ b/svg/abstract-001.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-002.svg b/svg/abstract-002.svg
new file mode 100644
index 000000000..8683ed4cd
--- /dev/null
+++ b/svg/abstract-002.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-003.svg b/svg/abstract-003.svg
new file mode 100644
index 000000000..ab1d56127
--- /dev/null
+++ b/svg/abstract-003.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-004.svg b/svg/abstract-004.svg
new file mode 100644
index 000000000..c7e1f1e15
--- /dev/null
+++ b/svg/abstract-004.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-005.svg b/svg/abstract-005.svg
new file mode 100644
index 000000000..0b585f2e7
--- /dev/null
+++ b/svg/abstract-005.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-006.svg b/svg/abstract-006.svg
new file mode 100644
index 000000000..8bc73fb44
--- /dev/null
+++ b/svg/abstract-006.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-007.svg b/svg/abstract-007.svg
new file mode 100644
index 000000000..2e3516c4e
--- /dev/null
+++ b/svg/abstract-007.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-008.svg b/svg/abstract-008.svg
new file mode 100644
index 000000000..985f9b3c9
--- /dev/null
+++ b/svg/abstract-008.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-009.svg b/svg/abstract-009.svg
new file mode 100644
index 000000000..4eaefa5ca
--- /dev/null
+++ b/svg/abstract-009.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-010.svg b/svg/abstract-010.svg
new file mode 100644
index 000000000..93073842d
--- /dev/null
+++ b/svg/abstract-010.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-011.svg b/svg/abstract-011.svg
new file mode 100644
index 000000000..838d74df8
--- /dev/null
+++ b/svg/abstract-011.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-012.svg b/svg/abstract-012.svg
new file mode 100644
index 000000000..0c416de86
--- /dev/null
+++ b/svg/abstract-012.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-013.svg b/svg/abstract-013.svg
new file mode 100644
index 000000000..83b9bdbe6
--- /dev/null
+++ b/svg/abstract-013.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-014.svg b/svg/abstract-014.svg
new file mode 100644
index 000000000..2159328fb
--- /dev/null
+++ b/svg/abstract-014.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-015.svg b/svg/abstract-015.svg
new file mode 100644
index 000000000..31455dfac
--- /dev/null
+++ b/svg/abstract-015.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-016.svg b/svg/abstract-016.svg
new file mode 100644
index 000000000..b05206303
--- /dev/null
+++ b/svg/abstract-016.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-017.svg b/svg/abstract-017.svg
new file mode 100644
index 000000000..2d9fe7c7b
--- /dev/null
+++ b/svg/abstract-017.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-018.svg b/svg/abstract-018.svg
new file mode 100644
index 000000000..b177e582d
--- /dev/null
+++ b/svg/abstract-018.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-019.svg b/svg/abstract-019.svg
new file mode 100644
index 000000000..7a523e0dd
--- /dev/null
+++ b/svg/abstract-019.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-020.svg b/svg/abstract-020.svg
new file mode 100644
index 000000000..c47cd81d0
--- /dev/null
+++ b/svg/abstract-020.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-021.svg b/svg/abstract-021.svg
new file mode 100644
index 000000000..5acdd84c2
--- /dev/null
+++ b/svg/abstract-021.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-022.svg b/svg/abstract-022.svg
new file mode 100644
index 000000000..f998eb7f2
--- /dev/null
+++ b/svg/abstract-022.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-023.svg b/svg/abstract-023.svg
new file mode 100644
index 000000000..a1e1dd969
--- /dev/null
+++ b/svg/abstract-023.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-024.svg b/svg/abstract-024.svg
new file mode 100644
index 000000000..22d105f84
--- /dev/null
+++ b/svg/abstract-024.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-025.svg b/svg/abstract-025.svg
new file mode 100644
index 000000000..67719efe1
--- /dev/null
+++ b/svg/abstract-025.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-026.svg b/svg/abstract-026.svg
new file mode 100644
index 000000000..b0cff8509
--- /dev/null
+++ b/svg/abstract-026.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-027.svg b/svg/abstract-027.svg
new file mode 100644
index 000000000..5d7279c7d
--- /dev/null
+++ b/svg/abstract-027.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-028.svg b/svg/abstract-028.svg
new file mode 100644
index 000000000..8381b0d8c
--- /dev/null
+++ b/svg/abstract-028.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-029.svg b/svg/abstract-029.svg
new file mode 100644
index 000000000..6b5d7d489
--- /dev/null
+++ b/svg/abstract-029.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-030.svg b/svg/abstract-030.svg
new file mode 100644
index 000000000..a1785d3cf
--- /dev/null
+++ b/svg/abstract-030.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-031.svg b/svg/abstract-031.svg
new file mode 100644
index 000000000..e8bb4d5d1
--- /dev/null
+++ b/svg/abstract-031.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-032.svg b/svg/abstract-032.svg
new file mode 100644
index 000000000..420b0a55d
--- /dev/null
+++ b/svg/abstract-032.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-033.svg b/svg/abstract-033.svg
new file mode 100644
index 000000000..5ff3bd8e0
--- /dev/null
+++ b/svg/abstract-033.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-034.svg b/svg/abstract-034.svg
new file mode 100644
index 000000000..d7a06825e
--- /dev/null
+++ b/svg/abstract-034.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-035.svg b/svg/abstract-035.svg
new file mode 100644
index 000000000..aa2c2a9fb
--- /dev/null
+++ b/svg/abstract-035.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-036.svg b/svg/abstract-036.svg
new file mode 100644
index 000000000..320e1521a
--- /dev/null
+++ b/svg/abstract-036.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-037.svg b/svg/abstract-037.svg
new file mode 100644
index 000000000..1ff7ca10e
--- /dev/null
+++ b/svg/abstract-037.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-038.svg b/svg/abstract-038.svg
new file mode 100644
index 000000000..b2a88644b
--- /dev/null
+++ b/svg/abstract-038.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-039.svg b/svg/abstract-039.svg
new file mode 100644
index 000000000..8ac33aab3
--- /dev/null
+++ b/svg/abstract-039.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-040.svg b/svg/abstract-040.svg
new file mode 100644
index 000000000..a8ea825ce
--- /dev/null
+++ b/svg/abstract-040.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-041.svg b/svg/abstract-041.svg
new file mode 100644
index 000000000..da0d84495
--- /dev/null
+++ b/svg/abstract-041.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-042.svg b/svg/abstract-042.svg
new file mode 100644
index 000000000..7c3f3d2e2
--- /dev/null
+++ b/svg/abstract-042.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-043.svg b/svg/abstract-043.svg
new file mode 100644
index 000000000..79f66bd88
--- /dev/null
+++ b/svg/abstract-043.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-044.svg b/svg/abstract-044.svg
new file mode 100644
index 000000000..ec323fdfe
--- /dev/null
+++ b/svg/abstract-044.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-045.svg b/svg/abstract-045.svg
new file mode 100644
index 000000000..98be4549e
--- /dev/null
+++ b/svg/abstract-045.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-046.svg b/svg/abstract-046.svg
new file mode 100644
index 000000000..ccb4803ad
--- /dev/null
+++ b/svg/abstract-046.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-047.svg b/svg/abstract-047.svg
new file mode 100644
index 000000000..f8ba7a02e
--- /dev/null
+++ b/svg/abstract-047.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-048.svg b/svg/abstract-048.svg
new file mode 100644
index 000000000..6529ed1a5
--- /dev/null
+++ b/svg/abstract-048.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-049.svg b/svg/abstract-049.svg
new file mode 100644
index 000000000..4468d5fc3
--- /dev/null
+++ b/svg/abstract-049.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-050.svg b/svg/abstract-050.svg
new file mode 100644
index 000000000..f62c0aeaf
--- /dev/null
+++ b/svg/abstract-050.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-051.svg b/svg/abstract-051.svg
new file mode 100644
index 000000000..a903b0c6f
--- /dev/null
+++ b/svg/abstract-051.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-052.svg b/svg/abstract-052.svg
new file mode 100644
index 000000000..6fd1569cb
--- /dev/null
+++ b/svg/abstract-052.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-053.svg b/svg/abstract-053.svg
new file mode 100644
index 000000000..56c9b5b47
--- /dev/null
+++ b/svg/abstract-053.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-054.svg b/svg/abstract-054.svg
new file mode 100644
index 000000000..b81d8fa3f
--- /dev/null
+++ b/svg/abstract-054.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-055.svg b/svg/abstract-055.svg
new file mode 100644
index 000000000..0dcb5a392
--- /dev/null
+++ b/svg/abstract-055.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-056.svg b/svg/abstract-056.svg
new file mode 100644
index 000000000..f88d6bc10
--- /dev/null
+++ b/svg/abstract-056.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-057.svg b/svg/abstract-057.svg
new file mode 100644
index 000000000..5af957b1e
--- /dev/null
+++ b/svg/abstract-057.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-058.svg b/svg/abstract-058.svg
new file mode 100644
index 000000000..8907c3a97
--- /dev/null
+++ b/svg/abstract-058.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-059.svg b/svg/abstract-059.svg
new file mode 100644
index 000000000..2ca97ea6c
--- /dev/null
+++ b/svg/abstract-059.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-060.svg b/svg/abstract-060.svg
new file mode 100644
index 000000000..16ad20b3c
--- /dev/null
+++ b/svg/abstract-060.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-061.svg b/svg/abstract-061.svg
new file mode 100644
index 000000000..356b86b3d
--- /dev/null
+++ b/svg/abstract-061.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-062.svg b/svg/abstract-062.svg
new file mode 100644
index 000000000..1b1e07d5b
--- /dev/null
+++ b/svg/abstract-062.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-063.svg b/svg/abstract-063.svg
new file mode 100644
index 000000000..f0b1be1df
--- /dev/null
+++ b/svg/abstract-063.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-064.svg b/svg/abstract-064.svg
new file mode 100644
index 000000000..f15fd5dbc
--- /dev/null
+++ b/svg/abstract-064.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-065.svg b/svg/abstract-065.svg
new file mode 100644
index 000000000..652732ffa
--- /dev/null
+++ b/svg/abstract-065.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-066.svg b/svg/abstract-066.svg
new file mode 100644
index 000000000..eabe122cf
--- /dev/null
+++ b/svg/abstract-066.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-067.svg b/svg/abstract-067.svg
new file mode 100644
index 000000000..1f8ca7d25
--- /dev/null
+++ b/svg/abstract-067.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-068.svg b/svg/abstract-068.svg
new file mode 100644
index 000000000..55773243a
--- /dev/null
+++ b/svg/abstract-068.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-069.svg b/svg/abstract-069.svg
new file mode 100644
index 000000000..ce3be485a
--- /dev/null
+++ b/svg/abstract-069.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-070.svg b/svg/abstract-070.svg
new file mode 100644
index 000000000..2e2fcd6b9
--- /dev/null
+++ b/svg/abstract-070.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-071.svg b/svg/abstract-071.svg
new file mode 100644
index 000000000..ac6566ff5
--- /dev/null
+++ b/svg/abstract-071.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-072.svg b/svg/abstract-072.svg
new file mode 100644
index 000000000..f2c56c5da
--- /dev/null
+++ b/svg/abstract-072.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-073.svg b/svg/abstract-073.svg
new file mode 100644
index 000000000..4051e0b5d
--- /dev/null
+++ b/svg/abstract-073.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-074.svg b/svg/abstract-074.svg
new file mode 100644
index 000000000..3e49b67c7
--- /dev/null
+++ b/svg/abstract-074.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-075.svg b/svg/abstract-075.svg
new file mode 100644
index 000000000..69e271065
--- /dev/null
+++ b/svg/abstract-075.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-076.svg b/svg/abstract-076.svg
new file mode 100644
index 000000000..ff454c145
--- /dev/null
+++ b/svg/abstract-076.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-077.svg b/svg/abstract-077.svg
new file mode 100644
index 000000000..dcc4b8082
--- /dev/null
+++ b/svg/abstract-077.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-078.svg b/svg/abstract-078.svg
new file mode 100644
index 000000000..027f49697
--- /dev/null
+++ b/svg/abstract-078.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-079.svg b/svg/abstract-079.svg
new file mode 100644
index 000000000..df430488e
--- /dev/null
+++ b/svg/abstract-079.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-080.svg b/svg/abstract-080.svg
new file mode 100644
index 000000000..4110ff523
--- /dev/null
+++ b/svg/abstract-080.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-081.svg b/svg/abstract-081.svg
new file mode 100644
index 000000000..0a800ba79
--- /dev/null
+++ b/svg/abstract-081.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-082.svg b/svg/abstract-082.svg
new file mode 100644
index 000000000..5bbdbd0d7
--- /dev/null
+++ b/svg/abstract-082.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-083.svg b/svg/abstract-083.svg
new file mode 100644
index 000000000..bd17eb99c
--- /dev/null
+++ b/svg/abstract-083.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-084.svg b/svg/abstract-084.svg
new file mode 100644
index 000000000..d1a7090f2
--- /dev/null
+++ b/svg/abstract-084.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-085.svg b/svg/abstract-085.svg
new file mode 100644
index 000000000..5616811f7
--- /dev/null
+++ b/svg/abstract-085.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-086.svg b/svg/abstract-086.svg
new file mode 100644
index 000000000..9ec20fd1c
--- /dev/null
+++ b/svg/abstract-086.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-087.svg b/svg/abstract-087.svg
new file mode 100644
index 000000000..05cf8f41c
--- /dev/null
+++ b/svg/abstract-087.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-088.svg b/svg/abstract-088.svg
new file mode 100644
index 000000000..eee336c88
--- /dev/null
+++ b/svg/abstract-088.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-089.svg b/svg/abstract-089.svg
new file mode 100644
index 000000000..533c22c8f
--- /dev/null
+++ b/svg/abstract-089.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-090.svg b/svg/abstract-090.svg
new file mode 100644
index 000000000..738825db7
--- /dev/null
+++ b/svg/abstract-090.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-091.svg b/svg/abstract-091.svg
new file mode 100644
index 000000000..9827c55a6
--- /dev/null
+++ b/svg/abstract-091.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-092.svg b/svg/abstract-092.svg
new file mode 100644
index 000000000..bb3dfadc7
--- /dev/null
+++ b/svg/abstract-092.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-093.svg b/svg/abstract-093.svg
new file mode 100644
index 000000000..103c83e3f
--- /dev/null
+++ b/svg/abstract-093.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-094.svg b/svg/abstract-094.svg
new file mode 100644
index 000000000..534679cb1
--- /dev/null
+++ b/svg/abstract-094.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-095.svg b/svg/abstract-095.svg
new file mode 100644
index 000000000..1819b702e
--- /dev/null
+++ b/svg/abstract-095.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-096.svg b/svg/abstract-096.svg
new file mode 100644
index 000000000..797c1ac8b
--- /dev/null
+++ b/svg/abstract-096.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-097.svg b/svg/abstract-097.svg
new file mode 100644
index 000000000..bcc695063
--- /dev/null
+++ b/svg/abstract-097.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-098.svg b/svg/abstract-098.svg
new file mode 100644
index 000000000..73c258167
--- /dev/null
+++ b/svg/abstract-098.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-099.svg b/svg/abstract-099.svg
new file mode 100644
index 000000000..1077d6d0b
--- /dev/null
+++ b/svg/abstract-099.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-100.svg b/svg/abstract-100.svg
new file mode 100644
index 000000000..d815a0271
--- /dev/null
+++ b/svg/abstract-100.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-101.svg b/svg/abstract-101.svg
new file mode 100644
index 000000000..c813ca6d3
--- /dev/null
+++ b/svg/abstract-101.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-102.svg b/svg/abstract-102.svg
new file mode 100644
index 000000000..1d919eaa1
--- /dev/null
+++ b/svg/abstract-102.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-103.svg b/svg/abstract-103.svg
new file mode 100644
index 000000000..965874567
--- /dev/null
+++ b/svg/abstract-103.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-104.svg b/svg/abstract-104.svg
new file mode 100644
index 000000000..99f2dcf44
--- /dev/null
+++ b/svg/abstract-104.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-105.svg b/svg/abstract-105.svg
new file mode 100644
index 000000000..dd8dde851
--- /dev/null
+++ b/svg/abstract-105.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-106.svg b/svg/abstract-106.svg
new file mode 100644
index 000000000..f10daceda
--- /dev/null
+++ b/svg/abstract-106.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-107.svg b/svg/abstract-107.svg
new file mode 100644
index 000000000..0d2bb2aec
--- /dev/null
+++ b/svg/abstract-107.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-108.svg b/svg/abstract-108.svg
new file mode 100644
index 000000000..6dab49ced
--- /dev/null
+++ b/svg/abstract-108.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-109.svg b/svg/abstract-109.svg
new file mode 100644
index 000000000..46b090353
--- /dev/null
+++ b/svg/abstract-109.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-110.svg b/svg/abstract-110.svg
new file mode 100644
index 000000000..920ac3667
--- /dev/null
+++ b/svg/abstract-110.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-111.svg b/svg/abstract-111.svg
new file mode 100644
index 000000000..b06f75dd0
--- /dev/null
+++ b/svg/abstract-111.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-112.svg b/svg/abstract-112.svg
new file mode 100644
index 000000000..92dc0cfa4
--- /dev/null
+++ b/svg/abstract-112.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-113.svg b/svg/abstract-113.svg
new file mode 100644
index 000000000..2deff3840
--- /dev/null
+++ b/svg/abstract-113.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-114.svg b/svg/abstract-114.svg
new file mode 100644
index 000000000..f839900ec
--- /dev/null
+++ b/svg/abstract-114.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-115.svg b/svg/abstract-115.svg
new file mode 100644
index 000000000..21c0965ec
--- /dev/null
+++ b/svg/abstract-115.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-116.svg b/svg/abstract-116.svg
new file mode 100644
index 000000000..3f65da44b
--- /dev/null
+++ b/svg/abstract-116.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-117.svg b/svg/abstract-117.svg
new file mode 100644
index 000000000..72362b2aa
--- /dev/null
+++ b/svg/abstract-117.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-118.svg b/svg/abstract-118.svg
new file mode 100644
index 000000000..b8672ddad
--- /dev/null
+++ b/svg/abstract-118.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-119.svg b/svg/abstract-119.svg
new file mode 100644
index 000000000..086e80195
--- /dev/null
+++ b/svg/abstract-119.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-120.svg b/svg/abstract-120.svg
new file mode 100644
index 000000000..82d968baf
--- /dev/null
+++ b/svg/abstract-120.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/abstract-121.svg b/svg/abstract-121.svg
new file mode 100644
index 000000000..fe05a8ede
--- /dev/null
+++ b/svg/abstract-121.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/accordion.svg b/svg/accordion.svg
new file mode 100644
index 000000000..723c0e0ca
--- /dev/null
+++ b/svg/accordion.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ace.svg b/svg/ace.svg
new file mode 100644
index 000000000..5192ad886
--- /dev/null
+++ b/svg/ace.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/achievement.svg b/svg/achievement.svg
new file mode 100644
index 000000000..5e4c3e783
--- /dev/null
+++ b/svg/achievement.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/achilles-heel.svg b/svg/achilles-heel.svg
new file mode 100644
index 000000000..4eefb9b30
--- /dev/null
+++ b/svg/achilles-heel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/acid-blob.svg b/svg/acid-blob.svg
new file mode 100644
index 000000000..7ddcc753c
--- /dev/null
+++ b/svg/acid-blob.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/acid-tube.svg b/svg/acid-tube.svg
new file mode 100644
index 000000000..e52f0c352
--- /dev/null
+++ b/svg/acid-tube.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/acid.svg b/svg/acid.svg
new file mode 100644
index 000000000..31fffc31a
--- /dev/null
+++ b/svg/acid.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/acorn.svg b/svg/acorn.svg
new file mode 100644
index 000000000..d988dfcb8
--- /dev/null
+++ b/svg/acorn.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/acoustic-megaphone.svg b/svg/acoustic-megaphone.svg
new file mode 100644
index 000000000..5eedfcc7c
--- /dev/null
+++ b/svg/acoustic-megaphone.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/acrobatic.svg b/svg/acrobatic.svg
new file mode 100644
index 000000000..3b5deb43b
--- /dev/null
+++ b/svg/acrobatic.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/aerial-signal.svg b/svg/aerial-signal.svg
new file mode 100644
index 000000000..1a904d99d
--- /dev/null
+++ b/svg/aerial-signal.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/aerodynamic-harpoon.svg b/svg/aerodynamic-harpoon.svg
new file mode 100644
index 000000000..851f34f08
--- /dev/null
+++ b/svg/aerodynamic-harpoon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/aerosol.svg b/svg/aerosol.svg
new file mode 100644
index 000000000..c21e1e5ec
--- /dev/null
+++ b/svg/aerosol.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/africa.svg b/svg/africa.svg
new file mode 100644
index 000000000..9cc3795d1
--- /dev/null
+++ b/svg/africa.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/afterburn.svg b/svg/afterburn.svg
new file mode 100644
index 000000000..6a5f71d59
--- /dev/null
+++ b/svg/afterburn.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/agave.svg b/svg/agave.svg
new file mode 100644
index 000000000..ad13715c8
--- /dev/null
+++ b/svg/agave.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ages.svg b/svg/ages.svg
new file mode 100644
index 000000000..e435eaa1a
--- /dev/null
+++ b/svg/ages.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/air-balloon.svg b/svg/air-balloon.svg
new file mode 100644
index 000000000..0ab4a4bc3
--- /dev/null
+++ b/svg/air-balloon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/air-force.svg b/svg/air-force.svg
new file mode 100644
index 000000000..3fd4c55e5
--- /dev/null
+++ b/svg/air-force.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/air-man.svg b/svg/air-man.svg
new file mode 100644
index 000000000..ee05ee664
--- /dev/null
+++ b/svg/air-man.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/air-zigzag.svg b/svg/air-zigzag.svg
new file mode 100644
index 000000000..6f949489c
--- /dev/null
+++ b/svg/air-zigzag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/airplane-arrival.svg b/svg/airplane-arrival.svg
new file mode 100644
index 000000000..ec71144bb
--- /dev/null
+++ b/svg/airplane-arrival.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/airplane-departure.svg b/svg/airplane-departure.svg
new file mode 100644
index 000000000..064d31504
--- /dev/null
+++ b/svg/airplane-departure.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/airplane.svg b/svg/airplane.svg
new file mode 100644
index 000000000..9e83fbedd
--- /dev/null
+++ b/svg/airplane.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/airtight-hatch.svg b/svg/airtight-hatch.svg
new file mode 100644
index 000000000..d85c290df
--- /dev/null
+++ b/svg/airtight-hatch.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ak47.svg b/svg/ak47.svg
new file mode 100644
index 000000000..c12d62288
--- /dev/null
+++ b/svg/ak47.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ak47u.svg b/svg/ak47u.svg
new file mode 100644
index 000000000..b78d16a3d
--- /dev/null
+++ b/svg/ak47u.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/akhet.svg b/svg/akhet.svg
new file mode 100644
index 000000000..603a0674a
--- /dev/null
+++ b/svg/akhet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/alarm-clock.svg b/svg/alarm-clock.svg
new file mode 100644
index 000000000..4e322fbe7
--- /dev/null
+++ b/svg/alarm-clock.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/algae.svg b/svg/algae.svg
new file mode 100644
index 000000000..26471ce5a
--- /dev/null
+++ b/svg/algae.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/algeria.svg b/svg/algeria.svg
new file mode 100644
index 000000000..bd0675adf
--- /dev/null
+++ b/svg/algeria.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/alien-bug.svg b/svg/alien-bug.svg
new file mode 100644
index 000000000..2d10a9da6
--- /dev/null
+++ b/svg/alien-bug.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/alien-egg.svg b/svg/alien-egg.svg
new file mode 100644
index 000000000..91ea3775f
--- /dev/null
+++ b/svg/alien-egg.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/alien-fire.svg b/svg/alien-fire.svg
new file mode 100644
index 000000000..876fcec0b
--- /dev/null
+++ b/svg/alien-fire.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/alien-skull.svg b/svg/alien-skull.svg
new file mode 100644
index 000000000..298267e0e
--- /dev/null
+++ b/svg/alien-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/alien-stare.svg b/svg/alien-stare.svg
new file mode 100644
index 000000000..f6f7c30eb
--- /dev/null
+++ b/svg/alien-stare.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/all-for-one.svg b/svg/all-for-one.svg
new file mode 100644
index 000000000..c6aee30a5
--- /dev/null
+++ b/svg/all-for-one.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/all-seeing-eye.svg b/svg/all-seeing-eye.svg
new file mode 100644
index 000000000..9374ee145
--- /dev/null
+++ b/svg/all-seeing-eye.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/allied-star.svg b/svg/allied-star.svg
new file mode 100644
index 000000000..996a01d4a
--- /dev/null
+++ b/svg/allied-star.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/alligator-clip.svg b/svg/alligator-clip.svg
new file mode 100644
index 000000000..b48a4e867
--- /dev/null
+++ b/svg/alligator-clip.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/almond.svg b/svg/almond.svg
new file mode 100644
index 000000000..89d9a5906
--- /dev/null
+++ b/svg/almond.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/amber-mosquito.svg b/svg/amber-mosquito.svg
new file mode 100644
index 000000000..80efb35b8
--- /dev/null
+++ b/svg/amber-mosquito.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ambulance.svg b/svg/ambulance.svg
new file mode 100644
index 000000000..6343a2c56
--- /dev/null
+++ b/svg/ambulance.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/american-football-ball.svg b/svg/american-football-ball.svg
new file mode 100644
index 000000000..6aa1d5b63
--- /dev/null
+++ b/svg/american-football-ball.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/american-football-helmet.svg b/svg/american-football-helmet.svg
new file mode 100644
index 000000000..8e501e9df
--- /dev/null
+++ b/svg/american-football-helmet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/american-football-player.svg b/svg/american-football-player.svg
new file mode 100644
index 000000000..f0ccd2b0a
--- /dev/null
+++ b/svg/american-football-player.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/american-shield.svg b/svg/american-shield.svg
new file mode 100644
index 000000000..c276332e9
--- /dev/null
+++ b/svg/american-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/amethyst.svg b/svg/amethyst.svg
new file mode 100644
index 000000000..c5e4039bc
--- /dev/null
+++ b/svg/amethyst.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ammo-box.svg b/svg/ammo-box.svg
new file mode 100644
index 000000000..f65d66d20
--- /dev/null
+++ b/svg/ammo-box.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ammonite-fossil.svg b/svg/ammonite-fossil.svg
new file mode 100644
index 000000000..f8368909a
--- /dev/null
+++ b/svg/ammonite-fossil.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ammonite.svg b/svg/ammonite.svg
new file mode 100644
index 000000000..f7b4cce4c
--- /dev/null
+++ b/svg/ammonite.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/amphora.svg b/svg/amphora.svg
new file mode 100644
index 000000000..25aa48713
--- /dev/null
+++ b/svg/amphora.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ample-dress.svg b/svg/ample-dress.svg
new file mode 100644
index 000000000..c12bedb3a
--- /dev/null
+++ b/svg/ample-dress.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/amplitude.svg b/svg/amplitude.svg
new file mode 100644
index 000000000..576c18490
--- /dev/null
+++ b/svg/amplitude.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/amputation.svg b/svg/amputation.svg
new file mode 100644
index 000000000..2d04177e9
--- /dev/null
+++ b/svg/amputation.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/anarchy.svg b/svg/anarchy.svg
new file mode 100644
index 000000000..a904b5cfb
--- /dev/null
+++ b/svg/anarchy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/anatomy.svg b/svg/anatomy.svg
new file mode 100644
index 000000000..913a4c0e9
--- /dev/null
+++ b/svg/anatomy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/anchor.svg b/svg/anchor.svg
new file mode 100644
index 000000000..36d115c8d
--- /dev/null
+++ b/svg/anchor.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ancient-columns.svg b/svg/ancient-columns.svg
new file mode 100644
index 000000000..17d274115
--- /dev/null
+++ b/svg/ancient-columns.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ancient-ruins.svg b/svg/ancient-ruins.svg
new file mode 100644
index 000000000..e4fae8ed1
--- /dev/null
+++ b/svg/ancient-ruins.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ancient-screw.svg b/svg/ancient-screw.svg
new file mode 100644
index 000000000..d5e651f7b
--- /dev/null
+++ b/svg/ancient-screw.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ancient-sword.svg b/svg/ancient-sword.svg
new file mode 100644
index 000000000..6a53cc781
--- /dev/null
+++ b/svg/ancient-sword.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/android-mask.svg b/svg/android-mask.svg
new file mode 100644
index 000000000..9a8a5ea8f
--- /dev/null
+++ b/svg/android-mask.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/andromeda-chain.svg b/svg/andromeda-chain.svg
new file mode 100644
index 000000000..81c6a3e77
--- /dev/null
+++ b/svg/andromeda-chain.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/angel-outfit.svg b/svg/angel-outfit.svg
new file mode 100644
index 000000000..ba4539bc4
--- /dev/null
+++ b/svg/angel-outfit.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/angel-wings.svg b/svg/angel-wings.svg
new file mode 100644
index 000000000..8eb10e293
--- /dev/null
+++ b/svg/angel-wings.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/angler-fish.svg b/svg/angler-fish.svg
new file mode 100644
index 000000000..362b008eb
--- /dev/null
+++ b/svg/angler-fish.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/angola.svg b/svg/angola.svg
new file mode 100644
index 000000000..e893b468d
--- /dev/null
+++ b/svg/angola.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/angry-eyes.svg b/svg/angry-eyes.svg
new file mode 100644
index 000000000..c7462c4d1
--- /dev/null
+++ b/svg/angry-eyes.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/angular-spider.svg b/svg/angular-spider.svg
new file mode 100644
index 000000000..c0051be81
--- /dev/null
+++ b/svg/angular-spider.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/animal-hide.svg b/svg/animal-hide.svg
new file mode 100644
index 000000000..37221a1f6
--- /dev/null
+++ b/svg/animal-hide.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/animal-skull.svg b/svg/animal-skull.svg
new file mode 100644
index 000000000..c402475d6
--- /dev/null
+++ b/svg/animal-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ankh.svg b/svg/ankh.svg
new file mode 100644
index 000000000..9f9422463
--- /dev/null
+++ b/svg/ankh.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/annexation.svg b/svg/annexation.svg
new file mode 100644
index 000000000..94aa0e3bc
--- /dev/null
+++ b/svg/annexation.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ant.svg b/svg/ant.svg
new file mode 100644
index 000000000..502d9d5e9
--- /dev/null
+++ b/svg/ant.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/antarctica.svg b/svg/antarctica.svg
new file mode 100644
index 000000000..1e6351e3d
--- /dev/null
+++ b/svg/antarctica.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/anteater.svg b/svg/anteater.svg
new file mode 100644
index 000000000..354d5d932
--- /dev/null
+++ b/svg/anteater.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/anthem.svg b/svg/anthem.svg
new file mode 100644
index 000000000..bd1000b7e
--- /dev/null
+++ b/svg/anthem.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/anti-aircraft-gun.svg b/svg/anti-aircraft-gun.svg
new file mode 100644
index 000000000..377af6b23
--- /dev/null
+++ b/svg/anti-aircraft-gun.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/antibody.svg b/svg/antibody.svg
new file mode 100644
index 000000000..e89d86d3e
--- /dev/null
+++ b/svg/antibody.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/anticlockwise-rotation.svg b/svg/anticlockwise-rotation.svg
new file mode 100644
index 000000000..16dc7b6d7
--- /dev/null
+++ b/svg/anticlockwise-rotation.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ants.svg b/svg/ants.svg
new file mode 100644
index 000000000..0fb7b2ede
--- /dev/null
+++ b/svg/ants.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/anubis.svg b/svg/anubis.svg
new file mode 100644
index 000000000..0c1a0f1a1
--- /dev/null
+++ b/svg/anubis.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/anvil-impact.svg b/svg/anvil-impact.svg
new file mode 100644
index 000000000..ef54c612f
--- /dev/null
+++ b/svg/anvil-impact.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/anvil.svg b/svg/anvil.svg
new file mode 100644
index 000000000..b0c2259c5
--- /dev/null
+++ b/svg/anvil.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/apc.svg b/svg/apc.svg
new file mode 100644
index 000000000..10d5bd72e
--- /dev/null
+++ b/svg/apc.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/apollo-capsule.svg b/svg/apollo-capsule.svg
new file mode 100644
index 000000000..85146ce68
--- /dev/null
+++ b/svg/apollo-capsule.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/apothecary.svg b/svg/apothecary.svg
new file mode 100644
index 000000000..94e99ca03
--- /dev/null
+++ b/svg/apothecary.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/apple-core.svg b/svg/apple-core.svg
new file mode 100644
index 000000000..fa2251541
--- /dev/null
+++ b/svg/apple-core.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/apple-maggot.svg b/svg/apple-maggot.svg
new file mode 100644
index 000000000..a52a68e15
--- /dev/null
+++ b/svg/apple-maggot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/apple-seeds.svg b/svg/apple-seeds.svg
new file mode 100644
index 000000000..d2e4264a0
--- /dev/null
+++ b/svg/apple-seeds.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/aquarium.svg b/svg/aquarium.svg
new file mode 100644
index 000000000..69aea9207
--- /dev/null
+++ b/svg/aquarium.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/aquarius.svg b/svg/aquarius.svg
new file mode 100644
index 000000000..fc3dd413c
--- /dev/null
+++ b/svg/aquarius.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/aqueduct.svg b/svg/aqueduct.svg
new file mode 100644
index 000000000..578f70c73
--- /dev/null
+++ b/svg/aqueduct.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/arabic-door.svg b/svg/arabic-door.svg
new file mode 100644
index 000000000..13c52624a
--- /dev/null
+++ b/svg/arabic-door.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/arc-triomphe.svg b/svg/arc-triomphe.svg
new file mode 100644
index 000000000..9780ab40e
--- /dev/null
+++ b/svg/arc-triomphe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/arch-bridge.svg b/svg/arch-bridge.svg
new file mode 100644
index 000000000..831f5e9dd
--- /dev/null
+++ b/svg/arch-bridge.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/archaeopteryx-fossil.svg b/svg/archaeopteryx-fossil.svg
new file mode 100644
index 000000000..6fea255bc
--- /dev/null
+++ b/svg/archaeopteryx-fossil.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/archer.svg b/svg/archer.svg
new file mode 100644
index 000000000..c342e8598
--- /dev/null
+++ b/svg/archer.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/archery-target.svg b/svg/archery-target.svg
new file mode 100644
index 000000000..85654cf35
--- /dev/null
+++ b/svg/archery-target.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/architect-mask.svg b/svg/architect-mask.svg
new file mode 100644
index 000000000..87f38a597
--- /dev/null
+++ b/svg/architect-mask.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/archive-register.svg b/svg/archive-register.svg
new file mode 100644
index 000000000..f7c5fae89
--- /dev/null
+++ b/svg/archive-register.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/archive-research.svg b/svg/archive-research.svg
new file mode 100644
index 000000000..850152adc
--- /dev/null
+++ b/svg/archive-research.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/arcing-bolt.svg b/svg/arcing-bolt.svg
new file mode 100644
index 000000000..c05b8a442
--- /dev/null
+++ b/svg/arcing-bolt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/arena.svg b/svg/arena.svg
new file mode 100644
index 000000000..cc6e24538
--- /dev/null
+++ b/svg/arena.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/aries.svg b/svg/aries.svg
new file mode 100644
index 000000000..4c2b6454a
--- /dev/null
+++ b/svg/aries.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/arm-bandage.svg b/svg/arm-bandage.svg
new file mode 100644
index 000000000..fe9f9b58d
--- /dev/null
+++ b/svg/arm-bandage.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/arm-sling.svg b/svg/arm-sling.svg
new file mode 100644
index 000000000..0cce01459
--- /dev/null
+++ b/svg/arm-sling.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/arm.svg b/svg/arm.svg
new file mode 100644
index 000000000..4d9c8fd48
--- /dev/null
+++ b/svg/arm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/armadillo-tail.svg b/svg/armadillo-tail.svg
new file mode 100644
index 000000000..5e53fc5aa
--- /dev/null
+++ b/svg/armadillo-tail.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/armadillo.svg b/svg/armadillo.svg
new file mode 100644
index 000000000..4342729de
--- /dev/null
+++ b/svg/armadillo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/armor-downgrade.svg b/svg/armor-downgrade.svg
new file mode 100644
index 000000000..d3484565a
--- /dev/null
+++ b/svg/armor-downgrade.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/armor-punch.svg b/svg/armor-punch.svg
new file mode 100644
index 000000000..855f7dc92
--- /dev/null
+++ b/svg/armor-punch.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/armor-upgrade.svg b/svg/armor-upgrade.svg
new file mode 100644
index 000000000..e0aa39c93
--- /dev/null
+++ b/svg/armor-upgrade.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/armor-vest.svg b/svg/armor-vest.svg
new file mode 100644
index 000000000..60abfec7b
--- /dev/null
+++ b/svg/armor-vest.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/armored-boomerang.svg b/svg/armored-boomerang.svg
new file mode 100644
index 000000000..a45ec03c0
--- /dev/null
+++ b/svg/armored-boomerang.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/armored-pants.svg b/svg/armored-pants.svg
new file mode 100644
index 000000000..9f391edcf
--- /dev/null
+++ b/svg/armored-pants.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/armoured-shell.svg b/svg/armoured-shell.svg
new file mode 100644
index 000000000..9c74dfb6b
--- /dev/null
+++ b/svg/armoured-shell.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/arrest.svg b/svg/arrest.svg
new file mode 100644
index 000000000..625b3f2f1
--- /dev/null
+++ b/svg/arrest.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/arrow-cluster.svg b/svg/arrow-cluster.svg
new file mode 100644
index 000000000..d2f2908be
--- /dev/null
+++ b/svg/arrow-cluster.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/arrow-cursor.svg b/svg/arrow-cursor.svg
new file mode 100644
index 000000000..2084c7aaf
--- /dev/null
+++ b/svg/arrow-cursor.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/arrow-dunk.svg b/svg/arrow-dunk.svg
new file mode 100644
index 000000000..8b0c802fb
--- /dev/null
+++ b/svg/arrow-dunk.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/arrow-flights.svg b/svg/arrow-flights.svg
new file mode 100644
index 000000000..e81b5bf37
--- /dev/null
+++ b/svg/arrow-flights.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/arrow-scope.svg b/svg/arrow-scope.svg
new file mode 100644
index 000000000..e568d76ff
--- /dev/null
+++ b/svg/arrow-scope.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/arrow-wings.svg b/svg/arrow-wings.svg
new file mode 100644
index 000000000..f3e5b0892
--- /dev/null
+++ b/svg/arrow-wings.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/arrowed.svg b/svg/arrowed.svg
new file mode 100644
index 000000000..ea3680c26
--- /dev/null
+++ b/svg/arrowed.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/arrowhead.svg b/svg/arrowhead.svg
new file mode 100644
index 000000000..20166dace
--- /dev/null
+++ b/svg/arrowhead.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/arrows-shield.svg b/svg/arrows-shield.svg
new file mode 100644
index 000000000..b25bd8d2c
--- /dev/null
+++ b/svg/arrows-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/arson.svg b/svg/arson.svg
new file mode 100644
index 000000000..de9893d10
--- /dev/null
+++ b/svg/arson.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/artichoke.svg b/svg/artichoke.svg
new file mode 100644
index 000000000..0dd79c550
--- /dev/null
+++ b/svg/artichoke.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/artificial-hive.svg b/svg/artificial-hive.svg
new file mode 100644
index 000000000..22e3fdbbf
--- /dev/null
+++ b/svg/artificial-hive.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/artificial-intelligence.svg b/svg/artificial-intelligence.svg
new file mode 100644
index 000000000..d04ab71ce
--- /dev/null
+++ b/svg/artificial-intelligence.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/artillery-shell.svg b/svg/artillery-shell.svg
new file mode 100644
index 000000000..ef92ffa2f
--- /dev/null
+++ b/svg/artillery-shell.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ascending-block.svg b/svg/ascending-block.svg
new file mode 100644
index 000000000..15d94bc8d
--- /dev/null
+++ b/svg/ascending-block.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/asian-lantern.svg b/svg/asian-lantern.svg
new file mode 100644
index 000000000..ca2057b50
--- /dev/null
+++ b/svg/asian-lantern.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/asparagus.svg b/svg/asparagus.svg
new file mode 100644
index 000000000..dc596819c
--- /dev/null
+++ b/svg/asparagus.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/aspergillum.svg b/svg/aspergillum.svg
new file mode 100644
index 000000000..f4c25ed1c
--- /dev/null
+++ b/svg/aspergillum.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/assassin-pocket.svg b/svg/assassin-pocket.svg
new file mode 100644
index 000000000..24f764d7c
--- /dev/null
+++ b/svg/assassin-pocket.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/asteroid.svg b/svg/asteroid.svg
new file mode 100644
index 000000000..2123da0d5
--- /dev/null
+++ b/svg/asteroid.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/astrolabe.svg b/svg/astrolabe.svg
new file mode 100644
index 000000000..612647eea
--- /dev/null
+++ b/svg/astrolabe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/astronaut-helmet.svg b/svg/astronaut-helmet.svg
new file mode 100644
index 000000000..f3e4621d8
--- /dev/null
+++ b/svg/astronaut-helmet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/at-sea.svg b/svg/at-sea.svg
new file mode 100644
index 000000000..800acb2ef
--- /dev/null
+++ b/svg/at-sea.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/atlas.svg b/svg/atlas.svg
new file mode 100644
index 000000000..0dc02af1b
--- /dev/null
+++ b/svg/atlas.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/atom-core.svg b/svg/atom-core.svg
new file mode 100644
index 000000000..b00d67299
--- /dev/null
+++ b/svg/atom-core.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/atom.svg b/svg/atom.svg
new file mode 100644
index 000000000..2656d2584
--- /dev/null
+++ b/svg/atom.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/atomic-slashes.svg b/svg/atomic-slashes.svg
new file mode 100644
index 000000000..7d72eb9e3
--- /dev/null
+++ b/svg/atomic-slashes.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/attached-shield.svg b/svg/attached-shield.svg
new file mode 100644
index 000000000..4f59ad909
--- /dev/null
+++ b/svg/attached-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/aubergine.svg b/svg/aubergine.svg
new file mode 100644
index 000000000..4b0795f21
--- /dev/null
+++ b/svg/aubergine.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/audio-cassette.svg b/svg/audio-cassette.svg
new file mode 100644
index 000000000..c31faf1ea
--- /dev/null
+++ b/svg/audio-cassette.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/aura.svg b/svg/aura.svg
new file mode 100644
index 000000000..93a453415
--- /dev/null
+++ b/svg/aura.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/australia.svg b/svg/australia.svg
new file mode 100644
index 000000000..672cc3cd1
--- /dev/null
+++ b/svg/australia.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/auto-repair.svg b/svg/auto-repair.svg
new file mode 100644
index 000000000..6edf25266
--- /dev/null
+++ b/svg/auto-repair.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/autogun.svg b/svg/autogun.svg
new file mode 100644
index 000000000..e5c068706
--- /dev/null
+++ b/svg/autogun.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/automatic-sas.svg b/svg/automatic-sas.svg
new file mode 100644
index 000000000..7edcd10a3
--- /dev/null
+++ b/svg/automatic-sas.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/avocado.svg b/svg/avocado.svg
new file mode 100644
index 000000000..386b6d25f
--- /dev/null
+++ b/svg/avocado.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/avoidance.svg b/svg/avoidance.svg
new file mode 100644
index 000000000..5a1a7e585
--- /dev/null
+++ b/svg/avoidance.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/awareness.svg b/svg/awareness.svg
new file mode 100644
index 000000000..0479941f8
--- /dev/null
+++ b/svg/awareness.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/axe-in-log.svg b/svg/axe-in-log.svg
new file mode 100644
index 000000000..7951f57a6
--- /dev/null
+++ b/svg/axe-in-log.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/axe-in-stump.svg b/svg/axe-in-stump.svg
new file mode 100644
index 000000000..d6b46f0b0
--- /dev/null
+++ b/svg/axe-in-stump.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/axe-swing.svg b/svg/axe-swing.svg
new file mode 100644
index 000000000..4b9be6d71
--- /dev/null
+++ b/svg/axe-swing.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/axe-sword.svg b/svg/axe-sword.svg
new file mode 100644
index 000000000..cb82085cd
--- /dev/null
+++ b/svg/axe-sword.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/axolotl.svg b/svg/axolotl.svg
new file mode 100644
index 000000000..523d29edf
--- /dev/null
+++ b/svg/axolotl.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/aztec-calendar-sun.svg b/svg/aztec-calendar-sun.svg
new file mode 100644
index 000000000..6952ad1c2
--- /dev/null
+++ b/svg/aztec-calendar-sun.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/azul-flake.svg b/svg/azul-flake.svg
new file mode 100644
index 000000000..f348d46c5
--- /dev/null
+++ b/svg/azul-flake.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/baby-bottle.svg b/svg/baby-bottle.svg
new file mode 100644
index 000000000..30e631248
--- /dev/null
+++ b/svg/baby-bottle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/baby-face.svg b/svg/baby-face.svg
new file mode 100644
index 000000000..38ad029c8
--- /dev/null
+++ b/svg/baby-face.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/babyfoot-players.svg b/svg/babyfoot-players.svg
new file mode 100644
index 000000000..1095d95e8
--- /dev/null
+++ b/svg/babyfoot-players.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/back-forth.svg b/svg/back-forth.svg
new file mode 100644
index 000000000..c903475c6
--- /dev/null
+++ b/svg/back-forth.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/back-pain.svg b/svg/back-pain.svg
new file mode 100644
index 000000000..5dd3c9715
--- /dev/null
+++ b/svg/back-pain.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/backbone-shell.svg b/svg/backbone-shell.svg
new file mode 100644
index 000000000..c0a447540
--- /dev/null
+++ b/svg/backbone-shell.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/backgammon.svg b/svg/backgammon.svg
new file mode 100644
index 000000000..2158feaf1
--- /dev/null
+++ b/svg/backgammon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/backpack.svg b/svg/backpack.svg
new file mode 100644
index 000000000..e385e947f
--- /dev/null
+++ b/svg/backpack.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/backstab.svg b/svg/backstab.svg
new file mode 100644
index 000000000..eda75ec89
--- /dev/null
+++ b/svg/backstab.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/backup.svg b/svg/backup.svg
new file mode 100644
index 000000000..938506515
--- /dev/null
+++ b/svg/backup.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/backward-time.svg b/svg/backward-time.svg
new file mode 100644
index 000000000..969a487f8
--- /dev/null
+++ b/svg/backward-time.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bacon.svg b/svg/bacon.svg
new file mode 100644
index 000000000..7aacffe22
--- /dev/null
+++ b/svg/bacon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bad-breath.svg b/svg/bad-breath.svg
new file mode 100644
index 000000000..0d6836b63
--- /dev/null
+++ b/svg/bad-breath.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bad-gnome.svg b/svg/bad-gnome.svg
new file mode 100644
index 000000000..85275699e
--- /dev/null
+++ b/svg/bad-gnome.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/badger.svg b/svg/badger.svg
new file mode 100644
index 000000000..8b98070c4
--- /dev/null
+++ b/svg/badger.svg
@@ -0,0 +1 @@
+
diff --git a/svg/bagpipes.svg b/svg/bagpipes.svg
new file mode 100644
index 000000000..0968a7582
--- /dev/null
+++ b/svg/bagpipes.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bal-leth.svg b/svg/bal-leth.svg
new file mode 100644
index 000000000..a880bda67
--- /dev/null
+++ b/svg/bal-leth.svg
@@ -0,0 +1 @@
+
diff --git a/svg/balaclava.svg b/svg/balaclava.svg
new file mode 100644
index 000000000..834f5925d
--- /dev/null
+++ b/svg/balaclava.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/balkenkreuz.svg b/svg/balkenkreuz.svg
new file mode 100644
index 000000000..11ac5085f
--- /dev/null
+++ b/svg/balkenkreuz.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ball-glow.svg b/svg/ball-glow.svg
new file mode 100644
index 000000000..a4223f342
--- /dev/null
+++ b/svg/ball-glow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ball-heart.svg b/svg/ball-heart.svg
new file mode 100644
index 000000000..dcb64c9a1
--- /dev/null
+++ b/svg/ball-heart.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ball-pyramid.svg b/svg/ball-pyramid.svg
new file mode 100644
index 000000000..a6bea0ffd
--- /dev/null
+++ b/svg/ball-pyramid.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ballerina-shoes.svg b/svg/ballerina-shoes.svg
new file mode 100644
index 000000000..e8e13b9af
--- /dev/null
+++ b/svg/ballerina-shoes.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ballista.svg b/svg/ballista.svg
new file mode 100644
index 000000000..8f233f8d8
--- /dev/null
+++ b/svg/ballista.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/balloon-dog.svg b/svg/balloon-dog.svg
new file mode 100644
index 000000000..8fdfce13d
--- /dev/null
+++ b/svg/balloon-dog.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/balloons.svg b/svg/balloons.svg
new file mode 100644
index 000000000..ca56623e1
--- /dev/null
+++ b/svg/balloons.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bamboo-fountain.svg b/svg/bamboo-fountain.svg
new file mode 100644
index 000000000..53c989ac6
--- /dev/null
+++ b/svg/bamboo-fountain.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bamboo.svg b/svg/bamboo.svg
new file mode 100644
index 000000000..35601cd46
--- /dev/null
+++ b/svg/bamboo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/banana-bunch.svg b/svg/banana-bunch.svg
new file mode 100644
index 000000000..4f3f358a8
--- /dev/null
+++ b/svg/banana-bunch.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/banana-peel.svg b/svg/banana-peel.svg
new file mode 100644
index 000000000..dedce0819
--- /dev/null
+++ b/svg/banana-peel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/banana-peeled.svg b/svg/banana-peeled.svg
new file mode 100644
index 000000000..9c457b4a6
--- /dev/null
+++ b/svg/banana-peeled.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/banana.svg b/svg/banana.svg
new file mode 100644
index 000000000..263ea0301
--- /dev/null
+++ b/svg/banana.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bandage-roll.svg b/svg/bandage-roll.svg
new file mode 100644
index 000000000..db7c95630
--- /dev/null
+++ b/svg/bandage-roll.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bandaged.svg b/svg/bandaged.svg
new file mode 100644
index 000000000..a0f68feee
--- /dev/null
+++ b/svg/bandaged.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bandana.svg b/svg/bandana.svg
new file mode 100644
index 000000000..5fcc70f9b
--- /dev/null
+++ b/svg/bandana.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bandit.svg b/svg/bandit.svg
new file mode 100644
index 000000000..a52f82d1d
--- /dev/null
+++ b/svg/bandit.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/banging-gavel.svg b/svg/banging-gavel.svg
new file mode 100644
index 000000000..0e541dc05
--- /dev/null
+++ b/svg/banging-gavel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/banjo.svg b/svg/banjo.svg
new file mode 100644
index 000000000..b05a4c177
--- /dev/null
+++ b/svg/banjo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bank.svg b/svg/bank.svg
new file mode 100644
index 000000000..338ee5d9b
--- /dev/null
+++ b/svg/bank.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/banknote.svg b/svg/banknote.svg
new file mode 100644
index 000000000..79de6989b
--- /dev/null
+++ b/svg/banknote.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/baobab.svg b/svg/baobab.svg
new file mode 100644
index 000000000..00860d281
--- /dev/null
+++ b/svg/baobab.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bar-stool.svg b/svg/bar-stool.svg
new file mode 100644
index 000000000..add535789
--- /dev/null
+++ b/svg/bar-stool.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/barbarian.svg b/svg/barbarian.svg
new file mode 100644
index 000000000..309e23e6b
--- /dev/null
+++ b/svg/barbarian.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/barbecue.svg b/svg/barbecue.svg
new file mode 100644
index 000000000..85625dd6b
--- /dev/null
+++ b/svg/barbecue.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/barbed-arrow.svg b/svg/barbed-arrow.svg
new file mode 100644
index 000000000..0ef65205a
--- /dev/null
+++ b/svg/barbed-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/barbed-coil.svg b/svg/barbed-coil.svg
new file mode 100644
index 000000000..ce4a53b34
--- /dev/null
+++ b/svg/barbed-coil.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/barbed-nails.svg b/svg/barbed-nails.svg
new file mode 100644
index 000000000..8da42148a
--- /dev/null
+++ b/svg/barbed-nails.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/barbed-spear.svg b/svg/barbed-spear.svg
new file mode 100644
index 000000000..9df6331f7
--- /dev/null
+++ b/svg/barbed-spear.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/barbed-star.svg b/svg/barbed-star.svg
new file mode 100644
index 000000000..916bfdf9e
--- /dev/null
+++ b/svg/barbed-star.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/barbed-sun.svg b/svg/barbed-sun.svg
new file mode 100644
index 000000000..08807996b
--- /dev/null
+++ b/svg/barbed-sun.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/barbed-wire.svg b/svg/barbed-wire.svg
new file mode 100644
index 000000000..cb8a9c756
--- /dev/null
+++ b/svg/barbed-wire.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/barbute.svg b/svg/barbute.svg
new file mode 100644
index 000000000..ae0bd7eaf
--- /dev/null
+++ b/svg/barbute.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/barefoot.svg b/svg/barefoot.svg
new file mode 100644
index 000000000..698831fba
--- /dev/null
+++ b/svg/barefoot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/barn-owl.svg b/svg/barn-owl.svg
new file mode 100644
index 000000000..202112ba0
--- /dev/null
+++ b/svg/barn-owl.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/barn.svg b/svg/barn.svg
new file mode 100644
index 000000000..069cf82ae
--- /dev/null
+++ b/svg/barn.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/barracks-tent.svg b/svg/barracks-tent.svg
new file mode 100644
index 000000000..fecb9cccb
--- /dev/null
+++ b/svg/barracks-tent.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/barracks.svg b/svg/barracks.svg
new file mode 100644
index 000000000..8f79a90da
--- /dev/null
+++ b/svg/barracks.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/barrel-leak.svg b/svg/barrel-leak.svg
new file mode 100644
index 000000000..4c32ea6bb
--- /dev/null
+++ b/svg/barrel-leak.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/barrel.svg b/svg/barrel.svg
new file mode 100644
index 000000000..d36f3b737
--- /dev/null
+++ b/svg/barrel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/barricade.svg b/svg/barricade.svg
new file mode 100644
index 000000000..995b360f6
--- /dev/null
+++ b/svg/barricade.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/barrier.svg b/svg/barrier.svg
new file mode 100644
index 000000000..ae601b467
--- /dev/null
+++ b/svg/barrier.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/base-dome.svg b/svg/base-dome.svg
new file mode 100644
index 000000000..c352955e6
--- /dev/null
+++ b/svg/base-dome.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/baseball-bat.svg b/svg/baseball-bat.svg
new file mode 100644
index 000000000..dab6513af
--- /dev/null
+++ b/svg/baseball-bat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/baseball-glove.svg b/svg/baseball-glove.svg
new file mode 100644
index 000000000..5d6f5f691
--- /dev/null
+++ b/svg/baseball-glove.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/basket.svg b/svg/basket.svg
new file mode 100644
index 000000000..0d68acc1e
--- /dev/null
+++ b/svg/basket.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/basketball-ball.svg b/svg/basketball-ball.svg
new file mode 100644
index 000000000..fbccd25bf
--- /dev/null
+++ b/svg/basketball-ball.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/basketball-basket.svg b/svg/basketball-basket.svg
new file mode 100644
index 000000000..21b279c49
--- /dev/null
+++ b/svg/basketball-basket.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/basketball-jersey.svg b/svg/basketball-jersey.svg
new file mode 100644
index 000000000..dd092d403
--- /dev/null
+++ b/svg/basketball-jersey.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/basset-hound-head.svg b/svg/basset-hound-head.svg
new file mode 100644
index 000000000..687983f2c
--- /dev/null
+++ b/svg/basset-hound-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bassoon.svg b/svg/bassoon.svg
new file mode 100644
index 000000000..cac95e8f3
--- /dev/null
+++ b/svg/bassoon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bastet.svg b/svg/bastet.svg
new file mode 100644
index 000000000..b35c4ef28
--- /dev/null
+++ b/svg/bastet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bat-2.svg b/svg/bat-2.svg
new file mode 100644
index 000000000..f8ab915a4
--- /dev/null
+++ b/svg/bat-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bat-blade.svg b/svg/bat-blade.svg
new file mode 100644
index 000000000..5ad8b1e43
--- /dev/null
+++ b/svg/bat-blade.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bat-leth.svg b/svg/bat-leth.svg
new file mode 100644
index 000000000..cdd71bf6d
--- /dev/null
+++ b/svg/bat-leth.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bat-mask.svg b/svg/bat-mask.svg
new file mode 100644
index 000000000..603be09ee
--- /dev/null
+++ b/svg/bat-mask.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bat-wing.svg b/svg/bat-wing.svg
new file mode 100644
index 000000000..a63b378e6
--- /dev/null
+++ b/svg/bat-wing.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bat.svg b/svg/bat.svg
new file mode 100644
index 000000000..5a6e2e035
--- /dev/null
+++ b/svg/bat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bathtub.svg b/svg/bathtub.svg
new file mode 100644
index 000000000..4842d9df8
--- /dev/null
+++ b/svg/bathtub.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/baton.svg b/svg/baton.svg
new file mode 100644
index 000000000..24d74c219
--- /dev/null
+++ b/svg/baton.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/battered-axe.svg b/svg/battered-axe.svg
new file mode 100644
index 000000000..95aaf25b2
--- /dev/null
+++ b/svg/battered-axe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/batteries.svg b/svg/batteries.svg
new file mode 100644
index 000000000..f88b6d5df
--- /dev/null
+++ b/svg/batteries.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/battery-0.svg b/svg/battery-0.svg
new file mode 100644
index 000000000..d7e038915
--- /dev/null
+++ b/svg/battery-0.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/battery-100.svg b/svg/battery-100.svg
new file mode 100644
index 000000000..80919361f
--- /dev/null
+++ b/svg/battery-100.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/battery-25.svg b/svg/battery-25.svg
new file mode 100644
index 000000000..43cb50451
--- /dev/null
+++ b/svg/battery-25.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/battery-50.svg b/svg/battery-50.svg
new file mode 100644
index 000000000..aaad7e7f4
--- /dev/null
+++ b/svg/battery-50.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/battery-75.svg b/svg/battery-75.svg
new file mode 100644
index 000000000..bf334515f
--- /dev/null
+++ b/svg/battery-75.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/battery-minus.svg b/svg/battery-minus.svg
new file mode 100644
index 000000000..d6557c8b8
--- /dev/null
+++ b/svg/battery-minus.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/battery-pack-alt.svg b/svg/battery-pack-alt.svg
new file mode 100644
index 000000000..1deb29b36
--- /dev/null
+++ b/svg/battery-pack-alt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/battery-pack.svg b/svg/battery-pack.svg
new file mode 100644
index 000000000..09f073736
--- /dev/null
+++ b/svg/battery-pack.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/battery-plus.svg b/svg/battery-plus.svg
new file mode 100644
index 000000000..35f86ea76
--- /dev/null
+++ b/svg/battery-plus.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/battle-axe.svg b/svg/battle-axe.svg
new file mode 100644
index 000000000..c4be66180
--- /dev/null
+++ b/svg/battle-axe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/battle-gear.svg b/svg/battle-gear.svg
new file mode 100644
index 000000000..da2a67206
--- /dev/null
+++ b/svg/battle-gear.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/battle-mech.svg b/svg/battle-mech.svg
new file mode 100644
index 000000000..9de96b6e1
--- /dev/null
+++ b/svg/battle-mech.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/battle-tank.svg b/svg/battle-tank.svg
new file mode 100644
index 000000000..eb3694edf
--- /dev/null
+++ b/svg/battle-tank.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/battleship.svg b/svg/battleship.svg
new file mode 100644
index 000000000..30c85c971
--- /dev/null
+++ b/svg/battleship.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/batwing-emblem.svg b/svg/batwing-emblem.svg
new file mode 100644
index 000000000..c21dad31d
--- /dev/null
+++ b/svg/batwing-emblem.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bayonet.svg b/svg/bayonet.svg
new file mode 100644
index 000000000..348e2f539
--- /dev/null
+++ b/svg/bayonet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/beach-bag.svg b/svg/beach-bag.svg
new file mode 100644
index 000000000..1f5b05252
--- /dev/null
+++ b/svg/beach-bag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/beach-ball.svg b/svg/beach-ball.svg
new file mode 100644
index 000000000..72dfbe7bd
--- /dev/null
+++ b/svg/beach-ball.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/beach-bucket.svg b/svg/beach-bucket.svg
new file mode 100644
index 000000000..3a1660138
--- /dev/null
+++ b/svg/beach-bucket.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/beam-satellite.svg b/svg/beam-satellite.svg
new file mode 100644
index 000000000..6119a6932
--- /dev/null
+++ b/svg/beam-satellite.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/beam-wake.svg b/svg/beam-wake.svg
new file mode 100644
index 000000000..b8882ce66
--- /dev/null
+++ b/svg/beam-wake.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/beams-aura.svg b/svg/beams-aura.svg
new file mode 100644
index 000000000..1f5ea2db8
--- /dev/null
+++ b/svg/beams-aura.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/beanstalk.svg b/svg/beanstalk.svg
new file mode 100644
index 000000000..b399499da
--- /dev/null
+++ b/svg/beanstalk.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bear-face.svg b/svg/bear-face.svg
new file mode 100644
index 000000000..f03b6ea9e
--- /dev/null
+++ b/svg/bear-face.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bear-head.svg b/svg/bear-head.svg
new file mode 100644
index 000000000..37977e16b
--- /dev/null
+++ b/svg/bear-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/beard.svg b/svg/beard.svg
new file mode 100644
index 000000000..0b75008e9
--- /dev/null
+++ b/svg/beard.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/beast-eye.svg b/svg/beast-eye.svg
new file mode 100644
index 000000000..c321d9307
--- /dev/null
+++ b/svg/beast-eye.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/beaver.svg b/svg/beaver.svg
new file mode 100644
index 000000000..9a7ec7f31
--- /dev/null
+++ b/svg/beaver.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bed-lamp.svg b/svg/bed-lamp.svg
new file mode 100644
index 000000000..ac0d6d67c
--- /dev/null
+++ b/svg/bed-lamp.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bed.svg b/svg/bed.svg
new file mode 100644
index 000000000..86d7a59da
--- /dev/null
+++ b/svg/bed.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bee.svg b/svg/bee.svg
new file mode 100644
index 000000000..924520f33
--- /dev/null
+++ b/svg/bee.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/beech.svg b/svg/beech.svg
new file mode 100644
index 000000000..fe21a496b
--- /dev/null
+++ b/svg/beech.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/beehive.svg b/svg/beehive.svg
new file mode 100644
index 000000000..ad9c5efdb
--- /dev/null
+++ b/svg/beehive.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/beer-bottle.svg b/svg/beer-bottle.svg
new file mode 100644
index 000000000..9d7f63d09
--- /dev/null
+++ b/svg/beer-bottle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/beer-horn.svg b/svg/beer-horn.svg
new file mode 100644
index 000000000..7dfe6aaf6
--- /dev/null
+++ b/svg/beer-horn.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/beer-stein.svg b/svg/beer-stein.svg
new file mode 100644
index 000000000..78db23124
--- /dev/null
+++ b/svg/beer-stein.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/beet.svg b/svg/beet.svg
new file mode 100644
index 000000000..f13a6e68a
--- /dev/null
+++ b/svg/beet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/beetle-shell.svg b/svg/beetle-shell.svg
new file mode 100644
index 000000000..c70253c70
--- /dev/null
+++ b/svg/beetle-shell.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/behold.svg b/svg/behold.svg
new file mode 100644
index 000000000..426225afc
--- /dev/null
+++ b/svg/behold.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/belgium.svg b/svg/belgium.svg
new file mode 100644
index 000000000..b4f0d8a92
--- /dev/null
+++ b/svg/belgium.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bell-pepper.svg b/svg/bell-pepper.svg
new file mode 100644
index 000000000..b12a34b3c
--- /dev/null
+++ b/svg/bell-pepper.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bell-shield.svg b/svg/bell-shield.svg
new file mode 100644
index 000000000..53d8638b5
--- /dev/null
+++ b/svg/bell-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bellows.svg b/svg/bellows.svg
new file mode 100644
index 000000000..4f3580804
--- /dev/null
+++ b/svg/bellows.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/belt-armor.svg b/svg/belt-armor.svg
new file mode 100644
index 000000000..9548dd263
--- /dev/null
+++ b/svg/belt-armor.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/belt-buckles.svg b/svg/belt-buckles.svg
new file mode 100644
index 000000000..768005917
--- /dev/null
+++ b/svg/belt-buckles.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/belt.svg b/svg/belt.svg
new file mode 100644
index 000000000..72ec1564a
--- /dev/null
+++ b/svg/belt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/berries-bowl.svg b/svg/berries-bowl.svg
new file mode 100644
index 000000000..a0415171c
--- /dev/null
+++ b/svg/berries-bowl.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/berry-bush.svg b/svg/berry-bush.svg
new file mode 100644
index 000000000..188c7ae1c
--- /dev/null
+++ b/svg/berry-bush.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bestial-fangs.svg b/svg/bestial-fangs.svg
new file mode 100644
index 000000000..5d9d23d24
--- /dev/null
+++ b/svg/bestial-fangs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/beveled-star.svg b/svg/beveled-star.svg
new file mode 100644
index 000000000..c925e96eb
--- /dev/null
+++ b/svg/beveled-star.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/biceps.svg b/svg/biceps.svg
new file mode 100644
index 000000000..de6a44540
--- /dev/null
+++ b/svg/biceps.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/big-diamond-ring.svg b/svg/big-diamond-ring.svg
new file mode 100644
index 000000000..799c88b8b
--- /dev/null
+++ b/svg/big-diamond-ring.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/big-egg.svg b/svg/big-egg.svg
new file mode 100644
index 000000000..0c1e4f4c4
--- /dev/null
+++ b/svg/big-egg.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/big-gear.svg b/svg/big-gear.svg
new file mode 100644
index 000000000..8b5cba41b
--- /dev/null
+++ b/svg/big-gear.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/big-wave.svg b/svg/big-wave.svg
new file mode 100644
index 000000000..ec55dfebd
--- /dev/null
+++ b/svg/big-wave.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/billed-cap.svg b/svg/billed-cap.svg
new file mode 100644
index 000000000..b6b8ab4b9
--- /dev/null
+++ b/svg/billed-cap.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bindle.svg b/svg/bindle.svg
new file mode 100644
index 000000000..b66351177
--- /dev/null
+++ b/svg/bindle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/binoculars.svg b/svg/binoculars.svg
new file mode 100644
index 000000000..4758e06a1
--- /dev/null
+++ b/svg/binoculars.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/biohazard.svg b/svg/biohazard.svg
new file mode 100644
index 000000000..8551346b5
--- /dev/null
+++ b/svg/biohazard.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/biplane.svg b/svg/biplane.svg
new file mode 100644
index 000000000..d1695b803
--- /dev/null
+++ b/svg/biplane.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/birch-trees.svg b/svg/birch-trees.svg
new file mode 100644
index 000000000..74be699c8
--- /dev/null
+++ b/svg/birch-trees.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bird-cage.svg b/svg/bird-cage.svg
new file mode 100644
index 000000000..c23de97c3
--- /dev/null
+++ b/svg/bird-cage.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bird-claw.svg b/svg/bird-claw.svg
new file mode 100644
index 000000000..a2f4ddb04
--- /dev/null
+++ b/svg/bird-claw.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bird-house.svg b/svg/bird-house.svg
new file mode 100644
index 000000000..1df4e2193
--- /dev/null
+++ b/svg/bird-house.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bird-limb.svg b/svg/bird-limb.svg
new file mode 100644
index 000000000..8da4f80e2
--- /dev/null
+++ b/svg/bird-limb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bird-mask.svg b/svg/bird-mask.svg
new file mode 100644
index 000000000..3f0f60561
--- /dev/null
+++ b/svg/bird-mask.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bird-twitter.svg b/svg/bird-twitter.svg
new file mode 100644
index 000000000..88f153522
--- /dev/null
+++ b/svg/bird-twitter.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bison.svg b/svg/bison.svg
new file mode 100644
index 000000000..a2e03aedf
--- /dev/null
+++ b/svg/bison.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/black-bar.svg b/svg/black-bar.svg
new file mode 100644
index 000000000..0e8385ebb
--- /dev/null
+++ b/svg/black-bar.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/black-belt.svg b/svg/black-belt.svg
new file mode 100644
index 000000000..92ae18940
--- /dev/null
+++ b/svg/black-belt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/black-book.svg b/svg/black-book.svg
new file mode 100644
index 000000000..d3ab712f7
--- /dev/null
+++ b/svg/black-book.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/black-bridge.svg b/svg/black-bridge.svg
new file mode 100644
index 000000000..fb78eb45c
--- /dev/null
+++ b/svg/black-bridge.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/black-cat.svg b/svg/black-cat.svg
new file mode 100644
index 000000000..5730880ed
--- /dev/null
+++ b/svg/black-cat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/black-flag.svg b/svg/black-flag.svg
new file mode 100644
index 000000000..bc6b8ed45
--- /dev/null
+++ b/svg/black-flag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/black-hand-shield.svg b/svg/black-hand-shield.svg
new file mode 100644
index 000000000..c24021cde
--- /dev/null
+++ b/svg/black-hand-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/black-hole-bolas.svg b/svg/black-hole-bolas.svg
new file mode 100644
index 000000000..dc3c0153c
--- /dev/null
+++ b/svg/black-hole-bolas.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/black-knight-helm.svg b/svg/black-knight-helm.svg
new file mode 100644
index 000000000..2e48a0739
--- /dev/null
+++ b/svg/black-knight-helm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/black-sea.svg b/svg/black-sea.svg
new file mode 100644
index 000000000..94e981d20
--- /dev/null
+++ b/svg/black-sea.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/blackball.svg b/svg/blackball.svg
new file mode 100644
index 000000000..0af73b2e8
--- /dev/null
+++ b/svg/blackball.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/blackcurrant.svg b/svg/blackcurrant.svg
new file mode 100644
index 000000000..a64bd506f
--- /dev/null
+++ b/svg/blackcurrant.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/blacksmith.svg b/svg/blacksmith.svg
new file mode 100644
index 000000000..be25bd74f
--- /dev/null
+++ b/svg/blacksmith.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/blade-bite.svg b/svg/blade-bite.svg
new file mode 100644
index 000000000..afe9b150a
--- /dev/null
+++ b/svg/blade-bite.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/blade-drag.svg b/svg/blade-drag.svg
new file mode 100644
index 000000000..f6539e163
--- /dev/null
+++ b/svg/blade-drag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/blade-fall.svg b/svg/blade-fall.svg
new file mode 100644
index 000000000..8024cd7e6
--- /dev/null
+++ b/svg/blade-fall.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/blanket.svg b/svg/blanket.svg
new file mode 100644
index 000000000..326602921
--- /dev/null
+++ b/svg/blanket.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/blast.svg b/svg/blast.svg
new file mode 100644
index 000000000..375655703
--- /dev/null
+++ b/svg/blast.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/blaster.svg b/svg/blaster.svg
new file mode 100644
index 000000000..7583a699f
--- /dev/null
+++ b/svg/blaster.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bleeding-eye.svg b/svg/bleeding-eye.svg
new file mode 100644
index 000000000..6339dfd0f
--- /dev/null
+++ b/svg/bleeding-eye.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bleeding-heart.svg b/svg/bleeding-heart.svg
new file mode 100644
index 000000000..521af9953
--- /dev/null
+++ b/svg/bleeding-heart.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bleeding-wound.svg b/svg/bleeding-wound.svg
new file mode 100644
index 000000000..80aef452d
--- /dev/null
+++ b/svg/bleeding-wound.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/blender.svg b/svg/blender.svg
new file mode 100644
index 000000000..776723859
--- /dev/null
+++ b/svg/blender.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/blindfold.svg b/svg/blindfold.svg
new file mode 100644
index 000000000..634706f16
--- /dev/null
+++ b/svg/blindfold.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/block-house.svg b/svg/block-house.svg
new file mode 100644
index 000000000..2ed914086
--- /dev/null
+++ b/svg/block-house.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/blood.svg b/svg/blood.svg
new file mode 100644
index 000000000..e70d6dfd6
--- /dev/null
+++ b/svg/blood.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bloody-stash.svg b/svg/bloody-stash.svg
new file mode 100644
index 000000000..7a741f5ac
--- /dev/null
+++ b/svg/bloody-stash.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bloody-sword.svg b/svg/bloody-sword.svg
new file mode 100644
index 000000000..8d9dbd1e9
--- /dev/null
+++ b/svg/bloody-sword.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/blunderbuss.svg b/svg/blunderbuss.svg
new file mode 100644
index 000000000..2c4f97ef2
--- /dev/null
+++ b/svg/blunderbuss.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bo.svg b/svg/bo.svg
new file mode 100644
index 000000000..b03963bba
--- /dev/null
+++ b/svg/bo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/boar-ensign.svg b/svg/boar-ensign.svg
new file mode 100644
index 000000000..17e949b06
--- /dev/null
+++ b/svg/boar-ensign.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/boar-tusks.svg b/svg/boar-tusks.svg
new file mode 100644
index 000000000..d7214a985
--- /dev/null
+++ b/svg/boar-tusks.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/boar.svg b/svg/boar.svg
new file mode 100644
index 000000000..0eb476d5a
--- /dev/null
+++ b/svg/boar.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/boarding-pass.svg b/svg/boarding-pass.svg
new file mode 100644
index 000000000..86a8e6527
--- /dev/null
+++ b/svg/boarding-pass.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/boat-engine.svg b/svg/boat-engine.svg
new file mode 100644
index 000000000..4452e0974
--- /dev/null
+++ b/svg/boat-engine.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/boat-fishing.svg b/svg/boat-fishing.svg
new file mode 100644
index 000000000..866fcd929
--- /dev/null
+++ b/svg/boat-fishing.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/boat-horizon.svg b/svg/boat-horizon.svg
new file mode 100644
index 000000000..63295522c
--- /dev/null
+++ b/svg/boat-horizon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/boat-propeller.svg b/svg/boat-propeller.svg
new file mode 100644
index 000000000..d84743af5
--- /dev/null
+++ b/svg/boat-propeller.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/boba.svg b/svg/boba.svg
new file mode 100644
index 000000000..c1d8fe5a1
--- /dev/null
+++ b/svg/boba.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/body-balance.svg b/svg/body-balance.svg
new file mode 100644
index 000000000..a0409b8b8
--- /dev/null
+++ b/svg/body-balance.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/body-height.svg b/svg/body-height.svg
new file mode 100644
index 000000000..6236dadb7
--- /dev/null
+++ b/svg/body-height.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/body-swapping.svg b/svg/body-swapping.svg
new file mode 100644
index 000000000..0e4cb7369
--- /dev/null
+++ b/svg/body-swapping.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/boiling-bubbles.svg b/svg/boiling-bubbles.svg
new file mode 100644
index 000000000..0b0b9dee6
--- /dev/null
+++ b/svg/boiling-bubbles.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bok-choy.svg b/svg/bok-choy.svg
new file mode 100644
index 000000000..cbc28c4af
--- /dev/null
+++ b/svg/bok-choy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bolas.svg b/svg/bolas.svg
new file mode 100644
index 000000000..09f0df611
--- /dev/null
+++ b/svg/bolas.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bolivia.svg b/svg/bolivia.svg
new file mode 100644
index 000000000..100ba87a7
--- /dev/null
+++ b/svg/bolivia.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bolt-bomb.svg b/svg/bolt-bomb.svg
new file mode 100644
index 000000000..0a0265cf0
--- /dev/null
+++ b/svg/bolt-bomb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bolt-cutter.svg b/svg/bolt-cutter.svg
new file mode 100644
index 000000000..e9e40ccbf
--- /dev/null
+++ b/svg/bolt-cutter.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bolt-drop.svg b/svg/bolt-drop.svg
new file mode 100644
index 000000000..697e314be
--- /dev/null
+++ b/svg/bolt-drop.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bolt-eye.svg b/svg/bolt-eye.svg
new file mode 100644
index 000000000..4deffe64c
--- /dev/null
+++ b/svg/bolt-eye.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bolt-saw.svg b/svg/bolt-saw.svg
new file mode 100644
index 000000000..077e15ae5
--- /dev/null
+++ b/svg/bolt-saw.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bolt-shield.svg b/svg/bolt-shield.svg
new file mode 100644
index 000000000..23b4c23f3
--- /dev/null
+++ b/svg/bolt-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bolt-spell-cast.svg b/svg/bolt-spell-cast.svg
new file mode 100644
index 000000000..6564fcee1
--- /dev/null
+++ b/svg/bolt-spell-cast.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bolter-gun.svg b/svg/bolter-gun.svg
new file mode 100644
index 000000000..86b4adc09
--- /dev/null
+++ b/svg/bolter-gun.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bomber.svg b/svg/bomber.svg
new file mode 100644
index 000000000..81e5e1ae9
--- /dev/null
+++ b/svg/bomber.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bombing-run.svg b/svg/bombing-run.svg
new file mode 100644
index 000000000..31248580f
--- /dev/null
+++ b/svg/bombing-run.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bone-gnawer.svg b/svg/bone-gnawer.svg
new file mode 100644
index 000000000..2c9fc3653
--- /dev/null
+++ b/svg/bone-gnawer.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bone-knife-2.svg b/svg/bone-knife-2.svg
new file mode 100644
index 000000000..ed56b54a1
--- /dev/null
+++ b/svg/bone-knife-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bone-knife.svg b/svg/bone-knife.svg
new file mode 100644
index 000000000..a734daf82
--- /dev/null
+++ b/svg/bone-knife.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bone-mace.svg b/svg/bone-mace.svg
new file mode 100644
index 000000000..10520a1fc
--- /dev/null
+++ b/svg/bone-mace.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bonsai-tree.svg b/svg/bonsai-tree.svg
new file mode 100644
index 000000000..151056214
--- /dev/null
+++ b/svg/bonsai-tree.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/book-aura.svg b/svg/book-aura.svg
new file mode 100644
index 000000000..3de4331fb
--- /dev/null
+++ b/svg/book-aura.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/book-cover-2.svg b/svg/book-cover-2.svg
new file mode 100644
index 000000000..4d2588270
--- /dev/null
+++ b/svg/book-cover-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/book-cover.svg b/svg/book-cover.svg
new file mode 100644
index 000000000..b7e7bc679
--- /dev/null
+++ b/svg/book-cover.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/book-pile.svg b/svg/book-pile.svg
new file mode 100644
index 000000000..1c38ab8bf
--- /dev/null
+++ b/svg/book-pile.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/book-storm.svg b/svg/book-storm.svg
new file mode 100644
index 000000000..162bf7488
--- /dev/null
+++ b/svg/book-storm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bookmark.svg b/svg/bookmark.svg
new file mode 100644
index 000000000..47cda4cf8
--- /dev/null
+++ b/svg/bookmark.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bookmarklet.svg b/svg/bookmarklet.svg
new file mode 100644
index 000000000..b517fc20c
--- /dev/null
+++ b/svg/bookmarklet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bookshelf.svg b/svg/bookshelf.svg
new file mode 100644
index 000000000..2da6834ec
--- /dev/null
+++ b/svg/bookshelf.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/boombox.svg b/svg/boombox.svg
new file mode 100644
index 000000000..c6481e0c3
--- /dev/null
+++ b/svg/boombox.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/boomerang-cross.svg b/svg/boomerang-cross.svg
new file mode 100644
index 000000000..5feb64929
--- /dev/null
+++ b/svg/boomerang-cross.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/boomerang-sun.svg b/svg/boomerang-sun.svg
new file mode 100644
index 000000000..e1c5d6580
--- /dev/null
+++ b/svg/boomerang-sun.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/boomerang.svg b/svg/boomerang.svg
new file mode 100644
index 000000000..7c030e398
--- /dev/null
+++ b/svg/boomerang.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/boot-kick.svg b/svg/boot-kick.svg
new file mode 100644
index 000000000..b4303c599
--- /dev/null
+++ b/svg/boot-kick.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/boot-prints.svg b/svg/boot-prints.svg
new file mode 100644
index 000000000..0847ed283
--- /dev/null
+++ b/svg/boot-prints.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/boot-stomp.svg b/svg/boot-stomp.svg
new file mode 100644
index 000000000..40af8461b
--- /dev/null
+++ b/svg/boot-stomp.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/boots.svg b/svg/boots.svg
new file mode 100644
index 000000000..853e3842e
--- /dev/null
+++ b/svg/boots.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/booze.svg b/svg/booze.svg
new file mode 100644
index 000000000..67efb9e49
--- /dev/null
+++ b/svg/booze.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bordered-shield.svg b/svg/bordered-shield.svg
new file mode 100644
index 000000000..03464dc55
--- /dev/null
+++ b/svg/bordered-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/boss-key.svg b/svg/boss-key.svg
new file mode 100644
index 000000000..057f55f7f
--- /dev/null
+++ b/svg/boss-key.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bottle-cap.svg b/svg/bottle-cap.svg
new file mode 100644
index 000000000..a26bd616c
--- /dev/null
+++ b/svg/bottle-cap.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bottle-vapors.svg b/svg/bottle-vapors.svg
new file mode 100644
index 000000000..b644e97a9
--- /dev/null
+++ b/svg/bottle-vapors.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bottled-bolt.svg b/svg/bottled-bolt.svg
new file mode 100644
index 000000000..91bd2bb35
--- /dev/null
+++ b/svg/bottled-bolt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bottled-shadow.svg b/svg/bottled-shadow.svg
new file mode 100644
index 000000000..aa6e36af6
--- /dev/null
+++ b/svg/bottled-shadow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bottom-right-3d-arrow.svg b/svg/bottom-right-3d-arrow.svg
new file mode 100644
index 000000000..40683a46e
--- /dev/null
+++ b/svg/bottom-right-3d-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/boulder-dash.svg b/svg/boulder-dash.svg
new file mode 100644
index 000000000..2f73a5044
--- /dev/null
+++ b/svg/boulder-dash.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bouncing-spring.svg b/svg/bouncing-spring.svg
new file mode 100644
index 000000000..aff60e49f
--- /dev/null
+++ b/svg/bouncing-spring.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bouncing-sword.svg b/svg/bouncing-sword.svg
new file mode 100644
index 000000000..d8f33d06e
--- /dev/null
+++ b/svg/bouncing-sword.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bow-arrow.svg b/svg/bow-arrow.svg
new file mode 100644
index 000000000..b251c818b
--- /dev/null
+++ b/svg/bow-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bow-string.svg b/svg/bow-string.svg
new file mode 100644
index 000000000..dd1249e42
--- /dev/null
+++ b/svg/bow-string.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bow-tie-ribbon.svg b/svg/bow-tie-ribbon.svg
new file mode 100644
index 000000000..9c69381d6
--- /dev/null
+++ b/svg/bow-tie-ribbon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bow-tie.svg b/svg/bow-tie.svg
new file mode 100644
index 000000000..9ba914028
--- /dev/null
+++ b/svg/bow-tie.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bowels.svg b/svg/bowels.svg
new file mode 100644
index 000000000..2be3ee5dc
--- /dev/null
+++ b/svg/bowels.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bowen-knot.svg b/svg/bowen-knot.svg
new file mode 100644
index 000000000..3a494a515
--- /dev/null
+++ b/svg/bowen-knot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bowie-knife-2.svg b/svg/bowie-knife-2.svg
new file mode 100644
index 000000000..44a312818
--- /dev/null
+++ b/svg/bowie-knife-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bowie-knife.svg b/svg/bowie-knife.svg
new file mode 100644
index 000000000..e5d23f9a9
--- /dev/null
+++ b/svg/bowie-knife.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bowl-of-rice.svg b/svg/bowl-of-rice.svg
new file mode 100644
index 000000000..6e2b4ab76
--- /dev/null
+++ b/svg/bowl-of-rice.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bowl-spiral.svg b/svg/bowl-spiral.svg
new file mode 100644
index 000000000..6ea613be7
--- /dev/null
+++ b/svg/bowl-spiral.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bowling-alley.svg b/svg/bowling-alley.svg
new file mode 100644
index 000000000..a5bcff5e9
--- /dev/null
+++ b/svg/bowling-alley.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bowling-pin.svg b/svg/bowling-pin.svg
new file mode 100644
index 000000000..699f532e2
--- /dev/null
+++ b/svg/bowling-pin.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bowling-propulsion.svg b/svg/bowling-propulsion.svg
new file mode 100644
index 000000000..337596172
--- /dev/null
+++ b/svg/bowling-propulsion.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bowling-strike.svg b/svg/bowling-strike.svg
new file mode 100644
index 000000000..07c8ef9a3
--- /dev/null
+++ b/svg/bowling-strike.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bowman.svg b/svg/bowman.svg
new file mode 100644
index 000000000..f95cba60c
--- /dev/null
+++ b/svg/bowman.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/box-cutter.svg b/svg/box-cutter.svg
new file mode 100644
index 000000000..f75509ec0
--- /dev/null
+++ b/svg/box-cutter.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/box-trap.svg b/svg/box-trap.svg
new file mode 100644
index 000000000..bf797fdab
--- /dev/null
+++ b/svg/box-trap.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/box-unpacking.svg b/svg/box-unpacking.svg
new file mode 100644
index 000000000..6e01883f1
--- /dev/null
+++ b/svg/box-unpacking.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/boxing-glove-surprise.svg b/svg/boxing-glove-surprise.svg
new file mode 100644
index 000000000..52a11ddd7
--- /dev/null
+++ b/svg/boxing-glove-surprise.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/boxing-glove.svg b/svg/boxing-glove.svg
new file mode 100644
index 000000000..e783807e5
--- /dev/null
+++ b/svg/boxing-glove.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/boxing-ring.svg b/svg/boxing-ring.svg
new file mode 100644
index 000000000..048156ab4
--- /dev/null
+++ b/svg/boxing-ring.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bracer.svg b/svg/bracer.svg
new file mode 100644
index 000000000..8635365e6
--- /dev/null
+++ b/svg/bracer.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bracers.svg b/svg/bracers.svg
new file mode 100644
index 000000000..ea03ba8e2
--- /dev/null
+++ b/svg/bracers.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/brain-dump.svg b/svg/brain-dump.svg
new file mode 100644
index 000000000..7a098fc7b
--- /dev/null
+++ b/svg/brain-dump.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/brain-freeze.svg b/svg/brain-freeze.svg
new file mode 100644
index 000000000..7e18ea348
--- /dev/null
+++ b/svg/brain-freeze.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/brain-leak.svg b/svg/brain-leak.svg
new file mode 100644
index 000000000..275ae64c5
--- /dev/null
+++ b/svg/brain-leak.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/brain-stem.svg b/svg/brain-stem.svg
new file mode 100644
index 000000000..5ac2cf8d3
--- /dev/null
+++ b/svg/brain-stem.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/brain-tentacle.svg b/svg/brain-tentacle.svg
new file mode 100644
index 000000000..bc39c5c4d
--- /dev/null
+++ b/svg/brain-tentacle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/brain.svg b/svg/brain.svg
new file mode 100644
index 000000000..7a23fa8f9
--- /dev/null
+++ b/svg/brain.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/brainstorm.svg b/svg/brainstorm.svg
new file mode 100644
index 000000000..404f4d128
--- /dev/null
+++ b/svg/brainstorm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/branch-arrow.svg b/svg/branch-arrow.svg
new file mode 100644
index 000000000..cf6cf8432
--- /dev/null
+++ b/svg/branch-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/brandy-bottle.svg b/svg/brandy-bottle.svg
new file mode 100644
index 000000000..693fdd0f3
--- /dev/null
+++ b/svg/brandy-bottle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/brasero.svg b/svg/brasero.svg
new file mode 100644
index 000000000..c6887fc34
--- /dev/null
+++ b/svg/brasero.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/brass-eye.svg b/svg/brass-eye.svg
new file mode 100644
index 000000000..fe2c7ebf6
--- /dev/null
+++ b/svg/brass-eye.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/brass-knuckles.svg b/svg/brass-knuckles.svg
new file mode 100644
index 000000000..fca4e2c07
--- /dev/null
+++ b/svg/brass-knuckles.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/brazil-flag.svg b/svg/brazil-flag.svg
new file mode 100644
index 000000000..5b0b87ce6
--- /dev/null
+++ b/svg/brazil-flag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/brazil.svg b/svg/brazil.svg
new file mode 100644
index 000000000..0c22c494f
--- /dev/null
+++ b/svg/brazil.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bread-slice.svg b/svg/bread-slice.svg
new file mode 100644
index 000000000..ad94e2f96
--- /dev/null
+++ b/svg/bread-slice.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bread.svg b/svg/bread.svg
new file mode 100644
index 000000000..75a471cd3
--- /dev/null
+++ b/svg/bread.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/breaking-chain.svg b/svg/breaking-chain.svg
new file mode 100644
index 000000000..650d1b0e1
--- /dev/null
+++ b/svg/breaking-chain.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/breastplate.svg b/svg/breastplate.svg
new file mode 100644
index 000000000..dddc8a096
--- /dev/null
+++ b/svg/breastplate.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/brick-pile.svg b/svg/brick-pile.svg
new file mode 100644
index 000000000..8c176a031
--- /dev/null
+++ b/svg/brick-pile.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/brick-wall.svg b/svg/brick-wall.svg
new file mode 100644
index 000000000..2cc58d444
--- /dev/null
+++ b/svg/brick-wall.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bridge.svg b/svg/bridge.svg
new file mode 100644
index 000000000..017689964
--- /dev/null
+++ b/svg/bridge.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/briefcase.svg b/svg/briefcase.svg
new file mode 100644
index 000000000..aa1c54296
--- /dev/null
+++ b/svg/briefcase.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bright-explosion.svg b/svg/bright-explosion.svg
new file mode 100644
index 000000000..3a3c6e1aa
--- /dev/null
+++ b/svg/bright-explosion.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/broad-dagger.svg b/svg/broad-dagger.svg
new file mode 100644
index 000000000..5ec33df56
--- /dev/null
+++ b/svg/broad-dagger.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/broadhead-arrow.svg b/svg/broadhead-arrow.svg
new file mode 100644
index 000000000..1a0a00bd4
--- /dev/null
+++ b/svg/broadhead-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/broadsword.svg b/svg/broadsword.svg
new file mode 100644
index 000000000..a8995a903
--- /dev/null
+++ b/svg/broadsword.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/broccoli.svg b/svg/broccoli.svg
new file mode 100644
index 000000000..aa73e57d4
--- /dev/null
+++ b/svg/broccoli.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/brodie-helmet.svg b/svg/brodie-helmet.svg
new file mode 100644
index 000000000..5e4a9eedc
--- /dev/null
+++ b/svg/brodie-helmet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/broken-arrow.svg b/svg/broken-arrow.svg
new file mode 100644
index 000000000..4f4c841cd
--- /dev/null
+++ b/svg/broken-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/broken-axe.svg b/svg/broken-axe.svg
new file mode 100644
index 000000000..a0f0faa9a
--- /dev/null
+++ b/svg/broken-axe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/broken-bone.svg b/svg/broken-bone.svg
new file mode 100644
index 000000000..4fd17de9b
--- /dev/null
+++ b/svg/broken-bone.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/broken-bottle.svg b/svg/broken-bottle.svg
new file mode 100644
index 000000000..52285988a
--- /dev/null
+++ b/svg/broken-bottle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/broken-heart-zone.svg b/svg/broken-heart-zone.svg
new file mode 100644
index 000000000..db1c2e258
--- /dev/null
+++ b/svg/broken-heart-zone.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/broken-heart.svg b/svg/broken-heart.svg
new file mode 100644
index 000000000..9630ba519
--- /dev/null
+++ b/svg/broken-heart.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/broken-pottery.svg b/svg/broken-pottery.svg
new file mode 100644
index 000000000..44630bb1b
--- /dev/null
+++ b/svg/broken-pottery.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/broken-ribbon.svg b/svg/broken-ribbon.svg
new file mode 100644
index 000000000..8aee6e686
--- /dev/null
+++ b/svg/broken-ribbon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/broken-shield.svg b/svg/broken-shield.svg
new file mode 100644
index 000000000..61f7f7606
--- /dev/null
+++ b/svg/broken-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/broken-skull.svg b/svg/broken-skull.svg
new file mode 100644
index 000000000..9e1d71e36
--- /dev/null
+++ b/svg/broken-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/broken-tablet.svg b/svg/broken-tablet.svg
new file mode 100644
index 000000000..0da20e1a5
--- /dev/null
+++ b/svg/broken-tablet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/broken-wall.svg b/svg/broken-wall.svg
new file mode 100644
index 000000000..296e1b4bd
--- /dev/null
+++ b/svg/broken-wall.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/broom.svg b/svg/broom.svg
new file mode 100644
index 000000000..5f7a0f584
--- /dev/null
+++ b/svg/broom.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/brutal-helm.svg b/svg/brutal-helm.svg
new file mode 100644
index 000000000..f4d6f6d78
--- /dev/null
+++ b/svg/brutal-helm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/brute.svg b/svg/brute.svg
new file mode 100644
index 000000000..2198cdac6
--- /dev/null
+++ b/svg/brute.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bubble-field.svg b/svg/bubble-field.svg
new file mode 100644
index 000000000..6c7504b9b
--- /dev/null
+++ b/svg/bubble-field.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bubbles.svg b/svg/bubbles.svg
new file mode 100644
index 000000000..07647ac72
--- /dev/null
+++ b/svg/bubbles.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bubbling-beam.svg b/svg/bubbling-beam.svg
new file mode 100644
index 000000000..14883325b
--- /dev/null
+++ b/svg/bubbling-beam.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bubbling-bowl.svg b/svg/bubbling-bowl.svg
new file mode 100644
index 000000000..b816610c6
--- /dev/null
+++ b/svg/bubbling-bowl.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bubbling-flask.svg b/svg/bubbling-flask.svg
new file mode 100644
index 000000000..20811bfa1
--- /dev/null
+++ b/svg/bubbling-flask.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bud.svg b/svg/bud.svg
new file mode 100644
index 000000000..351b7c79c
--- /dev/null
+++ b/svg/bud.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/buffalo-head.svg b/svg/buffalo-head.svg
new file mode 100644
index 000000000..8bb26f18b
--- /dev/null
+++ b/svg/buffalo-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bug-net.svg b/svg/bug-net.svg
new file mode 100644
index 000000000..67ba98d2a
--- /dev/null
+++ b/svg/bug-net.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bugle-call.svg b/svg/bugle-call.svg
new file mode 100644
index 000000000..ea941c827
--- /dev/null
+++ b/svg/bugle-call.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bulb.svg b/svg/bulb.svg
new file mode 100644
index 000000000..085018a28
--- /dev/null
+++ b/svg/bulb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bulgaria.svg b/svg/bulgaria.svg
new file mode 100644
index 000000000..8a81d5ece
--- /dev/null
+++ b/svg/bulgaria.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bull-horns.svg b/svg/bull-horns.svg
new file mode 100644
index 000000000..2b2faaca8
--- /dev/null
+++ b/svg/bull-horns.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bull.svg b/svg/bull.svg
new file mode 100644
index 000000000..e023be6a7
--- /dev/null
+++ b/svg/bull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bulldozer.svg b/svg/bulldozer.svg
new file mode 100644
index 000000000..dd62aefea
--- /dev/null
+++ b/svg/bulldozer.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bullet-bill.svg b/svg/bullet-bill.svg
new file mode 100644
index 000000000..0ce93a684
--- /dev/null
+++ b/svg/bullet-bill.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bullet-impacts.svg b/svg/bullet-impacts.svg
new file mode 100644
index 000000000..8f04f5f98
--- /dev/null
+++ b/svg/bullet-impacts.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bullets.svg b/svg/bullets.svg
new file mode 100644
index 000000000..975db57b0
--- /dev/null
+++ b/svg/bullets.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bullseye.svg b/svg/bullseye.svg
new file mode 100644
index 000000000..6284b5f03
--- /dev/null
+++ b/svg/bullseye.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bully-minion.svg b/svg/bully-minion.svg
new file mode 100644
index 000000000..0bab2bb79
--- /dev/null
+++ b/svg/bully-minion.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bundle-grenade.svg b/svg/bundle-grenade.svg
new file mode 100644
index 000000000..80195be7a
--- /dev/null
+++ b/svg/bundle-grenade.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bunk-beds.svg b/svg/bunk-beds.svg
new file mode 100644
index 000000000..7d407e3c3
--- /dev/null
+++ b/svg/bunk-beds.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bunker-assault.svg b/svg/bunker-assault.svg
new file mode 100644
index 000000000..69e2014f2
--- /dev/null
+++ b/svg/bunker-assault.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bunker.svg b/svg/bunker.svg
new file mode 100644
index 000000000..0d5a2d2c7
--- /dev/null
+++ b/svg/bunker.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bunny-slippers.svg b/svg/bunny-slippers.svg
new file mode 100644
index 000000000..7efb471e5
--- /dev/null
+++ b/svg/bunny-slippers.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/buoy.svg b/svg/buoy.svg
new file mode 100644
index 000000000..c7b5c7eba
--- /dev/null
+++ b/svg/buoy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/burn.svg b/svg/burn.svg
new file mode 100644
index 000000000..721cf24c8
--- /dev/null
+++ b/svg/burn.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/burning-blobs.svg b/svg/burning-blobs.svg
new file mode 100644
index 000000000..3d0acd270
--- /dev/null
+++ b/svg/burning-blobs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/burning-book.svg b/svg/burning-book.svg
new file mode 100644
index 000000000..ccac02df4
--- /dev/null
+++ b/svg/burning-book.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/burning-dot.svg b/svg/burning-dot.svg
new file mode 100644
index 000000000..6876cb5c6
--- /dev/null
+++ b/svg/burning-dot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/burning-embers.svg b/svg/burning-embers.svg
new file mode 100644
index 000000000..c2c2a81dd
--- /dev/null
+++ b/svg/burning-embers.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/burning-eye.svg b/svg/burning-eye.svg
new file mode 100644
index 000000000..41dfc76af
--- /dev/null
+++ b/svg/burning-eye.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/burning-forest.svg b/svg/burning-forest.svg
new file mode 100644
index 000000000..6ab5952d5
--- /dev/null
+++ b/svg/burning-forest.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/burning-meteor.svg b/svg/burning-meteor.svg
new file mode 100644
index 000000000..44cc7a861
--- /dev/null
+++ b/svg/burning-meteor.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/burning-passion.svg b/svg/burning-passion.svg
new file mode 100644
index 000000000..a408382b1
--- /dev/null
+++ b/svg/burning-passion.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/burning-round-shot.svg b/svg/burning-round-shot.svg
new file mode 100644
index 000000000..e7aeb7d1e
--- /dev/null
+++ b/svg/burning-round-shot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/burning-skull.svg b/svg/burning-skull.svg
new file mode 100644
index 000000000..7cca8a7bc
--- /dev/null
+++ b/svg/burning-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/burning-tree.svg b/svg/burning-tree.svg
new file mode 100644
index 000000000..9e0487772
--- /dev/null
+++ b/svg/burning-tree.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/burst-blob.svg b/svg/burst-blob.svg
new file mode 100644
index 000000000..03df8870d
--- /dev/null
+++ b/svg/burst-blob.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bus-doors.svg b/svg/bus-doors.svg
new file mode 100644
index 000000000..9c072151f
--- /dev/null
+++ b/svg/bus-doors.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bus-stop.svg b/svg/bus-stop.svg
new file mode 100644
index 000000000..da7983d6a
--- /dev/null
+++ b/svg/bus-stop.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/bus.svg b/svg/bus.svg
new file mode 100644
index 000000000..75e6832d5
--- /dev/null
+++ b/svg/bus.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/butter-toast.svg b/svg/butter-toast.svg
new file mode 100644
index 000000000..142f3d3b6
--- /dev/null
+++ b/svg/butter-toast.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/butter.svg b/svg/butter.svg
new file mode 100644
index 000000000..fe90bcca2
--- /dev/null
+++ b/svg/butter.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/butterfly-flower.svg b/svg/butterfly-flower.svg
new file mode 100644
index 000000000..a087e8fdc
--- /dev/null
+++ b/svg/butterfly-flower.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/butterfly-knife-2.svg b/svg/butterfly-knife-2.svg
new file mode 100644
index 000000000..8b35be5a0
--- /dev/null
+++ b/svg/butterfly-knife-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/butterfly-knife.svg b/svg/butterfly-knife.svg
new file mode 100644
index 000000000..1fbff21b6
--- /dev/null
+++ b/svg/butterfly-knife.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/butterfly-warning.svg b/svg/butterfly-warning.svg
new file mode 100644
index 000000000..802fdb6ac
--- /dev/null
+++ b/svg/butterfly-warning.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/butterfly.svg b/svg/butterfly.svg
new file mode 100644
index 000000000..c326c1711
--- /dev/null
+++ b/svg/butterfly.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/button-finger.svg b/svg/button-finger.svg
new file mode 100644
index 000000000..f95c260c7
--- /dev/null
+++ b/svg/button-finger.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/buy-card.svg b/svg/buy-card.svg
new file mode 100644
index 000000000..6fc42921c
--- /dev/null
+++ b/svg/buy-card.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/byzantin-temple.svg b/svg/byzantin-temple.svg
new file mode 100644
index 000000000..4cd2b850a
--- /dev/null
+++ b/svg/byzantin-temple.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/c96.svg b/svg/c96.svg
new file mode 100644
index 000000000..893fa9e01
--- /dev/null
+++ b/svg/c96.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cabbage.svg b/svg/cabbage.svg
new file mode 100644
index 000000000..7696fb70a
--- /dev/null
+++ b/svg/cabbage.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cable-stayed-bridge.svg b/svg/cable-stayed-bridge.svg
new file mode 100644
index 000000000..da7d2781f
--- /dev/null
+++ b/svg/cable-stayed-bridge.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cactus-pot.svg b/svg/cactus-pot.svg
new file mode 100644
index 000000000..aa2055e4a
--- /dev/null
+++ b/svg/cactus-pot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cactus-tap.svg b/svg/cactus-tap.svg
new file mode 100644
index 000000000..a687e480c
--- /dev/null
+++ b/svg/cactus-tap.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cactus.svg b/svg/cactus.svg
new file mode 100644
index 000000000..d477a1ca1
--- /dev/null
+++ b/svg/cactus.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cadillac-helm.svg b/svg/cadillac-helm.svg
new file mode 100644
index 000000000..84e581d03
--- /dev/null
+++ b/svg/cadillac-helm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/caduceus.svg b/svg/caduceus.svg
new file mode 100644
index 000000000..ef602d93e
--- /dev/null
+++ b/svg/caduceus.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/caesar.svg b/svg/caesar.svg
new file mode 100644
index 000000000..155579cb9
--- /dev/null
+++ b/svg/caesar.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cage.svg b/svg/cage.svg
new file mode 100644
index 000000000..488b5de9a
--- /dev/null
+++ b/svg/cage.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/caged-ball.svg b/svg/caged-ball.svg
new file mode 100644
index 000000000..a67d7a22a
--- /dev/null
+++ b/svg/caged-ball.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cake-slice.svg b/svg/cake-slice.svg
new file mode 100644
index 000000000..4204a618a
--- /dev/null
+++ b/svg/cake-slice.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/calavera.svg b/svg/calavera.svg
new file mode 100644
index 000000000..fe9a013f6
--- /dev/null
+++ b/svg/calavera.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/calculator.svg b/svg/calculator.svg
new file mode 100644
index 000000000..d081370c6
--- /dev/null
+++ b/svg/calculator.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/caldera.svg b/svg/caldera.svg
new file mode 100644
index 000000000..45fafa7ce
--- /dev/null
+++ b/svg/caldera.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/calendar-half-year.svg b/svg/calendar-half-year.svg
new file mode 100644
index 000000000..4561b7cfe
--- /dev/null
+++ b/svg/calendar-half-year.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/calendar.svg b/svg/calendar.svg
new file mode 100644
index 000000000..999e4a6e2
--- /dev/null
+++ b/svg/calendar.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/caltrops.svg b/svg/caltrops.svg
new file mode 100644
index 000000000..d6c4c9cd9
--- /dev/null
+++ b/svg/caltrops.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/camargue-cross.svg b/svg/camargue-cross.svg
new file mode 100644
index 000000000..2c2a9c4de
--- /dev/null
+++ b/svg/camargue-cross.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cambodia.svg b/svg/cambodia.svg
new file mode 100644
index 000000000..b753e9bff
--- /dev/null
+++ b/svg/cambodia.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/camel-head.svg b/svg/camel-head.svg
new file mode 100644
index 000000000..a9801a9ac
--- /dev/null
+++ b/svg/camel-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/camel.svg b/svg/camel.svg
new file mode 100644
index 000000000..55a5a1e15
--- /dev/null
+++ b/svg/camel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/camp-cooking-pot.svg b/svg/camp-cooking-pot.svg
new file mode 100644
index 000000000..283913d09
--- /dev/null
+++ b/svg/camp-cooking-pot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/campfire.svg b/svg/campfire.svg
new file mode 100644
index 000000000..42f2e6c82
--- /dev/null
+++ b/svg/campfire.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/camping-tent.svg b/svg/camping-tent.svg
new file mode 100644
index 000000000..ebe4c07c1
--- /dev/null
+++ b/svg/camping-tent.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/canadian-goose.svg b/svg/canadian-goose.svg
new file mode 100644
index 000000000..0ae45f70e
--- /dev/null
+++ b/svg/canadian-goose.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cancel.svg b/svg/cancel.svg
new file mode 100644
index 000000000..f83b3fbd6
--- /dev/null
+++ b/svg/cancel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cancer.svg b/svg/cancer.svg
new file mode 100644
index 000000000..61053f734
--- /dev/null
+++ b/svg/cancer.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/candle-flame.svg b/svg/candle-flame.svg
new file mode 100644
index 000000000..9ce600c27
--- /dev/null
+++ b/svg/candle-flame.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/candle-holder.svg b/svg/candle-holder.svg
new file mode 100644
index 000000000..5f2df9e59
--- /dev/null
+++ b/svg/candle-holder.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/candle-light.svg b/svg/candle-light.svg
new file mode 100644
index 000000000..13a850fcc
--- /dev/null
+++ b/svg/candle-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/candle-skull.svg b/svg/candle-skull.svg
new file mode 100644
index 000000000..682043e96
--- /dev/null
+++ b/svg/candle-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/candlebright.svg b/svg/candlebright.svg
new file mode 100644
index 000000000..86a301cac
--- /dev/null
+++ b/svg/candlebright.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/candles.svg b/svg/candles.svg
new file mode 100644
index 000000000..59bb8db13
--- /dev/null
+++ b/svg/candles.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/candlestick-phone.svg b/svg/candlestick-phone.svg
new file mode 100644
index 000000000..ba2cee59e
--- /dev/null
+++ b/svg/candlestick-phone.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/candy-canes.svg b/svg/candy-canes.svg
new file mode 100644
index 000000000..6d1cd4f97
--- /dev/null
+++ b/svg/candy-canes.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/canned-fish.svg b/svg/canned-fish.svg
new file mode 100644
index 000000000..f6592e4a7
--- /dev/null
+++ b/svg/canned-fish.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cannister.svg b/svg/cannister.svg
new file mode 100644
index 000000000..76d1e1725
--- /dev/null
+++ b/svg/cannister.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cannon-ball.svg b/svg/cannon-ball.svg
new file mode 100644
index 000000000..60baeed32
--- /dev/null
+++ b/svg/cannon-ball.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cannon-shot.svg b/svg/cannon-shot.svg
new file mode 100644
index 000000000..d64e79e27
--- /dev/null
+++ b/svg/cannon-shot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cannon.svg b/svg/cannon.svg
new file mode 100644
index 000000000..369361842
--- /dev/null
+++ b/svg/cannon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/canoe.svg b/svg/canoe.svg
new file mode 100644
index 000000000..5dd0a97f3
--- /dev/null
+++ b/svg/canoe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cantua.svg b/svg/cantua.svg
new file mode 100644
index 000000000..39e16f547
--- /dev/null
+++ b/svg/cantua.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cape-armor.svg b/svg/cape-armor.svg
new file mode 100644
index 000000000..0d004d2d6
--- /dev/null
+++ b/svg/cape-armor.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cape.svg b/svg/cape.svg
new file mode 100644
index 000000000..24e043c56
--- /dev/null
+++ b/svg/cape.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/capitol.svg b/svg/capitol.svg
new file mode 100644
index 000000000..ea383f420
--- /dev/null
+++ b/svg/capitol.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/capricorn.svg b/svg/capricorn.svg
new file mode 100644
index 000000000..86d8341d8
--- /dev/null
+++ b/svg/capricorn.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/captain-hat-profile.svg b/svg/captain-hat-profile.svg
new file mode 100644
index 000000000..44b33da71
--- /dev/null
+++ b/svg/captain-hat-profile.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/capybara.svg b/svg/capybara.svg
new file mode 100644
index 000000000..ead7be862
--- /dev/null
+++ b/svg/capybara.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/car-battery.svg b/svg/car-battery.svg
new file mode 100644
index 000000000..2633f3f46
--- /dev/null
+++ b/svg/car-battery.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/car-door.svg b/svg/car-door.svg
new file mode 100644
index 000000000..b32e31692
--- /dev/null
+++ b/svg/car-door.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/car-key.svg b/svg/car-key.svg
new file mode 100644
index 000000000..7a1c26f0c
--- /dev/null
+++ b/svg/car-key.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/car-seat.svg b/svg/car-seat.svg
new file mode 100644
index 000000000..a268195d8
--- /dev/null
+++ b/svg/car-seat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/car-wheel.svg b/svg/car-wheel.svg
new file mode 100644
index 000000000..f6d70196f
--- /dev/null
+++ b/svg/car-wheel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/carabiner.svg b/svg/carabiner.svg
new file mode 100644
index 000000000..dec13a282
--- /dev/null
+++ b/svg/carabiner.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/carambola.svg b/svg/carambola.svg
new file mode 100644
index 000000000..d4a2e792e
--- /dev/null
+++ b/svg/carambola.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/caravan.svg b/svg/caravan.svg
new file mode 100644
index 000000000..2b38deff3
--- /dev/null
+++ b/svg/caravan.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/caravel.svg b/svg/caravel.svg
new file mode 100644
index 000000000..21574a3eb
--- /dev/null
+++ b/svg/caravel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-10-clubs.svg b/svg/card-10-clubs.svg
new file mode 100644
index 000000000..462bc8e05
--- /dev/null
+++ b/svg/card-10-clubs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-10-diamonds.svg b/svg/card-10-diamonds.svg
new file mode 100644
index 000000000..d563d18cb
--- /dev/null
+++ b/svg/card-10-diamonds.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-10-hearts.svg b/svg/card-10-hearts.svg
new file mode 100644
index 000000000..6fefbdb32
--- /dev/null
+++ b/svg/card-10-hearts.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-10-spades.svg b/svg/card-10-spades.svg
new file mode 100644
index 000000000..f8bf3e84c
--- /dev/null
+++ b/svg/card-10-spades.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-2-clubs.svg b/svg/card-2-clubs.svg
new file mode 100644
index 000000000..ee2ae9a87
--- /dev/null
+++ b/svg/card-2-clubs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-2-diamonds.svg b/svg/card-2-diamonds.svg
new file mode 100644
index 000000000..6158fe45b
--- /dev/null
+++ b/svg/card-2-diamonds.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-2-hearts.svg b/svg/card-2-hearts.svg
new file mode 100644
index 000000000..e29ab982d
--- /dev/null
+++ b/svg/card-2-hearts.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-2-spades.svg b/svg/card-2-spades.svg
new file mode 100644
index 000000000..79f11cf4b
--- /dev/null
+++ b/svg/card-2-spades.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-3-clubs.svg b/svg/card-3-clubs.svg
new file mode 100644
index 000000000..e4eb4dcb0
--- /dev/null
+++ b/svg/card-3-clubs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-3-diamonds.svg b/svg/card-3-diamonds.svg
new file mode 100644
index 000000000..d1b4a68ac
--- /dev/null
+++ b/svg/card-3-diamonds.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-3-hearts.svg b/svg/card-3-hearts.svg
new file mode 100644
index 000000000..b5d6fbbeb
--- /dev/null
+++ b/svg/card-3-hearts.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-3-spades.svg b/svg/card-3-spades.svg
new file mode 100644
index 000000000..e1c65d628
--- /dev/null
+++ b/svg/card-3-spades.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-4-clubs.svg b/svg/card-4-clubs.svg
new file mode 100644
index 000000000..b2657a3e5
--- /dev/null
+++ b/svg/card-4-clubs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-4-diamonds.svg b/svg/card-4-diamonds.svg
new file mode 100644
index 000000000..4f90b9179
--- /dev/null
+++ b/svg/card-4-diamonds.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-4-hearts.svg b/svg/card-4-hearts.svg
new file mode 100644
index 000000000..b8205157c
--- /dev/null
+++ b/svg/card-4-hearts.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-4-spades.svg b/svg/card-4-spades.svg
new file mode 100644
index 000000000..3f7d923d8
--- /dev/null
+++ b/svg/card-4-spades.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-5-clubs.svg b/svg/card-5-clubs.svg
new file mode 100644
index 000000000..232e68edf
--- /dev/null
+++ b/svg/card-5-clubs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-5-diamonds.svg b/svg/card-5-diamonds.svg
new file mode 100644
index 000000000..c8b3252cb
--- /dev/null
+++ b/svg/card-5-diamonds.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-5-hearts.svg b/svg/card-5-hearts.svg
new file mode 100644
index 000000000..fbbbd6f4d
--- /dev/null
+++ b/svg/card-5-hearts.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-5-spades.svg b/svg/card-5-spades.svg
new file mode 100644
index 000000000..addcdef6b
--- /dev/null
+++ b/svg/card-5-spades.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-6-clubs.svg b/svg/card-6-clubs.svg
new file mode 100644
index 000000000..1a4b8bfc3
--- /dev/null
+++ b/svg/card-6-clubs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-6-diamonds.svg b/svg/card-6-diamonds.svg
new file mode 100644
index 000000000..911dc224f
--- /dev/null
+++ b/svg/card-6-diamonds.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-6-hearts.svg b/svg/card-6-hearts.svg
new file mode 100644
index 000000000..e6cfbb038
--- /dev/null
+++ b/svg/card-6-hearts.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-6-spades.svg b/svg/card-6-spades.svg
new file mode 100644
index 000000000..a85a4de54
--- /dev/null
+++ b/svg/card-6-spades.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-7-clubs.svg b/svg/card-7-clubs.svg
new file mode 100644
index 000000000..075c6eb06
--- /dev/null
+++ b/svg/card-7-clubs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-7-diamonds.svg b/svg/card-7-diamonds.svg
new file mode 100644
index 000000000..31c6f6021
--- /dev/null
+++ b/svg/card-7-diamonds.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-7-hearts.svg b/svg/card-7-hearts.svg
new file mode 100644
index 000000000..0b42e2e26
--- /dev/null
+++ b/svg/card-7-hearts.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-7-spades.svg b/svg/card-7-spades.svg
new file mode 100644
index 000000000..b00118353
--- /dev/null
+++ b/svg/card-7-spades.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-8-clubs.svg b/svg/card-8-clubs.svg
new file mode 100644
index 000000000..0f8d2bd19
--- /dev/null
+++ b/svg/card-8-clubs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-8-diamonds.svg b/svg/card-8-diamonds.svg
new file mode 100644
index 000000000..c22fe98c5
--- /dev/null
+++ b/svg/card-8-diamonds.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-8-hearts.svg b/svg/card-8-hearts.svg
new file mode 100644
index 000000000..f23de7419
--- /dev/null
+++ b/svg/card-8-hearts.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-8-spades.svg b/svg/card-8-spades.svg
new file mode 100644
index 000000000..b11c29d00
--- /dev/null
+++ b/svg/card-8-spades.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-9-clubs.svg b/svg/card-9-clubs.svg
new file mode 100644
index 000000000..d377dab74
--- /dev/null
+++ b/svg/card-9-clubs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-9-diamonds.svg b/svg/card-9-diamonds.svg
new file mode 100644
index 000000000..5e5970a5d
--- /dev/null
+++ b/svg/card-9-diamonds.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-9-hearts.svg b/svg/card-9-hearts.svg
new file mode 100644
index 000000000..31619da42
--- /dev/null
+++ b/svg/card-9-hearts.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-9-spades.svg b/svg/card-9-spades.svg
new file mode 100644
index 000000000..b1c401185
--- /dev/null
+++ b/svg/card-9-spades.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-ace-clubs.svg b/svg/card-ace-clubs.svg
new file mode 100644
index 000000000..84e743e20
--- /dev/null
+++ b/svg/card-ace-clubs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-ace-diamonds.svg b/svg/card-ace-diamonds.svg
new file mode 100644
index 000000000..5adda2aec
--- /dev/null
+++ b/svg/card-ace-diamonds.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-ace-hearts.svg b/svg/card-ace-hearts.svg
new file mode 100644
index 000000000..4961a82e0
--- /dev/null
+++ b/svg/card-ace-hearts.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-ace-spades.svg b/svg/card-ace-spades.svg
new file mode 100644
index 000000000..5638585d7
--- /dev/null
+++ b/svg/card-ace-spades.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-burn.svg b/svg/card-burn.svg
new file mode 100644
index 000000000..4f5993348
--- /dev/null
+++ b/svg/card-burn.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-discard.svg b/svg/card-discard.svg
new file mode 100644
index 000000000..087857b52
--- /dev/null
+++ b/svg/card-discard.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-draw.svg b/svg/card-draw.svg
new file mode 100644
index 000000000..6cf1c5857
--- /dev/null
+++ b/svg/card-draw.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-exchange.svg b/svg/card-exchange.svg
new file mode 100644
index 000000000..fd92dcc24
--- /dev/null
+++ b/svg/card-exchange.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-jack-clubs.svg b/svg/card-jack-clubs.svg
new file mode 100644
index 000000000..56f7d258d
--- /dev/null
+++ b/svg/card-jack-clubs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-jack-diamonds.svg b/svg/card-jack-diamonds.svg
new file mode 100644
index 000000000..f536b8afb
--- /dev/null
+++ b/svg/card-jack-diamonds.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-jack-hearts.svg b/svg/card-jack-hearts.svg
new file mode 100644
index 000000000..eca13d29c
--- /dev/null
+++ b/svg/card-jack-hearts.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-jack-spades.svg b/svg/card-jack-spades.svg
new file mode 100644
index 000000000..dcaa3be10
--- /dev/null
+++ b/svg/card-jack-spades.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-joker.svg b/svg/card-joker.svg
new file mode 100644
index 000000000..fb5755882
--- /dev/null
+++ b/svg/card-joker.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-king-clubs.svg b/svg/card-king-clubs.svg
new file mode 100644
index 000000000..e59a1db8f
--- /dev/null
+++ b/svg/card-king-clubs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-king-diamonds.svg b/svg/card-king-diamonds.svg
new file mode 100644
index 000000000..0da3c035b
--- /dev/null
+++ b/svg/card-king-diamonds.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-king-hearts.svg b/svg/card-king-hearts.svg
new file mode 100644
index 000000000..85a9253e8
--- /dev/null
+++ b/svg/card-king-hearts.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-king-spades.svg b/svg/card-king-spades.svg
new file mode 100644
index 000000000..2eaa5cce9
--- /dev/null
+++ b/svg/card-king-spades.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-pick.svg b/svg/card-pick.svg
new file mode 100644
index 000000000..f19733940
--- /dev/null
+++ b/svg/card-pick.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-pickup.svg b/svg/card-pickup.svg
new file mode 100644
index 000000000..27568406c
--- /dev/null
+++ b/svg/card-pickup.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-play.svg b/svg/card-play.svg
new file mode 100644
index 000000000..a639891db
--- /dev/null
+++ b/svg/card-play.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-queen-clubs.svg b/svg/card-queen-clubs.svg
new file mode 100644
index 000000000..9715438b1
--- /dev/null
+++ b/svg/card-queen-clubs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-queen-diamonds.svg b/svg/card-queen-diamonds.svg
new file mode 100644
index 000000000..d988f5918
--- /dev/null
+++ b/svg/card-queen-diamonds.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-queen-hearts.svg b/svg/card-queen-hearts.svg
new file mode 100644
index 000000000..99ebeadca
--- /dev/null
+++ b/svg/card-queen-hearts.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-queen-spades.svg b/svg/card-queen-spades.svg
new file mode 100644
index 000000000..2d7a7b124
--- /dev/null
+++ b/svg/card-queen-spades.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/card-random.svg b/svg/card-random.svg
new file mode 100644
index 000000000..d0bc3e00a
--- /dev/null
+++ b/svg/card-random.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cardboard-box-closed.svg b/svg/cardboard-box-closed.svg
new file mode 100644
index 000000000..74445e1f0
--- /dev/null
+++ b/svg/cardboard-box-closed.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cardboard-box.svg b/svg/cardboard-box.svg
new file mode 100644
index 000000000..fc66906e2
--- /dev/null
+++ b/svg/cardboard-box.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cargo-crane.svg b/svg/cargo-crane.svg
new file mode 100644
index 000000000..fd5ec3aa6
--- /dev/null
+++ b/svg/cargo-crane.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cargo-crate.svg b/svg/cargo-crate.svg
new file mode 100644
index 000000000..8f60cd8a5
--- /dev/null
+++ b/svg/cargo-crate.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cargo-ship.svg b/svg/cargo-ship.svg
new file mode 100644
index 000000000..4b6b2b5e9
--- /dev/null
+++ b/svg/cargo-ship.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/carillon.svg b/svg/carillon.svg
new file mode 100644
index 000000000..3a3dfa00d
--- /dev/null
+++ b/svg/carillon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/carnival-mask.svg b/svg/carnival-mask.svg
new file mode 100644
index 000000000..0ab030a0f
--- /dev/null
+++ b/svg/carnival-mask.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/carnivore-mouth.svg b/svg/carnivore-mouth.svg
new file mode 100644
index 000000000..2785afa39
--- /dev/null
+++ b/svg/carnivore-mouth.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/carnivorous-plant.svg b/svg/carnivorous-plant.svg
new file mode 100644
index 000000000..e0cd96a5c
--- /dev/null
+++ b/svg/carnivorous-plant.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/carnyx.svg b/svg/carnyx.svg
new file mode 100644
index 000000000..eca51e0c1
--- /dev/null
+++ b/svg/carnyx.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/carousel.svg b/svg/carousel.svg
new file mode 100644
index 000000000..c2d1e2068
--- /dev/null
+++ b/svg/carousel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/carpet-bombing.svg b/svg/carpet-bombing.svg
new file mode 100644
index 000000000..ea08d672c
--- /dev/null
+++ b/svg/carpet-bombing.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/carrier.svg b/svg/carrier.svg
new file mode 100644
index 000000000..cd661a0c9
--- /dev/null
+++ b/svg/carrier.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/carrion.svg b/svg/carrion.svg
new file mode 100644
index 000000000..89c103c0d
--- /dev/null
+++ b/svg/carrion.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/carrot.svg b/svg/carrot.svg
new file mode 100644
index 000000000..2ce4f3d6c
--- /dev/null
+++ b/svg/carrot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cartwheel.svg b/svg/cartwheel.svg
new file mode 100644
index 000000000..388399888
--- /dev/null
+++ b/svg/cartwheel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cash.svg b/svg/cash.svg
new file mode 100644
index 000000000..0d5dc5286
--- /dev/null
+++ b/svg/cash.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cassowary-head.svg b/svg/cassowary-head.svg
new file mode 100644
index 000000000..edbc1e762
--- /dev/null
+++ b/svg/cassowary-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/castle-2.svg b/svg/castle-2.svg
new file mode 100644
index 000000000..2cb85f692
--- /dev/null
+++ b/svg/castle-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/castle-ruins.svg b/svg/castle-ruins.svg
new file mode 100644
index 000000000..e3ca44f7f
--- /dev/null
+++ b/svg/castle-ruins.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/castle.svg b/svg/castle.svg
new file mode 100644
index 000000000..52ab3f86f
--- /dev/null
+++ b/svg/castle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cat.svg b/svg/cat.svg
new file mode 100644
index 000000000..103a65bc9
--- /dev/null
+++ b/svg/cat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/catapult.svg b/svg/catapult.svg
new file mode 100644
index 000000000..714be1850
--- /dev/null
+++ b/svg/catapult.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/catch.svg b/svg/catch.svg
new file mode 100644
index 000000000..f57a66003
--- /dev/null
+++ b/svg/catch.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/caterpillar.svg b/svg/caterpillar.svg
new file mode 100644
index 000000000..ad92e4d0d
--- /dev/null
+++ b/svg/caterpillar.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cauldron-2.svg b/svg/cauldron-2.svg
new file mode 100644
index 000000000..751b0736f
--- /dev/null
+++ b/svg/cauldron-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cauldron.svg b/svg/cauldron.svg
new file mode 100644
index 000000000..982c17296
--- /dev/null
+++ b/svg/cauldron.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cavalry.svg b/svg/cavalry.svg
new file mode 100644
index 000000000..c635f943a
--- /dev/null
+++ b/svg/cavalry.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cave-entrance.svg b/svg/cave-entrance.svg
new file mode 100644
index 000000000..a25c96dc9
--- /dev/null
+++ b/svg/cave-entrance.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/caveman.svg b/svg/caveman.svg
new file mode 100644
index 000000000..432c284ee
--- /dev/null
+++ b/svg/caveman.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cctv-camera.svg b/svg/cctv-camera.svg
new file mode 100644
index 000000000..d75ddfb6e
--- /dev/null
+++ b/svg/cctv-camera.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ceiling-barnacle.svg b/svg/ceiling-barnacle.svg
new file mode 100644
index 000000000..05a738468
--- /dev/null
+++ b/svg/ceiling-barnacle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ceiling-light.svg b/svg/ceiling-light.svg
new file mode 100644
index 000000000..8112b8a28
--- /dev/null
+++ b/svg/ceiling-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/celebration-fire.svg b/svg/celebration-fire.svg
new file mode 100644
index 000000000..d2dc9d6f7
--- /dev/null
+++ b/svg/celebration-fire.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cellar-barrels.svg b/svg/cellar-barrels.svg
new file mode 100644
index 000000000..e06373b92
--- /dev/null
+++ b/svg/cellar-barrels.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cement-shoes.svg b/svg/cement-shoes.svg
new file mode 100644
index 000000000..c4f69d52d
--- /dev/null
+++ b/svg/cement-shoes.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/centaur-heart.svg b/svg/centaur-heart.svg
new file mode 100644
index 000000000..75a288c6a
--- /dev/null
+++ b/svg/centaur-heart.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/centaur.svg b/svg/centaur.svg
new file mode 100644
index 000000000..39e066ebe
--- /dev/null
+++ b/svg/centaur.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/centipede.svg b/svg/centipede.svg
new file mode 100644
index 000000000..abae13750
--- /dev/null
+++ b/svg/centipede.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/centurion-helmet.svg b/svg/centurion-helmet.svg
new file mode 100644
index 000000000..2d9fd54cd
--- /dev/null
+++ b/svg/centurion-helmet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ceremonial-mask.svg b/svg/ceremonial-mask.svg
new file mode 100644
index 000000000..824e7bf44
--- /dev/null
+++ b/svg/ceremonial-mask.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chain-lightning.svg b/svg/chain-lightning.svg
new file mode 100644
index 000000000..ab6cb56d2
--- /dev/null
+++ b/svg/chain-lightning.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chain-mail.svg b/svg/chain-mail.svg
new file mode 100644
index 000000000..e9c9529d3
--- /dev/null
+++ b/svg/chain-mail.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chained-arrow-heads.svg b/svg/chained-arrow-heads.svg
new file mode 100644
index 000000000..d0a6d44a2
--- /dev/null
+++ b/svg/chained-arrow-heads.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chained-heart.svg b/svg/chained-heart.svg
new file mode 100644
index 000000000..d146d0e3a
--- /dev/null
+++ b/svg/chained-heart.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chaingun.svg b/svg/chaingun.svg
new file mode 100644
index 000000000..af3e9b14e
--- /dev/null
+++ b/svg/chaingun.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chainsaw.svg b/svg/chainsaw.svg
new file mode 100644
index 000000000..d0b1cf636
--- /dev/null
+++ b/svg/chainsaw.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chakram.svg b/svg/chakram.svg
new file mode 100644
index 000000000..bca5577cf
--- /dev/null
+++ b/svg/chakram.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chalice-drops.svg b/svg/chalice-drops.svg
new file mode 100644
index 000000000..8a4c345c1
--- /dev/null
+++ b/svg/chalice-drops.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chalk-outline-murder.svg b/svg/chalk-outline-murder.svg
new file mode 100644
index 000000000..6b6b82aed
--- /dev/null
+++ b/svg/chalk-outline-murder.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chameleon-glyph.svg b/svg/chameleon-glyph.svg
new file mode 100644
index 000000000..3b6c4f496
--- /dev/null
+++ b/svg/chameleon-glyph.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/champagne-cork.svg b/svg/champagne-cork.svg
new file mode 100644
index 000000000..f14ff5e4d
--- /dev/null
+++ b/svg/champagne-cork.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/champions.svg b/svg/champions.svg
new file mode 100644
index 000000000..95fe3d780
--- /dev/null
+++ b/svg/champions.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chanterelles.svg b/svg/chanterelles.svg
new file mode 100644
index 000000000..943d10926
--- /dev/null
+++ b/svg/chanterelles.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/character.svg b/svg/character.svg
new file mode 100644
index 000000000..551d8bb35
--- /dev/null
+++ b/svg/character.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/charcuterie.svg b/svg/charcuterie.svg
new file mode 100644
index 000000000..04709da05
--- /dev/null
+++ b/svg/charcuterie.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/charged-arrow.svg b/svg/charged-arrow.svg
new file mode 100644
index 000000000..2e15d373e
--- /dev/null
+++ b/svg/charged-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/charging-bull.svg b/svg/charging-bull.svg
new file mode 100644
index 000000000..16f7dfe92
--- /dev/null
+++ b/svg/charging-bull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/charging.svg b/svg/charging.svg
new file mode 100644
index 000000000..d02b9c73b
--- /dev/null
+++ b/svg/charging.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chariot.svg b/svg/chariot.svg
new file mode 100644
index 000000000..c46f8e1c6
--- /dev/null
+++ b/svg/chariot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/charm.svg b/svg/charm.svg
new file mode 100644
index 000000000..04e2d32c5
--- /dev/null
+++ b/svg/charm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chart.svg b/svg/chart.svg
new file mode 100644
index 000000000..9d0ae04c7
--- /dev/null
+++ b/svg/chart.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chat-bubble.svg b/svg/chat-bubble.svg
new file mode 100644
index 000000000..340aa244c
--- /dev/null
+++ b/svg/chat-bubble.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/check-mark.svg b/svg/check-mark.svg
new file mode 100644
index 000000000..3974e0740
--- /dev/null
+++ b/svg/check-mark.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/checkbox-tree.svg b/svg/checkbox-tree.svg
new file mode 100644
index 000000000..c4cd43ff3
--- /dev/null
+++ b/svg/checkbox-tree.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/checked-shield.svg b/svg/checked-shield.svg
new file mode 100644
index 000000000..d43be861e
--- /dev/null
+++ b/svg/checked-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/checkered-diamond.svg b/svg/checkered-diamond.svg
new file mode 100644
index 000000000..8f3e9ef39
--- /dev/null
+++ b/svg/checkered-diamond.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/checkered-flag.svg b/svg/checkered-flag.svg
new file mode 100644
index 000000000..c178957d2
--- /dev/null
+++ b/svg/checkered-flag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/checklist.svg b/svg/checklist.svg
new file mode 100644
index 000000000..735944b01
--- /dev/null
+++ b/svg/checklist.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cheerful.svg b/svg/cheerful.svg
new file mode 100644
index 000000000..189e4a887
--- /dev/null
+++ b/svg/cheerful.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cheese-wedge.svg b/svg/cheese-wedge.svg
new file mode 100644
index 000000000..6d9539bd8
--- /dev/null
+++ b/svg/cheese-wedge.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chef-toque.svg b/svg/chef-toque.svg
new file mode 100644
index 000000000..528852cda
--- /dev/null
+++ b/svg/chef-toque.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chelsea-boot.svg b/svg/chelsea-boot.svg
new file mode 100644
index 000000000..9ee5c1f43
--- /dev/null
+++ b/svg/chelsea-boot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chemical-arrow.svg b/svg/chemical-arrow.svg
new file mode 100644
index 000000000..60d731a1f
--- /dev/null
+++ b/svg/chemical-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chemical-bolt.svg b/svg/chemical-bolt.svg
new file mode 100644
index 000000000..d2ae8b03d
--- /dev/null
+++ b/svg/chemical-bolt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chemical-drop.svg b/svg/chemical-drop.svg
new file mode 100644
index 000000000..2e9c66fb8
--- /dev/null
+++ b/svg/chemical-drop.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chemical-tank.svg b/svg/chemical-tank.svg
new file mode 100644
index 000000000..bbe89beb6
--- /dev/null
+++ b/svg/chemical-tank.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cherish.svg b/svg/cherish.svg
new file mode 100644
index 000000000..c11420de5
--- /dev/null
+++ b/svg/cherish.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cherry.svg b/svg/cherry.svg
new file mode 100644
index 000000000..b61300e89
--- /dev/null
+++ b/svg/cherry.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chess-bishop.svg b/svg/chess-bishop.svg
new file mode 100644
index 000000000..bb3048e34
--- /dev/null
+++ b/svg/chess-bishop.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chess-king.svg b/svg/chess-king.svg
new file mode 100644
index 000000000..952c35305
--- /dev/null
+++ b/svg/chess-king.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chess-knight.svg b/svg/chess-knight.svg
new file mode 100644
index 000000000..d57ed2934
--- /dev/null
+++ b/svg/chess-knight.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chess-pawn.svg b/svg/chess-pawn.svg
new file mode 100644
index 000000000..2b362a367
--- /dev/null
+++ b/svg/chess-pawn.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chess-queen.svg b/svg/chess-queen.svg
new file mode 100644
index 000000000..eac32a621
--- /dev/null
+++ b/svg/chess-queen.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chess-rook.svg b/svg/chess-rook.svg
new file mode 100644
index 000000000..4a8f333bf
--- /dev/null
+++ b/svg/chess-rook.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chest-armor.svg b/svg/chest-armor.svg
new file mode 100644
index 000000000..f887990d1
--- /dev/null
+++ b/svg/chest-armor.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chest.svg b/svg/chest.svg
new file mode 100644
index 000000000..1fadd5b05
--- /dev/null
+++ b/svg/chest.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chestnut-leaf.svg b/svg/chestnut-leaf.svg
new file mode 100644
index 000000000..947aec647
--- /dev/null
+++ b/svg/chestnut-leaf.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chewed-heart.svg b/svg/chewed-heart.svg
new file mode 100644
index 000000000..70e4e303e
--- /dev/null
+++ b/svg/chewed-heart.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chewed-skull.svg b/svg/chewed-skull.svg
new file mode 100644
index 000000000..5dc06717a
--- /dev/null
+++ b/svg/chewed-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chicken-leg.svg b/svg/chicken-leg.svg
new file mode 100644
index 000000000..ec0131d7f
--- /dev/null
+++ b/svg/chicken-leg.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chicken-oven.svg b/svg/chicken-oven.svg
new file mode 100644
index 000000000..f50c916a9
--- /dev/null
+++ b/svg/chicken-oven.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chicken.svg b/svg/chicken.svg
new file mode 100644
index 000000000..b32c8c759
--- /dev/null
+++ b/svg/chicken.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chili-pepper.svg b/svg/chili-pepper.svg
new file mode 100644
index 000000000..d032d5497
--- /dev/null
+++ b/svg/chili-pepper.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chimney.svg b/svg/chimney.svg
new file mode 100644
index 000000000..b52fd6194
--- /dev/null
+++ b/svg/chimney.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chips-bag.svg b/svg/chips-bag.svg
new file mode 100644
index 000000000..628d280f0
--- /dev/null
+++ b/svg/chips-bag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chisel.svg b/svg/chisel.svg
new file mode 100644
index 000000000..96d2148ca
--- /dev/null
+++ b/svg/chisel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chocolate-bar.svg b/svg/chocolate-bar.svg
new file mode 100644
index 000000000..a60ff2b5f
--- /dev/null
+++ b/svg/chocolate-bar.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/choice.svg b/svg/choice.svg
new file mode 100644
index 000000000..5df5bf850
--- /dev/null
+++ b/svg/choice.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chopped-skull.svg b/svg/chopped-skull.svg
new file mode 100644
index 000000000..b3c420b96
--- /dev/null
+++ b/svg/chopped-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/chopsticks.svg b/svg/chopsticks.svg
new file mode 100644
index 000000000..3841ea173
--- /dev/null
+++ b/svg/chopsticks.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/church.svg b/svg/church.svg
new file mode 100644
index 000000000..ceb09e81a
--- /dev/null
+++ b/svg/church.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cigale.svg b/svg/cigale.svg
new file mode 100644
index 000000000..77e10f35f
--- /dev/null
+++ b/svg/cigale.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cigar.svg b/svg/cigar.svg
new file mode 100644
index 000000000..fce98a9df
--- /dev/null
+++ b/svg/cigar.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cigarette.svg b/svg/cigarette.svg
new file mode 100644
index 000000000..b279e2a53
--- /dev/null
+++ b/svg/cigarette.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/circle-cage.svg b/svg/circle-cage.svg
new file mode 100644
index 000000000..791b82029
--- /dev/null
+++ b/svg/circle-cage.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/circle-claws.svg b/svg/circle-claws.svg
new file mode 100644
index 000000000..c9e7ed472
--- /dev/null
+++ b/svg/circle-claws.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/circle-forest.svg b/svg/circle-forest.svg
new file mode 100644
index 000000000..c65a80825
--- /dev/null
+++ b/svg/circle-forest.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/circle-sparks.svg b/svg/circle-sparks.svg
new file mode 100644
index 000000000..d91b6ea34
--- /dev/null
+++ b/svg/circle-sparks.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/circle.svg b/svg/circle.svg
new file mode 100644
index 000000000..1e2f86bc5
--- /dev/null
+++ b/svg/circle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/circling-fish.svg b/svg/circling-fish.svg
new file mode 100644
index 000000000..d0b16d4fd
--- /dev/null
+++ b/svg/circling-fish.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/circuitry.svg b/svg/circuitry.svg
new file mode 100644
index 000000000..5c9d5c6aa
--- /dev/null
+++ b/svg/circuitry.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/circular-saw.svg b/svg/circular-saw.svg
new file mode 100644
index 000000000..3bfb2e9f3
--- /dev/null
+++ b/svg/circular-saw.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/circular-sawblade.svg b/svg/circular-sawblade.svg
new file mode 100644
index 000000000..250204e88
--- /dev/null
+++ b/svg/circular-sawblade.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/city-car.svg b/svg/city-car.svg
new file mode 100644
index 000000000..0a0e53804
--- /dev/null
+++ b/svg/city-car.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/clamp.svg b/svg/clamp.svg
new file mode 100644
index 000000000..6aba250e9
--- /dev/null
+++ b/svg/clamp.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/clapperboard.svg b/svg/clapperboard.svg
new file mode 100644
index 000000000..7f6cbb503
--- /dev/null
+++ b/svg/clapperboard.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/clarinet.svg b/svg/clarinet.svg
new file mode 100644
index 000000000..99ca1925b
--- /dev/null
+++ b/svg/clarinet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/classical-knowledge.svg b/svg/classical-knowledge.svg
new file mode 100644
index 000000000..3bea33aac
--- /dev/null
+++ b/svg/classical-knowledge.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/claw-hammer.svg b/svg/claw-hammer.svg
new file mode 100644
index 000000000..ac4ef8743
--- /dev/null
+++ b/svg/claw-hammer.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/claw-slashes.svg b/svg/claw-slashes.svg
new file mode 100644
index 000000000..7b0303dfa
--- /dev/null
+++ b/svg/claw-slashes.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/claw-string.svg b/svg/claw-string.svg
new file mode 100644
index 000000000..973b92798
--- /dev/null
+++ b/svg/claw-string.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/claw.svg b/svg/claw.svg
new file mode 100644
index 000000000..d4cc0c392
--- /dev/null
+++ b/svg/claw.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/claws.svg b/svg/claws.svg
new file mode 100644
index 000000000..d17eec6bc
--- /dev/null
+++ b/svg/claws.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/clay-brick.svg b/svg/clay-brick.svg
new file mode 100644
index 000000000..9416d540e
--- /dev/null
+++ b/svg/clay-brick.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/claymore-explosive.svg b/svg/claymore-explosive.svg
new file mode 100644
index 000000000..27c5d117a
--- /dev/null
+++ b/svg/claymore-explosive.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cleaver.svg b/svg/cleaver.svg
new file mode 100644
index 000000000..25fd28759
--- /dev/null
+++ b/svg/cleaver.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cleopatra.svg b/svg/cleopatra.svg
new file mode 100644
index 000000000..4ad1eaa7d
--- /dev/null
+++ b/svg/cleopatra.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/click.svg b/svg/click.svg
new file mode 100644
index 000000000..dad5925e6
--- /dev/null
+++ b/svg/click.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cliff-crossing.svg b/svg/cliff-crossing.svg
new file mode 100644
index 000000000..4dc54232c
--- /dev/null
+++ b/svg/cliff-crossing.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cloak-dagger.svg b/svg/cloak-dagger.svg
new file mode 100644
index 000000000..9fbe777c9
--- /dev/null
+++ b/svg/cloak-dagger.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cloak.svg b/svg/cloak.svg
new file mode 100644
index 000000000..ffa9f6a8b
--- /dev/null
+++ b/svg/cloak.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cloaked-figure-on-horseback.svg b/svg/cloaked-figure-on-horseback.svg
new file mode 100644
index 000000000..564442b90
--- /dev/null
+++ b/svg/cloaked-figure-on-horseback.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/clock-tower.svg b/svg/clock-tower.svg
new file mode 100644
index 000000000..662ad1082
--- /dev/null
+++ b/svg/clock-tower.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/clockwise-rotation.svg b/svg/clockwise-rotation.svg
new file mode 100644
index 000000000..b220d5125
--- /dev/null
+++ b/svg/clockwise-rotation.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/clockwork.svg b/svg/clockwork.svg
new file mode 100644
index 000000000..8f5b146cd
--- /dev/null
+++ b/svg/clockwork.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/closed-barbute.svg b/svg/closed-barbute.svg
new file mode 100644
index 000000000..19270d983
--- /dev/null
+++ b/svg/closed-barbute.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/closed-doors.svg b/svg/closed-doors.svg
new file mode 100644
index 000000000..455de6a48
--- /dev/null
+++ b/svg/closed-doors.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cloth-jar.svg b/svg/cloth-jar.svg
new file mode 100644
index 000000000..e0bdac102
--- /dev/null
+++ b/svg/cloth-jar.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/clothes.svg b/svg/clothes.svg
new file mode 100644
index 000000000..98e4d5168
--- /dev/null
+++ b/svg/clothes.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/clothesline.svg b/svg/clothesline.svg
new file mode 100644
index 000000000..96be8459c
--- /dev/null
+++ b/svg/clothesline.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/clothespin.svg b/svg/clothespin.svg
new file mode 100644
index 000000000..620a7a7e6
--- /dev/null
+++ b/svg/clothespin.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cloud-download.svg b/svg/cloud-download.svg
new file mode 100644
index 000000000..9c9985531
--- /dev/null
+++ b/svg/cloud-download.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cloud-ring.svg b/svg/cloud-ring.svg
new file mode 100644
index 000000000..d952c8183
--- /dev/null
+++ b/svg/cloud-ring.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cloud-upload.svg b/svg/cloud-upload.svg
new file mode 100644
index 000000000..6b27f9b32
--- /dev/null
+++ b/svg/cloud-upload.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cloudy-fork.svg b/svg/cloudy-fork.svg
new file mode 100644
index 000000000..98ca5ecda
--- /dev/null
+++ b/svg/cloudy-fork.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/clout.svg b/svg/clout.svg
new file mode 100644
index 000000000..f9502f821
--- /dev/null
+++ b/svg/clout.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/clover-2.svg b/svg/clover-2.svg
new file mode 100644
index 000000000..d9e9e9de2
--- /dev/null
+++ b/svg/clover-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/clover-spiked.svg b/svg/clover-spiked.svg
new file mode 100644
index 000000000..b8aa5f737
--- /dev/null
+++ b/svg/clover-spiked.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/clover.svg b/svg/clover.svg
new file mode 100644
index 000000000..263029df1
--- /dev/null
+++ b/svg/clover.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/clown.svg b/svg/clown.svg
new file mode 100644
index 000000000..9f5978484
--- /dev/null
+++ b/svg/clown.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/clownfish.svg b/svg/clownfish.svg
new file mode 100644
index 000000000..fe0fc6473
--- /dev/null
+++ b/svg/clownfish.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/clubs.svg b/svg/clubs.svg
new file mode 100644
index 000000000..cd9c707c4
--- /dev/null
+++ b/svg/clubs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cluster-bomb.svg b/svg/cluster-bomb.svg
new file mode 100644
index 000000000..a37cbed76
--- /dev/null
+++ b/svg/cluster-bomb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/coa-de-jima.svg b/svg/coa-de-jima.svg
new file mode 100644
index 000000000..07a881476
--- /dev/null
+++ b/svg/coa-de-jima.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/coal-pile.svg b/svg/coal-pile.svg
new file mode 100644
index 000000000..88f8a3374
--- /dev/null
+++ b/svg/coal-pile.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/coal-wagon.svg b/svg/coal-wagon.svg
new file mode 100644
index 000000000..f737be850
--- /dev/null
+++ b/svg/coal-wagon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cobra-2.svg b/svg/cobra-2.svg
new file mode 100644
index 000000000..6fd00ec59
--- /dev/null
+++ b/svg/cobra-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cobra.svg b/svg/cobra.svg
new file mode 100644
index 000000000..c4f3a5590
--- /dev/null
+++ b/svg/cobra.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cobweb.svg b/svg/cobweb.svg
new file mode 100644
index 000000000..adab874d1
--- /dev/null
+++ b/svg/cobweb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/coconuts.svg b/svg/coconuts.svg
new file mode 100644
index 000000000..53bc5ca5e
--- /dev/null
+++ b/svg/coconuts.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/coffee-beans.svg b/svg/coffee-beans.svg
new file mode 100644
index 000000000..0b72cd4f5
--- /dev/null
+++ b/svg/coffee-beans.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/coffee-cup.svg b/svg/coffee-cup.svg
new file mode 100644
index 000000000..27ae75b3a
--- /dev/null
+++ b/svg/coffee-cup.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/coffee-mug.svg b/svg/coffee-mug.svg
new file mode 100644
index 000000000..1f6498724
--- /dev/null
+++ b/svg/coffee-mug.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/coffee-pot.svg b/svg/coffee-pot.svg
new file mode 100644
index 000000000..20edfa063
--- /dev/null
+++ b/svg/coffee-pot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/coffin.svg b/svg/coffin.svg
new file mode 100644
index 000000000..d78cd55db
--- /dev/null
+++ b/svg/coffin.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cog-lock.svg b/svg/cog-lock.svg
new file mode 100644
index 000000000..36bf082ce
--- /dev/null
+++ b/svg/cog-lock.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cog.svg b/svg/cog.svg
new file mode 100644
index 000000000..3c3172d44
--- /dev/null
+++ b/svg/cog.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cogsplosion.svg b/svg/cogsplosion.svg
new file mode 100644
index 000000000..403a95fb3
--- /dev/null
+++ b/svg/cogsplosion.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/coiled-nail.svg b/svg/coiled-nail.svg
new file mode 100644
index 000000000..60f082de3
--- /dev/null
+++ b/svg/coiled-nail.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/coiling-curl.svg b/svg/coiling-curl.svg
new file mode 100644
index 000000000..a0e1c3acd
--- /dev/null
+++ b/svg/coiling-curl.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/coinflip.svg b/svg/coinflip.svg
new file mode 100644
index 000000000..15fb12fa5
--- /dev/null
+++ b/svg/coinflip.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/coins-pile.svg b/svg/coins-pile.svg
new file mode 100644
index 000000000..7773c00a9
--- /dev/null
+++ b/svg/coins-pile.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/coins.svg b/svg/coins.svg
new file mode 100644
index 000000000..75d6b640b
--- /dev/null
+++ b/svg/coins.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cold-heart.svg b/svg/cold-heart.svg
new file mode 100644
index 000000000..4fedfd71b
--- /dev/null
+++ b/svg/cold-heart.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/coliseum.svg b/svg/coliseum.svg
new file mode 100644
index 000000000..f6e75d5e0
--- /dev/null
+++ b/svg/coliseum.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/colombia.svg b/svg/colombia.svg
new file mode 100644
index 000000000..7c6dc4f27
--- /dev/null
+++ b/svg/colombia.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/colombian-statue.svg b/svg/colombian-statue.svg
new file mode 100644
index 000000000..b3a3a96cb
--- /dev/null
+++ b/svg/colombian-statue.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/colt-m1911.svg b/svg/colt-m1911.svg
new file mode 100644
index 000000000..952d93b46
--- /dev/null
+++ b/svg/colt-m1911.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/column-vase.svg b/svg/column-vase.svg
new file mode 100644
index 000000000..c39b8b709
--- /dev/null
+++ b/svg/column-vase.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/coma.svg b/svg/coma.svg
new file mode 100644
index 000000000..6cc39cf1d
--- /dev/null
+++ b/svg/coma.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/comb.svg b/svg/comb.svg
new file mode 100644
index 000000000..f1cd4da41
--- /dev/null
+++ b/svg/comb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/combination-lock.svg b/svg/combination-lock.svg
new file mode 100644
index 000000000..37aaa1579
--- /dev/null
+++ b/svg/combination-lock.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/comet-spark.svg b/svg/comet-spark.svg
new file mode 100644
index 000000000..e725e91b0
--- /dev/null
+++ b/svg/comet-spark.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/commercial-airplane.svg b/svg/commercial-airplane.svg
new file mode 100644
index 000000000..6e0c30eac
--- /dev/null
+++ b/svg/commercial-airplane.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/compact-disc.svg b/svg/compact-disc.svg
new file mode 100644
index 000000000..1367dcb61
--- /dev/null
+++ b/svg/compact-disc.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/companion-cube.svg b/svg/companion-cube.svg
new file mode 100644
index 000000000..dc5b96bab
--- /dev/null
+++ b/svg/companion-cube.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/compass.svg b/svg/compass.svg
new file mode 100644
index 000000000..d0c8fa302
--- /dev/null
+++ b/svg/compass.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/computer-fan.svg b/svg/computer-fan.svg
new file mode 100644
index 000000000..faffa9f3d
--- /dev/null
+++ b/svg/computer-fan.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/computing.svg b/svg/computing.svg
new file mode 100644
index 000000000..30de5a6fc
--- /dev/null
+++ b/svg/computing.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/concentration-orb.svg b/svg/concentration-orb.svg
new file mode 100644
index 000000000..7a6847512
--- /dev/null
+++ b/svg/concentration-orb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/concentric-crescents.svg b/svg/concentric-crescents.svg
new file mode 100644
index 000000000..56ec6d79b
--- /dev/null
+++ b/svg/concentric-crescents.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/concrete-bag.svg b/svg/concrete-bag.svg
new file mode 100644
index 000000000..553287ec6
--- /dev/null
+++ b/svg/concrete-bag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/condor-emblem.svg b/svg/condor-emblem.svg
new file mode 100644
index 000000000..e74f1e991
--- /dev/null
+++ b/svg/condor-emblem.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/condylura-skull.svg b/svg/condylura-skull.svg
new file mode 100644
index 000000000..f0532e322
--- /dev/null
+++ b/svg/condylura-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/confirmed.svg b/svg/confirmed.svg
new file mode 100644
index 000000000..640ab9f82
--- /dev/null
+++ b/svg/confirmed.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/confrontation.svg b/svg/confrontation.svg
new file mode 100644
index 000000000..1627a2ff6
--- /dev/null
+++ b/svg/confrontation.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/congress.svg b/svg/congress.svg
new file mode 100644
index 000000000..74d2a6bce
--- /dev/null
+++ b/svg/congress.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/conqueror.svg b/svg/conqueror.svg
new file mode 100644
index 000000000..6d5fe9f45
--- /dev/null
+++ b/svg/conqueror.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/console-controller.svg b/svg/console-controller.svg
new file mode 100644
index 000000000..5ad111022
--- /dev/null
+++ b/svg/console-controller.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/contortionist.svg b/svg/contortionist.svg
new file mode 100644
index 000000000..174724fb0
--- /dev/null
+++ b/svg/contortionist.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/contract.svg b/svg/contract.svg
new file mode 100644
index 000000000..a863727ae
--- /dev/null
+++ b/svg/contract.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/control-tower.svg b/svg/control-tower.svg
new file mode 100644
index 000000000..25fca830b
--- /dev/null
+++ b/svg/control-tower.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/convergence-target.svg b/svg/convergence-target.svg
new file mode 100644
index 000000000..17fa4f244
--- /dev/null
+++ b/svg/convergence-target.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/conversation.svg b/svg/conversation.svg
new file mode 100644
index 000000000..a0d6872a9
--- /dev/null
+++ b/svg/conversation.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/converse-shoe.svg b/svg/converse-shoe.svg
new file mode 100644
index 000000000..bf64499a3
--- /dev/null
+++ b/svg/converse-shoe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/convict.svg b/svg/convict.svg
new file mode 100644
index 000000000..e5359e374
--- /dev/null
+++ b/svg/convict.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/convince.svg b/svg/convince.svg
new file mode 100644
index 000000000..3ec849004
--- /dev/null
+++ b/svg/convince.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/conway-life-glider.svg b/svg/conway-life-glider.svg
new file mode 100644
index 000000000..a91cc4268
--- /dev/null
+++ b/svg/conway-life-glider.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cook.svg b/svg/cook.svg
new file mode 100644
index 000000000..fb2737fe2
--- /dev/null
+++ b/svg/cook.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cookie.svg b/svg/cookie.svg
new file mode 100644
index 000000000..e0a24a649
--- /dev/null
+++ b/svg/cookie.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cooking-glove.svg b/svg/cooking-glove.svg
new file mode 100644
index 000000000..e5a4f25a9
--- /dev/null
+++ b/svg/cooking-glove.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cooking-pot.svg b/svg/cooking-pot.svg
new file mode 100644
index 000000000..987d00303
--- /dev/null
+++ b/svg/cooking-pot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cool-spices.svg b/svg/cool-spices.svg
new file mode 100644
index 000000000..7315034d1
--- /dev/null
+++ b/svg/cool-spices.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cooler.svg b/svg/cooler.svg
new file mode 100644
index 000000000..0f8c12a77
--- /dev/null
+++ b/svg/cooler.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cootie-catcher.svg b/svg/cootie-catcher.svg
new file mode 100644
index 000000000..af14eddcc
--- /dev/null
+++ b/svg/cootie-catcher.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/coral.svg b/svg/coral.svg
new file mode 100644
index 000000000..015105667
--- /dev/null
+++ b/svg/coral.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cork-hat.svg b/svg/cork-hat.svg
new file mode 100644
index 000000000..11efb84c1
--- /dev/null
+++ b/svg/cork-hat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/corked-tube.svg b/svg/corked-tube.svg
new file mode 100644
index 000000000..3482a6cca
--- /dev/null
+++ b/svg/corked-tube.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/corkscrew.svg b/svg/corkscrew.svg
new file mode 100644
index 000000000..461f4f268
--- /dev/null
+++ b/svg/corkscrew.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/corn.svg b/svg/corn.svg
new file mode 100644
index 000000000..74a88ef3e
--- /dev/null
+++ b/svg/corn.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/corner-explosion.svg b/svg/corner-explosion.svg
new file mode 100644
index 000000000..e22dd61c5
--- /dev/null
+++ b/svg/corner-explosion.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/corner-flag.svg b/svg/corner-flag.svg
new file mode 100644
index 000000000..9c0c7ee61
--- /dev/null
+++ b/svg/corner-flag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cornucopia.svg b/svg/cornucopia.svg
new file mode 100644
index 000000000..4b739415e
--- /dev/null
+++ b/svg/cornucopia.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/coronation.svg b/svg/coronation.svg
new file mode 100644
index 000000000..70281cbc8
--- /dev/null
+++ b/svg/coronation.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/corporal.svg b/svg/corporal.svg
new file mode 100644
index 000000000..5982ace0d
--- /dev/null
+++ b/svg/corporal.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/corset.svg b/svg/corset.svg
new file mode 100644
index 000000000..94dd579f4
--- /dev/null
+++ b/svg/corset.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/corsica.svg b/svg/corsica.svg
new file mode 100644
index 000000000..190026ef2
--- /dev/null
+++ b/svg/corsica.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cosmic-egg.svg b/svg/cosmic-egg.svg
new file mode 100644
index 000000000..8d7d0218d
--- /dev/null
+++ b/svg/cosmic-egg.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cotton-flower.svg b/svg/cotton-flower.svg
new file mode 100644
index 000000000..6855aaab9
--- /dev/null
+++ b/svg/cotton-flower.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/covered-jar.svg b/svg/covered-jar.svg
new file mode 100644
index 000000000..772286b85
--- /dev/null
+++ b/svg/covered-jar.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cow.svg b/svg/cow.svg
new file mode 100644
index 000000000..1b0fd3446
--- /dev/null
+++ b/svg/cow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cowboy-boot.svg b/svg/cowboy-boot.svg
new file mode 100644
index 000000000..e1932dd2c
--- /dev/null
+++ b/svg/cowboy-boot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cowboy-holster.svg b/svg/cowboy-holster.svg
new file mode 100644
index 000000000..ab4bac57c
--- /dev/null
+++ b/svg/cowboy-holster.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cowled.svg b/svg/cowled.svg
new file mode 100644
index 000000000..86387ae4a
--- /dev/null
+++ b/svg/cowled.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cpu-shot.svg b/svg/cpu-shot.svg
new file mode 100644
index 000000000..775908928
--- /dev/null
+++ b/svg/cpu-shot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cpu.svg b/svg/cpu.svg
new file mode 100644
index 000000000..0d2a6fad1
--- /dev/null
+++ b/svg/cpu.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crab-claw.svg b/svg/crab-claw.svg
new file mode 100644
index 000000000..71653cd7b
--- /dev/null
+++ b/svg/crab-claw.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crab.svg b/svg/crab.svg
new file mode 100644
index 000000000..c6fb8b4cb
--- /dev/null
+++ b/svg/crab.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cracked-alien-skull.svg b/svg/cracked-alien-skull.svg
new file mode 100644
index 000000000..b656b41af
--- /dev/null
+++ b/svg/cracked-alien-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cracked-ball-dunk.svg b/svg/cracked-ball-dunk.svg
new file mode 100644
index 000000000..2231c2263
--- /dev/null
+++ b/svg/cracked-ball-dunk.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cracked-disc.svg b/svg/cracked-disc.svg
new file mode 100644
index 000000000..cfb8c4cba
--- /dev/null
+++ b/svg/cracked-disc.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cracked-glass.svg b/svg/cracked-glass.svg
new file mode 100644
index 000000000..697f0d16a
--- /dev/null
+++ b/svg/cracked-glass.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cracked-helm.svg b/svg/cracked-helm.svg
new file mode 100644
index 000000000..7a9c81191
--- /dev/null
+++ b/svg/cracked-helm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cracked-mask.svg b/svg/cracked-mask.svg
new file mode 100644
index 000000000..9c642275b
--- /dev/null
+++ b/svg/cracked-mask.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cracked-saber.svg b/svg/cracked-saber.svg
new file mode 100644
index 000000000..fc78829af
--- /dev/null
+++ b/svg/cracked-saber.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cracked-shield.svg b/svg/cracked-shield.svg
new file mode 100644
index 000000000..65dd679a4
--- /dev/null
+++ b/svg/cracked-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crafting.svg b/svg/crafting.svg
new file mode 100644
index 000000000..d2e934fe1
--- /dev/null
+++ b/svg/crafting.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crags.svg b/svg/crags.svg
new file mode 100644
index 000000000..16ef422a2
--- /dev/null
+++ b/svg/crags.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crane.svg b/svg/crane.svg
new file mode 100644
index 000000000..08dc0621c
--- /dev/null
+++ b/svg/crane.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/credits-currency.svg b/svg/credits-currency.svg
new file mode 100644
index 000000000..fb6bb9811
--- /dev/null
+++ b/svg/credits-currency.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crenel-crown.svg b/svg/crenel-crown.svg
new file mode 100644
index 000000000..687e3ac48
--- /dev/null
+++ b/svg/crenel-crown.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crenulated-shield.svg b/svg/crenulated-shield.svg
new file mode 100644
index 000000000..c3b82b383
--- /dev/null
+++ b/svg/crenulated-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crescent-blade-2.svg b/svg/crescent-blade-2.svg
new file mode 100644
index 000000000..96320e1ae
--- /dev/null
+++ b/svg/crescent-blade-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crescent-blade.svg b/svg/crescent-blade.svg
new file mode 100644
index 000000000..3959607fb
--- /dev/null
+++ b/svg/crescent-blade.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crescent-staff.svg b/svg/crescent-staff.svg
new file mode 100644
index 000000000..507e13808
--- /dev/null
+++ b/svg/crescent-staff.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crested-helmet.svg b/svg/crested-helmet.svg
new file mode 100644
index 000000000..61721bf0b
--- /dev/null
+++ b/svg/crested-helmet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cricket-bat.svg b/svg/cricket-bat.svg
new file mode 100644
index 000000000..4b2de8b34
--- /dev/null
+++ b/svg/cricket-bat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cricket.svg b/svg/cricket.svg
new file mode 100644
index 000000000..2b0ffa694
--- /dev/null
+++ b/svg/cricket.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crime-scene-tape.svg b/svg/crime-scene-tape.svg
new file mode 100644
index 000000000..a51b42a7b
--- /dev/null
+++ b/svg/crime-scene-tape.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/croc-jaws.svg b/svg/croc-jaws.svg
new file mode 100644
index 000000000..e734da58b
--- /dev/null
+++ b/svg/croc-jaws.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/croc-sword.svg b/svg/croc-sword.svg
new file mode 100644
index 000000000..ebc0b2195
--- /dev/null
+++ b/svg/croc-sword.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/croissant.svg b/svg/croissant.svg
new file mode 100644
index 000000000..6bc548d02
--- /dev/null
+++ b/svg/croissant.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/croissants-pupil.svg b/svg/croissants-pupil.svg
new file mode 100644
index 000000000..c4f9177a8
--- /dev/null
+++ b/svg/croissants-pupil.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crook-flail.svg b/svg/crook-flail.svg
new file mode 100644
index 000000000..04da559ae
--- /dev/null
+++ b/svg/crook-flail.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cross-flare.svg b/svg/cross-flare.svg
new file mode 100644
index 000000000..7059d764b
--- /dev/null
+++ b/svg/cross-flare.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cross-mark.svg b/svg/cross-mark.svg
new file mode 100644
index 000000000..19c990ccb
--- /dev/null
+++ b/svg/cross-mark.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cross-shield.svg b/svg/cross-shield.svg
new file mode 100644
index 000000000..e042d8310
--- /dev/null
+++ b/svg/cross-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crossbow.svg b/svg/crossbow.svg
new file mode 100644
index 000000000..24e2701fb
--- /dev/null
+++ b/svg/crossbow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crosscut-saw.svg b/svg/crosscut-saw.svg
new file mode 100644
index 000000000..af17317fd
--- /dev/null
+++ b/svg/crosscut-saw.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crossed-air-flows.svg b/svg/crossed-air-flows.svg
new file mode 100644
index 000000000..813e0f74a
--- /dev/null
+++ b/svg/crossed-air-flows.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crossed-axes.svg b/svg/crossed-axes.svg
new file mode 100644
index 000000000..938fc198f
--- /dev/null
+++ b/svg/crossed-axes.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crossed-bones.svg b/svg/crossed-bones.svg
new file mode 100644
index 000000000..96b18af19
--- /dev/null
+++ b/svg/crossed-bones.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crossed-chains.svg b/svg/crossed-chains.svg
new file mode 100644
index 000000000..2a61b14d6
--- /dev/null
+++ b/svg/crossed-chains.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crossed-claws.svg b/svg/crossed-claws.svg
new file mode 100644
index 000000000..e0105a9db
--- /dev/null
+++ b/svg/crossed-claws.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crossed-pistols.svg b/svg/crossed-pistols.svg
new file mode 100644
index 000000000..23d1d635d
--- /dev/null
+++ b/svg/crossed-pistols.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crossed-sabres.svg b/svg/crossed-sabres.svg
new file mode 100644
index 000000000..2cb30a406
--- /dev/null
+++ b/svg/crossed-sabres.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crossed-slashes.svg b/svg/crossed-slashes.svg
new file mode 100644
index 000000000..05887ba9c
--- /dev/null
+++ b/svg/crossed-slashes.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crossed-swords.svg b/svg/crossed-swords.svg
new file mode 100644
index 000000000..7379d540e
--- /dev/null
+++ b/svg/crossed-swords.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crosshair-arrow.svg b/svg/crosshair-arrow.svg
new file mode 100644
index 000000000..4c06eb910
--- /dev/null
+++ b/svg/crosshair-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crosshair.svg b/svg/crosshair.svg
new file mode 100644
index 000000000..40dff6a69
--- /dev/null
+++ b/svg/crosshair.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crossroad.svg b/svg/crossroad.svg
new file mode 100644
index 000000000..b59f3e96e
--- /dev/null
+++ b/svg/crossroad.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crow-dive.svg b/svg/crow-dive.svg
new file mode 100644
index 000000000..e4048ec6f
--- /dev/null
+++ b/svg/crow-dive.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crow-nest.svg b/svg/crow-nest.svg
new file mode 100644
index 000000000..f9d4012d0
--- /dev/null
+++ b/svg/crow-nest.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crowbar.svg b/svg/crowbar.svg
new file mode 100644
index 000000000..867b7c2ce
--- /dev/null
+++ b/svg/crowbar.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crown-coin.svg b/svg/crown-coin.svg
new file mode 100644
index 000000000..63dcc00df
--- /dev/null
+++ b/svg/crown-coin.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crown-of-thorns.svg b/svg/crown-of-thorns.svg
new file mode 100644
index 000000000..8153efc27
--- /dev/null
+++ b/svg/crown-of-thorns.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crown.svg b/svg/crown.svg
new file mode 100644
index 000000000..c39f546a4
--- /dev/null
+++ b/svg/crown.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crowned-explosion.svg b/svg/crowned-explosion.svg
new file mode 100644
index 000000000..6086eaccb
--- /dev/null
+++ b/svg/crowned-explosion.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crowned-heart.svg b/svg/crowned-heart.svg
new file mode 100644
index 000000000..56aa69de6
--- /dev/null
+++ b/svg/crowned-heart.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crowned-skull.svg b/svg/crowned-skull.svg
new file mode 100644
index 000000000..f35b2d97e
--- /dev/null
+++ b/svg/crowned-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crucifix.svg b/svg/crucifix.svg
new file mode 100644
index 000000000..82c67148b
--- /dev/null
+++ b/svg/crucifix.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cruiser.svg b/svg/cruiser.svg
new file mode 100644
index 000000000..39b18097d
--- /dev/null
+++ b/svg/cruiser.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crumbling-ball.svg b/svg/crumbling-ball.svg
new file mode 100644
index 000000000..a65706bbd
--- /dev/null
+++ b/svg/crumbling-ball.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crush.svg b/svg/crush.svg
new file mode 100644
index 000000000..0dfa19243
--- /dev/null
+++ b/svg/crush.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cryo-chamber.svg b/svg/cryo-chamber.svg
new file mode 100644
index 000000000..83f9becc2
--- /dev/null
+++ b/svg/cryo-chamber.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crypt-entrance.svg b/svg/crypt-entrance.svg
new file mode 100644
index 000000000..16aeb0210
--- /dev/null
+++ b/svg/crypt-entrance.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crystal-ball.svg b/svg/crystal-ball.svg
new file mode 100644
index 000000000..db564ba9a
--- /dev/null
+++ b/svg/crystal-ball.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crystal-bars.svg b/svg/crystal-bars.svg
new file mode 100644
index 000000000..f199d78e5
--- /dev/null
+++ b/svg/crystal-bars.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crystal-cluster.svg b/svg/crystal-cluster.svg
new file mode 100644
index 000000000..8e6666873
--- /dev/null
+++ b/svg/crystal-cluster.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crystal-earrings.svg b/svg/crystal-earrings.svg
new file mode 100644
index 000000000..2466ad576
--- /dev/null
+++ b/svg/crystal-earrings.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crystal-eye.svg b/svg/crystal-eye.svg
new file mode 100644
index 000000000..629d758e4
--- /dev/null
+++ b/svg/crystal-eye.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crystal-growth.svg b/svg/crystal-growth.svg
new file mode 100644
index 000000000..9d314113f
--- /dev/null
+++ b/svg/crystal-growth.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crystal-shine.svg b/svg/crystal-shine.svg
new file mode 100644
index 000000000..7fdfb0156
--- /dev/null
+++ b/svg/crystal-shine.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crystal-shrine.svg b/svg/crystal-shrine.svg
new file mode 100644
index 000000000..94bbed21f
--- /dev/null
+++ b/svg/crystal-shrine.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crystal-wand.svg b/svg/crystal-wand.svg
new file mode 100644
index 000000000..c9328f46c
--- /dev/null
+++ b/svg/crystal-wand.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/crystalize.svg b/svg/crystalize.svg
new file mode 100644
index 000000000..e0e9bcafa
--- /dev/null
+++ b/svg/crystalize.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cuauhtli.svg b/svg/cuauhtli.svg
new file mode 100644
index 000000000..f6667215c
--- /dev/null
+++ b/svg/cuauhtli.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cube.svg b/svg/cube.svg
new file mode 100644
index 000000000..40e22b28f
--- /dev/null
+++ b/svg/cube.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cubeforce.svg b/svg/cubeforce.svg
new file mode 100644
index 000000000..60e78abb6
--- /dev/null
+++ b/svg/cubeforce.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cubes.svg b/svg/cubes.svg
new file mode 100644
index 000000000..f74858668
--- /dev/null
+++ b/svg/cubes.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cuckoo-clock.svg b/svg/cuckoo-clock.svg
new file mode 100644
index 000000000..82049d68e
--- /dev/null
+++ b/svg/cuckoo-clock.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cultist-2.svg b/svg/cultist-2.svg
new file mode 100644
index 000000000..05a7f47b4
--- /dev/null
+++ b/svg/cultist-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cultist.svg b/svg/cultist.svg
new file mode 100644
index 000000000..16b1c3b8e
--- /dev/null
+++ b/svg/cultist.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cupcake.svg b/svg/cupcake.svg
new file mode 100644
index 000000000..a43e51a24
--- /dev/null
+++ b/svg/cupcake.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cupidon-arrow.svg b/svg/cupidon-arrow.svg
new file mode 100644
index 000000000..10e81ffe7
--- /dev/null
+++ b/svg/cupidon-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/curled-leaf.svg b/svg/curled-leaf.svg
new file mode 100644
index 000000000..fa1b4b1a7
--- /dev/null
+++ b/svg/curled-leaf.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/curled-tentacle.svg b/svg/curled-tentacle.svg
new file mode 100644
index 000000000..e7c2ae2b0
--- /dev/null
+++ b/svg/curled-tentacle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/curling-stone.svg b/svg/curling-stone.svg
new file mode 100644
index 000000000..59facfada
--- /dev/null
+++ b/svg/curling-stone.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/curling-vines.svg b/svg/curling-vines.svg
new file mode 100644
index 000000000..8c6f31beb
--- /dev/null
+++ b/svg/curling-vines.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/curly-mask.svg b/svg/curly-mask.svg
new file mode 100644
index 000000000..f9e816bc0
--- /dev/null
+++ b/svg/curly-mask.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/curly-wing.svg b/svg/curly-wing.svg
new file mode 100644
index 000000000..a8bf5c87d
--- /dev/null
+++ b/svg/curly-wing.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cursed-star.svg b/svg/cursed-star.svg
new file mode 100644
index 000000000..c0506b2c2
--- /dev/null
+++ b/svg/cursed-star.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/curvy-knife.svg b/svg/curvy-knife.svg
new file mode 100644
index 000000000..82f2634f5
--- /dev/null
+++ b/svg/curvy-knife.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/custodian-helmet.svg b/svg/custodian-helmet.svg
new file mode 100644
index 000000000..a675fe48c
--- /dev/null
+++ b/svg/custodian-helmet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cut-diamond.svg b/svg/cut-diamond.svg
new file mode 100644
index 000000000..8926b50db
--- /dev/null
+++ b/svg/cut-diamond.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cut-lemon.svg b/svg/cut-lemon.svg
new file mode 100644
index 000000000..04f66f6be
--- /dev/null
+++ b/svg/cut-lemon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cut-palm.svg b/svg/cut-palm.svg
new file mode 100644
index 000000000..df2b1678c
--- /dev/null
+++ b/svg/cut-palm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cyber-eye.svg b/svg/cyber-eye.svg
new file mode 100644
index 000000000..ebcd27493
--- /dev/null
+++ b/svg/cyber-eye.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cyborg-face.svg b/svg/cyborg-face.svg
new file mode 100644
index 000000000..f3ade3ffa
--- /dev/null
+++ b/svg/cyborg-face.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cycle.svg b/svg/cycle.svg
new file mode 100644
index 000000000..d2b077c44
--- /dev/null
+++ b/svg/cycle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cycling.svg b/svg/cycling.svg
new file mode 100644
index 000000000..f9fb87485
--- /dev/null
+++ b/svg/cycling.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cyclops.svg b/svg/cyclops.svg
new file mode 100644
index 000000000..08a344a96
--- /dev/null
+++ b/svg/cyclops.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/cz-skorpion.svg b/svg/cz-skorpion.svg
new file mode 100644
index 000000000..82ea0526b
--- /dev/null
+++ b/svg/cz-skorpion.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/d10.svg b/svg/d10.svg
new file mode 100644
index 000000000..50b572349
--- /dev/null
+++ b/svg/d10.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/d12.svg b/svg/d12.svg
new file mode 100644
index 000000000..a83856c7d
--- /dev/null
+++ b/svg/d12.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/d4.svg b/svg/d4.svg
new file mode 100644
index 000000000..c32b2ecf3
--- /dev/null
+++ b/svg/d4.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/daemon-pull.svg b/svg/daemon-pull.svg
new file mode 100644
index 000000000..124a537b9
--- /dev/null
+++ b/svg/daemon-pull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/daemon-skull.svg b/svg/daemon-skull.svg
new file mode 100644
index 000000000..1154dc1c0
--- /dev/null
+++ b/svg/daemon-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dagger-rose.svg b/svg/dagger-rose.svg
new file mode 100644
index 000000000..4e0281357
--- /dev/null
+++ b/svg/dagger-rose.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/daggers.svg b/svg/daggers.svg
new file mode 100644
index 000000000..1f1c7dbd4
--- /dev/null
+++ b/svg/daggers.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/daisy.svg b/svg/daisy.svg
new file mode 100644
index 000000000..b8a71f0fd
--- /dev/null
+++ b/svg/daisy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dam.svg b/svg/dam.svg
new file mode 100644
index 000000000..2230409fe
--- /dev/null
+++ b/svg/dam.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/damaged-house.svg b/svg/damaged-house.svg
new file mode 100644
index 000000000..d9ee418d1
--- /dev/null
+++ b/svg/damaged-house.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dandelion-flower.svg b/svg/dandelion-flower.svg
new file mode 100644
index 000000000..4382dcd08
--- /dev/null
+++ b/svg/dandelion-flower.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dango.svg b/svg/dango.svg
new file mode 100644
index 000000000..ea7bbbf63
--- /dev/null
+++ b/svg/dango.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dark-squad.svg b/svg/dark-squad.svg
new file mode 100644
index 000000000..3457d82ad
--- /dev/null
+++ b/svg/dark-squad.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dart.svg b/svg/dart.svg
new file mode 100644
index 000000000..a86888407
--- /dev/null
+++ b/svg/dart.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/database.svg b/svg/database.svg
new file mode 100644
index 000000000..ab8783d47
--- /dev/null
+++ b/svg/database.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dead-eye.svg b/svg/dead-eye.svg
new file mode 100644
index 000000000..382de6c8a
--- /dev/null
+++ b/svg/dead-eye.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dead-head.svg b/svg/dead-head.svg
new file mode 100644
index 000000000..4568119b0
--- /dev/null
+++ b/svg/dead-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dead-wood.svg b/svg/dead-wood.svg
new file mode 100644
index 000000000..07db58490
--- /dev/null
+++ b/svg/dead-wood.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/deadly-strike.svg b/svg/deadly-strike.svg
new file mode 100644
index 000000000..2db168168
--- /dev/null
+++ b/svg/deadly-strike.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/death-juice.svg b/svg/death-juice.svg
new file mode 100644
index 000000000..3a770a517
--- /dev/null
+++ b/svg/death-juice.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/death-note.svg b/svg/death-note.svg
new file mode 100644
index 000000000..2cb896516
--- /dev/null
+++ b/svg/death-note.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/death-skull.svg b/svg/death-skull.svg
new file mode 100644
index 000000000..947031f42
--- /dev/null
+++ b/svg/death-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/death-star.svg b/svg/death-star.svg
new file mode 100644
index 000000000..2803a32cf
--- /dev/null
+++ b/svg/death-star.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/death-zone.svg b/svg/death-zone.svg
new file mode 100644
index 000000000..750ead731
--- /dev/null
+++ b/svg/death-zone.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/deathcab.svg b/svg/deathcab.svg
new file mode 100644
index 000000000..4e3e2e57c
--- /dev/null
+++ b/svg/deathcab.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/decapitation.svg b/svg/decapitation.svg
new file mode 100644
index 000000000..4778e5aae
--- /dev/null
+++ b/svg/decapitation.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/deer-head.svg b/svg/deer-head.svg
new file mode 100644
index 000000000..07475d0fc
--- /dev/null
+++ b/svg/deer-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/deer-track.svg b/svg/deer-track.svg
new file mode 100644
index 000000000..7deb7ffcb
--- /dev/null
+++ b/svg/deer-track.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/deer.svg b/svg/deer.svg
new file mode 100644
index 000000000..76b7fbf82
--- /dev/null
+++ b/svg/deer.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/defense-satellite.svg b/svg/defense-satellite.svg
new file mode 100644
index 000000000..7c6b267c8
--- /dev/null
+++ b/svg/defense-satellite.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/defensive-wall.svg b/svg/defensive-wall.svg
new file mode 100644
index 000000000..d49c2493c
--- /dev/null
+++ b/svg/defensive-wall.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/defibrilate.svg b/svg/defibrilate.svg
new file mode 100644
index 000000000..dbd86f6fb
--- /dev/null
+++ b/svg/defibrilate.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/deku-tree.svg b/svg/deku-tree.svg
new file mode 100644
index 000000000..cde56a55e
--- /dev/null
+++ b/svg/deku-tree.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/delicate-perfume.svg b/svg/delicate-perfume.svg
new file mode 100644
index 000000000..2d8112f6e
--- /dev/null
+++ b/svg/delicate-perfume.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/delighted.svg b/svg/delighted.svg
new file mode 100644
index 000000000..8d75689ac
--- /dev/null
+++ b/svg/delighted.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/delivery-drone.svg b/svg/delivery-drone.svg
new file mode 100644
index 000000000..b6628b46e
--- /dev/null
+++ b/svg/delivery-drone.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/demolish.svg b/svg/demolish.svg
new file mode 100644
index 000000000..db10c8b7e
--- /dev/null
+++ b/svg/demolish.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dervish-swords.svg b/svg/dervish-swords.svg
new file mode 100644
index 000000000..aba4936e8
--- /dev/null
+++ b/svg/dervish-swords.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/desert-camp.svg b/svg/desert-camp.svg
new file mode 100644
index 000000000..c13d9c1ce
--- /dev/null
+++ b/svg/desert-camp.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/desert-eagle.svg b/svg/desert-eagle.svg
new file mode 100644
index 000000000..d35676777
--- /dev/null
+++ b/svg/desert-eagle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/desert-skull.svg b/svg/desert-skull.svg
new file mode 100644
index 000000000..03a895728
--- /dev/null
+++ b/svg/desert-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/desert.svg b/svg/desert.svg
new file mode 100644
index 000000000..49fb89652
--- /dev/null
+++ b/svg/desert.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/deshret-red-crown.svg b/svg/deshret-red-crown.svg
new file mode 100644
index 000000000..7b2cdb722
--- /dev/null
+++ b/svg/deshret-red-crown.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/desk-lamp.svg b/svg/desk-lamp.svg
new file mode 100644
index 000000000..514e24a88
--- /dev/null
+++ b/svg/desk-lamp.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/desk.svg b/svg/desk.svg
new file mode 100644
index 000000000..1c986d3dd
--- /dev/null
+++ b/svg/desk.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/despair.svg b/svg/despair.svg
new file mode 100644
index 000000000..31734ebc2
--- /dev/null
+++ b/svg/despair.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/detonator.svg b/svg/detonator.svg
new file mode 100644
index 000000000..ea189184f
--- /dev/null
+++ b/svg/detonator.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/detour.svg b/svg/detour.svg
new file mode 100644
index 000000000..c81375126
--- /dev/null
+++ b/svg/detour.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/devil-mask.svg b/svg/devil-mask.svg
new file mode 100644
index 000000000..f1acc0415
--- /dev/null
+++ b/svg/devil-mask.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dew.svg b/svg/dew.svg
new file mode 100644
index 000000000..1d0336828
--- /dev/null
+++ b/svg/dew.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/diablo-skull.svg b/svg/diablo-skull.svg
new file mode 100644
index 000000000..08153a75a
--- /dev/null
+++ b/svg/diablo-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/diagram.svg b/svg/diagram.svg
new file mode 100644
index 000000000..6830b8951
--- /dev/null
+++ b/svg/diagram.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dial-padlock.svg b/svg/dial-padlock.svg
new file mode 100644
index 000000000..61b820359
--- /dev/null
+++ b/svg/dial-padlock.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/diamond-hard.svg b/svg/diamond-hard.svg
new file mode 100644
index 000000000..35361d460
--- /dev/null
+++ b/svg/diamond-hard.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/diamond-hilt.svg b/svg/diamond-hilt.svg
new file mode 100644
index 000000000..f1c83707c
--- /dev/null
+++ b/svg/diamond-hilt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/diamond-ring.svg b/svg/diamond-ring.svg
new file mode 100644
index 000000000..c8f6646cb
--- /dev/null
+++ b/svg/diamond-ring.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/diamond-trophy.svg b/svg/diamond-trophy.svg
new file mode 100644
index 000000000..2b59969f2
--- /dev/null
+++ b/svg/diamond-trophy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/diamonds-smile.svg b/svg/diamonds-smile.svg
new file mode 100644
index 000000000..0bc0cadbf
--- /dev/null
+++ b/svg/diamonds-smile.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/diamonds.svg b/svg/diamonds.svg
new file mode 100644
index 000000000..46ffc7a41
--- /dev/null
+++ b/svg/diamonds.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dice-eight-faces-eight.svg b/svg/dice-eight-faces-eight.svg
new file mode 100644
index 000000000..e46fcf378
--- /dev/null
+++ b/svg/dice-eight-faces-eight.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dice-fire.svg b/svg/dice-fire.svg
new file mode 100644
index 000000000..77b508cdc
--- /dev/null
+++ b/svg/dice-fire.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dice-shield.svg b/svg/dice-shield.svg
new file mode 100644
index 000000000..5f27d3032
--- /dev/null
+++ b/svg/dice-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dice-six-faces-five.svg b/svg/dice-six-faces-five.svg
new file mode 100644
index 000000000..287d8416c
--- /dev/null
+++ b/svg/dice-six-faces-five.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dice-six-faces-four.svg b/svg/dice-six-faces-four.svg
new file mode 100644
index 000000000..216a50d63
--- /dev/null
+++ b/svg/dice-six-faces-four.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dice-six-faces-one.svg b/svg/dice-six-faces-one.svg
new file mode 100644
index 000000000..651f9baad
--- /dev/null
+++ b/svg/dice-six-faces-one.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dice-six-faces-six.svg b/svg/dice-six-faces-six.svg
new file mode 100644
index 000000000..63b669d69
--- /dev/null
+++ b/svg/dice-six-faces-six.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dice-six-faces-three.svg b/svg/dice-six-faces-three.svg
new file mode 100644
index 000000000..63cf91da7
--- /dev/null
+++ b/svg/dice-six-faces-three.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dice-six-faces-two.svg b/svg/dice-six-faces-two.svg
new file mode 100644
index 000000000..317cf1efb
--- /dev/null
+++ b/svg/dice-six-faces-two.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dice-target.svg b/svg/dice-target.svg
new file mode 100644
index 000000000..983270dcb
--- /dev/null
+++ b/svg/dice-target.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dice-twenty-faces-one.svg b/svg/dice-twenty-faces-one.svg
new file mode 100644
index 000000000..1dd97f00b
--- /dev/null
+++ b/svg/dice-twenty-faces-one.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dice-twenty-faces-twenty.svg b/svg/dice-twenty-faces-twenty.svg
new file mode 100644
index 000000000..debe12463
--- /dev/null
+++ b/svg/dice-twenty-faces-twenty.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dig-dug.svg b/svg/dig-dug.svg
new file mode 100644
index 000000000..9c84cdc95
--- /dev/null
+++ b/svg/dig-dug.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dig-hole.svg b/svg/dig-hole.svg
new file mode 100644
index 000000000..40fe6f8b3
--- /dev/null
+++ b/svg/dig-hole.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/digital-trace.svg b/svg/digital-trace.svg
new file mode 100644
index 000000000..bd24065f4
--- /dev/null
+++ b/svg/digital-trace.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dimetrodon.svg b/svg/dimetrodon.svg
new file mode 100644
index 000000000..99289ce1c
--- /dev/null
+++ b/svg/dimetrodon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dinosaur-bones.svg b/svg/dinosaur-bones.svg
new file mode 100644
index 000000000..b46c8a950
--- /dev/null
+++ b/svg/dinosaur-bones.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dinosaur-egg.svg b/svg/dinosaur-egg.svg
new file mode 100644
index 000000000..affbb9dec
--- /dev/null
+++ b/svg/dinosaur-egg.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dinosaur-rex.svg b/svg/dinosaur-rex.svg
new file mode 100644
index 000000000..2595283a6
--- /dev/null
+++ b/svg/dinosaur-rex.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/diplodocus.svg b/svg/diplodocus.svg
new file mode 100644
index 000000000..61a484a89
--- /dev/null
+++ b/svg/diplodocus.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/diploma.svg b/svg/diploma.svg
new file mode 100644
index 000000000..b82e1b369
--- /dev/null
+++ b/svg/diploma.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/direction-sign.svg b/svg/direction-sign.svg
new file mode 100644
index 000000000..e81a78315
--- /dev/null
+++ b/svg/direction-sign.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/direction-signs.svg b/svg/direction-signs.svg
new file mode 100644
index 000000000..e8641ea67
--- /dev/null
+++ b/svg/direction-signs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/director-chair.svg b/svg/director-chair.svg
new file mode 100644
index 000000000..4f3bdcd5e
--- /dev/null
+++ b/svg/director-chair.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/direwolf.svg b/svg/direwolf.svg
new file mode 100644
index 000000000..ee765fa82
--- /dev/null
+++ b/svg/direwolf.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/disc-golf-bag.svg b/svg/disc-golf-bag.svg
new file mode 100644
index 000000000..c56a2a8d1
--- /dev/null
+++ b/svg/disc-golf-bag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/disc-golf-basket.svg b/svg/disc-golf-basket.svg
new file mode 100644
index 000000000..1f94944ba
--- /dev/null
+++ b/svg/disc-golf-basket.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/disc.svg b/svg/disc.svg
new file mode 100644
index 000000000..94121b408
--- /dev/null
+++ b/svg/disc.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/discobolus.svg b/svg/discobolus.svg
new file mode 100644
index 000000000..91affb960
--- /dev/null
+++ b/svg/discobolus.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/discussion.svg b/svg/discussion.svg
new file mode 100644
index 000000000..bcc8c135c
--- /dev/null
+++ b/svg/discussion.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/disintegrate.svg b/svg/disintegrate.svg
new file mode 100644
index 000000000..7e9d954f8
--- /dev/null
+++ b/svg/disintegrate.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/distraction-2.svg b/svg/distraction-2.svg
new file mode 100644
index 000000000..60e2be2d2
--- /dev/null
+++ b/svg/distraction-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/distraction.svg b/svg/distraction.svg
new file mode 100644
index 000000000..e0dd044be
--- /dev/null
+++ b/svg/distraction.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/distress-signal.svg b/svg/distress-signal.svg
new file mode 100644
index 000000000..116e17a91
--- /dev/null
+++ b/svg/distress-signal.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/divergence.svg b/svg/divergence.svg
new file mode 100644
index 000000000..11d0c1455
--- /dev/null
+++ b/svg/divergence.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/divert.svg b/svg/divert.svg
new file mode 100644
index 000000000..0437df98a
--- /dev/null
+++ b/svg/divert.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/divided-spiral.svg b/svg/divided-spiral.svg
new file mode 100644
index 000000000..0ade396f1
--- /dev/null
+++ b/svg/divided-spiral.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/divided-square.svg b/svg/divided-square.svg
new file mode 100644
index 000000000..293283b3a
--- /dev/null
+++ b/svg/divided-square.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/diving-dagger.svg b/svg/diving-dagger.svg
new file mode 100644
index 000000000..47934e47f
--- /dev/null
+++ b/svg/diving-dagger.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/diving-helmet.svg b/svg/diving-helmet.svg
new file mode 100644
index 000000000..a1b54eff2
--- /dev/null
+++ b/svg/diving-helmet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/djed-pillar.svg b/svg/djed-pillar.svg
new file mode 100644
index 000000000..be097fcc0
--- /dev/null
+++ b/svg/djed-pillar.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/djembe.svg b/svg/djembe.svg
new file mode 100644
index 000000000..5155cf662
--- /dev/null
+++ b/svg/djembe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/djinn.svg b/svg/djinn.svg
new file mode 100644
index 000000000..9e46cc5a1
--- /dev/null
+++ b/svg/djinn.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dna1.svg b/svg/dna1.svg
new file mode 100644
index 000000000..045979e0a
--- /dev/null
+++ b/svg/dna1.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dna2.svg b/svg/dna2.svg
new file mode 100644
index 000000000..2d67da26c
--- /dev/null
+++ b/svg/dna2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/doctor-face.svg b/svg/doctor-face.svg
new file mode 100644
index 000000000..b69df5d9f
--- /dev/null
+++ b/svg/doctor-face.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dodge.svg b/svg/dodge.svg
new file mode 100644
index 000000000..2ff266bef
--- /dev/null
+++ b/svg/dodge.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dodging.svg b/svg/dodging.svg
new file mode 100644
index 000000000..e8f3c00e6
--- /dev/null
+++ b/svg/dodging.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dog-bowl.svg b/svg/dog-bowl.svg
new file mode 100644
index 000000000..6671b94f9
--- /dev/null
+++ b/svg/dog-bowl.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dog-house.svg b/svg/dog-house.svg
new file mode 100644
index 000000000..68f91cffe
--- /dev/null
+++ b/svg/dog-house.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dolmen.svg b/svg/dolmen.svg
new file mode 100644
index 000000000..da69c677b
--- /dev/null
+++ b/svg/dolmen.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dolphin.svg b/svg/dolphin.svg
new file mode 100644
index 000000000..f261925d1
--- /dev/null
+++ b/svg/dolphin.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/domino-mask.svg b/svg/domino-mask.svg
new file mode 100644
index 000000000..7f5f7ddf8
--- /dev/null
+++ b/svg/domino-mask.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/domino-tiles.svg b/svg/domino-tiles.svg
new file mode 100644
index 000000000..af17f4af7
--- /dev/null
+++ b/svg/domino-tiles.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/doner-kebab.svg b/svg/doner-kebab.svg
new file mode 100644
index 000000000..28e41dd1e
--- /dev/null
+++ b/svg/doner-kebab.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/donkey.svg b/svg/donkey.svg
new file mode 100644
index 000000000..43b4925e9
--- /dev/null
+++ b/svg/donkey.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/donut.svg b/svg/donut.svg
new file mode 100644
index 000000000..71ca18f3e
--- /dev/null
+++ b/svg/donut.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/door-handle.svg b/svg/door-handle.svg
new file mode 100644
index 000000000..08e53d2ef
--- /dev/null
+++ b/svg/door-handle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/door-ring-handle.svg b/svg/door-ring-handle.svg
new file mode 100644
index 000000000..50b8012b5
--- /dev/null
+++ b/svg/door-ring-handle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/door-watcher.svg b/svg/door-watcher.svg
new file mode 100644
index 000000000..bf21c43cd
--- /dev/null
+++ b/svg/door-watcher.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/door.svg b/svg/door.svg
new file mode 100644
index 000000000..0364b490a
--- /dev/null
+++ b/svg/door.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/doorway.svg b/svg/doorway.svg
new file mode 100644
index 000000000..9e48f4340
--- /dev/null
+++ b/svg/doorway.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dorsal-scales.svg b/svg/dorsal-scales.svg
new file mode 100644
index 000000000..937807fd1
--- /dev/null
+++ b/svg/dorsal-scales.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/double-diaphragm.svg b/svg/double-diaphragm.svg
new file mode 100644
index 000000000..1884c528c
--- /dev/null
+++ b/svg/double-diaphragm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/double-dragon.svg b/svg/double-dragon.svg
new file mode 100644
index 000000000..6f1cc1feb
--- /dev/null
+++ b/svg/double-dragon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/double-face-mask.svg b/svg/double-face-mask.svg
new file mode 100644
index 000000000..b53d09d8f
--- /dev/null
+++ b/svg/double-face-mask.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/double-fish.svg b/svg/double-fish.svg
new file mode 100644
index 000000000..a5444ea0c
--- /dev/null
+++ b/svg/double-fish.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/double-necklace.svg b/svg/double-necklace.svg
new file mode 100644
index 000000000..3b5a79a07
--- /dev/null
+++ b/svg/double-necklace.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/double-quaver.svg b/svg/double-quaver.svg
new file mode 100644
index 000000000..c6cd36808
--- /dev/null
+++ b/svg/double-quaver.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/double-ringed-orb.svg b/svg/double-ringed-orb.svg
new file mode 100644
index 000000000..01027cc18
--- /dev/null
+++ b/svg/double-ringed-orb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/double-shot.svg b/svg/double-shot.svg
new file mode 100644
index 000000000..24b92f299
--- /dev/null
+++ b/svg/double-shot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/double-street-lights.svg b/svg/double-street-lights.svg
new file mode 100644
index 000000000..5b3d45e3f
--- /dev/null
+++ b/svg/double-street-lights.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/doubled.svg b/svg/doubled.svg
new file mode 100644
index 000000000..e4d011e6e
--- /dev/null
+++ b/svg/doubled.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dough-roller.svg b/svg/dough-roller.svg
new file mode 100644
index 000000000..0a3f89f43
--- /dev/null
+++ b/svg/dough-roller.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dove.svg b/svg/dove.svg
new file mode 100644
index 000000000..d8f97aea9
--- /dev/null
+++ b/svg/dove.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dozen.svg b/svg/dozen.svg
new file mode 100644
index 000000000..412f3e776
--- /dev/null
+++ b/svg/dozen.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dragon-balls.svg b/svg/dragon-balls.svg
new file mode 100644
index 000000000..1eed4804e
--- /dev/null
+++ b/svg/dragon-balls.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dragon-breath.svg b/svg/dragon-breath.svg
new file mode 100644
index 000000000..2c194e82e
--- /dev/null
+++ b/svg/dragon-breath.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dragon-head-2.svg b/svg/dragon-head-2.svg
new file mode 100644
index 000000000..f38ebaeb3
--- /dev/null
+++ b/svg/dragon-head-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dragon-head.svg b/svg/dragon-head.svg
new file mode 100644
index 000000000..1863a4061
--- /dev/null
+++ b/svg/dragon-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dragon-orb.svg b/svg/dragon-orb.svg
new file mode 100644
index 000000000..e573cf934
--- /dev/null
+++ b/svg/dragon-orb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dragon-shield.svg b/svg/dragon-shield.svg
new file mode 100644
index 000000000..1f432b4e0
--- /dev/null
+++ b/svg/dragon-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dragon-spiral.svg b/svg/dragon-spiral.svg
new file mode 100644
index 000000000..aac3dbfd7
--- /dev/null
+++ b/svg/dragon-spiral.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dragonfly.svg b/svg/dragonfly.svg
new file mode 100644
index 000000000..687a3e563
--- /dev/null
+++ b/svg/dragonfly.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/drakkar-dragon.svg b/svg/drakkar-dragon.svg
new file mode 100644
index 000000000..4de853a86
--- /dev/null
+++ b/svg/drakkar-dragon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/drakkar.svg b/svg/drakkar.svg
new file mode 100644
index 000000000..2b998e41f
--- /dev/null
+++ b/svg/drakkar.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/drama-masks.svg b/svg/drama-masks.svg
new file mode 100644
index 000000000..8677c4909
--- /dev/null
+++ b/svg/drama-masks.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/drawbridge.svg b/svg/drawbridge.svg
new file mode 100644
index 000000000..12486c919
--- /dev/null
+++ b/svg/drawbridge.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dread-skull.svg b/svg/dread-skull.svg
new file mode 100644
index 000000000..9b006184c
--- /dev/null
+++ b/svg/dread-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dread.svg b/svg/dread.svg
new file mode 100644
index 000000000..3d2fb7021
--- /dev/null
+++ b/svg/dread.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dreadnought.svg b/svg/dreadnought.svg
new file mode 100644
index 000000000..0ceee8cf1
--- /dev/null
+++ b/svg/dreadnought.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dream-catcher.svg b/svg/dream-catcher.svg
new file mode 100644
index 000000000..557525f98
--- /dev/null
+++ b/svg/dream-catcher.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dress.svg b/svg/dress.svg
new file mode 100644
index 000000000..a86904037
--- /dev/null
+++ b/svg/dress.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/drill-2.svg b/svg/drill-2.svg
new file mode 100644
index 000000000..5fa5d14d4
--- /dev/null
+++ b/svg/drill-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/drill.svg b/svg/drill.svg
new file mode 100644
index 000000000..9c44e01f4
--- /dev/null
+++ b/svg/drill.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/drink-me.svg b/svg/drink-me.svg
new file mode 100644
index 000000000..f0208b414
--- /dev/null
+++ b/svg/drink-me.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/drinking.svg b/svg/drinking.svg
new file mode 100644
index 000000000..c59f9dbd9
--- /dev/null
+++ b/svg/drinking.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dripping-blade.svg b/svg/dripping-blade.svg
new file mode 100644
index 000000000..9fdf5e278
--- /dev/null
+++ b/svg/dripping-blade.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dripping-goo.svg b/svg/dripping-goo.svg
new file mode 100644
index 000000000..2339289ea
--- /dev/null
+++ b/svg/dripping-goo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dripping-honey.svg b/svg/dripping-honey.svg
new file mode 100644
index 000000000..721f5af5e
--- /dev/null
+++ b/svg/dripping-honey.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dripping-knife.svg b/svg/dripping-knife.svg
new file mode 100644
index 000000000..0b6373eb5
--- /dev/null
+++ b/svg/dripping-knife.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dripping-star.svg b/svg/dripping-star.svg
new file mode 100644
index 000000000..b6d4424d7
--- /dev/null
+++ b/svg/dripping-star.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dripping-stone.svg b/svg/dripping-stone.svg
new file mode 100644
index 000000000..b9f2cd3ba
--- /dev/null
+++ b/svg/dripping-stone.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dripping-sword.svg b/svg/dripping-sword.svg
new file mode 100644
index 000000000..bc76cf5a0
--- /dev/null
+++ b/svg/dripping-sword.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dripping-tube.svg b/svg/dripping-tube.svg
new file mode 100644
index 000000000..b057887af
--- /dev/null
+++ b/svg/dripping-tube.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/drop-earrings.svg b/svg/drop-earrings.svg
new file mode 100644
index 000000000..797e83e94
--- /dev/null
+++ b/svg/drop-earrings.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/drop-weapon.svg b/svg/drop-weapon.svg
new file mode 100644
index 000000000..c0c91d232
--- /dev/null
+++ b/svg/drop-weapon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/drop.svg b/svg/drop.svg
new file mode 100644
index 000000000..f54d93b26
--- /dev/null
+++ b/svg/drop.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/droplet-splash.svg b/svg/droplet-splash.svg
new file mode 100644
index 000000000..aa20f4bc7
--- /dev/null
+++ b/svg/droplet-splash.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/droplets.svg b/svg/droplets.svg
new file mode 100644
index 000000000..2eb5462e3
--- /dev/null
+++ b/svg/droplets.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/drowning.svg b/svg/drowning.svg
new file mode 100644
index 000000000..40bd8af54
--- /dev/null
+++ b/svg/drowning.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/drum-kit.svg b/svg/drum-kit.svg
new file mode 100644
index 000000000..56fb9312c
--- /dev/null
+++ b/svg/drum-kit.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/drum.svg b/svg/drum.svg
new file mode 100644
index 000000000..7c4af39d5
--- /dev/null
+++ b/svg/drum.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/duality-mask.svg b/svg/duality-mask.svg
new file mode 100644
index 000000000..fef9d3975
--- /dev/null
+++ b/svg/duality-mask.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/duality.svg b/svg/duality.svg
new file mode 100644
index 000000000..f58736f02
--- /dev/null
+++ b/svg/duality.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/duck-palm.svg b/svg/duck-palm.svg
new file mode 100644
index 000000000..9be9968c1
--- /dev/null
+++ b/svg/duck-palm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/duck.svg b/svg/duck.svg
new file mode 100644
index 000000000..87cc3ce22
--- /dev/null
+++ b/svg/duck.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/duel.svg b/svg/duel.svg
new file mode 100644
index 000000000..c4cc96bba
--- /dev/null
+++ b/svg/duel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/duffel-bag.svg b/svg/duffel-bag.svg
new file mode 100644
index 000000000..88e0e7d99
--- /dev/null
+++ b/svg/duffel-bag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dumpling-bao.svg b/svg/dumpling-bao.svg
new file mode 100644
index 000000000..498ab0fa2
--- /dev/null
+++ b/svg/dumpling-bao.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dumpling.svg b/svg/dumpling.svg
new file mode 100644
index 000000000..5bfe27dbb
--- /dev/null
+++ b/svg/dumpling.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dunce-cap.svg b/svg/dunce-cap.svg
new file mode 100644
index 000000000..10f9d0478
--- /dev/null
+++ b/svg/dunce-cap.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dungeon-gate.svg b/svg/dungeon-gate.svg
new file mode 100644
index 000000000..8dccad673
--- /dev/null
+++ b/svg/dungeon-gate.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dungeon-light.svg b/svg/dungeon-light.svg
new file mode 100644
index 000000000..69ccb5048
--- /dev/null
+++ b/svg/dungeon-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/duration.svg b/svg/duration.svg
new file mode 100644
index 000000000..4fc3b35aa
--- /dev/null
+++ b/svg/duration.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dust-cloud.svg b/svg/dust-cloud.svg
new file mode 100644
index 000000000..50c4fdf09
--- /dev/null
+++ b/svg/dust-cloud.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dutch-bike.svg b/svg/dutch-bike.svg
new file mode 100644
index 000000000..e64ef2c4a
--- /dev/null
+++ b/svg/dutch-bike.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dwarf-face.svg b/svg/dwarf-face.svg
new file mode 100644
index 000000000..e7e2b44e3
--- /dev/null
+++ b/svg/dwarf-face.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dwarf-helmet.svg b/svg/dwarf-helmet.svg
new file mode 100644
index 000000000..5010ee8aa
--- /dev/null
+++ b/svg/dwarf-helmet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dwarf-king.svg b/svg/dwarf-king.svg
new file mode 100644
index 000000000..28d46560e
--- /dev/null
+++ b/svg/dwarf-king.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dwennimmen.svg b/svg/dwennimmen.svg
new file mode 100644
index 000000000..3490d04bf
--- /dev/null
+++ b/svg/dwennimmen.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/dynamite.svg b/svg/dynamite.svg
new file mode 100644
index 000000000..30775e6d9
--- /dev/null
+++ b/svg/dynamite.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/eagle-emblem.svg b/svg/eagle-emblem.svg
new file mode 100644
index 000000000..fdea1bd05
--- /dev/null
+++ b/svg/eagle-emblem.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/eagle-head.svg b/svg/eagle-head.svg
new file mode 100644
index 000000000..a58f10d78
--- /dev/null
+++ b/svg/eagle-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/earbuds.svg b/svg/earbuds.svg
new file mode 100644
index 000000000..e2eba53fc
--- /dev/null
+++ b/svg/earbuds.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/earrings.svg b/svg/earrings.svg
new file mode 100644
index 000000000..d7b4d2580
--- /dev/null
+++ b/svg/earrings.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/earth-africa-europe.svg b/svg/earth-africa-europe.svg
new file mode 100644
index 000000000..eee8dfbc9
--- /dev/null
+++ b/svg/earth-africa-europe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/earth-america.svg b/svg/earth-america.svg
new file mode 100644
index 000000000..db5f1a571
--- /dev/null
+++ b/svg/earth-america.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/earth-asia-oceania.svg b/svg/earth-asia-oceania.svg
new file mode 100644
index 000000000..f2f06aed7
--- /dev/null
+++ b/svg/earth-asia-oceania.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/earth-crack.svg b/svg/earth-crack.svg
new file mode 100644
index 000000000..6916738bb
--- /dev/null
+++ b/svg/earth-crack.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/earth-spit.svg b/svg/earth-spit.svg
new file mode 100644
index 000000000..5e62f8abe
--- /dev/null
+++ b/svg/earth-spit.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/earth-worm.svg b/svg/earth-worm.svg
new file mode 100644
index 000000000..2d52b7607
--- /dev/null
+++ b/svg/earth-worm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/earwig.svg b/svg/earwig.svg
new file mode 100644
index 000000000..c57895f1e
--- /dev/null
+++ b/svg/earwig.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/easel.svg b/svg/easel.svg
new file mode 100644
index 000000000..721779f2a
--- /dev/null
+++ b/svg/easel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/easter-egg.svg b/svg/easter-egg.svg
new file mode 100644
index 000000000..e3268f851
--- /dev/null
+++ b/svg/easter-egg.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/eating-pelican.svg b/svg/eating-pelican.svg
new file mode 100644
index 000000000..9b0ca7247
--- /dev/null
+++ b/svg/eating-pelican.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/eating.svg b/svg/eating.svg
new file mode 100644
index 000000000..5ff765c58
--- /dev/null
+++ b/svg/eating.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/echo-ripples.svg b/svg/echo-ripples.svg
new file mode 100644
index 000000000..dbea34c4b
--- /dev/null
+++ b/svg/echo-ripples.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/eclipse-flare.svg b/svg/eclipse-flare.svg
new file mode 100644
index 000000000..e2b92ad41
--- /dev/null
+++ b/svg/eclipse-flare.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/eclipse-saw.svg b/svg/eclipse-saw.svg
new file mode 100644
index 000000000..fe27709c4
--- /dev/null
+++ b/svg/eclipse-saw.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/eclipse.svg b/svg/eclipse.svg
new file mode 100644
index 000000000..9f03c0db7
--- /dev/null
+++ b/svg/eclipse.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ecology.svg b/svg/ecology.svg
new file mode 100644
index 000000000..d696d891e
--- /dev/null
+++ b/svg/ecology.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/edge-crack.svg b/svg/edge-crack.svg
new file mode 100644
index 000000000..95aafd23d
--- /dev/null
+++ b/svg/edge-crack.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/edged-shield.svg b/svg/edged-shield.svg
new file mode 100644
index 000000000..89b17bf3e
--- /dev/null
+++ b/svg/edged-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/eel.svg b/svg/eel.svg
new file mode 100644
index 000000000..848e46284
--- /dev/null
+++ b/svg/eel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/egg-clutch.svg b/svg/egg-clutch.svg
new file mode 100644
index 000000000..ecc5a85df
--- /dev/null
+++ b/svg/egg-clutch.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/egg-defense.svg b/svg/egg-defense.svg
new file mode 100644
index 000000000..ca26c6e6b
--- /dev/null
+++ b/svg/egg-defense.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/egg-eye.svg b/svg/egg-eye.svg
new file mode 100644
index 000000000..d054ade9b
--- /dev/null
+++ b/svg/egg-eye.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/egg-pod.svg b/svg/egg-pod.svg
new file mode 100644
index 000000000..f6c25cdd8
--- /dev/null
+++ b/svg/egg-pod.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/egypt.svg b/svg/egypt.svg
new file mode 100644
index 000000000..6c028e2ae
--- /dev/null
+++ b/svg/egypt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/egyptian-bird.svg b/svg/egyptian-bird.svg
new file mode 100644
index 000000000..3616ae15c
--- /dev/null
+++ b/svg/egyptian-bird.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/egyptian-profile.svg b/svg/egyptian-profile.svg
new file mode 100644
index 000000000..2084afa92
--- /dev/null
+++ b/svg/egyptian-profile.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/egyptian-pyramids.svg b/svg/egyptian-pyramids.svg
new file mode 100644
index 000000000..0511a6435
--- /dev/null
+++ b/svg/egyptian-pyramids.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/egyptian-sphinx.svg b/svg/egyptian-sphinx.svg
new file mode 100644
index 000000000..cafe69ad8
--- /dev/null
+++ b/svg/egyptian-sphinx.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/egyptian-temple.svg b/svg/egyptian-temple.svg
new file mode 100644
index 000000000..21ea10801
--- /dev/null
+++ b/svg/egyptian-temple.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/egyptian-urns.svg b/svg/egyptian-urns.svg
new file mode 100644
index 000000000..586ad9e54
--- /dev/null
+++ b/svg/egyptian-urns.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/egyptian-walk.svg b/svg/egyptian-walk.svg
new file mode 100644
index 000000000..d65637110
--- /dev/null
+++ b/svg/egyptian-walk.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/eight-ball.svg b/svg/eight-ball.svg
new file mode 100644
index 000000000..7f024a5a6
--- /dev/null
+++ b/svg/eight-ball.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/elbow-pad.svg b/svg/elbow-pad.svg
new file mode 100644
index 000000000..ef9ef62f6
--- /dev/null
+++ b/svg/elbow-pad.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/elderberry.svg b/svg/elderberry.svg
new file mode 100644
index 000000000..b36677eb6
--- /dev/null
+++ b/svg/elderberry.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/electric-whip.svg b/svg/electric-whip.svg
new file mode 100644
index 000000000..ee813fa39
--- /dev/null
+++ b/svg/electric-whip.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/electric.svg b/svg/electric.svg
new file mode 100644
index 000000000..804e1bebf
--- /dev/null
+++ b/svg/electric.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/electrical-crescent.svg b/svg/electrical-crescent.svg
new file mode 100644
index 000000000..bee7d0dbc
--- /dev/null
+++ b/svg/electrical-crescent.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/electrical-resistance.svg b/svg/electrical-resistance.svg
new file mode 100644
index 000000000..982817b9d
--- /dev/null
+++ b/svg/electrical-resistance.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/electrical-socket.svg b/svg/electrical-socket.svg
new file mode 100644
index 000000000..a46ddb6a4
--- /dev/null
+++ b/svg/electrical-socket.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/elephant-head.svg b/svg/elephant-head.svg
new file mode 100644
index 000000000..93d401f92
--- /dev/null
+++ b/svg/elephant-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/elephant.svg b/svg/elephant.svg
new file mode 100644
index 000000000..c1129955f
--- /dev/null
+++ b/svg/elephant.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/elevator.svg b/svg/elevator.svg
new file mode 100644
index 000000000..01fe28e95
--- /dev/null
+++ b/svg/elevator.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/elf-ear.svg b/svg/elf-ear.svg
new file mode 100644
index 000000000..46fe51b50
--- /dev/null
+++ b/svg/elf-ear.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/elf-helmet.svg b/svg/elf-helmet.svg
new file mode 100644
index 000000000..f6161c90a
--- /dev/null
+++ b/svg/elf-helmet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/elven-castle.svg b/svg/elven-castle.svg
new file mode 100644
index 000000000..b24720118
--- /dev/null
+++ b/svg/elven-castle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/elysium-shade.svg b/svg/elysium-shade.svg
new file mode 100644
index 000000000..c5f398f8d
--- /dev/null
+++ b/svg/elysium-shade.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ember-shot.svg b/svg/ember-shot.svg
new file mode 100644
index 000000000..40e71d6b1
--- /dev/null
+++ b/svg/ember-shot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/embrassed-energy.svg b/svg/embrassed-energy.svg
new file mode 100644
index 000000000..7577efc09
--- /dev/null
+++ b/svg/embrassed-energy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/embryo.svg b/svg/embryo.svg
new file mode 100644
index 000000000..45886d610
--- /dev/null
+++ b/svg/embryo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/emerald-necklace.svg b/svg/emerald-necklace.svg
new file mode 100644
index 000000000..07a92b37d
--- /dev/null
+++ b/svg/emerald-necklace.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/emerald.svg b/svg/emerald.svg
new file mode 100644
index 000000000..a05daca13
--- /dev/null
+++ b/svg/emerald.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/empty-chessboard.svg b/svg/empty-chessboard.svg
new file mode 100644
index 000000000..d38787e29
--- /dev/null
+++ b/svg/empty-chessboard.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/empty-hourglass.svg b/svg/empty-hourglass.svg
new file mode 100644
index 000000000..a70280867
--- /dev/null
+++ b/svg/empty-hourglass.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/empty-metal-bucket-handle.svg b/svg/empty-metal-bucket-handle.svg
new file mode 100644
index 000000000..63d7fab9b
--- /dev/null
+++ b/svg/empty-metal-bucket-handle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/empty-metal-bucket.svg b/svg/empty-metal-bucket.svg
new file mode 100644
index 000000000..3ab2ae305
--- /dev/null
+++ b/svg/empty-metal-bucket.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/empty-wood-bucket-handle.svg b/svg/empty-wood-bucket-handle.svg
new file mode 100644
index 000000000..ee694d397
--- /dev/null
+++ b/svg/empty-wood-bucket-handle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/empty-wood-bucket.svg b/svg/empty-wood-bucket.svg
new file mode 100644
index 000000000..139f3a303
--- /dev/null
+++ b/svg/empty-wood-bucket.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/encirclement.svg b/svg/encirclement.svg
new file mode 100644
index 000000000..06d222f33
--- /dev/null
+++ b/svg/encirclement.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/energise.svg b/svg/energise.svg
new file mode 100644
index 000000000..6e1ab306b
--- /dev/null
+++ b/svg/energise.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/energy-arrow.svg b/svg/energy-arrow.svg
new file mode 100644
index 000000000..e4449bda9
--- /dev/null
+++ b/svg/energy-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/energy-breath.svg b/svg/energy-breath.svg
new file mode 100644
index 000000000..3a36d1ea7
--- /dev/null
+++ b/svg/energy-breath.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/energy-shield.svg b/svg/energy-shield.svg
new file mode 100644
index 000000000..b9b69ed08
--- /dev/null
+++ b/svg/energy-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/energy-sword.svg b/svg/energy-sword.svg
new file mode 100644
index 000000000..123430bf3
--- /dev/null
+++ b/svg/energy-sword.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/energy-tank.svg b/svg/energy-tank.svg
new file mode 100644
index 000000000..e779efbe0
--- /dev/null
+++ b/svg/energy-tank.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/engagement-ring.svg b/svg/engagement-ring.svg
new file mode 100644
index 000000000..3ceb5e0db
--- /dev/null
+++ b/svg/engagement-ring.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/enlightenment.svg b/svg/enlightenment.svg
new file mode 100644
index 000000000..1ad57500a
--- /dev/null
+++ b/svg/enlightenment.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/enrage.svg b/svg/enrage.svg
new file mode 100644
index 000000000..d0973acc6
--- /dev/null
+++ b/svg/enrage.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ent-mouth.svg b/svg/ent-mouth.svg
new file mode 100644
index 000000000..bdf7b48b7
--- /dev/null
+++ b/svg/ent-mouth.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/entangled-typhoon.svg b/svg/entangled-typhoon.svg
new file mode 100644
index 000000000..e7373f3ee
--- /dev/null
+++ b/svg/entangled-typhoon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/entry-door.svg b/svg/entry-door.svg
new file mode 100644
index 000000000..ca28f49f4
--- /dev/null
+++ b/svg/entry-door.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/envelope.svg b/svg/envelope.svg
new file mode 100644
index 000000000..f38182049
--- /dev/null
+++ b/svg/envelope.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/erlenmeyer.svg b/svg/erlenmeyer.svg
new file mode 100644
index 000000000..966fa250c
--- /dev/null
+++ b/svg/erlenmeyer.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ermine.svg b/svg/ermine.svg
new file mode 100644
index 000000000..e97b86155
--- /dev/null
+++ b/svg/ermine.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/eruption.svg b/svg/eruption.svg
new file mode 100644
index 000000000..7d30ab161
--- /dev/null
+++ b/svg/eruption.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/escalator.svg b/svg/escalator.svg
new file mode 100644
index 000000000..f671e2c35
--- /dev/null
+++ b/svg/escalator.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/eskimo.svg b/svg/eskimo.svg
new file mode 100644
index 000000000..6478f0567
--- /dev/null
+++ b/svg/eskimo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/eternal-love.svg b/svg/eternal-love.svg
new file mode 100644
index 000000000..042856348
--- /dev/null
+++ b/svg/eternal-love.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/european-flag.svg b/svg/european-flag.svg
new file mode 100644
index 000000000..f99c4ed8d
--- /dev/null
+++ b/svg/european-flag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/evasion.svg b/svg/evasion.svg
new file mode 100644
index 000000000..7d78c0e8a
--- /dev/null
+++ b/svg/evasion.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/evil-bat.svg b/svg/evil-bat.svg
new file mode 100644
index 000000000..c4313fa14
--- /dev/null
+++ b/svg/evil-bat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/evil-book.svg b/svg/evil-book.svg
new file mode 100644
index 000000000..c8f8d3a81
--- /dev/null
+++ b/svg/evil-book.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/evil-bud.svg b/svg/evil-bud.svg
new file mode 100644
index 000000000..f4d7487f8
--- /dev/null
+++ b/svg/evil-bud.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/evil-comet.svg b/svg/evil-comet.svg
new file mode 100644
index 000000000..b9b655ae3
--- /dev/null
+++ b/svg/evil-comet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/evil-eyes.svg b/svg/evil-eyes.svg
new file mode 100644
index 000000000..f6b032454
--- /dev/null
+++ b/svg/evil-eyes.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/evil-fork.svg b/svg/evil-fork.svg
new file mode 100644
index 000000000..b2d99b38c
--- /dev/null
+++ b/svg/evil-fork.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/evil-hand.svg b/svg/evil-hand.svg
new file mode 100644
index 000000000..5bd326326
--- /dev/null
+++ b/svg/evil-hand.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/evil-love.svg b/svg/evil-love.svg
new file mode 100644
index 000000000..0a2490d47
--- /dev/null
+++ b/svg/evil-love.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/evil-minion.svg b/svg/evil-minion.svg
new file mode 100644
index 000000000..fa7e7217f
--- /dev/null
+++ b/svg/evil-minion.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/evil-moon.svg b/svg/evil-moon.svg
new file mode 100644
index 000000000..f225322d8
--- /dev/null
+++ b/svg/evil-moon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/evil-tower.svg b/svg/evil-tower.svg
new file mode 100644
index 000000000..4437f2d58
--- /dev/null
+++ b/svg/evil-tower.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/evil-tree.svg b/svg/evil-tree.svg
new file mode 100644
index 000000000..cf675a226
--- /dev/null
+++ b/svg/evil-tree.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/evil-wings.svg b/svg/evil-wings.svg
new file mode 100644
index 000000000..f54daf7a1
--- /dev/null
+++ b/svg/evil-wings.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/executioner-hood.svg b/svg/executioner-hood.svg
new file mode 100644
index 000000000..c920f7f6e
--- /dev/null
+++ b/svg/executioner-hood.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/exit-door.svg b/svg/exit-door.svg
new file mode 100644
index 000000000..959cace1f
--- /dev/null
+++ b/svg/exit-door.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/expand.svg b/svg/expand.svg
new file mode 100644
index 000000000..ebfe1bdd1
--- /dev/null
+++ b/svg/expand.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/expanded-rays.svg b/svg/expanded-rays.svg
new file mode 100644
index 000000000..c007753ea
--- /dev/null
+++ b/svg/expanded-rays.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/expander.svg b/svg/expander.svg
new file mode 100644
index 000000000..f9c5e4f07
--- /dev/null
+++ b/svg/expander.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/expense.svg b/svg/expense.svg
new file mode 100644
index 000000000..04cf5a700
--- /dev/null
+++ b/svg/expense.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/exploding-planet.svg b/svg/exploding-planet.svg
new file mode 100644
index 000000000..7fc288e5b
--- /dev/null
+++ b/svg/exploding-planet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/explosion-rays.svg b/svg/explosion-rays.svg
new file mode 100644
index 000000000..2ac695ece
--- /dev/null
+++ b/svg/explosion-rays.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/explosive-materials.svg b/svg/explosive-materials.svg
new file mode 100644
index 000000000..7044f7dcd
--- /dev/null
+++ b/svg/explosive-materials.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/explosive-meeting.svg b/svg/explosive-meeting.svg
new file mode 100644
index 000000000..90b4eb9e3
--- /dev/null
+++ b/svg/explosive-meeting.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/extra-lucid.svg b/svg/extra-lucid.svg
new file mode 100644
index 000000000..1a51eb111
--- /dev/null
+++ b/svg/extra-lucid.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/extra-time.svg b/svg/extra-time.svg
new file mode 100644
index 000000000..2203ae451
--- /dev/null
+++ b/svg/extra-time.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/extraction-orb.svg b/svg/extraction-orb.svg
new file mode 100644
index 000000000..2fe378829
--- /dev/null
+++ b/svg/extraction-orb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/eye-of-horus.svg b/svg/eye-of-horus.svg
new file mode 100644
index 000000000..3c84731f4
--- /dev/null
+++ b/svg/eye-of-horus.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/eye-shield.svg b/svg/eye-shield.svg
new file mode 100644
index 000000000..ee603b1ff
--- /dev/null
+++ b/svg/eye-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/eye-target.svg b/svg/eye-target.svg
new file mode 100644
index 000000000..6fa0c5476
--- /dev/null
+++ b/svg/eye-target.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/eyeball.svg b/svg/eyeball.svg
new file mode 100644
index 000000000..bbd5733bc
--- /dev/null
+++ b/svg/eyeball.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/eyedropper.svg b/svg/eyedropper.svg
new file mode 100644
index 000000000..2d403f919
--- /dev/null
+++ b/svg/eyedropper.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/eyelashes.svg b/svg/eyelashes.svg
new file mode 100644
index 000000000..734128112
--- /dev/null
+++ b/svg/eyelashes.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/eyepatch.svg b/svg/eyepatch.svg
new file mode 100644
index 000000000..526f53652
--- /dev/null
+++ b/svg/eyepatch.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/eyestalk.svg b/svg/eyestalk.svg
new file mode 100644
index 000000000..777010f71
--- /dev/null
+++ b/svg/eyestalk.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/f-clef.svg b/svg/f-clef.svg
new file mode 100644
index 000000000..f1c9108a9
--- /dev/null
+++ b/svg/f-clef.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/f1-car.svg b/svg/f1-car.svg
new file mode 100644
index 000000000..206a814f2
--- /dev/null
+++ b/svg/f1-car.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/face-to-face.svg b/svg/face-to-face.svg
new file mode 100644
index 000000000..27870168e
--- /dev/null
+++ b/svg/face-to-face.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/factory-arm.svg b/svg/factory-arm.svg
new file mode 100644
index 000000000..f947e3cc3
--- /dev/null
+++ b/svg/factory-arm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/factory.svg b/svg/factory.svg
new file mode 100644
index 000000000..d77f7323d
--- /dev/null
+++ b/svg/factory.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fairy-2.svg b/svg/fairy-2.svg
new file mode 100644
index 000000000..d8c095cc0
--- /dev/null
+++ b/svg/fairy-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fairy-wand.svg b/svg/fairy-wand.svg
new file mode 100644
index 000000000..c7b08cdcd
--- /dev/null
+++ b/svg/fairy-wand.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fairy-wings.svg b/svg/fairy-wings.svg
new file mode 100644
index 000000000..7c46f1722
--- /dev/null
+++ b/svg/fairy-wings.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fairy.svg b/svg/fairy.svg
new file mode 100644
index 000000000..1143ec658
--- /dev/null
+++ b/svg/fairy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/falcon-moon.svg b/svg/falcon-moon.svg
new file mode 100644
index 000000000..300039b99
--- /dev/null
+++ b/svg/falcon-moon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fall-down.svg b/svg/fall-down.svg
new file mode 100644
index 000000000..f2502f985
--- /dev/null
+++ b/svg/fall-down.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/falling-blob.svg b/svg/falling-blob.svg
new file mode 100644
index 000000000..d4e8f8a73
--- /dev/null
+++ b/svg/falling-blob.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/falling-bomb.svg b/svg/falling-bomb.svg
new file mode 100644
index 000000000..cd42bd48c
--- /dev/null
+++ b/svg/falling-bomb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/falling-boulder.svg b/svg/falling-boulder.svg
new file mode 100644
index 000000000..566ab6b97
--- /dev/null
+++ b/svg/falling-boulder.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/falling-eye.svg b/svg/falling-eye.svg
new file mode 100644
index 000000000..3e4348070
--- /dev/null
+++ b/svg/falling-eye.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/falling-leaf.svg b/svg/falling-leaf.svg
new file mode 100644
index 000000000..361b6f4c7
--- /dev/null
+++ b/svg/falling-leaf.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/falling-ovoid.svg b/svg/falling-ovoid.svg
new file mode 100644
index 000000000..ec00a8786
--- /dev/null
+++ b/svg/falling-ovoid.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/falling-rocks.svg b/svg/falling-rocks.svg
new file mode 100644
index 000000000..32f989644
--- /dev/null
+++ b/svg/falling-rocks.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/falling-star.svg b/svg/falling-star.svg
new file mode 100644
index 000000000..4ca14bb63
--- /dev/null
+++ b/svg/falling-star.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/falling.svg b/svg/falling.svg
new file mode 100644
index 000000000..663cbc91b
--- /dev/null
+++ b/svg/falling.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fallout-shelter.svg b/svg/fallout-shelter.svg
new file mode 100644
index 000000000..ea07316a8
--- /dev/null
+++ b/svg/fallout-shelter.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/famas.svg b/svg/famas.svg
new file mode 100644
index 000000000..21a10351f
--- /dev/null
+++ b/svg/famas.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/family-house.svg b/svg/family-house.svg
new file mode 100644
index 000000000..977f4715f
--- /dev/null
+++ b/svg/family-house.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/family-tree.svg b/svg/family-tree.svg
new file mode 100644
index 000000000..76d636c8e
--- /dev/null
+++ b/svg/family-tree.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fanged-skull.svg b/svg/fanged-skull.svg
new file mode 100644
index 000000000..4987b249b
--- /dev/null
+++ b/svg/fanged-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fangs-circle.svg b/svg/fangs-circle.svg
new file mode 100644
index 000000000..f3bb923d4
--- /dev/null
+++ b/svg/fangs-circle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fangs.svg b/svg/fangs.svg
new file mode 100644
index 000000000..1d676a915
--- /dev/null
+++ b/svg/fangs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/farm-tractor.svg b/svg/farm-tractor.svg
new file mode 100644
index 000000000..4581d3ade
--- /dev/null
+++ b/svg/farm-tractor.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/farmer.svg b/svg/farmer.svg
new file mode 100644
index 000000000..dc2c0d932
--- /dev/null
+++ b/svg/farmer.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fast-arrow.svg b/svg/fast-arrow.svg
new file mode 100644
index 000000000..79783536c
--- /dev/null
+++ b/svg/fast-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fast-backward-button.svg b/svg/fast-backward-button.svg
new file mode 100644
index 000000000..84cfc3a20
--- /dev/null
+++ b/svg/fast-backward-button.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fast-forward-button.svg b/svg/fast-forward-button.svg
new file mode 100644
index 000000000..ab20ae776
--- /dev/null
+++ b/svg/fast-forward-button.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fast-noodles.svg b/svg/fast-noodles.svg
new file mode 100644
index 000000000..5d4a685eb
--- /dev/null
+++ b/svg/fast-noodles.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fat.svg b/svg/fat.svg
new file mode 100644
index 000000000..7e84eeea9
--- /dev/null
+++ b/svg/fat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/feather-necklace.svg b/svg/feather-necklace.svg
new file mode 100644
index 000000000..992af1da5
--- /dev/null
+++ b/svg/feather-necklace.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/feather-wound.svg b/svg/feather-wound.svg
new file mode 100644
index 000000000..41fc52b84
--- /dev/null
+++ b/svg/feather-wound.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/feather.svg b/svg/feather.svg
new file mode 100644
index 000000000..2e6457b7f
--- /dev/null
+++ b/svg/feather.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/feathered-wing.svg b/svg/feathered-wing.svg
new file mode 100644
index 000000000..f9fd58cde
--- /dev/null
+++ b/svg/feathered-wing.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fedora.svg b/svg/fedora.svg
new file mode 100644
index 000000000..4bcf09e8a
--- /dev/null
+++ b/svg/fedora.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/feline.svg b/svg/feline.svg
new file mode 100644
index 000000000..138fb90a1
--- /dev/null
+++ b/svg/feline.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/female-legs.svg b/svg/female-legs.svg
new file mode 100644
index 000000000..a007ca5cb
--- /dev/null
+++ b/svg/female-legs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/female-vampire.svg b/svg/female-vampire.svg
new file mode 100644
index 000000000..fe2e053fa
--- /dev/null
+++ b/svg/female-vampire.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/female.svg b/svg/female.svg
new file mode 100644
index 000000000..5a30c69f8
--- /dev/null
+++ b/svg/female.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fencer.svg b/svg/fencer.svg
new file mode 100644
index 000000000..9cc25a05f
--- /dev/null
+++ b/svg/fencer.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fern.svg b/svg/fern.svg
new file mode 100644
index 000000000..19e48824e
--- /dev/null
+++ b/svg/fern.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fertilizer-bag.svg b/svg/fertilizer-bag.svg
new file mode 100644
index 000000000..7b29c30ce
--- /dev/null
+++ b/svg/fertilizer-bag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fetus.svg b/svg/fetus.svg
new file mode 100644
index 000000000..dffcc7414
--- /dev/null
+++ b/svg/fetus.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fez.svg b/svg/fez.svg
new file mode 100644
index 000000000..ef7edc767
--- /dev/null
+++ b/svg/fez.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/field-gun.svg b/svg/field-gun.svg
new file mode 100644
index 000000000..6dc648595
--- /dev/null
+++ b/svg/field-gun.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/field.svg b/svg/field.svg
new file mode 100644
index 000000000..00434cb45
--- /dev/null
+++ b/svg/field.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/figurehead.svg b/svg/figurehead.svg
new file mode 100644
index 000000000..20f8ce21a
--- /dev/null
+++ b/svg/figurehead.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/files.svg b/svg/files.svg
new file mode 100644
index 000000000..50ae896f4
--- /dev/null
+++ b/svg/files.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/film-projector.svg b/svg/film-projector.svg
new file mode 100644
index 000000000..ab314bd53
--- /dev/null
+++ b/svg/film-projector.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/film-spool.svg b/svg/film-spool.svg
new file mode 100644
index 000000000..b42d58501
--- /dev/null
+++ b/svg/film-spool.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/film-strip.svg b/svg/film-strip.svg
new file mode 100644
index 000000000..a48d0f668
--- /dev/null
+++ b/svg/film-strip.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/finch.svg b/svg/finch.svg
new file mode 100644
index 000000000..68287123a
--- /dev/null
+++ b/svg/finch.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/finger-print.svg b/svg/finger-print.svg
new file mode 100644
index 000000000..b90ab3815
--- /dev/null
+++ b/svg/finger-print.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fingernail.svg b/svg/fingernail.svg
new file mode 100644
index 000000000..0b43a7387
--- /dev/null
+++ b/svg/fingernail.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fingers-crossed.svg b/svg/fingers-crossed.svg
new file mode 100644
index 000000000..9e25623eb
--- /dev/null
+++ b/svg/fingers-crossed.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/finish-line.svg b/svg/finish-line.svg
new file mode 100644
index 000000000..72341bbc0
--- /dev/null
+++ b/svg/finish-line.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fire-ace.svg b/svg/fire-ace.svg
new file mode 100644
index 000000000..6061b95d9
--- /dev/null
+++ b/svg/fire-ace.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fire-axe.svg b/svg/fire-axe.svg
new file mode 100644
index 000000000..21e7c497d
--- /dev/null
+++ b/svg/fire-axe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fire-bomb.svg b/svg/fire-bomb.svg
new file mode 100644
index 000000000..dfaf3eca0
--- /dev/null
+++ b/svg/fire-bomb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fire-bottle.svg b/svg/fire-bottle.svg
new file mode 100644
index 000000000..918f71e2d
--- /dev/null
+++ b/svg/fire-bottle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fire-bowl.svg b/svg/fire-bowl.svg
new file mode 100644
index 000000000..924a15952
--- /dev/null
+++ b/svg/fire-bowl.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fire-breath.svg b/svg/fire-breath.svg
new file mode 100644
index 000000000..ca73fcf7d
--- /dev/null
+++ b/svg/fire-breath.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fire-dash.svg b/svg/fire-dash.svg
new file mode 100644
index 000000000..e9bc42ede
--- /dev/null
+++ b/svg/fire-dash.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fire-extinguisher.svg b/svg/fire-extinguisher.svg
new file mode 100644
index 000000000..00bc9d12d
--- /dev/null
+++ b/svg/fire-extinguisher.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fire-flower.svg b/svg/fire-flower.svg
new file mode 100644
index 000000000..9c98956e8
--- /dev/null
+++ b/svg/fire-flower.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fire-gem.svg b/svg/fire-gem.svg
new file mode 100644
index 000000000..2192b2e12
--- /dev/null
+++ b/svg/fire-gem.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fire-iris.svg b/svg/fire-iris.svg
new file mode 100644
index 000000000..45095aeb3
--- /dev/null
+++ b/svg/fire-iris.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fire-punch.svg b/svg/fire-punch.svg
new file mode 100644
index 000000000..17a853e41
--- /dev/null
+++ b/svg/fire-punch.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fire-ray.svg b/svg/fire-ray.svg
new file mode 100644
index 000000000..24b88261c
--- /dev/null
+++ b/svg/fire-ray.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fire-ring.svg b/svg/fire-ring.svg
new file mode 100644
index 000000000..4d16786d5
--- /dev/null
+++ b/svg/fire-ring.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fire-shield.svg b/svg/fire-shield.svg
new file mode 100644
index 000000000..323b3146d
--- /dev/null
+++ b/svg/fire-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fire-shrine.svg b/svg/fire-shrine.svg
new file mode 100644
index 000000000..59559b7e2
--- /dev/null
+++ b/svg/fire-shrine.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fire-silhouette.svg b/svg/fire-silhouette.svg
new file mode 100644
index 000000000..3a1306109
--- /dev/null
+++ b/svg/fire-silhouette.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fire-spell-cast.svg b/svg/fire-spell-cast.svg
new file mode 100644
index 000000000..a7d57af72
--- /dev/null
+++ b/svg/fire-spell-cast.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fire-tail.svg b/svg/fire-tail.svg
new file mode 100644
index 000000000..59f77a958
--- /dev/null
+++ b/svg/fire-tail.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fire-wave.svg b/svg/fire-wave.svg
new file mode 100644
index 000000000..9a396fdc2
--- /dev/null
+++ b/svg/fire-wave.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fire-zone.svg b/svg/fire-zone.svg
new file mode 100644
index 000000000..6b6e5b1fc
--- /dev/null
+++ b/svg/fire-zone.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fire.svg b/svg/fire.svg
new file mode 100644
index 000000000..101680170
--- /dev/null
+++ b/svg/fire.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fireball.svg b/svg/fireball.svg
new file mode 100644
index 000000000..f6cb87346
--- /dev/null
+++ b/svg/fireball.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fireflake.svg b/svg/fireflake.svg
new file mode 100644
index 000000000..f2edbec1a
--- /dev/null
+++ b/svg/fireflake.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fireplace.svg b/svg/fireplace.svg
new file mode 100644
index 000000000..06b32960e
--- /dev/null
+++ b/svg/fireplace.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/firewall.svg b/svg/firewall.svg
new file mode 100644
index 000000000..417306cb0
--- /dev/null
+++ b/svg/firewall.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/firework-rocket.svg b/svg/firework-rocket.svg
new file mode 100644
index 000000000..42d51e496
--- /dev/null
+++ b/svg/firework-rocket.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/first-aid-kit.svg b/svg/first-aid-kit.svg
new file mode 100644
index 000000000..ee9b358c3
--- /dev/null
+++ b/svg/first-aid-kit.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fish-bucket.svg b/svg/fish-bucket.svg
new file mode 100644
index 000000000..d9c4a68f4
--- /dev/null
+++ b/svg/fish-bucket.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fish-cooked.svg b/svg/fish-cooked.svg
new file mode 100644
index 000000000..20d013c26
--- /dev/null
+++ b/svg/fish-cooked.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fish-corpse.svg b/svg/fish-corpse.svg
new file mode 100644
index 000000000..ee1521fe8
--- /dev/null
+++ b/svg/fish-corpse.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fish-eggs.svg b/svg/fish-eggs.svg
new file mode 100644
index 000000000..2e1ce59db
--- /dev/null
+++ b/svg/fish-eggs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fish-escape.svg b/svg/fish-escape.svg
new file mode 100644
index 000000000..22edf7e8f
--- /dev/null
+++ b/svg/fish-escape.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fish-monster.svg b/svg/fish-monster.svg
new file mode 100644
index 000000000..16d9c3970
--- /dev/null
+++ b/svg/fish-monster.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fish-scales.svg b/svg/fish-scales.svg
new file mode 100644
index 000000000..2b67b6aa8
--- /dev/null
+++ b/svg/fish-scales.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fish-smoking.svg b/svg/fish-smoking.svg
new file mode 100644
index 000000000..d73fcd1b8
--- /dev/null
+++ b/svg/fish-smoking.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fishbone.svg b/svg/fishbone.svg
new file mode 100644
index 000000000..148bb5652
--- /dev/null
+++ b/svg/fishbone.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fishhook-fork.svg b/svg/fishhook-fork.svg
new file mode 100644
index 000000000..e19ab17f6
--- /dev/null
+++ b/svg/fishhook-fork.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fishing-boat.svg b/svg/fishing-boat.svg
new file mode 100644
index 000000000..f1e290382
--- /dev/null
+++ b/svg/fishing-boat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fishing-hook.svg b/svg/fishing-hook.svg
new file mode 100644
index 000000000..a6db137d7
--- /dev/null
+++ b/svg/fishing-hook.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fishing-jig.svg b/svg/fishing-jig.svg
new file mode 100644
index 000000000..0fdf2a3fe
--- /dev/null
+++ b/svg/fishing-jig.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fishing-lure.svg b/svg/fishing-lure.svg
new file mode 100644
index 000000000..657792ee2
--- /dev/null
+++ b/svg/fishing-lure.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fishing-net.svg b/svg/fishing-net.svg
new file mode 100644
index 000000000..d13c46c9a
--- /dev/null
+++ b/svg/fishing-net.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fishing-pole.svg b/svg/fishing-pole.svg
new file mode 100644
index 000000000..d271e0f2d
--- /dev/null
+++ b/svg/fishing-pole.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fishing-spoon.svg b/svg/fishing-spoon.svg
new file mode 100644
index 000000000..95759e95a
--- /dev/null
+++ b/svg/fishing-spoon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fishing.svg b/svg/fishing.svg
new file mode 100644
index 000000000..f929b577f
--- /dev/null
+++ b/svg/fishing.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fission.svg b/svg/fission.svg
new file mode 100644
index 000000000..9c0f08342
--- /dev/null
+++ b/svg/fission.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fist-2.svg b/svg/fist-2.svg
new file mode 100644
index 000000000..de8371445
--- /dev/null
+++ b/svg/fist-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fist.svg b/svg/fist.svg
new file mode 100644
index 000000000..d45e157e6
--- /dev/null
+++ b/svg/fist.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fizzing-flask.svg b/svg/fizzing-flask.svg
new file mode 100644
index 000000000..3bf352d3e
--- /dev/null
+++ b/svg/fizzing-flask.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flag-objective.svg b/svg/flag-objective.svg
new file mode 100644
index 000000000..1df0a7f8f
--- /dev/null
+++ b/svg/flag-objective.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flail.svg b/svg/flail.svg
new file mode 100644
index 000000000..a1a5f06f8
--- /dev/null
+++ b/svg/flail.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flake.svg b/svg/flake.svg
new file mode 100644
index 000000000..b80e0d00c
--- /dev/null
+++ b/svg/flake.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flame-claws.svg b/svg/flame-claws.svg
new file mode 100644
index 000000000..61f16f710
--- /dev/null
+++ b/svg/flame-claws.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flame-spin.svg b/svg/flame-spin.svg
new file mode 100644
index 000000000..d99a0551f
--- /dev/null
+++ b/svg/flame-spin.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flame-tunnel.svg b/svg/flame-tunnel.svg
new file mode 100644
index 000000000..8723c1f3c
--- /dev/null
+++ b/svg/flame-tunnel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flame.svg b/svg/flame.svg
new file mode 100644
index 000000000..a62995245
--- /dev/null
+++ b/svg/flame.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flamed-leaf.svg b/svg/flamed-leaf.svg
new file mode 100644
index 000000000..74996f052
--- /dev/null
+++ b/svg/flamed-leaf.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flamer.svg b/svg/flamer.svg
new file mode 100644
index 000000000..b89bc79f3
--- /dev/null
+++ b/svg/flamer.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flamethrower-soldier.svg b/svg/flamethrower-soldier.svg
new file mode 100644
index 000000000..d22c79936
--- /dev/null
+++ b/svg/flamethrower-soldier.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flamethrower.svg b/svg/flamethrower.svg
new file mode 100644
index 000000000..84c26d2d1
--- /dev/null
+++ b/svg/flamethrower.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flaming-arrow.svg b/svg/flaming-arrow.svg
new file mode 100644
index 000000000..c600ca89f
--- /dev/null
+++ b/svg/flaming-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flaming-claw.svg b/svg/flaming-claw.svg
new file mode 100644
index 000000000..ae0b859e9
--- /dev/null
+++ b/svg/flaming-claw.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flaming-sheet.svg b/svg/flaming-sheet.svg
new file mode 100644
index 000000000..e378bcf10
--- /dev/null
+++ b/svg/flaming-sheet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flaming-trident.svg b/svg/flaming-trident.svg
new file mode 100644
index 000000000..0a298b094
--- /dev/null
+++ b/svg/flaming-trident.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flamingo.svg b/svg/flamingo.svg
new file mode 100644
index 000000000..58e70fb22
--- /dev/null
+++ b/svg/flamingo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flanged-mace.svg b/svg/flanged-mace.svg
new file mode 100644
index 000000000..067e34895
--- /dev/null
+++ b/svg/flanged-mace.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flash-grenade.svg b/svg/flash-grenade.svg
new file mode 100644
index 000000000..3fb19d4d2
--- /dev/null
+++ b/svg/flash-grenade.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flashlight.svg b/svg/flashlight.svg
new file mode 100644
index 000000000..d7f7f93be
--- /dev/null
+++ b/svg/flashlight.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flat-hammer.svg b/svg/flat-hammer.svg
new file mode 100644
index 000000000..47a948f6e
--- /dev/null
+++ b/svg/flat-hammer.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flat-paw-print.svg b/svg/flat-paw-print.svg
new file mode 100644
index 000000000..687828972
--- /dev/null
+++ b/svg/flat-paw-print.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flat-platform.svg b/svg/flat-platform.svg
new file mode 100644
index 000000000..d411f86e2
--- /dev/null
+++ b/svg/flat-platform.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flat-star.svg b/svg/flat-star.svg
new file mode 100644
index 000000000..a5854d003
--- /dev/null
+++ b/svg/flat-star.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flat-tire.svg b/svg/flat-tire.svg
new file mode 100644
index 000000000..2ee2cb169
--- /dev/null
+++ b/svg/flat-tire.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flatbed-covered.svg b/svg/flatbed-covered.svg
new file mode 100644
index 000000000..134457753
--- /dev/null
+++ b/svg/flatbed-covered.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flatbed.svg b/svg/flatbed.svg
new file mode 100644
index 000000000..82df0b3f2
--- /dev/null
+++ b/svg/flatbed.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flatfish.svg b/svg/flatfish.svg
new file mode 100644
index 000000000..22b340862
--- /dev/null
+++ b/svg/flatfish.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flax.svg b/svg/flax.svg
new file mode 100644
index 000000000..3d09d7577
--- /dev/null
+++ b/svg/flax.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fleshy-mass.svg b/svg/fleshy-mass.svg
new file mode 100644
index 000000000..2b33d1227
--- /dev/null
+++ b/svg/fleshy-mass.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fleur-de-lys.svg b/svg/fleur-de-lys.svg
new file mode 100644
index 000000000..7d9090d09
--- /dev/null
+++ b/svg/fleur-de-lys.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flexible-lamp.svg b/svg/flexible-lamp.svg
new file mode 100644
index 000000000..f8f4b3f41
--- /dev/null
+++ b/svg/flexible-lamp.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flexible-star.svg b/svg/flexible-star.svg
new file mode 100644
index 000000000..55a2aebf9
--- /dev/null
+++ b/svg/flexible-star.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flint-spark.svg b/svg/flint-spark.svg
new file mode 100644
index 000000000..aa8ea1302
--- /dev/null
+++ b/svg/flint-spark.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flip-flops.svg b/svg/flip-flops.svg
new file mode 100644
index 000000000..c98bc217a
--- /dev/null
+++ b/svg/flip-flops.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/floating-crystal.svg b/svg/floating-crystal.svg
new file mode 100644
index 000000000..424f2488d
--- /dev/null
+++ b/svg/floating-crystal.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/floating-ghost.svg b/svg/floating-ghost.svg
new file mode 100644
index 000000000..03bcb1089
--- /dev/null
+++ b/svg/floating-ghost.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/floating-platforms.svg b/svg/floating-platforms.svg
new file mode 100644
index 000000000..657eda388
--- /dev/null
+++ b/svg/floating-platforms.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/floating-tentacles.svg b/svg/floating-tentacles.svg
new file mode 100644
index 000000000..d9d355785
--- /dev/null
+++ b/svg/floating-tentacles.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flood.svg b/svg/flood.svg
new file mode 100644
index 000000000..33940ba3c
--- /dev/null
+++ b/svg/flood.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/floor-hatch.svg b/svg/floor-hatch.svg
new file mode 100644
index 000000000..643e85c23
--- /dev/null
+++ b/svg/floor-hatch.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/floor-polisher.svg b/svg/floor-polisher.svg
new file mode 100644
index 000000000..ba1d80dd5
--- /dev/null
+++ b/svg/floor-polisher.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flour.svg b/svg/flour.svg
new file mode 100644
index 000000000..1c7401c93
--- /dev/null
+++ b/svg/flour.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flower-emblem.svg b/svg/flower-emblem.svg
new file mode 100644
index 000000000..2b20098cf
--- /dev/null
+++ b/svg/flower-emblem.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flower-hat.svg b/svg/flower-hat.svg
new file mode 100644
index 000000000..3e4cace44
--- /dev/null
+++ b/svg/flower-hat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flower-pot.svg b/svg/flower-pot.svg
new file mode 100644
index 000000000..b01bca1fe
--- /dev/null
+++ b/svg/flower-pot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flower-star.svg b/svg/flower-star.svg
new file mode 100644
index 000000000..584f1772e
--- /dev/null
+++ b/svg/flower-star.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flower-twirl.svg b/svg/flower-twirl.svg
new file mode 100644
index 000000000..d66b75ec9
--- /dev/null
+++ b/svg/flower-twirl.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flowers.svg b/svg/flowers.svg
new file mode 100644
index 000000000..b6edf8e79
--- /dev/null
+++ b/svg/flowers.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fluffy-cloud.svg b/svg/fluffy-cloud.svg
new file mode 100644
index 000000000..ac21f3b11
--- /dev/null
+++ b/svg/fluffy-cloud.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fluffy-flame.svg b/svg/fluffy-flame.svg
new file mode 100644
index 000000000..36aaa71c9
--- /dev/null
+++ b/svg/fluffy-flame.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fluffy-swirl.svg b/svg/fluffy-swirl.svg
new file mode 100644
index 000000000..e36947b10
--- /dev/null
+++ b/svg/fluffy-swirl.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fluffy-trefoil.svg b/svg/fluffy-trefoil.svg
new file mode 100644
index 000000000..3f9bbe999
--- /dev/null
+++ b/svg/fluffy-trefoil.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fluffy-wing.svg b/svg/fluffy-wing.svg
new file mode 100644
index 000000000..84be313f1
--- /dev/null
+++ b/svg/fluffy-wing.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flute.svg b/svg/flute.svg
new file mode 100644
index 000000000..d5d90e089
--- /dev/null
+++ b/svg/flute.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fly.svg b/svg/fly.svg
new file mode 100644
index 000000000..573cba17f
--- /dev/null
+++ b/svg/fly.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flying-beetle.svg b/svg/flying-beetle.svg
new file mode 100644
index 000000000..1d83fad6d
--- /dev/null
+++ b/svg/flying-beetle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flying-dagger.svg b/svg/flying-dagger.svg
new file mode 100644
index 000000000..aaa414b6b
--- /dev/null
+++ b/svg/flying-dagger.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flying-flag.svg b/svg/flying-flag.svg
new file mode 100644
index 000000000..8451e9e26
--- /dev/null
+++ b/svg/flying-flag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flying-fox.svg b/svg/flying-fox.svg
new file mode 100644
index 000000000..c1db2f68c
--- /dev/null
+++ b/svg/flying-fox.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flying-shuriken.svg b/svg/flying-shuriken.svg
new file mode 100644
index 000000000..34ca18a7a
--- /dev/null
+++ b/svg/flying-shuriken.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flying-target.svg b/svg/flying-target.svg
new file mode 100644
index 000000000..77b49e6e4
--- /dev/null
+++ b/svg/flying-target.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/flying-trout.svg b/svg/flying-trout.svg
new file mode 100644
index 000000000..3cb88a721
--- /dev/null
+++ b/svg/flying-trout.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fn-fal.svg b/svg/fn-fal.svg
new file mode 100644
index 000000000..73ee70234
--- /dev/null
+++ b/svg/fn-fal.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/foam.svg b/svg/foam.svg
new file mode 100644
index 000000000..04fae5d8f
--- /dev/null
+++ b/svg/foam.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/foamy-disc.svg b/svg/foamy-disc.svg
new file mode 100644
index 000000000..17ac5ce10
--- /dev/null
+++ b/svg/foamy-disc.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/focused-lightning.svg b/svg/focused-lightning.svg
new file mode 100644
index 000000000..2efe29745
--- /dev/null
+++ b/svg/focused-lightning.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fog-light.svg b/svg/fog-light.svg
new file mode 100644
index 000000000..ea705895d
--- /dev/null
+++ b/svg/fog-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fog.svg b/svg/fog.svg
new file mode 100644
index 000000000..8bf68492d
--- /dev/null
+++ b/svg/fog.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/folded-paper.svg b/svg/folded-paper.svg
new file mode 100644
index 000000000..cac6e8451
--- /dev/null
+++ b/svg/folded-paper.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fomorian.svg b/svg/fomorian.svg
new file mode 100644
index 000000000..07ae4a84f
--- /dev/null
+++ b/svg/fomorian.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/food-chain.svg b/svg/food-chain.svg
new file mode 100644
index 000000000..85e21e24c
--- /dev/null
+++ b/svg/food-chain.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/food-truck.svg b/svg/food-truck.svg
new file mode 100644
index 000000000..4d22e0f4a
--- /dev/null
+++ b/svg/food-truck.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/foot-plaster.svg b/svg/foot-plaster.svg
new file mode 100644
index 000000000..f819dbf0f
--- /dev/null
+++ b/svg/foot-plaster.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/foot-trip.svg b/svg/foot-trip.svg
new file mode 100644
index 000000000..30ca8bba8
--- /dev/null
+++ b/svg/foot-trip.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/footprint.svg b/svg/footprint.svg
new file mode 100644
index 000000000..1c3bcc0da
--- /dev/null
+++ b/svg/footprint.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/footsteps.svg b/svg/footsteps.svg
new file mode 100644
index 000000000..80e47196c
--- /dev/null
+++ b/svg/footsteps.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/footy-field.svg b/svg/footy-field.svg
new file mode 100644
index 000000000..ff9ec6abc
--- /dev/null
+++ b/svg/footy-field.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/forearm.svg b/svg/forearm.svg
new file mode 100644
index 000000000..76dc0f126
--- /dev/null
+++ b/svg/forearm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/forest-camp.svg b/svg/forest-camp.svg
new file mode 100644
index 000000000..8cc2b5e31
--- /dev/null
+++ b/svg/forest-camp.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/forest-entrance.svg b/svg/forest-entrance.svg
new file mode 100644
index 000000000..a5fa34fbd
--- /dev/null
+++ b/svg/forest-entrance.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/forest.svg b/svg/forest.svg
new file mode 100644
index 000000000..cfb679290
--- /dev/null
+++ b/svg/forest.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fork-knife-spoon.svg b/svg/fork-knife-spoon.svg
new file mode 100644
index 000000000..bf84a6fd9
--- /dev/null
+++ b/svg/fork-knife-spoon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/forklift.svg b/svg/forklift.svg
new file mode 100644
index 000000000..1c5425ff4
--- /dev/null
+++ b/svg/forklift.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/forward-field.svg b/svg/forward-field.svg
new file mode 100644
index 000000000..c6a50d938
--- /dev/null
+++ b/svg/forward-field.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/forward-sun.svg b/svg/forward-sun.svg
new file mode 100644
index 000000000..57b45ecd4
--- /dev/null
+++ b/svg/forward-sun.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fossil.svg b/svg/fossil.svg
new file mode 100644
index 000000000..5d8f0802b
--- /dev/null
+++ b/svg/fossil.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/foundry-bucket.svg b/svg/foundry-bucket.svg
new file mode 100644
index 000000000..96e2775b4
--- /dev/null
+++ b/svg/foundry-bucket.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fountain-pen.svg b/svg/fountain-pen.svg
new file mode 100644
index 000000000..9cb3cfcd3
--- /dev/null
+++ b/svg/fountain-pen.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fountain.svg b/svg/fountain.svg
new file mode 100644
index 000000000..767046307
--- /dev/null
+++ b/svg/fountain.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fox-head.svg b/svg/fox-head.svg
new file mode 100644
index 000000000..d39503ebe
--- /dev/null
+++ b/svg/fox-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fox-tail.svg b/svg/fox-tail.svg
new file mode 100644
index 000000000..397a8ddc3
--- /dev/null
+++ b/svg/fox-tail.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fox.svg b/svg/fox.svg
new file mode 100644
index 000000000..3678d5a4f
--- /dev/null
+++ b/svg/fox.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fragmented-meteor.svg b/svg/fragmented-meteor.svg
new file mode 100644
index 000000000..44f8b5af2
--- /dev/null
+++ b/svg/fragmented-meteor.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fragmented-sword.svg b/svg/fragmented-sword.svg
new file mode 100644
index 000000000..27f9da23c
--- /dev/null
+++ b/svg/fragmented-sword.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fragrance.svg b/svg/fragrance.svg
new file mode 100644
index 000000000..3568fc65a
--- /dev/null
+++ b/svg/fragrance.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/france.svg b/svg/france.svg
new file mode 100644
index 000000000..f71ac8130
--- /dev/null
+++ b/svg/france.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/frankenstein-creature.svg b/svg/frankenstein-creature.svg
new file mode 100644
index 000000000..9d0fa363c
--- /dev/null
+++ b/svg/frankenstein-creature.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/frayed-arrow.svg b/svg/frayed-arrow.svg
new file mode 100644
index 000000000..14d872ca8
--- /dev/null
+++ b/svg/frayed-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/freedom-dove.svg b/svg/freedom-dove.svg
new file mode 100644
index 000000000..df83cd275
--- /dev/null
+++ b/svg/freedom-dove.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/freemasonry.svg b/svg/freemasonry.svg
new file mode 100644
index 000000000..74a3686fa
--- /dev/null
+++ b/svg/freemasonry.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/french-fries.svg b/svg/french-fries.svg
new file mode 100644
index 000000000..60e128473
--- /dev/null
+++ b/svg/french-fries.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/french-horn.svg b/svg/french-horn.svg
new file mode 100644
index 000000000..213f4fac2
--- /dev/null
+++ b/svg/french-horn.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fridge.svg b/svg/fridge.svg
new file mode 100644
index 000000000..45b8b4693
--- /dev/null
+++ b/svg/fridge.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fried-eggs.svg b/svg/fried-eggs.svg
new file mode 100644
index 000000000..038181cb1
--- /dev/null
+++ b/svg/fried-eggs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fried-fish.svg b/svg/fried-fish.svg
new file mode 100644
index 000000000..ad7bc1b56
--- /dev/null
+++ b/svg/fried-fish.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/frisbee.svg b/svg/frisbee.svg
new file mode 100644
index 000000000..ea6dfc656
--- /dev/null
+++ b/svg/frisbee.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/froe-and-mallet.svg b/svg/froe-and-mallet.svg
new file mode 100644
index 000000000..f74dcd339
--- /dev/null
+++ b/svg/froe-and-mallet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/frog-foot.svg b/svg/frog-foot.svg
new file mode 100644
index 000000000..e46d8146a
--- /dev/null
+++ b/svg/frog-foot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/frog-mouth-helm.svg b/svg/frog-mouth-helm.svg
new file mode 100644
index 000000000..268abfd0c
--- /dev/null
+++ b/svg/frog-mouth-helm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/frog-prince.svg b/svg/frog-prince.svg
new file mode 100644
index 000000000..f384f930c
--- /dev/null
+++ b/svg/frog-prince.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/frog.svg b/svg/frog.svg
new file mode 100644
index 000000000..ac8c73fbb
--- /dev/null
+++ b/svg/frog.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/front-teeth.svg b/svg/front-teeth.svg
new file mode 100644
index 000000000..cde6f73ee
--- /dev/null
+++ b/svg/front-teeth.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/frontal-lobe.svg b/svg/frontal-lobe.svg
new file mode 100644
index 000000000..be1ee8da6
--- /dev/null
+++ b/svg/frontal-lobe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/frostfire.svg b/svg/frostfire.svg
new file mode 100644
index 000000000..035419492
--- /dev/null
+++ b/svg/frostfire.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/frozen-arrow.svg b/svg/frozen-arrow.svg
new file mode 100644
index 000000000..b50c1848c
--- /dev/null
+++ b/svg/frozen-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/frozen-block.svg b/svg/frozen-block.svg
new file mode 100644
index 000000000..3e566c055
--- /dev/null
+++ b/svg/frozen-block.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/frozen-body.svg b/svg/frozen-body.svg
new file mode 100644
index 000000000..a488bae61
--- /dev/null
+++ b/svg/frozen-body.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/frozen-orb.svg b/svg/frozen-orb.svg
new file mode 100644
index 000000000..1e14564f6
--- /dev/null
+++ b/svg/frozen-orb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/frozen-ring.svg b/svg/frozen-ring.svg
new file mode 100644
index 000000000..0d1856a63
--- /dev/null
+++ b/svg/frozen-ring.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fruit-bowl.svg b/svg/fruit-bowl.svg
new file mode 100644
index 000000000..d97c5834a
--- /dev/null
+++ b/svg/fruit-bowl.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fruit-tree.svg b/svg/fruit-tree.svg
new file mode 100644
index 000000000..58d080691
--- /dev/null
+++ b/svg/fruit-tree.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fruiting.svg b/svg/fruiting.svg
new file mode 100644
index 000000000..cde89f248
--- /dev/null
+++ b/svg/fruiting.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fuel-tank.svg b/svg/fuel-tank.svg
new file mode 100644
index 000000000..312fdca42
--- /dev/null
+++ b/svg/fuel-tank.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fuji.svg b/svg/fuji.svg
new file mode 100644
index 000000000..ba02fd3cb
--- /dev/null
+++ b/svg/fuji.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fulguro-punch.svg b/svg/fulguro-punch.svg
new file mode 100644
index 000000000..0eb1404ae
--- /dev/null
+++ b/svg/fulguro-punch.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/full-folder.svg b/svg/full-folder.svg
new file mode 100644
index 000000000..735eaf770
--- /dev/null
+++ b/svg/full-folder.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/full-metal-bucket-handle.svg b/svg/full-metal-bucket-handle.svg
new file mode 100644
index 000000000..ffe0a8a51
--- /dev/null
+++ b/svg/full-metal-bucket-handle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/full-metal-bucket.svg b/svg/full-metal-bucket.svg
new file mode 100644
index 000000000..ce4420093
--- /dev/null
+++ b/svg/full-metal-bucket.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/full-motorcycle-helmet.svg b/svg/full-motorcycle-helmet.svg
new file mode 100644
index 000000000..1fd6f9193
--- /dev/null
+++ b/svg/full-motorcycle-helmet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/full-pizza.svg b/svg/full-pizza.svg
new file mode 100644
index 000000000..e016719ab
--- /dev/null
+++ b/svg/full-pizza.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/full-wood-bucket-handle.svg b/svg/full-wood-bucket-handle.svg
new file mode 100644
index 000000000..6cea8fdee
--- /dev/null
+++ b/svg/full-wood-bucket-handle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/full-wood-bucket.svg b/svg/full-wood-bucket.svg
new file mode 100644
index 000000000..0fa08dfdc
--- /dev/null
+++ b/svg/full-wood-bucket.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/funnel.svg b/svg/funnel.svg
new file mode 100644
index 000000000..5c1376513
--- /dev/null
+++ b/svg/funnel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fur-boot.svg b/svg/fur-boot.svg
new file mode 100644
index 000000000..b0f73c59b
--- /dev/null
+++ b/svg/fur-boot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/fur-shirt.svg b/svg/fur-shirt.svg
new file mode 100644
index 000000000..d5e1d2fa3
--- /dev/null
+++ b/svg/fur-shirt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/furnace.svg b/svg/furnace.svg
new file mode 100644
index 000000000..5fe20c585
--- /dev/null
+++ b/svg/furnace.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/g-clef.svg b/svg/g-clef.svg
new file mode 100644
index 000000000..c782e0b12
--- /dev/null
+++ b/svg/g-clef.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/galaxy.svg b/svg/galaxy.svg
new file mode 100644
index 000000000..5af6f459c
--- /dev/null
+++ b/svg/galaxy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/galea.svg b/svg/galea.svg
new file mode 100644
index 000000000..0d4b70f7e
--- /dev/null
+++ b/svg/galea.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/galleon.svg b/svg/galleon.svg
new file mode 100644
index 000000000..b909d5469
--- /dev/null
+++ b/svg/galleon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/galley.svg b/svg/galley.svg
new file mode 100644
index 000000000..77a0c5e9a
--- /dev/null
+++ b/svg/galley.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/game-console.svg b/svg/game-console.svg
new file mode 100644
index 000000000..f7da0c35f
--- /dev/null
+++ b/svg/game-console.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gamepad-cross.svg b/svg/gamepad-cross.svg
new file mode 100644
index 000000000..34d1940f8
--- /dev/null
+++ b/svg/gamepad-cross.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gamepad.svg b/svg/gamepad.svg
new file mode 100644
index 000000000..6415c8f47
--- /dev/null
+++ b/svg/gamepad.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gardening-shears.svg b/svg/gardening-shears.svg
new file mode 100644
index 000000000..3408fbaf4
--- /dev/null
+++ b/svg/gardening-shears.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gargoyle.svg b/svg/gargoyle.svg
new file mode 100644
index 000000000..5280bf0c7
--- /dev/null
+++ b/svg/gargoyle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/garlic.svg b/svg/garlic.svg
new file mode 100644
index 000000000..97ba0037e
--- /dev/null
+++ b/svg/garlic.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gas-mask-2.svg b/svg/gas-mask-2.svg
new file mode 100644
index 000000000..a9462b702
--- /dev/null
+++ b/svg/gas-mask-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gas-mask.svg b/svg/gas-mask.svg
new file mode 100644
index 000000000..a624d77b0
--- /dev/null
+++ b/svg/gas-mask.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gas-pump.svg b/svg/gas-pump.svg
new file mode 100644
index 000000000..912bc861b
--- /dev/null
+++ b/svg/gas-pump.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gas-stove.svg b/svg/gas-stove.svg
new file mode 100644
index 000000000..c4a9bb0b0
--- /dev/null
+++ b/svg/gas-stove.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gate.svg b/svg/gate.svg
new file mode 100644
index 000000000..6f3884e13
--- /dev/null
+++ b/svg/gate.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gauls-helm.svg b/svg/gauls-helm.svg
new file mode 100644
index 000000000..5ff1e2680
--- /dev/null
+++ b/svg/gauls-helm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gauntlet.svg b/svg/gauntlet.svg
new file mode 100644
index 000000000..8dc27f46f
--- /dev/null
+++ b/svg/gauntlet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gavel.svg b/svg/gavel.svg
new file mode 100644
index 000000000..26d29087f
--- /dev/null
+++ b/svg/gavel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gaze.svg b/svg/gaze.svg
new file mode 100644
index 000000000..5526224c6
--- /dev/null
+++ b/svg/gaze.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gear-hammer.svg b/svg/gear-hammer.svg
new file mode 100644
index 000000000..cf88967c3
--- /dev/null
+++ b/svg/gear-hammer.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gear-stick-pattern.svg b/svg/gear-stick-pattern.svg
new file mode 100644
index 000000000..9b2a95104
--- /dev/null
+++ b/svg/gear-stick-pattern.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gear-stick.svg b/svg/gear-stick.svg
new file mode 100644
index 000000000..ee2477de6
--- /dev/null
+++ b/svg/gear-stick.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gears.svg b/svg/gears.svg
new file mode 100644
index 000000000..bda196011
--- /dev/null
+++ b/svg/gears.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gecko.svg b/svg/gecko.svg
new file mode 100644
index 000000000..9899d3b95
--- /dev/null
+++ b/svg/gecko.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gem-chain.svg b/svg/gem-chain.svg
new file mode 100644
index 000000000..01b4d168c
--- /dev/null
+++ b/svg/gem-chain.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gem-necklace.svg b/svg/gem-necklace.svg
new file mode 100644
index 000000000..496d960e5
--- /dev/null
+++ b/svg/gem-necklace.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gem-pendant.svg b/svg/gem-pendant.svg
new file mode 100644
index 000000000..f458cf87c
--- /dev/null
+++ b/svg/gem-pendant.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gemini.svg b/svg/gemini.svg
new file mode 100644
index 000000000..797ff3a81
--- /dev/null
+++ b/svg/gemini.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gems.svg b/svg/gems.svg
new file mode 100644
index 000000000..890ed5805
--- /dev/null
+++ b/svg/gems.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ghost-ally.svg b/svg/ghost-ally.svg
new file mode 100644
index 000000000..816d2d638
--- /dev/null
+++ b/svg/ghost-ally.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ghost.svg b/svg/ghost.svg
new file mode 100644
index 000000000..16e92e108
--- /dev/null
+++ b/svg/ghost.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/giant-squid.svg b/svg/giant-squid.svg
new file mode 100644
index 000000000..d30d3c45c
--- /dev/null
+++ b/svg/giant-squid.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/giant.svg b/svg/giant.svg
new file mode 100644
index 000000000..f05f614d1
--- /dev/null
+++ b/svg/giant.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gibbet.svg b/svg/gibbet.svg
new file mode 100644
index 000000000..fc2f1fb6e
--- /dev/null
+++ b/svg/gibbet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gift-of-knowledge.svg b/svg/gift-of-knowledge.svg
new file mode 100644
index 000000000..842005d79
--- /dev/null
+++ b/svg/gift-of-knowledge.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gift-trap.svg b/svg/gift-trap.svg
new file mode 100644
index 000000000..c88b7f30a
--- /dev/null
+++ b/svg/gift-trap.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gingerbread-man.svg b/svg/gingerbread-man.svg
new file mode 100644
index 000000000..6d8107290
--- /dev/null
+++ b/svg/gingerbread-man.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ginkgo-leaf.svg b/svg/ginkgo-leaf.svg
new file mode 100644
index 000000000..d6d68f4b2
--- /dev/null
+++ b/svg/ginkgo-leaf.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gladius.svg b/svg/gladius.svg
new file mode 100644
index 000000000..169b05c5b
--- /dev/null
+++ b/svg/gladius.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/glaive.svg b/svg/glaive.svg
new file mode 100644
index 000000000..7a0e6686f
--- /dev/null
+++ b/svg/glaive.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/glass-ball.svg b/svg/glass-ball.svg
new file mode 100644
index 000000000..5ff3542a5
--- /dev/null
+++ b/svg/glass-ball.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/glass-celebration.svg b/svg/glass-celebration.svg
new file mode 100644
index 000000000..7f1211892
--- /dev/null
+++ b/svg/glass-celebration.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/glass-heart.svg b/svg/glass-heart.svg
new file mode 100644
index 000000000..658e4d394
--- /dev/null
+++ b/svg/glass-heart.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/glass-shot.svg b/svg/glass-shot.svg
new file mode 100644
index 000000000..750936314
--- /dev/null
+++ b/svg/glass-shot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/glider.svg b/svg/glider.svg
new file mode 100644
index 000000000..c613d8e34
--- /dev/null
+++ b/svg/glider.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/globe-ring.svg b/svg/globe-ring.svg
new file mode 100644
index 000000000..afd3b4d87
--- /dev/null
+++ b/svg/globe-ring.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/globe.svg b/svg/globe.svg
new file mode 100644
index 000000000..3fb8d3b10
--- /dev/null
+++ b/svg/globe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/glock.svg b/svg/glock.svg
new file mode 100644
index 000000000..cdc406caa
--- /dev/null
+++ b/svg/glock.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gloop.svg b/svg/gloop.svg
new file mode 100644
index 000000000..815bc8aed
--- /dev/null
+++ b/svg/gloop.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gloves.svg b/svg/gloves.svg
new file mode 100644
index 000000000..6868502fa
--- /dev/null
+++ b/svg/gloves.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/glowing-artifact.svg b/svg/glowing-artifact.svg
new file mode 100644
index 000000000..15c850970
--- /dev/null
+++ b/svg/glowing-artifact.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/glowing-hands.svg b/svg/glowing-hands.svg
new file mode 100644
index 000000000..c2c6af550
--- /dev/null
+++ b/svg/glowing-hands.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gluttonous-smile.svg b/svg/gluttonous-smile.svg
new file mode 100644
index 000000000..5e1b026eb
--- /dev/null
+++ b/svg/gluttonous-smile.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gluttony.svg b/svg/gluttony.svg
new file mode 100644
index 000000000..00dadcf3c
--- /dev/null
+++ b/svg/gluttony.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/goal-keeper.svg b/svg/goal-keeper.svg
new file mode 100644
index 000000000..2da837e18
--- /dev/null
+++ b/svg/goal-keeper.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/goat.svg b/svg/goat.svg
new file mode 100644
index 000000000..1d7ccef56
--- /dev/null
+++ b/svg/goat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/goblin-camp.svg b/svg/goblin-camp.svg
new file mode 100644
index 000000000..f7265aa9c
--- /dev/null
+++ b/svg/goblin-camp.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/goblin-head.svg b/svg/goblin-head.svg
new file mode 100644
index 000000000..d4d0ee3e3
--- /dev/null
+++ b/svg/goblin-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/goblin.svg b/svg/goblin.svg
new file mode 100644
index 000000000..1620b1b08
--- /dev/null
+++ b/svg/goblin.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gold-bar.svg b/svg/gold-bar.svg
new file mode 100644
index 000000000..039733b92
--- /dev/null
+++ b/svg/gold-bar.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gold-mine.svg b/svg/gold-mine.svg
new file mode 100644
index 000000000..4aa380847
--- /dev/null
+++ b/svg/gold-mine.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gold-nuggets.svg b/svg/gold-nuggets.svg
new file mode 100644
index 000000000..838cbd656
--- /dev/null
+++ b/svg/gold-nuggets.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gold-scarab.svg b/svg/gold-scarab.svg
new file mode 100644
index 000000000..9f5f828a8
--- /dev/null
+++ b/svg/gold-scarab.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gold-shell.svg b/svg/gold-shell.svg
new file mode 100644
index 000000000..b70bc57f4
--- /dev/null
+++ b/svg/gold-shell.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gold-stack.svg b/svg/gold-stack.svg
new file mode 100644
index 000000000..4c496d32a
--- /dev/null
+++ b/svg/gold-stack.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/golem-head.svg b/svg/golem-head.svg
new file mode 100644
index 000000000..d88388eea
--- /dev/null
+++ b/svg/golem-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/golf-flag.svg b/svg/golf-flag.svg
new file mode 100644
index 000000000..9ee1fa74f
--- /dev/null
+++ b/svg/golf-flag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/golf-tee.svg b/svg/golf-tee.svg
new file mode 100644
index 000000000..dae71634e
--- /dev/null
+++ b/svg/golf-tee.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gong.svg b/svg/gong.svg
new file mode 100644
index 000000000..9ccdc675a
--- /dev/null
+++ b/svg/gong.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/goo-explosion.svg b/svg/goo-explosion.svg
new file mode 100644
index 000000000..dff803000
--- /dev/null
+++ b/svg/goo-explosion.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/goo-skull.svg b/svg/goo-skull.svg
new file mode 100644
index 000000000..99f3fad07
--- /dev/null
+++ b/svg/goo-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/goo-spurt.svg b/svg/goo-spurt.svg
new file mode 100644
index 000000000..e74f0be28
--- /dev/null
+++ b/svg/goo-spurt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gooey-daemon.svg b/svg/gooey-daemon.svg
new file mode 100644
index 000000000..fcec0ba00
--- /dev/null
+++ b/svg/gooey-daemon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gooey-eyed-sun.svg b/svg/gooey-eyed-sun.svg
new file mode 100644
index 000000000..f2d7cf627
--- /dev/null
+++ b/svg/gooey-eyed-sun.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gooey-impact.svg b/svg/gooey-impact.svg
new file mode 100644
index 000000000..0f65b1f81
--- /dev/null
+++ b/svg/gooey-impact.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gooey-molecule.svg b/svg/gooey-molecule.svg
new file mode 100644
index 000000000..f5b860846
--- /dev/null
+++ b/svg/gooey-molecule.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gooey-sword.svg b/svg/gooey-sword.svg
new file mode 100644
index 000000000..723d311ae
--- /dev/null
+++ b/svg/gooey-sword.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/goose.svg b/svg/goose.svg
new file mode 100644
index 000000000..e8d1b6906
--- /dev/null
+++ b/svg/goose.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gorilla.svg b/svg/gorilla.svg
new file mode 100644
index 000000000..371452f93
--- /dev/null
+++ b/svg/gorilla.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gothic-cross.svg b/svg/gothic-cross.svg
new file mode 100644
index 000000000..7a06a02a1
--- /dev/null
+++ b/svg/gothic-cross.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gps.svg b/svg/gps.svg
new file mode 100644
index 000000000..ea4c5d51c
--- /dev/null
+++ b/svg/gps.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/grab.svg b/svg/grab.svg
new file mode 100644
index 000000000..16a958bee
--- /dev/null
+++ b/svg/grab.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/graduate-cap.svg b/svg/graduate-cap.svg
new file mode 100644
index 000000000..e1a4db29c
--- /dev/null
+++ b/svg/graduate-cap.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/grain-bundle.svg b/svg/grain-bundle.svg
new file mode 100644
index 000000000..3c5878021
--- /dev/null
+++ b/svg/grain-bundle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/grain.svg b/svg/grain.svg
new file mode 100644
index 000000000..3061b51ea
--- /dev/null
+++ b/svg/grain.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/granary.svg b/svg/granary.svg
new file mode 100644
index 000000000..ec6e8d1f5
--- /dev/null
+++ b/svg/granary.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/grand-piano.svg b/svg/grand-piano.svg
new file mode 100644
index 000000000..4022017fa
--- /dev/null
+++ b/svg/grand-piano.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/grapes.svg b/svg/grapes.svg
new file mode 100644
index 000000000..d70aec44a
--- /dev/null
+++ b/svg/grapes.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/grapple.svg b/svg/grapple.svg
new file mode 100644
index 000000000..7287dc928
--- /dev/null
+++ b/svg/grapple.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/grasping-claws.svg b/svg/grasping-claws.svg
new file mode 100644
index 000000000..cfaba46fd
--- /dev/null
+++ b/svg/grasping-claws.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/grasping-slug.svg b/svg/grasping-slug.svg
new file mode 100644
index 000000000..69bdaf593
--- /dev/null
+++ b/svg/grasping-slug.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/grass-mushroom.svg b/svg/grass-mushroom.svg
new file mode 100644
index 000000000..c20f21690
--- /dev/null
+++ b/svg/grass-mushroom.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/grass.svg b/svg/grass.svg
new file mode 100644
index 000000000..a646c1d40
--- /dev/null
+++ b/svg/grass.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/grave-flowers.svg b/svg/grave-flowers.svg
new file mode 100644
index 000000000..44969506b
--- /dev/null
+++ b/svg/grave-flowers.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/graveyard.svg b/svg/graveyard.svg
new file mode 100644
index 000000000..005a80eef
--- /dev/null
+++ b/svg/graveyard.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gravitation.svg b/svg/gravitation.svg
new file mode 100644
index 000000000..227a06305
--- /dev/null
+++ b/svg/gravitation.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/grease-trap.svg b/svg/grease-trap.svg
new file mode 100644
index 000000000..c1d5340c2
--- /dev/null
+++ b/svg/grease-trap.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/great-pyramid.svg b/svg/great-pyramid.svg
new file mode 100644
index 000000000..58b3f7faf
--- /dev/null
+++ b/svg/great-pyramid.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/great-war-tank.svg b/svg/great-war-tank.svg
new file mode 100644
index 000000000..ffce4162a
--- /dev/null
+++ b/svg/great-war-tank.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/greaves.svg b/svg/greaves.svg
new file mode 100644
index 000000000..0d4d81b87
--- /dev/null
+++ b/svg/greaves.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/greek-sphinx.svg b/svg/greek-sphinx.svg
new file mode 100644
index 000000000..239443fc7
--- /dev/null
+++ b/svg/greek-sphinx.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/greek-temple.svg b/svg/greek-temple.svg
new file mode 100644
index 000000000..7207885d7
--- /dev/null
+++ b/svg/greek-temple.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/green-power.svg b/svg/green-power.svg
new file mode 100644
index 000000000..e877c3f41
--- /dev/null
+++ b/svg/green-power.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/greenhouse.svg b/svg/greenhouse.svg
new file mode 100644
index 000000000..1e3bc9df6
--- /dev/null
+++ b/svg/greenhouse.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/grenade-2.svg b/svg/grenade-2.svg
new file mode 100644
index 000000000..93b4ca452
--- /dev/null
+++ b/svg/grenade-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/grenade.svg b/svg/grenade.svg
new file mode 100644
index 000000000..a66d3e2f6
--- /dev/null
+++ b/svg/grenade.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/griffin-shield.svg b/svg/griffin-shield.svg
new file mode 100644
index 000000000..9bfe20733
--- /dev/null
+++ b/svg/griffin-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/griffin-symbol.svg b/svg/griffin-symbol.svg
new file mode 100644
index 000000000..46219383c
--- /dev/null
+++ b/svg/griffin-symbol.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/grim-reaper.svg b/svg/grim-reaper.svg
new file mode 100644
index 000000000..b026de9b7
--- /dev/null
+++ b/svg/grim-reaper.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ground-sprout.svg b/svg/ground-sprout.svg
new file mode 100644
index 000000000..623d0e2ce
--- /dev/null
+++ b/svg/ground-sprout.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/groundbreaker.svg b/svg/groundbreaker.svg
new file mode 100644
index 000000000..478603e30
--- /dev/null
+++ b/svg/groundbreaker.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/grouped-drops.svg b/svg/grouped-drops.svg
new file mode 100644
index 000000000..dfb1cff78
--- /dev/null
+++ b/svg/grouped-drops.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/growth.svg b/svg/growth.svg
new file mode 100644
index 000000000..c6d0f8d73
--- /dev/null
+++ b/svg/growth.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/guarded-tower.svg b/svg/guarded-tower.svg
new file mode 100644
index 000000000..0843c80e6
--- /dev/null
+++ b/svg/guarded-tower.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/guards.svg b/svg/guards.svg
new file mode 100644
index 000000000..f297d58f2
--- /dev/null
+++ b/svg/guards.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/guatemala.svg b/svg/guatemala.svg
new file mode 100644
index 000000000..f8777f449
--- /dev/null
+++ b/svg/guatemala.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/guillotine.svg b/svg/guillotine.svg
new file mode 100644
index 000000000..35322bc2e
--- /dev/null
+++ b/svg/guillotine.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/guitar-bass-head.svg b/svg/guitar-bass-head.svg
new file mode 100644
index 000000000..c8236a5f7
--- /dev/null
+++ b/svg/guitar-bass-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/guitar-head.svg b/svg/guitar-head.svg
new file mode 100644
index 000000000..5dd641749
--- /dev/null
+++ b/svg/guitar-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/guitar.svg b/svg/guitar.svg
new file mode 100644
index 000000000..e3acb31db
--- /dev/null
+++ b/svg/guitar.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gun-rose.svg b/svg/gun-rose.svg
new file mode 100644
index 000000000..4f606275f
--- /dev/null
+++ b/svg/gun-rose.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gun-stock.svg b/svg/gun-stock.svg
new file mode 100644
index 000000000..cb6efcd90
--- /dev/null
+++ b/svg/gun-stock.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gunshot.svg b/svg/gunshot.svg
new file mode 100644
index 000000000..efaaca8e3
--- /dev/null
+++ b/svg/gunshot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gym-bag.svg b/svg/gym-bag.svg
new file mode 100644
index 000000000..5a61a3e18
--- /dev/null
+++ b/svg/gym-bag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/gyroscope.svg b/svg/gyroscope.svg
new file mode 100644
index 000000000..6b54c6d42
--- /dev/null
+++ b/svg/gyroscope.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/h2o.svg b/svg/h2o.svg
new file mode 100644
index 000000000..f41ec12a5
--- /dev/null
+++ b/svg/h2o.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/habitat-dome.svg b/svg/habitat-dome.svg
new file mode 100644
index 000000000..0d534e0f0
--- /dev/null
+++ b/svg/habitat-dome.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hades-symbol.svg b/svg/hades-symbol.svg
new file mode 100644
index 000000000..fe7036961
--- /dev/null
+++ b/svg/hades-symbol.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hair-strands.svg b/svg/hair-strands.svg
new file mode 100644
index 000000000..30050de85
--- /dev/null
+++ b/svg/hair-strands.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/halberd-shuriken.svg b/svg/halberd-shuriken.svg
new file mode 100644
index 000000000..c3cb8d8a3
--- /dev/null
+++ b/svg/halberd-shuriken.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/halberd.svg b/svg/halberd.svg
new file mode 100644
index 000000000..e3cb629e4
--- /dev/null
+++ b/svg/halberd.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/half-body-crawling.svg b/svg/half-body-crawling.svg
new file mode 100644
index 000000000..fc3f22896
--- /dev/null
+++ b/svg/half-body-crawling.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/half-dead.svg b/svg/half-dead.svg
new file mode 100644
index 000000000..f1147f4b8
--- /dev/null
+++ b/svg/half-dead.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/half-heart.svg b/svg/half-heart.svg
new file mode 100644
index 000000000..1121add9e
--- /dev/null
+++ b/svg/half-heart.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/half-log.svg b/svg/half-log.svg
new file mode 100644
index 000000000..37882a7ca
--- /dev/null
+++ b/svg/half-log.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/half-tornado.svg b/svg/half-tornado.svg
new file mode 100644
index 000000000..5b72cf2d4
--- /dev/null
+++ b/svg/half-tornado.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/halt.svg b/svg/halt.svg
new file mode 100644
index 000000000..7bf686526
--- /dev/null
+++ b/svg/halt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ham-shank.svg b/svg/ham-shank.svg
new file mode 100644
index 000000000..70de4b417
--- /dev/null
+++ b/svg/ham-shank.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hamburger-menu.svg b/svg/hamburger-menu.svg
new file mode 100644
index 000000000..eb2ab3f6e
--- /dev/null
+++ b/svg/hamburger-menu.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hamburger.svg b/svg/hamburger.svg
new file mode 100644
index 000000000..2f262086e
--- /dev/null
+++ b/svg/hamburger.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hammer-break.svg b/svg/hammer-break.svg
new file mode 100644
index 000000000..8585ae383
--- /dev/null
+++ b/svg/hammer-break.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hammer-drop.svg b/svg/hammer-drop.svg
new file mode 100644
index 000000000..12bf49b14
--- /dev/null
+++ b/svg/hammer-drop.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hammer-nails.svg b/svg/hammer-nails.svg
new file mode 100644
index 000000000..429b8f7ce
--- /dev/null
+++ b/svg/hammer-nails.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hammer-sickle.svg b/svg/hammer-sickle.svg
new file mode 100644
index 000000000..d4786b806
--- /dev/null
+++ b/svg/hammer-sickle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hand-2.svg b/svg/hand-2.svg
new file mode 100644
index 000000000..1fbd92db7
--- /dev/null
+++ b/svg/hand-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hand-bag.svg b/svg/hand-bag.svg
new file mode 100644
index 000000000..cbc582f90
--- /dev/null
+++ b/svg/hand-bag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hand-bandage.svg b/svg/hand-bandage.svg
new file mode 100644
index 000000000..cdc745116
--- /dev/null
+++ b/svg/hand-bandage.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hand-grip.svg b/svg/hand-grip.svg
new file mode 100644
index 000000000..26ba463e1
--- /dev/null
+++ b/svg/hand-grip.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hand-of-god.svg b/svg/hand-of-god.svg
new file mode 100644
index 000000000..a2453167a
--- /dev/null
+++ b/svg/hand-of-god.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hand-ok.svg b/svg/hand-ok.svg
new file mode 100644
index 000000000..ca2529f8a
--- /dev/null
+++ b/svg/hand-ok.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hand-saw.svg b/svg/hand-saw.svg
new file mode 100644
index 000000000..1c7d5211f
--- /dev/null
+++ b/svg/hand-saw.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hand-truck.svg b/svg/hand-truck.svg
new file mode 100644
index 000000000..1d22bd1e6
--- /dev/null
+++ b/svg/hand-truck.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hand-wing.svg b/svg/hand-wing.svg
new file mode 100644
index 000000000..8f977f6d1
--- /dev/null
+++ b/svg/hand-wing.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hand.svg b/svg/hand.svg
new file mode 100644
index 000000000..47c840a5d
--- /dev/null
+++ b/svg/hand.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/handcuffed.svg b/svg/handcuffed.svg
new file mode 100644
index 000000000..591a9854a
--- /dev/null
+++ b/svg/handcuffed.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/handcuffs.svg b/svg/handcuffs.svg
new file mode 100644
index 000000000..f30545b86
--- /dev/null
+++ b/svg/handcuffs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/handheld-fan.svg b/svg/handheld-fan.svg
new file mode 100644
index 000000000..1aed01f5f
--- /dev/null
+++ b/svg/handheld-fan.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hang-glider-2.svg b/svg/hang-glider-2.svg
new file mode 100644
index 000000000..0d1b62256
--- /dev/null
+++ b/svg/hang-glider-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hang-glider.svg b/svg/hang-glider.svg
new file mode 100644
index 000000000..7b390573a
--- /dev/null
+++ b/svg/hang-glider.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hanger.svg b/svg/hanger.svg
new file mode 100644
index 000000000..aa6500d38
--- /dev/null
+++ b/svg/hanger.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hanging-sign.svg b/svg/hanging-sign.svg
new file mode 100644
index 000000000..f61921421
--- /dev/null
+++ b/svg/hanging-sign.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hanging-spider.svg b/svg/hanging-spider.svg
new file mode 100644
index 000000000..063fd4363
--- /dev/null
+++ b/svg/hanging-spider.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/happy-skull.svg b/svg/happy-skull.svg
new file mode 100644
index 000000000..379ef31c3
--- /dev/null
+++ b/svg/happy-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/harbor-dock.svg b/svg/harbor-dock.svg
new file mode 100644
index 000000000..bb0701bcf
--- /dev/null
+++ b/svg/harbor-dock.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/harp.svg b/svg/harp.svg
new file mode 100644
index 000000000..e5b08e83b
--- /dev/null
+++ b/svg/harp.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/harpoon-chain.svg b/svg/harpoon-chain.svg
new file mode 100644
index 000000000..33926dc74
--- /dev/null
+++ b/svg/harpoon-chain.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/harpoon-trident.svg b/svg/harpoon-trident.svg
new file mode 100644
index 000000000..6753429f5
--- /dev/null
+++ b/svg/harpoon-trident.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/harpy.svg b/svg/harpy.svg
new file mode 100644
index 000000000..99d81e312
--- /dev/null
+++ b/svg/harpy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/harry-potter-skull.svg b/svg/harry-potter-skull.svg
new file mode 100644
index 000000000..06ec0959c
--- /dev/null
+++ b/svg/harry-potter-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hasty-grave.svg b/svg/hasty-grave.svg
new file mode 100644
index 000000000..596932b54
--- /dev/null
+++ b/svg/hasty-grave.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hatchet.svg b/svg/hatchet.svg
new file mode 100644
index 000000000..bd1869cb6
--- /dev/null
+++ b/svg/hatchet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hatchets.svg b/svg/hatchets.svg
new file mode 100644
index 000000000..c620ef621
--- /dev/null
+++ b/svg/hatchets.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/haunting.svg b/svg/haunting.svg
new file mode 100644
index 000000000..94920921f
--- /dev/null
+++ b/svg/haunting.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hawk-emblem.svg b/svg/hawk-emblem.svg
new file mode 100644
index 000000000..f3e543dd2
--- /dev/null
+++ b/svg/hawk-emblem.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hazard-sign.svg b/svg/hazard-sign.svg
new file mode 100644
index 000000000..9729e14f5
--- /dev/null
+++ b/svg/hazard-sign.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hazmat-suit.svg b/svg/hazmat-suit.svg
new file mode 100644
index 000000000..86e18049b
--- /dev/null
+++ b/svg/hazmat-suit.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/head-shot.svg b/svg/head-shot.svg
new file mode 100644
index 000000000..cd21567ef
--- /dev/null
+++ b/svg/head-shot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/headband-knot.svg b/svg/headband-knot.svg
new file mode 100644
index 000000000..de148570d
--- /dev/null
+++ b/svg/headband-knot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/headphones.svg b/svg/headphones.svg
new file mode 100644
index 000000000..6c23f157e
--- /dev/null
+++ b/svg/headphones.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/headshot-2.svg b/svg/headshot-2.svg
new file mode 100644
index 000000000..12f026792
--- /dev/null
+++ b/svg/headshot-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/headshot.svg b/svg/headshot.svg
new file mode 100644
index 000000000..493cc475b
--- /dev/null
+++ b/svg/headshot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/healing-shield.svg b/svg/healing-shield.svg
new file mode 100644
index 000000000..4e795eb4b
--- /dev/null
+++ b/svg/healing-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/healing.svg b/svg/healing.svg
new file mode 100644
index 000000000..0f016c0b9
--- /dev/null
+++ b/svg/healing.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/health-capsule.svg b/svg/health-capsule.svg
new file mode 100644
index 000000000..c0b00694e
--- /dev/null
+++ b/svg/health-capsule.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/health-decrease.svg b/svg/health-decrease.svg
new file mode 100644
index 000000000..5e045a159
--- /dev/null
+++ b/svg/health-decrease.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/health-increase.svg b/svg/health-increase.svg
new file mode 100644
index 000000000..dcc801436
--- /dev/null
+++ b/svg/health-increase.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/health-normal.svg b/svg/health-normal.svg
new file mode 100644
index 000000000..649f1a43e
--- /dev/null
+++ b/svg/health-normal.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/health-potion.svg b/svg/health-potion.svg
new file mode 100644
index 000000000..1c8ea1690
--- /dev/null
+++ b/svg/health-potion.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hearing-disabled.svg b/svg/hearing-disabled.svg
new file mode 100644
index 000000000..346b703a8
--- /dev/null
+++ b/svg/hearing-disabled.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heart-armor.svg b/svg/heart-armor.svg
new file mode 100644
index 000000000..ae33da726
--- /dev/null
+++ b/svg/heart-armor.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heart-battery.svg b/svg/heart-battery.svg
new file mode 100644
index 000000000..5484e5688
--- /dev/null
+++ b/svg/heart-battery.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heart-beats.svg b/svg/heart-beats.svg
new file mode 100644
index 000000000..7ed47da2b
--- /dev/null
+++ b/svg/heart-beats.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heart-bottle.svg b/svg/heart-bottle.svg
new file mode 100644
index 000000000..17bee8d2f
--- /dev/null
+++ b/svg/heart-bottle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heart-drop.svg b/svg/heart-drop.svg
new file mode 100644
index 000000000..55e9b8f32
--- /dev/null
+++ b/svg/heart-drop.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heart-earrings.svg b/svg/heart-earrings.svg
new file mode 100644
index 000000000..46f84e501
--- /dev/null
+++ b/svg/heart-earrings.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heart-inside.svg b/svg/heart-inside.svg
new file mode 100644
index 000000000..7a600db0c
--- /dev/null
+++ b/svg/heart-inside.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heart-key.svg b/svg/heart-key.svg
new file mode 100644
index 000000000..1c34abcbc
--- /dev/null
+++ b/svg/heart-key.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heart-minus.svg b/svg/heart-minus.svg
new file mode 100644
index 000000000..01c51cf8e
--- /dev/null
+++ b/svg/heart-minus.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heart-necklace.svg b/svg/heart-necklace.svg
new file mode 100644
index 000000000..2c5e46d4f
--- /dev/null
+++ b/svg/heart-necklace.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heart-organ.svg b/svg/heart-organ.svg
new file mode 100644
index 000000000..c05509a56
--- /dev/null
+++ b/svg/heart-organ.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heart-plus.svg b/svg/heart-plus.svg
new file mode 100644
index 000000000..a3e70b3b5
--- /dev/null
+++ b/svg/heart-plus.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heart-shield.svg b/svg/heart-shield.svg
new file mode 100644
index 000000000..5256b09e2
--- /dev/null
+++ b/svg/heart-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heart-stake.svg b/svg/heart-stake.svg
new file mode 100644
index 000000000..63f9faae0
--- /dev/null
+++ b/svg/heart-stake.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heart-tower.svg b/svg/heart-tower.svg
new file mode 100644
index 000000000..caeeb7e3e
--- /dev/null
+++ b/svg/heart-tower.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heart-wings.svg b/svg/heart-wings.svg
new file mode 100644
index 000000000..c4a2f4c9c
--- /dev/null
+++ b/svg/heart-wings.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heartburn.svg b/svg/heartburn.svg
new file mode 100644
index 000000000..72d1ad500
--- /dev/null
+++ b/svg/heartburn.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hearts.svg b/svg/hearts.svg
new file mode 100644
index 000000000..6de0b4898
--- /dev/null
+++ b/svg/hearts.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heat-haze.svg b/svg/heat-haze.svg
new file mode 100644
index 000000000..cdb88ff97
--- /dev/null
+++ b/svg/heat-haze.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heaven-gate.svg b/svg/heaven-gate.svg
new file mode 100644
index 000000000..d378f2981
--- /dev/null
+++ b/svg/heaven-gate.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heavy-arrow.svg b/svg/heavy-arrow.svg
new file mode 100644
index 000000000..a52b2bca6
--- /dev/null
+++ b/svg/heavy-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heavy-bullets.svg b/svg/heavy-bullets.svg
new file mode 100644
index 000000000..95597bbc2
--- /dev/null
+++ b/svg/heavy-bullets.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heavy-collar.svg b/svg/heavy-collar.svg
new file mode 100644
index 000000000..5074b3d9b
--- /dev/null
+++ b/svg/heavy-collar.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heavy-fall.svg b/svg/heavy-fall.svg
new file mode 100644
index 000000000..7b8ed667e
--- /dev/null
+++ b/svg/heavy-fall.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heavy-fighter.svg b/svg/heavy-fighter.svg
new file mode 100644
index 000000000..a7469f386
--- /dev/null
+++ b/svg/heavy-fighter.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heavy-helm.svg b/svg/heavy-helm.svg
new file mode 100644
index 000000000..fb9766d3d
--- /dev/null
+++ b/svg/heavy-helm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heavy-lightning.svg b/svg/heavy-lightning.svg
new file mode 100644
index 000000000..d3c85c953
--- /dev/null
+++ b/svg/heavy-lightning.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heavy-rain.svg b/svg/heavy-rain.svg
new file mode 100644
index 000000000..1156a4cc4
--- /dev/null
+++ b/svg/heavy-rain.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heavy-thorny-triskelion.svg b/svg/heavy-thorny-triskelion.svg
new file mode 100644
index 000000000..0aa90b81a
--- /dev/null
+++ b/svg/heavy-thorny-triskelion.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heavy-timer.svg b/svg/heavy-timer.svg
new file mode 100644
index 000000000..da085e2e2
--- /dev/null
+++ b/svg/heavy-timer.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hedgehog.svg b/svg/hedgehog.svg
new file mode 100644
index 000000000..216ff301c
--- /dev/null
+++ b/svg/hedgehog.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hedjet-white-crown.svg b/svg/hedjet-white-crown.svg
new file mode 100644
index 000000000..1ea43194b
--- /dev/null
+++ b/svg/hedjet-white-crown.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/helicoprion.svg b/svg/helicoprion.svg
new file mode 100644
index 000000000..7bf8aaf36
--- /dev/null
+++ b/svg/helicoprion.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/helicopter-tail.svg b/svg/helicopter-tail.svg
new file mode 100644
index 000000000..4c405c411
--- /dev/null
+++ b/svg/helicopter-tail.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/helicopter.svg b/svg/helicopter.svg
new file mode 100644
index 000000000..6aecf2279
--- /dev/null
+++ b/svg/helicopter.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hell-crosses.svg b/svg/hell-crosses.svg
new file mode 100644
index 000000000..7502a0518
--- /dev/null
+++ b/svg/hell-crosses.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/helmet-head-shot.svg b/svg/helmet-head-shot.svg
new file mode 100644
index 000000000..96a1d1172
--- /dev/null
+++ b/svg/helmet-head-shot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/helmet.svg b/svg/helmet.svg
new file mode 100644
index 000000000..db62e5c4f
--- /dev/null
+++ b/svg/helmet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/help.svg b/svg/help.svg
new file mode 100644
index 000000000..4f21bd90b
--- /dev/null
+++ b/svg/help.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hemp.svg b/svg/hemp.svg
new file mode 100644
index 000000000..31a16bd98
--- /dev/null
+++ b/svg/hemp.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heptagram.svg b/svg/heptagram.svg
new file mode 100644
index 000000000..782fdde16
--- /dev/null
+++ b/svg/heptagram.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heraldic-sun.svg b/svg/heraldic-sun.svg
new file mode 100644
index 000000000..cd1ffe9f3
--- /dev/null
+++ b/svg/heraldic-sun.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/herbs-bundle.svg b/svg/herbs-bundle.svg
new file mode 100644
index 000000000..ee8201dfb
--- /dev/null
+++ b/svg/herbs-bundle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/heron.svg b/svg/heron.svg
new file mode 100644
index 000000000..4e79f7400
--- /dev/null
+++ b/svg/heron.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hexagonal-nut.svg b/svg/hexagonal-nut.svg
new file mode 100644
index 000000000..db5277ba6
--- /dev/null
+++ b/svg/hexagonal-nut.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hexes.svg b/svg/hexes.svg
new file mode 100644
index 000000000..cb70c8cc2
--- /dev/null
+++ b/svg/hexes.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hidden.svg b/svg/hidden.svg
new file mode 100644
index 000000000..bba71baaa
--- /dev/null
+++ b/svg/hidden.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hieroglyph-legs.svg b/svg/hieroglyph-legs.svg
new file mode 100644
index 000000000..ace332648
--- /dev/null
+++ b/svg/hieroglyph-legs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hieroglyph-y.svg b/svg/hieroglyph-y.svg
new file mode 100644
index 000000000..14f04956f
--- /dev/null
+++ b/svg/hieroglyph-y.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/high-five.svg b/svg/high-five.svg
new file mode 100644
index 000000000..a0d50d49d
--- /dev/null
+++ b/svg/high-five.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/high-grass.svg b/svg/high-grass.svg
new file mode 100644
index 000000000..355d6aef6
--- /dev/null
+++ b/svg/high-grass.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/high-heel.svg b/svg/high-heel.svg
new file mode 100644
index 000000000..5b9516b2a
--- /dev/null
+++ b/svg/high-heel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/high-kick.svg b/svg/high-kick.svg
new file mode 100644
index 000000000..8a833c58e
--- /dev/null
+++ b/svg/high-kick.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/high-punch.svg b/svg/high-punch.svg
new file mode 100644
index 000000000..bf0b6bb7c
--- /dev/null
+++ b/svg/high-punch.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/high-shot.svg b/svg/high-shot.svg
new file mode 100644
index 000000000..5e143ed51
--- /dev/null
+++ b/svg/high-shot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/high-tide.svg b/svg/high-tide.svg
new file mode 100644
index 000000000..1ac1c6460
--- /dev/null
+++ b/svg/high-tide.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/highlighter.svg b/svg/highlighter.svg
new file mode 100644
index 000000000..233ed9807
--- /dev/null
+++ b/svg/highlighter.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hiking.svg b/svg/hiking.svg
new file mode 100644
index 000000000..03da1170b
--- /dev/null
+++ b/svg/hiking.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hill-conquest.svg b/svg/hill-conquest.svg
new file mode 100644
index 000000000..d8cbeb6ec
--- /dev/null
+++ b/svg/hill-conquest.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hill-fort.svg b/svg/hill-fort.svg
new file mode 100644
index 000000000..8f1910887
--- /dev/null
+++ b/svg/hill-fort.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hills.svg b/svg/hills.svg
new file mode 100644
index 000000000..96a703457
--- /dev/null
+++ b/svg/hills.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/histogram.svg b/svg/histogram.svg
new file mode 100644
index 000000000..7fbb697e6
--- /dev/null
+++ b/svg/histogram.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hive-mind.svg b/svg/hive-mind.svg
new file mode 100644
index 000000000..39d0bfa0b
--- /dev/null
+++ b/svg/hive-mind.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hive.svg b/svg/hive.svg
new file mode 100644
index 000000000..dfd6e39d4
--- /dev/null
+++ b/svg/hive.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hobbit-door.svg b/svg/hobbit-door.svg
new file mode 100644
index 000000000..7609553a5
--- /dev/null
+++ b/svg/hobbit-door.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hobbit-dwelling.svg b/svg/hobbit-dwelling.svg
new file mode 100644
index 000000000..a5e157e36
--- /dev/null
+++ b/svg/hobbit-dwelling.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hockey.svg b/svg/hockey.svg
new file mode 100644
index 000000000..03f8578f3
--- /dev/null
+++ b/svg/hockey.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hole-ladder.svg b/svg/hole-ladder.svg
new file mode 100644
index 000000000..4a68a8558
--- /dev/null
+++ b/svg/hole-ladder.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hole.svg b/svg/hole.svg
new file mode 100644
index 000000000..08e9aa99e
--- /dev/null
+++ b/svg/hole.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hollow-cat.svg b/svg/hollow-cat.svg
new file mode 100644
index 000000000..d64ddac90
--- /dev/null
+++ b/svg/hollow-cat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/holosphere.svg b/svg/holosphere.svg
new file mode 100644
index 000000000..992c451e4
--- /dev/null
+++ b/svg/holosphere.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/holy-grail.svg b/svg/holy-grail.svg
new file mode 100644
index 000000000..36a5ff512
--- /dev/null
+++ b/svg/holy-grail.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/holy-hand-grenade.svg b/svg/holy-hand-grenade.svg
new file mode 100644
index 000000000..7be274378
--- /dev/null
+++ b/svg/holy-hand-grenade.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/holy-oak.svg b/svg/holy-oak.svg
new file mode 100644
index 000000000..f01b5cdc2
--- /dev/null
+++ b/svg/holy-oak.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/holy-symbol.svg b/svg/holy-symbol.svg
new file mode 100644
index 000000000..534a7e277
--- /dev/null
+++ b/svg/holy-symbol.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/holy-water.svg b/svg/holy-water.svg
new file mode 100644
index 000000000..f9e800caa
--- /dev/null
+++ b/svg/holy-water.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/home-garage.svg b/svg/home-garage.svg
new file mode 100644
index 000000000..634f7fe78
--- /dev/null
+++ b/svg/home-garage.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/honey-jar.svg b/svg/honey-jar.svg
new file mode 100644
index 000000000..5bea632ec
--- /dev/null
+++ b/svg/honey-jar.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/honeycomb.svg b/svg/honeycomb.svg
new file mode 100644
index 000000000..0b8594644
--- /dev/null
+++ b/svg/honeycomb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/honeypot.svg b/svg/honeypot.svg
new file mode 100644
index 000000000..012f002f6
--- /dev/null
+++ b/svg/honeypot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hood.svg b/svg/hood.svg
new file mode 100644
index 000000000..109df9a50
--- /dev/null
+++ b/svg/hood.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hooded-assassin.svg b/svg/hooded-assassin.svg
new file mode 100644
index 000000000..185a80c40
--- /dev/null
+++ b/svg/hooded-assassin.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hooded-figure.svg b/svg/hooded-figure.svg
new file mode 100644
index 000000000..5bc18f6fb
--- /dev/null
+++ b/svg/hooded-figure.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hoodie.svg b/svg/hoodie.svg
new file mode 100644
index 000000000..08a8ad08e
--- /dev/null
+++ b/svg/hoodie.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hoof.svg b/svg/hoof.svg
new file mode 100644
index 000000000..8aaae9a3e
--- /dev/null
+++ b/svg/hoof.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hook.svg b/svg/hook.svg
new file mode 100644
index 000000000..215699c6d
--- /dev/null
+++ b/svg/hook.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hops.svg b/svg/hops.svg
new file mode 100644
index 000000000..a05afd36a
--- /dev/null
+++ b/svg/hops.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/horizon-road.svg b/svg/horizon-road.svg
new file mode 100644
index 000000000..b2bf9ff42
--- /dev/null
+++ b/svg/horizon-road.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/horizontal-flip.svg b/svg/horizontal-flip.svg
new file mode 100644
index 000000000..d04ba3369
--- /dev/null
+++ b/svg/horizontal-flip.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/horn-internal.svg b/svg/horn-internal.svg
new file mode 100644
index 000000000..abc72cebd
--- /dev/null
+++ b/svg/horn-internal.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/horned-helm.svg b/svg/horned-helm.svg
new file mode 100644
index 000000000..42f6c2b32
--- /dev/null
+++ b/svg/horned-helm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/horned-reptile.svg b/svg/horned-reptile.svg
new file mode 100644
index 000000000..485cd3c53
--- /dev/null
+++ b/svg/horned-reptile.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/horned-skull.svg b/svg/horned-skull.svg
new file mode 100644
index 000000000..a3924051c
--- /dev/null
+++ b/svg/horned-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/horse-head-2.svg b/svg/horse-head-2.svg
new file mode 100644
index 000000000..dabdffa86
--- /dev/null
+++ b/svg/horse-head-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/horse-head.svg b/svg/horse-head.svg
new file mode 100644
index 000000000..0ec4a9f97
--- /dev/null
+++ b/svg/horse-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/horseshoe.svg b/svg/horseshoe.svg
new file mode 100644
index 000000000..203a2702c
--- /dev/null
+++ b/svg/horseshoe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/horus.svg b/svg/horus.svg
new file mode 100644
index 000000000..9e38a3695
--- /dev/null
+++ b/svg/horus.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hospital-cross.svg b/svg/hospital-cross.svg
new file mode 100644
index 000000000..e42039ce4
--- /dev/null
+++ b/svg/hospital-cross.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hospital.svg b/svg/hospital.svg
new file mode 100644
index 000000000..517dfa90b
--- /dev/null
+++ b/svg/hospital.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hot-dog.svg b/svg/hot-dog.svg
new file mode 100644
index 000000000..1a95111c9
--- /dev/null
+++ b/svg/hot-dog.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hot-meal.svg b/svg/hot-meal.svg
new file mode 100644
index 000000000..3fc4156e4
--- /dev/null
+++ b/svg/hot-meal.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hot-spices.svg b/svg/hot-spices.svg
new file mode 100644
index 000000000..f61501ec3
--- /dev/null
+++ b/svg/hot-spices.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hot-surface.svg b/svg/hot-surface.svg
new file mode 100644
index 000000000..a1b551b00
--- /dev/null
+++ b/svg/hot-surface.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hound.svg b/svg/hound.svg
new file mode 100644
index 000000000..55e8d1a39
--- /dev/null
+++ b/svg/hound.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hourglass.svg b/svg/hourglass.svg
new file mode 100644
index 000000000..0e4f35c55
--- /dev/null
+++ b/svg/hourglass.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/house-keys.svg b/svg/house-keys.svg
new file mode 100644
index 000000000..3fe250f3c
--- /dev/null
+++ b/svg/house-keys.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/house.svg b/svg/house.svg
new file mode 100644
index 000000000..709733ca7
--- /dev/null
+++ b/svg/house.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/human-cannonball.svg b/svg/human-cannonball.svg
new file mode 100644
index 000000000..ce1265f10
--- /dev/null
+++ b/svg/human-cannonball.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/human-ear.svg b/svg/human-ear.svg
new file mode 100644
index 000000000..325927519
--- /dev/null
+++ b/svg/human-ear.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/human-pyramid.svg b/svg/human-pyramid.svg
new file mode 100644
index 000000000..5b7f62017
--- /dev/null
+++ b/svg/human-pyramid.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/human-target.svg b/svg/human-target.svg
new file mode 100644
index 000000000..1fd3e625d
--- /dev/null
+++ b/svg/human-target.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hummingbird.svg b/svg/hummingbird.svg
new file mode 100644
index 000000000..57a458f72
--- /dev/null
+++ b/svg/hummingbird.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hungary.svg b/svg/hungary.svg
new file mode 100644
index 000000000..0bf59e9e9
--- /dev/null
+++ b/svg/hungary.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hunter-eyes.svg b/svg/hunter-eyes.svg
new file mode 100644
index 000000000..de900a621
--- /dev/null
+++ b/svg/hunter-eyes.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hunting-bolas.svg b/svg/hunting-bolas.svg
new file mode 100644
index 000000000..2d17110df
--- /dev/null
+++ b/svg/hunting-bolas.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hunting-horn.svg b/svg/hunting-horn.svg
new file mode 100644
index 000000000..d7fcc00af
--- /dev/null
+++ b/svg/hunting-horn.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hut.svg b/svg/hut.svg
new file mode 100644
index 000000000..e54c07df1
--- /dev/null
+++ b/svg/hut.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/huts-village.svg b/svg/huts-village.svg
new file mode 100644
index 000000000..f328fef27
--- /dev/null
+++ b/svg/huts-village.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hydra-shot.svg b/svg/hydra-shot.svg
new file mode 100644
index 000000000..9bd22c324
--- /dev/null
+++ b/svg/hydra-shot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hydra.svg b/svg/hydra.svg
new file mode 100644
index 000000000..42afe11a7
--- /dev/null
+++ b/svg/hydra.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hyena-head.svg b/svg/hyena-head.svg
new file mode 100644
index 000000000..c4725c7a8
--- /dev/null
+++ b/svg/hyena-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hypersonic-bolt.svg b/svg/hypersonic-bolt.svg
new file mode 100644
index 000000000..90748f906
--- /dev/null
+++ b/svg/hypersonic-bolt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hypersonic-melon.svg b/svg/hypersonic-melon.svg
new file mode 100644
index 000000000..39061f647
--- /dev/null
+++ b/svg/hypersonic-melon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/hypodermic-test.svg b/svg/hypodermic-test.svg
new file mode 100644
index 000000000..3bb8af174
--- /dev/null
+++ b/svg/hypodermic-test.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/i-beam.svg b/svg/i-beam.svg
new file mode 100644
index 000000000..010b95033
--- /dev/null
+++ b/svg/i-beam.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/i-brick.svg b/svg/i-brick.svg
new file mode 100644
index 000000000..d8530f2f2
--- /dev/null
+++ b/svg/i-brick.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ibis.svg b/svg/ibis.svg
new file mode 100644
index 000000000..7417e6692
--- /dev/null
+++ b/svg/ibis.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/icarus.svg b/svg/icarus.svg
new file mode 100644
index 000000000..0d471b29d
--- /dev/null
+++ b/svg/icarus.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ice-bolt.svg b/svg/ice-bolt.svg
new file mode 100644
index 000000000..adc834540
--- /dev/null
+++ b/svg/ice-bolt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ice-bomb.svg b/svg/ice-bomb.svg
new file mode 100644
index 000000000..4a40c1274
--- /dev/null
+++ b/svg/ice-bomb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ice-cream-cone.svg b/svg/ice-cream-cone.svg
new file mode 100644
index 000000000..271cbc455
--- /dev/null
+++ b/svg/ice-cream-cone.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ice-cream-scoop.svg b/svg/ice-cream-scoop.svg
new file mode 100644
index 000000000..ad8c65e85
--- /dev/null
+++ b/svg/ice-cream-scoop.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ice-cube.svg b/svg/ice-cube.svg
new file mode 100644
index 000000000..0561b7397
--- /dev/null
+++ b/svg/ice-cube.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ice-cubes.svg b/svg/ice-cubes.svg
new file mode 100644
index 000000000..71f79a4c6
--- /dev/null
+++ b/svg/ice-cubes.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ice-golem.svg b/svg/ice-golem.svg
new file mode 100644
index 000000000..60fed74b2
--- /dev/null
+++ b/svg/ice-golem.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ice-iris.svg b/svg/ice-iris.svg
new file mode 100644
index 000000000..6de5161b6
--- /dev/null
+++ b/svg/ice-iris.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ice-pop.svg b/svg/ice-pop.svg
new file mode 100644
index 000000000..36227f80e
--- /dev/null
+++ b/svg/ice-pop.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ice-shield.svg b/svg/ice-shield.svg
new file mode 100644
index 000000000..ded84bf7f
--- /dev/null
+++ b/svg/ice-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ice-skate.svg b/svg/ice-skate.svg
new file mode 100644
index 000000000..a61137b46
--- /dev/null
+++ b/svg/ice-skate.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ice-spear.svg b/svg/ice-spear.svg
new file mode 100644
index 000000000..1ef15bd30
--- /dev/null
+++ b/svg/ice-spear.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ice-spell-cast.svg b/svg/ice-spell-cast.svg
new file mode 100644
index 000000000..523a2f186
--- /dev/null
+++ b/svg/ice-spell-cast.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/iceberg.svg b/svg/iceberg.svg
new file mode 100644
index 000000000..6e4d5b2aa
--- /dev/null
+++ b/svg/iceberg.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/icebergs.svg b/svg/icebergs.svg
new file mode 100644
index 000000000..b8f5e5cde
--- /dev/null
+++ b/svg/icebergs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/iceland.svg b/svg/iceland.svg
new file mode 100644
index 000000000..3e44bce62
--- /dev/null
+++ b/svg/iceland.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/icicles-aura.svg b/svg/icicles-aura.svg
new file mode 100644
index 000000000..037b599a0
--- /dev/null
+++ b/svg/icicles-aura.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/icicles-fence.svg b/svg/icicles-fence.svg
new file mode 100644
index 000000000..64f55662e
--- /dev/null
+++ b/svg/icicles-fence.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/id-card.svg b/svg/id-card.svg
new file mode 100644
index 000000000..a688e6723
--- /dev/null
+++ b/svg/id-card.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/idea.svg b/svg/idea.svg
new file mode 100644
index 000000000..75b1c86be
--- /dev/null
+++ b/svg/idea.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ifrit.svg b/svg/ifrit.svg
new file mode 100644
index 000000000..fa8d1cf0e
--- /dev/null
+++ b/svg/ifrit.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/igloo.svg b/svg/igloo.svg
new file mode 100644
index 000000000..47b491ef7
--- /dev/null
+++ b/svg/igloo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/imbricated-arrows.svg b/svg/imbricated-arrows.svg
new file mode 100644
index 000000000..c506ccd38
--- /dev/null
+++ b/svg/imbricated-arrows.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/imp-laugh.svg b/svg/imp-laugh.svg
new file mode 100644
index 000000000..3d50991eb
--- /dev/null
+++ b/svg/imp-laugh.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/imp.svg b/svg/imp.svg
new file mode 100644
index 000000000..475bcd083
--- /dev/null
+++ b/svg/imp.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/impact-point.svg b/svg/impact-point.svg
new file mode 100644
index 000000000..454ee90ea
--- /dev/null
+++ b/svg/impact-point.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/imperial-crown.svg b/svg/imperial-crown.svg
new file mode 100644
index 000000000..31c7c5358
--- /dev/null
+++ b/svg/imperial-crown.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/implosion.svg b/svg/implosion.svg
new file mode 100644
index 000000000..4c9622325
--- /dev/null
+++ b/svg/implosion.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/imprisoned.svg b/svg/imprisoned.svg
new file mode 100644
index 000000000..fac8a0125
--- /dev/null
+++ b/svg/imprisoned.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/inauguration.svg b/svg/inauguration.svg
new file mode 100644
index 000000000..45d10c94c
--- /dev/null
+++ b/svg/inauguration.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/incense.svg b/svg/incense.svg
new file mode 100644
index 000000000..9a99025b6
--- /dev/null
+++ b/svg/incense.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/incisors.svg b/svg/incisors.svg
new file mode 100644
index 000000000..c053e2518
--- /dev/null
+++ b/svg/incisors.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/incoming-rocket.svg b/svg/incoming-rocket.svg
new file mode 100644
index 000000000..ecf362a3c
--- /dev/null
+++ b/svg/incoming-rocket.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/incubator.svg b/svg/incubator.svg
new file mode 100644
index 000000000..2288c4016
--- /dev/null
+++ b/svg/incubator.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/india-gate.svg b/svg/india-gate.svg
new file mode 100644
index 000000000..8971934f7
--- /dev/null
+++ b/svg/india-gate.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/indian-palace.svg b/svg/indian-palace.svg
new file mode 100644
index 000000000..862e57a9c
--- /dev/null
+++ b/svg/indian-palace.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/inferno-bomb.svg b/svg/inferno-bomb.svg
new file mode 100644
index 000000000..f193060dd
--- /dev/null
+++ b/svg/inferno-bomb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/infested-mass.svg b/svg/infested-mass.svg
new file mode 100644
index 000000000..0cf49058b
--- /dev/null
+++ b/svg/infested-mass.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/infinity.svg b/svg/infinity.svg
new file mode 100644
index 000000000..9d600b079
--- /dev/null
+++ b/svg/infinity.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/info.svg b/svg/info.svg
new file mode 100644
index 000000000..34f2c3432
--- /dev/null
+++ b/svg/info.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/injustice.svg b/svg/injustice.svg
new file mode 100644
index 000000000..b908e18ae
--- /dev/null
+++ b/svg/injustice.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ink-swirl.svg b/svg/ink-swirl.svg
new file mode 100644
index 000000000..c6a91f21c
--- /dev/null
+++ b/svg/ink-swirl.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/inner-self.svg b/svg/inner-self.svg
new file mode 100644
index 000000000..ed247787f
--- /dev/null
+++ b/svg/inner-self.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/insect-jaws.svg b/svg/insect-jaws.svg
new file mode 100644
index 000000000..73f75d53a
--- /dev/null
+++ b/svg/insect-jaws.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/inspiration.svg b/svg/inspiration.svg
new file mode 100644
index 000000000..98c48783e
--- /dev/null
+++ b/svg/inspiration.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/interceptor-ship.svg b/svg/interceptor-ship.svg
new file mode 100644
index 000000000..a02292eca
--- /dev/null
+++ b/svg/interceptor-ship.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/interdiction.svg b/svg/interdiction.svg
new file mode 100644
index 000000000..0e18b4eb2
--- /dev/null
+++ b/svg/interdiction.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/interlaced-tentacles.svg b/svg/interlaced-tentacles.svg
new file mode 100644
index 000000000..e93e66e3b
--- /dev/null
+++ b/svg/interlaced-tentacles.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/interleaved-arrows.svg b/svg/interleaved-arrows.svg
new file mode 100644
index 000000000..d2c4da4ab
--- /dev/null
+++ b/svg/interleaved-arrows.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/interleaved-claws.svg b/svg/interleaved-claws.svg
new file mode 100644
index 000000000..f921b1ee3
--- /dev/null
+++ b/svg/interleaved-claws.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/internal-injury.svg b/svg/internal-injury.svg
new file mode 100644
index 000000000..401be91a3
--- /dev/null
+++ b/svg/internal-injury.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/internal-organ.svg b/svg/internal-organ.svg
new file mode 100644
index 000000000..2d0525838
--- /dev/null
+++ b/svg/internal-organ.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/interstellar-path.svg b/svg/interstellar-path.svg
new file mode 100644
index 000000000..97c869cdb
--- /dev/null
+++ b/svg/interstellar-path.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/intricate-necklace.svg b/svg/intricate-necklace.svg
new file mode 100644
index 000000000..31d5d457f
--- /dev/null
+++ b/svg/intricate-necklace.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/inverted-dice-1.svg b/svg/inverted-dice-1.svg
new file mode 100644
index 000000000..79f8f1fad
--- /dev/null
+++ b/svg/inverted-dice-1.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/inverted-dice-2.svg b/svg/inverted-dice-2.svg
new file mode 100644
index 000000000..17005353a
--- /dev/null
+++ b/svg/inverted-dice-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/inverted-dice-3.svg b/svg/inverted-dice-3.svg
new file mode 100644
index 000000000..d7187768c
--- /dev/null
+++ b/svg/inverted-dice-3.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/inverted-dice-4.svg b/svg/inverted-dice-4.svg
new file mode 100644
index 000000000..658c3830b
--- /dev/null
+++ b/svg/inverted-dice-4.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/inverted-dice-5.svg b/svg/inverted-dice-5.svg
new file mode 100644
index 000000000..04df8e7e6
--- /dev/null
+++ b/svg/inverted-dice-5.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/inverted-dice-6.svg b/svg/inverted-dice-6.svg
new file mode 100644
index 000000000..794cb535e
--- /dev/null
+++ b/svg/inverted-dice-6.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/invisible-face.svg b/svg/invisible-face.svg
new file mode 100644
index 000000000..6d69cd20b
--- /dev/null
+++ b/svg/invisible-face.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/invisible.svg b/svg/invisible.svg
new file mode 100644
index 000000000..21194cc2b
--- /dev/null
+++ b/svg/invisible.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ion-cannon-blast.svg b/svg/ion-cannon-blast.svg
new file mode 100644
index 000000000..c42b950cd
--- /dev/null
+++ b/svg/ion-cannon-blast.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ionic-column.svg b/svg/ionic-column.svg
new file mode 100644
index 000000000..e6a9986d4
--- /dev/null
+++ b/svg/ionic-column.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/iraq.svg b/svg/iraq.svg
new file mode 100644
index 000000000..c5f766fa3
--- /dev/null
+++ b/svg/iraq.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/iron-cross.svg b/svg/iron-cross.svg
new file mode 100644
index 000000000..f65bd7fa5
--- /dev/null
+++ b/svg/iron-cross.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/iron-hulled-warship.svg b/svg/iron-hulled-warship.svg
new file mode 100644
index 000000000..076f791dc
--- /dev/null
+++ b/svg/iron-hulled-warship.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/iron-mask.svg b/svg/iron-mask.svg
new file mode 100644
index 000000000..7a0ccddc1
--- /dev/null
+++ b/svg/iron-mask.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/island.svg b/svg/island.svg
new file mode 100644
index 000000000..2958df97c
--- /dev/null
+++ b/svg/island.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/italia.svg b/svg/italia.svg
new file mode 100644
index 000000000..8db82d922
--- /dev/null
+++ b/svg/italia.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ivory-tusks.svg b/svg/ivory-tusks.svg
new file mode 100644
index 000000000..b8fe8ffe0
--- /dev/null
+++ b/svg/ivory-tusks.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/j-brick.svg b/svg/j-brick.svg
new file mode 100644
index 000000000..aac94c7a9
--- /dev/null
+++ b/svg/j-brick.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/jack-plug.svg b/svg/jack-plug.svg
new file mode 100644
index 000000000..18544dfc7
--- /dev/null
+++ b/svg/jack-plug.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/james-bond-aperture.svg b/svg/james-bond-aperture.svg
new file mode 100644
index 000000000..ecc1cd254
--- /dev/null
+++ b/svg/james-bond-aperture.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/japan.svg b/svg/japan.svg
new file mode 100644
index 000000000..f08fe2c77
--- /dev/null
+++ b/svg/japan.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/japanese-bridge.svg b/svg/japanese-bridge.svg
new file mode 100644
index 000000000..4b7313b5f
--- /dev/null
+++ b/svg/japanese-bridge.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/jasmine.svg b/svg/jasmine.svg
new file mode 100644
index 000000000..0f7bcc0d8
--- /dev/null
+++ b/svg/jasmine.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/jason-mask.svg b/svg/jason-mask.svg
new file mode 100644
index 000000000..5247db80d
--- /dev/null
+++ b/svg/jason-mask.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/jawbone.svg b/svg/jawbone.svg
new file mode 100644
index 000000000..e82f60390
--- /dev/null
+++ b/svg/jawbone.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/jawless-cyclop.svg b/svg/jawless-cyclop.svg
new file mode 100644
index 000000000..ab554fece
--- /dev/null
+++ b/svg/jawless-cyclop.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/jeep-2.svg b/svg/jeep-2.svg
new file mode 100644
index 000000000..d5f68c09f
--- /dev/null
+++ b/svg/jeep-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/jeep.svg b/svg/jeep.svg
new file mode 100644
index 000000000..ff7eeedea
--- /dev/null
+++ b/svg/jeep.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/jelly-beans.svg b/svg/jelly-beans.svg
new file mode 100644
index 000000000..a63303e0d
--- /dev/null
+++ b/svg/jelly-beans.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/jelly.svg b/svg/jelly.svg
new file mode 100644
index 000000000..c843e7155
--- /dev/null
+++ b/svg/jelly.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/jellyfish.svg b/svg/jellyfish.svg
new file mode 100644
index 000000000..ca26aca77
--- /dev/null
+++ b/svg/jellyfish.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/jerrycan.svg b/svg/jerrycan.svg
new file mode 100644
index 000000000..eaa92dcd6
--- /dev/null
+++ b/svg/jerrycan.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/jerusalem-cross.svg b/svg/jerusalem-cross.svg
new file mode 100644
index 000000000..00835e5ed
--- /dev/null
+++ b/svg/jerusalem-cross.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/jester-hat.svg b/svg/jester-hat.svg
new file mode 100644
index 000000000..995ad95c0
--- /dev/null
+++ b/svg/jester-hat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/jet-fighter.svg b/svg/jet-fighter.svg
new file mode 100644
index 000000000..d42d8aac4
--- /dev/null
+++ b/svg/jet-fighter.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/jet-pack.svg b/svg/jet-pack.svg
new file mode 100644
index 000000000..10657b40e
--- /dev/null
+++ b/svg/jet-pack.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/jetpack.svg b/svg/jetpack.svg
new file mode 100644
index 000000000..3ec34a4bb
--- /dev/null
+++ b/svg/jetpack.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/jewel-crown.svg b/svg/jewel-crown.svg
new file mode 100644
index 000000000..c9d20a5ee
--- /dev/null
+++ b/svg/jewel-crown.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/jeweled-chalice.svg b/svg/jeweled-chalice.svg
new file mode 100644
index 000000000..096ad937e
--- /dev/null
+++ b/svg/jeweled-chalice.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/jigsaw-box.svg b/svg/jigsaw-box.svg
new file mode 100644
index 000000000..97248a588
--- /dev/null
+++ b/svg/jigsaw-box.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/jigsaw-piece.svg b/svg/jigsaw-piece.svg
new file mode 100644
index 000000000..cd881998b
--- /dev/null
+++ b/svg/jigsaw-piece.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/join.svg b/svg/join.svg
new file mode 100644
index 000000000..60d7d91a1
--- /dev/null
+++ b/svg/join.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/joint.svg b/svg/joint.svg
new file mode 100644
index 000000000..57c58ffe9
--- /dev/null
+++ b/svg/joint.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/journey.svg b/svg/journey.svg
new file mode 100644
index 000000000..5cce9d218
--- /dev/null
+++ b/svg/journey.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/joystick.svg b/svg/joystick.svg
new file mode 100644
index 000000000..d701b69c1
--- /dev/null
+++ b/svg/joystick.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/jug.svg b/svg/jug.svg
new file mode 100644
index 000000000..e6ca02232
--- /dev/null
+++ b/svg/jug.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/juggler.svg b/svg/juggler.svg
new file mode 100644
index 000000000..76502a218
--- /dev/null
+++ b/svg/juggler.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/juggling-clubs.svg b/svg/juggling-clubs.svg
new file mode 100644
index 000000000..328bd9164
--- /dev/null
+++ b/svg/juggling-clubs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/juggling-seal.svg b/svg/juggling-seal.svg
new file mode 100644
index 000000000..b14ce2e5e
--- /dev/null
+++ b/svg/juggling-seal.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/jump-across.svg b/svg/jump-across.svg
new file mode 100644
index 000000000..309ff9054
--- /dev/null
+++ b/svg/jump-across.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/jumping-dog.svg b/svg/jumping-dog.svg
new file mode 100644
index 000000000..a27239a94
--- /dev/null
+++ b/svg/jumping-dog.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/jumping-rope.svg b/svg/jumping-rope.svg
new file mode 100644
index 000000000..0ca3565a2
--- /dev/null
+++ b/svg/jumping-rope.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/jungle.svg b/svg/jungle.svg
new file mode 100644
index 000000000..0bdf7ec8b
--- /dev/null
+++ b/svg/jungle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/jupiter.svg b/svg/jupiter.svg
new file mode 100644
index 000000000..a2a72b1ca
--- /dev/null
+++ b/svg/jupiter.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/justice-star.svg b/svg/justice-star.svg
new file mode 100644
index 000000000..a0929aebc
--- /dev/null
+++ b/svg/justice-star.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/kaleidoscope-pearls.svg b/svg/kaleidoscope-pearls.svg
new file mode 100644
index 000000000..db0eda9f3
--- /dev/null
+++ b/svg/kaleidoscope-pearls.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/kangaroo.svg b/svg/kangaroo.svg
new file mode 100644
index 000000000..9e135a7dd
--- /dev/null
+++ b/svg/kangaroo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/katana.svg b/svg/katana.svg
new file mode 100644
index 000000000..cb2bbc3ee
--- /dev/null
+++ b/svg/katana.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/kebab-spit.svg b/svg/kebab-spit.svg
new file mode 100644
index 000000000..f7f57b5e6
--- /dev/null
+++ b/svg/kebab-spit.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/kenku-head.svg b/svg/kenku-head.svg
new file mode 100644
index 000000000..dae9d9fbe
--- /dev/null
+++ b/svg/kenku-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/kenya.svg b/svg/kenya.svg
new file mode 100644
index 000000000..704931f3f
--- /dev/null
+++ b/svg/kenya.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ketchup.svg b/svg/ketchup.svg
new file mode 100644
index 000000000..d4449cda9
--- /dev/null
+++ b/svg/ketchup.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/kevlar-vest.svg b/svg/kevlar-vest.svg
new file mode 100644
index 000000000..2cf6176fa
--- /dev/null
+++ b/svg/kevlar-vest.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/kevlar.svg b/svg/kevlar.svg
new file mode 100644
index 000000000..2b93c6788
--- /dev/null
+++ b/svg/kevlar.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/key-2.svg b/svg/key-2.svg
new file mode 100644
index 000000000..250059708
--- /dev/null
+++ b/svg/key-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/key-card.svg b/svg/key-card.svg
new file mode 100644
index 000000000..56c7fd83e
--- /dev/null
+++ b/svg/key-card.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/key-lock.svg b/svg/key-lock.svg
new file mode 100644
index 000000000..a23119cac
--- /dev/null
+++ b/svg/key-lock.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/key.svg b/svg/key.svg
new file mode 100644
index 000000000..cdef38237
--- /dev/null
+++ b/svg/key.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/keyboard.svg b/svg/keyboard.svg
new file mode 100644
index 000000000..4257c99a4
--- /dev/null
+++ b/svg/keyboard.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/keyring.svg b/svg/keyring.svg
new file mode 100644
index 000000000..fa3cf116b
--- /dev/null
+++ b/svg/keyring.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/kick-scooter.svg b/svg/kick-scooter.svg
new file mode 100644
index 000000000..f15a4162f
--- /dev/null
+++ b/svg/kick-scooter.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/kid-slide.svg b/svg/kid-slide.svg
new file mode 100644
index 000000000..3844ca4be
--- /dev/null
+++ b/svg/kid-slide.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/kidneys.svg b/svg/kidneys.svg
new file mode 100644
index 000000000..d3fdc3ba2
--- /dev/null
+++ b/svg/kidneys.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/kimono.svg b/svg/kimono.svg
new file mode 100644
index 000000000..3e77c1675
--- /dev/null
+++ b/svg/kimono.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/kindle.svg b/svg/kindle.svg
new file mode 100644
index 000000000..cf76950a6
--- /dev/null
+++ b/svg/kindle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/king-ju-mask.svg b/svg/king-ju-mask.svg
new file mode 100644
index 000000000..58cf7b52f
--- /dev/null
+++ b/svg/king-ju-mask.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/king.svg b/svg/king.svg
new file mode 100644
index 000000000..15de5ffbb
--- /dev/null
+++ b/svg/king.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/kitchen-knives.svg b/svg/kitchen-knives.svg
new file mode 100644
index 000000000..ed12d6e21
--- /dev/null
+++ b/svg/kitchen-knives.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/kitchen-scale.svg b/svg/kitchen-scale.svg
new file mode 100644
index 000000000..4076c547b
--- /dev/null
+++ b/svg/kitchen-scale.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/kitchen-tap.svg b/svg/kitchen-tap.svg
new file mode 100644
index 000000000..1c94694dc
--- /dev/null
+++ b/svg/kitchen-tap.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/kite.svg b/svg/kite.svg
new file mode 100644
index 000000000..12bef0fe5
--- /dev/null
+++ b/svg/kite.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/kiwi-bird.svg b/svg/kiwi-bird.svg
new file mode 100644
index 000000000..015c54c28
--- /dev/null
+++ b/svg/kiwi-bird.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/kiwi-fruit.svg b/svg/kiwi-fruit.svg
new file mode 100644
index 000000000..6b2464982
--- /dev/null
+++ b/svg/kiwi-fruit.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/klingon.svg b/svg/klingon.svg
new file mode 100644
index 000000000..aa48d479b
--- /dev/null
+++ b/svg/klingon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/knapsack.svg b/svg/knapsack.svg
new file mode 100644
index 000000000..bdc961467
--- /dev/null
+++ b/svg/knapsack.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/knee-bandage.svg b/svg/knee-bandage.svg
new file mode 100644
index 000000000..9513234b0
--- /dev/null
+++ b/svg/knee-bandage.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/knee-cap.svg b/svg/knee-cap.svg
new file mode 100644
index 000000000..5af23b0a9
--- /dev/null
+++ b/svg/knee-cap.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/knee-pad.svg b/svg/knee-pad.svg
new file mode 100644
index 000000000..ead1260d3
--- /dev/null
+++ b/svg/knee-pad.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/kneeling.svg b/svg/kneeling.svg
new file mode 100644
index 000000000..9a933db7c
--- /dev/null
+++ b/svg/kneeling.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/knife-fork.svg b/svg/knife-fork.svg
new file mode 100644
index 000000000..f1f1317eb
--- /dev/null
+++ b/svg/knife-fork.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/knife-thrust.svg b/svg/knife-thrust.svg
new file mode 100644
index 000000000..d6c0e1979
--- /dev/null
+++ b/svg/knife-thrust.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/knight-banner.svg b/svg/knight-banner.svg
new file mode 100644
index 000000000..d7f9b4525
--- /dev/null
+++ b/svg/knight-banner.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/knocked-out-stars.svg b/svg/knocked-out-stars.svg
new file mode 100644
index 000000000..ec5ed17e7
--- /dev/null
+++ b/svg/knocked-out-stars.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/knockout.svg b/svg/knockout.svg
new file mode 100644
index 000000000..82666a4df
--- /dev/null
+++ b/svg/knockout.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/knot.svg b/svg/knot.svg
new file mode 100644
index 000000000..1a32aa6d5
--- /dev/null
+++ b/svg/knot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/koala.svg b/svg/koala.svg
new file mode 100644
index 000000000..4ed2fc4e8
--- /dev/null
+++ b/svg/koala.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/koholint-egg.svg b/svg/koholint-egg.svg
new file mode 100644
index 000000000..456af2f15
--- /dev/null
+++ b/svg/koholint-egg.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/kraken-tentacle.svg b/svg/kraken-tentacle.svg
new file mode 100644
index 000000000..18cd51026
--- /dev/null
+++ b/svg/kraken-tentacle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/kusarigama.svg b/svg/kusarigama.svg
new file mode 100644
index 000000000..ae658a12e
--- /dev/null
+++ b/svg/kusarigama.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/l-brick.svg b/svg/l-brick.svg
new file mode 100644
index 000000000..a9c87eb3c
--- /dev/null
+++ b/svg/l-brick.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lab-coat.svg b/svg/lab-coat.svg
new file mode 100644
index 000000000..0a4128d4c
--- /dev/null
+++ b/svg/lab-coat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/labrador-head.svg b/svg/labrador-head.svg
new file mode 100644
index 000000000..a535767da
--- /dev/null
+++ b/svg/labrador-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ladder.svg b/svg/ladder.svg
new file mode 100644
index 000000000..669bc5928
--- /dev/null
+++ b/svg/ladder.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ladders-platform.svg b/svg/ladders-platform.svg
new file mode 100644
index 000000000..646255835
--- /dev/null
+++ b/svg/ladders-platform.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ladle.svg b/svg/ladle.svg
new file mode 100644
index 000000000..22d340772
--- /dev/null
+++ b/svg/ladle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ladybug.svg b/svg/ladybug.svg
new file mode 100644
index 000000000..b91392afa
--- /dev/null
+++ b/svg/ladybug.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lamellar.svg b/svg/lamellar.svg
new file mode 100644
index 000000000..922d98dab
--- /dev/null
+++ b/svg/lamellar.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lamprey-mouth.svg b/svg/lamprey-mouth.svg
new file mode 100644
index 000000000..f76ce4177
--- /dev/null
+++ b/svg/lamprey-mouth.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/land-mine.svg b/svg/land-mine.svg
new file mode 100644
index 000000000..d76d64044
--- /dev/null
+++ b/svg/land-mine.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lantern-flame.svg b/svg/lantern-flame.svg
new file mode 100644
index 000000000..fe40d302d
--- /dev/null
+++ b/svg/lantern-flame.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lantern.svg b/svg/lantern.svg
new file mode 100644
index 000000000..b1bc6fd50
--- /dev/null
+++ b/svg/lantern.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/laptop.svg b/svg/laptop.svg
new file mode 100644
index 000000000..cddf4cd36
--- /dev/null
+++ b/svg/laptop.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/large-dress.svg b/svg/large-dress.svg
new file mode 100644
index 000000000..0ea838d6e
--- /dev/null
+++ b/svg/large-dress.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/large-paint-brush.svg b/svg/large-paint-brush.svg
new file mode 100644
index 000000000..ec9359f9e
--- /dev/null
+++ b/svg/large-paint-brush.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/large-wound.svg b/svg/large-wound.svg
new file mode 100644
index 000000000..110a22064
--- /dev/null
+++ b/svg/large-wound.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/laser-blast.svg b/svg/laser-blast.svg
new file mode 100644
index 000000000..b2e3eb427
--- /dev/null
+++ b/svg/laser-blast.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/laser-burst.svg b/svg/laser-burst.svg
new file mode 100644
index 000000000..9819dad33
--- /dev/null
+++ b/svg/laser-burst.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/laser-gun.svg b/svg/laser-gun.svg
new file mode 100644
index 000000000..c08414c34
--- /dev/null
+++ b/svg/laser-gun.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/laser-precision.svg b/svg/laser-precision.svg
new file mode 100644
index 000000000..c0a26bb67
--- /dev/null
+++ b/svg/laser-precision.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/laser-sparks.svg b/svg/laser-sparks.svg
new file mode 100644
index 000000000..4d24d8c18
--- /dev/null
+++ b/svg/laser-sparks.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/laser-turret.svg b/svg/laser-turret.svg
new file mode 100644
index 000000000..51c1f1296
--- /dev/null
+++ b/svg/laser-turret.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/laser-warning.svg b/svg/laser-warning.svg
new file mode 100644
index 000000000..f42c8ddd5
--- /dev/null
+++ b/svg/laser-warning.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/laserburn.svg b/svg/laserburn.svg
new file mode 100644
index 000000000..ee0c6e94a
--- /dev/null
+++ b/svg/laserburn.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lasso.svg b/svg/lasso.svg
new file mode 100644
index 000000000..955576dbe
--- /dev/null
+++ b/svg/lasso.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/latvia.svg b/svg/latvia.svg
new file mode 100644
index 000000000..1a02d4f22
--- /dev/null
+++ b/svg/latvia.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/laurel-crown.svg b/svg/laurel-crown.svg
new file mode 100644
index 000000000..579660b6c
--- /dev/null
+++ b/svg/laurel-crown.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/laurels-trophy.svg b/svg/laurels-trophy.svg
new file mode 100644
index 000000000..ab62c8703
--- /dev/null
+++ b/svg/laurels-trophy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/laurels.svg b/svg/laurels.svg
new file mode 100644
index 000000000..688bb6789
--- /dev/null
+++ b/svg/laurels.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lava.svg b/svg/lava.svg
new file mode 100644
index 000000000..f6d6558d1
--- /dev/null
+++ b/svg/lava.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/law-star.svg b/svg/law-star.svg
new file mode 100644
index 000000000..677bf8c19
--- /dev/null
+++ b/svg/law-star.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/layered-armor.svg b/svg/layered-armor.svg
new file mode 100644
index 000000000..4ed48a2c4
--- /dev/null
+++ b/svg/layered-armor.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lead-pipe.svg b/svg/lead-pipe.svg
new file mode 100644
index 000000000..94251d1c4
--- /dev/null
+++ b/svg/lead-pipe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/leaf-skeleton.svg b/svg/leaf-skeleton.svg
new file mode 100644
index 000000000..a30e5ebcf
--- /dev/null
+++ b/svg/leaf-skeleton.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/leaf-swirl.svg b/svg/leaf-swirl.svg
new file mode 100644
index 000000000..7ee5ba117
--- /dev/null
+++ b/svg/leaf-swirl.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/leak.svg b/svg/leak.svg
new file mode 100644
index 000000000..2170d3083
--- /dev/null
+++ b/svg/leak.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/leaky-skull.svg b/svg/leaky-skull.svg
new file mode 100644
index 000000000..fca540acd
--- /dev/null
+++ b/svg/leaky-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/leapfrog.svg b/svg/leapfrog.svg
new file mode 100644
index 000000000..10d49add1
--- /dev/null
+++ b/svg/leapfrog.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/leather-armor.svg b/svg/leather-armor.svg
new file mode 100644
index 000000000..497c058e5
--- /dev/null
+++ b/svg/leather-armor.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/leather-boot.svg b/svg/leather-boot.svg
new file mode 100644
index 000000000..b36324d87
--- /dev/null
+++ b/svg/leather-boot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/leather-vest.svg b/svg/leather-vest.svg
new file mode 100644
index 000000000..42995751b
--- /dev/null
+++ b/svg/leather-vest.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/led.svg b/svg/led.svg
new file mode 100644
index 000000000..600c3ce89
--- /dev/null
+++ b/svg/led.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lee-enfield.svg b/svg/lee-enfield.svg
new file mode 100644
index 000000000..079821cd7
--- /dev/null
+++ b/svg/lee-enfield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/leeching-worm.svg b/svg/leeching-worm.svg
new file mode 100644
index 000000000..add29e9e7
--- /dev/null
+++ b/svg/leeching-worm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/leek.svg b/svg/leek.svg
new file mode 100644
index 000000000..6c40580bb
--- /dev/null
+++ b/svg/leek.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/leg-armor.svg b/svg/leg-armor.svg
new file mode 100644
index 000000000..6ec9cf310
--- /dev/null
+++ b/svg/leg-armor.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/leg.svg b/svg/leg.svg
new file mode 100644
index 000000000..95c086882
--- /dev/null
+++ b/svg/leg.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lemon.svg b/svg/lemon.svg
new file mode 100644
index 000000000..1c27351aa
--- /dev/null
+++ b/svg/lemon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/leo.svg b/svg/leo.svg
new file mode 100644
index 000000000..3d69cad6e
--- /dev/null
+++ b/svg/leo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/letter-bomb.svg b/svg/letter-bomb.svg
new file mode 100644
index 000000000..a5665e5b3
--- /dev/null
+++ b/svg/letter-bomb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/level-crossing.svg b/svg/level-crossing.svg
new file mode 100644
index 000000000..fcb976c88
--- /dev/null
+++ b/svg/level-crossing.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/level-end-flag.svg b/svg/level-end-flag.svg
new file mode 100644
index 000000000..c9015d698
--- /dev/null
+++ b/svg/level-end-flag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/level-four-advanced.svg b/svg/level-four-advanced.svg
new file mode 100644
index 000000000..06427239e
--- /dev/null
+++ b/svg/level-four-advanced.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/level-four.svg b/svg/level-four.svg
new file mode 100644
index 000000000..b6f46a0ba
--- /dev/null
+++ b/svg/level-four.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/level-three-advanced.svg b/svg/level-three-advanced.svg
new file mode 100644
index 000000000..c44e996f3
--- /dev/null
+++ b/svg/level-three-advanced.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/level-three.svg b/svg/level-three.svg
new file mode 100644
index 000000000..4ee051a0f
--- /dev/null
+++ b/svg/level-three.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/level-two-advanced.svg b/svg/level-two-advanced.svg
new file mode 100644
index 000000000..2290a82af
--- /dev/null
+++ b/svg/level-two-advanced.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/level-two.svg b/svg/level-two.svg
new file mode 100644
index 000000000..affe88818
--- /dev/null
+++ b/svg/level-two.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lever.svg b/svg/lever.svg
new file mode 100644
index 000000000..35debb97e
--- /dev/null
+++ b/svg/lever.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/liar.svg b/svg/liar.svg
new file mode 100644
index 000000000..4ac0a1b62
--- /dev/null
+++ b/svg/liar.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/liberty-wing.svg b/svg/liberty-wing.svg
new file mode 100644
index 000000000..d2ff55dde
--- /dev/null
+++ b/svg/liberty-wing.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/libra.svg b/svg/libra.svg
new file mode 100644
index 000000000..b9058dc82
--- /dev/null
+++ b/svg/libra.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/libya.svg b/svg/libya.svg
new file mode 100644
index 000000000..e6370a8b5
--- /dev/null
+++ b/svg/libya.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/life-bar.svg b/svg/life-bar.svg
new file mode 100644
index 000000000..3d99b070a
--- /dev/null
+++ b/svg/life-bar.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/life-buoy.svg b/svg/life-buoy.svg
new file mode 100644
index 000000000..b41f06460
--- /dev/null
+++ b/svg/life-buoy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/life-in-the-balance.svg b/svg/life-in-the-balance.svg
new file mode 100644
index 000000000..3d6212d01
--- /dev/null
+++ b/svg/life-in-the-balance.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/life-jacket.svg b/svg/life-jacket.svg
new file mode 100644
index 000000000..eaa944cbe
--- /dev/null
+++ b/svg/life-jacket.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/life-support.svg b/svg/life-support.svg
new file mode 100644
index 000000000..e170c6426
--- /dev/null
+++ b/svg/life-support.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/life-tap.svg b/svg/life-tap.svg
new file mode 100644
index 000000000..368a1b364
--- /dev/null
+++ b/svg/life-tap.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lift.svg b/svg/lift.svg
new file mode 100644
index 000000000..f2df172a7
--- /dev/null
+++ b/svg/lift.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/light-backpack.svg b/svg/light-backpack.svg
new file mode 100644
index 000000000..68dfa3e59
--- /dev/null
+++ b/svg/light-backpack.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/light-bulb.svg b/svg/light-bulb.svg
new file mode 100644
index 000000000..962ed1f9d
--- /dev/null
+++ b/svg/light-bulb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/light-fighter.svg b/svg/light-fighter.svg
new file mode 100644
index 000000000..2290e1ddc
--- /dev/null
+++ b/svg/light-fighter.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/light-helm.svg b/svg/light-helm.svg
new file mode 100644
index 000000000..adbf00133
--- /dev/null
+++ b/svg/light-helm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/light-projector.svg b/svg/light-projector.svg
new file mode 100644
index 000000000..6f25b56c4
--- /dev/null
+++ b/svg/light-projector.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/light-sabers.svg b/svg/light-sabers.svg
new file mode 100644
index 000000000..0e7455dbd
--- /dev/null
+++ b/svg/light-sabers.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/light-thorny-triskelion.svg b/svg/light-thorny-triskelion.svg
new file mode 100644
index 000000000..46c6f31c6
--- /dev/null
+++ b/svg/light-thorny-triskelion.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lighter.svg b/svg/lighter.svg
new file mode 100644
index 000000000..1e057bfb4
--- /dev/null
+++ b/svg/lighter.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lighthouse.svg b/svg/lighthouse.svg
new file mode 100644
index 000000000..bb8740bc0
--- /dev/null
+++ b/svg/lighthouse.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lightning-arc.svg b/svg/lightning-arc.svg
new file mode 100644
index 000000000..89f6027ab
--- /dev/null
+++ b/svg/lightning-arc.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lightning-bow.svg b/svg/lightning-bow.svg
new file mode 100644
index 000000000..d29089c57
--- /dev/null
+++ b/svg/lightning-bow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lightning-branches.svg b/svg/lightning-branches.svg
new file mode 100644
index 000000000..5b42fffb3
--- /dev/null
+++ b/svg/lightning-branches.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lightning-dissipation.svg b/svg/lightning-dissipation.svg
new file mode 100644
index 000000000..5eb729fca
--- /dev/null
+++ b/svg/lightning-dissipation.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lightning-dome.svg b/svg/lightning-dome.svg
new file mode 100644
index 000000000..ac8f6c3dd
--- /dev/null
+++ b/svg/lightning-dome.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lightning-electron.svg b/svg/lightning-electron.svg
new file mode 100644
index 000000000..01121a823
--- /dev/null
+++ b/svg/lightning-electron.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lightning-flame.svg b/svg/lightning-flame.svg
new file mode 100644
index 000000000..9423ad9bf
--- /dev/null
+++ b/svg/lightning-flame.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lightning-frequency.svg b/svg/lightning-frequency.svg
new file mode 100644
index 000000000..a7af53b05
--- /dev/null
+++ b/svg/lightning-frequency.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lightning-helix.svg b/svg/lightning-helix.svg
new file mode 100644
index 000000000..8b4d28561
--- /dev/null
+++ b/svg/lightning-helix.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lightning-mask.svg b/svg/lightning-mask.svg
new file mode 100644
index 000000000..c21c97dc0
--- /dev/null
+++ b/svg/lightning-mask.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lightning-saber.svg b/svg/lightning-saber.svg
new file mode 100644
index 000000000..a45c3e467
--- /dev/null
+++ b/svg/lightning-saber.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lightning-shadow.svg b/svg/lightning-shadow.svg
new file mode 100644
index 000000000..dad822538
--- /dev/null
+++ b/svg/lightning-shadow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lightning-shield.svg b/svg/lightning-shield.svg
new file mode 100644
index 000000000..f08496a41
--- /dev/null
+++ b/svg/lightning-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lightning-shout.svg b/svg/lightning-shout.svg
new file mode 100644
index 000000000..690ea2480
--- /dev/null
+++ b/svg/lightning-shout.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lightning-slashes.svg b/svg/lightning-slashes.svg
new file mode 100644
index 000000000..8e2b72876
--- /dev/null
+++ b/svg/lightning-slashes.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lightning-spanner.svg b/svg/lightning-spanner.svg
new file mode 100644
index 000000000..e5cc3bfca
--- /dev/null
+++ b/svg/lightning-spanner.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lightning-storm.svg b/svg/lightning-storm.svg
new file mode 100644
index 000000000..cdc041fc7
--- /dev/null
+++ b/svg/lightning-storm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lightning-tear.svg b/svg/lightning-tear.svg
new file mode 100644
index 000000000..d4e1a2995
--- /dev/null
+++ b/svg/lightning-tear.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lightning-tree.svg b/svg/lightning-tree.svg
new file mode 100644
index 000000000..c85d49d5e
--- /dev/null
+++ b/svg/lightning-tree.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lightning-trio.svg b/svg/lightning-trio.svg
new file mode 100644
index 000000000..96af9c276
--- /dev/null
+++ b/svg/lightning-trio.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lily-pads.svg b/svg/lily-pads.svg
new file mode 100644
index 000000000..856795d27
--- /dev/null
+++ b/svg/lily-pads.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/linden-leaf.svg b/svg/linden-leaf.svg
new file mode 100644
index 000000000..07e9db09c
--- /dev/null
+++ b/svg/linden-leaf.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/linked-rings.svg b/svg/linked-rings.svg
new file mode 100644
index 000000000..629bfd3ad
--- /dev/null
+++ b/svg/linked-rings.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lion.svg b/svg/lion.svg
new file mode 100644
index 000000000..ed188c4f1
--- /dev/null
+++ b/svg/lion.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lips.svg b/svg/lips.svg
new file mode 100644
index 000000000..890deae32
--- /dev/null
+++ b/svg/lips.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lipstick.svg b/svg/lipstick.svg
new file mode 100644
index 000000000..6532868b5
--- /dev/null
+++ b/svg/lipstick.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/liquid-soap.svg b/svg/liquid-soap.svg
new file mode 100644
index 000000000..ed76af863
--- /dev/null
+++ b/svg/liquid-soap.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lit-candelabra.svg b/svg/lit-candelabra.svg
new file mode 100644
index 000000000..5e4fc57e8
--- /dev/null
+++ b/svg/lit-candelabra.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/liver.svg b/svg/liver.svg
new file mode 100644
index 000000000..e23ac5724
--- /dev/null
+++ b/svg/liver.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lizard-tongue.svg b/svg/lizard-tongue.svg
new file mode 100644
index 000000000..d4953d222
--- /dev/null
+++ b/svg/lizard-tongue.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lizardman.svg b/svg/lizardman.svg
new file mode 100644
index 000000000..a73c18145
--- /dev/null
+++ b/svg/lizardman.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/load.svg b/svg/load.svg
new file mode 100644
index 000000000..9842c2506
--- /dev/null
+++ b/svg/load.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lob-arrow.svg b/svg/lob-arrow.svg
new file mode 100644
index 000000000..1dee37044
--- /dev/null
+++ b/svg/lob-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lock-picking.svg b/svg/lock-picking.svg
new file mode 100644
index 000000000..d67c49660
--- /dev/null
+++ b/svg/lock-picking.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lock-spy.svg b/svg/lock-spy.svg
new file mode 100644
index 000000000..35f86755d
--- /dev/null
+++ b/svg/lock-spy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/locked-box.svg b/svg/locked-box.svg
new file mode 100644
index 000000000..2dca01aa4
--- /dev/null
+++ b/svg/locked-box.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/locked-chest.svg b/svg/locked-chest.svg
new file mode 100644
index 000000000..d4a5dc639
--- /dev/null
+++ b/svg/locked-chest.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/locked-door.svg b/svg/locked-door.svg
new file mode 100644
index 000000000..7df841374
--- /dev/null
+++ b/svg/locked-door.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/locked-fortress.svg b/svg/locked-fortress.svg
new file mode 100644
index 000000000..e6f0332da
--- /dev/null
+++ b/svg/locked-fortress.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/locked-heart.svg b/svg/locked-heart.svg
new file mode 100644
index 000000000..fc50bb406
--- /dev/null
+++ b/svg/locked-heart.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lockers.svg b/svg/lockers.svg
new file mode 100644
index 000000000..85d943d21
--- /dev/null
+++ b/svg/lockers.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lockpicks.svg b/svg/lockpicks.svg
new file mode 100644
index 000000000..60e251702
--- /dev/null
+++ b/svg/lockpicks.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/log.svg b/svg/log.svg
new file mode 100644
index 000000000..7a71e8e82
--- /dev/null
+++ b/svg/log.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/logging.svg b/svg/logging.svg
new file mode 100644
index 000000000..20aff024f
--- /dev/null
+++ b/svg/logging.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/logic-gate-and.svg b/svg/logic-gate-and.svg
new file mode 100644
index 000000000..a125ce221
--- /dev/null
+++ b/svg/logic-gate-and.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/logic-gate-nand.svg b/svg/logic-gate-nand.svg
new file mode 100644
index 000000000..cd094e6cf
--- /dev/null
+++ b/svg/logic-gate-nand.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/logic-gate-nor.svg b/svg/logic-gate-nor.svg
new file mode 100644
index 000000000..ecb2a3efe
--- /dev/null
+++ b/svg/logic-gate-nor.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/logic-gate-not.svg b/svg/logic-gate-not.svg
new file mode 100644
index 000000000..316e4ce7a
--- /dev/null
+++ b/svg/logic-gate-not.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/logic-gate-nxor.svg b/svg/logic-gate-nxor.svg
new file mode 100644
index 000000000..f27bed381
--- /dev/null
+++ b/svg/logic-gate-nxor.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/logic-gate-or.svg b/svg/logic-gate-or.svg
new file mode 100644
index 000000000..a92db3d0c
--- /dev/null
+++ b/svg/logic-gate-or.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/logic-gate-xor.svg b/svg/logic-gate-xor.svg
new file mode 100644
index 000000000..3b6c0747d
--- /dev/null
+++ b/svg/logic-gate-xor.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/loincloth.svg b/svg/loincloth.svg
new file mode 100644
index 000000000..d7112237b
--- /dev/null
+++ b/svg/loincloth.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/long-antennae-bug.svg b/svg/long-antennae-bug.svg
new file mode 100644
index 000000000..a22290038
--- /dev/null
+++ b/svg/long-antennae-bug.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/long-legged-spider.svg b/svg/long-legged-spider.svg
new file mode 100644
index 000000000..e5338b980
--- /dev/null
+++ b/svg/long-legged-spider.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/look-at.svg b/svg/look-at.svg
new file mode 100644
index 000000000..c34187570
--- /dev/null
+++ b/svg/look-at.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lorgnette.svg b/svg/lorgnette.svg
new file mode 100644
index 000000000..e2e2f5083
--- /dev/null
+++ b/svg/lorgnette.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lost-limb.svg b/svg/lost-limb.svg
new file mode 100644
index 000000000..2d36f44fe
--- /dev/null
+++ b/svg/lost-limb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lotus-flower.svg b/svg/lotus-flower.svg
new file mode 100644
index 000000000..10a22d888
--- /dev/null
+++ b/svg/lotus-flower.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lotus.svg b/svg/lotus.svg
new file mode 100644
index 000000000..edf18b177
--- /dev/null
+++ b/svg/lotus.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/louvre-pyramid.svg b/svg/louvre-pyramid.svg
new file mode 100644
index 000000000..b7435bd41
--- /dev/null
+++ b/svg/louvre-pyramid.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/love-howl.svg b/svg/love-howl.svg
new file mode 100644
index 000000000..54de2492a
--- /dev/null
+++ b/svg/love-howl.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/love-injection.svg b/svg/love-injection.svg
new file mode 100644
index 000000000..00574071d
--- /dev/null
+++ b/svg/love-injection.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/love-letter.svg b/svg/love-letter.svg
new file mode 100644
index 000000000..df0b3fa6e
--- /dev/null
+++ b/svg/love-letter.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/love-mystery.svg b/svg/love-mystery.svg
new file mode 100644
index 000000000..7d886868b
--- /dev/null
+++ b/svg/love-mystery.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/love-song.svg b/svg/love-song.svg
new file mode 100644
index 000000000..639bd6b4b
--- /dev/null
+++ b/svg/love-song.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lovers.svg b/svg/lovers.svg
new file mode 100644
index 000000000..92ddc8800
--- /dev/null
+++ b/svg/lovers.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/low-tide.svg b/svg/low-tide.svg
new file mode 100644
index 000000000..189c43739
--- /dev/null
+++ b/svg/low-tide.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/luchador.svg b/svg/luchador.svg
new file mode 100644
index 000000000..0d40fcacd
--- /dev/null
+++ b/svg/luchador.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lucifer-cannon.svg b/svg/lucifer-cannon.svg
new file mode 100644
index 000000000..04a18ee53
--- /dev/null
+++ b/svg/lucifer-cannon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lucky-fisherman.svg b/svg/lucky-fisherman.svg
new file mode 100644
index 000000000..879480b71
--- /dev/null
+++ b/svg/lucky-fisherman.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/luger.svg b/svg/luger.svg
new file mode 100644
index 000000000..9862f23b6
--- /dev/null
+++ b/svg/luger.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lunar-module.svg b/svg/lunar-module.svg
new file mode 100644
index 000000000..0ae5581ac
--- /dev/null
+++ b/svg/lunar-module.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lunar-wand.svg b/svg/lunar-wand.svg
new file mode 100644
index 000000000..eaca79b8b
--- /dev/null
+++ b/svg/lunar-wand.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lungs.svg b/svg/lungs.svg
new file mode 100644
index 000000000..28309d33c
--- /dev/null
+++ b/svg/lungs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lynx-head.svg b/svg/lynx-head.svg
new file mode 100644
index 000000000..fe16645b3
--- /dev/null
+++ b/svg/lynx-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/lyre.svg b/svg/lyre.svg
new file mode 100644
index 000000000..f0ccd33f2
--- /dev/null
+++ b/svg/lyre.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/m3-grease-gun.svg b/svg/m3-grease-gun.svg
new file mode 100644
index 000000000..2aaf26a95
--- /dev/null
+++ b/svg/m3-grease-gun.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mac-10.svg b/svg/mac-10.svg
new file mode 100644
index 000000000..8e3607a21
--- /dev/null
+++ b/svg/mac-10.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mace-head.svg b/svg/mace-head.svg
new file mode 100644
index 000000000..aa653f37d
--- /dev/null
+++ b/svg/mace-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/machete.svg b/svg/machete.svg
new file mode 100644
index 000000000..e0bc3fd28
--- /dev/null
+++ b/svg/machete.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/machine-gun-magazine.svg b/svg/machine-gun-magazine.svg
new file mode 100644
index 000000000..2484ef223
--- /dev/null
+++ b/svg/machine-gun-magazine.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/machine-gun.svg b/svg/machine-gun.svg
new file mode 100644
index 000000000..bcaa0093b
--- /dev/null
+++ b/svg/machine-gun.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mad-scientist.svg b/svg/mad-scientist.svg
new file mode 100644
index 000000000..6a5f2c2de
--- /dev/null
+++ b/svg/mad-scientist.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/maggot.svg b/svg/maggot.svg
new file mode 100644
index 000000000..5b3821add
--- /dev/null
+++ b/svg/maggot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/magic-axe.svg b/svg/magic-axe.svg
new file mode 100644
index 000000000..ce26a9f23
--- /dev/null
+++ b/svg/magic-axe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/magic-broom.svg b/svg/magic-broom.svg
new file mode 100644
index 000000000..5ad79fde7
--- /dev/null
+++ b/svg/magic-broom.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/magic-gate.svg b/svg/magic-gate.svg
new file mode 100644
index 000000000..6d1c1a1c3
--- /dev/null
+++ b/svg/magic-gate.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/magic-hat.svg b/svg/magic-hat.svg
new file mode 100644
index 000000000..6141f1b7e
--- /dev/null
+++ b/svg/magic-hat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/magic-lamp.svg b/svg/magic-lamp.svg
new file mode 100644
index 000000000..d957765ed
--- /dev/null
+++ b/svg/magic-lamp.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/magic-palm.svg b/svg/magic-palm.svg
new file mode 100644
index 000000000..8c28eaeee
--- /dev/null
+++ b/svg/magic-palm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/magic-portal.svg b/svg/magic-portal.svg
new file mode 100644
index 000000000..08e7abd6a
--- /dev/null
+++ b/svg/magic-portal.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/magic-potion.svg b/svg/magic-potion.svg
new file mode 100644
index 000000000..04d7f6789
--- /dev/null
+++ b/svg/magic-potion.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/magic-shield.svg b/svg/magic-shield.svg
new file mode 100644
index 000000000..4c0f7ae09
--- /dev/null
+++ b/svg/magic-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/magic-swirl.svg b/svg/magic-swirl.svg
new file mode 100644
index 000000000..6440c81f7
--- /dev/null
+++ b/svg/magic-swirl.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/magic-trident.svg b/svg/magic-trident.svg
new file mode 100644
index 000000000..25c830d51
--- /dev/null
+++ b/svg/magic-trident.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/magick-trick.svg b/svg/magick-trick.svg
new file mode 100644
index 000000000..b2d851ab8
--- /dev/null
+++ b/svg/magick-trick.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/magnet-blast.svg b/svg/magnet-blast.svg
new file mode 100644
index 000000000..c6a36bf3c
--- /dev/null
+++ b/svg/magnet-blast.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/magnet-man.svg b/svg/magnet-man.svg
new file mode 100644
index 000000000..2d6a6eede
--- /dev/null
+++ b/svg/magnet-man.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/magnet.svg b/svg/magnet.svg
new file mode 100644
index 000000000..fe26cafea
--- /dev/null
+++ b/svg/magnet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/magnifying-glass.svg b/svg/magnifying-glass.svg
new file mode 100644
index 000000000..7dec67bbb
--- /dev/null
+++ b/svg/magnifying-glass.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mail-shirt.svg b/svg/mail-shirt.svg
new file mode 100644
index 000000000..324980ab0
--- /dev/null
+++ b/svg/mail-shirt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mailbox.svg b/svg/mailbox.svg
new file mode 100644
index 000000000..02c61f938
--- /dev/null
+++ b/svg/mailbox.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mailed-fist.svg b/svg/mailed-fist.svg
new file mode 100644
index 000000000..080758a75
--- /dev/null
+++ b/svg/mailed-fist.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/male.svg b/svg/male.svg
new file mode 100644
index 000000000..f10dc374b
--- /dev/null
+++ b/svg/male.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mammoth.svg b/svg/mammoth.svg
new file mode 100644
index 000000000..eded5d110
--- /dev/null
+++ b/svg/mammoth.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/manacles.svg b/svg/manacles.svg
new file mode 100644
index 000000000..fec15b802
--- /dev/null
+++ b/svg/manacles.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mandrill-head.svg b/svg/mandrill-head.svg
new file mode 100644
index 000000000..4ab0610de
--- /dev/null
+++ b/svg/mandrill-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/manta-ray.svg b/svg/manta-ray.svg
new file mode 100644
index 000000000..9db7c0bcf
--- /dev/null
+++ b/svg/manta-ray.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mantrap.svg b/svg/mantrap.svg
new file mode 100644
index 000000000..190dd1edf
--- /dev/null
+++ b/svg/mantrap.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/manual-juicer.svg b/svg/manual-juicer.svg
new file mode 100644
index 000000000..2d7db1611
--- /dev/null
+++ b/svg/manual-juicer.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/manual-meat-grinder.svg b/svg/manual-meat-grinder.svg
new file mode 100644
index 000000000..defe50b16
--- /dev/null
+++ b/svg/manual-meat-grinder.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/maple-leaf.svg b/svg/maple-leaf.svg
new file mode 100644
index 000000000..f2be6ff2c
--- /dev/null
+++ b/svg/maple-leaf.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/maracas.svg b/svg/maracas.svg
new file mode 100644
index 000000000..07b92f11e
--- /dev/null
+++ b/svg/maracas.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/marble-tap.svg b/svg/marble-tap.svg
new file mode 100644
index 000000000..fb9ab9f31
--- /dev/null
+++ b/svg/marble-tap.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/marbles.svg b/svg/marbles.svg
new file mode 100644
index 000000000..d61199b3d
--- /dev/null
+++ b/svg/marbles.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/marrow-drain.svg b/svg/marrow-drain.svg
new file mode 100644
index 000000000..9c5e5da27
--- /dev/null
+++ b/svg/marrow-drain.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mars-curiosity.svg b/svg/mars-curiosity.svg
new file mode 100644
index 000000000..ef8f245ce
--- /dev/null
+++ b/svg/mars-curiosity.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mars-pathfinder.svg b/svg/mars-pathfinder.svg
new file mode 100644
index 000000000..6e8db9186
--- /dev/null
+++ b/svg/mars-pathfinder.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/marshmallows.svg b/svg/marshmallows.svg
new file mode 100644
index 000000000..64489f4f5
--- /dev/null
+++ b/svg/marshmallows.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/martini.svg b/svg/martini.svg
new file mode 100644
index 000000000..2561fa246
--- /dev/null
+++ b/svg/martini.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/martyr-memorial.svg b/svg/martyr-memorial.svg
new file mode 100644
index 000000000..834ac9b45
--- /dev/null
+++ b/svg/martyr-memorial.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/masked-spider.svg b/svg/masked-spider.svg
new file mode 100644
index 000000000..af03fa274
--- /dev/null
+++ b/svg/masked-spider.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mason-jar.svg b/svg/mason-jar.svg
new file mode 100644
index 000000000..91cc2de2b
--- /dev/null
+++ b/svg/mason-jar.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mass-driver.svg b/svg/mass-driver.svg
new file mode 100644
index 000000000..0cbb13569
--- /dev/null
+++ b/svg/mass-driver.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/master-of-arms.svg b/svg/master-of-arms.svg
new file mode 100644
index 000000000..6d5720e36
--- /dev/null
+++ b/svg/master-of-arms.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/match-head.svg b/svg/match-head.svg
new file mode 100644
index 000000000..9e420a7d6
--- /dev/null
+++ b/svg/match-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/match-tip.svg b/svg/match-tip.svg
new file mode 100644
index 000000000..31017b3be
--- /dev/null
+++ b/svg/match-tip.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/matchbox.svg b/svg/matchbox.svg
new file mode 100644
index 000000000..37be10680
--- /dev/null
+++ b/svg/matchbox.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/materials-science.svg b/svg/materials-science.svg
new file mode 100644
index 000000000..10c0d7457
--- /dev/null
+++ b/svg/materials-science.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/matryoshka-dolls.svg b/svg/matryoshka-dolls.svg
new file mode 100644
index 000000000..d35d27941
--- /dev/null
+++ b/svg/matryoshka-dolls.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/matter-states.svg b/svg/matter-states.svg
new file mode 100644
index 000000000..873cc7aab
--- /dev/null
+++ b/svg/matter-states.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mayan-pyramid.svg b/svg/mayan-pyramid.svg
new file mode 100644
index 000000000..231af177d
--- /dev/null
+++ b/svg/mayan-pyramid.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/maze-cornea.svg b/svg/maze-cornea.svg
new file mode 100644
index 000000000..84bcf3db3
--- /dev/null
+++ b/svg/maze-cornea.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/maze-saw.svg b/svg/maze-saw.svg
new file mode 100644
index 000000000..162ad526d
--- /dev/null
+++ b/svg/maze-saw.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/maze.svg b/svg/maze.svg
new file mode 100644
index 000000000..f1780f34e
--- /dev/null
+++ b/svg/maze.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/meal.svg b/svg/meal.svg
new file mode 100644
index 000000000..9c6f875f1
--- /dev/null
+++ b/svg/meal.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/measure-tape.svg b/svg/measure-tape.svg
new file mode 100644
index 000000000..636c1ef0b
--- /dev/null
+++ b/svg/measure-tape.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/meat-cleaver.svg b/svg/meat-cleaver.svg
new file mode 100644
index 000000000..3cec2ff18
--- /dev/null
+++ b/svg/meat-cleaver.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/meat-hook.svg b/svg/meat-hook.svg
new file mode 100644
index 000000000..6ee9dd712
--- /dev/null
+++ b/svg/meat-hook.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/meat.svg b/svg/meat.svg
new file mode 100644
index 000000000..ed4195d17
--- /dev/null
+++ b/svg/meat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mecha-head.svg b/svg/mecha-head.svg
new file mode 100644
index 000000000..68e5ea155
--- /dev/null
+++ b/svg/mecha-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mecha-mask.svg b/svg/mecha-mask.svg
new file mode 100644
index 000000000..0f42b3862
--- /dev/null
+++ b/svg/mecha-mask.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mechanic-garage.svg b/svg/mechanic-garage.svg
new file mode 100644
index 000000000..67738beff
--- /dev/null
+++ b/svg/mechanic-garage.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mechanical-arm.svg b/svg/mechanical-arm.svg
new file mode 100644
index 000000000..05dee9e30
--- /dev/null
+++ b/svg/mechanical-arm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/medal-skull.svg b/svg/medal-skull.svg
new file mode 100644
index 000000000..b40b047d7
--- /dev/null
+++ b/svg/medal-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/medal.svg b/svg/medal.svg
new file mode 100644
index 000000000..60ef8680a
--- /dev/null
+++ b/svg/medal.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/medallist.svg b/svg/medallist.svg
new file mode 100644
index 000000000..e1ee2e520
--- /dev/null
+++ b/svg/medallist.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/medical-drip.svg b/svg/medical-drip.svg
new file mode 100644
index 000000000..e890354a1
--- /dev/null
+++ b/svg/medical-drip.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/medical-pack-alt.svg b/svg/medical-pack-alt.svg
new file mode 100644
index 000000000..6a411adae
--- /dev/null
+++ b/svg/medical-pack-alt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/medical-pack.svg b/svg/medical-pack.svg
new file mode 100644
index 000000000..6550f998e
--- /dev/null
+++ b/svg/medical-pack.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/medical-thermometer.svg b/svg/medical-thermometer.svg
new file mode 100644
index 000000000..0109606e8
--- /dev/null
+++ b/svg/medical-thermometer.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/medicine-pills.svg b/svg/medicine-pills.svg
new file mode 100644
index 000000000..a0889dc69
--- /dev/null
+++ b/svg/medicine-pills.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/medicines.svg b/svg/medicines.svg
new file mode 100644
index 000000000..b92f0b1cc
--- /dev/null
+++ b/svg/medicines.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/medieval-barracks.svg b/svg/medieval-barracks.svg
new file mode 100644
index 000000000..34f0aa84c
--- /dev/null
+++ b/svg/medieval-barracks.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/medieval-gate.svg b/svg/medieval-gate.svg
new file mode 100644
index 000000000..5653c5392
--- /dev/null
+++ b/svg/medieval-gate.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/medieval-pavilion.svg b/svg/medieval-pavilion.svg
new file mode 100644
index 000000000..15a6dc1c2
--- /dev/null
+++ b/svg/medieval-pavilion.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/meditation.svg b/svg/meditation.svg
new file mode 100644
index 000000000..1250ff191
--- /dev/null
+++ b/svg/meditation.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/medusa-head.svg b/svg/medusa-head.svg
new file mode 100644
index 000000000..c44cfd4dc
--- /dev/null
+++ b/svg/medusa-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/meeple-army.svg b/svg/meeple-army.svg
new file mode 100644
index 000000000..3c0e7cc35
--- /dev/null
+++ b/svg/meeple-army.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/meeple-circle.svg b/svg/meeple-circle.svg
new file mode 100644
index 000000000..9dbd2546e
--- /dev/null
+++ b/svg/meeple-circle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/meeple-group.svg b/svg/meeple-group.svg
new file mode 100644
index 000000000..081d5df8b
--- /dev/null
+++ b/svg/meeple-group.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/meeple-king.svg b/svg/meeple-king.svg
new file mode 100644
index 000000000..054eef67a
--- /dev/null
+++ b/svg/meeple-king.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/meeple.svg b/svg/meeple.svg
new file mode 100644
index 000000000..8296cc13c
--- /dev/null
+++ b/svg/meeple.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/megabot.svg b/svg/megabot.svg
new file mode 100644
index 000000000..dae0ab12d
--- /dev/null
+++ b/svg/megabot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/megaphone.svg b/svg/megaphone.svg
new file mode 100644
index 000000000..40f70ed2e
--- /dev/null
+++ b/svg/megaphone.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/melting-ice-cube.svg b/svg/melting-ice-cube.svg
new file mode 100644
index 000000000..d48be6792
--- /dev/null
+++ b/svg/melting-ice-cube.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/melting-metal.svg b/svg/melting-metal.svg
new file mode 100644
index 000000000..c097e2db5
--- /dev/null
+++ b/svg/melting-metal.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/menhir.svg b/svg/menhir.svg
new file mode 100644
index 000000000..bc669d7d9
--- /dev/null
+++ b/svg/menhir.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mermaid.svg b/svg/mermaid.svg
new file mode 100644
index 000000000..b82b62715
--- /dev/null
+++ b/svg/mermaid.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mesh-ball.svg b/svg/mesh-ball.svg
new file mode 100644
index 000000000..a551cd3ae
--- /dev/null
+++ b/svg/mesh-ball.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mesh-network.svg b/svg/mesh-network.svg
new file mode 100644
index 000000000..4eb7451ca
--- /dev/null
+++ b/svg/mesh-network.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/metal-bar.svg b/svg/metal-bar.svg
new file mode 100644
index 000000000..2be5e875d
--- /dev/null
+++ b/svg/metal-bar.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/metal-boot.svg b/svg/metal-boot.svg
new file mode 100644
index 000000000..65ebfcc5e
--- /dev/null
+++ b/svg/metal-boot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/metal-detector.svg b/svg/metal-detector.svg
new file mode 100644
index 000000000..6e97edcf9
--- /dev/null
+++ b/svg/metal-detector.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/metal-disc.svg b/svg/metal-disc.svg
new file mode 100644
index 000000000..9a020d93b
--- /dev/null
+++ b/svg/metal-disc.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/metal-golem-head.svg b/svg/metal-golem-head.svg
new file mode 100644
index 000000000..56ce452c2
--- /dev/null
+++ b/svg/metal-golem-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/metal-hand.svg b/svg/metal-hand.svg
new file mode 100644
index 000000000..31d2f6cad
--- /dev/null
+++ b/svg/metal-hand.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/metal-plate.svg b/svg/metal-plate.svg
new file mode 100644
index 000000000..1f37d416f
--- /dev/null
+++ b/svg/metal-plate.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/metal-scales.svg b/svg/metal-scales.svg
new file mode 100644
index 000000000..d34036f62
--- /dev/null
+++ b/svg/metal-scales.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/metal-skirt.svg b/svg/metal-skirt.svg
new file mode 100644
index 000000000..81b68b21e
--- /dev/null
+++ b/svg/metal-skirt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/meteor-impact.svg b/svg/meteor-impact.svg
new file mode 100644
index 000000000..317666b00
--- /dev/null
+++ b/svg/meteor-impact.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/metroid.svg b/svg/metroid.svg
new file mode 100644
index 000000000..719ff70b3
--- /dev/null
+++ b/svg/metroid.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/metronome.svg b/svg/metronome.svg
new file mode 100644
index 000000000..fc035486e
--- /dev/null
+++ b/svg/metronome.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mexico.svg b/svg/mexico.svg
new file mode 100644
index 000000000..939404eeb
--- /dev/null
+++ b/svg/mexico.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/microchip.svg b/svg/microchip.svg
new file mode 100644
index 000000000..f6746a586
--- /dev/null
+++ b/svg/microchip.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/microphone.svg b/svg/microphone.svg
new file mode 100644
index 000000000..19f8e87df
--- /dev/null
+++ b/svg/microphone.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/microscope-lens.svg b/svg/microscope-lens.svg
new file mode 100644
index 000000000..e30955391
--- /dev/null
+++ b/svg/microscope-lens.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/microscope.svg b/svg/microscope.svg
new file mode 100644
index 000000000..91f866356
--- /dev/null
+++ b/svg/microscope.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/middle-arrow.svg b/svg/middle-arrow.svg
new file mode 100644
index 000000000..972c157eb
--- /dev/null
+++ b/svg/middle-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/midnight-claw.svg b/svg/midnight-claw.svg
new file mode 100644
index 000000000..24c8f9c79
--- /dev/null
+++ b/svg/midnight-claw.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mighty-boosh.svg b/svg/mighty-boosh.svg
new file mode 100644
index 000000000..9169f9b8d
--- /dev/null
+++ b/svg/mighty-boosh.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mighty-force.svg b/svg/mighty-force.svg
new file mode 100644
index 000000000..ca58e2cc6
--- /dev/null
+++ b/svg/mighty-force.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mighty-horn.svg b/svg/mighty-horn.svg
new file mode 100644
index 000000000..2b294727a
--- /dev/null
+++ b/svg/mighty-horn.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mighty-spanner.svg b/svg/mighty-spanner.svg
new file mode 100644
index 000000000..da5f7a29d
--- /dev/null
+++ b/svg/mighty-spanner.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/military-ambulance.svg b/svg/military-ambulance.svg
new file mode 100644
index 000000000..6cc632050
--- /dev/null
+++ b/svg/military-ambulance.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/military-fort.svg b/svg/military-fort.svg
new file mode 100644
index 000000000..6e66df14b
--- /dev/null
+++ b/svg/military-fort.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/milk-carton.svg b/svg/milk-carton.svg
new file mode 100644
index 000000000..f71b18dc3
--- /dev/null
+++ b/svg/milk-carton.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/millenium-key.svg b/svg/millenium-key.svg
new file mode 100644
index 000000000..d15ee1768
--- /dev/null
+++ b/svg/millenium-key.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mimic-chest.svg b/svg/mimic-chest.svg
new file mode 100644
index 000000000..e0b2370d4
--- /dev/null
+++ b/svg/mimic-chest.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mine-explosion.svg b/svg/mine-explosion.svg
new file mode 100644
index 000000000..fb057db77
--- /dev/null
+++ b/svg/mine-explosion.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mine-truck.svg b/svg/mine-truck.svg
new file mode 100644
index 000000000..376ef9ca0
--- /dev/null
+++ b/svg/mine-truck.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mine-wagon.svg b/svg/mine-wagon.svg
new file mode 100644
index 000000000..ab39d1c19
--- /dev/null
+++ b/svg/mine-wagon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/minefield.svg b/svg/minefield.svg
new file mode 100644
index 000000000..91fbf0bcf
--- /dev/null
+++ b/svg/minefield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/miner.svg b/svg/miner.svg
new file mode 100644
index 000000000..93fcfdc08
--- /dev/null
+++ b/svg/miner.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mineral-heart.svg b/svg/mineral-heart.svg
new file mode 100644
index 000000000..88c62a7d8
--- /dev/null
+++ b/svg/mineral-heart.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mineral-pearls.svg b/svg/mineral-pearls.svg
new file mode 100644
index 000000000..0ca1d7140
--- /dev/null
+++ b/svg/mineral-pearls.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/minerals.svg b/svg/minerals.svg
new file mode 100644
index 000000000..0c00ffd69
--- /dev/null
+++ b/svg/minerals.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mini-submarine.svg b/svg/mini-submarine.svg
new file mode 100644
index 000000000..c226328bc
--- /dev/null
+++ b/svg/mini-submarine.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/minigun.svg b/svg/minigun.svg
new file mode 100644
index 000000000..5db6af504
--- /dev/null
+++ b/svg/minigun.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mining-helmet.svg b/svg/mining-helmet.svg
new file mode 100644
index 000000000..3ad1efbd5
--- /dev/null
+++ b/svg/mining-helmet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mining.svg b/svg/mining.svg
new file mode 100644
index 000000000..8863dcfdb
--- /dev/null
+++ b/svg/mining.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/minions.svg b/svg/minions.svg
new file mode 100644
index 000000000..c2a0cd530
--- /dev/null
+++ b/svg/minions.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/minotaur.svg b/svg/minotaur.svg
new file mode 100644
index 000000000..c8796877a
--- /dev/null
+++ b/svg/minotaur.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/miracle-medecine.svg b/svg/miracle-medecine.svg
new file mode 100644
index 000000000..ea1ae222b
--- /dev/null
+++ b/svg/miracle-medecine.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mirror-mirror.svg b/svg/mirror-mirror.svg
new file mode 100644
index 000000000..4f10a620c
--- /dev/null
+++ b/svg/mirror-mirror.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/misdirection.svg b/svg/misdirection.svg
new file mode 100644
index 000000000..f38f27d08
--- /dev/null
+++ b/svg/misdirection.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/missile-launcher.svg b/svg/missile-launcher.svg
new file mode 100644
index 000000000..35a7e4bad
--- /dev/null
+++ b/svg/missile-launcher.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/missile-mech.svg b/svg/missile-mech.svg
new file mode 100644
index 000000000..b0c2a97c1
--- /dev/null
+++ b/svg/missile-mech.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/missile-pod.svg b/svg/missile-pod.svg
new file mode 100644
index 000000000..65116c880
--- /dev/null
+++ b/svg/missile-pod.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/missile-swarm.svg b/svg/missile-swarm.svg
new file mode 100644
index 000000000..79e00d4cd
--- /dev/null
+++ b/svg/missile-swarm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mite-alt.svg b/svg/mite-alt.svg
new file mode 100644
index 000000000..5d7b9f33d
--- /dev/null
+++ b/svg/mite-alt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mite.svg b/svg/mite.svg
new file mode 100644
index 000000000..e949fd4c2
--- /dev/null
+++ b/svg/mite.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/moai.svg b/svg/moai.svg
new file mode 100644
index 000000000..0f69ad014
--- /dev/null
+++ b/svg/moai.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/modern-city.svg b/svg/modern-city.svg
new file mode 100644
index 000000000..f6c5d1abb
--- /dev/null
+++ b/svg/modern-city.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/moebius-star.svg b/svg/moebius-star.svg
new file mode 100644
index 000000000..f069ca24f
--- /dev/null
+++ b/svg/moebius-star.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/moebius-trefoil.svg b/svg/moebius-trefoil.svg
new file mode 100644
index 000000000..7f1a06c45
--- /dev/null
+++ b/svg/moebius-trefoil.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/moebius-triangle.svg b/svg/moebius-triangle.svg
new file mode 100644
index 000000000..17630101d
--- /dev/null
+++ b/svg/moebius-triangle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/moka-pot.svg b/svg/moka-pot.svg
new file mode 100644
index 000000000..490e89fe5
--- /dev/null
+++ b/svg/moka-pot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/moldova.svg b/svg/moldova.svg
new file mode 100644
index 000000000..b5cbd0a8e
--- /dev/null
+++ b/svg/moldova.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mole.svg b/svg/mole.svg
new file mode 100644
index 000000000..b9a6fe520
--- /dev/null
+++ b/svg/mole.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/molecule-2.svg b/svg/molecule-2.svg
new file mode 100644
index 000000000..d3a27b2d1
--- /dev/null
+++ b/svg/molecule-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/molecule.svg b/svg/molecule.svg
new file mode 100644
index 000000000..5e623e034
--- /dev/null
+++ b/svg/molecule.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/molotov.svg b/svg/molotov.svg
new file mode 100644
index 000000000..00374a884
--- /dev/null
+++ b/svg/molotov.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mona-lisa.svg b/svg/mona-lisa.svg
new file mode 100644
index 000000000..d8d605f97
--- /dev/null
+++ b/svg/mona-lisa.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/moncler-jacket.svg b/svg/moncler-jacket.svg
new file mode 100644
index 000000000..c42ca803c
--- /dev/null
+++ b/svg/moncler-jacket.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/money-stack.svg b/svg/money-stack.svg
new file mode 100644
index 000000000..49612a3d0
--- /dev/null
+++ b/svg/money-stack.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mongolia.svg b/svg/mongolia.svg
new file mode 100644
index 000000000..69afdc7d3
--- /dev/null
+++ b/svg/mongolia.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/monk-face.svg b/svg/monk-face.svg
new file mode 100644
index 000000000..9f2b43156
--- /dev/null
+++ b/svg/monk-face.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/monkey-wrench.svg b/svg/monkey-wrench.svg
new file mode 100644
index 000000000..420a63fa2
--- /dev/null
+++ b/svg/monkey-wrench.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/monkey.svg b/svg/monkey.svg
new file mode 100644
index 000000000..060223096
--- /dev/null
+++ b/svg/monkey.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mono-wheel-robot.svg b/svg/mono-wheel-robot.svg
new file mode 100644
index 000000000..aa204ecff
--- /dev/null
+++ b/svg/mono-wheel-robot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/monster-grasp.svg b/svg/monster-grasp.svg
new file mode 100644
index 000000000..88d4737a4
--- /dev/null
+++ b/svg/monster-grasp.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/monstera-leaf.svg b/svg/monstera-leaf.svg
new file mode 100644
index 000000000..e8eeba9cf
--- /dev/null
+++ b/svg/monstera-leaf.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/monument-valley.svg b/svg/monument-valley.svg
new file mode 100644
index 000000000..1faec4b6d
--- /dev/null
+++ b/svg/monument-valley.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/moon-bats.svg b/svg/moon-bats.svg
new file mode 100644
index 000000000..eb9b1eb6b
--- /dev/null
+++ b/svg/moon-bats.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/moon-claws.svg b/svg/moon-claws.svg
new file mode 100644
index 000000000..9864b5454
--- /dev/null
+++ b/svg/moon-claws.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/moon-orbit.svg b/svg/moon-orbit.svg
new file mode 100644
index 000000000..677ae9652
--- /dev/null
+++ b/svg/moon-orbit.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/moon.svg b/svg/moon.svg
new file mode 100644
index 000000000..59b5d2a4e
--- /dev/null
+++ b/svg/moon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mooring-bollard.svg b/svg/mooring-bollard.svg
new file mode 100644
index 000000000..403791a55
--- /dev/null
+++ b/svg/mooring-bollard.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/morbid-humour.svg b/svg/morbid-humour.svg
new file mode 100644
index 000000000..23401efca
--- /dev/null
+++ b/svg/morbid-humour.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/morgue-feet.svg b/svg/morgue-feet.svg
new file mode 100644
index 000000000..e110a85cf
--- /dev/null
+++ b/svg/morgue-feet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/morph-ball.svg b/svg/morph-ball.svg
new file mode 100644
index 000000000..5f59297d7
--- /dev/null
+++ b/svg/morph-ball.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mortar.svg b/svg/mortar.svg
new file mode 100644
index 000000000..2c9898e80
--- /dev/null
+++ b/svg/mortar.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mountain-cave.svg b/svg/mountain-cave.svg
new file mode 100644
index 000000000..7285b79d7
--- /dev/null
+++ b/svg/mountain-cave.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mountain-climbing.svg b/svg/mountain-climbing.svg
new file mode 100644
index 000000000..e6fdaf842
--- /dev/null
+++ b/svg/mountain-climbing.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mountain-road.svg b/svg/mountain-road.svg
new file mode 100644
index 000000000..d2274a37c
--- /dev/null
+++ b/svg/mountain-road.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mountains.svg b/svg/mountains.svg
new file mode 100644
index 000000000..6214e87f5
--- /dev/null
+++ b/svg/mountains.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mountaintop.svg b/svg/mountaintop.svg
new file mode 100644
index 000000000..052f93379
--- /dev/null
+++ b/svg/mountaintop.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mounted-knight.svg b/svg/mounted-knight.svg
new file mode 100644
index 000000000..cb6ba6116
--- /dev/null
+++ b/svg/mounted-knight.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mouse-2.svg b/svg/mouse-2.svg
new file mode 100644
index 000000000..788a29e73
--- /dev/null
+++ b/svg/mouse-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mouse.svg b/svg/mouse.svg
new file mode 100644
index 000000000..33f74fbb2
--- /dev/null
+++ b/svg/mouse.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mouth-watering.svg b/svg/mouth-watering.svg
new file mode 100644
index 000000000..d7649c33a
--- /dev/null
+++ b/svg/mouth-watering.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/move.svg b/svg/move.svg
new file mode 100644
index 000000000..2249096a5
--- /dev/null
+++ b/svg/move.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/movement-sensor.svg b/svg/movement-sensor.svg
new file mode 100644
index 000000000..5b4dc6726
--- /dev/null
+++ b/svg/movement-sensor.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mp-40.svg b/svg/mp-40.svg
new file mode 100644
index 000000000..6a00fe2c1
--- /dev/null
+++ b/svg/mp-40.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mp5-2.svg b/svg/mp5-2.svg
new file mode 100644
index 000000000..f29308b04
--- /dev/null
+++ b/svg/mp5-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mp5.svg b/svg/mp5.svg
new file mode 100644
index 000000000..319bb200e
--- /dev/null
+++ b/svg/mp5.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mp5k.svg b/svg/mp5k.svg
new file mode 100644
index 000000000..8070bb45c
--- /dev/null
+++ b/svg/mp5k.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mucous-pillar.svg b/svg/mucous-pillar.svg
new file mode 100644
index 000000000..aa92b50ca
--- /dev/null
+++ b/svg/mucous-pillar.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mug-shot.svg b/svg/mug-shot.svg
new file mode 100644
index 000000000..eedd190ce
--- /dev/null
+++ b/svg/mug-shot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/multi-directions.svg b/svg/multi-directions.svg
new file mode 100644
index 000000000..7dad10d85
--- /dev/null
+++ b/svg/multi-directions.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/multiple-targets.svg b/svg/multiple-targets.svg
new file mode 100644
index 000000000..13f127f03
--- /dev/null
+++ b/svg/multiple-targets.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mummy-head.svg b/svg/mummy-head.svg
new file mode 100644
index 000000000..357b2101f
--- /dev/null
+++ b/svg/mummy-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/muscle-fat.svg b/svg/muscle-fat.svg
new file mode 100644
index 000000000..fa637d22e
--- /dev/null
+++ b/svg/muscle-fat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/muscle-up.svg b/svg/muscle-up.svg
new file mode 100644
index 000000000..3189cd176
--- /dev/null
+++ b/svg/muscle-up.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/muscular-torso.svg b/svg/muscular-torso.svg
new file mode 100644
index 000000000..3c3efe645
--- /dev/null
+++ b/svg/muscular-torso.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mushroom-cloud.svg b/svg/mushroom-cloud.svg
new file mode 100644
index 000000000..5c1de5b8a
--- /dev/null
+++ b/svg/mushroom-cloud.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mushroom-gills.svg b/svg/mushroom-gills.svg
new file mode 100644
index 000000000..56b3132a7
--- /dev/null
+++ b/svg/mushroom-gills.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mushroom-house.svg b/svg/mushroom-house.svg
new file mode 100644
index 000000000..023982ebd
--- /dev/null
+++ b/svg/mushroom-house.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mushroom.svg b/svg/mushroom.svg
new file mode 100644
index 000000000..ae0b448f2
--- /dev/null
+++ b/svg/mushroom.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mushrooms-cluster.svg b/svg/mushrooms-cluster.svg
new file mode 100644
index 000000000..639f0aa1b
--- /dev/null
+++ b/svg/mushrooms-cluster.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mushrooms.svg b/svg/mushrooms.svg
new file mode 100644
index 000000000..97ea15e58
--- /dev/null
+++ b/svg/mushrooms.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/music-spell.svg b/svg/music-spell.svg
new file mode 100644
index 000000000..0a15ff3b6
--- /dev/null
+++ b/svg/music-spell.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/musical-keyboard.svg b/svg/musical-keyboard.svg
new file mode 100644
index 000000000..39fdeeaf8
--- /dev/null
+++ b/svg/musical-keyboard.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/musical-notes.svg b/svg/musical-notes.svg
new file mode 100644
index 000000000..b7a892ccb
--- /dev/null
+++ b/svg/musical-notes.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/musical-score.svg b/svg/musical-score.svg
new file mode 100644
index 000000000..e06f953ef
--- /dev/null
+++ b/svg/musical-score.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/musket.svg b/svg/musket.svg
new file mode 100644
index 000000000..444a42018
--- /dev/null
+++ b/svg/musket.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mussel.svg b/svg/mussel.svg
new file mode 100644
index 000000000..9dc2f9c2d
--- /dev/null
+++ b/svg/mussel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mustache.svg b/svg/mustache.svg
new file mode 100644
index 000000000..7dd6291c2
--- /dev/null
+++ b/svg/mustache.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/mute.svg b/svg/mute.svg
new file mode 100644
index 000000000..949611b51
--- /dev/null
+++ b/svg/mute.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/nachos.svg b/svg/nachos.svg
new file mode 100644
index 000000000..9b0437cf7
--- /dev/null
+++ b/svg/nachos.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/nailed-foot.svg b/svg/nailed-foot.svg
new file mode 100644
index 000000000..64bba3eef
--- /dev/null
+++ b/svg/nailed-foot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/nailed-head.svg b/svg/nailed-head.svg
new file mode 100644
index 000000000..397cc8164
--- /dev/null
+++ b/svg/nailed-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/nails.svg b/svg/nails.svg
new file mode 100644
index 000000000..81cb4da28
--- /dev/null
+++ b/svg/nails.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/nano-bot.svg b/svg/nano-bot.svg
new file mode 100644
index 000000000..73cee9d75
--- /dev/null
+++ b/svg/nano-bot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/nautilus-shell.svg b/svg/nautilus-shell.svg
new file mode 100644
index 000000000..d20b969d2
--- /dev/null
+++ b/svg/nautilus-shell.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/neck-bite.svg b/svg/neck-bite.svg
new file mode 100644
index 000000000..97ba5ccf5
--- /dev/null
+++ b/svg/neck-bite.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/necklace-display.svg b/svg/necklace-display.svg
new file mode 100644
index 000000000..cdf2f8eda
--- /dev/null
+++ b/svg/necklace-display.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/necklace.svg b/svg/necklace.svg
new file mode 100644
index 000000000..483fb994c
--- /dev/null
+++ b/svg/necklace.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/nectar.svg b/svg/nectar.svg
new file mode 100644
index 000000000..9769a526b
--- /dev/null
+++ b/svg/nectar.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/needle-drill.svg b/svg/needle-drill.svg
new file mode 100644
index 000000000..d57add341
--- /dev/null
+++ b/svg/needle-drill.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/needle-jaws.svg b/svg/needle-jaws.svg
new file mode 100644
index 000000000..28eb40629
--- /dev/null
+++ b/svg/needle-jaws.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/nefertiti.svg b/svg/nefertiti.svg
new file mode 100644
index 000000000..58bab4a0c
--- /dev/null
+++ b/svg/nefertiti.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/nest-birds.svg b/svg/nest-birds.svg
new file mode 100644
index 000000000..691754742
--- /dev/null
+++ b/svg/nest-birds.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/nest-eggs.svg b/svg/nest-eggs.svg
new file mode 100644
index 000000000..af5c3e5cc
--- /dev/null
+++ b/svg/nest-eggs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/nested-eclipses.svg b/svg/nested-eclipses.svg
new file mode 100644
index 000000000..722a68f05
--- /dev/null
+++ b/svg/nested-eclipses.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/nested-hearts.svg b/svg/nested-hearts.svg
new file mode 100644
index 000000000..b715c7d31
--- /dev/null
+++ b/svg/nested-hearts.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/nested-hexagons.svg b/svg/nested-hexagons.svg
new file mode 100644
index 000000000..206ce018e
--- /dev/null
+++ b/svg/nested-hexagons.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/network-bars.svg b/svg/network-bars.svg
new file mode 100644
index 000000000..bb45887c7
--- /dev/null
+++ b/svg/network-bars.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/new-born.svg b/svg/new-born.svg
new file mode 100644
index 000000000..0c356b42d
--- /dev/null
+++ b/svg/new-born.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/new-shoot.svg b/svg/new-shoot.svg
new file mode 100644
index 000000000..d04b42d5e
--- /dev/null
+++ b/svg/new-shoot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/newspaper.svg b/svg/newspaper.svg
new file mode 100644
index 000000000..1bcb9535d
--- /dev/null
+++ b/svg/newspaper.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/next-button.svg b/svg/next-button.svg
new file mode 100644
index 000000000..c0ce8c794
--- /dev/null
+++ b/svg/next-button.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/nigeria.svg b/svg/nigeria.svg
new file mode 100644
index 000000000..aecaa430b
--- /dev/null
+++ b/svg/nigeria.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/night-sky.svg b/svg/night-sky.svg
new file mode 100644
index 000000000..7e8cabed6
--- /dev/null
+++ b/svg/night-sky.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/night-sleep.svg b/svg/night-sleep.svg
new file mode 100644
index 000000000..29348a64b
--- /dev/null
+++ b/svg/night-sleep.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/night-vision.svg b/svg/night-vision.svg
new file mode 100644
index 000000000..9081ef560
--- /dev/null
+++ b/svg/night-vision.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ninja-armor.svg b/svg/ninja-armor.svg
new file mode 100644
index 000000000..304d3557d
--- /dev/null
+++ b/svg/ninja-armor.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ninja-head.svg b/svg/ninja-head.svg
new file mode 100644
index 000000000..a3e087b10
--- /dev/null
+++ b/svg/ninja-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ninja-heroic-stance.svg b/svg/ninja-heroic-stance.svg
new file mode 100644
index 000000000..e1a408320
--- /dev/null
+++ b/svg/ninja-heroic-stance.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ninja-mask.svg b/svg/ninja-mask.svg
new file mode 100644
index 000000000..80d25a159
--- /dev/null
+++ b/svg/ninja-mask.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ninja-star.svg b/svg/ninja-star.svg
new file mode 100644
index 000000000..6969402b1
--- /dev/null
+++ b/svg/ninja-star.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ninja-velociraptor.svg b/svg/ninja-velociraptor.svg
new file mode 100644
index 000000000..530be5d81
--- /dev/null
+++ b/svg/ninja-velociraptor.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/nodular.svg b/svg/nodular.svg
new file mode 100644
index 000000000..33e97b26c
--- /dev/null
+++ b/svg/nodular.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/noodle-ball.svg b/svg/noodle-ball.svg
new file mode 100644
index 000000000..f821393a8
--- /dev/null
+++ b/svg/noodle-ball.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/noodles.svg b/svg/noodles.svg
new file mode 100644
index 000000000..dbbbcccdd
--- /dev/null
+++ b/svg/noodles.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/north-star-shuriken.svg b/svg/north-star-shuriken.svg
new file mode 100644
index 000000000..7c438f87c
--- /dev/null
+++ b/svg/north-star-shuriken.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/nose-front.svg b/svg/nose-front.svg
new file mode 100644
index 000000000..c850847c4
--- /dev/null
+++ b/svg/nose-front.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/nose-side.svg b/svg/nose-side.svg
new file mode 100644
index 000000000..412a785da
--- /dev/null
+++ b/svg/nose-side.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/notebook.svg b/svg/notebook.svg
new file mode 100644
index 000000000..57248b9d5
--- /dev/null
+++ b/svg/notebook.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/nothing-to-say.svg b/svg/nothing-to-say.svg
new file mode 100644
index 000000000..cec58ecff
--- /dev/null
+++ b/svg/nothing-to-say.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/nuclear-bomb.svg b/svg/nuclear-bomb.svg
new file mode 100644
index 000000000..31638d359
--- /dev/null
+++ b/svg/nuclear-bomb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/nuclear-plant.svg b/svg/nuclear-plant.svg
new file mode 100644
index 000000000..c59fe2133
--- /dev/null
+++ b/svg/nuclear-plant.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/nuclear-waste.svg b/svg/nuclear-waste.svg
new file mode 100644
index 000000000..124b9fb42
--- /dev/null
+++ b/svg/nuclear-waste.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/nuclear.svg b/svg/nuclear.svg
new file mode 100644
index 000000000..6675793cf
--- /dev/null
+++ b/svg/nuclear.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/nun-face.svg b/svg/nun-face.svg
new file mode 100644
index 000000000..aeb7dd2ff
--- /dev/null
+++ b/svg/nun-face.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/nunchaku.svg b/svg/nunchaku.svg
new file mode 100644
index 000000000..782772979
--- /dev/null
+++ b/svg/nunchaku.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/nurse-female.svg b/svg/nurse-female.svg
new file mode 100644
index 000000000..814a90229
--- /dev/null
+++ b/svg/nurse-female.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/nurse-male.svg b/svg/nurse-male.svg
new file mode 100644
index 000000000..86e7fc74e
--- /dev/null
+++ b/svg/nurse-male.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/o-brick.svg b/svg/o-brick.svg
new file mode 100644
index 000000000..3f79f111c
--- /dev/null
+++ b/svg/o-brick.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/oak-leaf.svg b/svg/oak-leaf.svg
new file mode 100644
index 000000000..ef6ed572c
--- /dev/null
+++ b/svg/oak-leaf.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/oak.svg b/svg/oak.svg
new file mode 100644
index 000000000..d8a7ded8c
--- /dev/null
+++ b/svg/oak.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/oasis.svg b/svg/oasis.svg
new file mode 100644
index 000000000..d3d34b399
--- /dev/null
+++ b/svg/oasis.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/oat.svg b/svg/oat.svg
new file mode 100644
index 000000000..071e2c08b
--- /dev/null
+++ b/svg/oat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/obelisk.svg b/svg/obelisk.svg
new file mode 100644
index 000000000..6fc163804
--- /dev/null
+++ b/svg/obelisk.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/observatory.svg b/svg/observatory.svg
new file mode 100644
index 000000000..ac7969987
--- /dev/null
+++ b/svg/observatory.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ocarina.svg b/svg/ocarina.svg
new file mode 100644
index 000000000..58b3751f3
--- /dev/null
+++ b/svg/ocarina.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/occupy.svg b/svg/occupy.svg
new file mode 100644
index 000000000..a7c1cc5ef
--- /dev/null
+++ b/svg/occupy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/octogonal-eye.svg b/svg/octogonal-eye.svg
new file mode 100644
index 000000000..b21c1fdf9
--- /dev/null
+++ b/svg/octogonal-eye.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/octoman.svg b/svg/octoman.svg
new file mode 100644
index 000000000..bd46eee70
--- /dev/null
+++ b/svg/octoman.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/octopus.svg b/svg/octopus.svg
new file mode 100644
index 000000000..fd2301997
--- /dev/null
+++ b/svg/octopus.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/oden.svg b/svg/oden.svg
new file mode 100644
index 000000000..40bcd7c1c
--- /dev/null
+++ b/svg/oden.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/office-chair.svg b/svg/office-chair.svg
new file mode 100644
index 000000000..08d43a5e2
--- /dev/null
+++ b/svg/office-chair.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/offshore-platform.svg b/svg/offshore-platform.svg
new file mode 100644
index 000000000..fab5ff7b1
--- /dev/null
+++ b/svg/offshore-platform.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ogre.svg b/svg/ogre.svg
new file mode 100644
index 000000000..7c9939a38
--- /dev/null
+++ b/svg/ogre.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/oil-can.svg b/svg/oil-can.svg
new file mode 100644
index 000000000..90a1f98f8
--- /dev/null
+++ b/svg/oil-can.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/oil-drum.svg b/svg/oil-drum.svg
new file mode 100644
index 000000000..ff5b84f4b
--- /dev/null
+++ b/svg/oil-drum.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/oil-pump.svg b/svg/oil-pump.svg
new file mode 100644
index 000000000..6644d0b28
--- /dev/null
+++ b/svg/oil-pump.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/oil-rig.svg b/svg/oil-rig.svg
new file mode 100644
index 000000000..03389e4f1
--- /dev/null
+++ b/svg/oil-rig.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/oily-spiral.svg b/svg/oily-spiral.svg
new file mode 100644
index 000000000..6206b5e5f
--- /dev/null
+++ b/svg/oily-spiral.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/old-king.svg b/svg/old-king.svg
new file mode 100644
index 000000000..f0abd4546
--- /dev/null
+++ b/svg/old-king.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/old-lantern.svg b/svg/old-lantern.svg
new file mode 100644
index 000000000..66dcb009b
--- /dev/null
+++ b/svg/old-lantern.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/old-microphone.svg b/svg/old-microphone.svg
new file mode 100644
index 000000000..a9d280183
--- /dev/null
+++ b/svg/old-microphone.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/old-wagon.svg b/svg/old-wagon.svg
new file mode 100644
index 000000000..da1a06300
--- /dev/null
+++ b/svg/old-wagon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/olive.svg b/svg/olive.svg
new file mode 100644
index 000000000..57f63f0a7
--- /dev/null
+++ b/svg/olive.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/omega.svg b/svg/omega.svg
new file mode 100644
index 000000000..c2f57ab79
--- /dev/null
+++ b/svg/omega.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/on-sight.svg b/svg/on-sight.svg
new file mode 100644
index 000000000..260017c12
--- /dev/null
+++ b/svg/on-sight.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/on-target.svg b/svg/on-target.svg
new file mode 100644
index 000000000..00cc504a5
--- /dev/null
+++ b/svg/on-target.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/one-eyed.svg b/svg/one-eyed.svg
new file mode 100644
index 000000000..dde0b2fec
--- /dev/null
+++ b/svg/one-eyed.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/oni.svg b/svg/oni.svg
new file mode 100644
index 000000000..23ceb7327
--- /dev/null
+++ b/svg/oni.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/onigori.svg b/svg/onigori.svg
new file mode 100644
index 000000000..bc7f612df
--- /dev/null
+++ b/svg/onigori.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/open-book.svg b/svg/open-book.svg
new file mode 100644
index 000000000..09231f237
--- /dev/null
+++ b/svg/open-book.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/open-chest.svg b/svg/open-chest.svg
new file mode 100644
index 000000000..edd67f8d5
--- /dev/null
+++ b/svg/open-chest.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/open-folder.svg b/svg/open-folder.svg
new file mode 100644
index 000000000..a9f42f31f
--- /dev/null
+++ b/svg/open-folder.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/open-gate.svg b/svg/open-gate.svg
new file mode 100644
index 000000000..5d32970bd
--- /dev/null
+++ b/svg/open-gate.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/open-palm.svg b/svg/open-palm.svg
new file mode 100644
index 000000000..5d83f51a2
--- /dev/null
+++ b/svg/open-palm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/open-treasure-chest.svg b/svg/open-treasure-chest.svg
new file mode 100644
index 000000000..77cfea8ec
--- /dev/null
+++ b/svg/open-treasure-chest.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/open-wound.svg b/svg/open-wound.svg
new file mode 100644
index 000000000..777d63fa5
--- /dev/null
+++ b/svg/open-wound.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/opened-food-can.svg b/svg/opened-food-can.svg
new file mode 100644
index 000000000..0a63e044e
--- /dev/null
+++ b/svg/opened-food-can.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/opening-shell.svg b/svg/opening-shell.svg
new file mode 100644
index 000000000..5686b1cf2
--- /dev/null
+++ b/svg/opening-shell.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ophanim.svg b/svg/ophanim.svg
new file mode 100644
index 000000000..031b55e8a
--- /dev/null
+++ b/svg/ophanim.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ophiuchus.svg b/svg/ophiuchus.svg
new file mode 100644
index 000000000..9c2ae306a
--- /dev/null
+++ b/svg/ophiuchus.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/oppidum.svg b/svg/oppidum.svg
new file mode 100644
index 000000000..90d37bbd4
--- /dev/null
+++ b/svg/oppidum.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/opposite-hearts.svg b/svg/opposite-hearts.svg
new file mode 100644
index 000000000..bb420e838
--- /dev/null
+++ b/svg/opposite-hearts.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/oppression.svg b/svg/oppression.svg
new file mode 100644
index 000000000..3e1750d98
--- /dev/null
+++ b/svg/oppression.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/orange-slice.svg b/svg/orange-slice.svg
new file mode 100644
index 000000000..42f366f27
--- /dev/null
+++ b/svg/orange-slice.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/orange.svg b/svg/orange.svg
new file mode 100644
index 000000000..fb1a2124f
--- /dev/null
+++ b/svg/orange.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/orb-direction.svg b/svg/orb-direction.svg
new file mode 100644
index 000000000..54b2d24d9
--- /dev/null
+++ b/svg/orb-direction.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/orb-wand.svg b/svg/orb-wand.svg
new file mode 100644
index 000000000..f44d7cde2
--- /dev/null
+++ b/svg/orb-wand.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/orbit.svg b/svg/orbit.svg
new file mode 100644
index 000000000..abbc1b9ae
--- /dev/null
+++ b/svg/orbit.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/orbital-rays.svg b/svg/orbital-rays.svg
new file mode 100644
index 000000000..b500d0dec
--- /dev/null
+++ b/svg/orbital-rays.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/orbital.svg b/svg/orbital.svg
new file mode 100644
index 000000000..12d648558
--- /dev/null
+++ b/svg/orbital.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/orc-head.svg b/svg/orc-head.svg
new file mode 100644
index 000000000..36e7062cb
--- /dev/null
+++ b/svg/orc-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ore.svg b/svg/ore.svg
new file mode 100644
index 000000000..eaf8c29d5
--- /dev/null
+++ b/svg/ore.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/organigram.svg b/svg/organigram.svg
new file mode 100644
index 000000000..21ecbc5a1
--- /dev/null
+++ b/svg/organigram.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/orrery.svg b/svg/orrery.svg
new file mode 100644
index 000000000..80c68012c
--- /dev/null
+++ b/svg/orrery.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ostrich.svg b/svg/ostrich.svg
new file mode 100644
index 000000000..17084d42e
--- /dev/null
+++ b/svg/ostrich.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/otamatone.svg b/svg/otamatone.svg
new file mode 100644
index 000000000..9c2d37fe2
--- /dev/null
+++ b/svg/otamatone.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ouroboros.svg b/svg/ouroboros.svg
new file mode 100644
index 000000000..65176b73b
--- /dev/null
+++ b/svg/ouroboros.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/outback-hat.svg b/svg/outback-hat.svg
new file mode 100644
index 000000000..ce2173ccd
--- /dev/null
+++ b/svg/outback-hat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/over-infinity.svg b/svg/over-infinity.svg
new file mode 100644
index 000000000..9c279a83e
--- /dev/null
+++ b/svg/over-infinity.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/overdose.svg b/svg/overdose.svg
new file mode 100644
index 000000000..2fd8256fa
--- /dev/null
+++ b/svg/overdose.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/overdrive.svg b/svg/overdrive.svg
new file mode 100644
index 000000000..b83fb0e8e
--- /dev/null
+++ b/svg/overdrive.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/overhead.svg b/svg/overhead.svg
new file mode 100644
index 000000000..345c5d8fc
--- /dev/null
+++ b/svg/overhead.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/overkill.svg b/svg/overkill.svg
new file mode 100644
index 000000000..138b22bba
--- /dev/null
+++ b/svg/overkill.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/overlord-helm.svg b/svg/overlord-helm.svg
new file mode 100644
index 000000000..cd112ab70
--- /dev/null
+++ b/svg/overlord-helm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/overmind.svg b/svg/overmind.svg
new file mode 100644
index 000000000..fb3d5432f
--- /dev/null
+++ b/svg/overmind.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/owl.svg b/svg/owl.svg
new file mode 100644
index 000000000..6c97f5ba5
--- /dev/null
+++ b/svg/owl.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/oyster-pearl.svg b/svg/oyster-pearl.svg
new file mode 100644
index 000000000..ca1ff7f6e
--- /dev/null
+++ b/svg/oyster-pearl.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/oyster.svg b/svg/oyster.svg
new file mode 100644
index 000000000..dd9792e53
--- /dev/null
+++ b/svg/oyster.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/p90.svg b/svg/p90.svg
new file mode 100644
index 000000000..779a71b35
--- /dev/null
+++ b/svg/p90.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/packed-planks.svg b/svg/packed-planks.svg
new file mode 100644
index 000000000..307145f89
--- /dev/null
+++ b/svg/packed-planks.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/paddle-steamer.svg b/svg/paddle-steamer.svg
new file mode 100644
index 000000000..f5357670e
--- /dev/null
+++ b/svg/paddle-steamer.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/paddles.svg b/svg/paddles.svg
new file mode 100644
index 000000000..a7a8db6d8
--- /dev/null
+++ b/svg/paddles.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/padlock-open.svg b/svg/padlock-open.svg
new file mode 100644
index 000000000..2ed07c158
--- /dev/null
+++ b/svg/padlock-open.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/padlock.svg b/svg/padlock.svg
new file mode 100644
index 000000000..d8cc6953d
--- /dev/null
+++ b/svg/padlock.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pagoda.svg b/svg/pagoda.svg
new file mode 100644
index 000000000..9246e7d70
--- /dev/null
+++ b/svg/pagoda.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/paint-brush.svg b/svg/paint-brush.svg
new file mode 100644
index 000000000..53f073ca3
--- /dev/null
+++ b/svg/paint-brush.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/paint-bucket.svg b/svg/paint-bucket.svg
new file mode 100644
index 000000000..56b675f2d
--- /dev/null
+++ b/svg/paint-bucket.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/paint-roller.svg b/svg/paint-roller.svg
new file mode 100644
index 000000000..9a886a5de
--- /dev/null
+++ b/svg/paint-roller.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/painted-pottery.svg b/svg/painted-pottery.svg
new file mode 100644
index 000000000..d7a4d21e0
--- /dev/null
+++ b/svg/painted-pottery.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/palette.svg b/svg/palette.svg
new file mode 100644
index 000000000..628f05991
--- /dev/null
+++ b/svg/palette.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/palisade.svg b/svg/palisade.svg
new file mode 100644
index 000000000..d014f6793
--- /dev/null
+++ b/svg/palisade.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/palm-tree.svg b/svg/palm-tree.svg
new file mode 100644
index 000000000..5a9d89c2b
--- /dev/null
+++ b/svg/palm-tree.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/palm.svg b/svg/palm.svg
new file mode 100644
index 000000000..b28aa23fe
--- /dev/null
+++ b/svg/palm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pan-flute.svg b/svg/pan-flute.svg
new file mode 100644
index 000000000..7b253ac5d
--- /dev/null
+++ b/svg/pan-flute.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/panda.svg b/svg/panda.svg
new file mode 100644
index 000000000..bfcd1ad13
--- /dev/null
+++ b/svg/panda.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pangolin.svg b/svg/pangolin.svg
new file mode 100644
index 000000000..a8c6db73a
--- /dev/null
+++ b/svg/pangolin.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/panzerfaust.svg b/svg/panzerfaust.svg
new file mode 100644
index 000000000..4e998dadc
--- /dev/null
+++ b/svg/panzerfaust.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/paper-arrow.svg b/svg/paper-arrow.svg
new file mode 100644
index 000000000..60442a5ea
--- /dev/null
+++ b/svg/paper-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/paper-bag-crumpled.svg b/svg/paper-bag-crumpled.svg
new file mode 100644
index 000000000..f273baaab
--- /dev/null
+++ b/svg/paper-bag-crumpled.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/paper-bag-folded.svg b/svg/paper-bag-folded.svg
new file mode 100644
index 000000000..d5030bbe1
--- /dev/null
+++ b/svg/paper-bag-folded.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/paper-bag-open.svg b/svg/paper-bag-open.svg
new file mode 100644
index 000000000..fdcd2dfc4
--- /dev/null
+++ b/svg/paper-bag-open.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/paper-boat.svg b/svg/paper-boat.svg
new file mode 100644
index 000000000..903c8430f
--- /dev/null
+++ b/svg/paper-boat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/paper-bomb.svg b/svg/paper-bomb.svg
new file mode 100644
index 000000000..ab0cae3f5
--- /dev/null
+++ b/svg/paper-bomb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/paper-clip.svg b/svg/paper-clip.svg
new file mode 100644
index 000000000..87f6eb5db
--- /dev/null
+++ b/svg/paper-clip.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/paper-crane.svg b/svg/paper-crane.svg
new file mode 100644
index 000000000..3bd1e32e3
--- /dev/null
+++ b/svg/paper-crane.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/paper-frog.svg b/svg/paper-frog.svg
new file mode 100644
index 000000000..d84b1ba63
--- /dev/null
+++ b/svg/paper-frog.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/paper-lantern.svg b/svg/paper-lantern.svg
new file mode 100644
index 000000000..175d28933
--- /dev/null
+++ b/svg/paper-lantern.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/paper-plane.svg b/svg/paper-plane.svg
new file mode 100644
index 000000000..1d6c82cda
--- /dev/null
+++ b/svg/paper-plane.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/paper-tray.svg b/svg/paper-tray.svg
new file mode 100644
index 000000000..df0f4a546
--- /dev/null
+++ b/svg/paper-tray.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/paper-windmill.svg b/svg/paper-windmill.svg
new file mode 100644
index 000000000..2e5e5f082
--- /dev/null
+++ b/svg/paper-windmill.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/paper.svg b/svg/paper.svg
new file mode 100644
index 000000000..75dcee2f5
--- /dev/null
+++ b/svg/paper.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/papers.svg b/svg/papers.svg
new file mode 100644
index 000000000..417c7d60c
--- /dev/null
+++ b/svg/papers.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/papyrus.svg b/svg/papyrus.svg
new file mode 100644
index 000000000..b2bad1c26
--- /dev/null
+++ b/svg/papyrus.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/parachute.svg b/svg/parachute.svg
new file mode 100644
index 000000000..98c89405c
--- /dev/null
+++ b/svg/parachute.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/paraguay.svg b/svg/paraguay.svg
new file mode 100644
index 000000000..28d2fd088
--- /dev/null
+++ b/svg/paraguay.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/paranoia.svg b/svg/paranoia.svg
new file mode 100644
index 000000000..8cdb54be4
--- /dev/null
+++ b/svg/paranoia.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/parasaurolophus.svg b/svg/parasaurolophus.svg
new file mode 100644
index 000000000..a21542ef8
--- /dev/null
+++ b/svg/parasaurolophus.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/park-bench.svg b/svg/park-bench.svg
new file mode 100644
index 000000000..8cfcc3303
--- /dev/null
+++ b/svg/park-bench.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/parmecia.svg b/svg/parmecia.svg
new file mode 100644
index 000000000..236421519
--- /dev/null
+++ b/svg/parmecia.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/parrot-head.svg b/svg/parrot-head.svg
new file mode 100644
index 000000000..98b1405fc
--- /dev/null
+++ b/svg/parrot-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/party-flags.svg b/svg/party-flags.svg
new file mode 100644
index 000000000..f93975f52
--- /dev/null
+++ b/svg/party-flags.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/party-hat.svg b/svg/party-hat.svg
new file mode 100644
index 000000000..1899cd670
--- /dev/null
+++ b/svg/party-hat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/party-popper.svg b/svg/party-popper.svg
new file mode 100644
index 000000000..359b5a595
--- /dev/null
+++ b/svg/party-popper.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/passport.svg b/svg/passport.svg
new file mode 100644
index 000000000..211cb7f2e
--- /dev/null
+++ b/svg/passport.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/path-distance.svg b/svg/path-distance.svg
new file mode 100644
index 000000000..95d3d40ec
--- /dev/null
+++ b/svg/path-distance.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/path-tile.svg b/svg/path-tile.svg
new file mode 100644
index 000000000..f9231df97
--- /dev/null
+++ b/svg/path-tile.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pauldrons.svg b/svg/pauldrons.svg
new file mode 100644
index 000000000..233437d6d
--- /dev/null
+++ b/svg/pauldrons.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pause-button.svg b/svg/pause-button.svg
new file mode 100644
index 000000000..c7ca5cffc
--- /dev/null
+++ b/svg/pause-button.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/paw-front.svg b/svg/paw-front.svg
new file mode 100644
index 000000000..cc24efd12
--- /dev/null
+++ b/svg/paw-front.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/paw-heart.svg b/svg/paw-heart.svg
new file mode 100644
index 000000000..3fc71d93d
--- /dev/null
+++ b/svg/paw-heart.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/paw-print.svg b/svg/paw-print.svg
new file mode 100644
index 000000000..32b64daca
--- /dev/null
+++ b/svg/paw-print.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/paw.svg b/svg/paw.svg
new file mode 100644
index 000000000..ed3a7e3ad
--- /dev/null
+++ b/svg/paw.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pawn.svg b/svg/pawn.svg
new file mode 100644
index 000000000..ab68f4996
--- /dev/null
+++ b/svg/pawn.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pawprint.svg b/svg/pawprint.svg
new file mode 100644
index 000000000..4bb19f398
--- /dev/null
+++ b/svg/pawprint.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pay-money.svg b/svg/pay-money.svg
new file mode 100644
index 000000000..8ad3eafb9
--- /dev/null
+++ b/svg/pay-money.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pc.svg b/svg/pc.svg
new file mode 100644
index 000000000..959c79ec5
--- /dev/null
+++ b/svg/pc.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/peace-dove.svg b/svg/peace-dove.svg
new file mode 100644
index 000000000..8e9c2a6a8
--- /dev/null
+++ b/svg/peace-dove.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/peach.svg b/svg/peach.svg
new file mode 100644
index 000000000..02b5a1139
--- /dev/null
+++ b/svg/peach.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/peaks.svg b/svg/peaks.svg
new file mode 100644
index 000000000..402eea522
--- /dev/null
+++ b/svg/peaks.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/peanut.svg b/svg/peanut.svg
new file mode 100644
index 000000000..f7348903f
--- /dev/null
+++ b/svg/peanut.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pear.svg b/svg/pear.svg
new file mode 100644
index 000000000..1ef017fa8
--- /dev/null
+++ b/svg/pear.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pearl-earring.svg b/svg/pearl-earring.svg
new file mode 100644
index 000000000..f61cd229d
--- /dev/null
+++ b/svg/pearl-earring.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pearl-necklace.svg b/svg/pearl-necklace.svg
new file mode 100644
index 000000000..2539a5f81
--- /dev/null
+++ b/svg/pearl-necklace.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/peas.svg b/svg/peas.svg
new file mode 100644
index 000000000..92c86f0da
--- /dev/null
+++ b/svg/peas.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pegasus.svg b/svg/pegasus.svg
new file mode 100644
index 000000000..2af4a25be
--- /dev/null
+++ b/svg/pegasus.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pelvis-bone.svg b/svg/pelvis-bone.svg
new file mode 100644
index 000000000..a0a92afa8
--- /dev/null
+++ b/svg/pelvis-bone.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pencil-brush.svg b/svg/pencil-brush.svg
new file mode 100644
index 000000000..98d1fb2a0
--- /dev/null
+++ b/svg/pencil-brush.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pencil-ruler.svg b/svg/pencil-ruler.svg
new file mode 100644
index 000000000..a6a4128b3
--- /dev/null
+++ b/svg/pencil-ruler.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pencil.svg b/svg/pencil.svg
new file mode 100644
index 000000000..3c8103d23
--- /dev/null
+++ b/svg/pencil.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pendant-key.svg b/svg/pendant-key.svg
new file mode 100644
index 000000000..14002810f
--- /dev/null
+++ b/svg/pendant-key.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pendulum-swing.svg b/svg/pendulum-swing.svg
new file mode 100644
index 000000000..a02dc1497
--- /dev/null
+++ b/svg/pendulum-swing.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/penguin.svg b/svg/penguin.svg
new file mode 100644
index 000000000..68cfcab54
--- /dev/null
+++ b/svg/penguin.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pentacle.svg b/svg/pentacle.svg
new file mode 100644
index 000000000..01f34e62a
--- /dev/null
+++ b/svg/pentacle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pentagram-rose.svg b/svg/pentagram-rose.svg
new file mode 100644
index 000000000..49ec2e907
--- /dev/null
+++ b/svg/pentagram-rose.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pentarrows-tornado.svg b/svg/pentarrows-tornado.svg
new file mode 100644
index 000000000..505e7ae9c
--- /dev/null
+++ b/svg/pentarrows-tornado.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/perfume-bottle.svg b/svg/perfume-bottle.svg
new file mode 100644
index 000000000..0c48f9872
--- /dev/null
+++ b/svg/perfume-bottle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/periscope.svg b/svg/periscope.svg
new file mode 100644
index 000000000..662c7e620
--- /dev/null
+++ b/svg/periscope.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/perpendicular-rings.svg b/svg/perpendicular-rings.svg
new file mode 100644
index 000000000..1e1ff4f08
--- /dev/null
+++ b/svg/perpendicular-rings.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/person-in-bed.svg b/svg/person-in-bed.svg
new file mode 100644
index 000000000..403495749
--- /dev/null
+++ b/svg/person-in-bed.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/person.svg b/svg/person.svg
new file mode 100644
index 000000000..161b139ec
--- /dev/null
+++ b/svg/person.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/perspective-dice-five.svg b/svg/perspective-dice-five.svg
new file mode 100644
index 000000000..7133e1baf
--- /dev/null
+++ b/svg/perspective-dice-five.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/perspective-dice-four.svg b/svg/perspective-dice-four.svg
new file mode 100644
index 000000000..795dad47c
--- /dev/null
+++ b/svg/perspective-dice-four.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/perspective-dice-one.svg b/svg/perspective-dice-one.svg
new file mode 100644
index 000000000..f9fef2e03
--- /dev/null
+++ b/svg/perspective-dice-one.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/perspective-dice-six-faces-five.svg b/svg/perspective-dice-six-faces-five.svg
new file mode 100644
index 000000000..7ccdfcc31
--- /dev/null
+++ b/svg/perspective-dice-six-faces-five.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/perspective-dice-six-faces-four.svg b/svg/perspective-dice-six-faces-four.svg
new file mode 100644
index 000000000..8cb276e72
--- /dev/null
+++ b/svg/perspective-dice-six-faces-four.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/perspective-dice-six-faces-one.svg b/svg/perspective-dice-six-faces-one.svg
new file mode 100644
index 000000000..eb499d2c5
--- /dev/null
+++ b/svg/perspective-dice-six-faces-one.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/perspective-dice-six-faces-random.svg b/svg/perspective-dice-six-faces-random.svg
new file mode 100644
index 000000000..bdf4567d6
--- /dev/null
+++ b/svg/perspective-dice-six-faces-random.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/perspective-dice-six-faces-six.svg b/svg/perspective-dice-six-faces-six.svg
new file mode 100644
index 000000000..dd5f627c2
--- /dev/null
+++ b/svg/perspective-dice-six-faces-six.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/perspective-dice-six-faces-three.svg b/svg/perspective-dice-six-faces-three.svg
new file mode 100644
index 000000000..b4cec47c8
--- /dev/null
+++ b/svg/perspective-dice-six-faces-three.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/perspective-dice-six-faces-two.svg b/svg/perspective-dice-six-faces-two.svg
new file mode 100644
index 000000000..e20f85612
--- /dev/null
+++ b/svg/perspective-dice-six-faces-two.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/perspective-dice-six.svg b/svg/perspective-dice-six.svg
new file mode 100644
index 000000000..2c3f8049b
--- /dev/null
+++ b/svg/perspective-dice-six.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/perspective-dice-three.svg b/svg/perspective-dice-three.svg
new file mode 100644
index 000000000..57492f8e2
--- /dev/null
+++ b/svg/perspective-dice-three.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/perspective-dice-two.svg b/svg/perspective-dice-two.svg
new file mode 100644
index 000000000..9e93604d3
--- /dev/null
+++ b/svg/perspective-dice-two.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/peru.svg b/svg/peru.svg
new file mode 100644
index 000000000..9a9ad1a3d
--- /dev/null
+++ b/svg/peru.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pestle-mortar.svg b/svg/pestle-mortar.svg
new file mode 100644
index 000000000..9c9335e3f
--- /dev/null
+++ b/svg/pestle-mortar.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pharoah.svg b/svg/pharoah.svg
new file mode 100644
index 000000000..03f71fdfb
--- /dev/null
+++ b/svg/pharoah.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/philosopher-bust.svg b/svg/philosopher-bust.svg
new file mode 100644
index 000000000..8f5c7014c
--- /dev/null
+++ b/svg/philosopher-bust.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/phone.svg b/svg/phone.svg
new file mode 100644
index 000000000..0fcf3928f
--- /dev/null
+++ b/svg/phone.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/photo-camera.svg b/svg/photo-camera.svg
new file mode 100644
index 000000000..9b232a69d
--- /dev/null
+++ b/svg/photo-camera.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/phrygian-cap.svg b/svg/phrygian-cap.svg
new file mode 100644
index 000000000..86a1b6493
--- /dev/null
+++ b/svg/phrygian-cap.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pianist.svg b/svg/pianist.svg
new file mode 100644
index 000000000..9c21d97c5
--- /dev/null
+++ b/svg/pianist.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/piano-keys.svg b/svg/piano-keys.svg
new file mode 100644
index 000000000..43e41eedb
--- /dev/null
+++ b/svg/piano-keys.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pick-of-destiny.svg b/svg/pick-of-destiny.svg
new file mode 100644
index 000000000..cbc477fa8
--- /dev/null
+++ b/svg/pick-of-destiny.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pickelhaube.svg b/svg/pickelhaube.svg
new file mode 100644
index 000000000..19e7772ba
--- /dev/null
+++ b/svg/pickelhaube.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pickle.svg b/svg/pickle.svg
new file mode 100644
index 000000000..8d9f87328
--- /dev/null
+++ b/svg/pickle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pie-chart.svg b/svg/pie-chart.svg
new file mode 100644
index 000000000..e7da6ae71
--- /dev/null
+++ b/svg/pie-chart.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pie-slice.svg b/svg/pie-slice.svg
new file mode 100644
index 000000000..064616301
--- /dev/null
+++ b/svg/pie-slice.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/piece-skull.svg b/svg/piece-skull.svg
new file mode 100644
index 000000000..bc2e840c0
--- /dev/null
+++ b/svg/piece-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pierced-body.svg b/svg/pierced-body.svg
new file mode 100644
index 000000000..d1466dec9
--- /dev/null
+++ b/svg/pierced-body.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pierced-heart.svg b/svg/pierced-heart.svg
new file mode 100644
index 000000000..3020b3a14
--- /dev/null
+++ b/svg/pierced-heart.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/piercing-sword.svg b/svg/piercing-sword.svg
new file mode 100644
index 000000000..97ff5881b
--- /dev/null
+++ b/svg/piercing-sword.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pig-face.svg b/svg/pig-face.svg
new file mode 100644
index 000000000..452b88f20
--- /dev/null
+++ b/svg/pig-face.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pig.svg b/svg/pig.svg
new file mode 100644
index 000000000..5c873d2a2
--- /dev/null
+++ b/svg/pig.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/piggy-bank.svg b/svg/piggy-bank.svg
new file mode 100644
index 000000000..ea464fbc4
--- /dev/null
+++ b/svg/piggy-bank.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pikeman.svg b/svg/pikeman.svg
new file mode 100644
index 000000000..eb58be709
--- /dev/null
+++ b/svg/pikeman.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pilgrim-hat.svg b/svg/pilgrim-hat.svg
new file mode 100644
index 000000000..793bcc96a
--- /dev/null
+++ b/svg/pilgrim-hat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pill-drop.svg b/svg/pill-drop.svg
new file mode 100644
index 000000000..28b2ba211
--- /dev/null
+++ b/svg/pill-drop.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pill.svg b/svg/pill.svg
new file mode 100644
index 000000000..e2f177813
--- /dev/null
+++ b/svg/pill.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pillow.svg b/svg/pillow.svg
new file mode 100644
index 000000000..d4ed912c8
--- /dev/null
+++ b/svg/pillow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pimiento.svg b/svg/pimiento.svg
new file mode 100644
index 000000000..170eecf05
--- /dev/null
+++ b/svg/pimiento.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pin.svg b/svg/pin.svg
new file mode 100644
index 000000000..d6eff20e5
--- /dev/null
+++ b/svg/pin.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pinata.svg b/svg/pinata.svg
new file mode 100644
index 000000000..9d3a28bf3
--- /dev/null
+++ b/svg/pinata.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pinball-flipper.svg b/svg/pinball-flipper.svg
new file mode 100644
index 000000000..79c673014
--- /dev/null
+++ b/svg/pinball-flipper.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pincers.svg b/svg/pincers.svg
new file mode 100644
index 000000000..468d2ff59
--- /dev/null
+++ b/svg/pincers.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pine-tree.svg b/svg/pine-tree.svg
new file mode 100644
index 000000000..ad2af77bb
--- /dev/null
+++ b/svg/pine-tree.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pineapple.svg b/svg/pineapple.svg
new file mode 100644
index 000000000..1b9b0937f
--- /dev/null
+++ b/svg/pineapple.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ping-pong-bat.svg b/svg/ping-pong-bat.svg
new file mode 100644
index 000000000..ef2be54df
--- /dev/null
+++ b/svg/ping-pong-bat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pipe-organ.svg b/svg/pipe-organ.svg
new file mode 100644
index 000000000..eb45b773f
--- /dev/null
+++ b/svg/pipe-organ.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pipes.svg b/svg/pipes.svg
new file mode 100644
index 000000000..2ff045049
--- /dev/null
+++ b/svg/pipes.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/piranha.svg b/svg/piranha.svg
new file mode 100644
index 000000000..de547c4a9
--- /dev/null
+++ b/svg/piranha.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pirate-cannon.svg b/svg/pirate-cannon.svg
new file mode 100644
index 000000000..ddcba3605
--- /dev/null
+++ b/svg/pirate-cannon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pirate-captain.svg b/svg/pirate-captain.svg
new file mode 100644
index 000000000..4659c784e
--- /dev/null
+++ b/svg/pirate-captain.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pirate-coat.svg b/svg/pirate-coat.svg
new file mode 100644
index 000000000..a58dc7973
--- /dev/null
+++ b/svg/pirate-coat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pirate-flag.svg b/svg/pirate-flag.svg
new file mode 100644
index 000000000..135e023dd
--- /dev/null
+++ b/svg/pirate-flag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pirate-grave.svg b/svg/pirate-grave.svg
new file mode 100644
index 000000000..baa498fb8
--- /dev/null
+++ b/svg/pirate-grave.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pirate-hat.svg b/svg/pirate-hat.svg
new file mode 100644
index 000000000..22bf596e2
--- /dev/null
+++ b/svg/pirate-hat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pirate-hook.svg b/svg/pirate-hook.svg
new file mode 100644
index 000000000..da4315ab6
--- /dev/null
+++ b/svg/pirate-hook.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pirate-skull.svg b/svg/pirate-skull.svg
new file mode 100644
index 000000000..387fa7edd
--- /dev/null
+++ b/svg/pirate-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pisa-tower.svg b/svg/pisa-tower.svg
new file mode 100644
index 000000000..e47c09e1f
--- /dev/null
+++ b/svg/pisa-tower.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pisces.svg b/svg/pisces.svg
new file mode 100644
index 000000000..87a0a2133
--- /dev/null
+++ b/svg/pisces.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pistol-gun.svg b/svg/pistol-gun.svg
new file mode 100644
index 000000000..fd96dc6b4
--- /dev/null
+++ b/svg/pistol-gun.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pitchfork.svg b/svg/pitchfork.svg
new file mode 100644
index 000000000..e787387e8
--- /dev/null
+++ b/svg/pitchfork.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pizza-cutter.svg b/svg/pizza-cutter.svg
new file mode 100644
index 000000000..13b677c96
--- /dev/null
+++ b/svg/pizza-cutter.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pizza-slice.svg b/svg/pizza-slice.svg
new file mode 100644
index 000000000..780674f52
--- /dev/null
+++ b/svg/pizza-slice.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/plague-doctor-profile.svg b/svg/plague-doctor-profile.svg
new file mode 100644
index 000000000..b94a8eb89
--- /dev/null
+++ b/svg/plague-doctor-profile.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/plain-arrow.svg b/svg/plain-arrow.svg
new file mode 100644
index 000000000..53b7ff5b8
--- /dev/null
+++ b/svg/plain-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/plain-circle.svg b/svg/plain-circle.svg
new file mode 100644
index 000000000..344eed65c
--- /dev/null
+++ b/svg/plain-circle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/plain-dagger.svg b/svg/plain-dagger.svg
new file mode 100644
index 000000000..d39957005
--- /dev/null
+++ b/svg/plain-dagger.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/plain-padlock.svg b/svg/plain-padlock.svg
new file mode 100644
index 000000000..27830cd2b
--- /dev/null
+++ b/svg/plain-padlock.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/plain-square.svg b/svg/plain-square.svg
new file mode 100644
index 000000000..8ad024348
--- /dev/null
+++ b/svg/plain-square.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/plane-pilot.svg b/svg/plane-pilot.svg
new file mode 100644
index 000000000..edd1dbed1
--- /dev/null
+++ b/svg/plane-pilot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/plane-wing.svg b/svg/plane-wing.svg
new file mode 100644
index 000000000..2e609c34f
--- /dev/null
+++ b/svg/plane-wing.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/planet-conquest.svg b/svg/planet-conquest.svg
new file mode 100644
index 000000000..d407fc73c
--- /dev/null
+++ b/svg/planet-conquest.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/planet-core.svg b/svg/planet-core.svg
new file mode 100644
index 000000000..e56c525ca
--- /dev/null
+++ b/svg/planet-core.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/planks.svg b/svg/planks.svg
new file mode 100644
index 000000000..3d769933e
--- /dev/null
+++ b/svg/planks.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/plant-roots.svg b/svg/plant-roots.svg
new file mode 100644
index 000000000..56259ad2e
--- /dev/null
+++ b/svg/plant-roots.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/plant-seed.svg b/svg/plant-seed.svg
new file mode 100644
index 000000000..11c4304c5
--- /dev/null
+++ b/svg/plant-seed.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/plant-watering.svg b/svg/plant-watering.svg
new file mode 100644
index 000000000..ba7f2347e
--- /dev/null
+++ b/svg/plant-watering.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/plants-and-animals.svg b/svg/plants-and-animals.svg
new file mode 100644
index 000000000..1088b8518
--- /dev/null
+++ b/svg/plants-and-animals.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/plasma-bolt.svg b/svg/plasma-bolt.svg
new file mode 100644
index 000000000..58db3b3e2
--- /dev/null
+++ b/svg/plasma-bolt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/plastic-duck.svg b/svg/plastic-duck.svg
new file mode 100644
index 000000000..da8fd8173
--- /dev/null
+++ b/svg/plastic-duck.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/plastron.svg b/svg/plastron.svg
new file mode 100644
index 000000000..935e08563
--- /dev/null
+++ b/svg/plastron.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/plate-claw.svg b/svg/plate-claw.svg
new file mode 100644
index 000000000..876d43b73
--- /dev/null
+++ b/svg/plate-claw.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/platform.svg b/svg/platform.svg
new file mode 100644
index 000000000..07a29ec54
--- /dev/null
+++ b/svg/platform.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/play-button.svg b/svg/play-button.svg
new file mode 100644
index 000000000..d77d1c214
--- /dev/null
+++ b/svg/play-button.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/player-base.svg b/svg/player-base.svg
new file mode 100644
index 000000000..376c7c6d3
--- /dev/null
+++ b/svg/player-base.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/player-next.svg b/svg/player-next.svg
new file mode 100644
index 000000000..cd9156d50
--- /dev/null
+++ b/svg/player-next.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/player-previous.svg b/svg/player-previous.svg
new file mode 100644
index 000000000..1891b69af
--- /dev/null
+++ b/svg/player-previous.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/player-time.svg b/svg/player-time.svg
new file mode 100644
index 000000000..d87b86383
--- /dev/null
+++ b/svg/player-time.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/plesiosaurus.svg b/svg/plesiosaurus.svg
new file mode 100644
index 000000000..ebe70ea26
--- /dev/null
+++ b/svg/plesiosaurus.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/plow.svg b/svg/plow.svg
new file mode 100644
index 000000000..7e7e8482f
--- /dev/null
+++ b/svg/plow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/plug.svg b/svg/plug.svg
new file mode 100644
index 000000000..d04baccce
--- /dev/null
+++ b/svg/plug.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/plunger.svg b/svg/plunger.svg
new file mode 100644
index 000000000..1f46803fb
--- /dev/null
+++ b/svg/plunger.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pocket-bow.svg b/svg/pocket-bow.svg
new file mode 100644
index 000000000..d6df929d8
--- /dev/null
+++ b/svg/pocket-bow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pocket-radio.svg b/svg/pocket-radio.svg
new file mode 100644
index 000000000..f6275cf3f
--- /dev/null
+++ b/svg/pocket-radio.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pocket-watch.svg b/svg/pocket-watch.svg
new file mode 100644
index 000000000..63990eba6
--- /dev/null
+++ b/svg/pocket-watch.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/podium-second.svg b/svg/podium-second.svg
new file mode 100644
index 000000000..8ea88e525
--- /dev/null
+++ b/svg/podium-second.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/podium-third.svg b/svg/podium-third.svg
new file mode 100644
index 000000000..fd07d3ef1
--- /dev/null
+++ b/svg/podium-third.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/podium-winner.svg b/svg/podium-winner.svg
new file mode 100644
index 000000000..c31892c8e
--- /dev/null
+++ b/svg/podium-winner.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/podium.svg b/svg/podium.svg
new file mode 100644
index 000000000..ccb8af45d
--- /dev/null
+++ b/svg/podium.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pointing.svg b/svg/pointing.svg
new file mode 100644
index 000000000..688fdc14d
--- /dev/null
+++ b/svg/pointing.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pointy-hat.svg b/svg/pointy-hat.svg
new file mode 100644
index 000000000..3d2131308
--- /dev/null
+++ b/svg/pointy-hat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pointy-sword.svg b/svg/pointy-sword.svg
new file mode 100644
index 000000000..18b9cdc30
--- /dev/null
+++ b/svg/pointy-sword.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/poison-bottle.svg b/svg/poison-bottle.svg
new file mode 100644
index 000000000..bc4a0b05a
--- /dev/null
+++ b/svg/poison-bottle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/poison-cloud.svg b/svg/poison-cloud.svg
new file mode 100644
index 000000000..cba1ebf05
--- /dev/null
+++ b/svg/poison-cloud.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/poison-gas.svg b/svg/poison-gas.svg
new file mode 100644
index 000000000..484b72a82
--- /dev/null
+++ b/svg/poison-gas.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/poison.svg b/svg/poison.svg
new file mode 100644
index 000000000..6aedba829
--- /dev/null
+++ b/svg/poison.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pokecog.svg b/svg/pokecog.svg
new file mode 100644
index 000000000..2ae9200e2
--- /dev/null
+++ b/svg/pokecog.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/poker-hand.svg b/svg/poker-hand.svg
new file mode 100644
index 000000000..de06d1a2a
--- /dev/null
+++ b/svg/poker-hand.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/poland.svg b/svg/poland.svg
new file mode 100644
index 000000000..6d4c8f347
--- /dev/null
+++ b/svg/poland.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/polar-bear.svg b/svg/polar-bear.svg
new file mode 100644
index 000000000..74378e95e
--- /dev/null
+++ b/svg/polar-bear.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/polar-star.svg b/svg/polar-star.svg
new file mode 100644
index 000000000..fafb2282e
--- /dev/null
+++ b/svg/polar-star.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/police-badge.svg b/svg/police-badge.svg
new file mode 100644
index 000000000..eddd8f817
--- /dev/null
+++ b/svg/police-badge.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/police-car.svg b/svg/police-car.svg
new file mode 100644
index 000000000..8dc7f6844
--- /dev/null
+++ b/svg/police-car.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/police-officer-head.svg b/svg/police-officer-head.svg
new file mode 100644
index 000000000..1cdb488d1
--- /dev/null
+++ b/svg/police-officer-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/police-target.svg b/svg/police-target.svg
new file mode 100644
index 000000000..c6b622066
--- /dev/null
+++ b/svg/police-target.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pollen-dust.svg b/svg/pollen-dust.svg
new file mode 100644
index 000000000..7eebf3576
--- /dev/null
+++ b/svg/pollen-dust.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/polo-shirt.svg b/svg/polo-shirt.svg
new file mode 100644
index 000000000..f3a8f6c7b
--- /dev/null
+++ b/svg/polo-shirt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/poncho.svg b/svg/poncho.svg
new file mode 100644
index 000000000..cd181a586
--- /dev/null
+++ b/svg/poncho.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pool-dive.svg b/svg/pool-dive.svg
new file mode 100644
index 000000000..1a112badd
--- /dev/null
+++ b/svg/pool-dive.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pool-table-corner.svg b/svg/pool-table-corner.svg
new file mode 100644
index 000000000..76b2fb171
--- /dev/null
+++ b/svg/pool-table-corner.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pool-triangle.svg b/svg/pool-triangle.svg
new file mode 100644
index 000000000..cf232aa2c
--- /dev/null
+++ b/svg/pool-triangle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/popcorn.svg b/svg/popcorn.svg
new file mode 100644
index 000000000..2f075fe41
--- /dev/null
+++ b/svg/popcorn.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pope-crown.svg b/svg/pope-crown.svg
new file mode 100644
index 000000000..da9f6d26d
--- /dev/null
+++ b/svg/pope-crown.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/poppy.svg b/svg/poppy.svg
new file mode 100644
index 000000000..d5ec98331
--- /dev/null
+++ b/svg/poppy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/porcelain-vase.svg b/svg/porcelain-vase.svg
new file mode 100644
index 000000000..0bf7a9b42
--- /dev/null
+++ b/svg/porcelain-vase.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/porcupine.svg b/svg/porcupine.svg
new file mode 100644
index 000000000..288fd55d8
--- /dev/null
+++ b/svg/porcupine.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/porcupinefish.svg b/svg/porcupinefish.svg
new file mode 100644
index 000000000..ac13dceb1
--- /dev/null
+++ b/svg/porcupinefish.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/portal.svg b/svg/portal.svg
new file mode 100644
index 000000000..1849de8b4
--- /dev/null
+++ b/svg/portal.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/portculis.svg b/svg/portculis.svg
new file mode 100644
index 000000000..aaae83b00
--- /dev/null
+++ b/svg/portculis.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/portrait.svg b/svg/portrait.svg
new file mode 100644
index 000000000..bd8303f4d
--- /dev/null
+++ b/svg/portrait.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/portugal.svg b/svg/portugal.svg
new file mode 100644
index 000000000..8e9b667a0
--- /dev/null
+++ b/svg/portugal.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/position-marker.svg b/svg/position-marker.svg
new file mode 100644
index 000000000..5ff2c6f9f
--- /dev/null
+++ b/svg/position-marker.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/post-office.svg b/svg/post-office.svg
new file mode 100644
index 000000000..0a6b5206e
--- /dev/null
+++ b/svg/post-office.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/post-stamp.svg b/svg/post-stamp.svg
new file mode 100644
index 000000000..03720fc2b
--- /dev/null
+++ b/svg/post-stamp.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/potato.svg b/svg/potato.svg
new file mode 100644
index 000000000..1294746af
--- /dev/null
+++ b/svg/potato.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/potion-ball.svg b/svg/potion-ball.svg
new file mode 100644
index 000000000..c167beb6b
--- /dev/null
+++ b/svg/potion-ball.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/potion-of-madness.svg b/svg/potion-of-madness.svg
new file mode 100644
index 000000000..6eea40917
--- /dev/null
+++ b/svg/potion-of-madness.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pounce.svg b/svg/pounce.svg
new file mode 100644
index 000000000..6ce970b61
--- /dev/null
+++ b/svg/pounce.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pouring-chalice.svg b/svg/pouring-chalice.svg
new file mode 100644
index 000000000..a97060d16
--- /dev/null
+++ b/svg/pouring-chalice.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pouring-pot.svg b/svg/pouring-pot.svg
new file mode 100644
index 000000000..291053966
--- /dev/null
+++ b/svg/pouring-pot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/powder-bag.svg b/svg/powder-bag.svg
new file mode 100644
index 000000000..8f26df3d9
--- /dev/null
+++ b/svg/powder-bag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/powder.svg b/svg/powder.svg
new file mode 100644
index 000000000..b070be4c5
--- /dev/null
+++ b/svg/powder.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/power-button.svg b/svg/power-button.svg
new file mode 100644
index 000000000..cbfc2a0c9
--- /dev/null
+++ b/svg/power-button.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/power-generator.svg b/svg/power-generator.svg
new file mode 100644
index 000000000..3aadaf328
--- /dev/null
+++ b/svg/power-generator.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/power-lightning.svg b/svg/power-lightning.svg
new file mode 100644
index 000000000..afedd614a
--- /dev/null
+++ b/svg/power-lightning.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/power-ring.svg b/svg/power-ring.svg
new file mode 100644
index 000000000..51e082df7
--- /dev/null
+++ b/svg/power-ring.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/prank-glasses.svg b/svg/prank-glasses.svg
new file mode 100644
index 000000000..d3ec4b1d6
--- /dev/null
+++ b/svg/prank-glasses.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/prayer-beads.svg b/svg/prayer-beads.svg
new file mode 100644
index 000000000..25e442993
--- /dev/null
+++ b/svg/prayer-beads.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/prayer.svg b/svg/prayer.svg
new file mode 100644
index 000000000..eeb3369ed
--- /dev/null
+++ b/svg/prayer.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/praying-mantis.svg b/svg/praying-mantis.svg
new file mode 100644
index 000000000..e6b1f2ed2
--- /dev/null
+++ b/svg/praying-mantis.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/present.svg b/svg/present.svg
new file mode 100644
index 000000000..a2aa0847b
--- /dev/null
+++ b/svg/present.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pressure-cooker.svg b/svg/pressure-cooker.svg
new file mode 100644
index 000000000..a6eec5285
--- /dev/null
+++ b/svg/pressure-cooker.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pretty-fangs.svg b/svg/pretty-fangs.svg
new file mode 100644
index 000000000..ebed0d3a1
--- /dev/null
+++ b/svg/pretty-fangs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pretzel.svg b/svg/pretzel.svg
new file mode 100644
index 000000000..35e1a46b5
--- /dev/null
+++ b/svg/pretzel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/previous-button.svg b/svg/previous-button.svg
new file mode 100644
index 000000000..4ecb634eb
--- /dev/null
+++ b/svg/previous-button.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/price-tag.svg b/svg/price-tag.svg
new file mode 100644
index 000000000..7e4b1a159
--- /dev/null
+++ b/svg/price-tag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/primitive-necklace.svg b/svg/primitive-necklace.svg
new file mode 100644
index 000000000..36f82d491
--- /dev/null
+++ b/svg/primitive-necklace.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/primitive-torch.svg b/svg/primitive-torch.svg
new file mode 100644
index 000000000..b8e93cc9d
--- /dev/null
+++ b/svg/primitive-torch.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/prism.svg b/svg/prism.svg
new file mode 100644
index 000000000..03e6d03bf
--- /dev/null
+++ b/svg/prism.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/prisoner.svg b/svg/prisoner.svg
new file mode 100644
index 000000000..3c1e31db2
--- /dev/null
+++ b/svg/prisoner.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/private-first-class.svg b/svg/private-first-class.svg
new file mode 100644
index 000000000..42824defb
--- /dev/null
+++ b/svg/private-first-class.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/private.svg b/svg/private.svg
new file mode 100644
index 000000000..59901d06d
--- /dev/null
+++ b/svg/private.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/processor.svg b/svg/processor.svg
new file mode 100644
index 000000000..3f0820890
--- /dev/null
+++ b/svg/processor.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/profit.svg b/svg/profit.svg
new file mode 100644
index 000000000..35f9754d1
--- /dev/null
+++ b/svg/profit.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/progression.svg b/svg/progression.svg
new file mode 100644
index 000000000..97c1d7b65
--- /dev/null
+++ b/svg/progression.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/propeller-beanie.svg b/svg/propeller-beanie.svg
new file mode 100644
index 000000000..5f591ef1e
--- /dev/null
+++ b/svg/propeller-beanie.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/protection-glasses.svg b/svg/protection-glasses.svg
new file mode 100644
index 000000000..5f9fa3100
--- /dev/null
+++ b/svg/protection-glasses.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pschent-double-crown.svg b/svg/pschent-double-crown.svg
new file mode 100644
index 000000000..79a01b268
--- /dev/null
+++ b/svg/pschent-double-crown.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/psychic-waves.svg b/svg/psychic-waves.svg
new file mode 100644
index 000000000..48daaf2b8
--- /dev/null
+++ b/svg/psychic-waves.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pterodactylus.svg b/svg/pterodactylus.svg
new file mode 100644
index 000000000..2bd66fa82
--- /dev/null
+++ b/svg/pterodactylus.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pteruges.svg b/svg/pteruges.svg
new file mode 100644
index 000000000..53c929718
--- /dev/null
+++ b/svg/pteruges.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/public-speaker.svg b/svg/public-speaker.svg
new file mode 100644
index 000000000..cbb36e996
--- /dev/null
+++ b/svg/public-speaker.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pull.svg b/svg/pull.svg
new file mode 100644
index 000000000..a6d2befc2
--- /dev/null
+++ b/svg/pull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pulley-hook.svg b/svg/pulley-hook.svg
new file mode 100644
index 000000000..6067a39a3
--- /dev/null
+++ b/svg/pulley-hook.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pulse.svg b/svg/pulse.svg
new file mode 100644
index 000000000..454b2fd68
--- /dev/null
+++ b/svg/pulse.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pummeled.svg b/svg/pummeled.svg
new file mode 100644
index 000000000..d6faf9166
--- /dev/null
+++ b/svg/pummeled.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pumpkin-lantern.svg b/svg/pumpkin-lantern.svg
new file mode 100644
index 000000000..c6a82e3e3
--- /dev/null
+++ b/svg/pumpkin-lantern.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pumpkin-mask.svg b/svg/pumpkin-mask.svg
new file mode 100644
index 000000000..0c3e43fbb
--- /dev/null
+++ b/svg/pumpkin-mask.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pumpkin.svg b/svg/pumpkin.svg
new file mode 100644
index 000000000..d6cba957e
--- /dev/null
+++ b/svg/pumpkin.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/punch-blast.svg b/svg/punch-blast.svg
new file mode 100644
index 000000000..410256ab2
--- /dev/null
+++ b/svg/punch-blast.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/punch.svg b/svg/punch.svg
new file mode 100644
index 000000000..1f56398bb
--- /dev/null
+++ b/svg/punch.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/punching-bag.svg b/svg/punching-bag.svg
new file mode 100644
index 000000000..87da16b97
--- /dev/null
+++ b/svg/punching-bag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/puppet.svg b/svg/puppet.svg
new file mode 100644
index 000000000..3917d817b
--- /dev/null
+++ b/svg/puppet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/purple-tentacle.svg b/svg/purple-tentacle.svg
new file mode 100644
index 000000000..5f73a4872
--- /dev/null
+++ b/svg/purple-tentacle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/push.svg b/svg/push.svg
new file mode 100644
index 000000000..bfb8c7600
--- /dev/null
+++ b/svg/push.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/puzzle.svg b/svg/puzzle.svg
new file mode 100644
index 000000000..f40410aa3
--- /dev/null
+++ b/svg/puzzle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pylon.svg b/svg/pylon.svg
new file mode 100644
index 000000000..35587442c
--- /dev/null
+++ b/svg/pylon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pyre.svg b/svg/pyre.svg
new file mode 100644
index 000000000..144a68631
--- /dev/null
+++ b/svg/pyre.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/pyromaniac.svg b/svg/pyromaniac.svg
new file mode 100644
index 000000000..baef363cb
--- /dev/null
+++ b/svg/pyromaniac.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/qaitbay-citadel.svg b/svg/qaitbay-citadel.svg
new file mode 100644
index 000000000..c1f02f5fc
--- /dev/null
+++ b/svg/qaitbay-citadel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/quake-stomp.svg b/svg/quake-stomp.svg
new file mode 100644
index 000000000..34a9e412c
--- /dev/null
+++ b/svg/quake-stomp.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/queen-crown.svg b/svg/queen-crown.svg
new file mode 100644
index 000000000..056bd607d
--- /dev/null
+++ b/svg/queen-crown.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/quick-man.svg b/svg/quick-man.svg
new file mode 100644
index 000000000..60c81c98c
--- /dev/null
+++ b/svg/quick-man.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/quick-slash.svg b/svg/quick-slash.svg
new file mode 100644
index 000000000..baa9f970e
--- /dev/null
+++ b/svg/quick-slash.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/quicksand.svg b/svg/quicksand.svg
new file mode 100644
index 000000000..15e5a79ce
--- /dev/null
+++ b/svg/quicksand.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/quill-ink.svg b/svg/quill-ink.svg
new file mode 100644
index 000000000..a7ffc6032
--- /dev/null
+++ b/svg/quill-ink.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/quill.svg b/svg/quill.svg
new file mode 100644
index 000000000..db479feb6
--- /dev/null
+++ b/svg/quill.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/quiver.svg b/svg/quiver.svg
new file mode 100644
index 000000000..81cfd9835
--- /dev/null
+++ b/svg/quiver.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rabbit-head.svg b/svg/rabbit-head.svg
new file mode 100644
index 000000000..5cff49f5e
--- /dev/null
+++ b/svg/rabbit-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rabbit.svg b/svg/rabbit.svg
new file mode 100644
index 000000000..01e065eef
--- /dev/null
+++ b/svg/rabbit.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/raccoon-head.svg b/svg/raccoon-head.svg
new file mode 100644
index 000000000..68216f364
--- /dev/null
+++ b/svg/raccoon-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/race-car.svg b/svg/race-car.svg
new file mode 100644
index 000000000..1c448c77f
--- /dev/null
+++ b/svg/race-car.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/radar-cross-section.svg b/svg/radar-cross-section.svg
new file mode 100644
index 000000000..854a699f1
--- /dev/null
+++ b/svg/radar-cross-section.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/radar-dish.svg b/svg/radar-dish.svg
new file mode 100644
index 000000000..81cd3d5d3
--- /dev/null
+++ b/svg/radar-dish.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/radar-sweep.svg b/svg/radar-sweep.svg
new file mode 100644
index 000000000..7994b578d
--- /dev/null
+++ b/svg/radar-sweep.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/raddish.svg b/svg/raddish.svg
new file mode 100644
index 000000000..82c779f40
--- /dev/null
+++ b/svg/raddish.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/radial-balance.svg b/svg/radial-balance.svg
new file mode 100644
index 000000000..69bd4b529
--- /dev/null
+++ b/svg/radial-balance.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/radiations.svg b/svg/radiations.svg
new file mode 100644
index 000000000..7ca7c0674
--- /dev/null
+++ b/svg/radiations.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/radio-tower.svg b/svg/radio-tower.svg
new file mode 100644
index 000000000..a6aaaf089
--- /dev/null
+++ b/svg/radio-tower.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/radioactive.svg b/svg/radioactive.svg
new file mode 100644
index 000000000..bc669a13a
--- /dev/null
+++ b/svg/radioactive.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/raft.svg b/svg/raft.svg
new file mode 100644
index 000000000..0f57c448c
--- /dev/null
+++ b/svg/raft.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ragged-wound.svg b/svg/ragged-wound.svg
new file mode 100644
index 000000000..cd3c5c481
--- /dev/null
+++ b/svg/ragged-wound.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rail-road.svg b/svg/rail-road.svg
new file mode 100644
index 000000000..d3f77ec59
--- /dev/null
+++ b/svg/rail-road.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/railway.svg b/svg/railway.svg
new file mode 100644
index 000000000..907d27855
--- /dev/null
+++ b/svg/railway.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rainbow-star.svg b/svg/rainbow-star.svg
new file mode 100644
index 000000000..5864b5d64
--- /dev/null
+++ b/svg/rainbow-star.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/raining.svg b/svg/raining.svg
new file mode 100644
index 000000000..36895f3d1
--- /dev/null
+++ b/svg/raining.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/raise-skeleton.svg b/svg/raise-skeleton.svg
new file mode 100644
index 000000000..aac02914d
--- /dev/null
+++ b/svg/raise-skeleton.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/raise-zombie.svg b/svg/raise-zombie.svg
new file mode 100644
index 000000000..f50eaaca4
--- /dev/null
+++ b/svg/raise-zombie.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rake.svg b/svg/rake.svg
new file mode 100644
index 000000000..24aa1f3e7
--- /dev/null
+++ b/svg/rake.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rally-the-troops.svg b/svg/rally-the-troops.svg
new file mode 100644
index 000000000..bbe039b74
--- /dev/null
+++ b/svg/rally-the-troops.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ram-2.svg b/svg/ram-2.svg
new file mode 100644
index 000000000..f9d6b5d01
--- /dev/null
+++ b/svg/ram-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ram-profile.svg b/svg/ram-profile.svg
new file mode 100644
index 000000000..c0df81725
--- /dev/null
+++ b/svg/ram-profile.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ram.svg b/svg/ram.svg
new file mode 100644
index 000000000..8474259ad
--- /dev/null
+++ b/svg/ram.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ranch-gate.svg b/svg/ranch-gate.svg
new file mode 100644
index 000000000..97a53956d
--- /dev/null
+++ b/svg/ranch-gate.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rank-1.svg b/svg/rank-1.svg
new file mode 100644
index 000000000..0d1ebb02f
--- /dev/null
+++ b/svg/rank-1.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rank-2.svg b/svg/rank-2.svg
new file mode 100644
index 000000000..e094b354c
--- /dev/null
+++ b/svg/rank-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rank-3.svg b/svg/rank-3.svg
new file mode 100644
index 000000000..6591314fc
--- /dev/null
+++ b/svg/rank-3.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rapidshare-arrow.svg b/svg/rapidshare-arrow.svg
new file mode 100644
index 000000000..cb5353ce0
--- /dev/null
+++ b/svg/rapidshare-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/raspberry.svg b/svg/raspberry.svg
new file mode 100644
index 000000000..f621a3681
--- /dev/null
+++ b/svg/raspberry.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rat.svg b/svg/rat.svg
new file mode 100644
index 000000000..8e5040bd9
--- /dev/null
+++ b/svg/rat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rattlesnake.svg b/svg/rattlesnake.svg
new file mode 100644
index 000000000..9bc167585
--- /dev/null
+++ b/svg/rattlesnake.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/raven.svg b/svg/raven.svg
new file mode 100644
index 000000000..a5099d0fa
--- /dev/null
+++ b/svg/raven.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/raw-egg.svg b/svg/raw-egg.svg
new file mode 100644
index 000000000..76e77e787
--- /dev/null
+++ b/svg/raw-egg.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ray-gun.svg b/svg/ray-gun.svg
new file mode 100644
index 000000000..c4fd35c12
--- /dev/null
+++ b/svg/ray-gun.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/razor-blade.svg b/svg/razor-blade.svg
new file mode 100644
index 000000000..884377868
--- /dev/null
+++ b/svg/razor-blade.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/razor.svg b/svg/razor.svg
new file mode 100644
index 000000000..df6d4b446
--- /dev/null
+++ b/svg/razor.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/reactor.svg b/svg/reactor.svg
new file mode 100644
index 000000000..eb30dc2ff
--- /dev/null
+++ b/svg/reactor.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/read.svg b/svg/read.svg
new file mode 100644
index 000000000..761bb0aae
--- /dev/null
+++ b/svg/read.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/reaper-scythe.svg b/svg/reaper-scythe.svg
new file mode 100644
index 000000000..6f2e2e84d
--- /dev/null
+++ b/svg/reaper-scythe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rear-aura.svg b/svg/rear-aura.svg
new file mode 100644
index 000000000..b4346b461
--- /dev/null
+++ b/svg/rear-aura.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/receive-money.svg b/svg/receive-money.svg
new file mode 100644
index 000000000..6cf1a75d8
--- /dev/null
+++ b/svg/receive-money.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/recycle.svg b/svg/recycle.svg
new file mode 100644
index 000000000..75648ee4c
--- /dev/null
+++ b/svg/recycle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/red-carpet.svg b/svg/red-carpet.svg
new file mode 100644
index 000000000..cd24e4e1b
--- /dev/null
+++ b/svg/red-carpet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/reed.svg b/svg/reed.svg
new file mode 100644
index 000000000..1e01ce0dd
--- /dev/null
+++ b/svg/reed.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/refinery.svg b/svg/refinery.svg
new file mode 100644
index 000000000..44d2684bd
--- /dev/null
+++ b/svg/refinery.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/regeneration.svg b/svg/regeneration.svg
new file mode 100644
index 000000000..a7412cd4c
--- /dev/null
+++ b/svg/regeneration.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/relationship-bounds.svg b/svg/relationship-bounds.svg
new file mode 100644
index 000000000..627318263
--- /dev/null
+++ b/svg/relationship-bounds.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/relic-blade.svg b/svg/relic-blade.svg
new file mode 100644
index 000000000..223b7e32e
--- /dev/null
+++ b/svg/relic-blade.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/reload-gun-barrel.svg b/svg/reload-gun-barrel.svg
new file mode 100644
index 000000000..e7b9ca05e
--- /dev/null
+++ b/svg/reload-gun-barrel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/remedy.svg b/svg/remedy.svg
new file mode 100644
index 000000000..3b37384bf
--- /dev/null
+++ b/svg/remedy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rempart.svg b/svg/rempart.svg
new file mode 100644
index 000000000..5f57c97da
--- /dev/null
+++ b/svg/rempart.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/reptile-tail.svg b/svg/reptile-tail.svg
new file mode 100644
index 000000000..5307f2dd4
--- /dev/null
+++ b/svg/reptile-tail.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/resize.svg b/svg/resize.svg
new file mode 100644
index 000000000..9200d0826
--- /dev/null
+++ b/svg/resize.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/resonance.svg b/svg/resonance.svg
new file mode 100644
index 000000000..d9f94f854
--- /dev/null
+++ b/svg/resonance.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/resting-vampire.svg b/svg/resting-vampire.svg
new file mode 100644
index 000000000..cfb030216
--- /dev/null
+++ b/svg/resting-vampire.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/reticule.svg b/svg/reticule.svg
new file mode 100644
index 000000000..c38e92b66
--- /dev/null
+++ b/svg/reticule.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/retro-controller.svg b/svg/retro-controller.svg
new file mode 100644
index 000000000..2a7c5d4a7
--- /dev/null
+++ b/svg/retro-controller.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/return-arrow.svg b/svg/return-arrow.svg
new file mode 100644
index 000000000..8f09592e9
--- /dev/null
+++ b/svg/return-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/revolt-2.svg b/svg/revolt-2.svg
new file mode 100644
index 000000000..cbc09c21b
--- /dev/null
+++ b/svg/revolt-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/revolt.svg b/svg/revolt.svg
new file mode 100644
index 000000000..cf0a53677
--- /dev/null
+++ b/svg/revolt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/revolver-2.svg b/svg/revolver-2.svg
new file mode 100644
index 000000000..5f62d11a8
--- /dev/null
+++ b/svg/revolver-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/revolver.svg b/svg/revolver.svg
new file mode 100644
index 000000000..fa721d6ad
--- /dev/null
+++ b/svg/revolver.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rhinoceros-horn.svg b/svg/rhinoceros-horn.svg
new file mode 100644
index 000000000..7dc067700
--- /dev/null
+++ b/svg/rhinoceros-horn.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rialto-bridge.svg b/svg/rialto-bridge.svg
new file mode 100644
index 000000000..3ff7d1a12
--- /dev/null
+++ b/svg/rialto-bridge.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ribbon-medal.svg b/svg/ribbon-medal.svg
new file mode 100644
index 000000000..3d3e785f6
--- /dev/null
+++ b/svg/ribbon-medal.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ribbon-shield.svg b/svg/ribbon-shield.svg
new file mode 100644
index 000000000..467fcc141
--- /dev/null
+++ b/svg/ribbon-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ribbon.svg b/svg/ribbon.svg
new file mode 100644
index 000000000..042a549b8
--- /dev/null
+++ b/svg/ribbon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ribcage.svg b/svg/ribcage.svg
new file mode 100644
index 000000000..a5584135d
--- /dev/null
+++ b/svg/ribcage.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rice-cooker.svg b/svg/rice-cooker.svg
new file mode 100644
index 000000000..2c2bb6aca
--- /dev/null
+++ b/svg/rice-cooker.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ricochet.svg b/svg/ricochet.svg
new file mode 100644
index 000000000..2a4ee6ffb
--- /dev/null
+++ b/svg/ricochet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rifle.svg b/svg/rifle.svg
new file mode 100644
index 000000000..df2e81307
--- /dev/null
+++ b/svg/rifle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ring-box.svg b/svg/ring-box.svg
new file mode 100644
index 000000000..e5bbfe995
--- /dev/null
+++ b/svg/ring-box.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ring-mould.svg b/svg/ring-mould.svg
new file mode 100644
index 000000000..3d9cbe8d7
--- /dev/null
+++ b/svg/ring-mould.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ring.svg b/svg/ring.svg
new file mode 100644
index 000000000..e4eee97fb
--- /dev/null
+++ b/svg/ring.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ringed-beam.svg b/svg/ringed-beam.svg
new file mode 100644
index 000000000..252725b1b
--- /dev/null
+++ b/svg/ringed-beam.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ringed-planet.svg b/svg/ringed-planet.svg
new file mode 100644
index 000000000..9f84a7e55
--- /dev/null
+++ b/svg/ringed-planet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ringing-alarm.svg b/svg/ringing-alarm.svg
new file mode 100644
index 000000000..57b4957ae
--- /dev/null
+++ b/svg/ringing-alarm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ringing-bell.svg b/svg/ringing-bell.svg
new file mode 100644
index 000000000..b63307d86
--- /dev/null
+++ b/svg/ringing-bell.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ringmaster.svg b/svg/ringmaster.svg
new file mode 100644
index 000000000..34f4cbeaf
--- /dev/null
+++ b/svg/ringmaster.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/riot-shield.svg b/svg/riot-shield.svg
new file mode 100644
index 000000000..a0dfc0d5c
--- /dev/null
+++ b/svg/riot-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/riposte.svg b/svg/riposte.svg
new file mode 100644
index 000000000..9f54ee003
--- /dev/null
+++ b/svg/riposte.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/river.svg b/svg/river.svg
new file mode 100644
index 000000000..735967739
--- /dev/null
+++ b/svg/river.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/road.svg b/svg/road.svg
new file mode 100644
index 000000000..dccd12d34
--- /dev/null
+++ b/svg/road.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/roast-chicken.svg b/svg/roast-chicken.svg
new file mode 100644
index 000000000..0c8df3785
--- /dev/null
+++ b/svg/roast-chicken.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/robber-hand.svg b/svg/robber-hand.svg
new file mode 100644
index 000000000..935831b9d
--- /dev/null
+++ b/svg/robber-hand.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/robber-mask.svg b/svg/robber-mask.svg
new file mode 100644
index 000000000..91e40d9d5
--- /dev/null
+++ b/svg/robber-mask.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/robber.svg b/svg/robber.svg
new file mode 100644
index 000000000..0c39acaa2
--- /dev/null
+++ b/svg/robber.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/robe.svg b/svg/robe.svg
new file mode 100644
index 000000000..ab40268af
--- /dev/null
+++ b/svg/robe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/robin-hood-hat.svg b/svg/robin-hood-hat.svg
new file mode 100644
index 000000000..c62cec7db
--- /dev/null
+++ b/svg/robin-hood-hat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/robot-antennas.svg b/svg/robot-antennas.svg
new file mode 100644
index 000000000..b0e2bec69
--- /dev/null
+++ b/svg/robot-antennas.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/robot-golem.svg b/svg/robot-golem.svg
new file mode 100644
index 000000000..dbbf8e3d7
--- /dev/null
+++ b/svg/robot-golem.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/robot-grab.svg b/svg/robot-grab.svg
new file mode 100644
index 000000000..15f275248
--- /dev/null
+++ b/svg/robot-grab.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/robot-helmet.svg b/svg/robot-helmet.svg
new file mode 100644
index 000000000..0ac6a1907
--- /dev/null
+++ b/svg/robot-helmet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/robot-leg.svg b/svg/robot-leg.svg
new file mode 100644
index 000000000..bb03020d6
--- /dev/null
+++ b/svg/robot-leg.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rock-2.svg b/svg/rock-2.svg
new file mode 100644
index 000000000..1834dfe67
--- /dev/null
+++ b/svg/rock-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rock-golem.svg b/svg/rock-golem.svg
new file mode 100644
index 000000000..e0ce83dc7
--- /dev/null
+++ b/svg/rock-golem.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rock.svg b/svg/rock.svg
new file mode 100644
index 000000000..c544803ef
--- /dev/null
+++ b/svg/rock.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rocket-flight.svg b/svg/rocket-flight.svg
new file mode 100644
index 000000000..18f7d9591
--- /dev/null
+++ b/svg/rocket-flight.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rocket-thruster.svg b/svg/rocket-thruster.svg
new file mode 100644
index 000000000..f8bbc18ad
--- /dev/null
+++ b/svg/rocket-thruster.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rocket.svg b/svg/rocket.svg
new file mode 100644
index 000000000..1ecc714b3
--- /dev/null
+++ b/svg/rocket.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rocking-chair.svg b/svg/rocking-chair.svg
new file mode 100644
index 000000000..2f6d8667d
--- /dev/null
+++ b/svg/rocking-chair.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rod-of-asclepius.svg b/svg/rod-of-asclepius.svg
new file mode 100644
index 000000000..98ff28327
--- /dev/null
+++ b/svg/rod-of-asclepius.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rogue.svg b/svg/rogue.svg
new file mode 100644
index 000000000..0aa53b390
--- /dev/null
+++ b/svg/rogue.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rolled-cloth.svg b/svg/rolled-cloth.svg
new file mode 100644
index 000000000..1eba3f207
--- /dev/null
+++ b/svg/rolled-cloth.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/roller-skate.svg b/svg/roller-skate.svg
new file mode 100644
index 000000000..5e0e87e97
--- /dev/null
+++ b/svg/roller-skate.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rolling-bomb.svg b/svg/rolling-bomb.svg
new file mode 100644
index 000000000..24488448d
--- /dev/null
+++ b/svg/rolling-bomb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rolling-dice-cup.svg b/svg/rolling-dice-cup.svg
new file mode 100644
index 000000000..bfa0f2604
--- /dev/null
+++ b/svg/rolling-dice-cup.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rolling-dices.svg b/svg/rolling-dices.svg
new file mode 100644
index 000000000..1100b6127
--- /dev/null
+++ b/svg/rolling-dices.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rolling-energy.svg b/svg/rolling-energy.svg
new file mode 100644
index 000000000..2a18d9e2a
--- /dev/null
+++ b/svg/rolling-energy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rolling-suitcase.svg b/svg/rolling-suitcase.svg
new file mode 100644
index 000000000..aebe46778
--- /dev/null
+++ b/svg/rolling-suitcase.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/roman-shield.svg b/svg/roman-shield.svg
new file mode 100644
index 000000000..4cacfdb2e
--- /dev/null
+++ b/svg/roman-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/roman-toga.svg b/svg/roman-toga.svg
new file mode 100644
index 000000000..2b4e39d67
--- /dev/null
+++ b/svg/roman-toga.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rooster.svg b/svg/rooster.svg
new file mode 100644
index 000000000..0cb5715ac
--- /dev/null
+++ b/svg/rooster.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/root-tip.svg b/svg/root-tip.svg
new file mode 100644
index 000000000..c8108c199
--- /dev/null
+++ b/svg/root-tip.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rope-bridge.svg b/svg/rope-bridge.svg
new file mode 100644
index 000000000..3beb3b59b
--- /dev/null
+++ b/svg/rope-bridge.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rope-coil.svg b/svg/rope-coil.svg
new file mode 100644
index 000000000..317ad280b
--- /dev/null
+++ b/svg/rope-coil.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rope-dart.svg b/svg/rope-dart.svg
new file mode 100644
index 000000000..fa588a00c
--- /dev/null
+++ b/svg/rope-dart.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ropeway.svg b/svg/ropeway.svg
new file mode 100644
index 000000000..0b992c49d
--- /dev/null
+++ b/svg/ropeway.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rosa-shield.svg b/svg/rosa-shield.svg
new file mode 100644
index 000000000..f0733bd46
--- /dev/null
+++ b/svg/rosa-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rose.svg b/svg/rose.svg
new file mode 100644
index 000000000..b1fa1cc85
--- /dev/null
+++ b/svg/rose.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rotary-phone.svg b/svg/rotary-phone.svg
new file mode 100644
index 000000000..a85f153ce
--- /dev/null
+++ b/svg/rotary-phone.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rough-wound.svg b/svg/rough-wound.svg
new file mode 100644
index 000000000..fc9eefa2d
--- /dev/null
+++ b/svg/rough-wound.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/round-bottom-flask.svg b/svg/round-bottom-flask.svg
new file mode 100644
index 000000000..acd0d6e9c
--- /dev/null
+++ b/svg/round-bottom-flask.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/round-knob.svg b/svg/round-knob.svg
new file mode 100644
index 000000000..d4e7874f5
--- /dev/null
+++ b/svg/round-knob.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/round-potion.svg b/svg/round-potion.svg
new file mode 100644
index 000000000..71b69a086
--- /dev/null
+++ b/svg/round-potion.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/round-shield.svg b/svg/round-shield.svg
new file mode 100644
index 000000000..2d254ccc6
--- /dev/null
+++ b/svg/round-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/round-silo.svg b/svg/round-silo.svg
new file mode 100644
index 000000000..9790b4351
--- /dev/null
+++ b/svg/round-silo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/round-star.svg b/svg/round-star.svg
new file mode 100644
index 000000000..d035aa85c
--- /dev/null
+++ b/svg/round-star.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/round-straw-bale.svg b/svg/round-straw-bale.svg
new file mode 100644
index 000000000..4b677803d
--- /dev/null
+++ b/svg/round-straw-bale.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/round-struck.svg b/svg/round-struck.svg
new file mode 100644
index 000000000..c23aa6e91
--- /dev/null
+++ b/svg/round-struck.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/round-table.svg b/svg/round-table.svg
new file mode 100644
index 000000000..1cc77e913
--- /dev/null
+++ b/svg/round-table.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/royal-love.svg b/svg/royal-love.svg
new file mode 100644
index 000000000..4c40b45bf
--- /dev/null
+++ b/svg/royal-love.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rss-2.svg b/svg/rss-2.svg
new file mode 100644
index 000000000..915b13613
--- /dev/null
+++ b/svg/rss-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rss.svg b/svg/rss.svg
new file mode 100644
index 000000000..a4c3ffd73
--- /dev/null
+++ b/svg/rss.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rub-el-hizb.svg b/svg/rub-el-hizb.svg
new file mode 100644
index 000000000..860428891
--- /dev/null
+++ b/svg/rub-el-hizb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rubber-boot.svg b/svg/rubber-boot.svg
new file mode 100644
index 000000000..8c9868eb3
--- /dev/null
+++ b/svg/rubber-boot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rugby-conversion.svg b/svg/rugby-conversion.svg
new file mode 100644
index 000000000..03f5c875f
--- /dev/null
+++ b/svg/rugby-conversion.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rule-book.svg b/svg/rule-book.svg
new file mode 100644
index 000000000..ad22a8e3a
--- /dev/null
+++ b/svg/rule-book.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/run.svg b/svg/run.svg
new file mode 100644
index 000000000..b9a35c847
--- /dev/null
+++ b/svg/run.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rune-stone.svg b/svg/rune-stone.svg
new file mode 100644
index 000000000..2275a272e
--- /dev/null
+++ b/svg/rune-stone.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rune-sword.svg b/svg/rune-sword.svg
new file mode 100644
index 000000000..8d3ea16bb
--- /dev/null
+++ b/svg/rune-sword.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/running-ninja.svg b/svg/running-ninja.svg
new file mode 100644
index 000000000..0c15f7af4
--- /dev/null
+++ b/svg/running-ninja.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/running-shoe.svg b/svg/running-shoe.svg
new file mode 100644
index 000000000..badca83e0
--- /dev/null
+++ b/svg/running-shoe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rupee.svg b/svg/rupee.svg
new file mode 100644
index 000000000..d291b0fe1
--- /dev/null
+++ b/svg/rupee.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/rusty-sword.svg b/svg/rusty-sword.svg
new file mode 100644
index 000000000..9d9fcdd65
--- /dev/null
+++ b/svg/rusty-sword.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/s-brick.svg b/svg/s-brick.svg
new file mode 100644
index 000000000..311bcd53b
--- /dev/null
+++ b/svg/s-brick.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/saber-and-pistol.svg b/svg/saber-and-pistol.svg
new file mode 100644
index 000000000..bef661081
--- /dev/null
+++ b/svg/saber-and-pistol.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/saber-slash.svg b/svg/saber-slash.svg
new file mode 100644
index 000000000..ff93e6a34
--- /dev/null
+++ b/svg/saber-slash.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/saber-tooth.svg b/svg/saber-tooth.svg
new file mode 100644
index 000000000..bb3ff81a2
--- /dev/null
+++ b/svg/saber-tooth.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/saber-toothed-cat-head.svg b/svg/saber-toothed-cat-head.svg
new file mode 100644
index 000000000..f20f51521
--- /dev/null
+++ b/svg/saber-toothed-cat-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sabers-choc.svg b/svg/sabers-choc.svg
new file mode 100644
index 000000000..208664ba0
--- /dev/null
+++ b/svg/sabers-choc.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sacrificial-dagger.svg b/svg/sacrificial-dagger.svg
new file mode 100644
index 000000000..9b9c8a048
--- /dev/null
+++ b/svg/sacrificial-dagger.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sad-crab.svg b/svg/sad-crab.svg
new file mode 100644
index 000000000..cfb90890d
--- /dev/null
+++ b/svg/sad-crab.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/saddle.svg b/svg/saddle.svg
new file mode 100644
index 000000000..67b6c185c
--- /dev/null
+++ b/svg/saddle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/safety-pin.svg b/svg/safety-pin.svg
new file mode 100644
index 000000000..fb4a992bd
--- /dev/null
+++ b/svg/safety-pin.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sagittarius.svg b/svg/sagittarius.svg
new file mode 100644
index 000000000..9df105a0e
--- /dev/null
+++ b/svg/sagittarius.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sai.svg b/svg/sai.svg
new file mode 100644
index 000000000..1849d24b4
--- /dev/null
+++ b/svg/sai.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sail.svg b/svg/sail.svg
new file mode 100644
index 000000000..dd9fafeea
--- /dev/null
+++ b/svg/sail.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sailboat.svg b/svg/sailboat.svg
new file mode 100644
index 000000000..05f50d1b9
--- /dev/null
+++ b/svg/sailboat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/saint-basil-cathedral.svg b/svg/saint-basil-cathedral.svg
new file mode 100644
index 000000000..9050afdf7
--- /dev/null
+++ b/svg/saint-basil-cathedral.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/saiyan-suit.svg b/svg/saiyan-suit.svg
new file mode 100644
index 000000000..36e60978e
--- /dev/null
+++ b/svg/saiyan-suit.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/salamander.svg b/svg/salamander.svg
new file mode 100644
index 000000000..933073c77
--- /dev/null
+++ b/svg/salamander.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/salmon.svg b/svg/salmon.svg
new file mode 100644
index 000000000..57bb2a830
--- /dev/null
+++ b/svg/salmon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/saloon-doors.svg b/svg/saloon-doors.svg
new file mode 100644
index 000000000..a56e21297
--- /dev/null
+++ b/svg/saloon-doors.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/saloon.svg b/svg/saloon.svg
new file mode 100644
index 000000000..a4a11c7cf
--- /dev/null
+++ b/svg/saloon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/salt-shaker.svg b/svg/salt-shaker.svg
new file mode 100644
index 000000000..bc40acd21
--- /dev/null
+++ b/svg/salt-shaker.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/samara-mosque.svg b/svg/samara-mosque.svg
new file mode 100644
index 000000000..07d26ad9a
--- /dev/null
+++ b/svg/samara-mosque.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/samurai-helmet.svg b/svg/samurai-helmet.svg
new file mode 100644
index 000000000..a19531b61
--- /dev/null
+++ b/svg/samurai-helmet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/samus-helmet.svg b/svg/samus-helmet.svg
new file mode 100644
index 000000000..bf5482001
--- /dev/null
+++ b/svg/samus-helmet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sand-castle.svg b/svg/sand-castle.svg
new file mode 100644
index 000000000..451684026
--- /dev/null
+++ b/svg/sand-castle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sand-snake.svg b/svg/sand-snake.svg
new file mode 100644
index 000000000..dd157870e
--- /dev/null
+++ b/svg/sand-snake.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sandal.svg b/svg/sandal.svg
new file mode 100644
index 000000000..fc73df751
--- /dev/null
+++ b/svg/sandal.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sands-of-time.svg b/svg/sands-of-time.svg
new file mode 100644
index 000000000..0bb210f67
--- /dev/null
+++ b/svg/sands-of-time.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sandstorm.svg b/svg/sandstorm.svg
new file mode 100644
index 000000000..b574f41dc
--- /dev/null
+++ b/svg/sandstorm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sandwich.svg b/svg/sandwich.svg
new file mode 100644
index 000000000..b1e03d1b9
--- /dev/null
+++ b/svg/sandwich.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/santa-hat.svg b/svg/santa-hat.svg
new file mode 100644
index 000000000..664cbd8ba
--- /dev/null
+++ b/svg/santa-hat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/saphir.svg b/svg/saphir.svg
new file mode 100644
index 000000000..4ecd69cad
--- /dev/null
+++ b/svg/saphir.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sarcophagus.svg b/svg/sarcophagus.svg
new file mode 100644
index 000000000..ee7c895e6
--- /dev/null
+++ b/svg/sarcophagus.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sasquatch.svg b/svg/sasquatch.svg
new file mode 100644
index 000000000..377d08901
--- /dev/null
+++ b/svg/sasquatch.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/satellite-communication.svg b/svg/satellite-communication.svg
new file mode 100644
index 000000000..8deee4fd1
--- /dev/null
+++ b/svg/satellite-communication.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sattelite.svg b/svg/sattelite.svg
new file mode 100644
index 000000000..e836360d1
--- /dev/null
+++ b/svg/sattelite.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/saucepan.svg b/svg/saucepan.svg
new file mode 100644
index 000000000..f088e83c9
--- /dev/null
+++ b/svg/saucepan.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sauropod-head.svg b/svg/sauropod-head.svg
new file mode 100644
index 000000000..965cecc8c
--- /dev/null
+++ b/svg/sauropod-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sauropod-skeleton.svg b/svg/sauropod-skeleton.svg
new file mode 100644
index 000000000..e21346be5
--- /dev/null
+++ b/svg/sauropod-skeleton.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sausage.svg b/svg/sausage.svg
new file mode 100644
index 000000000..9dd3af0b1
--- /dev/null
+++ b/svg/sausage.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sausages-ribbon.svg b/svg/sausages-ribbon.svg
new file mode 100644
index 000000000..59d86aca2
--- /dev/null
+++ b/svg/sausages-ribbon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/save-arrow.svg b/svg/save-arrow.svg
new file mode 100644
index 000000000..812bf9e22
--- /dev/null
+++ b/svg/save-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/save.svg b/svg/save.svg
new file mode 100644
index 000000000..d35f7031a
--- /dev/null
+++ b/svg/save.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/saw-claw.svg b/svg/saw-claw.svg
new file mode 100644
index 000000000..a2d4f3f02
--- /dev/null
+++ b/svg/saw-claw.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sawed-off-shotgun.svg b/svg/sawed-off-shotgun.svg
new file mode 100644
index 000000000..cd5eb3000
--- /dev/null
+++ b/svg/sawed-off-shotgun.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/saxophone.svg b/svg/saxophone.svg
new file mode 100644
index 000000000..79e092e35
--- /dev/null
+++ b/svg/saxophone.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/scabbard.svg b/svg/scabbard.svg
new file mode 100644
index 000000000..92a743958
--- /dev/null
+++ b/svg/scabbard.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/scale-mail.svg b/svg/scale-mail.svg
new file mode 100644
index 000000000..8bd0b31a0
--- /dev/null
+++ b/svg/scale-mail.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/scales.svg b/svg/scales.svg
new file mode 100644
index 000000000..72254c5a4
--- /dev/null
+++ b/svg/scales.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/scallop.svg b/svg/scallop.svg
new file mode 100644
index 000000000..950cb594f
--- /dev/null
+++ b/svg/scallop.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/scalpel-strike.svg b/svg/scalpel-strike.svg
new file mode 100644
index 000000000..6fcfbf18a
--- /dev/null
+++ b/svg/scalpel-strike.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/scalpel.svg b/svg/scalpel.svg
new file mode 100644
index 000000000..7da1701c5
--- /dev/null
+++ b/svg/scalpel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/scar-wound.svg b/svg/scar-wound.svg
new file mode 100644
index 000000000..01b2b7a3f
--- /dev/null
+++ b/svg/scar-wound.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/scarab-beetle.svg b/svg/scarab-beetle.svg
new file mode 100644
index 000000000..d3d3c3827
--- /dev/null
+++ b/svg/scarab-beetle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/scarecrow.svg b/svg/scarecrow.svg
new file mode 100644
index 000000000..cdd407cee
--- /dev/null
+++ b/svg/scarecrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/school-bag.svg b/svg/school-bag.svg
new file mode 100644
index 000000000..810c1d8f2
--- /dev/null
+++ b/svg/school-bag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/school-of-fish.svg b/svg/school-of-fish.svg
new file mode 100644
index 000000000..0b88aa47d
--- /dev/null
+++ b/svg/school-of-fish.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/scissors-2.svg b/svg/scissors-2.svg
new file mode 100644
index 000000000..a57732632
--- /dev/null
+++ b/svg/scissors-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/scissors.svg b/svg/scissors.svg
new file mode 100644
index 000000000..fcb51b64f
--- /dev/null
+++ b/svg/scissors.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/scooter.svg b/svg/scooter.svg
new file mode 100644
index 000000000..601657213
--- /dev/null
+++ b/svg/scooter.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/scorpio.svg b/svg/scorpio.svg
new file mode 100644
index 000000000..229903b3f
--- /dev/null
+++ b/svg/scorpio.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/scorpion-tail.svg b/svg/scorpion-tail.svg
new file mode 100644
index 000000000..210ee31d3
--- /dev/null
+++ b/svg/scorpion-tail.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/scorpion.svg b/svg/scorpion.svg
new file mode 100644
index 000000000..a08d071ab
--- /dev/null
+++ b/svg/scorpion.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/scout-ship.svg b/svg/scout-ship.svg
new file mode 100644
index 000000000..b0ad2aa0a
--- /dev/null
+++ b/svg/scout-ship.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/screaming.svg b/svg/screaming.svg
new file mode 100644
index 000000000..9afa51888
--- /dev/null
+++ b/svg/screaming.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/screen-impact.svg b/svg/screen-impact.svg
new file mode 100644
index 000000000..934c84f85
--- /dev/null
+++ b/svg/screen-impact.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/screw-2.svg b/svg/screw-2.svg
new file mode 100644
index 000000000..fe7452d5d
--- /dev/null
+++ b/svg/screw-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/screw.svg b/svg/screw.svg
new file mode 100644
index 000000000..611de4d73
--- /dev/null
+++ b/svg/screw.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/screwdriver.svg b/svg/screwdriver.svg
new file mode 100644
index 000000000..d0a96154e
--- /dev/null
+++ b/svg/screwdriver.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/scroll-quill.svg b/svg/scroll-quill.svg
new file mode 100644
index 000000000..a5891b210
--- /dev/null
+++ b/svg/scroll-quill.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/scroll-unfurled.svg b/svg/scroll-unfurled.svg
new file mode 100644
index 000000000..4704d11b7
--- /dev/null
+++ b/svg/scroll-unfurled.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/scuba-mask.svg b/svg/scuba-mask.svg
new file mode 100644
index 000000000..797a24d6a
--- /dev/null
+++ b/svg/scuba-mask.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/scuba-tanks.svg b/svg/scuba-tanks.svg
new file mode 100644
index 000000000..2b7c95e7e
--- /dev/null
+++ b/svg/scuba-tanks.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/scythe.svg b/svg/scythe.svg
new file mode 100644
index 000000000..6193d8f42
--- /dev/null
+++ b/svg/scythe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sea-cliff.svg b/svg/sea-cliff.svg
new file mode 100644
index 000000000..db81183c6
--- /dev/null
+++ b/svg/sea-cliff.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sea-creature.svg b/svg/sea-creature.svg
new file mode 100644
index 000000000..e00eaf28f
--- /dev/null
+++ b/svg/sea-creature.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sea-dragon.svg b/svg/sea-dragon.svg
new file mode 100644
index 000000000..28a467198
--- /dev/null
+++ b/svg/sea-dragon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sea-serpent.svg b/svg/sea-serpent.svg
new file mode 100644
index 000000000..2c4fee8f3
--- /dev/null
+++ b/svg/sea-serpent.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sea-star.svg b/svg/sea-star.svg
new file mode 100644
index 000000000..4704bd715
--- /dev/null
+++ b/svg/sea-star.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sea-turtle.svg b/svg/sea-turtle.svg
new file mode 100644
index 000000000..a1c87ca12
--- /dev/null
+++ b/svg/sea-turtle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/seagull.svg b/svg/seagull.svg
new file mode 100644
index 000000000..ab9e41c11
--- /dev/null
+++ b/svg/seagull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/seahorse.svg b/svg/seahorse.svg
new file mode 100644
index 000000000..3dcdbb66a
--- /dev/null
+++ b/svg/seahorse.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/seated-mouse.svg b/svg/seated-mouse.svg
new file mode 100644
index 000000000..54b2922b3
--- /dev/null
+++ b/svg/seated-mouse.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/secret-book.svg b/svg/secret-book.svg
new file mode 100644
index 000000000..3d5b11d97
--- /dev/null
+++ b/svg/secret-book.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/secret-door.svg b/svg/secret-door.svg
new file mode 100644
index 000000000..2b4e65d9c
--- /dev/null
+++ b/svg/secret-door.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/security-gate.svg b/svg/security-gate.svg
new file mode 100644
index 000000000..aaf857990
--- /dev/null
+++ b/svg/security-gate.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/seedling.svg b/svg/seedling.svg
new file mode 100644
index 000000000..b257ccfed
--- /dev/null
+++ b/svg/seedling.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/select.svg b/svg/select.svg
new file mode 100644
index 000000000..ea472b294
--- /dev/null
+++ b/svg/select.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/self-love.svg b/svg/self-love.svg
new file mode 100644
index 000000000..cd63fffca
--- /dev/null
+++ b/svg/self-love.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sell-card.svg b/svg/sell-card.svg
new file mode 100644
index 000000000..70940517d
--- /dev/null
+++ b/svg/sell-card.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/semi-closed-eye.svg b/svg/semi-closed-eye.svg
new file mode 100644
index 000000000..e06001077
--- /dev/null
+++ b/svg/semi-closed-eye.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sensuousness.svg b/svg/sensuousness.svg
new file mode 100644
index 000000000..440c8e1b7
--- /dev/null
+++ b/svg/sensuousness.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sentry-gun.svg b/svg/sentry-gun.svg
new file mode 100644
index 000000000..45279a133
--- /dev/null
+++ b/svg/sentry-gun.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sergeant.svg b/svg/sergeant.svg
new file mode 100644
index 000000000..a0af216e9
--- /dev/null
+++ b/svg/sergeant.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/serrated-slash.svg b/svg/serrated-slash.svg
new file mode 100644
index 000000000..40ad1458f
--- /dev/null
+++ b/svg/serrated-slash.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/server-rack.svg b/svg/server-rack.svg
new file mode 100644
index 000000000..6284e776f
--- /dev/null
+++ b/svg/server-rack.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sesame.svg b/svg/sesame.svg
new file mode 100644
index 000000000..8844b45b6
--- /dev/null
+++ b/svg/sesame.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/settings-knobs.svg b/svg/settings-knobs.svg
new file mode 100644
index 000000000..16899ee86
--- /dev/null
+++ b/svg/settings-knobs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/seven-pointed-star.svg b/svg/seven-pointed-star.svg
new file mode 100644
index 000000000..e5c66be4a
--- /dev/null
+++ b/svg/seven-pointed-star.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/severed-hand.svg b/svg/severed-hand.svg
new file mode 100644
index 000000000..e5036b521
--- /dev/null
+++ b/svg/severed-hand.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sewed-shell.svg b/svg/sewed-shell.svg
new file mode 100644
index 000000000..da9c0a972
--- /dev/null
+++ b/svg/sewed-shell.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sewing-machine.svg b/svg/sewing-machine.svg
new file mode 100644
index 000000000..b61bf71c7
--- /dev/null
+++ b/svg/sewing-machine.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sewing-needle.svg b/svg/sewing-needle.svg
new file mode 100644
index 000000000..44a0a4b05
--- /dev/null
+++ b/svg/sewing-needle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sewing-string.svg b/svg/sewing-string.svg
new file mode 100644
index 000000000..5cdfc49c1
--- /dev/null
+++ b/svg/sewing-string.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sextant.svg b/svg/sextant.svg
new file mode 100644
index 000000000..0bca8219e
--- /dev/null
+++ b/svg/sextant.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shadow-follower.svg b/svg/shadow-follower.svg
new file mode 100644
index 000000000..2a42d2813
--- /dev/null
+++ b/svg/shadow-follower.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shadow-grasp.svg b/svg/shadow-grasp.svg
new file mode 100644
index 000000000..94446b3c5
--- /dev/null
+++ b/svg/shadow-grasp.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shaking-hands.svg b/svg/shaking-hands.svg
new file mode 100644
index 000000000..ec59ecce7
--- /dev/null
+++ b/svg/shaking-hands.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shambling-mound.svg b/svg/shambling-mound.svg
new file mode 100644
index 000000000..87c9c29ce
--- /dev/null
+++ b/svg/shambling-mound.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shambling-zombie.svg b/svg/shambling-zombie.svg
new file mode 100644
index 000000000..4ec67919a
--- /dev/null
+++ b/svg/shambling-zombie.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shamrock.svg b/svg/shamrock.svg
new file mode 100644
index 000000000..914fa0b8f
--- /dev/null
+++ b/svg/shamrock.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shard-sword.svg b/svg/shard-sword.svg
new file mode 100644
index 000000000..70038ece0
--- /dev/null
+++ b/svg/shard-sword.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/share.svg b/svg/share.svg
new file mode 100644
index 000000000..7963e1436
--- /dev/null
+++ b/svg/share.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shark-bite.svg b/svg/shark-bite.svg
new file mode 100644
index 000000000..df163053f
--- /dev/null
+++ b/svg/shark-bite.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shark-fin.svg b/svg/shark-fin.svg
new file mode 100644
index 000000000..282c46b08
--- /dev/null
+++ b/svg/shark-fin.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shark-jaws.svg b/svg/shark-jaws.svg
new file mode 100644
index 000000000..eae65335a
--- /dev/null
+++ b/svg/shark-jaws.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sharp-axe.svg b/svg/sharp-axe.svg
new file mode 100644
index 000000000..8783307c2
--- /dev/null
+++ b/svg/sharp-axe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sharp-crown.svg b/svg/sharp-crown.svg
new file mode 100644
index 000000000..b97d71be6
--- /dev/null
+++ b/svg/sharp-crown.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sharp-halberd.svg b/svg/sharp-halberd.svg
new file mode 100644
index 000000000..1b68f6f61
--- /dev/null
+++ b/svg/sharp-halberd.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sharp-lips.svg b/svg/sharp-lips.svg
new file mode 100644
index 000000000..32ce6fbd0
--- /dev/null
+++ b/svg/sharp-lips.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sharp-shuriken.svg b/svg/sharp-shuriken.svg
new file mode 100644
index 000000000..d104b3b53
--- /dev/null
+++ b/svg/sharp-shuriken.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sharp-smile.svg b/svg/sharp-smile.svg
new file mode 100644
index 000000000..01912eb12
--- /dev/null
+++ b/svg/sharp-smile.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sharped-teeth-skull.svg b/svg/sharped-teeth-skull.svg
new file mode 100644
index 000000000..4013d6526
--- /dev/null
+++ b/svg/sharped-teeth-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shatter.svg b/svg/shatter.svg
new file mode 100644
index 000000000..0cf2a4422
--- /dev/null
+++ b/svg/shatter.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shattered-glass.svg b/svg/shattered-glass.svg
new file mode 100644
index 000000000..45fe7dde0
--- /dev/null
+++ b/svg/shattered-glass.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shattered-heart.svg b/svg/shattered-heart.svg
new file mode 100644
index 000000000..3f576356e
--- /dev/null
+++ b/svg/shattered-heart.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shattered-sword.svg b/svg/shattered-sword.svg
new file mode 100644
index 000000000..cc30f2dd9
--- /dev/null
+++ b/svg/shattered-sword.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shears.svg b/svg/shears.svg
new file mode 100644
index 000000000..e8aade1cf
--- /dev/null
+++ b/svg/shears.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sheep.svg b/svg/sheep.svg
new file mode 100644
index 000000000..256bd1af4
--- /dev/null
+++ b/svg/sheep.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sheikah-eye.svg b/svg/sheikah-eye.svg
new file mode 100644
index 000000000..137bd98a5
--- /dev/null
+++ b/svg/sheikah-eye.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shepherds-crook.svg b/svg/shepherds-crook.svg
new file mode 100644
index 000000000..803c4d8e6
--- /dev/null
+++ b/svg/shepherds-crook.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sherlock-holmes.svg b/svg/sherlock-holmes.svg
new file mode 100644
index 000000000..3d09112aa
--- /dev/null
+++ b/svg/sherlock-holmes.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shield-bash.svg b/svg/shield-bash.svg
new file mode 100644
index 000000000..c14dc2cf3
--- /dev/null
+++ b/svg/shield-bash.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shield-bounces.svg b/svg/shield-bounces.svg
new file mode 100644
index 000000000..8d4347b60
--- /dev/null
+++ b/svg/shield-bounces.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shield-disabled.svg b/svg/shield-disabled.svg
new file mode 100644
index 000000000..f261eedb5
--- /dev/null
+++ b/svg/shield-disabled.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shield-echoes.svg b/svg/shield-echoes.svg
new file mode 100644
index 000000000..23bdb287a
--- /dev/null
+++ b/svg/shield-echoes.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shield-impact.svg b/svg/shield-impact.svg
new file mode 100644
index 000000000..80e85e5d9
--- /dev/null
+++ b/svg/shield-impact.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shield-opposition.svg b/svg/shield-opposition.svg
new file mode 100644
index 000000000..2f5e61046
--- /dev/null
+++ b/svg/shield-opposition.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shield-reflect.svg b/svg/shield-reflect.svg
new file mode 100644
index 000000000..0593427bb
--- /dev/null
+++ b/svg/shield-reflect.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shield.svg b/svg/shield.svg
new file mode 100644
index 000000000..8662acf21
--- /dev/null
+++ b/svg/shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shieldcomb.svg b/svg/shieldcomb.svg
new file mode 100644
index 000000000..6fb9c92d9
--- /dev/null
+++ b/svg/shieldcomb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shining-claw.svg b/svg/shining-claw.svg
new file mode 100644
index 000000000..9d28d7ffc
--- /dev/null
+++ b/svg/shining-claw.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shining-heart.svg b/svg/shining-heart.svg
new file mode 100644
index 000000000..e770832a5
--- /dev/null
+++ b/svg/shining-heart.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shining-sword.svg b/svg/shining-sword.svg
new file mode 100644
index 000000000..47a82cda3
--- /dev/null
+++ b/svg/shining-sword.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shinto-shrine-mirror.svg b/svg/shinto-shrine-mirror.svg
new file mode 100644
index 000000000..ed04b8ba3
--- /dev/null
+++ b/svg/shinto-shrine-mirror.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shinto-shrine.svg b/svg/shinto-shrine.svg
new file mode 100644
index 000000000..c736f5d28
--- /dev/null
+++ b/svg/shinto-shrine.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shiny-apple.svg b/svg/shiny-apple.svg
new file mode 100644
index 000000000..c5a114d59
--- /dev/null
+++ b/svg/shiny-apple.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shiny-entrance.svg b/svg/shiny-entrance.svg
new file mode 100644
index 000000000..e41dd6b46
--- /dev/null
+++ b/svg/shiny-entrance.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shiny-iris.svg b/svg/shiny-iris.svg
new file mode 100644
index 000000000..fc8c862c4
--- /dev/null
+++ b/svg/shiny-iris.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shiny-omega.svg b/svg/shiny-omega.svg
new file mode 100644
index 000000000..4d4d2916b
--- /dev/null
+++ b/svg/shiny-omega.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shiny-purse.svg b/svg/shiny-purse.svg
new file mode 100644
index 000000000..6f0a6e009
--- /dev/null
+++ b/svg/shiny-purse.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ship-bow.svg b/svg/ship-bow.svg
new file mode 100644
index 000000000..ce3638374
--- /dev/null
+++ b/svg/ship-bow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ship-wheel.svg b/svg/ship-wheel.svg
new file mode 100644
index 000000000..46d7f24d3
--- /dev/null
+++ b/svg/ship-wheel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ship-wreck.svg b/svg/ship-wreck.svg
new file mode 100644
index 000000000..dedb97f75
--- /dev/null
+++ b/svg/ship-wreck.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shirt-button.svg b/svg/shirt-button.svg
new file mode 100644
index 000000000..1cd5197a6
--- /dev/null
+++ b/svg/shirt-button.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shirt.svg b/svg/shirt.svg
new file mode 100644
index 000000000..638305c73
--- /dev/null
+++ b/svg/shirt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shoebill-stork.svg b/svg/shoebill-stork.svg
new file mode 100644
index 000000000..70039165e
--- /dev/null
+++ b/svg/shoebill-stork.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shooner-sailboat.svg b/svg/shooner-sailboat.svg
new file mode 100644
index 000000000..7f9ca51d8
--- /dev/null
+++ b/svg/shooner-sailboat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shop.svg b/svg/shop.svg
new file mode 100644
index 000000000..4b5301627
--- /dev/null
+++ b/svg/shop.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shopping-bag.svg b/svg/shopping-bag.svg
new file mode 100644
index 000000000..76dca8095
--- /dev/null
+++ b/svg/shopping-bag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shopping-cart.svg b/svg/shopping-cart.svg
new file mode 100644
index 000000000..16a8f55c9
--- /dev/null
+++ b/svg/shopping-cart.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shorts.svg b/svg/shorts.svg
new file mode 100644
index 000000000..fec9dc13b
--- /dev/null
+++ b/svg/shorts.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shotgun-rounds.svg b/svg/shotgun-rounds.svg
new file mode 100644
index 000000000..49b9a9db5
--- /dev/null
+++ b/svg/shotgun-rounds.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shotgun.svg b/svg/shotgun.svg
new file mode 100644
index 000000000..6f8bc828f
--- /dev/null
+++ b/svg/shotgun.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shoulder-armor.svg b/svg/shoulder-armor.svg
new file mode 100644
index 000000000..c33f4a1c2
--- /dev/null
+++ b/svg/shoulder-armor.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shoulder-bag.svg b/svg/shoulder-bag.svg
new file mode 100644
index 000000000..697c1e5ef
--- /dev/null
+++ b/svg/shoulder-bag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shoulder-scales.svg b/svg/shoulder-scales.svg
new file mode 100644
index 000000000..ec220fd0b
--- /dev/null
+++ b/svg/shoulder-scales.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shouting.svg b/svg/shouting.svg
new file mode 100644
index 000000000..5841aa9cb
--- /dev/null
+++ b/svg/shouting.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shower.svg b/svg/shower.svg
new file mode 100644
index 000000000..6b8752453
--- /dev/null
+++ b/svg/shower.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shrimp.svg b/svg/shrimp.svg
new file mode 100644
index 000000000..0505bf9f6
--- /dev/null
+++ b/svg/shrimp.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shrug.svg b/svg/shrug.svg
new file mode 100644
index 000000000..659cd722c
--- /dev/null
+++ b/svg/shrug.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shuriken-2.svg b/svg/shuriken-2.svg
new file mode 100644
index 000000000..38b587dfe
--- /dev/null
+++ b/svg/shuriken-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shuriken-aperture.svg b/svg/shuriken-aperture.svg
new file mode 100644
index 000000000..4a88d6751
--- /dev/null
+++ b/svg/shuriken-aperture.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shuriken.svg b/svg/shuriken.svg
new file mode 100644
index 000000000..e800574b9
--- /dev/null
+++ b/svg/shuriken.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shut-rose.svg b/svg/shut-rose.svg
new file mode 100644
index 000000000..8a58b2d72
--- /dev/null
+++ b/svg/shut-rose.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/shuttlecock.svg b/svg/shuttlecock.svg
new file mode 100644
index 000000000..0a7337b14
--- /dev/null
+++ b/svg/shuttlecock.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sickle.svg b/svg/sickle.svg
new file mode 100644
index 000000000..63aae7652
--- /dev/null
+++ b/svg/sickle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sideswipe.svg b/svg/sideswipe.svg
new file mode 100644
index 000000000..65a1f5e0e
--- /dev/null
+++ b/svg/sideswipe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/siege-ram.svg b/svg/siege-ram.svg
new file mode 100644
index 000000000..4b05e23b3
--- /dev/null
+++ b/svg/siege-ram.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/siege-tower.svg b/svg/siege-tower.svg
new file mode 100644
index 000000000..fca64d593
--- /dev/null
+++ b/svg/siege-tower.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sight-disabled.svg b/svg/sight-disabled.svg
new file mode 100644
index 000000000..aa31bc844
--- /dev/null
+++ b/svg/sight-disabled.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/silence.svg b/svg/silence.svg
new file mode 100644
index 000000000..069b30717
--- /dev/null
+++ b/svg/silence.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/silenced.svg b/svg/silenced.svg
new file mode 100644
index 000000000..71ebec801
--- /dev/null
+++ b/svg/silenced.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/silex.svg b/svg/silex.svg
new file mode 100644
index 000000000..8784713f4
--- /dev/null
+++ b/svg/silex.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/silver-bullet.svg b/svg/silver-bullet.svg
new file mode 100644
index 000000000..7b7f9e848
--- /dev/null
+++ b/svg/silver-bullet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sinagot.svg b/svg/sinagot.svg
new file mode 100644
index 000000000..0af3aabbc
--- /dev/null
+++ b/svg/sinagot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sing.svg b/svg/sing.svg
new file mode 100644
index 000000000..609c127ed
--- /dev/null
+++ b/svg/sing.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sinking-ship.svg b/svg/sinking-ship.svg
new file mode 100644
index 000000000..18cd529ab
--- /dev/null
+++ b/svg/sinking-ship.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sinking-trap.svg b/svg/sinking-trap.svg
new file mode 100644
index 000000000..7ba9946fe
--- /dev/null
+++ b/svg/sinking-trap.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sinusoidal-beam.svg b/svg/sinusoidal-beam.svg
new file mode 100644
index 000000000..63b71ba98
--- /dev/null
+++ b/svg/sinusoidal-beam.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/siren.svg b/svg/siren.svg
new file mode 100644
index 000000000..743c79df9
--- /dev/null
+++ b/svg/siren.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sitting-dog.svg b/svg/sitting-dog.svg
new file mode 100644
index 000000000..8df361b00
--- /dev/null
+++ b/svg/sitting-dog.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/six-eyes.svg b/svg/six-eyes.svg
new file mode 100644
index 000000000..8babfcd04
--- /dev/null
+++ b/svg/six-eyes.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/skateboard.svg b/svg/skateboard.svg
new file mode 100644
index 000000000..4f93dfd09
--- /dev/null
+++ b/svg/skateboard.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/skateboarding-01.svg b/svg/skateboarding-01.svg
new file mode 100644
index 000000000..3d516e57b
--- /dev/null
+++ b/svg/skateboarding-01.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/skateboarding-02.svg b/svg/skateboarding-02.svg
new file mode 100644
index 000000000..b5086c419
--- /dev/null
+++ b/svg/skateboarding-02.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/skeletal-hand.svg b/svg/skeletal-hand.svg
new file mode 100644
index 000000000..3d4195763
--- /dev/null
+++ b/svg/skeletal-hand.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/skeleton-inside.svg b/svg/skeleton-inside.svg
new file mode 100644
index 000000000..3dfa7f499
--- /dev/null
+++ b/svg/skeleton-inside.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/skeleton-key.svg b/svg/skeleton-key.svg
new file mode 100644
index 000000000..1bdedfc9f
--- /dev/null
+++ b/svg/skeleton-key.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/skeleton.svg b/svg/skeleton.svg
new file mode 100644
index 000000000..5c5c7c91e
--- /dev/null
+++ b/svg/skeleton.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ski-boot.svg b/svg/ski-boot.svg
new file mode 100644
index 000000000..9017bcade
--- /dev/null
+++ b/svg/ski-boot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/skid-mark.svg b/svg/skid-mark.svg
new file mode 100644
index 000000000..57769c995
--- /dev/null
+++ b/svg/skid-mark.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/skier.svg b/svg/skier.svg
new file mode 100644
index 000000000..87af517dc
--- /dev/null
+++ b/svg/skier.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/skills.svg b/svg/skills.svg
new file mode 100644
index 000000000..c7d3ff9be
--- /dev/null
+++ b/svg/skills.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/skimmer-hat.svg b/svg/skimmer-hat.svg
new file mode 100644
index 000000000..010b4a2d5
--- /dev/null
+++ b/svg/skimmer-hat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/skipping-rope.svg b/svg/skipping-rope.svg
new file mode 100644
index 000000000..5d117bcca
--- /dev/null
+++ b/svg/skipping-rope.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/skirt.svg b/svg/skirt.svg
new file mode 100644
index 000000000..eed8ca49d
--- /dev/null
+++ b/svg/skirt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/skis.svg b/svg/skis.svg
new file mode 100644
index 000000000..ed9221b0b
--- /dev/null
+++ b/svg/skis.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/skull-bolt.svg b/svg/skull-bolt.svg
new file mode 100644
index 000000000..7710882a2
--- /dev/null
+++ b/svg/skull-bolt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/skull-crack.svg b/svg/skull-crack.svg
new file mode 100644
index 000000000..976c9ac36
--- /dev/null
+++ b/svg/skull-crack.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/skull-crossed-bones.svg b/svg/skull-crossed-bones.svg
new file mode 100644
index 000000000..86b3fb10f
--- /dev/null
+++ b/svg/skull-crossed-bones.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/skull-in-jar.svg b/svg/skull-in-jar.svg
new file mode 100644
index 000000000..2cd586623
--- /dev/null
+++ b/svg/skull-in-jar.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/skull-mask.svg b/svg/skull-mask.svg
new file mode 100644
index 000000000..1d0c5d3a3
--- /dev/null
+++ b/svg/skull-mask.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/skull-ring.svg b/svg/skull-ring.svg
new file mode 100644
index 000000000..a3df6dc37
--- /dev/null
+++ b/svg/skull-ring.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/skull-sabertooth.svg b/svg/skull-sabertooth.svg
new file mode 100644
index 000000000..b2b928ea7
--- /dev/null
+++ b/svg/skull-sabertooth.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/skull-shield.svg b/svg/skull-shield.svg
new file mode 100644
index 000000000..351f8a228
--- /dev/null
+++ b/svg/skull-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/skull-signet.svg b/svg/skull-signet.svg
new file mode 100644
index 000000000..85e1fe5ef
--- /dev/null
+++ b/svg/skull-signet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/skull-slices.svg b/svg/skull-slices.svg
new file mode 100644
index 000000000..723b29bc0
--- /dev/null
+++ b/svg/skull-slices.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/skull-staff.svg b/svg/skull-staff.svg
new file mode 100644
index 000000000..3882ba08a
--- /dev/null
+++ b/svg/skull-staff.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/skull-with-syringe.svg b/svg/skull-with-syringe.svg
new file mode 100644
index 000000000..b7e3a8cd3
--- /dev/null
+++ b/svg/skull-with-syringe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/slalom.svg b/svg/slalom.svg
new file mode 100644
index 000000000..0734921eb
--- /dev/null
+++ b/svg/slalom.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/slap.svg b/svg/slap.svg
new file mode 100644
index 000000000..dcb907aa4
--- /dev/null
+++ b/svg/slap.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/slashed-shield.svg b/svg/slashed-shield.svg
new file mode 100644
index 000000000..0d872b26c
--- /dev/null
+++ b/svg/slashed-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/slavery-whip.svg b/svg/slavery-whip.svg
new file mode 100644
index 000000000..53ce0f022
--- /dev/null
+++ b/svg/slavery-whip.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sleeping-bag.svg b/svg/sleeping-bag.svg
new file mode 100644
index 000000000..47b3340f1
--- /dev/null
+++ b/svg/sleeping-bag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sleepy.svg b/svg/sleepy.svg
new file mode 100644
index 000000000..68289901e
--- /dev/null
+++ b/svg/sleepy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sleeveless-jacket.svg b/svg/sleeveless-jacket.svg
new file mode 100644
index 000000000..6dacce996
--- /dev/null
+++ b/svg/sleeveless-jacket.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sleeveless-top.svg b/svg/sleeveless-top.svg
new file mode 100644
index 000000000..2f02f7148
--- /dev/null
+++ b/svg/sleeveless-top.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sliced-bread.svg b/svg/sliced-bread.svg
new file mode 100644
index 000000000..02a7ecd04
--- /dev/null
+++ b/svg/sliced-bread.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sliced-mushroom.svg b/svg/sliced-mushroom.svg
new file mode 100644
index 000000000..fbe0605b6
--- /dev/null
+++ b/svg/sliced-mushroom.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sliced-sausage.svg b/svg/sliced-sausage.svg
new file mode 100644
index 000000000..f185fef21
--- /dev/null
+++ b/svg/sliced-sausage.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/slicing-arrow.svg b/svg/slicing-arrow.svg
new file mode 100644
index 000000000..b6fce4e8e
--- /dev/null
+++ b/svg/slicing-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/slime.svg b/svg/slime.svg
new file mode 100644
index 000000000..63ce27f81
--- /dev/null
+++ b/svg/slime.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sling.svg b/svg/sling.svg
new file mode 100644
index 000000000..e5de56bd9
--- /dev/null
+++ b/svg/sling.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/slingshot.svg b/svg/slingshot.svg
new file mode 100644
index 000000000..00661fb42
--- /dev/null
+++ b/svg/slingshot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/slipknot.svg b/svg/slipknot.svg
new file mode 100644
index 000000000..bd2ec4222
--- /dev/null
+++ b/svg/slipknot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/slippers.svg b/svg/slippers.svg
new file mode 100644
index 000000000..dad1a5aa5
--- /dev/null
+++ b/svg/slippers.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/slot-machine.svg b/svg/slot-machine.svg
new file mode 100644
index 000000000..c4a018314
--- /dev/null
+++ b/svg/slot-machine.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sloth.svg b/svg/sloth.svg
new file mode 100644
index 000000000..75a51da4e
--- /dev/null
+++ b/svg/sloth.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/slow-blob.svg b/svg/slow-blob.svg
new file mode 100644
index 000000000..1531af18b
--- /dev/null
+++ b/svg/slow-blob.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/slumbering-sanctuary.svg b/svg/slumbering-sanctuary.svg
new file mode 100644
index 000000000..79a65ac6c
--- /dev/null
+++ b/svg/slumbering-sanctuary.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sly.svg b/svg/sly.svg
new file mode 100644
index 000000000..78ef249f2
--- /dev/null
+++ b/svg/sly.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/small-fire.svg b/svg/small-fire.svg
new file mode 100644
index 000000000..a60fca883
--- /dev/null
+++ b/svg/small-fire.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/small-fishing-sailboat.svg b/svg/small-fishing-sailboat.svg
new file mode 100644
index 000000000..97b9e5348
--- /dev/null
+++ b/svg/small-fishing-sailboat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/smart.svg b/svg/smart.svg
new file mode 100644
index 000000000..06506aa4a
--- /dev/null
+++ b/svg/smart.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/smartphone-2.svg b/svg/smartphone-2.svg
new file mode 100644
index 000000000..8e951fd87
--- /dev/null
+++ b/svg/smartphone-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/smartphone.svg b/svg/smartphone.svg
new file mode 100644
index 000000000..672874a57
--- /dev/null
+++ b/svg/smartphone.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/smash-arrows.svg b/svg/smash-arrows.svg
new file mode 100644
index 000000000..bd258b839
--- /dev/null
+++ b/svg/smash-arrows.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/smitten.svg b/svg/smitten.svg
new file mode 100644
index 000000000..100caa322
--- /dev/null
+++ b/svg/smitten.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/smoke-bomb.svg b/svg/smoke-bomb.svg
new file mode 100644
index 000000000..c8abef82c
--- /dev/null
+++ b/svg/smoke-bomb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/smoking-finger.svg b/svg/smoking-finger.svg
new file mode 100644
index 000000000..e012e467a
--- /dev/null
+++ b/svg/smoking-finger.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/smoking-orb.svg b/svg/smoking-orb.svg
new file mode 100644
index 000000000..dcd627aa2
--- /dev/null
+++ b/svg/smoking-orb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/smoking-pipe.svg b/svg/smoking-pipe.svg
new file mode 100644
index 000000000..41b3f5503
--- /dev/null
+++ b/svg/smoking-pipe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/smoking-volcano.svg b/svg/smoking-volcano.svg
new file mode 100644
index 000000000..91793a1e5
--- /dev/null
+++ b/svg/smoking-volcano.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/snail-eyes.svg b/svg/snail-eyes.svg
new file mode 100644
index 000000000..ad6eda6f4
--- /dev/null
+++ b/svg/snail-eyes.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/snail.svg b/svg/snail.svg
new file mode 100644
index 000000000..65c3a9abb
--- /dev/null
+++ b/svg/snail.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/snake-bite.svg b/svg/snake-bite.svg
new file mode 100644
index 000000000..892639a63
--- /dev/null
+++ b/svg/snake-bite.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/snake-egg.svg b/svg/snake-egg.svg
new file mode 100644
index 000000000..9b351af7c
--- /dev/null
+++ b/svg/snake-egg.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/snake-jar.svg b/svg/snake-jar.svg
new file mode 100644
index 000000000..40b9935fe
--- /dev/null
+++ b/svg/snake-jar.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/snake-spiral.svg b/svg/snake-spiral.svg
new file mode 100644
index 000000000..55240a8a2
--- /dev/null
+++ b/svg/snake-spiral.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/snake-tongue.svg b/svg/snake-tongue.svg
new file mode 100644
index 000000000..4ce5714b4
--- /dev/null
+++ b/svg/snake-tongue.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/snake-totem.svg b/svg/snake-totem.svg
new file mode 100644
index 000000000..1ba74d1e6
--- /dev/null
+++ b/svg/snake-totem.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/snake.svg b/svg/snake.svg
new file mode 100644
index 000000000..40cbe7a68
--- /dev/null
+++ b/svg/snake.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/snatch.svg b/svg/snatch.svg
new file mode 100644
index 000000000..e447aed14
--- /dev/null
+++ b/svg/snatch.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sniffing-dog.svg b/svg/sniffing-dog.svg
new file mode 100644
index 000000000..e82ff9a80
--- /dev/null
+++ b/svg/sniffing-dog.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/snitch-quidditch-ball.svg b/svg/snitch-quidditch-ball.svg
new file mode 100644
index 000000000..1eef216ed
--- /dev/null
+++ b/svg/snitch-quidditch-ball.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/snorkel.svg b/svg/snorkel.svg
new file mode 100644
index 000000000..dd1af505d
--- /dev/null
+++ b/svg/snorkel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/snout.svg b/svg/snout.svg
new file mode 100644
index 000000000..f5710bf6c
--- /dev/null
+++ b/svg/snout.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/snow-bottle.svg b/svg/snow-bottle.svg
new file mode 100644
index 000000000..0d0a0f682
--- /dev/null
+++ b/svg/snow-bottle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/snowboard.svg b/svg/snowboard.svg
new file mode 100644
index 000000000..6b44704c6
--- /dev/null
+++ b/svg/snowboard.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/snowflake-1.svg b/svg/snowflake-1.svg
new file mode 100644
index 000000000..196c30755
--- /dev/null
+++ b/svg/snowflake-1.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/snowflake-2.svg b/svg/snowflake-2.svg
new file mode 100644
index 000000000..4aa4ccc07
--- /dev/null
+++ b/svg/snowflake-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/snowing.svg b/svg/snowing.svg
new file mode 100644
index 000000000..dbd722a82
--- /dev/null
+++ b/svg/snowing.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/snowman.svg b/svg/snowman.svg
new file mode 100644
index 000000000..8c3b0b0bf
--- /dev/null
+++ b/svg/snowman.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/soap-experiment.svg b/svg/soap-experiment.svg
new file mode 100644
index 000000000..5242b81a6
--- /dev/null
+++ b/svg/soap-experiment.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/soap.svg b/svg/soap.svg
new file mode 100644
index 000000000..90993254b
--- /dev/null
+++ b/svg/soap.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/soccer-ball.svg b/svg/soccer-ball.svg
new file mode 100644
index 000000000..492f97455
--- /dev/null
+++ b/svg/soccer-ball.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/soccer-field.svg b/svg/soccer-field.svg
new file mode 100644
index 000000000..c864b7a7d
--- /dev/null
+++ b/svg/soccer-field.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/soccer-kick.svg b/svg/soccer-kick.svg
new file mode 100644
index 000000000..6d9b508e3
--- /dev/null
+++ b/svg/soccer-kick.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/socks.svg b/svg/socks.svg
new file mode 100644
index 000000000..e5a8e1d60
--- /dev/null
+++ b/svg/socks.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/soda-bottle.svg b/svg/soda-bottle.svg
new file mode 100644
index 000000000..7dca82f77
--- /dev/null
+++ b/svg/soda-bottle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/soda-can.svg b/svg/soda-can.svg
new file mode 100644
index 000000000..094b1511d
--- /dev/null
+++ b/svg/soda-can.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sofa.svg b/svg/sofa.svg
new file mode 100644
index 000000000..dc187ec9d
--- /dev/null
+++ b/svg/sofa.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/solar-power.svg b/svg/solar-power.svg
new file mode 100644
index 000000000..e43be07f1
--- /dev/null
+++ b/svg/solar-power.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/solar-system.svg b/svg/solar-system.svg
new file mode 100644
index 000000000..eca996605
--- /dev/null
+++ b/svg/solar-system.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/solar-time.svg b/svg/solar-time.svg
new file mode 100644
index 000000000..f751ba69b
--- /dev/null
+++ b/svg/solar-time.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/soldering-iron.svg b/svg/soldering-iron.svg
new file mode 100644
index 000000000..f439bdeac
--- /dev/null
+++ b/svg/soldering-iron.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/solid-leaf.svg b/svg/solid-leaf.svg
new file mode 100644
index 000000000..cceabde67
--- /dev/null
+++ b/svg/solid-leaf.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sombrero.svg b/svg/sombrero.svg
new file mode 100644
index 000000000..ed249d64a
--- /dev/null
+++ b/svg/sombrero.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sonic-boom.svg b/svg/sonic-boom.svg
new file mode 100644
index 000000000..2613ad524
--- /dev/null
+++ b/svg/sonic-boom.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sonic-lightning.svg b/svg/sonic-lightning.svg
new file mode 100644
index 000000000..83ffbe295
--- /dev/null
+++ b/svg/sonic-lightning.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sonic-screech.svg b/svg/sonic-screech.svg
new file mode 100644
index 000000000..ec3993fa8
--- /dev/null
+++ b/svg/sonic-screech.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sonic-shoes.svg b/svg/sonic-shoes.svg
new file mode 100644
index 000000000..2a47d85f1
--- /dev/null
+++ b/svg/sonic-shoes.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sonic-shout.svg b/svg/sonic-shout.svg
new file mode 100644
index 000000000..cb39ed7ac
--- /dev/null
+++ b/svg/sonic-shout.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/soul-vessel.svg b/svg/soul-vessel.svg
new file mode 100644
index 000000000..458e015c0
--- /dev/null
+++ b/svg/soul-vessel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sound-off.svg b/svg/sound-off.svg
new file mode 100644
index 000000000..6d42f7c8f
--- /dev/null
+++ b/svg/sound-off.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sound-on.svg b/svg/sound-on.svg
new file mode 100644
index 000000000..d5d39f680
--- /dev/null
+++ b/svg/sound-on.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sound-waves.svg b/svg/sound-waves.svg
new file mode 100644
index 000000000..85bf3c2a3
--- /dev/null
+++ b/svg/sound-waves.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/south-africa-flag.svg b/svg/south-africa-flag.svg
new file mode 100644
index 000000000..e40520861
--- /dev/null
+++ b/svg/south-africa-flag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/south-africa.svg b/svg/south-africa.svg
new file mode 100644
index 000000000..7838b4c8f
--- /dev/null
+++ b/svg/south-africa.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/south-america.svg b/svg/south-america.svg
new file mode 100644
index 000000000..aacf36762
--- /dev/null
+++ b/svg/south-america.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/south-korea.svg b/svg/south-korea.svg
new file mode 100644
index 000000000..80177925a
--- /dev/null
+++ b/svg/south-korea.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/space-needle.svg b/svg/space-needle.svg
new file mode 100644
index 000000000..d1abf6072
--- /dev/null
+++ b/svg/space-needle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/space-shuttle.svg b/svg/space-shuttle.svg
new file mode 100644
index 000000000..cede51530
--- /dev/null
+++ b/svg/space-shuttle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/space-suit.svg b/svg/space-suit.svg
new file mode 100644
index 000000000..0c9beccf3
--- /dev/null
+++ b/svg/space-suit.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spaceship.svg b/svg/spaceship.svg
new file mode 100644
index 000000000..637463b39
--- /dev/null
+++ b/svg/spaceship.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spade-skull.svg b/svg/spade-skull.svg
new file mode 100644
index 000000000..5ed641509
--- /dev/null
+++ b/svg/spade-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spade.svg b/svg/spade.svg
new file mode 100644
index 000000000..2876ab5e2
--- /dev/null
+++ b/svg/spade.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spades.svg b/svg/spades.svg
new file mode 100644
index 000000000..a530ad675
--- /dev/null
+++ b/svg/spades.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spain.svg b/svg/spain.svg
new file mode 100644
index 000000000..26e914cf0
--- /dev/null
+++ b/svg/spain.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spanner.svg b/svg/spanner.svg
new file mode 100644
index 000000000..ebbedce6d
--- /dev/null
+++ b/svg/spanner.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spark-plug.svg b/svg/spark-plug.svg
new file mode 100644
index 000000000..2483970da
--- /dev/null
+++ b/svg/spark-plug.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spark-spirit.svg b/svg/spark-spirit.svg
new file mode 100644
index 000000000..e7799b5b0
--- /dev/null
+++ b/svg/spark-spirit.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sparkles.svg b/svg/sparkles.svg
new file mode 100644
index 000000000..b7354457d
--- /dev/null
+++ b/svg/sparkles.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sparkling-sabre.svg b/svg/sparkling-sabre.svg
new file mode 100644
index 000000000..1e70c9a1a
--- /dev/null
+++ b/svg/sparkling-sabre.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sparky-bomb.svg b/svg/sparky-bomb.svg
new file mode 100644
index 000000000..69e08983e
--- /dev/null
+++ b/svg/sparky-bomb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sparrow.svg b/svg/sparrow.svg
new file mode 100644
index 000000000..1cb635ec2
--- /dev/null
+++ b/svg/sparrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spartan-helmet.svg b/svg/spartan-helmet.svg
new file mode 100644
index 000000000..8427d3696
--- /dev/null
+++ b/svg/spartan-helmet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spartan.svg b/svg/spartan.svg
new file mode 100644
index 000000000..fd3105522
--- /dev/null
+++ b/svg/spartan.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spatter.svg b/svg/spatter.svg
new file mode 100644
index 000000000..64d5151f3
--- /dev/null
+++ b/svg/spatter.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spawn-node.svg b/svg/spawn-node.svg
new file mode 100644
index 000000000..8637b8738
--- /dev/null
+++ b/svg/spawn-node.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/speaker-off.svg b/svg/speaker-off.svg
new file mode 100644
index 000000000..35d6ba54a
--- /dev/null
+++ b/svg/speaker-off.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/speaker.svg b/svg/speaker.svg
new file mode 100644
index 000000000..6f0b3ef48
--- /dev/null
+++ b/svg/speaker.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spear-feather.svg b/svg/spear-feather.svg
new file mode 100644
index 000000000..e2703d7f4
--- /dev/null
+++ b/svg/spear-feather.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spear-hook.svg b/svg/spear-hook.svg
new file mode 100644
index 000000000..67d0d21bd
--- /dev/null
+++ b/svg/spear-hook.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spearfishing.svg b/svg/spearfishing.svg
new file mode 100644
index 000000000..d8045cac5
--- /dev/null
+++ b/svg/spearfishing.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spears.svg b/svg/spears.svg
new file mode 100644
index 000000000..c026dfa9d
--- /dev/null
+++ b/svg/spears.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spectacle-lenses.svg b/svg/spectacle-lenses.svg
new file mode 100644
index 000000000..dc62ac456
--- /dev/null
+++ b/svg/spectacle-lenses.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spectacles.svg b/svg/spectacles.svg
new file mode 100644
index 000000000..061faba8a
--- /dev/null
+++ b/svg/spectacles.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spectre-m4.svg b/svg/spectre-m4.svg
new file mode 100644
index 000000000..b2280ffd6
--- /dev/null
+++ b/svg/spectre-m4.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spectre.svg b/svg/spectre.svg
new file mode 100644
index 000000000..56683191c
--- /dev/null
+++ b/svg/spectre.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/speed-boat.svg b/svg/speed-boat.svg
new file mode 100644
index 000000000..35e6f6775
--- /dev/null
+++ b/svg/speed-boat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/speedometer.svg b/svg/speedometer.svg
new file mode 100644
index 000000000..dff3daf1c
--- /dev/null
+++ b/svg/speedometer.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spell-book.svg b/svg/spell-book.svg
new file mode 100644
index 000000000..f9ea19ed0
--- /dev/null
+++ b/svg/spell-book.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sperm-whale.svg b/svg/sperm-whale.svg
new file mode 100644
index 000000000..cf40cd633
--- /dev/null
+++ b/svg/sperm-whale.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spider-alt.svg b/svg/spider-alt.svg
new file mode 100644
index 000000000..9c8135f77
--- /dev/null
+++ b/svg/spider-alt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spider-bot.svg b/svg/spider-bot.svg
new file mode 100644
index 000000000..f7098003d
--- /dev/null
+++ b/svg/spider-bot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spider-eye.svg b/svg/spider-eye.svg
new file mode 100644
index 000000000..48d2dcfb6
--- /dev/null
+++ b/svg/spider-eye.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spider-face.svg b/svg/spider-face.svg
new file mode 100644
index 000000000..e75c5201f
--- /dev/null
+++ b/svg/spider-face.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spider-mask.svg b/svg/spider-mask.svg
new file mode 100644
index 000000000..2fe53ec2c
--- /dev/null
+++ b/svg/spider-mask.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spider-web.svg b/svg/spider-web.svg
new file mode 100644
index 000000000..faf439911
--- /dev/null
+++ b/svg/spider-web.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spikeball.svg b/svg/spikeball.svg
new file mode 100644
index 000000000..913d615f8
--- /dev/null
+++ b/svg/spikeball.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spiked-armor.svg b/svg/spiked-armor.svg
new file mode 100644
index 000000000..3f467a3a0
--- /dev/null
+++ b/svg/spiked-armor.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spiked-ball.svg b/svg/spiked-ball.svg
new file mode 100644
index 000000000..c655db0f7
--- /dev/null
+++ b/svg/spiked-ball.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spiked-bat.svg b/svg/spiked-bat.svg
new file mode 100644
index 000000000..2686db45a
--- /dev/null
+++ b/svg/spiked-bat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spiked-collar.svg b/svg/spiked-collar.svg
new file mode 100644
index 000000000..4020d0c4c
--- /dev/null
+++ b/svg/spiked-collar.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spiked-dragon-head.svg b/svg/spiked-dragon-head.svg
new file mode 100644
index 000000000..ec89e5cb0
--- /dev/null
+++ b/svg/spiked-dragon-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spiked-fence.svg b/svg/spiked-fence.svg
new file mode 100644
index 000000000..66f123874
--- /dev/null
+++ b/svg/spiked-fence.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spiked-halo.svg b/svg/spiked-halo.svg
new file mode 100644
index 000000000..40f1bc13a
--- /dev/null
+++ b/svg/spiked-halo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spiked-mace.svg b/svg/spiked-mace.svg
new file mode 100644
index 000000000..15df16831
--- /dev/null
+++ b/svg/spiked-mace.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spiked-shell.svg b/svg/spiked-shell.svg
new file mode 100644
index 000000000..909cd1bb5
--- /dev/null
+++ b/svg/spiked-shell.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spiked-shield.svg b/svg/spiked-shield.svg
new file mode 100644
index 000000000..19cb5c81f
--- /dev/null
+++ b/svg/spiked-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spiked-shoulder-armor.svg b/svg/spiked-shoulder-armor.svg
new file mode 100644
index 000000000..0f351cde5
--- /dev/null
+++ b/svg/spiked-shoulder-armor.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spiked-snail.svg b/svg/spiked-snail.svg
new file mode 100644
index 000000000..ccd6b7dfc
--- /dev/null
+++ b/svg/spiked-snail.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spiked-tail.svg b/svg/spiked-tail.svg
new file mode 100644
index 000000000..1db87284e
--- /dev/null
+++ b/svg/spiked-tail.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spiked-tentacle.svg b/svg/spiked-tentacle.svg
new file mode 100644
index 000000000..3032d5757
--- /dev/null
+++ b/svg/spiked-tentacle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spiked-trunk.svg b/svg/spiked-trunk.svg
new file mode 100644
index 000000000..df3957d1c
--- /dev/null
+++ b/svg/spiked-trunk.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spiked-wall.svg b/svg/spiked-wall.svg
new file mode 100644
index 000000000..33b20beff
--- /dev/null
+++ b/svg/spiked-wall.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spikes-full.svg b/svg/spikes-full.svg
new file mode 100644
index 000000000..55c43ea8a
--- /dev/null
+++ b/svg/spikes-full.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spikes-half.svg b/svg/spikes-half.svg
new file mode 100644
index 000000000..ee0786d86
--- /dev/null
+++ b/svg/spikes-half.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spikes-init.svg b/svg/spikes-init.svg
new file mode 100644
index 000000000..68b543f29
--- /dev/null
+++ b/svg/spikes-init.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spikes.svg b/svg/spikes.svg
new file mode 100644
index 000000000..8388b1805
--- /dev/null
+++ b/svg/spikes.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spiky-eclipse.svg b/svg/spiky-eclipse.svg
new file mode 100644
index 000000000..43292a6b3
--- /dev/null
+++ b/svg/spiky-eclipse.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spiky-explosion.svg b/svg/spiky-explosion.svg
new file mode 100644
index 000000000..1f6cd2dc5
--- /dev/null
+++ b/svg/spiky-explosion.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spiky-field.svg b/svg/spiky-field.svg
new file mode 100644
index 000000000..f7171e07f
--- /dev/null
+++ b/svg/spiky-field.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spiky-pit.svg b/svg/spiky-pit.svg
new file mode 100644
index 000000000..5f8d96b66
--- /dev/null
+++ b/svg/spiky-pit.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spiky-wing.svg b/svg/spiky-wing.svg
new file mode 100644
index 000000000..e7d041095
--- /dev/null
+++ b/svg/spiky-wing.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spill.svg b/svg/spill.svg
new file mode 100644
index 000000000..556192203
--- /dev/null
+++ b/svg/spill.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spinal-coil.svg b/svg/spinal-coil.svg
new file mode 100644
index 000000000..661a2aad5
--- /dev/null
+++ b/svg/spinal-coil.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spine-arrow.svg b/svg/spine-arrow.svg
new file mode 100644
index 000000000..40cf66746
--- /dev/null
+++ b/svg/spine-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spinning-blades.svg b/svg/spinning-blades.svg
new file mode 100644
index 000000000..8d7e6672c
--- /dev/null
+++ b/svg/spinning-blades.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spinning-ribbons.svg b/svg/spinning-ribbons.svg
new file mode 100644
index 000000000..16732cc82
--- /dev/null
+++ b/svg/spinning-ribbons.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spinning-sword.svg b/svg/spinning-sword.svg
new file mode 100644
index 000000000..0ecb1898f
--- /dev/null
+++ b/svg/spinning-sword.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spinning-top.svg b/svg/spinning-top.svg
new file mode 100644
index 000000000..ca2774355
--- /dev/null
+++ b/svg/spinning-top.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spinning-wheel.svg b/svg/spinning-wheel.svg
new file mode 100644
index 000000000..3938d1266
--- /dev/null
+++ b/svg/spinning-wheel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spiral-arrow.svg b/svg/spiral-arrow.svg
new file mode 100644
index 000000000..8f0ac803b
--- /dev/null
+++ b/svg/spiral-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spiral-bloom.svg b/svg/spiral-bloom.svg
new file mode 100644
index 000000000..615995d28
--- /dev/null
+++ b/svg/spiral-bloom.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spiral-bottle.svg b/svg/spiral-bottle.svg
new file mode 100644
index 000000000..814034001
--- /dev/null
+++ b/svg/spiral-bottle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spiral-hilt.svg b/svg/spiral-hilt.svg
new file mode 100644
index 000000000..39cd42466
--- /dev/null
+++ b/svg/spiral-hilt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spiral-lollipop.svg b/svg/spiral-lollipop.svg
new file mode 100644
index 000000000..d1150c257
--- /dev/null
+++ b/svg/spiral-lollipop.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spiral-shell.svg b/svg/spiral-shell.svg
new file mode 100644
index 000000000..6bea346e6
--- /dev/null
+++ b/svg/spiral-shell.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spiral-tentacle.svg b/svg/spiral-tentacle.svg
new file mode 100644
index 000000000..a519c514b
--- /dev/null
+++ b/svg/spiral-tentacle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spiral-thrust.svg b/svg/spiral-thrust.svg
new file mode 100644
index 000000000..4956aec87
--- /dev/null
+++ b/svg/spiral-thrust.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/splash-2.svg b/svg/splash-2.svg
new file mode 100644
index 000000000..ace05513a
--- /dev/null
+++ b/svg/splash-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/splash.svg b/svg/splash.svg
new file mode 100644
index 000000000..82a62f35d
--- /dev/null
+++ b/svg/splash.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/splashy-stream.svg b/svg/splashy-stream.svg
new file mode 100644
index 000000000..bfc2f0134
--- /dev/null
+++ b/svg/splashy-stream.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/split-arrows.svg b/svg/split-arrows.svg
new file mode 100644
index 000000000..1248852a0
--- /dev/null
+++ b/svg/split-arrows.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/split-body.svg b/svg/split-body.svg
new file mode 100644
index 000000000..a032a6c9f
--- /dev/null
+++ b/svg/split-body.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/split-cross.svg b/svg/split-cross.svg
new file mode 100644
index 000000000..227fb1435
--- /dev/null
+++ b/svg/split-cross.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/splurt.svg b/svg/splurt.svg
new file mode 100644
index 000000000..29b8f6958
--- /dev/null
+++ b/svg/splurt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spock-hand.svg b/svg/spock-hand.svg
new file mode 100644
index 000000000..bf960a1f3
--- /dev/null
+++ b/svg/spock-hand.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spooky-house.svg b/svg/spooky-house.svg
new file mode 100644
index 000000000..35970a650
--- /dev/null
+++ b/svg/spooky-house.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spoon.svg b/svg/spoon.svg
new file mode 100644
index 000000000..445db0ea5
--- /dev/null
+++ b/svg/spoon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sport-medal.svg b/svg/sport-medal.svg
new file mode 100644
index 000000000..d1e67b5fa
--- /dev/null
+++ b/svg/sport-medal.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spoted-flower.svg b/svg/spoted-flower.svg
new file mode 100644
index 000000000..46f40fcb5
--- /dev/null
+++ b/svg/spoted-flower.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spotted-arrowhead.svg b/svg/spotted-arrowhead.svg
new file mode 100644
index 000000000..493195295
--- /dev/null
+++ b/svg/spotted-arrowhead.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spotted-bug.svg b/svg/spotted-bug.svg
new file mode 100644
index 000000000..abb99a376
--- /dev/null
+++ b/svg/spotted-bug.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spotted-mushroom.svg b/svg/spotted-mushroom.svg
new file mode 100644
index 000000000..1cc2ffe43
--- /dev/null
+++ b/svg/spotted-mushroom.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spotted-wound.svg b/svg/spotted-wound.svg
new file mode 100644
index 000000000..1759100fe
--- /dev/null
+++ b/svg/spotted-wound.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spoutnik.svg b/svg/spoutnik.svg
new file mode 100644
index 000000000..a60d1a154
--- /dev/null
+++ b/svg/spoutnik.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spray.svg b/svg/spray.svg
new file mode 100644
index 000000000..9959b508b
--- /dev/null
+++ b/svg/spray.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spring.svg b/svg/spring.svg
new file mode 100644
index 000000000..01ace4426
--- /dev/null
+++ b/svg/spring.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sprint.svg b/svg/sprint.svg
new file mode 100644
index 000000000..1946a7643
--- /dev/null
+++ b/svg/sprint.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sprout-disc.svg b/svg/sprout-disc.svg
new file mode 100644
index 000000000..47f7b1dd7
--- /dev/null
+++ b/svg/sprout-disc.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sprout.svg b/svg/sprout.svg
new file mode 100644
index 000000000..142d71365
--- /dev/null
+++ b/svg/sprout.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spy.svg b/svg/spy.svg
new file mode 100644
index 000000000..5df8e35f3
--- /dev/null
+++ b/svg/spy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/spyglass.svg b/svg/spyglass.svg
new file mode 100644
index 000000000..b80b60d66
--- /dev/null
+++ b/svg/spyglass.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/square-bottle.svg b/svg/square-bottle.svg
new file mode 100644
index 000000000..7e38b0e1b
--- /dev/null
+++ b/svg/square-bottle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/square.svg b/svg/square.svg
new file mode 100644
index 000000000..dde268dba
--- /dev/null
+++ b/svg/square.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/squib.svg b/svg/squib.svg
new file mode 100644
index 000000000..febfa16bf
--- /dev/null
+++ b/svg/squib.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/squid-head.svg b/svg/squid-head.svg
new file mode 100644
index 000000000..038778302
--- /dev/null
+++ b/svg/squid-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/squid.svg b/svg/squid.svg
new file mode 100644
index 000000000..3f49443c7
--- /dev/null
+++ b/svg/squid.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/squirrel.svg b/svg/squirrel.svg
new file mode 100644
index 000000000..2bd6f48ba
--- /dev/null
+++ b/svg/squirrel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sri-lanka.svg b/svg/sri-lanka.svg
new file mode 100644
index 000000000..2ea882794
--- /dev/null
+++ b/svg/sri-lanka.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stabbed-note.svg b/svg/stabbed-note.svg
new file mode 100644
index 000000000..d2ebc62c8
--- /dev/null
+++ b/svg/stabbed-note.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stable.svg b/svg/stable.svg
new file mode 100644
index 000000000..bd5df8172
--- /dev/null
+++ b/svg/stable.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stack.svg b/svg/stack.svg
new file mode 100644
index 000000000..5d7381da6
--- /dev/null
+++ b/svg/stack.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stag-head.svg b/svg/stag-head.svg
new file mode 100644
index 000000000..cbc110976
--- /dev/null
+++ b/svg/stag-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stahlhelm.svg b/svg/stahlhelm.svg
new file mode 100644
index 000000000..6693cbf44
--- /dev/null
+++ b/svg/stahlhelm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stairs-cake.svg b/svg/stairs-cake.svg
new file mode 100644
index 000000000..357420eae
--- /dev/null
+++ b/svg/stairs-cake.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stairs-goal.svg b/svg/stairs-goal.svg
new file mode 100644
index 000000000..8bb52ae57
--- /dev/null
+++ b/svg/stairs-goal.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stairs.svg b/svg/stairs.svg
new file mode 100644
index 000000000..80f749712
--- /dev/null
+++ b/svg/stairs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stake-hammer.svg b/svg/stake-hammer.svg
new file mode 100644
index 000000000..4da3fc6aa
--- /dev/null
+++ b/svg/stake-hammer.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stakes-fence.svg b/svg/stakes-fence.svg
new file mode 100644
index 000000000..cc917ffa1
--- /dev/null
+++ b/svg/stakes-fence.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stalactites.svg b/svg/stalactites.svg
new file mode 100644
index 000000000..586e16546
--- /dev/null
+++ b/svg/stalactites.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stalagtite.svg b/svg/stalagtite.svg
new file mode 100644
index 000000000..caa32ae74
--- /dev/null
+++ b/svg/stalagtite.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stamper.svg b/svg/stamper.svg
new file mode 100644
index 000000000..f1def6035
--- /dev/null
+++ b/svg/stamper.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/standing-potion.svg b/svg/standing-potion.svg
new file mode 100644
index 000000000..87da150f8
--- /dev/null
+++ b/svg/standing-potion.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stapler-heavy-duty.svg b/svg/stapler-heavy-duty.svg
new file mode 100644
index 000000000..bd5edfa4c
--- /dev/null
+++ b/svg/stapler-heavy-duty.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stapler-pneumatic.svg b/svg/stapler-pneumatic.svg
new file mode 100644
index 000000000..9e7549424
--- /dev/null
+++ b/svg/stapler-pneumatic.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stapler.svg b/svg/stapler.svg
new file mode 100644
index 000000000..518f07fc2
--- /dev/null
+++ b/svg/stapler.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/star-altar.svg b/svg/star-altar.svg
new file mode 100644
index 000000000..f52c62e32
--- /dev/null
+++ b/svg/star-altar.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/star-cycle.svg b/svg/star-cycle.svg
new file mode 100644
index 000000000..82625a439
--- /dev/null
+++ b/svg/star-cycle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/star-flag.svg b/svg/star-flag.svg
new file mode 100644
index 000000000..f3e9308de
--- /dev/null
+++ b/svg/star-flag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/star-formation.svg b/svg/star-formation.svg
new file mode 100644
index 000000000..12be7e7e4
--- /dev/null
+++ b/svg/star-formation.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/star-gate.svg b/svg/star-gate.svg
new file mode 100644
index 000000000..7186a8a29
--- /dev/null
+++ b/svg/star-gate.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/star-key.svg b/svg/star-key.svg
new file mode 100644
index 000000000..3315e1733
--- /dev/null
+++ b/svg/star-key.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/star-medal.svg b/svg/star-medal.svg
new file mode 100644
index 000000000..a40a584ca
--- /dev/null
+++ b/svg/star-medal.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/star-prominences.svg b/svg/star-prominences.svg
new file mode 100644
index 000000000..73aea9c6f
--- /dev/null
+++ b/svg/star-prominences.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/star-pupil.svg b/svg/star-pupil.svg
new file mode 100644
index 000000000..3433bfe82
--- /dev/null
+++ b/svg/star-pupil.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/star-sattelites.svg b/svg/star-sattelites.svg
new file mode 100644
index 000000000..8c1dc5fc0
--- /dev/null
+++ b/svg/star-sattelites.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/star-shuriken.svg b/svg/star-shuriken.svg
new file mode 100644
index 000000000..3b052b04e
--- /dev/null
+++ b/svg/star-shuriken.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/star-skull.svg b/svg/star-skull.svg
new file mode 100644
index 000000000..19078a976
--- /dev/null
+++ b/svg/star-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/star-struck.svg b/svg/star-struck.svg
new file mode 100644
index 000000000..6266f669b
--- /dev/null
+++ b/svg/star-struck.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/star-swirl.svg b/svg/star-swirl.svg
new file mode 100644
index 000000000..6bc2cfb6d
--- /dev/null
+++ b/svg/star-swirl.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/starfighter.svg b/svg/starfighter.svg
new file mode 100644
index 000000000..a6a9c8410
--- /dev/null
+++ b/svg/starfighter.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stars-stack.svg b/svg/stars-stack.svg
new file mode 100644
index 000000000..80a0e51da
--- /dev/null
+++ b/svg/stars-stack.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/staryu.svg b/svg/staryu.svg
new file mode 100644
index 000000000..01eef40fc
--- /dev/null
+++ b/svg/staryu.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/static-guard.svg b/svg/static-guard.svg
new file mode 100644
index 000000000..1bccf226e
--- /dev/null
+++ b/svg/static-guard.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/static-waves.svg b/svg/static-waves.svg
new file mode 100644
index 000000000..040ba050e
--- /dev/null
+++ b/svg/static-waves.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/static.svg b/svg/static.svg
new file mode 100644
index 000000000..1f6faed87
--- /dev/null
+++ b/svg/static.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/steak.svg b/svg/steak.svg
new file mode 100644
index 000000000..ec52a2078
--- /dev/null
+++ b/svg/steak.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stealth-bomber.svg b/svg/stealth-bomber.svg
new file mode 100644
index 000000000..67e849cb9
--- /dev/null
+++ b/svg/stealth-bomber.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/steam-blast.svg b/svg/steam-blast.svg
new file mode 100644
index 000000000..a855ac285
--- /dev/null
+++ b/svg/steam-blast.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/steam-locomotive.svg b/svg/steam-locomotive.svg
new file mode 100644
index 000000000..3cc04ec80
--- /dev/null
+++ b/svg/steam-locomotive.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/steam.svg b/svg/steam.svg
new file mode 100644
index 000000000..e9857029b
--- /dev/null
+++ b/svg/steam.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/steampunk-goggles.svg b/svg/steampunk-goggles.svg
new file mode 100644
index 000000000..6ffe1fe91
--- /dev/null
+++ b/svg/steampunk-goggles.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/steamroller.svg b/svg/steamroller.svg
new file mode 100644
index 000000000..9bec0a556
--- /dev/null
+++ b/svg/steamroller.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/steel-claws-2.svg b/svg/steel-claws-2.svg
new file mode 100644
index 000000000..ab5affa9c
--- /dev/null
+++ b/svg/steel-claws-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/steel-claws.svg b/svg/steel-claws.svg
new file mode 100644
index 000000000..7b76ea376
--- /dev/null
+++ b/svg/steel-claws.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/steel-door.svg b/svg/steel-door.svg
new file mode 100644
index 000000000..aa72f5772
--- /dev/null
+++ b/svg/steel-door.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/steeltoe-boots.svg b/svg/steeltoe-boots.svg
new file mode 100644
index 000000000..fb5966fc1
--- /dev/null
+++ b/svg/steeltoe-boots.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/steelwing-emblem.svg b/svg/steelwing-emblem.svg
new file mode 100644
index 000000000..508d9fd26
--- /dev/null
+++ b/svg/steelwing-emblem.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/steering-wheel.svg b/svg/steering-wheel.svg
new file mode 100644
index 000000000..1e0b989f9
--- /dev/null
+++ b/svg/steering-wheel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stegosaurus-scales.svg b/svg/stegosaurus-scales.svg
new file mode 100644
index 000000000..446af6ec5
--- /dev/null
+++ b/svg/stegosaurus-scales.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stethoscope.svg b/svg/stethoscope.svg
new file mode 100644
index 000000000..f5e4f5d64
--- /dev/null
+++ b/svg/stethoscope.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/steyr-aug.svg b/svg/steyr-aug.svg
new file mode 100644
index 000000000..f80efedf2
--- /dev/null
+++ b/svg/steyr-aug.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stick-frame.svg b/svg/stick-frame.svg
new file mode 100644
index 000000000..6bf900153
--- /dev/null
+++ b/svg/stick-frame.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stick-grenade.svg b/svg/stick-grenade.svg
new file mode 100644
index 000000000..3ee5624f9
--- /dev/null
+++ b/svg/stick-grenade.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stick-splitting.svg b/svg/stick-splitting.svg
new file mode 100644
index 000000000..56a640c57
--- /dev/null
+++ b/svg/stick-splitting.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sticking-plaster.svg b/svg/sticking-plaster.svg
new file mode 100644
index 000000000..0c11625d7
--- /dev/null
+++ b/svg/sticking-plaster.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sticky-boot.svg b/svg/sticky-boot.svg
new file mode 100644
index 000000000..928adce0d
--- /dev/null
+++ b/svg/sticky-boot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stigmata.svg b/svg/stigmata.svg
new file mode 100644
index 000000000..00828ea1d
--- /dev/null
+++ b/svg/stigmata.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stiletto-2.svg b/svg/stiletto-2.svg
new file mode 100644
index 000000000..189d6fed5
--- /dev/null
+++ b/svg/stiletto-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stiletto.svg b/svg/stiletto.svg
new file mode 100644
index 000000000..84f6195e8
--- /dev/null
+++ b/svg/stiletto.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stitched-wound.svg b/svg/stitched-wound.svg
new file mode 100644
index 000000000..33972305e
--- /dev/null
+++ b/svg/stitched-wound.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stockpiles.svg b/svg/stockpiles.svg
new file mode 100644
index 000000000..1e220a29a
--- /dev/null
+++ b/svg/stockpiles.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stomach.svg b/svg/stomach.svg
new file mode 100644
index 000000000..62a0d3d72
--- /dev/null
+++ b/svg/stomach.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stomp-tornado.svg b/svg/stomp-tornado.svg
new file mode 100644
index 000000000..23acab544
--- /dev/null
+++ b/svg/stomp-tornado.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stomp.svg b/svg/stomp.svg
new file mode 100644
index 000000000..1708a6c84
--- /dev/null
+++ b/svg/stomp.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stone-axe.svg b/svg/stone-axe.svg
new file mode 100644
index 000000000..9016a9750
--- /dev/null
+++ b/svg/stone-axe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stone-block.svg b/svg/stone-block.svg
new file mode 100644
index 000000000..e436d59c3
--- /dev/null
+++ b/svg/stone-block.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stone-bridge.svg b/svg/stone-bridge.svg
new file mode 100644
index 000000000..f52eefe8c
--- /dev/null
+++ b/svg/stone-bridge.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stone-bust.svg b/svg/stone-bust.svg
new file mode 100644
index 000000000..c30e1dca6
--- /dev/null
+++ b/svg/stone-bust.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stone-crafting.svg b/svg/stone-crafting.svg
new file mode 100644
index 000000000..83f6e39ff
--- /dev/null
+++ b/svg/stone-crafting.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stone-path.svg b/svg/stone-path.svg
new file mode 100644
index 000000000..5d6a28764
--- /dev/null
+++ b/svg/stone-path.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stone-pile.svg b/svg/stone-pile.svg
new file mode 100644
index 000000000..229ba1317
--- /dev/null
+++ b/svg/stone-pile.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stone-spear.svg b/svg/stone-spear.svg
new file mode 100644
index 000000000..2bb7198c2
--- /dev/null
+++ b/svg/stone-spear.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stone-sphere.svg b/svg/stone-sphere.svg
new file mode 100644
index 000000000..d7c72cbcb
--- /dev/null
+++ b/svg/stone-sphere.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stone-stack.svg b/svg/stone-stack.svg
new file mode 100644
index 000000000..1715f9871
--- /dev/null
+++ b/svg/stone-stack.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stone-tablet.svg b/svg/stone-tablet.svg
new file mode 100644
index 000000000..3f910ec7b
--- /dev/null
+++ b/svg/stone-tablet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stone-throne.svg b/svg/stone-throne.svg
new file mode 100644
index 000000000..4d3b48bfe
--- /dev/null
+++ b/svg/stone-throne.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stone-tower.svg b/svg/stone-tower.svg
new file mode 100644
index 000000000..3346177ab
--- /dev/null
+++ b/svg/stone-tower.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stone-wall.svg b/svg/stone-wall.svg
new file mode 100644
index 000000000..6d3ffe473
--- /dev/null
+++ b/svg/stone-wall.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stone-wheel.svg b/svg/stone-wheel.svg
new file mode 100644
index 000000000..82d13e10f
--- /dev/null
+++ b/svg/stone-wheel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stoned-skull.svg b/svg/stoned-skull.svg
new file mode 100644
index 000000000..e0f005bdb
--- /dev/null
+++ b/svg/stoned-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stop-sign.svg b/svg/stop-sign.svg
new file mode 100644
index 000000000..4431aca77
--- /dev/null
+++ b/svg/stop-sign.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stopwatch-2.svg b/svg/stopwatch-2.svg
new file mode 100644
index 000000000..ab4f2a53d
--- /dev/null
+++ b/svg/stopwatch-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stopwatch.svg b/svg/stopwatch.svg
new file mode 100644
index 000000000..e42570fef
--- /dev/null
+++ b/svg/stopwatch.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stork-delivery.svg b/svg/stork-delivery.svg
new file mode 100644
index 000000000..289517d6f
--- /dev/null
+++ b/svg/stork-delivery.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/strafe.svg b/svg/strafe.svg
new file mode 100644
index 000000000..0fe1b6c7f
--- /dev/null
+++ b/svg/strafe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/straight-pipe.svg b/svg/straight-pipe.svg
new file mode 100644
index 000000000..5323f1eb8
--- /dev/null
+++ b/svg/straight-pipe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/strawberry.svg b/svg/strawberry.svg
new file mode 100644
index 000000000..6f77a5785
--- /dev/null
+++ b/svg/strawberry.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/street-light.svg b/svg/street-light.svg
new file mode 100644
index 000000000..69f902345
--- /dev/null
+++ b/svg/street-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/striking-arrows.svg b/svg/striking-arrows.svg
new file mode 100644
index 000000000..0133b438e
--- /dev/null
+++ b/svg/striking-arrows.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/striking-balls.svg b/svg/striking-balls.svg
new file mode 100644
index 000000000..88741980a
--- /dev/null
+++ b/svg/striking-balls.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/striking-clamps.svg b/svg/striking-clamps.svg
new file mode 100644
index 000000000..90a6a2840
--- /dev/null
+++ b/svg/striking-clamps.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/striking-diamonds.svg b/svg/striking-diamonds.svg
new file mode 100644
index 000000000..cbd7225fb
--- /dev/null
+++ b/svg/striking-diamonds.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/striking-splinter.svg b/svg/striking-splinter.svg
new file mode 100644
index 000000000..1abe84f12
--- /dev/null
+++ b/svg/striking-splinter.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/striped-sun.svg b/svg/striped-sun.svg
new file mode 100644
index 000000000..e594b5d3d
--- /dev/null
+++ b/svg/striped-sun.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/striped-sword.svg b/svg/striped-sword.svg
new file mode 100644
index 000000000..a60dc7109
--- /dev/null
+++ b/svg/striped-sword.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/strong-man.svg b/svg/strong-man.svg
new file mode 100644
index 000000000..90ba3056d
--- /dev/null
+++ b/svg/strong-man.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/strong.svg b/svg/strong.svg
new file mode 100644
index 000000000..38f68e4a4
--- /dev/null
+++ b/svg/strong.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/strongbox.svg b/svg/strongbox.svg
new file mode 100644
index 000000000..44f664bc8
--- /dev/null
+++ b/svg/strongbox.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stump-regrowth.svg b/svg/stump-regrowth.svg
new file mode 100644
index 000000000..c56cb3728
--- /dev/null
+++ b/svg/stump-regrowth.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/stun-grenade.svg b/svg/stun-grenade.svg
new file mode 100644
index 000000000..e327a9ec4
--- /dev/null
+++ b/svg/stun-grenade.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/submarine-missile.svg b/svg/submarine-missile.svg
new file mode 100644
index 000000000..3be1a16d9
--- /dev/null
+++ b/svg/submarine-missile.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/submarine.svg b/svg/submarine.svg
new file mode 100644
index 000000000..011f05cc6
--- /dev/null
+++ b/svg/submarine.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/subway-pass.svg b/svg/subway-pass.svg
new file mode 100644
index 000000000..effe07b4d
--- /dev/null
+++ b/svg/subway-pass.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/subway-train.svg b/svg/subway-train.svg
new file mode 100644
index 000000000..444f2b47a
--- /dev/null
+++ b/svg/subway-train.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/subway.svg b/svg/subway.svg
new file mode 100644
index 000000000..e872ba898
--- /dev/null
+++ b/svg/subway.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/suckered-tentacle.svg b/svg/suckered-tentacle.svg
new file mode 100644
index 000000000..637d6eff8
--- /dev/null
+++ b/svg/suckered-tentacle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sugar-cane.svg b/svg/sugar-cane.svg
new file mode 100644
index 000000000..1ac819f6d
--- /dev/null
+++ b/svg/sugar-cane.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/suicide.svg b/svg/suicide.svg
new file mode 100644
index 000000000..afac880ad
--- /dev/null
+++ b/svg/suicide.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/suitcase.svg b/svg/suitcase.svg
new file mode 100644
index 000000000..be50db4f2
--- /dev/null
+++ b/svg/suitcase.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/suits.svg b/svg/suits.svg
new file mode 100644
index 000000000..7a4636163
--- /dev/null
+++ b/svg/suits.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/summits.svg b/svg/summits.svg
new file mode 100644
index 000000000..e5b22484c
--- /dev/null
+++ b/svg/summits.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sun-cloud.svg b/svg/sun-cloud.svg
new file mode 100644
index 000000000..0e527472f
--- /dev/null
+++ b/svg/sun-cloud.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sun-priest.svg b/svg/sun-priest.svg
new file mode 100644
index 000000000..7069b3f12
--- /dev/null
+++ b/svg/sun-priest.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sun-radiations.svg b/svg/sun-radiations.svg
new file mode 100644
index 000000000..c12adf767
--- /dev/null
+++ b/svg/sun-radiations.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sun-spear.svg b/svg/sun-spear.svg
new file mode 100644
index 000000000..ca3344b52
--- /dev/null
+++ b/svg/sun-spear.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sun.svg b/svg/sun.svg
new file mode 100644
index 000000000..b26d5ad18
--- /dev/null
+++ b/svg/sun.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sunbeams.svg b/svg/sunbeams.svg
new file mode 100644
index 000000000..b8bf8ec02
--- /dev/null
+++ b/svg/sunbeams.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sundial.svg b/svg/sundial.svg
new file mode 100644
index 000000000..9b1ab827f
--- /dev/null
+++ b/svg/sundial.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sunflower.svg b/svg/sunflower.svg
new file mode 100644
index 000000000..aa69a26a1
--- /dev/null
+++ b/svg/sunflower.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sunglasses.svg b/svg/sunglasses.svg
new file mode 100644
index 000000000..63207be40
--- /dev/null
+++ b/svg/sunglasses.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sunken-eye.svg b/svg/sunken-eye.svg
new file mode 100644
index 000000000..89dbf2a26
--- /dev/null
+++ b/svg/sunken-eye.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sunrise-2.svg b/svg/sunrise-2.svg
new file mode 100644
index 000000000..eeaa6df0f
--- /dev/null
+++ b/svg/sunrise-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sunrise.svg b/svg/sunrise.svg
new file mode 100644
index 000000000..127854da3
--- /dev/null
+++ b/svg/sunrise.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sunset.svg b/svg/sunset.svg
new file mode 100644
index 000000000..61ba7721f
--- /dev/null
+++ b/svg/sunset.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/super-mushroom.svg b/svg/super-mushroom.svg
new file mode 100644
index 000000000..0ce673123
--- /dev/null
+++ b/svg/super-mushroom.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/supersonic-arrow.svg b/svg/supersonic-arrow.svg
new file mode 100644
index 000000000..83838d254
--- /dev/null
+++ b/svg/supersonic-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/supersonic-bullet.svg b/svg/supersonic-bullet.svg
new file mode 100644
index 000000000..e90d8e283
--- /dev/null
+++ b/svg/supersonic-bullet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/surf-board.svg b/svg/surf-board.svg
new file mode 100644
index 000000000..4a609db89
--- /dev/null
+++ b/svg/surf-board.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/surfer-van.svg b/svg/surfer-van.svg
new file mode 100644
index 000000000..921a84459
--- /dev/null
+++ b/svg/surfer-van.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/surprised-skull.svg b/svg/surprised-skull.svg
new file mode 100644
index 000000000..b9e78ea2c
--- /dev/null
+++ b/svg/surprised-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/surprised.svg b/svg/surprised.svg
new file mode 100644
index 000000000..96b86069f
--- /dev/null
+++ b/svg/surprised.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/surrounded-eye.svg b/svg/surrounded-eye.svg
new file mode 100644
index 000000000..7eaa335df
--- /dev/null
+++ b/svg/surrounded-eye.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/surrounded-shield.svg b/svg/surrounded-shield.svg
new file mode 100644
index 000000000..18a99e35e
--- /dev/null
+++ b/svg/surrounded-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sushis.svg b/svg/sushis.svg
new file mode 100644
index 000000000..d01df0aae
--- /dev/null
+++ b/svg/sushis.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/suspension-bridge.svg b/svg/suspension-bridge.svg
new file mode 100644
index 000000000..558a103d1
--- /dev/null
+++ b/svg/suspension-bridge.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/suspicious.svg b/svg/suspicious.svg
new file mode 100644
index 000000000..a2434d886
--- /dev/null
+++ b/svg/suspicious.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sverd-i-fjell.svg b/svg/sverd-i-fjell.svg
new file mode 100644
index 000000000..0392158a4
--- /dev/null
+++ b/svg/sverd-i-fjell.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/swallow-2.svg b/svg/swallow-2.svg
new file mode 100644
index 000000000..077ff5f87
--- /dev/null
+++ b/svg/swallow-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/swallow.svg b/svg/swallow.svg
new file mode 100644
index 000000000..9c9894da7
--- /dev/null
+++ b/svg/swallow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/swallower.svg b/svg/swallower.svg
new file mode 100644
index 000000000..9b067ca9a
--- /dev/null
+++ b/svg/swallower.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/swamp-bat.svg b/svg/swamp-bat.svg
new file mode 100644
index 000000000..784ed549c
--- /dev/null
+++ b/svg/swamp-bat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/swamp.svg b/svg/swamp.svg
new file mode 100644
index 000000000..323824229
--- /dev/null
+++ b/svg/swamp.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/swan-breeze.svg b/svg/swan-breeze.svg
new file mode 100644
index 000000000..0d795e5ba
--- /dev/null
+++ b/svg/swan-breeze.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/swan.svg b/svg/swan.svg
new file mode 100644
index 000000000..74335ab90
--- /dev/null
+++ b/svg/swan.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/swap-bag.svg b/svg/swap-bag.svg
new file mode 100644
index 000000000..29a7caba6
--- /dev/null
+++ b/svg/swap-bag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/swimfins.svg b/svg/swimfins.svg
new file mode 100644
index 000000000..a55f4a480
--- /dev/null
+++ b/svg/swimfins.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/swipe-card.svg b/svg/swipe-card.svg
new file mode 100644
index 000000000..0e58e26d5
--- /dev/null
+++ b/svg/swipe-card.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/swirl-ring.svg b/svg/swirl-ring.svg
new file mode 100644
index 000000000..d797e290d
--- /dev/null
+++ b/svg/swirl-ring.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/swirl-string.svg b/svg/swirl-string.svg
new file mode 100644
index 000000000..723e0ca50
--- /dev/null
+++ b/svg/swirl-string.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/swirled-shell.svg b/svg/swirled-shell.svg
new file mode 100644
index 000000000..18745fd1a
--- /dev/null
+++ b/svg/swirled-shell.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/swiss-army-knife.svg b/svg/swiss-army-knife.svg
new file mode 100644
index 000000000..6f63842f0
--- /dev/null
+++ b/svg/swiss-army-knife.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/switch-weapon.svg b/svg/switch-weapon.svg
new file mode 100644
index 000000000..4de3af3ce
--- /dev/null
+++ b/svg/switch-weapon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/switchblade.svg b/svg/switchblade.svg
new file mode 100644
index 000000000..0573ce37e
--- /dev/null
+++ b/svg/switchblade.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/switzerland.svg b/svg/switzerland.svg
new file mode 100644
index 000000000..2953bc41d
--- /dev/null
+++ b/svg/switzerland.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sword-altar.svg b/svg/sword-altar.svg
new file mode 100644
index 000000000..9c23a8b05
--- /dev/null
+++ b/svg/sword-altar.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sword-array.svg b/svg/sword-array.svg
new file mode 100644
index 000000000..d13471059
--- /dev/null
+++ b/svg/sword-array.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sword-brandish.svg b/svg/sword-brandish.svg
new file mode 100644
index 000000000..3311441dc
--- /dev/null
+++ b/svg/sword-brandish.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sword-break.svg b/svg/sword-break.svg
new file mode 100644
index 000000000..03944eb69
--- /dev/null
+++ b/svg/sword-break.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sword-clash.svg b/svg/sword-clash.svg
new file mode 100644
index 000000000..f7fff08ac
--- /dev/null
+++ b/svg/sword-clash.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sword-hilt.svg b/svg/sword-hilt.svg
new file mode 100644
index 000000000..4bcc80709
--- /dev/null
+++ b/svg/sword-hilt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sword-in-stone.svg b/svg/sword-in-stone.svg
new file mode 100644
index 000000000..4709b4adb
--- /dev/null
+++ b/svg/sword-in-stone.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sword-mold.svg b/svg/sword-mold.svg
new file mode 100644
index 000000000..a598336c0
--- /dev/null
+++ b/svg/sword-mold.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sword-slice.svg b/svg/sword-slice.svg
new file mode 100644
index 000000000..329d103be
--- /dev/null
+++ b/svg/sword-slice.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sword-smithing.svg b/svg/sword-smithing.svg
new file mode 100644
index 000000000..db9c86a35
--- /dev/null
+++ b/svg/sword-smithing.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sword-spade.svg b/svg/sword-spade.svg
new file mode 100644
index 000000000..ce0e2204c
--- /dev/null
+++ b/svg/sword-spade.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sword-spin.svg b/svg/sword-spin.svg
new file mode 100644
index 000000000..bb7d40e7f
--- /dev/null
+++ b/svg/sword-spin.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sword-tie.svg b/svg/sword-tie.svg
new file mode 100644
index 000000000..a687eec1e
--- /dev/null
+++ b/svg/sword-tie.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sword-wound.svg b/svg/sword-wound.svg
new file mode 100644
index 000000000..24a8457da
--- /dev/null
+++ b/svg/sword-wound.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/swordman.svg b/svg/swordman.svg
new file mode 100644
index 000000000..1d13055f9
--- /dev/null
+++ b/svg/swordman.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/swords-emblem.svg b/svg/swords-emblem.svg
new file mode 100644
index 000000000..337f5dfc8
--- /dev/null
+++ b/svg/swords-emblem.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/swords-power.svg b/svg/swords-power.svg
new file mode 100644
index 000000000..e5271b7d1
--- /dev/null
+++ b/svg/swords-power.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/swordwoman.svg b/svg/swordwoman.svg
new file mode 100644
index 000000000..cb478f431
--- /dev/null
+++ b/svg/swordwoman.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/sydney-opera-house.svg b/svg/sydney-opera-house.svg
new file mode 100644
index 000000000..99758f26c
--- /dev/null
+++ b/svg/sydney-opera-house.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/syringe-2.svg b/svg/syringe-2.svg
new file mode 100644
index 000000000..76e86f9f7
--- /dev/null
+++ b/svg/syringe-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/syringe.svg b/svg/syringe.svg
new file mode 100644
index 000000000..88876c762
--- /dev/null
+++ b/svg/syringe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/t-brick.svg b/svg/t-brick.svg
new file mode 100644
index 000000000..1214cc059
--- /dev/null
+++ b/svg/t-brick.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/t-rex-skull.svg b/svg/t-rex-skull.svg
new file mode 100644
index 000000000..30d38885e
--- /dev/null
+++ b/svg/t-rex-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/t-shirt.svg b/svg/t-shirt.svg
new file mode 100644
index 000000000..80b0a288c
--- /dev/null
+++ b/svg/t-shirt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tabi-boot.svg b/svg/tabi-boot.svg
new file mode 100644
index 000000000..17e2ff072
--- /dev/null
+++ b/svg/tabi-boot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/table.svg b/svg/table.svg
new file mode 100644
index 000000000..c9531609d
--- /dev/null
+++ b/svg/table.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tablet.svg b/svg/tablet.svg
new file mode 100644
index 000000000..81fadb371
--- /dev/null
+++ b/svg/tablet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tabletop-players.svg b/svg/tabletop-players.svg
new file mode 100644
index 000000000..44572314a
--- /dev/null
+++ b/svg/tabletop-players.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tacos.svg b/svg/tacos.svg
new file mode 100644
index 000000000..b9bb433ee
--- /dev/null
+++ b/svg/tacos.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tadpole.svg b/svg/tadpole.svg
new file mode 100644
index 000000000..69587499c
--- /dev/null
+++ b/svg/tadpole.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/take-my-money.svg b/svg/take-my-money.svg
new file mode 100644
index 000000000..5eca12ce8
--- /dev/null
+++ b/svg/take-my-money.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/talk.svg b/svg/talk.svg
new file mode 100644
index 000000000..ff14a0633
--- /dev/null
+++ b/svg/talk.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tall-bridge.svg b/svg/tall-bridge.svg
new file mode 100644
index 000000000..f146b830a
--- /dev/null
+++ b/svg/tall-bridge.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tally-mark-5.svg b/svg/tally-mark-5.svg
new file mode 100644
index 000000000..32696921f
--- /dev/null
+++ b/svg/tally-mark-5.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tambourine.svg b/svg/tambourine.svg
new file mode 100644
index 000000000..93b08e055
--- /dev/null
+++ b/svg/tambourine.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tangerine.svg b/svg/tangerine.svg
new file mode 100644
index 000000000..e03ccd4c7
--- /dev/null
+++ b/svg/tangerine.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tank-top.svg b/svg/tank-top.svg
new file mode 100644
index 000000000..fd2ca412b
--- /dev/null
+++ b/svg/tank-top.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tank-tread.svg b/svg/tank-tread.svg
new file mode 100644
index 000000000..0e9fca908
--- /dev/null
+++ b/svg/tank-tread.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tank.svg b/svg/tank.svg
new file mode 100644
index 000000000..fe67d8014
--- /dev/null
+++ b/svg/tank.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tanzania.svg b/svg/tanzania.svg
new file mode 100644
index 000000000..a5062e892
--- /dev/null
+++ b/svg/tanzania.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tap.svg b/svg/tap.svg
new file mode 100644
index 000000000..b8fe805ab
--- /dev/null
+++ b/svg/tap.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tapir.svg b/svg/tapir.svg
new file mode 100644
index 000000000..d29984089
--- /dev/null
+++ b/svg/tapir.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/target-arrows.svg b/svg/target-arrows.svg
new file mode 100644
index 000000000..99ed57c48
--- /dev/null
+++ b/svg/target-arrows.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/target-dummy.svg b/svg/target-dummy.svg
new file mode 100644
index 000000000..a2d16ae0c
--- /dev/null
+++ b/svg/target-dummy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/target-laser.svg b/svg/target-laser.svg
new file mode 100644
index 000000000..8b49f1713
--- /dev/null
+++ b/svg/target-laser.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/target-poster.svg b/svg/target-poster.svg
new file mode 100644
index 000000000..e215f22c1
--- /dev/null
+++ b/svg/target-poster.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/target-prize.svg b/svg/target-prize.svg
new file mode 100644
index 000000000..c3966420c
--- /dev/null
+++ b/svg/target-prize.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/target-shot.svg b/svg/target-shot.svg
new file mode 100644
index 000000000..88d649bd8
--- /dev/null
+++ b/svg/target-shot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/targeted.svg b/svg/targeted.svg
new file mode 100644
index 000000000..9d952f84a
--- /dev/null
+++ b/svg/targeted.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/targeting.svg b/svg/targeting.svg
new file mode 100644
index 000000000..b5baec79d
--- /dev/null
+++ b/svg/targeting.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tattered-banner.svg b/svg/tattered-banner.svg
new file mode 100644
index 000000000..8850ed38f
--- /dev/null
+++ b/svg/tattered-banner.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/taurus.svg b/svg/taurus.svg
new file mode 100644
index 000000000..91cada990
--- /dev/null
+++ b/svg/taurus.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tavern-sign.svg b/svg/tavern-sign.svg
new file mode 100644
index 000000000..0c7de495b
--- /dev/null
+++ b/svg/tavern-sign.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/teacher.svg b/svg/teacher.svg
new file mode 100644
index 000000000..a4697d4b1
--- /dev/null
+++ b/svg/teacher.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/team-downgrade.svg b/svg/team-downgrade.svg
new file mode 100644
index 000000000..94033e888
--- /dev/null
+++ b/svg/team-downgrade.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/team-idea.svg b/svg/team-idea.svg
new file mode 100644
index 000000000..63f4935a9
--- /dev/null
+++ b/svg/team-idea.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/team-upgrade.svg b/svg/team-upgrade.svg
new file mode 100644
index 000000000..54f834699
--- /dev/null
+++ b/svg/team-upgrade.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/teapot-leaves.svg b/svg/teapot-leaves.svg
new file mode 100644
index 000000000..bbe1ad57b
--- /dev/null
+++ b/svg/teapot-leaves.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/teapot.svg b/svg/teapot.svg
new file mode 100644
index 000000000..2bfa80982
--- /dev/null
+++ b/svg/teapot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tear-tracks.svg b/svg/tear-tracks.svg
new file mode 100644
index 000000000..36a1e94e1
--- /dev/null
+++ b/svg/tear-tracks.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tearing.svg b/svg/tearing.svg
new file mode 100644
index 000000000..84b5aad92
--- /dev/null
+++ b/svg/tearing.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tec-9.svg b/svg/tec-9.svg
new file mode 100644
index 000000000..849b1363b
--- /dev/null
+++ b/svg/tec-9.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/techno-heart.svg b/svg/techno-heart.svg
new file mode 100644
index 000000000..6f0772ad7
--- /dev/null
+++ b/svg/techno-heart.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tee-pipe.svg b/svg/tee-pipe.svg
new file mode 100644
index 000000000..e3d684cf5
--- /dev/null
+++ b/svg/tee-pipe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/telefrag.svg b/svg/telefrag.svg
new file mode 100644
index 000000000..94791f595
--- /dev/null
+++ b/svg/telefrag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/telepathy.svg b/svg/telepathy.svg
new file mode 100644
index 000000000..4bf2cca2c
--- /dev/null
+++ b/svg/telepathy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/teleport.svg b/svg/teleport.svg
new file mode 100644
index 000000000..b587739f7
--- /dev/null
+++ b/svg/teleport.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/telescope.svg b/svg/telescope.svg
new file mode 100644
index 000000000..7172e79e0
--- /dev/null
+++ b/svg/telescope.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/telescopic-baton.svg b/svg/telescopic-baton.svg
new file mode 100644
index 000000000..6fd974103
--- /dev/null
+++ b/svg/telescopic-baton.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/teller-mine.svg b/svg/teller-mine.svg
new file mode 100644
index 000000000..37ef181ed
--- /dev/null
+++ b/svg/teller-mine.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/templar-eye.svg b/svg/templar-eye.svg
new file mode 100644
index 000000000..383891966
--- /dev/null
+++ b/svg/templar-eye.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/templar-heart.svg b/svg/templar-heart.svg
new file mode 100644
index 000000000..2ccfa3544
--- /dev/null
+++ b/svg/templar-heart.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/templar-shield.svg b/svg/templar-shield.svg
new file mode 100644
index 000000000..c4c27514f
--- /dev/null
+++ b/svg/templar-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/temple-door.svg b/svg/temple-door.svg
new file mode 100644
index 000000000..fb0dd057d
--- /dev/null
+++ b/svg/temple-door.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/temple-gate.svg b/svg/temple-gate.svg
new file mode 100644
index 000000000..e0e089a02
--- /dev/null
+++ b/svg/temple-gate.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/temporary-shield.svg b/svg/temporary-shield.svg
new file mode 100644
index 000000000..599d5113c
--- /dev/null
+++ b/svg/temporary-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/temptation.svg b/svg/temptation.svg
new file mode 100644
index 000000000..99bdf4447
--- /dev/null
+++ b/svg/temptation.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tennis-ball.svg b/svg/tennis-ball.svg
new file mode 100644
index 000000000..39ee9e2fb
--- /dev/null
+++ b/svg/tennis-ball.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tennis-court.svg b/svg/tennis-court.svg
new file mode 100644
index 000000000..7fca51158
--- /dev/null
+++ b/svg/tennis-court.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tennis-racket.svg b/svg/tennis-racket.svg
new file mode 100644
index 000000000..bea097b4e
--- /dev/null
+++ b/svg/tennis-racket.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tension-snowflake.svg b/svg/tension-snowflake.svg
new file mode 100644
index 000000000..2e6680379
--- /dev/null
+++ b/svg/tension-snowflake.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tentacle-heart.svg b/svg/tentacle-heart.svg
new file mode 100644
index 000000000..0937b5fda
--- /dev/null
+++ b/svg/tentacle-heart.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tentacle-strike.svg b/svg/tentacle-strike.svg
new file mode 100644
index 000000000..332298ed2
--- /dev/null
+++ b/svg/tentacle-strike.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tentacles-barrier.svg b/svg/tentacles-barrier.svg
new file mode 100644
index 000000000..8782f2e01
--- /dev/null
+++ b/svg/tentacles-barrier.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tentacles-skull.svg b/svg/tentacles-skull.svg
new file mode 100644
index 000000000..05df6cc09
--- /dev/null
+++ b/svg/tentacles-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tentacurl.svg b/svg/tentacurl.svg
new file mode 100644
index 000000000..8ebd7d3d0
--- /dev/null
+++ b/svg/tentacurl.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/terror.svg b/svg/terror.svg
new file mode 100644
index 000000000..2a3883faa
--- /dev/null
+++ b/svg/terror.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tesla-coil-2.svg b/svg/tesla-coil-2.svg
new file mode 100644
index 000000000..68cc07b2e
--- /dev/null
+++ b/svg/tesla-coil-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tesla-coil.svg b/svg/tesla-coil.svg
new file mode 100644
index 000000000..664f1da12
--- /dev/null
+++ b/svg/tesla-coil.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tesla-turret.svg b/svg/tesla-turret.svg
new file mode 100644
index 000000000..f9fc5cf4f
--- /dev/null
+++ b/svg/tesla-turret.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tesla.svg b/svg/tesla.svg
new file mode 100644
index 000000000..a87333a2a
--- /dev/null
+++ b/svg/tesla.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/test-tube-held.svg b/svg/test-tube-held.svg
new file mode 100644
index 000000000..0000f76ba
--- /dev/null
+++ b/svg/test-tube-held.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/test-tube-rack.svg b/svg/test-tube-rack.svg
new file mode 100644
index 000000000..e2ac299ae
--- /dev/null
+++ b/svg/test-tube-rack.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/test-tubes.svg b/svg/test-tubes.svg
new file mode 100644
index 000000000..ae2f54af1
--- /dev/null
+++ b/svg/test-tubes.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/texas.svg b/svg/texas.svg
new file mode 100644
index 000000000..d78e5c314
--- /dev/null
+++ b/svg/texas.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/theater-curtains.svg b/svg/theater-curtains.svg
new file mode 100644
index 000000000..719dc6232
--- /dev/null
+++ b/svg/theater-curtains.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/theater.svg b/svg/theater.svg
new file mode 100644
index 000000000..cf352245d
--- /dev/null
+++ b/svg/theater.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/thermometer-cold.svg b/svg/thermometer-cold.svg
new file mode 100644
index 000000000..468e9b702
--- /dev/null
+++ b/svg/thermometer-cold.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/thermometer-hot.svg b/svg/thermometer-hot.svg
new file mode 100644
index 000000000..6beb35ff8
--- /dev/null
+++ b/svg/thermometer-hot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/thermometer-scale.svg b/svg/thermometer-scale.svg
new file mode 100644
index 000000000..b5dd7c652
--- /dev/null
+++ b/svg/thermometer-scale.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/think.svg b/svg/think.svg
new file mode 100644
index 000000000..5c4dc1bd9
--- /dev/null
+++ b/svg/think.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/third-eye.svg b/svg/third-eye.svg
new file mode 100644
index 000000000..a7fbb18ea
--- /dev/null
+++ b/svg/third-eye.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/thompson-m1.svg b/svg/thompson-m1.svg
new file mode 100644
index 000000000..72fa103ab
--- /dev/null
+++ b/svg/thompson-m1.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/thompson-m1928.svg b/svg/thompson-m1928.svg
new file mode 100644
index 000000000..e5d96e1cc
--- /dev/null
+++ b/svg/thompson-m1928.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/thor-fist.svg b/svg/thor-fist.svg
new file mode 100644
index 000000000..169775712
--- /dev/null
+++ b/svg/thor-fist.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/thor-hammer.svg b/svg/thor-hammer.svg
new file mode 100644
index 000000000..8b9ed1299
--- /dev/null
+++ b/svg/thor-hammer.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/thorn-helix.svg b/svg/thorn-helix.svg
new file mode 100644
index 000000000..16e99bc14
--- /dev/null
+++ b/svg/thorn-helix.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/thorned-arrow.svg b/svg/thorned-arrow.svg
new file mode 100644
index 000000000..42f92d5c6
--- /dev/null
+++ b/svg/thorned-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/thorny-tentacle.svg b/svg/thorny-tentacle.svg
new file mode 100644
index 000000000..b0e607fb3
--- /dev/null
+++ b/svg/thorny-tentacle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/thorny-vine.svg b/svg/thorny-vine.svg
new file mode 100644
index 000000000..7763db845
--- /dev/null
+++ b/svg/thorny-vine.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/three-burning-balls.svg b/svg/three-burning-balls.svg
new file mode 100644
index 000000000..04415e122
--- /dev/null
+++ b/svg/three-burning-balls.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/three-friends.svg b/svg/three-friends.svg
new file mode 100644
index 000000000..18524ba08
--- /dev/null
+++ b/svg/three-friends.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/three-keys.svg b/svg/three-keys.svg
new file mode 100644
index 000000000..a2a8254f1
--- /dev/null
+++ b/svg/three-keys.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/three-leaves.svg b/svg/three-leaves.svg
new file mode 100644
index 000000000..1b9fde743
--- /dev/null
+++ b/svg/three-leaves.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/three-pointed-shuriken.svg b/svg/three-pointed-shuriken.svg
new file mode 100644
index 000000000..9e16810c5
--- /dev/null
+++ b/svg/three-pointed-shuriken.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/throne-king.svg b/svg/throne-king.svg
new file mode 100644
index 000000000..a4bf141d9
--- /dev/null
+++ b/svg/throne-king.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/throwing-ball.svg b/svg/throwing-ball.svg
new file mode 100644
index 000000000..b11ebb99e
--- /dev/null
+++ b/svg/throwing-ball.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/thrown-charcoal.svg b/svg/thrown-charcoal.svg
new file mode 100644
index 000000000..bba715d22
--- /dev/null
+++ b/svg/thrown-charcoal.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/thrown-daggers.svg b/svg/thrown-daggers.svg
new file mode 100644
index 000000000..14ce4b9c6
--- /dev/null
+++ b/svg/thrown-daggers.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/thrown-knife.svg b/svg/thrown-knife.svg
new file mode 100644
index 000000000..5dec57cfe
--- /dev/null
+++ b/svg/thrown-knife.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/thrown-spear.svg b/svg/thrown-spear.svg
new file mode 100644
index 000000000..c431be30b
--- /dev/null
+++ b/svg/thrown-spear.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/thrust-bend.svg b/svg/thrust-bend.svg
new file mode 100644
index 000000000..2addbaf75
--- /dev/null
+++ b/svg/thrust-bend.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/thrust.svg b/svg/thrust.svg
new file mode 100644
index 000000000..ec054578e
--- /dev/null
+++ b/svg/thrust.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/thumb-down.svg b/svg/thumb-down.svg
new file mode 100644
index 000000000..3386a80e4
--- /dev/null
+++ b/svg/thumb-down.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/thumb-up.svg b/svg/thumb-up.svg
new file mode 100644
index 000000000..774a2dde8
--- /dev/null
+++ b/svg/thumb-up.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/thunder-blade.svg b/svg/thunder-blade.svg
new file mode 100644
index 000000000..472a9a0ef
--- /dev/null
+++ b/svg/thunder-blade.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/thunder-skull.svg b/svg/thunder-skull.svg
new file mode 100644
index 000000000..795d8b85b
--- /dev/null
+++ b/svg/thunder-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/thunder-struck.svg b/svg/thunder-struck.svg
new file mode 100644
index 000000000..503d1cb5b
--- /dev/null
+++ b/svg/thunder-struck.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/thunderball.svg b/svg/thunderball.svg
new file mode 100644
index 000000000..b8abc2f61
--- /dev/null
+++ b/svg/thunderball.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/thwomp.svg b/svg/thwomp.svg
new file mode 100644
index 000000000..71bc80b31
--- /dev/null
+++ b/svg/thwomp.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tiara.svg b/svg/tiara.svg
new file mode 100644
index 000000000..c6f769550
--- /dev/null
+++ b/svg/tiara.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tic-tac-toe.svg b/svg/tic-tac-toe.svg
new file mode 100644
index 000000000..da59322f2
--- /dev/null
+++ b/svg/tic-tac-toe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tick.svg b/svg/tick.svg
new file mode 100644
index 000000000..609b9aac8
--- /dev/null
+++ b/svg/tick.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ticket.svg b/svg/ticket.svg
new file mode 100644
index 000000000..ad85a6465
--- /dev/null
+++ b/svg/ticket.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tie.svg b/svg/tie.svg
new file mode 100644
index 000000000..dd3cbf75e
--- /dev/null
+++ b/svg/tie.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tied-scroll.svg b/svg/tied-scroll.svg
new file mode 100644
index 000000000..d09d11d82
--- /dev/null
+++ b/svg/tied-scroll.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tiger-head.svg b/svg/tiger-head.svg
new file mode 100644
index 000000000..f28ea1e8c
--- /dev/null
+++ b/svg/tiger-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tiger.svg b/svg/tiger.svg
new file mode 100644
index 000000000..5a563a749
--- /dev/null
+++ b/svg/tiger.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tightrope.svg b/svg/tightrope.svg
new file mode 100644
index 000000000..fa30b0f75
--- /dev/null
+++ b/svg/tightrope.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/time-bomb.svg b/svg/time-bomb.svg
new file mode 100644
index 000000000..9a1de30f7
--- /dev/null
+++ b/svg/time-bomb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/time-dynamite.svg b/svg/time-dynamite.svg
new file mode 100644
index 000000000..fadcef8d3
--- /dev/null
+++ b/svg/time-dynamite.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/time-synchronization.svg b/svg/time-synchronization.svg
new file mode 100644
index 000000000..e844f2f4a
--- /dev/null
+++ b/svg/time-synchronization.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/time-trap.svg b/svg/time-trap.svg
new file mode 100644
index 000000000..383061871
--- /dev/null
+++ b/svg/time-trap.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tinker.svg b/svg/tinker.svg
new file mode 100644
index 000000000..268bae416
--- /dev/null
+++ b/svg/tinker.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tipi.svg b/svg/tipi.svg
new file mode 100644
index 000000000..e394d16a4
--- /dev/null
+++ b/svg/tipi.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tire-iron-cross.svg b/svg/tire-iron-cross.svg
new file mode 100644
index 000000000..3b03077b2
--- /dev/null
+++ b/svg/tire-iron-cross.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tire-iron.svg b/svg/tire-iron.svg
new file mode 100644
index 000000000..447007da7
--- /dev/null
+++ b/svg/tire-iron.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tire-tracks.svg b/svg/tire-tracks.svg
new file mode 100644
index 000000000..58e1e7f86
--- /dev/null
+++ b/svg/tire-tracks.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tired-eye.svg b/svg/tired-eye.svg
new file mode 100644
index 000000000..f5432be75
--- /dev/null
+++ b/svg/tired-eye.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/toad-teeth.svg b/svg/toad-teeth.svg
new file mode 100644
index 000000000..95712cd56
--- /dev/null
+++ b/svg/toad-teeth.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/toaster.svg b/svg/toaster.svg
new file mode 100644
index 000000000..43a299b37
--- /dev/null
+++ b/svg/toaster.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/toggles.svg b/svg/toggles.svg
new file mode 100644
index 000000000..a3a2c24a6
--- /dev/null
+++ b/svg/toggles.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/token.svg b/svg/token.svg
new file mode 100644
index 000000000..9f7972844
--- /dev/null
+++ b/svg/token.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tomahawk.svg b/svg/tomahawk.svg
new file mode 100644
index 000000000..80b1b436b
--- /dev/null
+++ b/svg/tomahawk.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tomato.svg b/svg/tomato.svg
new file mode 100644
index 000000000..300cc4287
--- /dev/null
+++ b/svg/tomato.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tombstone-2.svg b/svg/tombstone-2.svg
new file mode 100644
index 000000000..4de368721
--- /dev/null
+++ b/svg/tombstone-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tombstone.svg b/svg/tombstone.svg
new file mode 100644
index 000000000..595805005
--- /dev/null
+++ b/svg/tombstone.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tongue.svg b/svg/tongue.svg
new file mode 100644
index 000000000..d2e12ff3b
--- /dev/null
+++ b/svg/tongue.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/toolbox.svg b/svg/toolbox.svg
new file mode 100644
index 000000000..5be011645
--- /dev/null
+++ b/svg/toolbox.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tooth.svg b/svg/tooth.svg
new file mode 100644
index 000000000..068c6bad6
--- /dev/null
+++ b/svg/tooth.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/toothbrush.svg b/svg/toothbrush.svg
new file mode 100644
index 000000000..7d6225899
--- /dev/null
+++ b/svg/toothbrush.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/top-hat.svg b/svg/top-hat.svg
new file mode 100644
index 000000000..1b8252cd7
--- /dev/null
+++ b/svg/top-hat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/top-paw.svg b/svg/top-paw.svg
new file mode 100644
index 000000000..63ef527e8
--- /dev/null
+++ b/svg/top-paw.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/topaz.svg b/svg/topaz.svg
new file mode 100644
index 000000000..fa68e068c
--- /dev/null
+++ b/svg/topaz.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/torc.svg b/svg/torc.svg
new file mode 100644
index 000000000..563b1f486
--- /dev/null
+++ b/svg/torc.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/torch.svg b/svg/torch.svg
new file mode 100644
index 000000000..abf85c2f4
--- /dev/null
+++ b/svg/torch.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tornado-discs.svg b/svg/tornado-discs.svg
new file mode 100644
index 000000000..037733731
--- /dev/null
+++ b/svg/tornado-discs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tornado.svg b/svg/tornado.svg
new file mode 100644
index 000000000..0bf8f403f
--- /dev/null
+++ b/svg/tornado.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/torpedo.svg b/svg/torpedo.svg
new file mode 100644
index 000000000..546c5ac33
--- /dev/null
+++ b/svg/torpedo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tortoise.svg b/svg/tortoise.svg
new file mode 100644
index 000000000..e65f74b70
--- /dev/null
+++ b/svg/tortoise.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/totem-head.svg b/svg/totem-head.svg
new file mode 100644
index 000000000..f977229ea
--- /dev/null
+++ b/svg/totem-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/totem-mask.svg b/svg/totem-mask.svg
new file mode 100644
index 000000000..be32b1463
--- /dev/null
+++ b/svg/totem-mask.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/totem.svg b/svg/totem.svg
new file mode 100644
index 000000000..beea1a935
--- /dev/null
+++ b/svg/totem.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/toucan.svg b/svg/toucan.svg
new file mode 100644
index 000000000..6a440e675
--- /dev/null
+++ b/svg/toucan.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tow-truck.svg b/svg/tow-truck.svg
new file mode 100644
index 000000000..3177a65a3
--- /dev/null
+++ b/svg/tow-truck.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/towel.svg b/svg/towel.svg
new file mode 100644
index 000000000..aaa18a45e
--- /dev/null
+++ b/svg/towel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tower-bridge.svg b/svg/tower-bridge.svg
new file mode 100644
index 000000000..520aafba3
--- /dev/null
+++ b/svg/tower-bridge.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tower-fall.svg b/svg/tower-fall.svg
new file mode 100644
index 000000000..acbbe6bae
--- /dev/null
+++ b/svg/tower-fall.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tower-flag.svg b/svg/tower-flag.svg
new file mode 100644
index 000000000..c940f189c
--- /dev/null
+++ b/svg/tower-flag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/toy-mallet.svg b/svg/toy-mallet.svg
new file mode 100644
index 000000000..6df0d44d5
--- /dev/null
+++ b/svg/toy-mallet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tracked-robot.svg b/svg/tracked-robot.svg
new file mode 100644
index 000000000..7b3f7a21c
--- /dev/null
+++ b/svg/tracked-robot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/trade.svg b/svg/trade.svg
new file mode 100644
index 000000000..b25fd2add
--- /dev/null
+++ b/svg/trade.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/traffic-cone.svg b/svg/traffic-cone.svg
new file mode 100644
index 000000000..73d59ef64
--- /dev/null
+++ b/svg/traffic-cone.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/traffic-lights-green.svg b/svg/traffic-lights-green.svg
new file mode 100644
index 000000000..e356c76b2
--- /dev/null
+++ b/svg/traffic-lights-green.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/traffic-lights-orange.svg b/svg/traffic-lights-orange.svg
new file mode 100644
index 000000000..bc38a39fd
--- /dev/null
+++ b/svg/traffic-lights-orange.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/traffic-lights-ready-to-go.svg b/svg/traffic-lights-ready-to-go.svg
new file mode 100644
index 000000000..006b94b40
--- /dev/null
+++ b/svg/traffic-lights-ready-to-go.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/traffic-lights-red.svg b/svg/traffic-lights-red.svg
new file mode 100644
index 000000000..2ab99f1cf
--- /dev/null
+++ b/svg/traffic-lights-red.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/trail.svg b/svg/trail.svg
new file mode 100644
index 000000000..d71910761
--- /dev/null
+++ b/svg/trail.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/trample.svg b/svg/trample.svg
new file mode 100644
index 000000000..5598159e1
--- /dev/null
+++ b/svg/trample.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/transform.svg b/svg/transform.svg
new file mode 100644
index 000000000..2a0fa1b1e
--- /dev/null
+++ b/svg/transform.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/transfuse.svg b/svg/transfuse.svg
new file mode 100644
index 000000000..d96d540ef
--- /dev/null
+++ b/svg/transfuse.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/transparent-slime.svg b/svg/transparent-slime.svg
new file mode 100644
index 000000000..627a03d5c
--- /dev/null
+++ b/svg/transparent-slime.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/transparent-tubes.svg b/svg/transparent-tubes.svg
new file mode 100644
index 000000000..a21820aae
--- /dev/null
+++ b/svg/transparent-tubes.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/transportation-rings.svg b/svg/transportation-rings.svg
new file mode 100644
index 000000000..84859eed1
--- /dev/null
+++ b/svg/transportation-rings.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/trap-mask.svg b/svg/trap-mask.svg
new file mode 100644
index 000000000..62dc787ab
--- /dev/null
+++ b/svg/trap-mask.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/trash-can.svg b/svg/trash-can.svg
new file mode 100644
index 000000000..e43ba6cef
--- /dev/null
+++ b/svg/trash-can.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/travel-dress.svg b/svg/travel-dress.svg
new file mode 100644
index 000000000..e49a65e5f
--- /dev/null
+++ b/svg/travel-dress.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tread.svg b/svg/tread.svg
new file mode 100644
index 000000000..0e0698a41
--- /dev/null
+++ b/svg/tread.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/treasure-map.svg b/svg/treasure-map.svg
new file mode 100644
index 000000000..a926f81e6
--- /dev/null
+++ b/svg/treasure-map.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/trebuchet.svg b/svg/trebuchet.svg
new file mode 100644
index 000000000..036954310
--- /dev/null
+++ b/svg/trebuchet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tree-beehive.svg b/svg/tree-beehive.svg
new file mode 100644
index 000000000..006250919
--- /dev/null
+++ b/svg/tree-beehive.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tree-branch.svg b/svg/tree-branch.svg
new file mode 100644
index 000000000..83a29a429
--- /dev/null
+++ b/svg/tree-branch.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tree-door.svg b/svg/tree-door.svg
new file mode 100644
index 000000000..16eb94160
--- /dev/null
+++ b/svg/tree-door.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tree-face.svg b/svg/tree-face.svg
new file mode 100644
index 000000000..a695ed5e0
--- /dev/null
+++ b/svg/tree-face.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tree-growth.svg b/svg/tree-growth.svg
new file mode 100644
index 000000000..923f42cc3
--- /dev/null
+++ b/svg/tree-growth.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tree-roots.svg b/svg/tree-roots.svg
new file mode 100644
index 000000000..eff7cbf42
--- /dev/null
+++ b/svg/tree-roots.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tree-swing.svg b/svg/tree-swing.svg
new file mode 100644
index 000000000..d130ec62c
--- /dev/null
+++ b/svg/tree-swing.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/treehouse.svg b/svg/treehouse.svg
new file mode 100644
index 000000000..b5b0e94ee
--- /dev/null
+++ b/svg/treehouse.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/trefoil-lily.svg b/svg/trefoil-lily.svg
new file mode 100644
index 000000000..5b32569cf
--- /dev/null
+++ b/svg/trefoil-lily.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/trefoil-shuriken.svg b/svg/trefoil-shuriken.svg
new file mode 100644
index 000000000..73b912936
--- /dev/null
+++ b/svg/trefoil-shuriken.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/trench-assault.svg b/svg/trench-assault.svg
new file mode 100644
index 000000000..f041d3084
--- /dev/null
+++ b/svg/trench-assault.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/trench-body-armor.svg b/svg/trench-body-armor.svg
new file mode 100644
index 000000000..460d73b1f
--- /dev/null
+++ b/svg/trench-body-armor.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/trench-knife.svg b/svg/trench-knife.svg
new file mode 100644
index 000000000..e8a847aa1
--- /dev/null
+++ b/svg/trench-knife.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/trench-spade.svg b/svg/trench-spade.svg
new file mode 100644
index 000000000..f277c6020
--- /dev/null
+++ b/svg/trench-spade.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/triangle-target.svg b/svg/triangle-target.svg
new file mode 100644
index 000000000..92e93e688
--- /dev/null
+++ b/svg/triangle-target.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tribal-gear.svg b/svg/tribal-gear.svg
new file mode 100644
index 000000000..180e99150
--- /dev/null
+++ b/svg/tribal-gear.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tribal-mask.svg b/svg/tribal-mask.svg
new file mode 100644
index 000000000..fd036e335
--- /dev/null
+++ b/svg/tribal-mask.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tribal-pendant.svg b/svg/tribal-pendant.svg
new file mode 100644
index 000000000..ca1ee13ed
--- /dev/null
+++ b/svg/tribal-pendant.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tribal-shield.svg b/svg/tribal-shield.svg
new file mode 100644
index 000000000..3f8538271
--- /dev/null
+++ b/svg/tribal-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tribunal-jury.svg b/svg/tribunal-jury.svg
new file mode 100644
index 000000000..8796e7092
--- /dev/null
+++ b/svg/tribunal-jury.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/triceratops-head.svg b/svg/triceratops-head.svg
new file mode 100644
index 000000000..97ffd21a1
--- /dev/null
+++ b/svg/triceratops-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/trident-shield.svg b/svg/trident-shield.svg
new file mode 100644
index 000000000..9914934bf
--- /dev/null
+++ b/svg/trident-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/trident.svg b/svg/trident.svg
new file mode 100644
index 000000000..0ec9139fc
--- /dev/null
+++ b/svg/trident.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/triforce.svg b/svg/triforce.svg
new file mode 100644
index 000000000..a5273594e
--- /dev/null
+++ b/svg/triforce.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/trigger-hurt.svg b/svg/trigger-hurt.svg
new file mode 100644
index 000000000..ff1374c2d
--- /dev/null
+++ b/svg/trigger-hurt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/trilobite.svg b/svg/trilobite.svg
new file mode 100644
index 000000000..b6ecbb83d
--- /dev/null
+++ b/svg/trilobite.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/trinacria.svg b/svg/trinacria.svg
new file mode 100644
index 000000000..487f985ec
--- /dev/null
+++ b/svg/trinacria.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/triorb.svg b/svg/triorb.svg
new file mode 100644
index 000000000..eb27d8b6f
--- /dev/null
+++ b/svg/triorb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/triple-beak.svg b/svg/triple-beak.svg
new file mode 100644
index 000000000..0796a8ddc
--- /dev/null
+++ b/svg/triple-beak.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/triple-claws.svg b/svg/triple-claws.svg
new file mode 100644
index 000000000..aca35af81
--- /dev/null
+++ b/svg/triple-claws.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/triple-corn.svg b/svg/triple-corn.svg
new file mode 100644
index 000000000..cca6e6120
--- /dev/null
+++ b/svg/triple-corn.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/triple-gate.svg b/svg/triple-gate.svg
new file mode 100644
index 000000000..56dba1972
--- /dev/null
+++ b/svg/triple-gate.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/triple-lock.svg b/svg/triple-lock.svg
new file mode 100644
index 000000000..58aa309db
--- /dev/null
+++ b/svg/triple-lock.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/triple-needle.svg b/svg/triple-needle.svg
new file mode 100644
index 000000000..052f61514
--- /dev/null
+++ b/svg/triple-needle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/triple-plier.svg b/svg/triple-plier.svg
new file mode 100644
index 000000000..693325498
--- /dev/null
+++ b/svg/triple-plier.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/triple-scratches.svg b/svg/triple-scratches.svg
new file mode 100644
index 000000000..4d98759a3
--- /dev/null
+++ b/svg/triple-scratches.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/triple-shells.svg b/svg/triple-shells.svg
new file mode 100644
index 000000000..ab2a5e34f
--- /dev/null
+++ b/svg/triple-shells.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/triple-skulls.svg b/svg/triple-skulls.svg
new file mode 100644
index 000000000..0073f5f26
--- /dev/null
+++ b/svg/triple-skulls.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/triple-yin.svg b/svg/triple-yin.svg
new file mode 100644
index 000000000..ff3dacf26
--- /dev/null
+++ b/svg/triple-yin.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tripwire.svg b/svg/tripwire.svg
new file mode 100644
index 000000000..afc4ddb17
--- /dev/null
+++ b/svg/tripwire.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/triquetra.svg b/svg/triquetra.svg
new file mode 100644
index 000000000..87dfc7a49
--- /dev/null
+++ b/svg/triquetra.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/trireme.svg b/svg/trireme.svg
new file mode 100644
index 000000000..84c9a01c9
--- /dev/null
+++ b/svg/trireme.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/triton-head.svg b/svg/triton-head.svg
new file mode 100644
index 000000000..06f88582c
--- /dev/null
+++ b/svg/triton-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/troglodyte.svg b/svg/troglodyte.svg
new file mode 100644
index 000000000..8f41b6c63
--- /dev/null
+++ b/svg/troglodyte.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/trojan-horse.svg b/svg/trojan-horse.svg
new file mode 100644
index 000000000..03776e979
--- /dev/null
+++ b/svg/trojan-horse.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/troll.svg b/svg/troll.svg
new file mode 100644
index 000000000..e22169d64
--- /dev/null
+++ b/svg/troll.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/trombone.svg b/svg/trombone.svg
new file mode 100644
index 000000000..0bbbea869
--- /dev/null
+++ b/svg/trombone.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tron-arrow.svg b/svg/tron-arrow.svg
new file mode 100644
index 000000000..9782d1f48
--- /dev/null
+++ b/svg/tron-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/trophies-shelf.svg b/svg/trophies-shelf.svg
new file mode 100644
index 000000000..6fb51bb11
--- /dev/null
+++ b/svg/trophies-shelf.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/trophy-cup.svg b/svg/trophy-cup.svg
new file mode 100644
index 000000000..8afbb5e1f
--- /dev/null
+++ b/svg/trophy-cup.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/trophy.svg b/svg/trophy.svg
new file mode 100644
index 000000000..7b6b37b94
--- /dev/null
+++ b/svg/trophy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tropical-fish.svg b/svg/tropical-fish.svg
new file mode 100644
index 000000000..021df6bd7
--- /dev/null
+++ b/svg/tropical-fish.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/trousers-2.svg b/svg/trousers-2.svg
new file mode 100644
index 000000000..39afcf851
--- /dev/null
+++ b/svg/trousers-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/trousers.svg b/svg/trousers.svg
new file mode 100644
index 000000000..f99984287
--- /dev/null
+++ b/svg/trousers.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/trowel.svg b/svg/trowel.svg
new file mode 100644
index 000000000..0be8646ad
--- /dev/null
+++ b/svg/trowel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/truce.svg b/svg/truce.svg
new file mode 100644
index 000000000..62c7e5500
--- /dev/null
+++ b/svg/truce.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/truck.svg b/svg/truck.svg
new file mode 100644
index 000000000..24512aad8
--- /dev/null
+++ b/svg/truck.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/trumpet-flag.svg b/svg/trumpet-flag.svg
new file mode 100644
index 000000000..e0397d91d
--- /dev/null
+++ b/svg/trumpet-flag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/trumpet.svg b/svg/trumpet.svg
new file mode 100644
index 000000000..f1dfcbb73
--- /dev/null
+++ b/svg/trumpet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/trunk-mushroom.svg b/svg/trunk-mushroom.svg
new file mode 100644
index 000000000..78bae456a
--- /dev/null
+++ b/svg/trunk-mushroom.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tuba.svg b/svg/tuba.svg
new file mode 100644
index 000000000..fb00a5b85
--- /dev/null
+++ b/svg/tuba.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tumbleweed.svg b/svg/tumbleweed.svg
new file mode 100644
index 000000000..1244edb78
--- /dev/null
+++ b/svg/tumbleweed.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tumor.svg b/svg/tumor.svg
new file mode 100644
index 000000000..24ce423ed
--- /dev/null
+++ b/svg/tumor.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tumulus.svg b/svg/tumulus.svg
new file mode 100644
index 000000000..5dac14f93
--- /dev/null
+++ b/svg/tumulus.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tune-pitch.svg b/svg/tune-pitch.svg
new file mode 100644
index 000000000..d7a468089
--- /dev/null
+++ b/svg/tune-pitch.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tunisia.svg b/svg/tunisia.svg
new file mode 100644
index 000000000..c58f9ffd8
--- /dev/null
+++ b/svg/tunisia.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/turban.svg b/svg/turban.svg
new file mode 100644
index 000000000..42bcd8c75
--- /dev/null
+++ b/svg/turban.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/turbine.svg b/svg/turbine.svg
new file mode 100644
index 000000000..e6cf76a5a
--- /dev/null
+++ b/svg/turbine.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/turd.svg b/svg/turd.svg
new file mode 100644
index 000000000..01321a12d
--- /dev/null
+++ b/svg/turd.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/turnstile.svg b/svg/turnstile.svg
new file mode 100644
index 000000000..5431ec48f
--- /dev/null
+++ b/svg/turnstile.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/turret.svg b/svg/turret.svg
new file mode 100644
index 000000000..3b00650bf
--- /dev/null
+++ b/svg/turret.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/turtle-shell.svg b/svg/turtle-shell.svg
new file mode 100644
index 000000000..7d610a389
--- /dev/null
+++ b/svg/turtle-shell.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/turtle.svg b/svg/turtle.svg
new file mode 100644
index 000000000..6df7b212f
--- /dev/null
+++ b/svg/turtle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tusks-flag.svg b/svg/tusks-flag.svg
new file mode 100644
index 000000000..46607096f
--- /dev/null
+++ b/svg/tusks-flag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tv-remote.svg b/svg/tv-remote.svg
new file mode 100644
index 000000000..27172bc26
--- /dev/null
+++ b/svg/tv-remote.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tv-tower.svg b/svg/tv-tower.svg
new file mode 100644
index 000000000..0f3f040b1
--- /dev/null
+++ b/svg/tv-tower.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tv.svg b/svg/tv.svg
new file mode 100644
index 000000000..502d87ba2
--- /dev/null
+++ b/svg/tv.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/twin-shell.svg b/svg/twin-shell.svg
new file mode 100644
index 000000000..107f30cc1
--- /dev/null
+++ b/svg/twin-shell.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/twirl-center.svg b/svg/twirl-center.svg
new file mode 100644
index 000000000..ebb3a1788
--- /dev/null
+++ b/svg/twirl-center.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/twirly-flower.svg b/svg/twirly-flower.svg
new file mode 100644
index 000000000..55bf81d28
--- /dev/null
+++ b/svg/twirly-flower.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/twister.svg b/svg/twister.svg
new file mode 100644
index 000000000..e3611ae4a
--- /dev/null
+++ b/svg/twister.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/two-coins.svg b/svg/two-coins.svg
new file mode 100644
index 000000000..e94e11986
--- /dev/null
+++ b/svg/two-coins.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/two-feathers.svg b/svg/two-feathers.svg
new file mode 100644
index 000000000..8715ed764
--- /dev/null
+++ b/svg/two-feathers.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/two-handed-sword.svg b/svg/two-handed-sword.svg
new file mode 100644
index 000000000..683fd29bd
--- /dev/null
+++ b/svg/two-handed-sword.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/two-shadows.svg b/svg/two-shadows.svg
new file mode 100644
index 000000000..461b4423d
--- /dev/null
+++ b/svg/two-shadows.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/tyre.svg b/svg/tyre.svg
new file mode 100644
index 000000000..bc5c5ad8f
--- /dev/null
+++ b/svg/tyre.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ubisoft-sun.svg b/svg/ubisoft-sun.svg
new file mode 100644
index 000000000..1cc908afa
--- /dev/null
+++ b/svg/ubisoft-sun.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/udder.svg b/svg/udder.svg
new file mode 100644
index 000000000..de650e2f2
--- /dev/null
+++ b/svg/udder.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ufo.svg b/svg/ufo.svg
new file mode 100644
index 000000000..0839c9421
--- /dev/null
+++ b/svg/ufo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ultrasound.svg b/svg/ultrasound.svg
new file mode 100644
index 000000000..35dc36a7b
--- /dev/null
+++ b/svg/ultrasound.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/uluru.svg b/svg/uluru.svg
new file mode 100644
index 000000000..b565da537
--- /dev/null
+++ b/svg/uluru.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/umbrella-bayonet.svg b/svg/umbrella-bayonet.svg
new file mode 100644
index 000000000..8b2d1d5fc
--- /dev/null
+++ b/svg/umbrella-bayonet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/umbrella.svg b/svg/umbrella.svg
new file mode 100644
index 000000000..45f37eed1
--- /dev/null
+++ b/svg/umbrella.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/unbalanced.svg b/svg/unbalanced.svg
new file mode 100644
index 000000000..010dfa1d3
--- /dev/null
+++ b/svg/unbalanced.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/uncertainty.svg b/svg/uncertainty.svg
new file mode 100644
index 000000000..0b6426b56
--- /dev/null
+++ b/svg/uncertainty.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/underground-cave.svg b/svg/underground-cave.svg
new file mode 100644
index 000000000..c6b2cefac
--- /dev/null
+++ b/svg/underground-cave.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/underhand.svg b/svg/underhand.svg
new file mode 100644
index 000000000..08c665460
--- /dev/null
+++ b/svg/underhand.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/underwear-shorts.svg b/svg/underwear-shorts.svg
new file mode 100644
index 000000000..6e0062deb
--- /dev/null
+++ b/svg/underwear-shorts.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/underwear.svg b/svg/underwear.svg
new file mode 100644
index 000000000..249489399
--- /dev/null
+++ b/svg/underwear.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/unfriendly-fire.svg b/svg/unfriendly-fire.svg
new file mode 100644
index 000000000..c47f31596
--- /dev/null
+++ b/svg/unfriendly-fire.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/unicorn.svg b/svg/unicorn.svg
new file mode 100644
index 000000000..854ed02ee
--- /dev/null
+++ b/svg/unicorn.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/unicycle.svg b/svg/unicycle.svg
new file mode 100644
index 000000000..16bde2b29
--- /dev/null
+++ b/svg/unicycle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/union-jack.svg b/svg/union-jack.svg
new file mode 100644
index 000000000..d599572f4
--- /dev/null
+++ b/svg/union-jack.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/unlit-bomb.svg b/svg/unlit-bomb.svg
new file mode 100644
index 000000000..376557470
--- /dev/null
+++ b/svg/unlit-bomb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/unlit-candelabra.svg b/svg/unlit-candelabra.svg
new file mode 100644
index 000000000..88e0ff8ad
--- /dev/null
+++ b/svg/unlit-candelabra.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/unlocking.svg b/svg/unlocking.svg
new file mode 100644
index 000000000..dd678f055
--- /dev/null
+++ b/svg/unlocking.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/unplugged.svg b/svg/unplugged.svg
new file mode 100644
index 000000000..d377fa2b1
--- /dev/null
+++ b/svg/unplugged.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/unstable-orb.svg b/svg/unstable-orb.svg
new file mode 100644
index 000000000..b6ffa2210
--- /dev/null
+++ b/svg/unstable-orb.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/unstable-projectile.svg b/svg/unstable-projectile.svg
new file mode 100644
index 000000000..452409d81
--- /dev/null
+++ b/svg/unstable-projectile.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/up-card.svg b/svg/up-card.svg
new file mode 100644
index 000000000..f5dc6d351
--- /dev/null
+++ b/svg/up-card.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/upgrade.svg b/svg/upgrade.svg
new file mode 100644
index 000000000..d2ba6b2c7
--- /dev/null
+++ b/svg/upgrade.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/uprising.svg b/svg/uprising.svg
new file mode 100644
index 000000000..3f1b5e2ab
--- /dev/null
+++ b/svg/uprising.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ursa-major.svg b/svg/ursa-major.svg
new file mode 100644
index 000000000..4365aafcc
--- /dev/null
+++ b/svg/ursa-major.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/uruguay.svg b/svg/uruguay.svg
new file mode 100644
index 000000000..c7cae7d23
--- /dev/null
+++ b/svg/uruguay.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/usa-flag.svg b/svg/usa-flag.svg
new file mode 100644
index 000000000..431df5110
--- /dev/null
+++ b/svg/usa-flag.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/usable.svg b/svg/usable.svg
new file mode 100644
index 000000000..44bbe05b0
--- /dev/null
+++ b/svg/usable.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/usb-key.svg b/svg/usb-key.svg
new file mode 100644
index 000000000..2db3e3189
--- /dev/null
+++ b/svg/usb-key.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/ushanka.svg b/svg/ushanka.svg
new file mode 100644
index 000000000..54112671a
--- /dev/null
+++ b/svg/ushanka.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/uzi.svg b/svg/uzi.svg
new file mode 100644
index 000000000..65443e4f9
--- /dev/null
+++ b/svg/uzi.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/vacuum-cleaner.svg b/svg/vacuum-cleaner.svg
new file mode 100644
index 000000000..cfe53d479
--- /dev/null
+++ b/svg/vacuum-cleaner.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/valley.svg b/svg/valley.svg
new file mode 100644
index 000000000..74b8da4c1
--- /dev/null
+++ b/svg/valley.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/valve.svg b/svg/valve.svg
new file mode 100644
index 000000000..88ac564ce
--- /dev/null
+++ b/svg/valve.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/vampire-cape.svg b/svg/vampire-cape.svg
new file mode 100644
index 000000000..dc4109766
--- /dev/null
+++ b/svg/vampire-cape.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/vampire-dracula.svg b/svg/vampire-dracula.svg
new file mode 100644
index 000000000..b793555dc
--- /dev/null
+++ b/svg/vampire-dracula.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/van-damme-split.svg b/svg/van-damme-split.svg
new file mode 100644
index 000000000..22ed42a42
--- /dev/null
+++ b/svg/van-damme-split.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/vanilla-flower.svg b/svg/vanilla-flower.svg
new file mode 100644
index 000000000..f82126461
--- /dev/null
+++ b/svg/vanilla-flower.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/velocipede.svg b/svg/velocipede.svg
new file mode 100644
index 000000000..9b6283956
--- /dev/null
+++ b/svg/velocipede.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/velociraptor-tracks.svg b/svg/velociraptor-tracks.svg
new file mode 100644
index 000000000..3eb9db4f3
--- /dev/null
+++ b/svg/velociraptor-tracks.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/velociraptor.svg b/svg/velociraptor.svg
new file mode 100644
index 000000000..9a46b0a45
--- /dev/null
+++ b/svg/velociraptor.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/vending-machine.svg b/svg/vending-machine.svg
new file mode 100644
index 000000000..1af95fbfd
--- /dev/null
+++ b/svg/vending-machine.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/venezuela.svg b/svg/venezuela.svg
new file mode 100644
index 000000000..575fce702
--- /dev/null
+++ b/svg/venezuela.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/venus-flytrap.svg b/svg/venus-flytrap.svg
new file mode 100644
index 000000000..4108d04a1
--- /dev/null
+++ b/svg/venus-flytrap.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/venus-of-willendorf.svg b/svg/venus-of-willendorf.svg
new file mode 100644
index 000000000..f45f914af
--- /dev/null
+++ b/svg/venus-of-willendorf.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/vertical-banner.svg b/svg/vertical-banner.svg
new file mode 100644
index 000000000..838b85e1c
--- /dev/null
+++ b/svg/vertical-banner.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/vertical-flip.svg b/svg/vertical-flip.svg
new file mode 100644
index 000000000..70fec61e5
--- /dev/null
+++ b/svg/vertical-flip.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/vhs.svg b/svg/vhs.svg
new file mode 100644
index 000000000..af0d9d50d
--- /dev/null
+++ b/svg/vhs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/vial.svg b/svg/vial.svg
new file mode 100644
index 000000000..d8384159f
--- /dev/null
+++ b/svg/vial.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/vibrating-ball.svg b/svg/vibrating-ball.svg
new file mode 100644
index 000000000..236c7a01a
--- /dev/null
+++ b/svg/vibrating-ball.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/vibrating-shield.svg b/svg/vibrating-shield.svg
new file mode 100644
index 000000000..910fbf243
--- /dev/null
+++ b/svg/vibrating-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/vibrating-smartphone.svg b/svg/vibrating-smartphone.svg
new file mode 100644
index 000000000..4a5961129
--- /dev/null
+++ b/svg/vibrating-smartphone.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/video-camera.svg b/svg/video-camera.svg
new file mode 100644
index 000000000..67f4a93d0
--- /dev/null
+++ b/svg/video-camera.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/video-conference.svg b/svg/video-conference.svg
new file mode 100644
index 000000000..bc7f28693
--- /dev/null
+++ b/svg/video-conference.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/viking-church.svg b/svg/viking-church.svg
new file mode 100644
index 000000000..4e56499ed
--- /dev/null
+++ b/svg/viking-church.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/viking-head.svg b/svg/viking-head.svg
new file mode 100644
index 000000000..2e93d8e74
--- /dev/null
+++ b/svg/viking-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/viking-helmet.svg b/svg/viking-helmet.svg
new file mode 100644
index 000000000..25c2a5342
--- /dev/null
+++ b/svg/viking-helmet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/viking-longhouse.svg b/svg/viking-longhouse.svg
new file mode 100644
index 000000000..4c7420758
--- /dev/null
+++ b/svg/viking-longhouse.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/viking-shield.svg b/svg/viking-shield.svg
new file mode 100644
index 000000000..f21b7e354
--- /dev/null
+++ b/svg/viking-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/vile-fluid.svg b/svg/vile-fluid.svg
new file mode 100644
index 000000000..8c63777ff
--- /dev/null
+++ b/svg/vile-fluid.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/village.svg b/svg/village.svg
new file mode 100644
index 000000000..8cfcb1e3c
--- /dev/null
+++ b/svg/village.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/vine-flower.svg b/svg/vine-flower.svg
new file mode 100644
index 000000000..fbe21b7e0
--- /dev/null
+++ b/svg/vine-flower.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/vine-leaf.svg b/svg/vine-leaf.svg
new file mode 100644
index 000000000..69cbbba17
--- /dev/null
+++ b/svg/vine-leaf.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/vine-whip.svg b/svg/vine-whip.svg
new file mode 100644
index 000000000..8a2785d35
--- /dev/null
+++ b/svg/vine-whip.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/vines.svg b/svg/vines.svg
new file mode 100644
index 000000000..ebf5ca3b4
--- /dev/null
+++ b/svg/vines.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/vintage-robot.svg b/svg/vintage-robot.svg
new file mode 100644
index 000000000..ca72fe9b3
--- /dev/null
+++ b/svg/vintage-robot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/viola.svg b/svg/viola.svg
new file mode 100644
index 000000000..9b7dcd5f3
--- /dev/null
+++ b/svg/viola.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/violin.svg b/svg/violin.svg
new file mode 100644
index 000000000..b3d7ac4ec
--- /dev/null
+++ b/svg/violin.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/virgo.svg b/svg/virgo.svg
new file mode 100644
index 000000000..2e1b1af53
--- /dev/null
+++ b/svg/virgo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/virtual-marker.svg b/svg/virtual-marker.svg
new file mode 100644
index 000000000..6a6e4479b
--- /dev/null
+++ b/svg/virtual-marker.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/virus.svg b/svg/virus.svg
new file mode 100644
index 000000000..e4d0e41ae
--- /dev/null
+++ b/svg/virus.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/visored-helm.svg b/svg/visored-helm.svg
new file mode 100644
index 000000000..1083c2ad6
--- /dev/null
+++ b/svg/visored-helm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/vitruvian-man.svg b/svg/vitruvian-man.svg
new file mode 100644
index 000000000..a084b107b
--- /dev/null
+++ b/svg/vitruvian-man.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/volcano.svg b/svg/volcano.svg
new file mode 100644
index 000000000..b067248ae
--- /dev/null
+++ b/svg/volcano.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/volleyball-ball.svg b/svg/volleyball-ball.svg
new file mode 100644
index 000000000..f8330c5db
--- /dev/null
+++ b/svg/volleyball-ball.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/vomiting.svg b/svg/vomiting.svg
new file mode 100644
index 000000000..9b8ed589a
--- /dev/null
+++ b/svg/vomiting.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/voodoo-doll.svg b/svg/voodoo-doll.svg
new file mode 100644
index 000000000..693756090
--- /dev/null
+++ b/svg/voodoo-doll.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/vortex.svg b/svg/vortex.svg
new file mode 100644
index 000000000..46a00b090
--- /dev/null
+++ b/svg/vortex.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/vote.svg b/svg/vote.svg
new file mode 100644
index 000000000..c9d3d7b69
--- /dev/null
+++ b/svg/vote.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/vr-headset.svg b/svg/vr-headset.svg
new file mode 100644
index 000000000..0eca4a6e8
--- /dev/null
+++ b/svg/vr-headset.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/vulture.svg b/svg/vulture.svg
new file mode 100644
index 000000000..766a8d7e2
--- /dev/null
+++ b/svg/vulture.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/vuvuzelas.svg b/svg/vuvuzelas.svg
new file mode 100644
index 000000000..99a8276ba
--- /dev/null
+++ b/svg/vuvuzelas.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/walk.svg b/svg/walk.svg
new file mode 100644
index 000000000..375c8a89a
--- /dev/null
+++ b/svg/walk.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/walkie-talkie.svg b/svg/walkie-talkie.svg
new file mode 100644
index 000000000..689eca871
--- /dev/null
+++ b/svg/walkie-talkie.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/walking-boot.svg b/svg/walking-boot.svg
new file mode 100644
index 000000000..0e2beafc6
--- /dev/null
+++ b/svg/walking-boot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/walking-scout.svg b/svg/walking-scout.svg
new file mode 100644
index 000000000..57a32b4cf
--- /dev/null
+++ b/svg/walking-scout.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/walking-turret.svg b/svg/walking-turret.svg
new file mode 100644
index 000000000..bfad7e975
--- /dev/null
+++ b/svg/walking-turret.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wall-light.svg b/svg/wall-light.svg
new file mode 100644
index 000000000..5b55b95a0
--- /dev/null
+++ b/svg/wall-light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wallet.svg b/svg/wallet.svg
new file mode 100644
index 000000000..34e4f6d7e
--- /dev/null
+++ b/svg/wallet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/walrus-head.svg b/svg/walrus-head.svg
new file mode 100644
index 000000000..b65888eda
--- /dev/null
+++ b/svg/walrus-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/walther-ppk.svg b/svg/walther-ppk.svg
new file mode 100644
index 000000000..9f754d239
--- /dev/null
+++ b/svg/walther-ppk.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wanted-reward.svg b/svg/wanted-reward.svg
new file mode 100644
index 000000000..6f190c41d
--- /dev/null
+++ b/svg/wanted-reward.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/war-axe.svg b/svg/war-axe.svg
new file mode 100644
index 000000000..e942d4f57
--- /dev/null
+++ b/svg/war-axe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/war-bonnet.svg b/svg/war-bonnet.svg
new file mode 100644
index 000000000..13a2d754f
--- /dev/null
+++ b/svg/war-bonnet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/war-pick.svg b/svg/war-pick.svg
new file mode 100644
index 000000000..8b4e5a969
--- /dev/null
+++ b/svg/war-pick.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/warhammer.svg b/svg/warhammer.svg
new file mode 100644
index 000000000..1bcf8984a
--- /dev/null
+++ b/svg/warhammer.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/warlock-eye.svg b/svg/warlock-eye.svg
new file mode 100644
index 000000000..ad045e66b
--- /dev/null
+++ b/svg/warlock-eye.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/warlock-hood.svg b/svg/warlock-hood.svg
new file mode 100644
index 000000000..4e01027a4
--- /dev/null
+++ b/svg/warlock-hood.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/warlord-helmet.svg b/svg/warlord-helmet.svg
new file mode 100644
index 000000000..92d2c289b
--- /dev/null
+++ b/svg/warlord-helmet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/warp-pipe.svg b/svg/warp-pipe.svg
new file mode 100644
index 000000000..1a2af2bea
--- /dev/null
+++ b/svg/warp-pipe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/washing-machine.svg b/svg/washing-machine.svg
new file mode 100644
index 000000000..c9ac6aa50
--- /dev/null
+++ b/svg/washing-machine.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wasp-sting.svg b/svg/wasp-sting.svg
new file mode 100644
index 000000000..2261a5db7
--- /dev/null
+++ b/svg/wasp-sting.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/watch.svg b/svg/watch.svg
new file mode 100644
index 000000000..c896c86df
--- /dev/null
+++ b/svg/watch.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/watchtower.svg b/svg/watchtower.svg
new file mode 100644
index 000000000..a7f587122
--- /dev/null
+++ b/svg/watchtower.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/water-bolt.svg b/svg/water-bolt.svg
new file mode 100644
index 000000000..d3fcab3bd
--- /dev/null
+++ b/svg/water-bolt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/water-bottle.svg b/svg/water-bottle.svg
new file mode 100644
index 000000000..b412be1d1
--- /dev/null
+++ b/svg/water-bottle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/water-diviner-stick.svg b/svg/water-diviner-stick.svg
new file mode 100644
index 000000000..1714a2a10
--- /dev/null
+++ b/svg/water-diviner-stick.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/water-drop.svg b/svg/water-drop.svg
new file mode 100644
index 000000000..a30e9fade
--- /dev/null
+++ b/svg/water-drop.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/water-flask.svg b/svg/water-flask.svg
new file mode 100644
index 000000000..56b2f4c60
--- /dev/null
+++ b/svg/water-flask.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/water-fountain.svg b/svg/water-fountain.svg
new file mode 100644
index 000000000..a8ceb871e
--- /dev/null
+++ b/svg/water-fountain.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/water-gallon.svg b/svg/water-gallon.svg
new file mode 100644
index 000000000..8ba3fc3a9
--- /dev/null
+++ b/svg/water-gallon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/water-gun.svg b/svg/water-gun.svg
new file mode 100644
index 000000000..250be5c53
--- /dev/null
+++ b/svg/water-gun.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/water-mill.svg b/svg/water-mill.svg
new file mode 100644
index 000000000..dd139cdfe
--- /dev/null
+++ b/svg/water-mill.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/water-polo.svg b/svg/water-polo.svg
new file mode 100644
index 000000000..ac27c3228
--- /dev/null
+++ b/svg/water-polo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/water-recycling.svg b/svg/water-recycling.svg
new file mode 100644
index 000000000..4d195e12b
--- /dev/null
+++ b/svg/water-recycling.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/water-splash.svg b/svg/water-splash.svg
new file mode 100644
index 000000000..51be3c01a
--- /dev/null
+++ b/svg/water-splash.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/water-tank.svg b/svg/water-tank.svg
new file mode 100644
index 000000000..c0bd1bc0b
--- /dev/null
+++ b/svg/water-tank.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/water-tower.svg b/svg/water-tower.svg
new file mode 100644
index 000000000..34feaf20f
--- /dev/null
+++ b/svg/water-tower.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/waterfall.svg b/svg/waterfall.svg
new file mode 100644
index 000000000..07c53a8a3
--- /dev/null
+++ b/svg/waterfall.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/watering-can.svg b/svg/watering-can.svg
new file mode 100644
index 000000000..62649999f
--- /dev/null
+++ b/svg/watering-can.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/watermelon.svg b/svg/watermelon.svg
new file mode 100644
index 000000000..295c839be
--- /dev/null
+++ b/svg/watermelon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wave-crest.svg b/svg/wave-crest.svg
new file mode 100644
index 000000000..d5f6614c7
--- /dev/null
+++ b/svg/wave-crest.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wave-strike.svg b/svg/wave-strike.svg
new file mode 100644
index 000000000..b47218608
--- /dev/null
+++ b/svg/wave-strike.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wave-surfer.svg b/svg/wave-surfer.svg
new file mode 100644
index 000000000..9c1bddbd2
--- /dev/null
+++ b/svg/wave-surfer.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/waves.svg b/svg/waves.svg
new file mode 100644
index 000000000..54de2e377
--- /dev/null
+++ b/svg/waves.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wavy-chains.svg b/svg/wavy-chains.svg
new file mode 100644
index 000000000..c27f9360b
--- /dev/null
+++ b/svg/wavy-chains.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wavy-itinerary.svg b/svg/wavy-itinerary.svg
new file mode 100644
index 000000000..68109bfec
--- /dev/null
+++ b/svg/wavy-itinerary.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wax-seal.svg b/svg/wax-seal.svg
new file mode 100644
index 000000000..845a9d353
--- /dev/null
+++ b/svg/wax-seal.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wax-tablet.svg b/svg/wax-tablet.svg
new file mode 100644
index 000000000..3445950ed
--- /dev/null
+++ b/svg/wax-tablet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/web-spit.svg b/svg/web-spit.svg
new file mode 100644
index 000000000..430086c42
--- /dev/null
+++ b/svg/web-spit.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/weight-crush.svg b/svg/weight-crush.svg
new file mode 100644
index 000000000..727b9207f
--- /dev/null
+++ b/svg/weight-crush.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/weight-lifting-down.svg b/svg/weight-lifting-down.svg
new file mode 100644
index 000000000..60618c963
--- /dev/null
+++ b/svg/weight-lifting-down.svg
@@ -0,0 +1 @@
+
diff --git a/svg/weight-lifting-up.svg b/svg/weight-lifting-up.svg
new file mode 100644
index 000000000..8dd4046a8
--- /dev/null
+++ b/svg/weight-lifting-up.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/weight-scale.svg b/svg/weight-scale.svg
new file mode 100644
index 000000000..6ce0588a1
--- /dev/null
+++ b/svg/weight-scale.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/weight.svg b/svg/weight.svg
new file mode 100644
index 000000000..74f1fc646
--- /dev/null
+++ b/svg/weight.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/well.svg b/svg/well.svg
new file mode 100644
index 000000000..96eb50817
--- /dev/null
+++ b/svg/well.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/werewolf.svg b/svg/werewolf.svg
new file mode 100644
index 000000000..867c1d455
--- /dev/null
+++ b/svg/werewolf.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/western-hat.svg b/svg/western-hat.svg
new file mode 100644
index 000000000..73fb1ac22
--- /dev/null
+++ b/svg/western-hat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/whale-tail.svg b/svg/whale-tail.svg
new file mode 100644
index 000000000..327ae832d
--- /dev/null
+++ b/svg/whale-tail.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wheat.svg b/svg/wheat.svg
new file mode 100644
index 000000000..ab535c4b5
--- /dev/null
+++ b/svg/wheat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wheelbarrow.svg b/svg/wheelbarrow.svg
new file mode 100644
index 000000000..34cb3d9a1
--- /dev/null
+++ b/svg/wheelbarrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/whip.svg b/svg/whip.svg
new file mode 100644
index 000000000..61d670e38
--- /dev/null
+++ b/svg/whip.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/whiplash.svg b/svg/whiplash.svg
new file mode 100644
index 000000000..f9321aac5
--- /dev/null
+++ b/svg/whiplash.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/whirlpool-shuriken.svg b/svg/whirlpool-shuriken.svg
new file mode 100644
index 000000000..55525f3f5
--- /dev/null
+++ b/svg/whirlpool-shuriken.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/whirlwind.svg b/svg/whirlwind.svg
new file mode 100644
index 000000000..ff8cff340
--- /dev/null
+++ b/svg/whirlwind.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/whisk.svg b/svg/whisk.svg
new file mode 100644
index 000000000..bfd5b6086
--- /dev/null
+++ b/svg/whisk.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/whistle.svg b/svg/whistle.svg
new file mode 100644
index 000000000..1d150c7e4
--- /dev/null
+++ b/svg/whistle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/white-book.svg b/svg/white-book.svg
new file mode 100644
index 000000000..22259f8df
--- /dev/null
+++ b/svg/white-book.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/white-cat.svg b/svg/white-cat.svg
new file mode 100644
index 000000000..8bd0fa342
--- /dev/null
+++ b/svg/white-cat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/white-tower.svg b/svg/white-tower.svg
new file mode 100644
index 000000000..c00c4f86c
--- /dev/null
+++ b/svg/white-tower.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wide-arrow-dunk.svg b/svg/wide-arrow-dunk.svg
new file mode 100644
index 000000000..9a0d0ac4d
--- /dev/null
+++ b/svg/wide-arrow-dunk.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wifi-router.svg b/svg/wifi-router.svg
new file mode 100644
index 000000000..73c0ff13b
--- /dev/null
+++ b/svg/wifi-router.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wildfires.svg b/svg/wildfires.svg
new file mode 100644
index 000000000..b12116d4c
--- /dev/null
+++ b/svg/wildfires.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/william-tell-skull.svg b/svg/william-tell-skull.svg
new file mode 100644
index 000000000..2b817aa4a
--- /dev/null
+++ b/svg/william-tell-skull.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/william-tell.svg b/svg/william-tell.svg
new file mode 100644
index 000000000..f4407a275
--- /dev/null
+++ b/svg/william-tell.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/willow-tree.svg b/svg/willow-tree.svg
new file mode 100644
index 000000000..8ee6af089
--- /dev/null
+++ b/svg/willow-tree.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/winchester-rifle.svg b/svg/winchester-rifle.svg
new file mode 100644
index 000000000..93ee6a23c
--- /dev/null
+++ b/svg/winchester-rifle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wind-hole.svg b/svg/wind-hole.svg
new file mode 100644
index 000000000..6d226e794
--- /dev/null
+++ b/svg/wind-hole.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wind-slap.svg b/svg/wind-slap.svg
new file mode 100644
index 000000000..35599095e
--- /dev/null
+++ b/svg/wind-slap.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wind-turbine.svg b/svg/wind-turbine.svg
new file mode 100644
index 000000000..7b0bc1c86
--- /dev/null
+++ b/svg/wind-turbine.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/windchimes.svg b/svg/windchimes.svg
new file mode 100644
index 000000000..77ac4a3d7
--- /dev/null
+++ b/svg/windchimes.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/windmill.svg b/svg/windmill.svg
new file mode 100644
index 000000000..00fe7aa34
--- /dev/null
+++ b/svg/windmill.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/window-bars.svg b/svg/window-bars.svg
new file mode 100644
index 000000000..9396ed481
--- /dev/null
+++ b/svg/window-bars.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/window.svg b/svg/window.svg
new file mode 100644
index 000000000..dd7c63a8c
--- /dev/null
+++ b/svg/window.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/windpump.svg b/svg/windpump.svg
new file mode 100644
index 000000000..b17b46a5b
--- /dev/null
+++ b/svg/windpump.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/windsock.svg b/svg/windsock.svg
new file mode 100644
index 000000000..784899981
--- /dev/null
+++ b/svg/windsock.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/windy-stripes.svg b/svg/windy-stripes.svg
new file mode 100644
index 000000000..9dfa680f7
--- /dev/null
+++ b/svg/windy-stripes.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wine-bottle.svg b/svg/wine-bottle.svg
new file mode 100644
index 000000000..49fa8856b
--- /dev/null
+++ b/svg/wine-bottle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wine-glass.svg b/svg/wine-glass.svg
new file mode 100644
index 000000000..fed6ab3be
--- /dev/null
+++ b/svg/wine-glass.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wing-cloak.svg b/svg/wing-cloak.svg
new file mode 100644
index 000000000..bf70b9456
--- /dev/null
+++ b/svg/wing-cloak.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/winged-arrow.svg b/svg/winged-arrow.svg
new file mode 100644
index 000000000..ddc947c6b
--- /dev/null
+++ b/svg/winged-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/winged-emblem.svg b/svg/winged-emblem.svg
new file mode 100644
index 000000000..73b406ab4
--- /dev/null
+++ b/svg/winged-emblem.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/winged-leg.svg b/svg/winged-leg.svg
new file mode 100644
index 000000000..90540bd81
--- /dev/null
+++ b/svg/winged-leg.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/winged-scepter.svg b/svg/winged-scepter.svg
new file mode 100644
index 000000000..fab79fb17
--- /dev/null
+++ b/svg/winged-scepter.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/winged-shield.svg b/svg/winged-shield.svg
new file mode 100644
index 000000000..bef3f509e
--- /dev/null
+++ b/svg/winged-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/winged-sword.svg b/svg/winged-sword.svg
new file mode 100644
index 000000000..2d0386d07
--- /dev/null
+++ b/svg/winged-sword.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wingfoot.svg b/svg/wingfoot.svg
new file mode 100644
index 000000000..e8f3c10f7
--- /dev/null
+++ b/svg/wingfoot.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/winter-gloves.svg b/svg/winter-gloves.svg
new file mode 100644
index 000000000..240a6af90
--- /dev/null
+++ b/svg/winter-gloves.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/winter-hat.svg b/svg/winter-hat.svg
new file mode 100644
index 000000000..d3a03aa31
--- /dev/null
+++ b/svg/winter-hat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wire-coil.svg b/svg/wire-coil.svg
new file mode 100644
index 000000000..9d1da1614
--- /dev/null
+++ b/svg/wire-coil.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wireframe-globe.svg b/svg/wireframe-globe.svg
new file mode 100644
index 000000000..d6af3b557
--- /dev/null
+++ b/svg/wireframe-globe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wisdom.svg b/svg/wisdom.svg
new file mode 100644
index 000000000..ba06ddadc
--- /dev/null
+++ b/svg/wisdom.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/witch-face.svg b/svg/witch-face.svg
new file mode 100644
index 000000000..a3453eb65
--- /dev/null
+++ b/svg/witch-face.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/witch-flight.svg b/svg/witch-flight.svg
new file mode 100644
index 000000000..c804e20a3
--- /dev/null
+++ b/svg/witch-flight.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wizard-face.svg b/svg/wizard-face.svg
new file mode 100644
index 000000000..d173bad6a
--- /dev/null
+++ b/svg/wizard-face.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wizard-staff.svg b/svg/wizard-staff.svg
new file mode 100644
index 000000000..a7cfe6d07
--- /dev/null
+++ b/svg/wizard-staff.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wok.svg b/svg/wok.svg
new file mode 100644
index 000000000..b112753b4
--- /dev/null
+++ b/svg/wok.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wolf-head.svg b/svg/wolf-head.svg
new file mode 100644
index 000000000..4b3091e95
--- /dev/null
+++ b/svg/wolf-head.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wolf-howl.svg b/svg/wolf-howl.svg
new file mode 100644
index 000000000..17b03a29a
--- /dev/null
+++ b/svg/wolf-howl.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wolf-trap.svg b/svg/wolf-trap.svg
new file mode 100644
index 000000000..c55fbb7dc
--- /dev/null
+++ b/svg/wolf-trap.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wolverine-claws-2.svg b/svg/wolverine-claws-2.svg
new file mode 100644
index 000000000..cb48cd811
--- /dev/null
+++ b/svg/wolverine-claws-2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wolverine-claws.svg b/svg/wolverine-claws.svg
new file mode 100644
index 000000000..b83f14079
--- /dev/null
+++ b/svg/wolverine-claws.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/woman-elf-face.svg b/svg/woman-elf-face.svg
new file mode 100644
index 000000000..a9e8db0a0
--- /dev/null
+++ b/svg/woman-elf-face.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wood-axe.svg b/svg/wood-axe.svg
new file mode 100644
index 000000000..87fce9933
--- /dev/null
+++ b/svg/wood-axe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wood-beam.svg b/svg/wood-beam.svg
new file mode 100644
index 000000000..e5e89d408
--- /dev/null
+++ b/svg/wood-beam.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wood-cabin.svg b/svg/wood-cabin.svg
new file mode 100644
index 000000000..fe50952af
--- /dev/null
+++ b/svg/wood-cabin.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wood-canoe.svg b/svg/wood-canoe.svg
new file mode 100644
index 000000000..a3d6d9c43
--- /dev/null
+++ b/svg/wood-canoe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wood-club.svg b/svg/wood-club.svg
new file mode 100644
index 000000000..021f2717a
--- /dev/null
+++ b/svg/wood-club.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wood-frame.svg b/svg/wood-frame.svg
new file mode 100644
index 000000000..1e768211e
--- /dev/null
+++ b/svg/wood-frame.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wood-pile.svg b/svg/wood-pile.svg
new file mode 100644
index 000000000..bff224e58
--- /dev/null
+++ b/svg/wood-pile.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wood-stick.svg b/svg/wood-stick.svg
new file mode 100644
index 000000000..0359c4a4d
--- /dev/null
+++ b/svg/wood-stick.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wooden-chair.svg b/svg/wooden-chair.svg
new file mode 100644
index 000000000..dc1840282
--- /dev/null
+++ b/svg/wooden-chair.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wooden-clogs.svg b/svg/wooden-clogs.svg
new file mode 100644
index 000000000..651ca1e22
--- /dev/null
+++ b/svg/wooden-clogs.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wooden-crate.svg b/svg/wooden-crate.svg
new file mode 100644
index 000000000..6670f994c
--- /dev/null
+++ b/svg/wooden-crate.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wooden-door.svg b/svg/wooden-door.svg
new file mode 100644
index 000000000..97f794bb0
--- /dev/null
+++ b/svg/wooden-door.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wooden-fence.svg b/svg/wooden-fence.svg
new file mode 100644
index 000000000..08ec61361
--- /dev/null
+++ b/svg/wooden-fence.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wooden-helmet.svg b/svg/wooden-helmet.svg
new file mode 100644
index 000000000..d7b0cc59c
--- /dev/null
+++ b/svg/wooden-helmet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wooden-pegleg.svg b/svg/wooden-pegleg.svg
new file mode 100644
index 000000000..9ce516ac7
--- /dev/null
+++ b/svg/wooden-pegleg.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wooden-pier.svg b/svg/wooden-pier.svg
new file mode 100644
index 000000000..a5b1f6da3
--- /dev/null
+++ b/svg/wooden-pier.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wooden-sign.svg b/svg/wooden-sign.svg
new file mode 100644
index 000000000..89863d725
--- /dev/null
+++ b/svg/wooden-sign.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wool.svg b/svg/wool.svg
new file mode 100644
index 000000000..b0cff641f
--- /dev/null
+++ b/svg/wool.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/world.svg b/svg/world.svg
new file mode 100644
index 000000000..08b56eb1f
--- /dev/null
+++ b/svg/world.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/worm-mouth.svg b/svg/worm-mouth.svg
new file mode 100644
index 000000000..e76ea0aab
--- /dev/null
+++ b/svg/worm-mouth.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/worms.svg b/svg/worms.svg
new file mode 100644
index 000000000..d1a30eff9
--- /dev/null
+++ b/svg/worms.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/worried-eyes.svg b/svg/worried-eyes.svg
new file mode 100644
index 000000000..af0160131
--- /dev/null
+++ b/svg/worried-eyes.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wrapped-heart.svg b/svg/wrapped-heart.svg
new file mode 100644
index 000000000..867594709
--- /dev/null
+++ b/svg/wrapped-heart.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wrapped-sweet.svg b/svg/wrapped-sweet.svg
new file mode 100644
index 000000000..99d85c675
--- /dev/null
+++ b/svg/wrapped-sweet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wrapping-star.svg b/svg/wrapping-star.svg
new file mode 100644
index 000000000..99b20c8ae
--- /dev/null
+++ b/svg/wrapping-star.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wrecking-ball.svg b/svg/wrecking-ball.svg
new file mode 100644
index 000000000..12bfd227d
--- /dev/null
+++ b/svg/wrecking-ball.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wrench.svg b/svg/wrench.svg
new file mode 100644
index 000000000..59fd06ee3
--- /dev/null
+++ b/svg/wrench.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/wyvern.svg b/svg/wyvern.svg
new file mode 100644
index 000000000..e573ba03f
--- /dev/null
+++ b/svg/wyvern.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/xylophone.svg b/svg/xylophone.svg
new file mode 100644
index 000000000..088f2000d
--- /dev/null
+++ b/svg/xylophone.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/yarn.svg b/svg/yarn.svg
new file mode 100644
index 000000000..ada0cf43f
--- /dev/null
+++ b/svg/yarn.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/yin-yang.svg b/svg/yin-yang.svg
new file mode 100644
index 000000000..063047229
--- /dev/null
+++ b/svg/yin-yang.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/yunluo.svg b/svg/yunluo.svg
new file mode 100644
index 000000000..e617d8b2e
--- /dev/null
+++ b/svg/yunluo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/z-brick.svg b/svg/z-brick.svg
new file mode 100644
index 000000000..8ed9fb9e2
--- /dev/null
+++ b/svg/z-brick.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/zat-gun.svg b/svg/zat-gun.svg
new file mode 100644
index 000000000..cdf192965
--- /dev/null
+++ b/svg/zat-gun.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/zebra-shield.svg b/svg/zebra-shield.svg
new file mode 100644
index 000000000..2a5951898
--- /dev/null
+++ b/svg/zebra-shield.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/zeppelin.svg b/svg/zeppelin.svg
new file mode 100644
index 000000000..561b28e82
--- /dev/null
+++ b/svg/zeppelin.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/zeus-sword.svg b/svg/zeus-sword.svg
new file mode 100644
index 000000000..aede8602e
--- /dev/null
+++ b/svg/zeus-sword.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/zig-arrow.svg b/svg/zig-arrow.svg
new file mode 100644
index 000000000..d38ed1279
--- /dev/null
+++ b/svg/zig-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/zigzag-cage.svg b/svg/zigzag-cage.svg
new file mode 100644
index 000000000..a7a911fad
--- /dev/null
+++ b/svg/zigzag-cage.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/zigzag-hieroglyph.svg b/svg/zigzag-hieroglyph.svg
new file mode 100644
index 000000000..c688f632c
--- /dev/null
+++ b/svg/zigzag-hieroglyph.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/zigzag-leaf.svg b/svg/zigzag-leaf.svg
new file mode 100644
index 000000000..7d0979b7d
--- /dev/null
+++ b/svg/zigzag-leaf.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/zigzag-tune.svg b/svg/zigzag-tune.svg
new file mode 100644
index 000000000..fe71cd074
--- /dev/null
+++ b/svg/zigzag-tune.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/svg/zipper.svg b/svg/zipper.svg
new file mode 100644
index 000000000..65fe7ec0d
--- /dev/null
+++ b/svg/zipper.svg
@@ -0,0 +1 @@
+
\ No newline at end of file