jekyll-moderu 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: d77ee8a9689b0d991d1fea48210ec936559f819490da76b61d5ab82a4beaa61c
4
+ data.tar.gz: 512dd7ed60534f0ae9d47b7f393aa6d2049ed137ffb4662b1652cb3a681520e9
5
+ SHA512:
6
+ metadata.gz: bf1f83540ca9cc254d9bb7489d5c8de972ef8b64addf4c78c6cb1ed0a74c563aebf910d8bd7461e043abf4d67236f40d0687553b631d0931a614fccfd15fbdf5
7
+ data.tar.gz: 5e9b840dfa2aaf273f802fba8a13b3cf4fc48c66465c051b518afad8876cd7cd4c4263760e4499e075e4867bf84902fcaff34ff13d972204508c6d4266a348b9
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 David Zhang
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,78 @@
1
+ # [Moderu モデル](https://crispgm.github.io/moderu/index.html)
2
+
3
+ ![CI](https://travis-ci.org/crispgm/moderu.svg)
4
+ ![Powered by Jekyll](https://img.shields.io/badge/powered%20by-jekyll-blue.svg)
5
+
6
+ Moderu is a Jekyll theme designed for photography models, as a place to show their photos.
7
+
8
+ Moderu is the Romaji of the Japanese word モデル, which actually the English word--model. :)
9
+
10
+ ## Installation
11
+
12
+ Add this line to your Jekyll site's `Gemfile`:
13
+
14
+ ```ruby
15
+ gem "moderu"
16
+ ```
17
+
18
+ And add this line to your Jekyll site's `_config.yml`:
19
+
20
+ ```yaml
21
+ theme: moderu
22
+ ```
23
+
24
+ And then execute:
25
+
26
+ ```shell
27
+ bundle install
28
+ ```
29
+
30
+ Or install it yourself as:
31
+
32
+ ```shell
33
+ gem install moderu
34
+ ```
35
+
36
+ ## Usage
37
+
38
+ ### Photos
39
+
40
+ Edit `_data/photo.yml`:
41
+
42
+ ```yaml
43
+ - name: Gakki 1
44
+ desc: From Douban
45
+ file: p2331515866.jpg
46
+ date: 2019-03-11
47
+ place: Tokyo
48
+ ```
49
+
50
+ Only `file` is mandatory and others are optional fields. However, it would display better with these fields.
51
+
52
+ ### Colors
53
+
54
+ There are only 2 colors used in this theme. A major color `$color-major` and a minor color `$color-minor`. Change it in `./assets/style.scss` at your own interest.
55
+
56
+ ### Contacts
57
+
58
+ Contact's info is configured in `_config.yml`.
59
+
60
+ ```yaml
61
+ links:
62
+ - icon: icon-envelope-o
63
+ link: https://link.to/your/page
64
+ ```
65
+
66
+ Icon is powered by IcoMoon with FontAwesome icon font and icons of social networks are included by default. e.g. `icon-twitter` for Twitter icon. For more icons, please replace with your own icon pack.
67
+
68
+ ## Showcases
69
+
70
+ - <https://crispgm.github.io/moderu/index.html>
71
+
72
+ ## Contributing
73
+
74
+ Bug reports and pull requests are welcome. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
75
+
76
+ ## License
77
+
78
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -0,0 +1,12 @@
1
+ <footer>
2
+ <div class="footer-copyright">
3
+ <div>
4
+ &copy; <a href="/">{{ site.name }}</a>, {{ site.time | date: "%Y" }}.
5
+ </div>
6
+ </div>
7
+ <div class="footer-links">
8
+ {% for item in site.links %}
9
+ <a href="{{ item.link }}"><i class="fa {{ item.icon }}"></i></a>
10
+ {% endfor %}
11
+ </div>
12
+ </footer>
@@ -0,0 +1,9 @@
1
+ <head>
2
+ <title>{{ site.title }}</title>
3
+ <meta charset="UTF-8">
4
+ <meta name="description" content="{{ site.description }}">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1">
6
+ <link href="https://fonts.googleapis.com/css?family=Noto+Sans" rel="stylesheet">
7
+ <link href="{{ site.baseurl }}/assets/font.css" rel="stylesheet">
8
+ <link href="{{ site.baseurl }}/assets/style.css" rel="stylesheet">
9
+ </head>
@@ -0,0 +1,15 @@
1
+ <nav>
2
+ <div class="flex">
3
+ <div class="nav-title">
4
+ <a href="{{ site.baseurl }}/index.html">
5
+ {{ site.title }}
6
+ </a>
7
+ </div>
8
+ </div>
9
+ <div class="nav-menu">
10
+ <a href="{{ site.baseurl }}/about.html">ABOUT</a>
11
+ </div>
12
+ <div class="nav-description">
13
+ {{ site.description }}
14
+ </div>
15
+ </nav>
@@ -0,0 +1,4 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ {{ content }}
4
+ </html>
@@ -0,0 +1,10 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {% include head.html %}
6
+ {% include nav.html %}
7
+ <div class="content-container">
8
+ {{ content }}
9
+ </div>
10
+ {% include footer.html %}
@@ -0,0 +1,10 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {% include head.html %}
6
+ {% include nav.html %}
7
+ <div class="pic-container">
8
+ {{ content }}
9
+ </div>
10
+ {% include footer.html %}
@@ -0,0 +1,10 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {% include head.html %}
6
+ {% include nav.html %}
7
+ <div class="content-container">
8
+ {{ content }}
9
+ </div>
10
+ {% include footer.html %}
@@ -0,0 +1,50 @@
1
+ * {
2
+ box-sizing: border-box;
3
+ }
4
+
5
+ html {
6
+ font-size: 16px;
7
+ }
8
+
9
+ body {
10
+ background-color: white;
11
+ color: $color-major;
12
+ font-family: "Avenir Next", "Segoe UI", Helvetica, Arial;
13
+ font-size: 1rem;
14
+ -webkit-font-smoothing: antialiased;
15
+ hyphens: auto;
16
+ margin: 0 auto;
17
+ text-align: center;
18
+ word-wrap: break-word;
19
+ width: 100%;
20
+ }
21
+
22
+ img {
23
+ border: 0;
24
+ }
25
+
26
+ .flex {
27
+ display: flex;
28
+ justify-content: space-between;
29
+ }
30
+
31
+ .content-container {
32
+ color: $color-major;
33
+ display: block;
34
+ margin: 1rem 0 0 1rem;
35
+ padding: 0 1rem;
36
+ text-align: left;
37
+ }
38
+
39
+ @media (max-width: $breakpoint) {
40
+ html {
41
+ font-size: 12px;
42
+ }
43
+
44
+ .content-container {
45
+ display: block;
46
+ margin: 0 auto;
47
+ padding: 0 2rem;
48
+ width: 100%;
49
+ }
50
+ }
@@ -0,0 +1,45 @@
1
+ footer {
2
+ color: $color-major;
3
+ font-size: 1rem;
4
+ margin: 3.2rem auto 0;
5
+ padding: 3.2rem 0;
6
+
7
+ a {
8
+ color: $color-major;
9
+ text-decoration: none;
10
+
11
+ &:hover {
12
+ text-decoration: underline;
13
+ }
14
+ }
15
+ }
16
+
17
+ .footer-copyright {
18
+ }
19
+
20
+ .footer-links {
21
+ font-size: 1rem;
22
+ margin: 1rem 0;
23
+
24
+ a {
25
+ color: $color-minor;
26
+ margin-left: 1rem;
27
+ text-decoration: none;
28
+
29
+ &:hover {
30
+ color: $color-major;
31
+ text-decoration: none;
32
+ }
33
+
34
+ &:first-of-type {
35
+ margin: 0;
36
+ }
37
+ }
38
+ }
39
+
40
+ @media (max-width: $breakpoint) {
41
+ footer {
42
+ width: 100%;
43
+ padding: 0;
44
+ }
45
+ }
@@ -0,0 +1,56 @@
1
+ nav {
2
+ color: $color-major;
3
+ margin: 1.5rem 1rem 1rem;
4
+ padding: 0 1rem 1rem;
5
+ text-align: left;
6
+
7
+ a {
8
+ color: inherit;
9
+ text-decoration: none;
10
+
11
+ &:hover {
12
+ text-decoration: none;
13
+ }
14
+ }
15
+ }
16
+
17
+ .nav-title {
18
+ font-size: 2.8rem;
19
+ line-height: 1.0;
20
+ padding-top: 1.8rem;
21
+ }
22
+
23
+ .nav-description {
24
+ padding-top: 1rem;
25
+ }
26
+
27
+ .nav-menu {
28
+ font-size: 1rem;
29
+ line-height: 2.0;
30
+ padding-top: 1rem;
31
+
32
+ a {
33
+ text-decoration: underline;
34
+ }
35
+ }
36
+
37
+ @media (max-width: $breakpoint) {
38
+ nav {
39
+ border-radius: 0;
40
+ width: 100%;
41
+ }
42
+
43
+ .nav-title {
44
+ text-align: left;
45
+ }
46
+
47
+ .nav-description {
48
+ margin-bottom: 2rem;
49
+ padding-left: 0;
50
+ text-align: left;
51
+ }
52
+
53
+ .nav-menu {
54
+ padding-right: 1rem;
55
+ }
56
+ }
@@ -0,0 +1,115 @@
1
+ .pic-container {
2
+ color: $color-major;
3
+ display: flex;
4
+ flex-direction: row;
5
+ flex-wrap: wrap;
6
+ justify-content: flex-start;
7
+ margin: 1rem 0 0 1rem;
8
+ padding: 0 1rem;
9
+ }
10
+
11
+ .pic {
12
+ margin: 1rem 2rem 0 0;
13
+
14
+ &:hover {
15
+ .pic-overlay {
16
+ display: block;
17
+ }
18
+ }
19
+ }
20
+
21
+ .pic-overlay {
22
+ background-color: rgba(170, 170, 170, 0.5);
23
+ color: #ffffff;
24
+ display: none;
25
+ font-size: 1.2rem;
26
+ font-weight: bold;
27
+ height: 22rem;
28
+ line-height: 22rem;
29
+ position: absolute;
30
+ text-align: center;
31
+ width: 22rem;
32
+ z-index: 999;
33
+ }
34
+
35
+ .pic-holder {
36
+ background-size: cover;
37
+ background-position: center center;
38
+ background-repeat: no-repeat;
39
+ height: 22rem;
40
+ width: 22rem;
41
+ }
42
+
43
+ .pic-title {
44
+ font-size: 1.4rem;
45
+ padding: 1rem 0 0;
46
+ text-align: left;
47
+ }
48
+
49
+ .pic-desc {
50
+ color: $color-minor;
51
+ font-size: 1rem;
52
+ padding: .4rem 0;
53
+ text-align: left;
54
+ }
55
+
56
+ .pic-seperator {
57
+ display: none;
58
+ }
59
+
60
+ @media (max-width: 78rem) {
61
+ .pic-overlay {
62
+ line-height: 30rem;
63
+ width: 30rem;
64
+ height: 30rem;
65
+ }
66
+
67
+ .pic-holder {
68
+ width: 30rem;
69
+ height: 30rem;
70
+ }
71
+ }
72
+
73
+ @media (max-width: 42rem) {
74
+ .pic-container {
75
+ display: block;
76
+ margin: 0 auto;
77
+ padding: 0 0 0 1rem;
78
+ text-align: center;
79
+ width: 100%;
80
+ }
81
+
82
+ .pic {
83
+ width: 100%;
84
+ margin: 0 0 1rem;
85
+ padding: 0 1rem;
86
+ }
87
+
88
+ .pic-title {
89
+ text-align: center;
90
+ }
91
+
92
+ .pic-desc {
93
+ text-align: center;
94
+ }
95
+
96
+ .pic-overlay {
97
+ height: 42rem;
98
+ line-height: 42rem;
99
+ width: 100%;
100
+ }
101
+
102
+ .pic-holder {
103
+ height: 42rem;
104
+ width: 100%;
105
+ }
106
+
107
+ .pic-seperator {
108
+ display: block;
109
+ padding-bottom: 1rem;
110
+ }
111
+
112
+ .pic:last-child .pic-seperator {
113
+ display: none;
114
+ }
115
+ }
@@ -0,0 +1,292 @@
1
+ ---
2
+ ---
3
+ @font-face {
4
+ font-family: 'icomoon';
5
+ src: url('{{ site.baseurl }}/assets/fonts/icomoon.eot?775fch');
6
+ src: url('{{ site.baseurl }}/assetsfonts/icomoon.eot?775fch#iefix') format('embedded-opentype'),
7
+ url('{{ site.baseurl }}/assets/fonts/icomoon.ttf?775fch') format('truetype'),
8
+ url('{{ site.baseurl }}/assets/fonts/icomoon.woff?775fch') format('woff'),
9
+ url('{{ site.baseurl }}/assets/fonts/icomoon.svg?775fch#icomoon') format('svg');
10
+ font-weight: normal;
11
+ font-style: normal;
12
+ }
13
+
14
+ [class^="icon-"], [class*=" icon-"] {
15
+ /* use !important to prevent issues with browser extensions that change fonts */
16
+ font-family: 'icomoon' !important;
17
+ speak: none;
18
+ font-style: normal;
19
+ font-weight: normal;
20
+ font-variant: normal;
21
+ text-transform: none;
22
+ line-height: 1;
23
+
24
+ /* Better Font Rendering =========== */
25
+ -webkit-font-smoothing: antialiased;
26
+ -moz-osx-font-smoothing: grayscale;
27
+ }
28
+
29
+ .icon-envelope-o:before {
30
+ content: "\f003";
31
+ }
32
+ .icon-heart:before {
33
+ content: "\f004";
34
+ }
35
+ .icon-camera:before {
36
+ content: "\f030";
37
+ }
38
+ .icon-video-camera:before {
39
+ content: "\f03d";
40
+ }
41
+ .icon-image:before {
42
+ content: "\f03e";
43
+ }
44
+ .icon-photo:before {
45
+ content: "\f03e";
46
+ }
47
+ .icon-picture-o:before {
48
+ content: "\f03e";
49
+ }
50
+ .icon-twitter-square:before {
51
+ content: "\f081";
52
+ }
53
+ .icon-facebook-square:before {
54
+ content: "\f082";
55
+ }
56
+ .icon-camera-retro:before {
57
+ content: "\f083";
58
+ }
59
+ .icon-comments:before {
60
+ content: "\f086";
61
+ }
62
+ .icon-heart-o:before {
63
+ content: "\f08a";
64
+ }
65
+ .icon-linkedin-square:before {
66
+ content: "\f08c";
67
+ }
68
+ .icon-github-square:before {
69
+ content: "\f092";
70
+ }
71
+ .icon-twitter:before {
72
+ content: "\f099";
73
+ }
74
+ .icon-facebook:before {
75
+ content: "\f09a";
76
+ }
77
+ .icon-facebook-f:before {
78
+ content: "\f09a";
79
+ }
80
+ .icon-github:before {
81
+ content: "\f09b";
82
+ }
83
+ .icon-feed:before {
84
+ content: "\f09e";
85
+ }
86
+ .icon-rss:before {
87
+ content: "\f09e";
88
+ }
89
+ .icon-globe:before {
90
+ content: "\f0ac";
91
+ }
92
+ .icon-linkedin:before {
93
+ content: "\f0e1";
94
+ }
95
+ .icon-coffee:before {
96
+ content: "\f0f4";
97
+ }
98
+ .icon-youtube-square:before {
99
+ content: "\f166";
100
+ }
101
+ .icon-youtube:before {
102
+ content: "\f167";
103
+ }
104
+ .icon-stack-overflow:before {
105
+ content: "\f16c";
106
+ }
107
+ .icon-instagram:before {
108
+ content: "\f16d";
109
+ }
110
+ .icon-flickr:before {
111
+ content: "\f16e";
112
+ }
113
+ .icon-tumblr:before {
114
+ content: "\f173";
115
+ }
116
+ .icon-tumblr-square:before {
117
+ content: "\f174";
118
+ }
119
+ .icon-dribbble:before {
120
+ content: "\f17d";
121
+ }
122
+ .icon-skype:before {
123
+ content: "\f17e";
124
+ }
125
+ .icon-weibo:before {
126
+ content: "\f18a";
127
+ }
128
+ .icon-renren:before {
129
+ content: "\f18b";
130
+ }
131
+ .icon-vimeo-square:before {
132
+ content: "\f194";
133
+ }
134
+ .icon-slack:before {
135
+ content: "\f198";
136
+ }
137
+ .icon-envelope-square:before {
138
+ content: "\f199";
139
+ }
140
+ .icon-wordpress:before {
141
+ content: "\f19a";
142
+ }
143
+ .icon-google:before {
144
+ content: "\f1a0";
145
+ }
146
+ .icon-reddit:before {
147
+ content: "\f1a1";
148
+ }
149
+ .icon-delicious:before {
150
+ content: "\f1a5";
151
+ }
152
+ .icon-digg:before {
153
+ content: "\f1a6";
154
+ }
155
+ .icon-behance:before {
156
+ content: "\f1b4";
157
+ }
158
+ .icon-behance-square:before {
159
+ content: "\f1b5";
160
+ }
161
+ .icon-steam:before {
162
+ content: "\f1b6";
163
+ }
164
+ .icon-steam-square:before {
165
+ content: "\f1b7";
166
+ }
167
+ .icon-qq:before {
168
+ content: "\f1d6";
169
+ }
170
+ .icon-wechat:before {
171
+ content: "\f1d7";
172
+ }
173
+ .icon-weixin:before {
174
+ content: "\f1d7";
175
+ }
176
+ .icon-paper-plane:before {
177
+ content: "\f1d8";
178
+ }
179
+ .icon-send:before {
180
+ content: "\f1d8";
181
+ }
182
+ .icon-paper-plane-o:before {
183
+ content: "\f1d9";
184
+ }
185
+ .icon-send-o:before {
186
+ content: "\f1d9";
187
+ }
188
+ .icon-twitch:before {
189
+ content: "\f1e8";
190
+ }
191
+ .icon-paypal:before {
192
+ content: "\f1ed";
193
+ }
194
+ .icon-cc-visa:before {
195
+ content: "\f1f0";
196
+ }
197
+ .icon-cc-mastercard:before {
198
+ content: "\f1f1";
199
+ }
200
+ .icon-cc-discover:before {
201
+ content: "\f1f2";
202
+ }
203
+ .icon-cc-amex:before {
204
+ content: "\f1f3";
205
+ }
206
+ .icon-cc-paypal:before {
207
+ content: "\f1f4";
208
+ }
209
+ .icon-cc-stripe:before {
210
+ content: "\f1f5";
211
+ }
212
+ .icon-facebook-official:before {
213
+ content: "\f230";
214
+ }
215
+ .icon-pinterest-p:before {
216
+ content: "\f231";
217
+ }
218
+ .icon-whatsapp:before {
219
+ content: "\f232";
220
+ }
221
+ .icon-medium:before {
222
+ content: "\f23a";
223
+ }
224
+ .icon-y-combinator:before {
225
+ content: "\f23b";
226
+ }
227
+ .icon-yc:before {
228
+ content: "\f23b";
229
+ }
230
+ .icon-cc-jcb:before {
231
+ content: "\f24b";
232
+ }
233
+ .icon-tripadvisor:before {
234
+ content: "\f262";
235
+ }
236
+ .icon-safari:before {
237
+ content: "\f267";
238
+ }
239
+ .icon-chrome:before {
240
+ content: "\f268";
241
+ }
242
+ .icon-firefox:before {
243
+ content: "\f269";
244
+ }
245
+ .icon-opera:before {
246
+ content: "\f26a";
247
+ }
248
+ .icon-internet-explorer:before {
249
+ content: "\f26b";
250
+ }
251
+ .icon-500px:before {
252
+ content: "\f26e";
253
+ }
254
+ .icon-amazon:before {
255
+ content: "\f270";
256
+ }
257
+ .icon-vimeo:before {
258
+ content: "\f27d";
259
+ }
260
+ .icon-edge:before {
261
+ content: "\f282";
262
+ }
263
+ .icon-gitlab:before {
264
+ content: "\f296";
265
+ }
266
+ .icon-snapchat:before {
267
+ content: "\f2ab";
268
+ }
269
+ .icon-snapchat-ghost:before {
270
+ content: "\f2ac";
271
+ }
272
+ .icon-snapchat-square:before {
273
+ content: "\f2ad";
274
+ }
275
+ .icon-google-plus-circle:before {
276
+ content: "\f2b3";
277
+ }
278
+ .icon-google-plus-official:before {
279
+ content: "\f2b3";
280
+ }
281
+ .icon-linode:before {
282
+ content: "\f2b8";
283
+ }
284
+ .icon-telegram:before {
285
+ content: "\f2c6";
286
+ }
287
+ .icon-imdb:before {
288
+ content: "\f2d8";
289
+ }
290
+ .icon-meetup:before {
291
+ content: "\f2e0";
292
+ }
Binary file
@@ -0,0 +1,89 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <metadata>Generated by IcoMoon</metadata>
5
+ <defs>
6
+ <font id="icomoon" horiz-adv-x="1024">
7
+ <font-face units-per-em="1024" ascent="960" descent="-64" />
8
+ <missing-glyph horiz-adv-x="1024" />
9
+ <glyph unicode="&#x20;" horiz-adv-x="512" d="" />
10
+ <glyph unicode="&#xf003;" glyph-name="envelope-o" d="M950.857 91.428v438.857c-12-13.714-25.143-26.286-39.429-37.714-81.714-62.857-164-126.857-243.429-193.143-42.857-36-96-80-155.429-80h-1.143c-59.429 0-112.571 44-155.429 80-79.429 66.286-161.714 130.286-243.429 193.143-14.286 11.429-27.429 24-39.429 37.714v-438.857c0-9.714 8.571-18.286 18.286-18.286h841.143c9.714 0 18.286 8.571 18.286 18.286zM950.857 692c0 14.286 3.429 39.429-18.286 39.429h-841.143c-9.714 0-18.286-8.571-18.286-18.286 0-65.143 32.571-121.714 84-162.286 76.571-60 153.143-120.571 229.143-181.143 30.286-24.571 85.143-77.143 125.143-77.143h1.143c40 0 94.857 52.571 125.143 77.143 76 60.571 152.571 121.143 229.143 181.143 37.143 29.143 84 92.571 84 141.143zM1024 713.143v-621.714c0-50.286-41.143-91.429-91.429-91.429h-841.143c-50.286 0-91.429 41.143-91.429 91.429v621.714c0 50.286 41.143 91.429 91.429 91.429h841.143c50.286 0 91.429-41.143 91.429-91.429z" />
11
+ <glyph unicode="&#xf004;" glyph-name="heart" d="M512 0c-9.143 0-18.286 3.429-25.143 10.286l-356.571 344c-4.571 4-130.286 118.857-130.286 256 0 167.429 102.286 267.429 273.143 267.429 100 0 193.714-78.857 238.857-123.429 45.143 44.571 138.857 123.429 238.857 123.429 170.857 0 273.143-100 273.143-267.429 0-137.143-125.714-252-130.857-257.143l-356-342.857c-6.857-6.857-16-10.286-25.143-10.286z" />
12
+ <glyph unicode="&#xf030;" glyph-name="camera" horiz-adv-x="1097" d="M548.571 566.857c90.857 0 164.571-73.714 164.571-164.571s-73.714-164.571-164.571-164.571-164.571 73.714-164.571 164.571 73.714 164.571 164.571 164.571zM950.857 804.571c80.571 0 146.286-65.714 146.286-146.286v-512c0-80.571-65.714-146.286-146.286-146.286h-804.571c-80.571 0-146.286 65.714-146.286 146.286v512c0 80.571 65.714 146.286 146.286 146.286h128l29.143 77.714c14.286 37.714 58.857 68.571 98.857 68.571h292.571c40 0 84.571-30.857 98.857-68.571l29.143-77.714h128zM548.571 146.286c141.143 0 256 114.857 256 256s-114.857 256-256 256-256-114.857-256-256 114.857-256 256-256z" />
13
+ <glyph unicode="&#xf03d;" glyph-name="video-camera" d="M1024 749.714v-621.714c0-14.857-9.143-28-22.286-33.714-4.571-1.714-9.714-2.857-14.286-2.857-9.714 0-18.857 3.429-25.714 10.857l-230.286 230.286v-94.857c0-90.857-73.714-164.571-164.571-164.571h-402.286c-90.857 0-164.571 73.714-164.571 164.571v402.286c0 90.857 73.714 164.571 164.571 164.571h402.286c90.857 0 164.571-73.714 164.571-164.571v-94.286l230.286 229.714c6.857 7.429 16 10.857 25.714 10.857 4.571 0 9.714-1.143 14.286-2.857 13.143-5.714 22.286-18.857 22.286-33.714z" />
14
+ <glyph unicode="&#xf03e;" glyph-name="image, photo, picture-o" horiz-adv-x="1097" d="M365.714 621.714c0-60.571-49.143-109.714-109.714-109.714s-109.714 49.143-109.714 109.714 49.143 109.714 109.714 109.714 109.714-49.143 109.714-109.714zM950.857 402.286v-256h-804.571v109.714l182.857 182.857 91.429-91.429 292.571 292.571zM1005.714 804.571h-914.286c-9.714 0-18.286-8.571-18.286-18.286v-694.857c0-9.714 8.571-18.286 18.286-18.286h914.286c9.714 0 18.286 8.571 18.286 18.286v694.857c0 9.714-8.571 18.286-18.286 18.286zM1097.143 786.286v-694.857c0-50.286-41.143-91.429-91.429-91.429h-914.286c-50.286 0-91.429 41.143-91.429 91.429v694.857c0 50.286 41.143 91.429 91.429 91.429h914.286c50.286 0 91.429-41.143 91.429-91.429z" />
15
+ <glyph unicode="&#xf081;" glyph-name="twitter-square" horiz-adv-x="878" d="M731.429 602.286c-21.714-9.714-44.571-16-69.143-19.429 25.143 14.857 44 38.857 53.143 66.857-23.429-13.714-49.143-24-76.571-29.143-21.714 23.429-53.143 37.714-87.429 37.714-66.286 0-120-53.714-120-120 0-9.143 0.571-18.857 2.857-27.429-100 5.143-188.571 52.571-248 125.714-10.286-17.714-16.571-38.857-16.571-60.571 0-41.714 19.429-78.286 52-100-20 0.571-38.857 6.286-57.143 14.857v-1.143c0-58.286 44-106.857 98.857-117.714-10.286-2.857-18.286-4.571-29.143-4.571-7.429 0-14.857 1.143-22.286 2.286 15.429-47.429 59.429-82.286 112-83.429-41.143-32-92.571-51.429-149.143-51.429-9.714 0-19.429 0.571-28.571 1.714 53.143-33.714 116-53.714 184-53.714 220.571 0 341.714 182.857 341.714 341.714 0 5.143 0 10.286-0.571 15.429 23.429 16.571 44 37.714 60 62.286zM877.714 713.143v-548.571c0-90.857-73.714-164.571-164.571-164.571h-548.571c-90.857 0-164.571 73.714-164.571 164.571v548.571c0 90.857 73.714 164.571 164.571 164.571h548.571c90.857 0 164.571-73.714 164.571-164.571z" />
16
+ <glyph unicode="&#xf082;" glyph-name="facebook-square" horiz-adv-x="878" d="M713.143 877.714c90.857 0 164.571-73.714 164.571-164.571v-548.571c0-90.857-73.714-164.571-164.571-164.571h-107.429v340h113.714l17.143 132.571h-130.857v84.571c0 38.286 10.286 64 65.714 64l69.714 0.571v118.286c-12 1.714-53.714 5.143-101.714 5.143-101.143 0-170.857-61.714-170.857-174.857v-97.714h-114.286v-132.571h114.286v-340h-304c-90.857 0-164.571 73.714-164.571 164.571v548.571c0 90.857 73.714 164.571 164.571 164.571h548.571z" />
17
+ <glyph unicode="&#xf083;" glyph-name="camera-retro" d="M530.286 475.428c0 10.286-8 18.286-18.286 18.286-50.286 0-91.429-41.143-91.429-91.429 0-10.286 8-18.286 18.286-18.286s18.286 8 18.286 18.286c0 30.286 24.571 54.857 54.857 54.857 10.286 0 18.286 8 18.286 18.286zM658.286 401.143c0-80.571-65.714-146.286-146.286-146.286s-146.286 65.714-146.286 146.286 65.714 146.286 146.286 146.286 146.286-65.714 146.286-146.286zM73.143 73.143h877.714v73.143h-877.714v-73.143zM731.429 401.143c0 121.143-98.286 219.429-219.429 219.429s-219.429-98.286-219.429-219.429 98.286-219.429 219.429-219.429 219.429 98.286 219.429 219.429zM146.286 768h219.429v73.143h-219.429v-73.143zM73.143 658.286h877.714v146.286h-473.143l-36.571-73.143h-368v-73.143zM1024 804.571v-731.429c0-40.571-32.571-73.143-73.143-73.143h-877.714c-40.571 0-73.143 32.571-73.143 73.143v731.429c0 40.571 32.571 73.143 73.143 73.143h877.714c40.571 0 73.143-32.571 73.143-73.143z" />
18
+ <glyph unicode="&#xf086;" glyph-name="comments" d="M804.571 512c0-161.714-180-292.571-402.286-292.571-34.857 0-68.571 3.429-100.571 9.143-47.429-33.714-101.143-58.286-158.857-73.143-15.429-4-32-6.857-49.143-9.143h-1.714c-8.571 0-16.571 6.857-18.286 16.571v0c-2.286 10.857 5.143 17.714 11.429 25.143 22.286 25.143 47.429 47.429 66.857 94.857-92.571 53.714-152 136.571-152 229.143 0 161.714 180 292.571 402.286 292.571s402.286-130.857 402.286-292.571zM1024 365.714c0-93.143-59.429-175.429-152-229.143 19.429-47.429 44.571-69.714 66.857-94.857 6.286-7.429 13.714-14.286 11.429-25.143v0c-2.286-10.286-10.857-17.714-20-16.571-17.143 2.286-33.714 5.143-49.143 9.143-57.714 14.857-111.429 39.429-158.857 73.143-32-5.714-65.714-9.143-100.571-9.143-103.429 0-198.286 28.571-269.714 75.429 16.571-1.143 33.714-2.286 50.286-2.286 122.857 0 238.857 35.429 327.429 99.429 95.429 69.714 148 164 148 266.286 0 29.714-4.571 58.857-13.143 86.857 96.571-53.143 159.429-137.714 159.429-233.143z" />
19
+ <glyph unicode="&#xf08a;" glyph-name="heart-o" d="M950.857 610.286c0 160.571-108.571 194.286-200 194.286-85.143 0-181.143-92-210.857-127.429-13.714-16.571-42.286-16.571-56 0-29.714 35.429-125.714 127.429-210.857 127.429-91.429 0-200-33.714-200-194.286 0-104.571 105.714-201.714 106.857-202.857l332-320 331.429 319.429c1.714 1.714 107.429 98.857 107.429 203.429zM1024 610.286c0-137.143-125.714-252-130.857-257.143l-356-342.857c-6.857-6.857-16-10.286-25.143-10.286s-18.286 3.429-25.143 10.286l-356.571 344c-4.571 4-130.286 118.857-130.286 256 0 167.429 102.286 267.429 273.143 267.429 100 0 193.714-78.857 238.857-123.429 45.143 44.571 138.857 123.429 238.857 123.429 170.857 0 273.143-100 273.143-267.429z" />
20
+ <glyph unicode="&#xf08c;" glyph-name="linkedin-square" horiz-adv-x="878" d="M135.429 142.857h132v396.571h-132v-396.571zM276 661.714c-0.571 38.857-28.571 68.571-73.714 68.571s-74.857-29.714-74.857-68.571c0-37.714 28.571-68.571 73.143-68.571h0.571c46.286 0 74.857 30.857 74.857 68.571zM610.286 142.857h132v227.429c0 121.714-65.143 178.286-152 178.286-70.857 0-102.286-39.429-119.429-66.857h1.143v57.714h-132s1.714-37.143 0-396.571v0h132v221.714c0 11.429 0.571 23.429 4 32 9.714 23.429 31.429 48 68 48 47.429 0 66.286-36 66.286-89.714v-212zM877.714 713.143v-548.571c0-90.857-73.714-164.571-164.571-164.571h-548.571c-90.857 0-164.571 73.714-164.571 164.571v548.571c0 90.857 73.714 164.571 164.571 164.571h548.571c90.857 0 164.571-73.714 164.571-164.571z" />
21
+ <glyph unicode="&#xf092;" glyph-name="github-square" horiz-adv-x="878" d="M296.571 265.143v0c1.143 1.714 0.571 5.143-1.714 7.429-2.857 2.286-6.286 2.857-8 1.143-1.143-1.714-0.571-5.143 1.714-7.429 2.857-2.286 6.286-2.857 8-1.143zM280.571 288.571c-1.714 2.286-4.571 3.429-6.857 2.286-1.714-1.143-1.714-4.571 0-6.857 2.286-2.857 5.143-4 6.857-2.857v0c1.714 1.143 1.714 4.571 0 7.429zM257.143 311.428v0c0.571 1.143-0.571 3.429-2.857 4.571-1.714 0.571-4 0.571-4.571-1.143-1.143-1.714 0-3.429 2.286-4.571 2.286-0.571 4.571-0.571 5.143 1.143zM269.143 298.286v0c1.143 1.143 1.143 4-1.143 5.714-1.714 2.286-4.571 2.857-5.714 1.714-1.714-1.714-1.143-4 0.571-6.286 1.714-1.714 4.571-2.857 6.286-1.143zM318.286 255.428v0c0.571 2.286-1.714 5.143-5.143 6.286s-6.286 0-7.429-2.286c-0.571-2.286 1.714-5.143 5.143-6.286s6.286 0 7.429 2.286zM342.286 253.714v0c0 2.286-2.857 4.571-6.857 4.571-3.429 0-5.714-2.286-5.714-4.571s2.857-4.571 6.286-4.571 6.286 2.286 6.286 4.571zM364.571 257.714v0c-0.571 2.286-4 3.429-7.429 2.857s-5.714-2.857-5.143-5.143 3.429-4 6.857-3.429 5.714 3.429 5.714 5.714zM731.429 438.857c0 161.714-130.857 292.571-292.571 292.571s-292.571-130.857-292.571-292.571c0-129.143 84-238.857 200-277.714 14.857-2.857 20 6.286 20 14.286 0 6.857 0 29.714-0.571 54.286 0 0-81.143-17.714-98.286 34.857 0 0-13.143 33.714-32.571 42.286 0 0-26.286 18.286 2.286 18.286 0 0 28.571-2.286 44.571-30.286 25.714-45.143 68.571-32 85.143-24.571 2.857 18.857 10.286 32 18.857 39.429-65.143 7.429-133.714 32.571-133.714 144.571 0 32 11.429 57.714 30.286 78.286-2.857 7.429-13.143 37.143 2.857 77.714 24.571 7.429 80.571-30.286 80.571-30.286 23.429 6.857 48 9.714 73.143 9.714s49.714-2.857 73.143-9.714c0 0 56 37.714 80.571 30.286 16-40.571 5.714-70.286 2.857-77.714 18.857-20.571 30.286-46.286 30.286-78.286 0-112.571-68.571-137.143-133.714-144.571 10.286-9.143 20-26.857 20-54.286 0-38.857-0.571-70.286-0.571-80 0-8 5.143-17.143 20-14.286 116 38.857 200 148.571 200 277.714zM877.714 713.143v-548.571c0-90.857-73.714-164.571-164.571-164.571h-548.571c-90.857 0-164.571 73.714-164.571 164.571v548.571c0 90.857 73.714 164.571 164.571 164.571h548.571c90.857 0 164.571-73.714 164.571-164.571z" />
22
+ <glyph unicode="&#xf099;" glyph-name="twitter" horiz-adv-x="951" d="M925.714 717.714c-25.143-36.571-56.571-69.143-92.571-95.429 0.571-8 0.571-16 0.571-24 0-244-185.714-525.143-525.143-525.143-104.571 0-201.714 30.286-283.429 82.857 14.857-1.714 29.143-2.286 44.571-2.286 86.286 0 165.714 29.143 229.143 78.857-81.143 1.714-149.143 54.857-172.571 128 11.429-1.714 22.857-2.857 34.857-2.857 16.571 0 33.143 2.286 48.571 6.286-84.571 17.143-148 91.429-148 181.143v2.286c24.571-13.714 53.143-22.286 83.429-23.429-49.714 33.143-82.286 89.714-82.286 153.714 0 34.286 9.143 65.714 25.143 93.143 90.857-112 227.429-185.143 380.571-193.143-2.857 13.714-4.571 28-4.571 42.286 0 101.714 82.286 184.571 184.571 184.571 53.143 0 101.143-22.286 134.857-58.286 41.714 8 81.714 23.429 117.143 44.571-13.714-42.857-42.857-78.857-81.143-101.714 37.143 4 73.143 14.286 106.286 28.571z" />
23
+ <glyph unicode="&#xf09a;" glyph-name="facebook, facebook-f" horiz-adv-x="602" d="M548 944v-150.857h-89.714c-70.286 0-83.429-33.714-83.429-82.286v-108h167.429l-22.286-169.143h-145.143v-433.714h-174.857v433.714h-145.714v169.143h145.714v124.571c0 144.571 88.571 223.429 217.714 223.429 61.714 0 114.857-4.571 130.286-6.857z" />
24
+ <glyph unicode="&#xf09b;" glyph-name="github" horiz-adv-x="878" d="M438.857 877.714c242.286 0 438.857-196.571 438.857-438.857 0-193.714-125.714-358.286-300-416.571-22.286-4-30.286 9.714-30.286 21.143 0 14.286 0.571 61.714 0.571 120.571 0 41.143-13.714 67.429-29.714 81.143 97.714 10.857 200.571 48 200.571 216.571 0 48-17.143 86.857-45.143 117.714 4.571 11.429 19.429 56-4.571 116.571-36.571 11.429-120.571-45.143-120.571-45.143-34.857 9.714-72.571 14.857-109.714 14.857s-74.857-5.143-109.714-14.857c0 0-84 56.571-120.571 45.143-24-60.571-9.143-105.143-4.571-116.571-28-30.857-45.143-69.714-45.143-117.714 0-168 102.286-205.714 200-216.571-12.571-11.429-24-30.857-28-58.857-25.143-11.429-89.143-30.857-127.429 36.571-24 41.714-67.429 45.143-67.429 45.143-42.857 0.571-2.857-26.857-2.857-26.857 28.571-13.143 48.571-64 48.571-64 25.714-78.286 148-52 148-52 0-36.571 0.571-70.857 0.571-81.714 0-11.429-8-25.143-30.286-21.143-174.286 58.286-300 222.857-300 416.571 0 242.286 196.571 438.857 438.857 438.857zM166.286 247.428c1.143 2.286-0.571 5.143-4 6.857-3.429 1.143-6.286 0.571-7.429-1.143-1.143-2.286 0.571-5.143 4-6.857 2.857-1.714 6.286-1.143 7.429 1.143zM184 228c2.286 1.714 1.714 5.714-1.143 9.143-2.857 2.857-6.857 4-9.143 1.714-2.286-1.714-1.714-5.714 1.143-9.143 2.857-2.857 6.857-4 9.143-1.714zM201.143 202.286c2.857 2.286 2.857 6.857 0 10.857-2.286 4-6.857 5.714-9.714 3.429-2.857-1.714-2.857-6.286 0-10.286s7.429-5.714 9.714-4zM225.143 178.286c2.286 2.286 1.143 7.429-2.286 10.857-4 4-9.143 4.571-11.429 1.714-2.857-2.286-1.714-7.429 2.286-10.857 4-4 9.143-4.571 11.429-1.714zM257.714 164c1.143 3.429-2.286 7.429-7.429 9.143-4.571 1.143-9.714-0.571-10.857-4s2.286-7.429 7.429-8.571c4.571-1.714 9.714 0 10.857 3.429zM293.714 161.143c0 4-4.571 6.857-9.714 6.286-5.143 0-9.143-2.857-9.143-6.286 0-4 4-6.857 9.714-6.286 5.143 0 9.143 2.857 9.143 6.286zM326.857 166.857c-0.571 3.429-5.143 5.714-10.286 5.143-5.143-1.143-8.571-4.571-8-8.571 0.571-3.429 5.143-5.714 10.286-4.571s8.571 4.571 8 8z" />
25
+ <glyph unicode="&#xf09e;" glyph-name="feed, rss" horiz-adv-x="805" d="M219.429 182.857c0-60.571-49.143-109.714-109.714-109.714s-109.714 49.143-109.714 109.714 49.143 109.714 109.714 109.714 109.714-49.143 109.714-109.714zM512 112.571c0.571-10.286-2.857-20-9.714-27.429-6.857-8-16.571-12-26.857-12h-77.143c-18.857 0-34.286 14.286-36 33.143-16.571 174.286-154.857 312.571-329.143 329.143-18.857 1.714-33.143 17.143-33.143 36v77.143c0 10.286 4 20 12 26.857 6.286 6.286 15.429 9.714 24.571 9.714h2.857c121.714-9.714 236.571-62.857 322.857-149.714 86.857-86.286 140-201.143 149.714-322.857zM804.571 111.428c0.571-9.714-2.857-19.429-10.286-26.857-6.857-7.429-16-11.429-26.286-11.429h-81.714c-19.429 0-35.429 14.857-36.571 34.286-18.857 332-283.429 596.571-615.429 616-19.429 1.143-34.286 17.143-34.286 36v81.714c0 10.286 4 19.429 11.429 26.286 6.857 6.857 16 10.286 25.143 10.286h1.714c200-10.286 388-94.286 529.714-236.571 142.286-141.714 226.286-329.714 236.571-529.714z" />
26
+ <glyph unicode="&#xf0ac;" glyph-name="globe" horiz-adv-x="878" d="M438.857 877.714c242.286 0 438.857-196.571 438.857-438.857s-196.571-438.857-438.857-438.857-438.857 196.571-438.857 438.857 196.571 438.857 438.857 438.857zM595.429 580c-4.571-3.429-7.429-9.714-13.143-10.857 2.857 0.571 5.714 10.857 7.429 13.143 3.429 4 8 6.286 12.571 8.571 9.714 4 19.429 5.143 29.714 6.857 9.714 2.286 21.714 2.286 29.143-6.286-1.714 1.714 12 13.714 13.714 14.286 5.143 2.857 13.714 1.714 17.143 6.857 1.143 1.714 1.143 12.571 1.143 12.571-9.714-1.143-13.143 8-13.714 16 0-0.571-1.143-2.286-3.429-4.571 0.571 8.571-10.286 2.286-14.286 3.429-13.143 3.429-11.429 12.571-15.429 22.286-2.286 5.143-8.571 6.857-10.857 12-2.286 3.429-3.429 10.857-8.571 11.429-3.429 0.571-9.714-12-10.857-11.429-5.143 2.857-7.429-1.143-11.429-3.429-3.429-2.286-6.286-1.143-9.714-2.857 10.286 3.429-4.571 9.143-9.714 8 8 2.286 4 10.857-0.571 14.857h2.857c-1.143 5.143-17.143 9.714-22.286 13.143s-32.571 9.143-38.286 5.714c-6.857-4 1.714-15.429 1.714-21.143 0.571-6.857-6.857-8.571-6.857-14.286 0-9.714 18.286-8 13.714-21.143-2.857-8-13.714-9.714-18.286-16-4.571-5.714 0.571-16 5.143-20 4.571-3.429-8-9.143-9.714-10.286-9.714-4.571-17.143 9.714-19.429 18.286-1.714 6.286-2.286 13.714-9.143 17.143-3.429 1.143-14.286 2.857-16.571-0.571-3.429 8.571-15.429 12-23.429 14.857-11.429 4-21.143 4-33.143 2.286 4 0.571-1.143 18.286-10.857 15.429 2.857 5.714 1.714 12 2.857 17.714 1.143 4.571 3.429 9.143 6.857 13.143 1.143 2.286 13.714 15.429 9.714 16 9.714-1.143 20.571-1.714 28.571 6.286 5.143 5.143 7.429 13.714 12.571 19.429 7.429 8.571 16.571-2.286 24.571-2.857 11.429-0.571 10.857 12 4.571 17.714 7.429-0.571 1.143 13.143-2.857 14.857-5.143 1.714-24.571-3.429-14.286-7.429-2.286 1.143-16-27.429-24-13.143-2.286 2.857-3.429 14.857-8.571 15.429-4.571 0-7.429-5.143-9.143-8.571 2.857 7.429-16 12.571-20 13.143 8.571 5.714 1.714 12-4.571 15.429-4.571 2.857-18.857 5.143-22.857 0.571-10.857-13.143 11.429-14.857 17.143-18.286 1.714-1.143 8.571-5.143 4.571-8-3.429-1.714-13.714-4.571-14.857-6.857-3.429-5.143 4-10.857-1.143-16-5.143 5.143-5.143 13.714-9.143 19.429 5.143-6.286-20.571-2.857-20-2.857-8.571 0-22.286-5.714-28.571 2.857-1.143 2.286-1.143 15.429 2.286 12.571-5.143 4-8.571 8-12 10.286-18.857-6.286-36.571-14.286-53.714-23.429 2.286-0.571 4-0.571 6.857 0.571 4.571 1.714 8.571 4.571 13.143 6.857 5.714 2.286 17.714 9.143 24 4 0.571 1.143 2.286 2.286 2.857 2.857 4-4.571 8-9.143 11.429-14.286-4.571 2.286-12 1.143-17.143 0.571-4-1.143-10.857-2.286-12.571-6.857 1.714-2.857 4-7.429 2.857-10.286-7.429 5.143-13.143 13.714-23.429 14.857-4.571 0-9.143 0-12.571-0.571-54.857-30.286-101.143-74.286-134.286-126.857 2.286-2.286 4.571-4 6.857-4.571 5.714-1.714 0-18.286 10.857-9.714 3.429-2.857 4-6.857 1.714-10.857 0.571 0.571 23.429-14.286 25.143-15.429 4-3.429 10.286-7.429 12-12 1.143-4-2.286-8.571-5.714-10.286-0.571 1.143-9.143 9.714-10.286 7.429-1.714-2.857 0-18.286 6.286-17.714-9.143-0.571-5.143-36-7.429-42.857 0-0.571 1.143-0.571 1.143-0.571-1.714-6.857 4-33.714 15.429-30.857-7.429-1.714 13.143-28 16-29.714 7.429-5.143 16-8.571 21.143-16 5.714-8 5.714-20 13.714-26.286-2.286-6.857 12-14.857 11.429-24.571-1.143-0.571-1.714-0.571-2.857-1.143 2.857-8 13.714-8 17.714-15.429 2.286-4.571 0-15.429 7.429-13.143 1.143 12.571-7.429 25.143-13.714 35.429-3.429 5.714-6.857 10.857-9.714 16.571-2.857 5.143-3.429 11.429-5.714 17.143 2.286-0.571 14.857-5.143 13.714-6.857-4.571-11.429 18.286-31.429 24.571-38.857 1.714-1.714 14.857-18.857 8-18.857 7.429 0 17.714-11.429 21.143-17.143 5.143-8.571 4-19.429 7.429-28.571 3.429-11.429 19.429-16.571 28.571-21.714 8-4 14.857-9.714 22.857-12.571 12-4.571 14.857-0.571 25.143 1.143 14.857 2.286 16.571-14.286 28.571-20.571 7.429-4 23.429-9.714 31.429-6.286-3.429-1.143 12-24.571 13.143-26.286 5.143-6.857 14.857-10.286 20.571-17.143 1.714 1.143 3.429 2.857 4 5.143-2.286-6.286 8.571-18.286 14.286-17.143 6.286 1.143 8 13.714 8 18.286-11.429-5.714-21.714-1.143-28 10.286-1.143 2.857-10.286 18.857-2.286 18.857 10.857 0 3.429 8.571 2.286 16.571s-9.143 13.143-13.143 20c-3.429-6.857-14.857-5.143-18.286 0.571 0-1.714-1.714-4.571-1.714-6.857-2.857 0-5.714-0.571-8.571 0.571 1.143 6.857 1.714 15.429 3.429 22.857 2.857 10.286 21.714 30.286-2.857 29.143-8.571-0.571-12-4-14.857-11.429-2.857-6.857-1.714-13.143-9.714-16.571-5.143-2.286-22.286-1.143-27.429 1.714-10.857 6.286-18.286 26.286-18.286 37.714-0.571 15.429 7.429 29.143 0 43.429 3.429 2.857 6.857 8.571 10.857 11.429 3.429 2.286 7.429-1.714 9.143 5.143-1.714 1.143-4 3.429-4.571 3.429 8.571-4 24.571 5.714 32 0 4.571-3.429 9.714-4.571 12.571 1.143 0.571 1.714-4 8.571-1.714 13.143 1.714-9.714 8-11.429 16.571-5.143 3.429-3.429 12.571-2.286 18.857-5.714 6.286-4 7.429-10.286 14.857-1.714 4.571-6.857 5.143-6.857 6.857-13.714 1.714-6.286 5.143-22.286 10.857-25.143 12-7.429 9.143 12.571 8 19.429-0.571 0.571-0.571 19.429-1.143 19.429-18.286 4-11.429 18.286-1.143 28 1.714 1.143 14.857 5.714 20.571 10.286 5.143 4.571 11.429 12.571 8.571 20 2.857 0 5.143 2.286 6.286 5.143-1.714 0.571-8.571 6.286-9.714 5.714 4 2.286 3.429 5.714 1.143 9.143 5.714 3.429 2.857 9.714 8.571 12 6.286-8.571 18.857 1.143 12.571 8 5.714 8 18.857 4 22.286 11.429 8.571-2.286 2.286 8.571 6.857 14.857 4 5.143 10.857 5.143 16 8 0-0.571 14.286 8 9.714 8.571 9.714-1.143 29.143 9.143 14.286 17.714 2.286 5.143-5.143 7.429-10.286 8.571 4 1.143 9.143-1.143 12.571 1.143 7.429 5.143 2.286 7.429-4 9.143-8 2.286-18.286-2.857-24.571-6.857zM502.286 78.857c78.286 13.714 148 52.571 200.571 108-3.429 3.429-9.714 2.286-14.286 4.571-4.571 1.714-8 3.429-13.714 4.571 1.143 11.429-11.429 15.429-19.429 21.143-7.429 5.714-12 12-22.857 9.714-1.143-0.571-12.571-4.571-10.286-6.857-7.429 6.286-10.857 9.714-20.571 12.571-9.143 2.857-15.429 14.286-24.571 4-4.571-4.571-2.286-11.429-4.571-16-7.429 6.286 6.857 13.714 1.143 20.571-6.857 8-18.857-5.143-24.571-8.571-3.429-2.857-7.429-4-9.714-7.429-2.857-4-4-9.143-6.286-13.143-1.714 4.571-11.429 3.429-12 6.857 2.286-13.714 2.286-28 5.143-41.714 1.714-8 0-21.143-6.857-27.429s-15.429-13.143-16.571-22.857c-1.143-6.857 0.571-13.143 6.857-14.857 0.571-8.571-9.143-14.857-8.571-24 0-0.571 0.571-6.286 1.143-9.143z" />
27
+ <glyph unicode="&#xf0e1;" glyph-name="linkedin" horiz-adv-x="878" d="M199.429 593.714v-566.286h-188.571v566.286h188.571zM211.429 768.571c0.571-54.286-40.571-97.714-106.286-97.714v0h-1.143c-63.429 0-104 43.429-104 97.714 0 55.429 42.286 97.714 106.286 97.714 64.571 0 104.571-42.286 105.143-97.714zM877.714 352v-324.571h-188v302.857c0 76-27.429 128-95.429 128-52 0-82.857-34.857-96.571-68.571-4.571-12.571-6.286-29.143-6.286-46.286v-316h-188c2.286 513.143 0 566.286 0 566.286h188v-82.286h-1.143c24.571 38.857 69.143 95.429 170.857 95.429 124 0 216.571-81.143 216.571-254.857z" />
28
+ <glyph unicode="&#xf0f4;" glyph-name="coffee" horiz-adv-x="1061" d="M950.857 585.143c0 60.571-49.143 109.714-109.714 109.714h-36.571v-219.429h36.571c60.571 0 109.714 49.143 109.714 109.714zM0 146.286h1024c0-80.571-65.714-146.286-146.286-146.286h-731.429c-80.571 0-146.286 65.714-146.286 146.286zM1060.571 585.143c0-121.143-98.286-219.429-219.429-219.429h-36.571v-18.286c0-70.286-57.714-128-128-128h-402.286c-70.286 0-128 57.714-128 128v420.571c0 20 16.571 36.571 36.571 36.571h658.286c121.143 0 219.429-98.286 219.429-219.429z" />
29
+ <glyph unicode="&#xf166;" glyph-name="youtube-square" horiz-adv-x="878" d="M525.143 206.286v89.714c0 18.857-5.714 28.571-16.571 28.571-6.286 0-12.571-2.857-18.857-9.143v-128c6.286-6.286 12.571-9.143 18.857-9.143 10.857 0 16.571 9.143 16.571 28zM630.286 276h37.714v19.429c0 19.429-6.286 29.143-18.857 29.143s-18.857-9.714-18.857-29.143v-19.429zM304 428v-40h-45.714v-241.714h-42.286v241.714h-44.571v40h132.571zM418.857 356v-209.714h-38.286v22.857c-14.857-17.143-29.143-25.714-43.429-25.714-12 0-20.571 5.143-24 16-2.286 6.286-3.429 16-3.429 30.857v165.714h37.714v-154.286c0-8.571 0-13.714 0.571-14.857 0.571-5.714 3.429-8.571 8.571-8.571 8 0 15.429 5.714 24 17.714v160h38.286zM562.857 292.571v-83.429c0-18.857-1.143-33.143-4-41.714-4.571-16-14.857-24-30.286-24-13.143 0-26.286 8-38.857 23.429v-20.571h-38.286v281.714h38.286v-92c12 14.857 25.143 22.857 38.857 22.857 15.429 0 25.714-8 30.286-24 2.857-8.571 4-22.286 4-42.286zM706.286 218.857v-5.143c0-12.571-0.571-20.571-1.143-24.571-1.143-8.571-4-16-8.571-22.857-10.286-15.429-26.286-22.857-45.714-22.857-20 0-35.429 7.429-46.286 21.714-8 10.286-12 26.857-12 49.143v73.714c0 22.286 3.429 38.286 11.429 49.143 10.857 14.286 26.286 21.714 45.714 21.714 18.857 0 34.286-7.429 44.571-21.714 8-10.857 12-26.857 12-49.143v-43.429h-76v-37.143c0-19.429 6.286-29.143 19.429-29.143 9.143 0 14.857 5.143 17.143 14.857 0 2.286 0.571 10.857 0.571 25.714h38.857zM448.571 689.714v-89.143c0-19.429-6.286-29.143-18.286-29.143-12.571 0-18.286 9.714-18.286 29.143v89.143c0 19.429 5.714 29.714 18.286 29.714 12 0 18.286-10.286 18.286-29.714zM753.143 282.286v0c0 49.143 0 101.143-10.857 148.571-8 33.714-35.429 58.286-68 61.714-77.714 8.571-156.571 8.571-235.429 8.571-78.286 0-157.143 0-234.857-8.571-33.143-3.429-60.571-28-68-61.714-10.857-47.429-11.429-99.429-11.429-148.571v0c0-48.571 0-100.571 11.429-148.571 7.429-33.143 34.857-57.714 67.429-61.714 78.286-8.571 157.143-8.571 235.429-8.571s157.143 0 235.429 8.571c32.571 4 60 28.571 67.429 61.714 11.429 48 11.429 100 11.429 148.571zM321.714 654.286l51.429 169.143h-42.857l-29.143-111.429-30.286 111.429h-44.571c8.571-26.286 18.286-52.571 26.857-78.857 13.714-40 22.286-69.714 26.286-90.286v-114.857h42.286v114.857zM486.857 608v74.286c0 22.286-4 38.857-12 49.714-10.857 14.286-25.714 21.714-44.571 21.714-19.429 0-34.286-7.429-44.571-21.714-8-10.857-12-27.429-12-49.714v-74.286c0-22.286 4-38.857 12-49.714 10.286-14.286 25.143-21.714 44.571-21.714 18.857 0 33.714 7.429 44.571 21.714 8 10.286 12 27.429 12 49.714zM590.286 539.428h38.286v211.429h-38.286v-161.714c-8.571-12-16.571-17.714-24-17.714-5.143 0-8.571 2.857-9.143 9.143-0.571 1.143-0.571 5.714-0.571 14.857v155.429h-38.286v-167.429c0-14.857 1.143-24.571 3.429-31.429 4-10.286 12.571-15.429 24.571-15.429 14.286 0 28.571 8.571 44 25.714v-22.857zM877.714 713.143v-548.571c0-90.857-73.714-164.571-164.571-164.571h-548.571c-90.857 0-164.571 73.714-164.571 164.571v548.571c0 90.857 73.714 164.571 164.571 164.571h548.571c90.857 0 164.571-73.714 164.571-164.571z" />
30
+ <glyph unicode="&#xf167;" glyph-name="youtube" horiz-adv-x="878" d="M554.857 240v-120.571c0-25.714-7.429-38.286-22.286-38.286-8.571 0-17.143 4-25.714 12.571v172c8.571 8.571 17.143 12.571 25.714 12.571 14.857 0 22.286-13.143 22.286-38.286zM748 239.428v-26.286h-51.429v26.286c0 25.714 8.571 38.857 25.714 38.857s25.714-13.143 25.714-38.857zM196 364h61.143v53.714h-178.286v-53.714h60v-325.143h57.143v325.143zM360.571 38.857h50.857v282.286h-50.857v-216c-11.429-16-22.286-24-32.571-24-6.857 0-10.857 4-12 12-0.571 1.714-0.571 8-0.571 20v208h-50.857v-223.429c0-20 1.714-33.143 4.571-41.714 4.571-14.286 16.571-21.143 33.143-21.143 18.286 0 37.714 11.429 58.286 34.857v-30.857zM605.714 123.428v112.571c0 26.286-1.143 45.143-5.143 56.571-6.286 21.143-20.571 32-40.571 32-18.857 0-36.571-10.286-53.143-30.857v124h-50.857v-378.857h50.857v27.429c17.143-21.143 34.857-31.429 53.143-31.429 20 0 34.286 10.857 40.571 31.429 4 12 5.143 30.857 5.143 57.143zM798.857 129.143v7.429h-52c0-20.571-0.571-32-1.143-34.857-2.857-13.714-10.286-20.571-22.857-20.571-17.714 0-26.286 13.143-26.286 39.429v49.714h102.286v58.857c0 30.286-5.143 52-15.429 66.286-14.857 19.429-34.857 29.143-60.571 29.143-26.286 0-46.286-9.714-61.143-29.143-10.857-14.286-16-36-16-66.286v-98.857c0-30.286 5.714-52.571 16.571-66.286 14.857-19.429 34.857-29.143 61.714-29.143s48 10.286 61.714 30.286c6.286 9.143 10.857 19.429 12 30.857 1.143 5.143 1.143 16.571 1.143 33.143zM451.429 650.857v120c0 26.286-7.429 39.429-24.571 39.429-16.571 0-24.571-13.143-24.571-39.429v-120c0-26.286 8-40 24.571-40 17.143 0 24.571 13.714 24.571 40zM862.286 221.714c0-65.714-0.571-136-14.857-200-10.857-45.143-47.429-78.286-91.429-82.857-105.143-12-211.429-12-317.143-12s-212 0-317.143 12c-44 4.571-81.143 37.714-91.429 82.857-14.857 64-14.857 134.286-14.857 200v0c0 66.286 0.571 136 14.857 200 10.857 45.143 47.429 78.286 92 83.429 104.571 11.429 210.857 11.429 316.571 11.429s212 0 317.143-11.429c44-5.143 81.143-38.286 91.429-83.429 14.857-64 14.857-133.714 14.857-200zM292 950.857h58.286l-69.143-228v-154.857h-57.143v154.857c-5.143 28-16.571 68-34.857 121.143-12.571 35.429-25.143 71.429-37.143 106.857h60.571l40.571-150.286zM503.429 760.571v-100c0-30.286-5.143-53.143-16-67.429-14.286-19.429-34.286-29.143-60.571-29.143-25.714 0-45.714 9.714-60 29.143-10.857 14.857-16 37.143-16 67.429v100c0 30.286 5.143 52.571 16 66.857 14.286 19.429 34.286 29.143 60 29.143 26.286 0 46.286-9.714 60.571-29.143 10.857-14.286 16-36.571 16-66.857zM694.857 853.143v-285.143h-52v31.429c-20.571-24-40-35.429-58.857-35.429-16.571 0-28.571 6.857-33.714 21.143-2.857 8.571-4.571 22.286-4.571 42.857v225.143h52v-209.714c0-12 0-18.857 0.571-20 1.143-8 5.143-12.571 12-12.571 10.286 0 21.143 8 32.571 24.571v217.714h52z" />
31
+ <glyph unicode="&#xf16c;" glyph-name="stack-overflow" horiz-adv-x="878" d="M736.571 18.286h-638.857v274.286h-91.429v-365.714h821.714v365.714h-91.429v-274.286zM198.286 317.714l18.857 89.714 447.429-94.286-18.857-89.143zM257.143 531.428l38.286 83.429 414.286-193.714-38.286-82.857zM372 734.857l58.286 70.286 350.857-293.143-58.286-70.286zM598.857 950.857l272.571-366.286-73.143-54.857-272.571 366.286zM188.571 110.286v90.857h457.143v-90.857h-457.143z" />
32
+ <glyph unicode="&#xf16d;" glyph-name="instagram" horiz-adv-x="878" d="M585.143 438.857c0 80.571-65.714 146.286-146.286 146.286s-146.286-65.714-146.286-146.286 65.714-146.286 146.286-146.286 146.286 65.714 146.286 146.286zM664 438.857c0-124.571-100.571-225.143-225.143-225.143s-225.143 100.571-225.143 225.143 100.571 225.143 225.143 225.143 225.143-100.571 225.143-225.143zM725.714 673.143c0-29.143-23.429-52.571-52.571-52.571s-52.571 23.429-52.571 52.571 23.429 52.571 52.571 52.571 52.571-23.429 52.571-52.571zM438.857 798.857c-64 0-201.143 5.143-258.857-17.714-20-8-34.857-17.714-50.286-33.143s-25.143-30.286-33.143-50.286c-22.857-57.714-17.714-194.857-17.714-258.857s-5.143-201.143 17.714-258.857c8-20 17.714-34.857 33.143-50.286s30.286-25.143 50.286-33.143c57.714-22.857 194.857-17.714 258.857-17.714s201.143-5.143 258.857 17.714c20 8 34.857 17.714 50.286 33.143s25.143 30.286 33.143 50.286c22.857 57.714 17.714 194.857 17.714 258.857s5.143 201.143-17.714 258.857c-8 20-17.714 34.857-33.143 50.286s-30.286 25.143-50.286 33.143c-57.714 22.857-194.857 17.714-258.857 17.714zM877.714 438.857c0-60.571 0.571-120.571-2.857-181.143-3.429-70.286-19.429-132.571-70.857-184s-113.714-67.429-184-70.857c-60.571-3.429-120.571-2.857-181.143-2.857s-120.571-0.571-181.143 2.857c-70.286 3.429-132.571 19.429-184 70.857s-67.429 113.714-70.857 184c-3.429 60.571-2.857 120.571-2.857 181.143s-0.571 120.571 2.857 181.143c3.429 70.286 19.429 132.571 70.857 184s113.714 67.429 184 70.857c60.571 3.429 120.571 2.857 181.143 2.857s120.571 0.571 181.143-2.857c70.286-3.429 132.571-19.429 184-70.857s67.429-113.714 70.857-184c3.429-60.571 2.857-120.571 2.857-181.143z" />
33
+ <glyph unicode="&#xf16e;" glyph-name="flickr" horiz-adv-x="878" d="M713.143 877.714c90.857 0 164.571-73.714 164.571-164.571v-548.571c0-90.857-73.714-164.571-164.571-164.571h-548.571c-90.857 0-164.571 73.714-164.571 164.571v548.571c0 90.857 73.714 164.571 164.571 164.571h548.571zM398.857 438.857c0 66.857-54.286 121.143-121.143 121.143s-121.143-54.286-121.143-121.143 54.286-121.143 121.143-121.143 121.143 54.286 121.143 121.143zM721.143 438.857c0 66.857-54.286 121.143-121.143 121.143s-121.143-54.286-121.143-121.143 54.286-121.143 121.143-121.143 121.143 54.286 121.143 121.143z" />
34
+ <glyph unicode="&#xf173;" glyph-name="tumblr" horiz-adv-x="624" d="M539.429 191.428l45.714-135.429c-17.143-25.714-94.857-54.857-164.571-56-207.429-3.429-285.714 147.429-285.714 253.714v310.857h-96v122.857c144 52 178.857 182.286 186.857 256.571 0.571 4.571 4.571 6.857 6.857 6.857h139.429v-242.286h190.286v-144h-190.857v-296c0-40 14.857-95.429 91.429-93.714 25.143 0.571 58.857 8 76.571 16.571z" />
35
+ <glyph unicode="&#xf174;" glyph-name="tumblr-square" horiz-adv-x="878" d="M649.143 116l-35.429 104.571c-13.714-6.857-39.429-12.571-58.857-12.571-58.286-1.714-70.286 40.571-70.286 72v227.429h146.857v110.857h-146.286v186.286h-107.429c-1.714 0-4.571-1.714-5.143-5.714-6.286-56.571-33.143-157.143-144-197.143v-94.286h74.286v-238.857c0-81.714 60-198.286 219.429-195.429 53.714 1.143 113.714 23.429 126.857 42.857zM877.714 713.143v-548.571c0-90.857-73.714-164.571-164.571-164.571h-548.571c-90.857 0-164.571 73.714-164.571 164.571v548.571c0 90.857 73.714 164.571 164.571 164.571h548.571c90.857 0 164.571-73.714 164.571-164.571z" />
36
+ <glyph unicode="&#xf17d;" glyph-name="dribbble" horiz-adv-x="878" d="M585.143 93.714c-5.714 33.143-27.429 147.429-80 284.571-0.571 0-1.714-0.571-2.286-0.571 0 0-222.286-77.714-294.286-234.286-3.429 2.857-8.571 6.286-8.571 6.286 65.143-53.143 148-85.714 238.857-85.714 52 0 101.143 10.857 146.286 29.714zM479.429 440.571c-9.143 21.143-19.429 42.286-30.286 63.429-193.143-57.714-378.286-53.143-384.571-53.143-0.571-4-0.571-8-0.571-12 0-96 36.571-184 96-250.286v0c102.286 182.286 304.571 247.429 304.571 247.429 5.143 1.714 10.286 2.857 14.857 4.571zM418.286 561.714c-65.143 115.429-134.286 209.143-139.429 216-104.571-49.143-182.286-145.714-206.857-261.714 9.714 0 166.286-1.714 346.286 45.714zM809.143 379.428c-8 2.286-112.571 35.429-233.714 16.571 49.143-135.429 69.143-245.714 73.143-268 84 56.571 143.429 146.857 160.571 251.429zM349.143 802.857c-0.571 0-0.571 0-1.143-0.571 0 0 0.571 0.571 1.143 0.571zM686.286 720c-65.714 58.286-152.571 93.714-247.429 93.714-30.286 0-60-4-88.571-10.857 5.714-7.429 76.571-100.571 140.571-218.286 141.143 52.571 194.286 133.714 195.429 135.429zM813.714 442.857c-1.143 88.571-32.571 170.286-85.143 234.286-1.143-1.143-61.143-88-209.143-148.571 8.571-17.714 17.143-36 25.143-54.286 2.857-6.286 5.143-13.143 8-19.429 129.143 16.571 256.571-11.429 261.143-12zM877.714 438.857c0-242.286-196.571-438.857-438.857-438.857s-438.857 196.571-438.857 438.857 196.571 438.857 438.857 438.857 438.857-196.571 438.857-438.857z" />
37
+ <glyph unicode="&#xf17e;" glyph-name="skype" horiz-adv-x="878" d="M670.286 343.428c0 99.429-96.571 133.714-177.714 152l-59.429 13.714c-43.429 10.286-76 17.714-76 50.857 0 30.286 32 44 82.286 44 89.714 0 91.429-65.714 146.857-65.714 37.143 0 59.429 29.143 59.429 62.286 0 65.714-109.143 108.571-217.143 108.571-98.857 0-213.714-42.857-213.714-158.857 0-96 64-130.286 147.429-150.286l83.429-20.571c50.857-12.571 82.286-18.286 82.286-54.857 0-29.143-32.571-51.429-82.857-51.429-105.714 0-111.429 88-172.571 88-40 0-57.714-28.571-57.714-60 0-70.286 107.429-127.429 236-127.429 107.429 0 219.429 53.714 219.429 169.714zM877.714 219.428c0-121.143-98.286-219.429-219.429-219.429-50.286 0-96.571 17.143-133.714 45.714-27.429-5.714-56.571-9.143-85.714-9.143-222.286 0-402.286 180-402.286 402.286 0 29.143 3.429 58.286 9.143 85.714-28.571 37.143-45.714 83.429-45.714 133.714 0 121.143 98.286 219.429 219.429 219.429 50.286 0 96.571-17.143 133.714-45.714 27.429 5.714 56.571 9.143 85.714 9.143 222.286 0 402.286-180 402.286-402.286 0-29.143-3.429-58.286-9.143-85.714 28.571-37.143 45.714-83.429 45.714-133.714z" />
38
+ <glyph unicode="&#xf18a;" glyph-name="weibo" horiz-adv-x="1039" d="M385.714 217.143c16 26.286 7.429 56.571-19.429 68-25.714 10.857-60-0.571-76-25.714-16.571-25.714-8.571-56 17.143-68 26.286-12 61.714-0.571 78.286 25.714zM439.429 286.286c5.714 10.286 2.286 21.714-8 25.714-10.286 3.429-22.857-1.143-28.571-10.857-5.714-10.286-2.857-21.143 7.429-25.714 10.286-4 23.429 0.571 29.143 10.857zM538.857 225.143c-34.286-77.714-133.714-120-218.286-92.571-81.714 26.286-116 106.857-80.571 179.429 35.429 70.857 126.286 110.857 206.857 90.286 84-21.714 126.286-100.571 92-177.143zM717.143 316.571c-10.857 111.429-157.143 188-326.857 171.429-169.714-17.143-297.714-120.571-286.857-232s157.143-188 326.857-171.429c169.714 17.143 297.714 120.571 286.857 232zM893.143 314.286c0-128.571-185.143-290.286-463.429-290.286-212.571 0-429.714 102.857-429.714 272.571 0 88.571 56 190.857 152.571 287.429 129.143 129.143 279.429 187.429 336 130.857 25.143-24.571 27.429-68 11.429-119.429-8-26.286 24.571-11.429 24.571-12 104 44 194.857 46.286 228-1.143 17.714-25.143 16-60.571 0-101.714-7.429-18.857 2.286-21.714 16.571-26.286 58.857-18.286 124-62.286 124-140zM850.857 670.857c32.571-36 41.714-85.714 27.429-129.143-5.714-17.714-24.571-27.429-42.286-21.714s-27.429 24.571-21.714 42.286v0c6.857 21.714 2.286 45.714-13.714 63.429s-39.429 24.571-61.143 20v0c-18.286-4-36.571 7.429-40 25.714-4 18.286 7.429 36 25.714 40 44.571 9.714 93.143-4 125.714-40.571zM954.286 764c67.429-74.286 85.143-176 56.571-265.143v0c-6.857-20.571-28.571-32-49.143-25.143s-32 28.571-25.714 49.143v0c20.571 63.429 8 136-40 188.571-48 53.143-118.286 73.143-183.429 59.429-21.143-4.571-42.286 9.143-46.857 30.286s9.143 41.714 30.286 46.286v0c92 19.429 190.857-8.571 258.286-83.429z" />
39
+ <glyph unicode="&#xf18b;" glyph-name="renren" horiz-adv-x="878" d="M647.429 53.714c-62.286-34.286-133.714-53.714-210.286-53.714-76 0-147.429 19.429-209.714 53.714 101.143 64 182.857 160.571 209.714 273.714 27.429-113.143 109.143-209.714 210.286-273.714zM364.571 869.714v-277.143c0-195.429-108-363.429-261.143-437.714-64.571 76.571-103.429 174.857-103.429 282.857 0 217.143 157.714 397.143 364.571 432zM877.714 437.714c0-108-38.857-206.286-103.429-282.857-153.143 74.286-261.143 242.286-261.143 437.714v277.143c206.857-34.857 364.571-214.857 364.571-432z" />
40
+ <glyph unicode="&#xf194;" glyph-name="vimeo-square" horiz-adv-x="878" d="M738.286 586.286c4 82.857-26.857 124.571-92 126.857-88 2.857-147.429-46.857-178.286-149.143 16 6.857 31.429 10.857 46.857 10.857 32 0 46.286-18.286 42.286-54.857-1.714-21.714-16-53.714-42.286-95.429-26.857-42.286-46.857-62.857-60-62.857-17.143 0-32 32-46.857 96.571-4.571 19.429-13.143 67.429-25.714 145.714-11.429 72-41.714 105.714-91.429 101.143-20.571-2.286-52.571-20.571-93.714-57.143-30.857-26.857-61.143-54.857-92.571-82.286l29.714-38.286c28.571 19.429 45.143 29.714 49.714 29.714 21.714 0 42.286-34.286 61.143-102.286 17.143-62.857 34.286-125.143 51.429-188 25.714-68 56.571-102.286 93.714-102.286 59.429 0 132.571 56 218.857 168 83.429 107.429 126.857 192 129.143 253.714zM877.714 713.143v-548.571c0-90.857-73.714-164.571-164.571-164.571h-548.571c-90.857 0-164.571 73.714-164.571 164.571v548.571c0 90.857 73.714 164.571 164.571 164.571h548.571c90.857 0 164.571-73.714 164.571-164.571z" />
41
+ <glyph unicode="&#xf198;" glyph-name="slack" horiz-adv-x="951" d="M868 507.428c46.857 0 82.857-34.286 82.857-81.143 0-36.571-18.857-62.286-53.143-74.286l-98.286-33.714 32-95.429c2.857-8.571 4-17.714 4-26.857 0-45.143-36.571-82.857-81.714-82.857-36 0-68 22.286-79.429 56.571l-31.429 94.286-177.143-60.571 31.429-93.714c2.857-8.571 4.571-17.714 4.571-26.857 0-44.571-36.571-82.857-82.286-82.857-36 0-67.429 22.286-78.857 56.571l-31.429 93.143-87.429-30.286c-9.143-2.857-18.857-5.143-28.571-5.143-46.286 0-81.143 34.286-81.143 80.571 0 35.429 22.857 67.429 56.571 78.857l89.143 30.286-60 178.857-89.143-30.857c-9.143-2.857-18.286-4.571-27.429-4.571-45.714 0-81.143 34.857-81.143 80.571 0 35.429 22.857 67.429 56.571 78.857l89.714 30.286-30.286 90.857c-2.857 8.571-4.571 17.714-4.571 26.857 0 45.143 36.571 82.857 82.286 82.857 36 0 67.429-22.286 78.857-56.571l30.857-91.429 177.143 60-30.857 91.429c-2.857 8.571-4.571 17.714-4.571 26.857 0 45.143 37.143 82.857 82.286 82.857 36 0 68-22.857 79.429-56.571l30.286-92 92.571 31.429c8 2.286 16 3.429 24.571 3.429 44.571 0 82.857-33.143 82.857-78.857 0-35.429-27.429-65.143-59.429-76l-89.714-30.857 60-180.571 93.714 32c8.571 2.857 17.714 4.571 26.286 4.571zM414.286 357.714l177.143 60-60 180-177.143-61.143z" />
42
+ <glyph unicode="&#xf199;" glyph-name="envelope-square" horiz-adv-x="878" d="M713.143 877.714c90.857 0 164.571-73.714 164.571-164.571v-548.571c0-90.857-73.714-164.571-164.571-164.571h-548.571c-90.857 0-164.571 73.714-164.571 164.571v548.571c0 90.857 73.714 164.571 164.571 164.571h548.571zM731.429 274.286v249.143c-10.857-12-22.857-22.857-36.571-31.429-53.714-35.429-109.143-68.571-162.286-105.143-26.857-18.857-60-39.429-93.714-39.429v0 0 0 0c-33.714 0-66.857 20.571-93.714 39.429-53.143 36.571-109.143 69.143-162.286 105.714-13.143 8.571-23.429 21.143-36.571 30.857v-249.143c0-30.286 24.571-54.857 54.857-54.857h475.429c30.286 0 54.857 24.571 54.857 54.857zM731.429 601.714c0 30.857-22.857 56.571-54.857 56.571h-475.429c-30.286 0-54.857-24.571-54.857-54.857 0-30.857 32-64.571 56-80.571 50.286-33.714 102.286-65.143 152.571-98.286 21.714-14.286 57.714-40.571 84-40.571s62.286 26.286 84 40.571c50.857 33.143 101.714 65.714 152.571 99.429 22.286 14.857 56 49.143 56 77.714z" />
43
+ <glyph unicode="&#xf19a;" glyph-name="wordpress" d="M72.571 438.857c0 63.429 13.714 124 38.286 178.857l209.714-574.286c-146.857 71.429-248 221.714-248 395.429zM808.571 461.143c0-37.714-15.429-81.143-33.714-142.286l-43.429-146.286-158.857 472s26.286 1.714 50.286 4.571c23.429 2.857 20.571 37.714-2.857 36-71.429-5.143-117.143-5.714-117.143-5.714s-42.857 0.571-115.429 5.714c-24 1.714-26.857-34.286-2.857-36 22.286-2.286 45.714-4.571 45.714-4.571l68.571-187.429-96-288-160 475.429s26.286 1.714 50.286 4.571c23.429 2.857 20.571 37.714-2.857 36-70.857-5.143-117.143-5.714-117.143-5.714-8 0-17.714 0.571-28 0.571 78.286 119.429 213.143 198.286 366.857 198.286 114.286 0 218.286-44 296.571-115.429h-5.714c-42.857 0-73.714-37.143-73.714-77.714 0-36 21.143-66.286 43.429-102.857 17.143-29.143 36-66.857 36-121.143zM519.429 400.571l135.429-369.714c0.571-2.286 1.714-4.571 2.857-6.286-45.714-16-94.286-25.143-145.714-25.143-42.857 0-84.571 6.286-124 18.286zM897.143 649.714c34.286-62.857 54.286-134.286 54.286-210.857 0-162.286-88-303.429-218.857-379.429l134.286 387.429c22.286 64 33.714 113.143 33.714 157.714 0 16-1.143 30.857-3.429 45.143zM512 950.857c282.286 0 512-229.714 512-512s-229.714-512-512-512-512 229.714-512 512 229.714 512 512 512zM512-49.714c269.143 0 488.571 219.429 488.571 488.571s-219.429 488.571-488.571 488.571-488.571-219.429-488.571-488.571 219.429-488.571 488.571-488.571z" />
44
+ <glyph unicode="&#xf1a0;" glyph-name="google" horiz-adv-x="860" d="M438.857 501.714h414.286c4-22.286 6.857-44 6.857-73.143 0-250.286-168-428.571-421.143-428.571-242.857 0-438.857 196-438.857 438.857s196 438.857 438.857 438.857c118.286 0 217.714-43.429 294.286-114.857l-119.429-114.857c-32.571 31.429-89.714 68-174.857 68-149.714 0-272-124-272-277.143s122.286-277.143 272-277.143c173.714 0 238.857 124.571 249.143 189.143h-249.143v150.857z" />
45
+ <glyph unicode="&#xf1a1;" glyph-name="reddit" d="M625.714 284c5.143-5.143 5.143-13.143 0-17.714-32.571-32.571-95.429-35.429-113.714-35.429s-81.143 2.857-113.714 35.429c-5.143 4.571-5.143 12.571 0 17.714 4.571 4.571 12.571 4.571 17.143 0 20.571-21.143 65.143-28 96.571-28s75.429 6.857 96.571 28c4.571 4.571 12.571 4.571 17.143 0zM450.286 387.428c0-28-22.857-50.857-50.857-50.857-28.571 0-51.429 22.857-51.429 50.857 0 28.571 22.857 51.429 51.429 51.429 28 0 50.857-22.857 50.857-51.429zM676 387.428c0-28-22.857-50.857-51.429-50.857-28 0-50.857 22.857-50.857 50.857 0 28.571 22.857 51.429 50.857 51.429 28.571 0 51.429-22.857 51.429-51.429zM819.429 456c0 37.714-30.857 68-68.571 68-19.429 0-36.571-8-49.143-20.571-46.286 32-108.571 52.571-177.714 54.857l36 161.714 114.286-25.714c0-28 22.857-50.857 50.857-50.857 28.571 0 51.429 23.429 51.429 51.429s-22.857 51.429-51.429 51.429c-20 0-37.143-12-45.714-28.571l-126.286 28c-6.286 1.714-12.571-2.857-14.286-9.143l-39.429-178.286c-68.571-2.857-130.286-23.429-176.571-55.429-12.571 13.143-30.286 21.143-49.714 21.143-37.714 0-68.571-30.286-68.571-68 0-27.429 16-50.286 38.857-61.714-2.286-10.286-3.429-21.143-3.429-32 0-108.571 122.286-196.571 272.571-196.571 150.857 0 273.143 88 273.143 196.571 0 10.857-1.143 22.286-4 32.571 22.286 11.429 37.714 34.286 37.714 61.143zM1024 438.857c0-282.857-229.143-512-512-512s-512 229.143-512 512 229.143 512 512 512 512-229.143 512-512z" />
46
+ <glyph unicode="&#xf1a5;" glyph-name="delicious" horiz-adv-x="878" d="M841.143 164.571v274.286h-402.286v402.286h-274.286c-70.857 0-128-57.143-128-128v-274.286h402.286v-402.286h274.286c70.857 0 128 57.143 128 128zM877.714 713.143v-548.571c0-90.857-73.714-164.571-164.571-164.571h-548.571c-90.857 0-164.571 73.714-164.571 164.571v548.571c0 90.857 73.714 164.571 164.571 164.571h548.571c90.857 0 164.571-73.714 164.571-164.571z" />
47
+ <glyph unicode="&#xf1a6;" glyph-name="digg" horiz-adv-x="1170" d="M187.429 789.714h116.571v-561.714h-304v398.286h187.429v163.429zM187.429 321.714v210.857h-70.286v-210.857h70.286zM350.857 626.286v-398.286h117.143v398.286h-117.143zM350.857 789.714v-116.571h117.143v116.571h-117.143zM514.857 626.286h304.571v-538.286h-304.571v93.143h187.429v46.857h-187.429v398.286zM702.286 321.714v210.857h-70.286v-210.857h70.286zM866.286 626.286h304v-538.286h-304v93.143h186.857v46.857h-186.857v398.286zM1053.143 321.714v210.857h-70.286v-210.857h70.286z" />
48
+ <glyph unicode="&#xf1b4;" glyph-name="behance" horiz-adv-x="1170" d="M1056 757.143h-292v-70.857h292v70.857zM912 513.714c-68.571 0-114.286-42.857-118.857-111.429h233.143c-6.286 69.143-42.286 111.429-114.286 111.429zM921.143 179.428c43.429 0 99.429 23.429 113.143 68h126.286c-38.857-119.429-119.429-175.429-244-175.429-164.571 0-266.857 111.429-266.857 273.714 0 156.571 108 276 266.857 276 163.429 0 253.714-128.571 253.714-282.857 0-9.143-0.571-18.286-1.143-26.857h-376c0-83.429 44-132.571 128-132.571zM158.286 208h169.143c64.571 0 117.143 22.857 117.143 95.429 0 73.714-44 102.857-113.714 102.857h-172.571v-198.286zM158.286 514.857h160.571c56.571 0 96.571 24.571 96.571 85.714 0 66.286-51.429 82.286-108.571 82.286h-148.571v-168zM0 805.714h339.429c123.429 0 230.286-34.857 230.286-178.286 0-72.571-33.714-119.429-98.286-150.286 88.571-25.143 131.429-92 131.429-182.286 0-146.286-122.857-209.143-253.714-209.143h-349.143v720z" />
49
+ <glyph unicode="&#xf1b5;" glyph-name="behance-square" horiz-adv-x="878" d="M713.143 877.714c90.857 0 164.571-73.714 164.571-164.571v-548.571c0-90.857-73.714-164.571-164.571-164.571h-548.571c-90.857 0-164.571 73.714-164.571 164.571v548.571c0 90.857 73.714 164.571 164.571 164.571h548.571zM285.143 668h-212v-449.714h218.286c81.714 0 158.286 38.857 158.286 130.286 0 56.571-26.857 98.286-81.714 114.286 40 19.429 61.143 48.571 61.143 93.714 0 89.714-66.857 111.429-144 111.429zM272.571 486.286h-100.571v105.143h93.143c35.429 0 68-9.714 68-51.429 0-38.286-25.143-53.714-60.571-53.714zM277.714 294.857h-105.714v124h108c43.429 0 70.857-18.857 70.857-64.571s-32.571-59.429-73.143-59.429zM649.143 276.571c-52.571 0-80 30.857-80 82.857h234.857c0.571 5.714 0.571 11.429 0.571 17.143 0 96-56.571 176.571-158.857 176.571-98.857 0-166.857-74.857-166.857-172.571 0-101.714 64-170.857 166.857-170.857 78.286 0 128.571 34.857 152.571 109.143h-78.857c-8.571-27.429-43.429-42.286-70.286-42.286zM643.429 485.714c44.571 0 66.857-26.857 70.857-69.714h-145.143c2.857 42.857 31.429 69.714 74.286 69.714zM550.857 637.714h182.286v-44h-182.286v44z" />
50
+ <glyph unicode="&#xf1b6;" glyph-name="steam" d="M904 618.286c0-77.143-62.857-139.429-139.429-139.429-77.143 0-139.429 62.286-139.429 139.429s62.286 139.429 139.429 139.429c76.571 0 139.429-62.286 139.429-139.429zM464 194.286c0 79.429-63.429 142.857-142.857 142.857-10.286 0-20.571-1.143-30.857-3.429l59.429-24c58.286-23.429 86.857-89.143 63.429-147.429s-89.714-86.857-148-62.857c-23.429 9.143-46.857 18.857-70.286 28 24-45.143 71.429-76 126.286-76 79.429 0 142.857 63.429 142.857 142.857zM938.286 617.714c0 96-78.286 174.286-174.286 174.286-96.571 0-174.857-78.286-174.857-174.286 0-96.571 78.286-174.286 174.857-174.286 96 0 174.286 77.714 174.286 174.286zM1024 617.714c0-144-116.571-260-260-260l-249.714-182.286c-9.143-98.286-92.571-175.429-193.143-175.429-92.571 0-170.857 65.714-189.714 153.143l-131.429 52.571v245.143l222.286-89.714c29.143 17.714 62.857 27.429 98.857 27.429 6.857 0 13.714-0.571 20-1.143l162.286 232.571c1.143 142.286 117.714 257.714 260.571 257.714 143.429 0 260-116.571 260-260z" />
51
+ <glyph unicode="&#xf1b7;" glyph-name="steam-square" horiz-adv-x="878" d="M709.714 581.143c0 60.571-49.714 110.286-110.857 110.286-60.571 0-110.286-49.714-110.286-110.286 0-61.143 49.714-110.286 110.286-110.286 61.143 0 110.857 49.143 110.857 110.286zM361.143 245.143c0-62.857-50.286-113.143-113.143-113.143-43.429 0-81.143 24.571-100 60.571 18.857-7.429 37.143-14.857 56-22.857 45.714-18.286 98.286 4 117.143 50.286 18.286 45.714-4 98.286-50.286 116.571l-46.857 18.857c7.429 1.714 16 2.857 24 2.857 62.857 0 113.143-50.286 113.143-113.143zM877.714 713.143v-548.571c0-90.857-73.714-164.571-164.571-164.571h-548.571c-90.857 0-164.571 73.714-164.571 164.571v87.429l98.286-39.429c14.857-69.143 76.571-121.143 149.714-121.143 80 0 145.714 61.143 153.143 138.857l197.143 144c114.286 0 206.286 92.571 206.286 205.714 0 114.286-92 206.286-206.286 206.286-112.571 0-204.571-91.429-205.714-204l-128.571-184c-5.143 0.571-10.286 0.571-16 0.571-28.571 0-55.429-7.429-78.286-21.143l-169.714 68v267.429c0 90.857 73.714 164.571 164.571 164.571h548.571c90.857 0 164.571-73.714 164.571-164.571zM736.571 580c0-76-61.714-137.714-138.286-137.714-76 0-137.714 61.714-137.714 137.714 0 76.571 61.714 138.286 137.714 138.286 76.571 0 138.286-61.714 138.286-138.286z" />
52
+ <glyph unicode="&#xf1d6;" glyph-name="qq" d="M154.286 490.286c-4 9.714-4.571 19.429-4.571 29.714 0 16 10.286 41.714 20 53.714-0.571 14.857 5.714 45.143 17.143 54.857 0 105.714 81.714 238.857 177.143 284.571 58.857 28 120.571 37.714 185.143 37.714 50.286 0 105.143-12 152-31.429 134.286-56.571 164.571-161.714 193.143-296l0.571-2.857c16.571-25.143 31.429-54.857 31.429-85.714 0-15.429-10.286-30.857-10.286-44.571 0-1.143 3.429-5.714 4-6.857 49.143-72.571 93.714-151.429 93.714-241.714 0-20-10.857-89.714-42.857-89.714-22.286 0-46.857 54.286-54.857 69.143-0.571 0.571-1.143 0.571-1.714 0.571l-2.857-2.286c-18.286-47.429-38.286-92-75.429-127.429 32.571-31.429 85.143-28.571 94.857-82.857-2.857-6.286-1.714-13.143-6.286-19.429-32.571-49.143-120-55.429-172.571-55.429-69.714 0-126.286 18.286-192 37.714-13.714 4-34.286 1.714-49.143 3.429-34.857-38.286-120-48.571-169.143-48.571-43.429 0-211.429 2.857-211.429 77.143 0 32 6.857 41.143 29.143 61.714 17.714 3.429 30.857 13.143 51.429 14.286 2.857 0 5.143 0.571 8 1.143 0.571 0.571 1.143 0.571 1.143 2.286l-1.143 1.714c-39.429 9.143-94.857 108.571-103.429 149.714l-2.857 1.714c-4 0-5.714-8.571-6.857-11.429-12.571-29.143-42.286-60.571-75.429-64h-0.571c-4.571 0-2.857 4.571-6.286 5.714-8 18.857-13.143 36-13.143 57.143 0 114.286 54.857 198.857 144 266.286z" />
53
+ <glyph unicode="&#xf1d7;" glyph-name="wechat, weixin" horiz-adv-x="1170" d="M331.429 687.428c0 31.429-20.571 52-52 52-30.857 0-62.286-20.571-62.286-52 0-30.857 31.429-51.429 62.286-51.429 31.429 0 52 20.571 52 51.429zM756 397.714c0 20.571-20.571 41.143-52 41.143-20.571 0-41.143-20.571-41.143-41.143 0-21.143 20.571-41.714 41.143-41.714 31.429 0 52 20.571 52 41.714zM621.143 687.428c0 31.429-20.571 52-51.429 52-31.429 0-62.286-20.571-62.286-52 0-30.857 30.857-51.429 62.286-51.429 30.857 0 51.429 20.571 51.429 51.429zM984 397.714c0 20.571-21.143 41.143-52 41.143-20.571 0-41.143-20.571-41.143-41.143 0-21.143 20.571-41.714 41.143-41.714 30.857 0 52 20.571 52 41.714zM832 624.571c-13.143 1.714-26.286 2.286-40 2.286-196.571 0-352-146.857-352-327.429 0-30.286 4.571-59.429 13.143-86.857-13.143-1.143-25.714-1.714-38.857-1.714-52 0-93.143 10.286-145.143 20.571l-144.571-72.571 41.143 124.571c-103.429 72.571-165.714 166.286-165.714 280 0 197.143 186.286 352 414.286 352 203.429 0 382.286-124 417.714-290.857zM1170.286 304c0-93.143-61.714-176-145.143-238.286l31.429-103.429-113.714 62.286c-41.714-10.286-83.429-21.143-124.571-21.143-197.143 0-352 134.857-352 300.571s154.857 300.571 352 300.571c186.286 0 352-134.857 352-300.571z" />
54
+ <glyph unicode="&#xf1d8;" glyph-name="paper-plane, send" horiz-adv-x="1025" d="M1008 944.571c12-8.571 17.714-22.286 15.429-36.571l-146.286-877.714c-1.714-10.857-8.571-20-18.286-25.714-5.143-2.857-11.429-4.571-17.714-4.571-4.571 0-9.143 1.143-13.714 2.857l-258.857 105.714-138.286-168.571c-6.857-8.571-17.143-13.143-28-13.143-4 0-8.571 0.571-12.571 2.286-14.286 5.143-24 18.857-24 34.286v199.429l493.714 605.143-610.857-528.571-225.714 92.571c-13.143 5.143-21.714 17.143-22.857 31.429-0.571 13.714 6.286 26.857 18.286 33.714l950.857 548.571c5.714 3.429 12 5.143 18.286 5.143 7.429 0 14.857-2.286 20.571-6.286z" />
55
+ <glyph unicode="&#xf1d9;" glyph-name="paper-plane-o, send-o" horiz-adv-x="1025" d="M1008 944.571c12-8.571 17.714-22.286 15.429-36.571l-146.286-877.714c-1.714-10.857-8.571-20-18.286-25.714-5.143-2.857-11.429-4.571-17.714-4.571-4.571 0-9.143 1.143-13.714 2.857l-301.143 122.857-170.286-186.857c-6.857-8-16.571-12-26.857-12-4.571 0-9.143 0.571-13.143 2.286-14.286 5.714-23.429 19.429-23.429 34.286v258.286l-269.714 110.286c-13.143 5.143-21.714 17.143-22.857 31.429-1.143 13.714 6.286 26.857 18.286 33.714l950.857 548.571c12 7.429 27.429 6.857 38.857-1.143zM812.571 88l126.286 756-819.429-472.571 192-78.286 493.143 365.143-273.143-455.429z" />
56
+ <glyph unicode="&#xf1e8;" glyph-name="twitch" d="M512 702.857v-248h-82.857v248h82.857zM739.429 702.857v-248h-82.857v248h82.857zM739.429 268.571l144.571 145.143v454.286h-682.286v-599.429h186.286v-124l124 124h227.429zM966.857 950.857v-578.857l-248-248h-186.286l-124-124h-124v124h-227.429v661.714l62.286 165.143h847.429z" />
57
+ <glyph unicode="&#xf1ed;" glyph-name="paypal" horiz-adv-x="878" d="M868 581.714v0c7.429-34.286 5.714-73.714-2.286-116.571-37.143-188.571-162.286-253.714-322.857-253.714h-25.143c-19.429 0-35.429-14.286-38.857-33.714l-2.286-10.857-31.429-197.714-1.143-8.571c-4-19.429-20-33.714-39.429-33.714h-143.429c-16 0-26.286 13.143-24 29.143 10.286 64 20 128 30.286 192s20.571 127.429 30.857 191.429c1.714 13.714 10.857 21.143 24.571 21.143 22.857 0 45.714 0.571 74.857 0 41.143-0.571 88.571 1.714 134.857 12 61.714 13.714 117.714 38.857 164 82.286 41.714 38.857 69.714 86.857 88.571 140.571 8.571 25.143 15.429 50.286 20 76 1.143 6.857 2.857 5.714 6.857 2.857 31.429-23.429 49.143-54.857 56-92.571zM769.714 742.857c0-46.857-10.857-91.429-26.286-134.857-29.714-86.286-85.714-148-172.571-180-46.286-16.571-94.857-23.429-144-24-34.286-0.571-68.571 0-102.857 0-37.143 0-60.571-18.286-67.429-54.857-8-43.429-39.429-245.714-48.571-302.857-0.571-4-2.286-5.714-6.857-5.714h-168.571c-17.143 0-29.714 14.857-27.429 31.429l132.571 840.571c3.429 21.714 22.857 38.286 45.143 38.286h341.714c24.571 0 81.143-10.857 119.429-25.714 81.143-31.429 125.714-95.429 125.714-182.286z" />
58
+ <glyph unicode="&#xf1f0;" glyph-name="cc-visa" horiz-adv-x="1317" d="M1128.571 385.143h-78.857c0 0 8 21.143 37.714 102.286-0.571-0.571 8 21.143 12.571 34.857l6.857-31.429c17.714-87.429 21.714-105.714 21.714-105.714zM303.429 422.286l-33.143 168.571c-4.571 23.429-22.286 30.857-42.857 30.857h-153.143l-1.143-7.429c105.143-26.857 191.429-84 230.286-192zM405.714 621.714l-92.571-250.286-9.714 50.857c-20 53.143-68.571 102.286-123.429 124.571l77.143-291.429h100l149.143 366.286h-100.571zM485.143 254.857h94.857l59.429 366.857h-94.857zM924 612.571c-18.857 7.429-48.571 15.429-85.143 15.429-93.714 0-159.429-49.714-160-121.143-0.571-52.571 46.857-81.714 82.857-99.429 37.143-17.714 49.143-29.714 49.143-45.714 0-24.571-29.714-35.429-56.571-35.429-38.286 0-58.857 4.571-89.143 18.857l-12.571 6.286-13.143-82.286c22.286-10.286 62.857-19.429 105.714-19.429 99.429-0.571 164 49.143 165.143 125.143 0 41.714-25.714 73.143-80 99.429-33.143 16.571-53.143 28.571-53.143 45.714 0 15.429 17.143 31.429 54.286 31.429 30.857 0.571 53.714-5.714 70.857-13.714l8.571-4.571zM1166.857 621.714h-73.143c-22.857 0-40-6.857-49.714-30.857l-140.571-336h99.429c16 45.143 20 54.857 20 54.857h121.143c0 0 2.857-12.571 11.429-54.857h88zM1316.571 804.571v-731.429c0-40-33.143-73.143-73.143-73.143h-1170.286c-40 0-73.143 33.143-73.143 73.143v731.429c0 40 33.143 73.143 73.143 73.143h1170.286c40 0 73.143-33.143 73.143-73.143z" />
59
+ <glyph unicode="&#xf1f1;" glyph-name="cc-mastercard" horiz-adv-x="1317" d="M639.429 756c-47.429 31.429-103.429 48.571-160.571 48.571-160.571 0-290.857-130.286-290.857-290.286 0-160.571 130.286-290.857 290.857-290.857 57.143 0 113.143 17.143 160.571 48.571-153.143 124.571-152 359.429 0 484zM658.286 742.286c-147.429-116-148-341.143 0-456.571 148 115.429 147.429 340.571 0 456.571zM677.143 756c151.429-124.571 153.714-360 0-484 47.429-31.429 104-48.571 160.571-48.571 160.571 0 290.857 130.286 290.857 290.857 0 160-130.286 290.286-290.857 290.286-57.143 0-113.143-17.143-160.571-48.571zM1100.571 343.428h4v1.714h-9.714v-1.714h4v-9.714h1.714v9.714zM1117.143 333.714h2.286v11.429h-2.857l-3.429-7.429-3.429 7.429h-2.857v-11.429h1.714v8.571l3.429-7.429h2.286l2.857 7.429v-8.571zM1112.571 82.286v-1.143h-2.857v1.714h2.857v-0.571zM1112.571 77.143h1.714l-2.286 2.857c1.143 0 1.143 0.571 1.714 0.571 0.571 0.571 0.571 1.143 0.571 1.714s0 1.143-0.571 1.714c-0.571 0-1.143 0.571-2.286 0.571h-3.429v-7.429h1.714v2.857h0.571zM391.429 116c0 13.714 8.571 24.571 23.429 24.571 13.714 0 22.857-10.857 22.857-24.571 0-14.286-9.143-24.571-22.857-24.571-14.857 0-23.429 10.857-23.429 24.571zM661.714 141.143c10.857 0 18.286-6.286 20-18.286h-40c1.714 10.857 8.571 18.286 20 18.286zM865.143 116c0 13.714 8.571 24.571 22.857 24.571s23.429-10.857 23.429-24.571c0-14.286-9.143-24.571-23.429-24.571s-22.857 10.857-22.857 24.571zM1020.571 116c0 13.714 9.143 24.571 23.429 24.571 13.714 0 23.429-10.857 23.429-24.571 0-14.286-9.714-24.571-23.429-24.571-14.286 0-23.429 10.857-23.429 24.571zM1110.857 74.857c-0.571 0-1.143 0-2.286 0.571-0.571 0-1.143 0.571-1.714 1.143s-1.143 1.143-1.143 1.714-0.571 1.714-0.571 2.286 0 1.714 0.571 2.286c0 1.143 0.571 1.714 1.143 2.286s1.143 0.571 1.714 1.143 1.714 0.571 2.286 0.571 1.714 0 2.286-0.571 1.714-0.571 2.286-1.143 0.571-1.143 1.143-2.286c0-0.571 0.571-1.143 0.571-2.286 0-0.571-0.571-1.143-0.571-2.286-0.571-0.571-0.571-1.143-1.143-1.714s-1.143-1.143-2.286-1.143c-0.571-0.571-1.143-0.571-2.286-0.571zM342.286 77.143h17.143v48.571c0 18.286-12 30.286-30.857 30.857-9.714 0-20-2.857-26.857-13.714-5.143 8.571-13.714 13.714-25.714 13.714-8 0-16-2.857-22.286-11.429v9.143h-17.143v-77.143h17.143v42.857c0 13.714 7.429 20.571 18.857 20.571s17.143-7.429 17.143-20.571v-42.857h16.571v42.857c0 13.714 8 20.571 18.857 20.571 11.429 0 17.143-7.429 17.143-20.571v-42.857zM437.143 77.143h16.571v77.143h-16.571v-9.143c-5.714 6.857-13.714 11.429-24.571 11.429-21.714 0-38.286-17.143-38.286-40.571s16.571-40.571 38.286-40.571c10.857 0 18.857 4 24.571 11.429v-9.714zM538.857 100.571c0 13.714-10.286 20.571-26.857 22.857l-8 1.143c-7.429 1.143-13.143 2.857-13.143 8s5.143 8.571 14.286 8.571c10.286 0 19.429-3.429 24.571-6.286l6.857 13.714c-8 5.143-18.857 8-31.429 8-19.429 0-32-9.714-32-25.143 0-12.571 9.143-20 26.857-22.286l7.429-1.143c9.714-1.714 13.714-4 13.714-8 0-6.286-6.286-9.714-17.714-9.714s-20 4-25.714 8l-7.429-13.143c9.143-6.286 20.571-9.714 33.143-9.714 22.286 0 35.429 10.286 35.429 25.143zM613.143 81.143l-4.571 14.286c-5.143-2.857-10.286-4-14.857-4-8.571 0-10.857 5.143-10.857 12.571v34.857h27.429v15.429h-27.429v23.429h-17.143v-23.429h-16v-15.429h16v-34.857c0-17.714 6.857-28.571 26.857-28.571 6.857 0 15.429 2.286 20.571 5.714zM662.286 156.571c-22.286 0-38.286-16.571-38.286-40.571 0-24.571 16.571-40.571 39.429-40.571 11.429 0 22.286 2.857 31.429 10.857l-8 12.571c-6.286-5.143-14.857-8.571-22.286-8.571-10.857 0-20.571 5.143-23.429 18.857h57.714v6.857c0 24-14.857 40.571-36.571 40.571zM753.143 156.571c-9.714 0-16-4.571-20-11.429v9.143h-17.143v-77.143h17.143v43.429c0 12.571 5.143 20 16.571 20 3.429 0 6.857-0.571 10.286-2.286l5.143 16c-4 1.714-8.571 2.286-12 2.286zM770.286 116c0-23.429 16-40.571 41.143-40.571 11.429 0 19.429 2.286 27.429 9.143l-8 13.714c-6.286-4.571-12.571-7.429-20-6.857-13.714 0-23.429 9.714-23.429 24.571s9.714 24.571 23.429 24.571c7.429 0 13.714-2.286 20-6.857l8 13.714c-8 6.286-16 9.143-27.429 9.143-25.143 0-41.143-17.143-41.143-40.571zM910.286 77.143h17.143v77.143h-17.143v-9.143c-5.143 6.857-13.143 11.429-24 11.429-21.714 0-38.857-17.143-38.857-40.571s17.143-40.571 38.857-40.571c10.857 0 18.857 4 24 11.429v-9.714zM986.286 156.571c-9.714 0-16-4.571-20-11.429v9.143h-16.571v-77.143h16.571v43.429c0 12.571 5.714 20 16.571 20 3.429 0 6.857-0.571 10.286-2.286l5.143 16c-3.429 1.714-8.571 2.286-12 2.286zM1066.286 77.143h16.571v108.571h-16.571v-40.571c-5.143 6.857-13.143 11.429-24.571 11.429-21.143 0-38.286-17.143-38.286-40.571s17.143-40.571 38.286-40.571c11.429 0 19.429 4 24.571 11.429v-9.714zM1110.857 88.571c-0.571 0-1.714-0.571-2.857-0.571-1.143-0.571-1.714-1.143-2.286-1.714-1.143-0.571-1.714-1.714-1.714-2.286-0.571-1.143-0.571-2.286-0.571-3.429 0-0.571 0-1.714 0.571-2.857 0-0.571 0.571-1.714 1.714-2.286 0.571-0.571 1.143-1.143 2.286-1.714s2.286-0.571 2.857-0.571c1.143 0 2.286 0 3.429 0.571 0.571 0.571 1.714 1.143 2.286 1.714s1.143 1.714 1.714 2.286c0.571 1.143 0.571 2.286 0.571 2.857 0 1.143 0 2.286-0.571 3.429-0.571 0.571-1.143 1.714-1.714 2.286s-1.714 1.143-2.286 1.714c-1.143 0-2.286 0.571-3.429 0.571zM1316.571 804.571v-731.429c0-40-33.143-73.143-73.143-73.143h-1170.286c-40 0-73.143 33.143-73.143 73.143v731.429c0 40 33.143 73.143 73.143 73.143h1170.286c40 0 73.143-33.143 73.143-73.143z" />
60
+ <glyph unicode="&#xf1f2;" glyph-name="cc-discover" horiz-adv-x="1317" d="M178.857 506.857c0-18.286-7.429-36-20.571-48-11.429-10.286-26.857-14.857-50.857-14.857h-9.714v125.714h9.714c24 0 38.857-4 50.857-15.429 13.143-11.429 20.571-29.143 20.571-47.429zM1193.714 544c0-19.429-12.571-29.714-36.571-29.714h-10.857v57.714h11.429c23.429 0 36-9.714 36-28zM217.143 506.857c0 56-41.714 95.429-102.286 95.429h-54.286v-190.286h54.286c28.571 0 49.714 6.286 68 21.714 21.714 18.286 34.286 45.143 34.286 73.143zM234.286 412h37.143v190.286h-37.143v-190.286zM417.143 469.714c0 30.286-12.571 44-54.857 59.429-22.286 8-28.571 13.714-28.571 24 0 12 11.429 21.143 27.429 21.143 11.429 0 20.571-4.571 30.286-15.429l19.429 25.143c-16 14.286-35.429 21.143-56 21.143-33.714 0-59.429-23.429-59.429-54.286 0-26.286 12-40 46.857-52.571 14.286-5.143 21.714-8 25.714-10.857 7.429-4.571 10.857-11.429 10.857-19.429 0-15.429-12-26.857-28.571-26.857-17.714 0-32 8.571-40.571 25.143l-24-22.857c17.143-25.143 37.714-36.571 65.714-36.571 38.857 0 65.714 25.714 65.714 62.857zM576 418.286v44c-14.857-14.857-28-21.143-44.571-21.143-37.714 0-64 27.429-64 65.714 0 36.571 27.429 65.714 62.286 65.714 17.714 0 30.857-6.286 46.286-21.714v44c-16 8-29.714 11.429-45.714 11.429-56 0-101.143-44-101.143-99.429 0-56 44-99.429 100.571-99.429 16 0 29.714 2.857 46.286 10.857zM1280 73.143v301.143c-91.429-57.143-413.143-240-933.143-337.714h896.571c20 0 36.571 16.571 36.571 36.571zM793.714 505.714c0 57.143-46.286 103.429-103.429 103.429s-103.429-46.286-103.429-103.429 46.286-103.429 103.429-103.429 103.429 46.286 103.429 103.429zM880.571 406.857l82.286 195.429h-40.571l-51.429-128-50.857 128h-40.571l81.143-195.429h20zM979.429 412h105.143v32h-68v51.429h65.714v32h-65.714v42.286h68v32.571h-105.143v-190.286zM1202.857 412h45.714l-60 80c28 5.714 43.429 24.571 43.429 53.714 0 36-24.571 56.571-67.429 56.571h-55.429v-190.286h37.143v76h5.143zM1316.571 801.143v-724.571c0-42.286-33.714-76.571-75.429-76.571h-1165.714c-41.714 0-75.429 34.286-75.429 76.571v724.571c0 42.286 33.714 76.571 75.429 76.571h1165.714c41.714 0 75.429-34.286 75.429-76.571z" />
61
+ <glyph unicode="&#xf1f3;" glyph-name="cc-amex" horiz-adv-x="1317" d="M68 561.143h50.857l-25.714 61.714zM422.857 260.571l42.286 45.143-40 45.143h-93.143v-28h81.143v-31.429h-81.143v-30.857h90.857zM513.143 305.143l56.571-62.857v124zM677.714 332c0 13.714-10.286 18.857-22.857 18.857h-48v-39.429h47.429c13.143 0 23.429 6.286 23.429 20.571zM842.857 334.286c0 14.286-12.571 16.571-24 16.571h-46.857v-34.857h46.286c12.571 0 24.571 2.857 24.571 18.286zM684 600.571c0 14.286-12.571 16.571-24 16.571h-46.857v-34.286h46.286c12.571 0 24.571 2.857 24.571 17.714zM946.286 561.143h50.857l-25.143 61.714zM399.429 649.714v-154.857h-37.714v121.143l-53.714-121.143h-32.571l-53.714 121.143v-121.143h-75.429l-14.286 34.286h-77.143l-14.286-34.286h-40l66.286 154.857h54.857l62.857-146.857v146.857h60.571l48.571-105.143 44 105.143h61.714zM717.143 332c0-62.286-68-52-110.286-52v-52h-72l-45.714 51.429-47.429-51.429h-146.286v154.857h148.571l45.714-50.857 46.857 50.857h118.286c34.857 0 62.286-12 62.286-50.857zM550.857 526.857v-32h-124v154.857h124v-32.571h-86.857v-28h84.571v-31.429h-84.571v-30.857h86.857zM1316.571 207.428v-130.857c0-41.714-33.714-76.571-75.429-76.571h-1165.714c-41.714 0-75.429 34.857-75.429 76.571v387.429h63.429l14.286 34.857h31.429l14.286-34.857h124.571v26.286l10.857-26.286h64.571l11.429 26.857v-26.857h309.143v56.571l5.714 0.571c5.143 0 5.714-4 5.714-8v-49.143h159.429v13.143c37.143-19.429 88-13.143 126.857-13.143l14.286 34.857h32l14.286-34.857h129.714v33.143l19.429-33.143h104v216h-102.857v-25.143l-14.286 25.143h-105.714v-25.143l-13.143 25.143h-142.286c-21.143 0-43.429-2.286-62.286-12.571v12.571h-98.286v-12.571c-11.429 10.286-26.857 12.571-41.714 12.571h-358.857l-24.571-55.429-24.571 55.429h-113.143v-25.143l-12.571 25.143h-96.571l-44.571-102.286v223.429c0 41.714 33.714 76.571 75.429 76.571h1165.714c41.714 0 75.429-34.857 75.429-76.571v-387.429h-68.571c-16 0-33.143-2.857-46.286-12.571v12.571h-101.143c-14.286 0-33.714-2.286-44.571-12.571v12.571h-180.571v-12.571c-13.714 9.714-33.714 12.571-49.714 12.571h-119.429v-12.571c-12 11.429-36.571 12.571-52 12.571h-133.714l-30.857-33.143-28.571 33.143h-199.429v-216h196l31.429 33.714 29.714-33.714h120.571v50.857h12c17.143 0 34.857 0.571 51.429 7.429v-58.286h99.429v56.571h4.571c5.714 0 6.857-0.571 6.857-6.857v-49.714h302.286c16.571 0 37.143 3.429 50.286 13.714v-13.714h96c18.286 0 37.714 1.714 54.286 9.714zM883.429 341.143c0-17.143-9.143-34.286-26.286-41.143 20.571-7.429 24.571-21.143 24.571-41.143v-30.857h-37.143v25.714c0 26.286-8.571 30.857-33.143 30.857h-39.429v-56.571h-37.143v154.857h88c29.143 0 60.571-5.143 60.571-41.714zM725.143 608c0-17.714-9.714-34.857-26.286-41.714 21.143-7.429 24.571-20.571 24.571-41.143v-30.286h-37.143c-0.571 33.143 8 56-33.143 56h-40v-56h-36.571v154.857l87.429-0.571c29.714 0 61.143-4.571 61.143-41.143zM1027.429 260v-32h-123.429v154.857h123.429v-32h-86.286v-28h84.571v-31.429h-84.571v-30.857zM784 649.714v-154.857h-37.714v154.857h37.714zM1180 277.143c0-36.571-25.143-49.143-58.286-49.143h-72v33.143h72c9.143 0 19.429 2.286 19.429 14.286 0 33.143-95.429-12.571-95.429 61.143 0 31.429 24 46.286 52.571 46.286h74.286v-32.571h-68c-9.714 0-20.571-1.714-20.571-14.286 0-33.714 96 15.429 96-58.857zM1316.571 305.714v-57.714c-10.857-16-32-20-50.286-20h-71.429v33.143h71.429c9.143 0 18.857 2.857 18.857 14.286 0 32.571-95.429-12.571-95.429 61.143 0 31.429 24.571 46.286 53.143 46.286h73.714v-32.571h-67.429c-10.286 0-20.571-1.714-20.571-14.286 0-27.429 64.571 0.571 88-30.286zM1222.286 649.143v-154.286h-52.571l-69.714 116v-116h-75.429l-14.857 34.286h-76.571l-14.286-34.286h-42.857c-50.857 0-73.714 26.286-73.714 76 0 52 23.429 78.857 76 78.857h36v-33.714c-38.857 0.571-74.286 9.143-74.286-44 0-26.286 6.286-44.571 36-44.571h16.571l52.571 121.714h55.429l62.286-146.286v146.286h56.571l65.143-107.429v107.429h37.714z" />
62
+ <glyph unicode="&#xf1f4;" glyph-name="cc-paypal" horiz-adv-x="1317" d="M425.714 433.143c0-28-22.286-49.143-50.286-49.143-21.143 0-36.571 12-36.571 34.286 0 28 21.714 50.286 49.714 50.286 21.143 0 37.143-13.143 37.143-35.429zM874.286 518.286c0-34.286-20.571-41.143-50.286-41.143l-18.286-0.571 9.714 61.143c0.571 4 3.429 6.286 7.429 6.286h10.286c19.429 0 41.143-1.143 41.143-25.714zM1074.857 433.143c0-28-22.286-49.143-49.714-49.143-21.143 0-37.143 12-37.143 34.286 0 28 21.714 50.286 49.714 50.286 21.143 0 37.143-13.143 37.143-35.429zM293.143 530.857c0 48-37.143 64-79.429 64h-91.429c-5.714 0-11.429-4.571-12-10.857l-37.143-233.143c-0.571-4.571 2.857-9.143 7.429-9.143h43.429c6.286 0 12 4.571 12.571 10.857l10.286 62.857c2.286 16.571 30.286 10.857 41.143 10.857 65.143 0 105.143 38.857 105.143 104.571zM469.714 352.571l23.429 149.143c0.571 4.571-2.857 9.143-7.429 9.143h-43.429c-8.571 0-9.143-12.571-9.714-18.857-13.143 19.429-32.571 22.857-54.286 22.857-56 0-98.857-49.143-98.857-103.429 0-44.571 28-73.714 72.571-73.714 20.571 0 46.286 9.143 60.571 25.143-1.143-3.429-2.286-8.571-2.286-12 0-5.143 2.286-9.143 7.429-9.143h39.429c6.286 0 11.429 4.571 12.571 10.857zM725.143 502.857c0 4-3.429 8-7.429 8h-44c-4 0-8-2.286-10.286-5.714l-60.571-89.143-25.143 85.714c-1.714 5.143-6.857 9.143-12.571 9.143h-42.857c-4 0-7.429-4-7.429-8 0-2.857 44.571-132 48.571-144-6.286-8.571-46.857-61.714-46.857-68.571 0-4 3.429-7.429 7.429-7.429h44c4 0 8 2.286 10.286 5.714l145.714 210.286c1.143 1.143 1.143 2.286 1.143 4zM942.286 530.857c0 48-37.143 64-79.429 64h-90.857c-6.286 0-12-4.571-12.571-10.857l-37.143-233.143c-0.571-4.571 2.857-9.143 7.429-9.143h46.857c4.571 0 8 3.429 9.143 7.429l10.286 66.286c2.286 16.571 30.286 10.857 41.143 10.857 65.143 0 105.143 38.857 105.143 104.571zM1118.857 352.571l23.429 149.143c0.571 4.571-2.857 9.143-7.429 9.143h-43.429c-8.571 0-9.143-12.571-9.714-18.857-12.571 19.429-32 22.857-54.286 22.857-56 0-98.857-49.143-98.857-103.429 0-44.571 28-73.714 72.571-73.714 21.143 0 46.857 9.143 60.571 25.143-0.571-3.429-2.286-8.571-2.286-12 0-5.143 2.286-9.143 7.429-9.143h39.429c6.286 0 11.429 4.571 12.571 10.857zM1243.429 586.286v0.571c0 4.571-3.429 8-7.429 8h-42.286c-3.429 0-6.857-2.857-7.429-6.286l-37.143-237.714-0.571-1.143c0-4 3.429-8 8-8h37.714c5.714 0 11.429 4.571 12 10.857zM224 509.714c-4.571-29.143-24-32.571-49.143-32.571l-18.857-0.571 9.714 61.143c0.571 4 4 6.286 7.429 6.286h10.857c25.714 0 45.143-3.429 40-34.286zM1316.571 804.571v-731.429c0-40-33.143-73.143-73.143-73.143h-1170.286c-40 0-73.143 33.143-73.143 73.143v731.429c0 40 33.143 73.143 73.143 73.143h1170.286c40 0 73.143-33.143 73.143-73.143z" />
63
+ <glyph unicode="&#xf1f5;" glyph-name="cc-stripe" horiz-adv-x="1317" d="M912.571 434.857c0-26.286-4-46.286-12-60.571-6.857-12.571-17.714-20-29.714-20-8.571 0-16.571 1.714-23.429 5.143v128c14.857 15.429 28 17.143 32.571 17.143 21.714 0 32.571-24 32.571-69.714zM1162.857 455.428h-62.857c2.286 38.286 12.571 56 32 56s29.714-18.286 30.857-56zM272 378.286c0 48-29.143 68-76.571 85.143v0c-25.143 9.143-38.857 16.571-38.857 28 0 9.714 8 14.857 21.714 14.857 26.286 0 52.571-9.714 70.857-18.857l10.286 64c-14.286 6.857-44 18.286-85.143 18.286-29.143 0-53.143-7.429-70.286-21.714-18.286-14.857-27.429-36.571-27.429-62.286 0-46.857 28.571-67.429 75.429-84 29.714-10.857 40-18.286 40-30.286 0-11.429-9.714-17.714-27.429-17.714-21.714 0-57.714 10.857-81.143 24.571l-10.286-64.571c20-11.429 57.143-23.429 96-23.429 30.857 0 56 7.429 73.714 21.143 19.429 15.429 29.143 37.714 29.143 66.857zM440.571 501.143l10.857 63.429h-54.857v77.143l-73.714-12-10.286-65.143-26.286-4.571-9.714-58.857h35.429v-125.143c0-32.571 8.571-54.857 25.143-68.571 14.286-11.429 34.857-17.143 63.429-17.143 22.286 0 35.429 4 45.143 6.286v67.429c-5.143-1.143-17.143-4-25.143-4-16.571 0-24 9.143-24 28.571v112.571h44zM621.143 486.857v79.429c-5.714 1.143-10.857 1.714-16 1.714-24 0-43.429-12.571-50.857-35.429l-5.714 32h-74.857v-269.143h85.714v174.857c10.857 13.143 26.286 17.714 46.857 17.714 4.571 0 9.143 0 14.857-1.143zM642.286 295.428h85.714v269.143h-85.714v-269.143zM997.714 437.714c0 45.714-8.571 80.571-25.714 102.286-15.429 20-36.571 29.714-63.429 29.714-24.571 0-46.286-10.286-66.857-32l-4.571 26.857h-75.429v-368.571l85.714 14.286v86.286c13.143-4 26.857-6.286 38.857-6.286 21.143 0 52.571 5.714 76.571 32 23.429 25.143 34.857 64 34.857 115.429zM730.286 636.571c0 25.143-20 45.143-45.143 45.143s-45.143-20-45.143-45.143 20-45.714 45.143-45.714 45.143 20.571 45.143 45.714zM1243.429 432.571c0 42.857-9.143 76.571-27.429 100.571-18.857 24-46.857 36.571-82.286 36.571-73.143 0-118.286-53.714-118.286-140.571 0-48 12-84.571 36-107.429 21.143-21.143 52-31.429 92-31.429 36.571 0 70.286 8.571 91.429 22.857l-9.143 58.857c-21.143-11.429-45.714-17.714-73.143-17.714-16.571 0-28 3.429-36 10.857-9.143 7.429-14.286 20-16 37.714h141.714c0.571 4 1.143 23.429 1.143 29.714zM1316.571 804.571v-731.429c0-40-33.143-73.143-73.143-73.143h-1170.286c-40 0-73.143 33.143-73.143 73.143v731.429c0 40 33.143 73.143 73.143 73.143h1170.286c40 0 73.143-33.143 73.143-73.143z" />
64
+ <glyph unicode="&#xf230;" glyph-name="facebook-official" horiz-adv-x="878" d="M829.143 877.714c26.857 0 48.571-21.714 48.571-48.571v-780.571c0-26.857-21.714-48.571-48.571-48.571h-223.429v340h113.714l17.143 132.571h-130.857v84.571c0 38.286 10.286 64 65.714 64l69.714 0.571v118.286c-12 1.714-53.714 5.143-101.714 5.143-101.143 0-170.857-61.714-170.857-174.857v-97.714h-114.286v-132.571h114.286v-340h-420c-26.857 0-48.571 21.714-48.571 48.571v780.571c0 26.857 21.714 48.571 48.571 48.571h780.571z" />
65
+ <glyph unicode="&#xf231;" glyph-name="pinterest-p" horiz-adv-x="731" d="M0 609.714c0 210.857 193.143 341.143 388.571 341.143 179.429 0 342.857-123.429 342.857-312.571 0-177.714-90.857-374.857-293.143-374.857-48 0-108.571 24-132 68.571-43.429-172-40-197.714-136-329.143l-8-2.857-5.143 5.714c-3.429 36-8.571 71.429-8.571 107.429 0 116.571 53.714 285.143 80 398.286-14.286 29.143-18.286 64.571-18.286 96.571 0 57.714 40 130.857 105.143 130.857 48 0 73.714-36.571 73.714-81.714 0-74.286-50.286-144-50.286-216 0-49.143 40.571-83.429 88-83.429 131.429 0 172 189.714 172 290.857 0 135.429-96 209.143-225.714 209.143-150.857 0-267.429-108.571-267.429-261.714 0-73.714 45.143-111.429 45.143-129.143 0-14.857-10.857-67.429-29.714-67.429-2.857 0-6.857 1.143-9.714 1.714-81.714 24.571-111.429 133.714-111.429 208.571z" />
66
+ <glyph unicode="&#xf232;" glyph-name="whatsapp" horiz-adv-x="878" d="M562.857 394.286c9.714 0 102.857-48.571 106.857-55.429 1.143-2.857 1.143-6.286 1.143-8.571 0-14.286-4.571-30.286-9.714-43.429-13.143-32-66.286-52.571-98.857-52.571-27.429 0-84 24-108.571 35.429-81.714 37.143-132.571 100.571-181.714 173.143-21.714 32-41.143 71.429-40.571 110.857v4.571c1.143 37.714 14.857 64.571 42.286 90.286 8.571 8 17.714 12.571 29.714 12.571 6.857 0 13.714-1.714 21.143-1.714 15.429 0 18.286-4.571 24-19.429 4-9.714 33.143-87.429 33.143-93.143 0-21.714-39.429-46.286-39.429-59.429 0-2.857 1.143-5.714 2.857-8.571 12.571-26.857 36.571-57.714 58.286-78.286 26.286-25.143 54.286-41.714 86.286-57.714 4-2.286 8-4 12.571-4 17.143 0 45.714 55.429 60.571 55.429zM446.857 91.428c197.714 0 358.857 161.143 358.857 358.857s-161.143 358.857-358.857 358.857-358.857-161.143-358.857-358.857c0-75.429 24-149.143 68.571-210.286l-45.143-133.143 138.286 44c58.286-38.286 127.429-59.429 197.143-59.429zM446.857 881.143c237.714 0 430.857-193.143 430.857-430.857s-193.143-430.857-430.857-430.857c-72.571 0-144.571 18.286-208.571 53.714l-238.286-76.571 77.714 231.429c-40.571 66.857-61.714 144-61.714 222.286 0 237.714 193.143 430.857 430.857 430.857z" />
67
+ <glyph unicode="&#xf23a;" glyph-name="medium" d="M341.143 710.286v-670.286c0-17.714-8.571-34.286-28-34.286-6.857 0-13.143 1.714-18.857 4.571l-265.714 133.143c-16 8-28.571 28.571-28.571 45.714v651.429c0 14.286 6.857 27.429 22.286 27.429 9.143 0 17.143-4.571 25.143-8.571l292-146.286c0.571-0.571 1.714-2.286 1.714-2.857zM377.714 652.571l305.143-494.857-305.143 152v342.857zM1024 642.286v-602.286c0-18.857-10.857-32-29.714-32-9.714 0-18.857 2.857-26.857 7.429l-252 125.714zM1022.286 710.857c0-2.286-295.429-481.714-318.286-518.286l-222.857 362.286 185.143 301.143c6.286 10.286 17.714 16 29.714 16 5.143 0 10.286-1.143 14.857-3.429l309.143-154.286c1.143-0.571 2.286-1.714 2.286-3.429z" />
68
+ <glyph unicode="&#xf23b;" glyph-name="y-combinator, yc" horiz-adv-x="878" d="M462.286 377.143l152 285.143h-64l-89.714-178.286s-13.714-27.429-25.143-52.571c-10.857 26.286-24 52.571-24 52.571l-88.571 178.286h-68.571l150.286-281.714v-185.143h57.714v181.714zM877.714 877.714v-877.714h-877.714v877.714h877.714z" />
69
+ <glyph unicode="&#xf24b;" glyph-name="cc-jcb" horiz-adv-x="1317" d="M1114.857 380.571c0-20.571-13.714-35.429-30.857-38.857-2.286-0.571-7.429-1.143-10.286-1.143h-87.429v80h87.429c2.857 0 8-0.571 10.286-1.143 17.143-3.429 30.857-18.857 30.857-38.857zM1104.571 502.286c0-20-13.714-33.143-30.286-36-1.714-0.571-5.714-0.571-8.571-0.571h-79.429v73.714h79.429c2.857 0 6.857-0.571 8.571-0.571 16.571-2.857 30.286-16.571 30.286-36.571zM416 408.571v176h-130.286v-176c0-42.857-29.143-74.857-81.714-74.857-44.571 0-88.571 13.143-130.857 33.714v-64c68.571-18.857 155.429-18.857 155.429-18.857 145.143 0 187.429 55.429 187.429 124zM824 303.428v64.571c-29.714-15.429-67.429-30.286-114.286-33.714-82.286-6.286-131.429 33.714-131.429 104.571s49.143 110.857 131.429 104.571c46.857-3.429 84-17.714 114.286-33.143v64c-61.143 15.429-118.857 17.714-118.857 17.714-201.143 9.143-258.286-70.286-258.286-153.143s57.143-162.286 258.286-153.143c0 0 57.714 2.286 118.857 17.714zM1243.429 369.143c0 42.286-37.714 69.714-86.857 73.143v1.714c44.571 6.286 69.143 35.429 69.143 69.143 0 43.429-36 68.571-84.571 70.857-3.429 0-9.714 0.571-14.857 0.571h-260v-291.429h280.571c55.429 0 96.571 29.714 96.571 76zM1316.571 804.571v-731.429c0-40-33.143-73.143-73.143-73.143h-1170.286c-40 0-73.143 33.143-73.143 73.143v731.429c0 40 33.143 73.143 73.143 73.143h1170.286c40 0 73.143-33.143 73.143-73.143z" />
70
+ <glyph unicode="&#xf262;" glyph-name="tripadvisor" horiz-adv-x="1317" d="M372 381.143c0-29.714-24-53.714-53.143-53.714-29.714 0-53.714 24-53.714 53.714 0 29.143 24 53.143 53.714 53.143 29.143 0 53.143-24 53.143-53.143zM1031.429 381.714c0-29.714-24-53.714-53.714-53.714s-53.714 24-53.714 53.714 24 53.143 53.714 53.143 53.714-23.429 53.714-53.143zM437.143 381.143c0 60.571-49.714 110.286-110.286 110.286-61.143 0-110.286-49.714-110.286-110.286 0-61.143 49.143-110.286 110.286-110.286 60.571 0 110.286 49.143 110.286 110.286zM1096 381.714c0 60.571-49.143 110.286-110.286 110.286-60.571 0-110.286-49.714-110.286-110.286 0-61.143 49.714-110.286 110.286-110.286 61.143 0 110.286 49.143 110.286 110.286zM485.714 381.143c0-88-70.857-159.429-158.857-159.429s-159.429 71.429-159.429 159.429c0 87.429 71.429 158.857 159.429 158.857s158.857-71.429 158.857-158.857zM1145.143 381.714c0-88-71.429-158.857-159.429-158.857-87.429 0-158.857 70.857-158.857 158.857s71.429 158.857 158.857 158.857c88 0 159.429-70.857 159.429-158.857zM594.286 380c0 145.714-118.286 264-264 264-145.143 0-263.429-118.286-263.429-264s118.286-264 263.429-264c145.714 0 264 118.286 264 264zM976 707.428c-94.286 41.143-200.571 63.429-317.714 63.429s-233.714-22.286-327.429-62.857c181.143-0.571 327.429-146.857 327.429-328 0 177.714 141.143 322.286 317.714 327.429zM1249.714 380c0 145.714-117.714 264-263.429 264s-264-118.286-264-264 118.286-264 264-264 263.429 118.286 263.429 264zM1097.714 703.428h218.857c-34.286-40-59.429-93.714-65.714-130.857 39.429-54.286 62.857-120.571 62.857-192.571 0-181.143-146.857-327.429-327.429-327.429-102.857 0-194.286 46.857-254.286 120.571 0 0-26.857-32-73.714-102.286-8 16.571-48.571 74.286-73.143 102.857-60-74.286-152-121.143-254.857-121.143-180.571 0-327.429 146.286-327.429 327.429 0 72 23.429 138.286 62.857 192.571-6.286 37.143-31.429 90.857-65.714 130.857h208.571c112 74.857 274.857 121.714 449.714 121.714s327.429-46.857 439.429-121.714z" />
71
+ <glyph unicode="&#xf267;" glyph-name="safari" d="M542.286 440.571c0-18.857-13.143-36.571-33.143-36.571-18.857 0-36.571 13.714-36.571 33.143 0 18.857 13.714 36.571 33.714 36.571 18.286 0 36-13.143 36-33.143zM550.857 407.428l200 332c-26.857-25.143-277.143-255.429-284-267.429l-199.429-331.429c26.286 24.571 277.143 256 283.429 266.857zM920.571 438.857c0-74.857-20.571-148.571-59.429-212-5.714 2.857-29.714 20-34.286 20-4 0-7.429-3.429-7.429-7.429 0-7.429 26.857-21.143 33.714-25.143-56.571-85.714-144-147.429-243.429-172l-9.143 38.286c-0.571 5.143-4 5.714-8.571 5.714-4 0-6.286-5.714-5.714-8.571l9.143-38.857c-27.429-5.714-55.429-8.571-83.429-8.571-74.857 0-148.571 21.143-212.571 60 3.429 5.714 25.143 37.143 25.143 41.714 0 4-3.429 7.429-7.429 7.429-8 0-25.143-34.286-30.286-41.143-86.286 57.143-148.571 145.714-172.571 246.857l39.429 8.571c4.571 1.143 5.714 4.571 5.714 8.571s-5.714 6.286-9.143 5.714l-38.857-8.571c-5.143 26.286-8 52.571-8 79.429 0 76.571 21.714 152 62.286 216.571 5.714-3.429 33.143-22.286 37.714-22.286 4 0 7.429 2.857 7.429 6.857 0 8-30.286 23.429-37.143 28 58.286 85.143 146.857 146.286 247.429 169.143l8.571-38.286c1.143-4.571 4.571-5.714 8.571-5.714s6.286 5.714 5.714 9.143l-8.571 37.714c25.143 4.571 50.857 7.429 76.571 7.429v0c76.571 0 151.429-21.714 216.571-62.286-4-5.714-22.286-32.571-22.286-37.143 0-4 2.857-7.429 6.857-7.429 8 0 23.429 29.714 27.429 36.571 84.571-57.143 145.143-144.571 168.571-244l-32-6.857c-5.143-1.143-5.714-4.571-5.714-9.143 0-4 5.714-6.286 8.571-5.714l32.571 7.429c5.143-26.286 8-53.143 8-80zM969.143 438.857c0 252.571-204.571 457.143-457.143 457.143s-457.143-204.571-457.143-457.143 204.571-457.143 457.143-457.143 457.143 204.571 457.143 457.143zM1024 438.857c0-282.857-229.143-512-512-512s-512 229.143-512 512 229.143 512 512 512 512-229.143 512-512z" />
72
+ <glyph unicode="&#xf268;" glyph-name="chrome" horiz-adv-x="1079" d="M510.286 950.857c87.429 0.571 176.571-21.714 257.714-68.571 89.714-52 157.714-126.857 201.143-212.571l-424 22.286c-120 6.857-234.286-60.571-273.714-173.714l-157.714 242.286c98.286 122.286 245.714 189.714 396.571 190.286zM83.429 719.428l192.571-378.857c54.286-106.857 169.143-172 288-149.714l-131.429-257.714c-245.143 37.714-432.571 249.714-432.571 505.714 0 103.429 30.857 200 83.429 280.571zM989.714 622.857c89.714-230.857 0-499.429-221.714-627.429-89.714-52-188.571-73.143-284.571-68l231.429 356c65.714 101.143 64.571 233.143-13.714 324.571zM512 611.428c95.429 0 172.571-77.143 172.571-172.571s-77.143-172.571-172.571-172.571-172.571 77.143-172.571 172.571 77.143 172.571 172.571 172.571z" />
73
+ <glyph unicode="&#xf269;" glyph-name="firefox" horiz-adv-x="977" d="M516-73.143c-220.571 0-396 129.143-476.571 313.714-90.286 205.143-18.286 533.714 142.286 678.857l-6.286-160.571c8 10.286 69.143 13.143 78.857 0 33.143 63.429 140 110.857 225.714 112.571-32.571-27.429-108-127.429-101.714-178.286 41.714-13.143 105.714-13.714 139.429-16 10.286-5.714 8.571-40.571-12-69.143 0 0-26.857-37.143-99.429-50.286l8.571-108-79.429 38.286c-25.714-65.143 36-122.857 100-112 70.857 12 96 58.286 145.714 55.429 49.143-2.857 68.571-30.286 62.286-56 0 0-8-30.857-61.143-25.714-45.143-71.429-105.143-102.857-202.286-94.286 147.429-122.286 346.286-11.429 396.571 88.571 50.286 99.429 6.286 247.429-44 289.143 59.429-25.714 100.571-52 122.286-109.714 11.429 128-47.429 273.143-152.571 358.286 197.714-57.714 318.286-210.857 321.714-455.429s-216.571-499.429-508-499.429z" />
74
+ <glyph unicode="&#xf26a;" glyph-name="opera" d="M853.143 820.571c-60 40-130.286 62.857-205.143 62.857-121.714 0-229.143-62.286-304.571-156-54.857-68.571-93.143-165.714-96-276.571v-24c2.857-110.857 41.143-208 96-276.571 75.429-93.714 182.857-156 304.571-156 74.857 0 145.143 22.857 205.143 62.857-90.286-81.143-210.286-130.286-341.143-130.286-8 0-16.571 0-24.571 0.571-271.429 12.571-487.429 236.571-487.429 511.429 0 282.857 229.143 512 512 512h1.714c130.286-0.571 249.143-49.714 339.429-130.286zM1024 438.857c0-149.143-64-282.857-165.714-376.571-38.857-23.429-81.714-36-126.857-36-52.571 0-102.286 17.143-145.714 48 116 42.286 201.714 189.143 201.714 364.571 0 174.857-85.143 321.714-201.143 364.571 43.429 30.286 92.571 47.429 145.143 47.429 46.286 0 89.714-13.143 129.143-37.143 100.571-93.714 163.429-226.857 163.429-374.857z" />
75
+ <glyph unicode="&#xf26b;" glyph-name="internet-explorer" d="M1024 415.428c0-20-1.143-40-4-59.429h-657.714c0-113.714 100-196 209.714-196 74.286 0 145.714 36.571 184 101.143h241.714c-65.143-183.429-239.429-306.286-433.714-306.286-70.286 0-140.571 16.571-203.429 47.429-64-32.571-153.714-66.286-225.143-66.286-96 0-135.429 58.857-135.429 150.286 0 53.143 11.429 106.286 25.714 157.143 9.143 33.143 45.714 100.571 62.286 130.857 70.286 127.429 162.857 249.714 271.429 346.286-87.429-37.714-182.286-132.571-244-202.286 48 209.143 234.286 357.143 448.571 357.143 8.571 0 17.143 0 25.714-0.571 70.857 32.571 169.714 66.857 247.429 66.857 92.571 0 172-35.429 172-140 0-54.857-21.143-114.286-42.857-163.429 37.714-68 57.714-145.143 57.714-222.857zM984 781.143c0 64-45.714 103.429-108.571 103.429-48 0-102.286-19.429-145.143-40 92.571-36 172-102.286 224.571-186.857 14.286 37.714 29.143 83.429 29.143 123.429zM73.143 74.286c0-66.286 39.429-102.286 104.571-102.286 50.857 0 107.429 22.857 152 47.429-93.143 54.857-165.143 142.286-200.571 244.571-26.286-54.857-56-128-56-189.714zM361.143 481.714h416c-4 110.286-101.143 189.714-208 189.714-107.429 0-204-79.429-208-189.714z" />
76
+ <glyph unicode="&#xf26e;" glyph-name="500px" horiz-adv-x="815" d="M800.571 66.857l-3.429-3.429c-42.857-42.857-92.571-76.571-148-100-57.714-24-118.286-36.571-181.143-36.571s-124 12.571-181.143 36.571c-55.429 23.429-105.714 57.143-148 100-42.857 42.286-76.571 92-100 147.429-14.286 34.857-25.714 70.857-30.857 108v0c-2.286 16 20 19.429 27.429 20.571 17.714 2.857 29.714 1.714 32-11.429 0.571-0.571 0.571-1.143 0.571-2.286 2.286-11.429 8-45.714 26.286-90.857 18.857-46.857 48-90.286 86.857-129.143 37.143-37.143 80.571-66.286 129.143-86.857 49.714-21.143 102.857-32 157.714-32 54.286 0 107.429 10.857 157.714 32 48 20.571 91.429 49.714 128.571 86.857l3.429 3.429c4 4 8.571 5.143 14.286 3.429 5.143-1.143 11.429-5.714 18.857-12.571v0c18.286-18.857 14.286-28 9.714-33.143zM530.857 418.286l-37.714-37.714 36-36c4-4 11.429-12.571-4-28-6.286-6.286-12.571-9.714-18.286-9.714-4 0-7.429 1.714-10.857 5.714l-35.429 34.857-37.714-37.714c-1.143-1.143-4-2.857-8.571-2.857-5.143 0-11.429 2.857-17.714 9.143l-1.143 1.143c-4 3.429-10.286 9.714-10.286 16.571 0 3.429 1.714 6.286 4.571 9.714l37.714 37.143-37.714 37.714c-6.286 6.286-3.429 14.286 8 25.714 6.857 6.857 12.571 10.286 17.714 10.286 2.857 0 5.143-1.143 7.429-2.857l37.143-37.714 37.143 37.143c6.286 6.286 16.571 3.429 27.429-7.429 6.857-6.857 14.286-16.571 6.286-25.143zM800 385.714c0-45.143-9.143-89.143-26.286-130.286-17.143-40-41.143-75.429-72-106.286s-66.857-54.857-106.857-72c-41.143-17.714-85.143-26.286-130.286-26.286s-89.143 8.571-130.286 26.286c-40 17.143-76 41.143-106.857 72s-54.857 66.286-71.429 106.286c-3.429 7.429-8.571 21.714-8.571 22.857h-0.571c-5.143 16 17.714 22.857 24.571 25.143 16.571 5.143 29.143 7.429 34.286-6.857 13.714-36.571 34.857-72 55.429-95.429h0.571v194.857c1.143 48 21.143 96.571 58.286 132.571 38.286 37.714 89.714 58.857 144.571 58.857 112 0 202.857-90.286 202.857-201.143 0-112-91.429-202.857-202.857-202.857-22.286 0-38.857 1.714-64 9.143-2.857 1.143-16 6.857-7.429 34.857 2.286 7.429 9.143 29.143 25.143 24.571 1.143 0 29.143-6.857 44-6.857 79.429 0 141.714 61.714 141.714 140.571 0 37.143-14.857 72-41.143 97.714-26.286 26.286-61.714 40.571-100 40.571-39.429 0-75.429-16-101.714-45.714-22.857-25.714-36.571-60-36.571-91.429v-236c41.143-25.143 88.571-38.286 138.286-38.286 73.143 0 144 29.143 194.857 80 51.429 51.429 80 120.571 80 193.143 0 73.143-28.571 141.714-80.571 193.714-51.429 51.429-120 80-193.714 80s-142.857-28.571-194.286-80c-0.571-0.571-33.143-34.286-44-49.714l-1.143-1.143c-6.857-9.714-13.143-18.857-41.714-12.571-14.286 3.429-29.714 12-29.714 24.571v388.571c0 10.286 8 21.714 21.714 21.714h501.143c17.143 0 17.143-24 17.143-31.429 0-8 0-31.429-17.143-31.429h-463.429v-276h0.571c32 33.714 87.429 69.143 120 82.857 40.571 17.143 86.286 26.286 132 26.286 45.143 0 89.143-8.571 130.286-26.286 40-17.143 76-41.143 106.857-72s54.857-66.286 72-106.286c17.143-41.714 26.286-85.143 26.286-130.857zM782.286 717.714c10.857-9.714 3.429-20-7.429-32.571-6.857-6.857-14.286-14.857-22.286-14.857-3.429 0-6.286 1.143-9.143 4-41.143 35.429-78.286 59.429-118.286 76-49.714 21.714-102.857 32-157.714 32-48.571 0-101.714-9.714-149.714-28-14.857-5.714-22.857 13.714-25.714 21.143-3.429 9.143-5.143 16.571-4.571 21.714 1.143 5.714 4 9.714 9.143 11.429 46.857 20.571 110.857 32.571 170.857 32.571 62.286 0 123.429-12.571 180.571-36.571 52.571-22.286 95.429-49.714 134.286-86.857z" />
77
+ <glyph unicode="&#xf270;" glyph-name="amazon" horiz-adv-x="1020" d="M886.286 107.428c17.143 8.571 30.286-4.571 12.571-27.429s-160-153.143-398.857-153.143-421.714 163.429-477.714 230.857c-15.429 17.714 2.286 25.714 12.571 18.857 167.429-101.714 429.143-269.143 851.429-69.143zM1004.571 173.143c8.571-11.429 0-61.714-14.857-98.286-14.857-36-36.571-61.143-48.571-70.857-12.571-10.286-21.714-6.286-14.857 8.571s44 106.286 29.143 125.714c-14.857 18.857-84.571 9.714-109.714 7.429-24.571-2.286-29.714-4.571-32 0.571-5.143 13.143 49.714 35.429 85.714 40 36 4 93.714 1.714 105.143-13.143zM779.429 426.286c0-62.857 73.714-120.571 73.714-120.571l-129.714-128c-50.857 48-89.143 88-89.143 88-5.714 5.714-10.286 12.571-14.286 18.857-103.429-161.714-419.429-151.429-419.429 98.857 0 233.143 276 264.571 387.429 268.571v72.571c0 15.429 5.714 85.714-81.143 85.714 0 0-86.857 0-124-113.143l-168 15.429c0 112.571 106.857 238.286 308 238.286 200.571 0 256.571-130.286 256.571-188v-336.571zM395.429 414.286c0-116 192.571-143.429 192.571 39.429v92.571c-77.143-2.286-192.571-24-192.571-132z" />
78
+ <glyph unicode="&#xf27d;" glyph-name="vimeo" horiz-adv-x="1029" d="M976.571 654.857c-4-90.286-67.429-214.286-189.714-372-126.857-164-233.143-246.286-321.143-246.286-54.286 0-100 50.286-137.143 150.286-25.143 91.429-50.286 183.429-75.429 275.429-27.429 100-57.714 149.714-89.714 149.714-6.857 0-30.857-14.286-72.571-43.429l-44 56c45.714 40.571 90.857 81.714 136 121.143 60.571 53.714 106.857 80.571 137.714 83.429 72.571 6.857 116.571-42.286 133.714-148 17.714-114.286 30.857-185.714 37.714-213.143 21.143-94.857 43.429-142.286 68.571-142.286 19.429 0 48.571 30.286 88 92 38.857 61.714 59.429 108.571 62.286 140.571 5.143 53.143-15.429 79.429-62.286 79.429-22.286 0-45.143-5.143-69.143-14.857 45.714 149.714 133.143 222.286 262.286 218.286 95.429-2.857 140.571-65.143 134.857-186.286z" />
79
+ <glyph unicode="&#xf282;" glyph-name="edge" d="M39.429 496.571h0.571c29.714 236.571 191.429 454.857 480.571 454.286 175.429 0 320-82.286 404.571-233.714 43.429-78.286 59.429-161.714 59.429-252.571v-107.429h-642.857c2.857-265.143 389.714-256 556.571-139.429v-215.429c-97.714-58.857-318.286-109.714-490.286-44-145.714 56-247.429 207.429-249.143 354.857-2.286 190.286 94.286 316.571 249.143 388.571-32.571-41.143-57.714-85.714-70.857-162.857h362.857c21.143 216.571-205.143 216.571-205.143 216.571-213.714-7.429-368-132-455.429-258.857z" />
80
+ <glyph unicode="&#xf296;" glyph-name="gitlab" d="M59.429 547.428l452.571-580-496 360c-13.714 10.286-19.429 28-14.286 44l57.714 176zM323.429 547.428h377.143l-188.571-580zM210.286 897.143l113.143-349.714h-264l113.143 349.714c6.286 17.714 31.429 17.714 37.714 0zM964.571 547.428l57.714-176c5.143-16-0.571-33.714-14.286-44l-496-360 452.571 580zM964.571 547.428h-264l113.143 349.714c6.286 17.714 31.429 17.714 37.714 0z" />
81
+ <glyph unicode="&#xf2ab;" glyph-name="snapchat" horiz-adv-x="878" d="M730.857 294.857c0 8-4.571 13.714-12.571 15.429-52 11.429-91.429 47.429-113.143 95.429-1.714 4.571-4 9.143-4 14.286 0 25.714 71.429 20.571 71.429 57.143 0 15.429-18.857 25.143-32.571 25.143-13.143 0-23.429-9.143-36-9.143-2.286 0-4.571 0.571-6.857 1.143 1.143 21.714 2.857 43.429 2.857 65.143 0 20-1.143 47.429-9.714 65.143-27.429 59.429-80.571 94.286-145.714 94.286-71.429 0-125.714-26.286-157.143-94.286-8.571-17.714-9.714-45.143-9.714-65.143 0-21.714 1.714-43.429 2.857-65.143-2.286-1.143-5.143-1.143-8-1.143-13.143 0-23.429 8.571-35.429 8.571-14.286 0-32-9.143-32-25.143 0-35.429 71.429-30.857 71.429-56.571 0-5.143-2.286-9.714-4-14.286-22.286-48-60.571-84-113.143-95.429-8-1.714-12.571-7.429-12.571-15.429 0-26.286 60.571-36 78.286-38.857 5.143-13.714 2.857-37.714 23.429-37.714 14.286 0 28.571 5.143 44 5.143 60 0 76-54.286 145.714-54.286 72.571 0 86.286 54.286 146.857 54.286 15.429 0 29.714-4.571 44.571-4.571 20 0 17.714 24 22.857 37.143 17.714 2.857 78.286 12.571 78.286 38.857zM877.714 438.857c0-242.286-196.571-438.857-438.857-438.857s-438.857 196.571-438.857 438.857 196.571 438.857 438.857 438.857 438.857-196.571 438.857-438.857z" />
82
+ <glyph unicode="&#xf2ac;" glyph-name="snapchat-ghost" horiz-adv-x="951" d="M484.571 877.714c102.857 1.143 188-56.571 230.857-149.143 13.143-28 15.429-71.429 15.429-102.286 0-36.571-2.857-72.571-5.143-109.143 4.571-2.286 10.857-4 16-4 20.571 0 37.714 15.429 58.286 15.429 19.429 0 47.429-13.714 47.429-36.571 0-54.857-114.857-44.571-114.857-92.571 0-8.571 3.429-16.571 6.857-24.571 27.429-60 79.429-117.714 141.143-143.429 14.857-6.286 29.714-9.714 45.714-13.143 10.286-2.286 16-9.714 16-20 0-38.857-98.857-54.857-125.143-58.857-11.429-17.714-2.857-59.429-33.143-59.429-23.429 0-46.857 7.429-72 7.429-12 0-24-0.571-35.429-2.857-68-11.429-90.857-84.571-202.286-84.571-107.429 0-133.143 73.143-199.429 84.571-12 2.286-24 2.857-36 2.857-25.714 0-50.286-8.571-70.857-8.571-32 0-22.286 42.286-34.286 60.571-26.286 4-125.143 20-125.143 58.857 0 10.286 5.714 17.714 16 20 16 3.429 30.857 6.857 45.714 13.143 61.143 25.143 114.286 83.429 141.143 143.429 3.429 8 6.857 16 6.857 24.571 0 48-115.429 38.857-115.429 92 0 22.286 26.286 36.571 46.286 36.571 17.714 0 35.429-14.857 57.714-14.857 6.286 0 12.571 1.143 18.286 4-2.286 36-5.143 72-5.143 108.571 0 30.857 2.286 74.857 15.429 102.857 50.286 108.571 135.429 148 249.143 149.143z" />
83
+ <glyph unicode="&#xf2ad;" glyph-name="snapchat-square" horiz-adv-x="878" d="M731.429 294.857c0 8-4.571 13.714-12.571 15.429-52 10.857-91.429 47.429-113.143 95.429-2.286 4.571-4 9.143-4 14.286 0 25.714 70.857 20.571 70.857 57.143 0 15.429-18.857 25.143-32.571 25.143-12.571 0-22.857-9.143-36-9.143-2.286 0-4.571 0.571-6.857 1.143 1.714 21.714 2.857 44 2.857 65.714 0 19.429-1.143 46.857-9.714 65.143-27.429 59.429-80 94.286-145.714 94.286-71.429 0-125.714-26.857-157.143-94.286-8.571-18.286-10.286-45.714-10.286-65.714 0-21.714 1.714-43.429 3.429-65.143-2.857-0.571-5.714-1.143-8.571-1.143-12.571 0-23.429 9.143-35.429 9.143-14.286 0-31.429-9.714-31.429-25.714 0-35.429 70.857-30.857 70.857-56.571 0-5.143-1.714-9.714-4-14.286-22.286-48-60.571-84-113.143-95.429-8-1.714-12.571-7.429-12.571-15.429 0-26.857 60.571-36.571 78.857-39.429 5.143-13.714 2.857-37.714 22.857-37.714 14.857 0 29.143 5.714 44 5.714 60.571 0 76.571-54.286 146.286-54.286 72.571 0 86.286 54.286 147.429 54.286 14.857 0 29.714-5.143 44.571-5.143 19.429 0 17.714 24 22.286 37.143 18.286 2.857 78.857 12.571 78.857 39.429zM877.714 713.143v-548.571c0-90.857-73.714-164.571-164.571-164.571h-548.571c-90.857 0-164.571 73.714-164.571 164.571v548.571c0 90.857 73.714 164.571 164.571 164.571h548.571c90.857 0 164.571-73.714 164.571-164.571z" />
84
+ <glyph unicode="&#xf2b3;" glyph-name="google-plus-circle, google-plus-official" horiz-adv-x="878" d="M524 433.714c0 12.571-1.143 24.571-3.429 36.571h-206.857v-75.429h124c-9.143-60.571-66.286-94.286-124-94.286-76 0-136.571 62.857-136.571 138.286s60.571 138.286 136.571 138.286c32 0 64-10.857 87.429-33.714l59.429 57.714c-40.571 37.714-91.429 57.143-146.857 57.143-121.714 0-219.429-98.286-219.429-219.429s97.714-219.429 219.429-219.429c126.286 0 210.286 89.143 210.286 214.286zM721.143 407.428h62.286v62.857h-62.286v62.857h-62.857v-62.857h-62.857v-62.857h62.857v-62.857h62.857v62.857zM877.714 438.857c0-242.286-196.571-438.857-438.857-438.857s-438.857 196.571-438.857 438.857 196.571 438.857 438.857 438.857 438.857-196.571 438.857-438.857z" />
85
+ <glyph unicode="&#xf2b8;" glyph-name="linode" horiz-adv-x="878" d="M188.571 73.714l115.429-122.286-19.429 134.857-123.429 121.714zM317.714-55.429l156.571 124.571-6.286 140-171.429-122.857zM140 309.143l129.714-121.714-27.429 186.857-140 116.571zM282.857 181.143l181.143 122.286-8 185.143-201.143-114.286zM481.714 174.857l54.286-45.714-1.143 136.571-58.857 45.143c0-4.571 2.286-12.571-2.286-16l-44.571-29.714 48.571-40c5.714-4.571 4-43.429 4-50.286zM78.857 604.571l146.286-114.286-38.857 265.714-159.429 98.857zM670.286 225.714l8.571 133.714-131.429-93.714 1.143-137.143zM238.286 485.714l213.143 110.857-10.857 252-241.714-93.143zM725.714 277.143l11.429 133.143-129.143 81.143-1.143-60 82.286-54.286c1.714-1.143 2.857-3.429 2.286-5.143l-4-68zM834.857 356.571l17.143 126.857-102.286-73.143-11.429-130.286zM727.429 261.143l-40.571 28-4.571-66.857c0-1.714-0.571-3.429-2.286-4.571l-133.714-106.857c-2.286-1.714-5.714-1.714-8 0l-56 47.429 4-92c0-1.714-0.571-3.429-2.286-4.571l-167.429-133.714c-1.143-0.571-2.286-1.143-3.429-1.143-1.714 0.571-3.429 0.571-4.571 1.714l-130.286 138.286c-2.857 2.857-30.857 144-33.714 158.286-0.571 2.286 1.143 5.143 2.857 6.286l34.857 21.143c-6.857 6.286-53.143 46.857-54.286 52.571l-41.143 200.571c-0.571 2.286 0.571 5.143 3.429 6.857l53.714 25.714c-9.143 6.857-75.429 54.857-77.143 61.714l-54.857 266.286c-0.571 3.429 1.143 6.286 4 7.429l247.429 77.143c1.143 0 2.857 0 4.571-0.571l181.143-87.429c1.714-1.143 3.429-3.429 3.429-5.143l11.429-264.571c0-2.286-1.143-4.571-3.429-5.714l-67.429-34.857 72-48.571c1.714-0.571 2.857-2.857 2.857-4.571l2.857-70.286 69.143 42.286c1.714 1.143 4.571 1.143 6.286 0l48-32 1.714 62.857c0 1.714 1.143 4 2.857 5.143l117.714 72c2.286 1.143 4.571 1.143 6.286 0l140-77.143c1.143-1.143 2.286-2.286 2.857-4 1.143-4-17.714-132.571-19.429-145.714 0-1.714-1.143-3.429-2.286-4l-109.143-87.429c-2.286-1.714-5.143-1.714-7.429 0z" />
86
+ <glyph unicode="&#xf2c6;" glyph-name="telegram" d="M679.429 204l84 396c7.429 34.857-12.571 48.571-35.429 40l-493.714-190.286c-33.714-13.143-33.143-32-5.714-40.571l126.286-39.429 293.143 184.571c13.714 9.143 26.286 4 16-5.143l-237.143-214.286-9.143-130.286c13.143 0 18.857 5.714 25.714 12.571l61.714 59.429 128-94.286c23.429-13.143 40-6.286 46.286 21.714zM1024 438.857c0-282.857-229.143-512-512-512s-512 229.143-512 512 229.143 512 512 512 512-229.143 512-512z" />
87
+ <glyph unicode="&#xf2d8;" glyph-name="imdb" horiz-adv-x="878" d="M526.857 495.428v-104c0-20.571 4-39.429-21.714-38.857v176.571c25.143 0 21.714-13.143 21.714-33.714zM707.429 440.571v-69.143c0-11.429 3.429-30.286-13.143-30.286-3.429 0-6.286 1.714-8 5.143-4.571 10.857-2.286 93.143-2.286 94.286 0 8-2.286 26.857 10.286 26.857 15.429 0 13.143-15.429 13.143-26.857zM102.857 305.714h69.714v269.714h-69.714v-269.714zM350.857 305.714h60.571v269.714h-90.857l-16-126.286c-5.714 42.286-11.429 84.571-18.286 126.286h-90.286v-269.714h61.143v178.286l25.714-178.286h43.429l24.571 182.286v-182.286zM593.714 480c0 17.143 0.571 35.429-2.857 51.429-9.143 47.429-66.286 44-103.429 44h-52v-269.714c181.714 0 158.286-12.571 158.286 174.286zM774.857 367.428v76c0 36.571-1.714 63.429-46.857 63.429-18.857 0-31.429-5.714-44-19.429v88h-66.857v-269.714h62.857l4 17.143c12-14.286 25.143-20.571 44-20.571 41.714 0 46.857 32 46.857 65.143zM877.714 786.286v-694.857c0-50.286-41.143-91.429-91.429-91.429h-694.857c-50.286 0-91.429 41.143-91.429 91.429v694.857c0 50.286 41.143 91.429 91.429 91.429h694.857c50.286 0 91.429-41.143 91.429-91.429z" />
88
+ <glyph unicode="&#xf2e0;" glyph-name="meetup" horiz-adv-x="1093" d="M762.286 245.714c-6.286 41.143-81.714 9.143-86.286 54.286-6.286 64 87.429 202.286 80 256-6.857 48-38.857 58.286-66.857 58.857-26.857 0.571-33.714-4-42.857-9.143-5.714-3.429-13.143-9.714-23.429 0.571-12.571 12-22.286 23.429-38.857 25.714-24.571 4-35.429-4-53.143-19.429-6.857-5.714-24-25.714-40-18.286-6.857 3.429-30.857 15.429-48 22.857-32.571 14.286-80-9.143-97.143-40-25.714-45.714-76-226.286-83.429-250.286-17.143-53.143 21.714-97.143 73.714-94.286 22.286 1.143 36.571 9.143 50.857 34.857 8 14.857 83.429 215.429 89.143 225.143 4 6.857 17.714 16 29.143 10.286 11.429-6.286 13.714-18.857 12-30.286-2.286-19.429-56-141.714-57.714-155.429-6.857-45.714 53.714-53.143 77.143-8 7.429 14.286 91.429 185.143 98.857 196.571 8.571 12.571 14.857 16.571 23.429 16 6.286 0 16.571-1.714 14.286-21.714-2.857-18.857-70.286-144.571-77.714-175.429-9.143-41.143 13.143-82.857 49.714-101.143 22.857-11.429 125.143-31.429 117.143 22.286zM218.857 122.286c2.286-11.429-4.571-22.286-16-24.571-10.857-2.286-21.714 4.571-24 16-2.286 10.857 4.571 22.286 15.429 24.571s22.286-4.571 24.571-16zM544.571-28c9.143-13.143 5.714-30.857-6.857-40-13.143-9.143-30.857-5.714-40 7.429-8.571 13.143-5.143 30.857 7.429 40 13.143 9.143 30.857 5.714 39.429-7.429zM101.143 436c-13.714-20.571-41.143-25.714-61.143-11.429-20 13.714-25.143 41.714-11.429 61.714 13.714 20.571 41.143 25.714 61.143 12 20-14.286 25.143-41.714 11.429-62.286zM838.286 49.143c14.286-21.143 9.143-50.286-12-65.143-21.143-14.286-49.714-9.143-64 12s-9.143 50.286 11.429 65.143c21.143 14.857 49.714 9.143 64.571-12zM902.286 394.286c52.571-86.286 30.286-200-52.571-258.286-34.857-24.571-74.286-35.429-113.714-34.286-24-94.286-138.857-129.143-210.286-65.143-2.286-1.714-5.143-3.429-7.429-5.714-78.286-54.286-184.571-34.857-238.857 44.571-19.429 28.571-29.143 61.143-30.286 93.714-130.857 21.714-180 188-82.286 279.429-56.571 93.714 1.143 214.857 106.857 229.714 50.286 132.571 215.429 195.429 327.429 108.571 134.857 44.571 272.571-58.857 261.714-202.286 82.286-25.143 105.714-133.714 39.429-190.286zM260 771.428c10.286-15.429 6.857-36.571-8.571-47.429-14.857-10.286-36-6.857-46.286 8.571s-6.857 36.571 8.571 47.429c14.857 10.286 36 6.857 46.286-8.571zM350.857 932c2.857-12.571-5.143-25.143-17.714-28s-25.143 5.143-28 18.286c-2.286 12.571 5.714 25.143 18.286 28s25.143-5.143 27.429-18.286zM1028.571 390.286c3.429-15.429-6.286-30.286-21.143-33.143-14.857-3.429-29.714 6.286-32.571 21.143-3.429 15.429 6.286 30.286 21.143 33.714 14.857 2.857 29.714-6.857 32.571-21.714zM649.143 900.571c12-20.571 5.714-48-15.429-60.571-20.571-12.571-47.429-5.714-59.429 14.857-12.571 21.143-5.714 48.571 14.857 61.143s47.429 5.714 60-15.429zM1075.429 525.714c2.857-11.429-4.571-22.286-15.429-25.143-11.429-2.286-22.286 5.143-24.571 16-2.286 11.429 4.571 22.857 16 25.143 10.857 2.286 21.714-4.571 24-16zM966.286 663.428c11.429-17.143 7.429-40.571-9.143-52.571-17.143-11.429-40.571-7.429-52 9.714s-7.429 40.571 9.714 52.571c16.571 12 40 7.429 51.429-9.714z" />
89
+ </font></defs></svg>
Binary file
Binary file
Binary file
@@ -0,0 +1,17 @@
1
+ ---
2
+ ---
3
+
4
+ /*
5
+ * Theme of Moderu
6
+ * Copyright (c) David Zhang, 2019
7
+ */
8
+
9
+ $breakpoint: 52rem;
10
+
11
+ $color-major: #484848;
12
+ $color-minor: #aaa;
13
+
14
+ @import "base";
15
+ @import "nav";
16
+ @import "pic";
17
+ @import "footer";
metadata ADDED
@@ -0,0 +1,116 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-moderu
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.1
5
+ platform: ruby
6
+ authors:
7
+ - David Zhang
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-10-10 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.8'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.8'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 1.12.0
34
+ - - "<"
35
+ - !ruby/object:Gem::Version
36
+ version: 3.0.0
37
+ type: :development
38
+ prerelease: false
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: 1.12.0
44
+ - - "<"
45
+ - !ruby/object:Gem::Version
46
+ version: 3.0.0
47
+ - !ruby/object:Gem::Dependency
48
+ name: rake
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: 12.3.3
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: 12.3.3
61
+ description:
62
+ email:
63
+ - crispgm@gmail.com
64
+ executables: []
65
+ extensions: []
66
+ extra_rdoc_files: []
67
+ files:
68
+ - LICENSE.txt
69
+ - README.md
70
+ - _includes/footer.html
71
+ - _includes/head.html
72
+ - _includes/nav.html
73
+ - _layouts/default.html
74
+ - _layouts/page.html
75
+ - _layouts/pic.html
76
+ - _layouts/post.html
77
+ - _sass/_base.scss
78
+ - _sass/_footer.scss
79
+ - _sass/_nav.scss
80
+ - _sass/_pic.scss
81
+ - assets/font.css
82
+ - assets/fonts/icomoon.eot
83
+ - assets/fonts/icomoon.svg
84
+ - assets/fonts/icomoon.ttf
85
+ - assets/fonts/icomoon.woff
86
+ - assets/images/gakki-6.jpg
87
+ - assets/images/p1367692185.jpg
88
+ - assets/images/p1578558800.jpg
89
+ - assets/images/p2331515866.jpg
90
+ - assets/images/p739526939.jpg
91
+ - assets/images/p830783445.jpg
92
+ - assets/style.scss
93
+ homepage: https://crispgm.github.io/moderu/
94
+ licenses:
95
+ - MIT
96
+ metadata: {}
97
+ post_install_message:
98
+ rdoc_options: []
99
+ require_paths:
100
+ - lib
101
+ required_ruby_version: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - ">="
104
+ - !ruby/object:Gem::Version
105
+ version: '0'
106
+ required_rubygems_version: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ requirements: []
112
+ rubygems_version: 3.1.2
113
+ signing_key:
114
+ specification_version: 4
115
+ summary: A simple Jekyll theme photography model
116
+ test_files: []