jekyll-bulma 0.8.1 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. checksums.yaml +4 -4
  2. data/_sass/line-awesome/scss/_bordered_pulled.scss +21 -0
  3. data/_sass/line-awesome/scss/_core.scss +11 -0
  4. data/_sass/line-awesome/scss/_fixed-width.scss +4 -0
  5. data/_sass/line-awesome/scss/_icons.scss +1393 -0
  6. data/_sass/line-awesome/scss/_larger.scss +22 -0
  7. data/_sass/line-awesome/scss/_list.scss +19 -0
  8. data/_sass/line-awesome/scss/_mixins.scss +32 -0
  9. data/_sass/line-awesome/scss/_path.scss +53 -0
  10. data/_sass/line-awesome/scss/_rotated-flipped.scss +101 -0
  11. data/_sass/line-awesome/scss/_screen-reader.scss +2 -0
  12. data/_sass/line-awesome/scss/_stacked.scss +28 -0
  13. data/_sass/line-awesome/scss/_variables.scss +1416 -0
  14. data/_sass/line-awesome/scss/line-awesome.scss +12 -0
  15. data/assets/css/main.scss +5 -5
  16. data/assets/fonts/line-awesome/la-brands-400.eot +0 -0
  17. data/assets/fonts/line-awesome/la-brands-400.svg +1313 -0
  18. data/assets/fonts/line-awesome/la-brands-400.ttf +0 -0
  19. data/assets/fonts/line-awesome/la-brands-400.woff +0 -0
  20. data/assets/fonts/line-awesome/la-brands-400.woff2 +0 -0
  21. data/assets/fonts/line-awesome/la-regular-400.eot +0 -0
  22. data/assets/fonts/line-awesome/la-regular-400.svg +467 -0
  23. data/assets/fonts/line-awesome/la-regular-400.ttf +0 -0
  24. data/assets/fonts/line-awesome/la-regular-400.woff +0 -0
  25. data/assets/fonts/line-awesome/la-regular-400.woff2 +0 -0
  26. data/assets/fonts/line-awesome/la-solid-900.eot +0 -0
  27. data/assets/fonts/line-awesome/la-solid-900.svg +2894 -0
  28. data/assets/fonts/line-awesome/la-solid-900.ttf +0 -0
  29. data/assets/fonts/line-awesome/la-solid-900.woff +0 -0
  30. data/assets/fonts/line-awesome/la-solid-900.woff2 +0 -0
  31. metadata +31 -20
  32. data/_sass/font-awesome.scss +0 -5
  33. data/assets/main.scss +0 -14
  34. data/assets/webfonts/fa-brands-400.eot +0 -0
  35. data/assets/webfonts/fa-brands-400.svg +0 -1127
  36. data/assets/webfonts/fa-brands-400.ttf +0 -0
  37. data/assets/webfonts/fa-brands-400.woff +0 -0
  38. data/assets/webfonts/fa-brands-400.woff2 +0 -0
  39. data/assets/webfonts/fa-regular-400.eot +0 -0
  40. data/assets/webfonts/fa-regular-400.svg +0 -467
  41. data/assets/webfonts/fa-regular-400.ttf +0 -0
  42. data/assets/webfonts/fa-regular-400.woff +0 -0
  43. data/assets/webfonts/fa-regular-400.woff2 +0 -0
  44. data/assets/webfonts/fa-solid-900.eot +0 -0
  45. data/assets/webfonts/fa-solid-900.svg +0 -2231
  46. data/assets/webfonts/fa-solid-900.ttf +0 -0
  47. data/assets/webfonts/fa-solid-900.woff +0 -0
  48. data/assets/webfonts/fa-solid-900.woff2 +0 -0
@@ -0,0 +1,22 @@
1
+ .#{$la-css-prefix}-lg {
2
+ font-size: 1.33333em;
3
+ line-height: 0.75em;
4
+ vertical-align: -.0667em;
5
+ }
6
+
7
+ .#{$la-css-prefix}-xs { font-size: 0.75em; }
8
+ .#{$la-css-prefix}-2x { font-size: 1em; }
9
+ .#{$la-css-prefix}-2x { font-size: 2em; }
10
+ .#{$la-css-prefix}-3x { font-size: 3em; }
11
+ .#{$la-css-prefix}-4x { font-size: 4em; }
12
+ .#{$la-css-prefix}-5x { font-size: 5em; }
13
+ .#{$la-css-prefix}-6x { font-size: 6em; }
14
+ .#{$la-css-prefix}-7x { font-size: 7em; }
15
+ .#{$la-css-prefix}-8x { font-size: 8em; }
16
+ .#{$la-css-prefix}-9x { font-size: 9em; }
17
+ .#{$la-css-prefix}-10x { font-size: 10em; }
18
+
19
+ .#{$la-css-prefix}-fw {
20
+ text-align: center;
21
+ width: 1.25em;
22
+ }
@@ -0,0 +1,19 @@
1
+ .#{$la-css-prefix}-ul {
2
+ padding-left: 0;
3
+ margin-left: $la-li-width;
4
+ list-style-type: none;
5
+ > li {
6
+ position: relative;
7
+ }
8
+ }
9
+
10
+ .#{$la-css-prefix}-li {
11
+ position: absolute;
12
+ left: -2em;
13
+ text-align: center;
14
+ width: $la-li-width;
15
+ line-height: inherit;
16
+ &.#{$la-css-prefix}-lg {
17
+ left: -$la-li-width + (4em / 14);
18
+ }
19
+ }
@@ -0,0 +1,32 @@
1
+ // Only display content to screen readers. A la Bootstrap 4.
2
+ //
3
+ // See: http://a11yproject.com/posts/how-to-hide-content/
4
+
5
+ @mixin sr-only {
6
+ border: 0;
7
+ clip: rect(0, 0, 0, 0);
8
+ height: 1px;
9
+ margin: -1px;
10
+ overflow: hidden;
11
+ padding: 0;
12
+ position: absolute;
13
+ width: 1px;
14
+ }
15
+
16
+ // Use in conjunction with .sr-only to only display content when it's focused.
17
+ //
18
+ // Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
19
+ //
20
+ // Credit: HTML5 Boilerplate
21
+
22
+ @mixin sr-only-focusable {
23
+ &:active,
24
+ &:focus {
25
+ clip: auto;
26
+ height: auto;
27
+ margin: 0;
28
+ overflow: visible;
29
+ position: static;
30
+ width: auto;
31
+ }
32
+ }
@@ -0,0 +1,53 @@
1
+ @font-face {
2
+ font-family: $la-font-name-lab;
3
+ font-style: normal;
4
+ font-weight: normal;
5
+ font-display: auto;
6
+ src: url('#{$la-font-path}/la-brands-400.eot');
7
+ src: url("#{$la-font-path}/la-brands-400.eot?#iefix") format("embedded-opentype"),
8
+ url("#{$la-font-path}/la-brands-400.woff2") format("woff2"),
9
+ url("#{$la-font-path}/la-brands-400.woff") format("woff"),
10
+ url("#{$la-font-path}/la-brands-400.ttf") format("truetype"),
11
+ url("#{$la-font-path}/la-brands-400.svg#lineawesome") format("svg");
12
+ }
13
+
14
+ .#{$la-css-prefix-lab} {
15
+ font-family: $la-font-name-lab;
16
+ font-weight: 400;
17
+ }
18
+
19
+ @font-face {
20
+ font-family: $la-font-name-lar;
21
+ font-style: normal;
22
+ font-weight: 400;
23
+ font-display: auto;
24
+ src: url('#{$la-font-path}/la-regular-400.eot');
25
+ src: url("#{$la-font-path}/la-regular-400.eot?#iefix") format("embedded-opentype"),
26
+ url("#{$la-font-path}/la-regular-400.woff2") format("woff2"),
27
+ url("#{$la-font-path}/la-regular-400.woff") format("woff"),
28
+ url("#{$la-font-path}/la-regular-400.ttf") format("truetype"),
29
+ url("#{$la-font-path}/la-regular-400.svg#lineawesome") format("svg");
30
+ }
31
+
32
+ .#{$la-css-prefix-lar} {
33
+ font-family: $la-font-name-lar;
34
+ font-weight: 400;
35
+ }
36
+
37
+ @font-face {
38
+ font-family: $la-font-name-las;
39
+ font-style: normal;
40
+ font-weight: 900;
41
+ font-display: auto;
42
+ src: url('#{$la-font-path}/la-solid-900.eot');
43
+ src: url("#{$la-font-path}/la-solid-900.eot?#iefix") format("embedded-opentype"),
44
+ url("#{$la-font-path}/la-solid-900.woff2") format("woff2"),
45
+ url("#{$la-font-path}/la-solid-900.woff") format("woff"),
46
+ url("#{$la-font-path}/la-solid-900.ttf") format("truetype"),
47
+ url("#{$la-font-path}/la-solid-900.svg#lineawesome") format("svg");
48
+ }
49
+
50
+ .#{$la-css-prefix-las} {
51
+ font-family: $la-font-name-las;
52
+ font-weight: 900;
53
+ }
@@ -0,0 +1,101 @@
1
+ .la-pull-left {
2
+ float: left;
3
+ }
4
+
5
+ .la-pull-right {
6
+ float: right;
7
+ }
8
+
9
+ .la.la-pull-left,
10
+ .las.la-pull-left,
11
+ .lar.la-pull-left,
12
+ .lal.la-pull-left,
13
+ .lab.la-pull-left {
14
+ margin-right: .3em;
15
+ }
16
+
17
+ .la.la-pull-right,
18
+ .las.la-pull-right,
19
+ .lar.la-pull-right,
20
+ .lal.la-pull-right,
21
+ .lab.la-pull-right {
22
+ margin-left: .3em;
23
+ }
24
+
25
+ .la-spin {
26
+ -webkit-animation: la-spin 2s infinite linear;
27
+ animation: la-spin 2s infinite linear;
28
+ }
29
+
30
+ .la-pulse {
31
+ -webkit-animation: la-spin 1s infinite steps(8);
32
+ animation: la-spin 1s infinite steps(8);
33
+ }
34
+
35
+ @-webkit-keyframes la-spin {
36
+ 0% {
37
+ -webkit-transform: rotate(0deg);
38
+ transform: rotate(0deg);
39
+ }
40
+ 100% {
41
+ -webkit-transform: rotate(360deg);
42
+ transform: rotate(360deg);
43
+ }
44
+ }
45
+
46
+ @keyframes la-spin {
47
+ 0% {
48
+ -webkit-transform: rotate(0deg);
49
+ transform: rotate(0deg);
50
+ }
51
+ 100% {
52
+ -webkit-transform: rotate(360deg);
53
+ transform: rotate(360deg);
54
+ }
55
+ }
56
+
57
+ .la-rotate-90 {
58
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
59
+ -webkit-transform: rotate(90deg);
60
+ transform: rotate(90deg);
61
+ }
62
+
63
+ .la-rotate-180 {
64
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
65
+ -webkit-transform: rotate(180deg);
66
+ transform: rotate(180deg);
67
+ }
68
+
69
+ .la-rotate-270 {
70
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
71
+ -webkit-transform: rotate(270deg);
72
+ transform: rotate(270deg);
73
+ }
74
+
75
+ .la-flip-horizontal {
76
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
77
+ -webkit-transform: scale(-1, 1);
78
+ transform: scale(-1, 1);
79
+ }
80
+
81
+ .la-flip-vertical {
82
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
83
+ -webkit-transform: scale(1, -1);
84
+ transform: scale(1, -1);
85
+ }
86
+
87
+ .la-flip-both, .la-flip-horizontal.la-flip-vertical {
88
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
89
+ -webkit-transform: scale(-1, -1);
90
+ transform: scale(-1, -1);
91
+ }
92
+
93
+ :root .la-rotate-90,
94
+ :root .la-rotate-180,
95
+ :root .la-rotate-270,
96
+ :root .la-flip-horizontal,
97
+ :root .la-flip-vertical,
98
+ :root .la-flip-both {
99
+ -webkit-filter: none;
100
+ filter: none;
101
+ }
@@ -0,0 +1,2 @@
1
+ .sr-only { @include sr-only(); }
2
+ .sr-only-focusable { @include sr-only-focusable(); }
@@ -0,0 +1,28 @@
1
+ .#{$la-css-prefix}-stack {
2
+ display: inline-block;
3
+ height: 2em;
4
+ line-height: 2em;
5
+ position: relative;
6
+ vertical-align: middle;
7
+ width: 2.5em;
8
+ }
9
+
10
+ .#{$la-css-prefix}-stack-1x,
11
+ .#{$la-css-prefix}-stack-2x {
12
+ left: 0;
13
+ position: absolute;
14
+ text-align: center;
15
+ width: 100%;
16
+ }
17
+
18
+ .#{$la-css-prefix}-stack-1x {
19
+ line-height: inherit;
20
+ }
21
+
22
+ .#{$la-css-prefix}-stack-2x {
23
+ font-size: 2em;
24
+ }
25
+
26
+ .#{$la-css-prefix}-inverse {
27
+ color: $la-inverse;
28
+ }
@@ -0,0 +1,1416 @@
1
+ $la-font-path: "../fonts/line-awesome" !default;
2
+ $la-font-size-base: 14px !default;
3
+ $la-line-height-base: 1 !default;
4
+ $la-border-color: #eee !default;
5
+ $la-inverse: #fff !default;
6
+ $la-version: 1.3.0 !default;
7
+ $la-li-width: (20em / 14) !default;
8
+
9
+ @function la-content($la-var) {
10
+ @return unquote("\"#{ $la-var }\"");
11
+ }
12
+
13
+ $la-css-prefix: la;
14
+
15
+ $la-font-name-lar: Line Awesome Free !default;
16
+ $la-css-prefix-lar: lar !default;
17
+
18
+ $la-font-name-las: Line Awesome Free !default;
19
+ $la-css-prefix-las: las !default;
20
+
21
+ $la-font-name-lab: Line Awesome Brands !default;
22
+ $la-css-prefix-lab: lab !default;
23
+
24
+ $la-500px: \f26e;
25
+ $la-accessible-icon: \f368;
26
+ $la-accusoft: \f369;
27
+ $la-acquisitions-incorporated: \f6af;
28
+ $la-ad: \f641;
29
+ $la-address-book: \f2b9;
30
+ $la-address-card: \f2bb;
31
+ $la-adjust: \f042;
32
+ $la-adn: \f170;
33
+ $la-adobe: \f778;
34
+ $la-adversal: \f36a;
35
+ $la-affiliatetheme: \f36b;
36
+ $la-air-freshener: \f5d0;
37
+ $la-airbnb: \f834;
38
+ $la-algolia: \f36c;
39
+ $la-align-center: \f037;
40
+ $la-align-justify: \f039;
41
+ $la-align-left: \f036;
42
+ $la-align-right: \f038;
43
+ $la-alipay: \f642;
44
+ $la-allergies: \f461;
45
+ $la-amazon: \f270;
46
+ $la-amazon-pay: \f42c;
47
+ $la-ambulance: \f0f9;
48
+ $la-american-sign-language-interpreting: \f2a3;
49
+ $la-amilia: \f36d;
50
+ $la-anchor: \f13d;
51
+ $la-android: \f17b;
52
+ $la-angellist: \f209;
53
+ $la-angle-double-down: \f103;
54
+ $la-angle-double-left: \f100;
55
+ $la-angle-double-right: \f101;
56
+ $la-angle-double-up: \f102;
57
+ $la-angle-down: \f107;
58
+ $la-angle-left: \f104;
59
+ $la-angle-right: \f105;
60
+ $la-angle-up: \f106;
61
+ $la-angry: \f556;
62
+ $la-angrycreative: \f36e;
63
+ $la-angular: \f420;
64
+ $la-ankh: \f644;
65
+ $la-app-store: \f36f;
66
+ $la-app-store-ios: \f370;
67
+ $la-apper: \f371;
68
+ $la-apple: \f179;
69
+ $la-apple-alt: \f5d1;
70
+ $la-apple-pay: \f415;
71
+ $la-archive: \f187;
72
+ $la-archway: \f557;
73
+ $la-arrow-alt-circle-down: \f358;
74
+ $la-arrow-alt-circle-left: \f359;
75
+ $la-arrow-alt-circle-right: \f35a;
76
+ $la-arrow-alt-circle-up: \f35b;
77
+ $la-arrow-circle-down: \f0ab;
78
+ $la-arrow-circle-left: \f0a8;
79
+ $la-arrow-circle-right: \f0a9;
80
+ $la-arrow-circle-up: \f0aa;
81
+ $la-arrow-down: \f063;
82
+ $la-arrow-left: \f060;
83
+ $la-arrow-right: \f061;
84
+ $la-arrow-up: \f062;
85
+ $la-arrows-alt: \f0b2;
86
+ $la-arrows-alt-h: \f337;
87
+ $la-arrows-alt-v: \f338;
88
+ $la-artstation: \f77a;
89
+ $la-assistive-listening-systems: \f2a2;
90
+ $la-asterisk: \f069;
91
+ $la-asymmetrik: \f372;
92
+ $la-at: \f1fa;
93
+ $la-atlas: \f558;
94
+ $la-atlassian: \f77b;
95
+ $la-atom: \f5d2;
96
+ $la-audible: \f373;
97
+ $la-audio-description: \f29e;
98
+ $la-autoprefixer: \f41c;
99
+ $la-avianex: \f374;
100
+ $la-aviato: \f421;
101
+ $la-award: \f559;
102
+ $la-aws: \f375;
103
+ $la-baby: \f77c;
104
+ $la-baby-carriage: \f77d;
105
+ $la-backspace: \f55a;
106
+ $la-backward: \f04a;
107
+ $la-bacon: \f7e5;
108
+ $la-balance-scale: \f24e;
109
+ $la-balance-scale-left: \f515;
110
+ $la-balance-scale-right: \f516;
111
+ $la-ban: \f05e;
112
+ $la-band-aid: \f462;
113
+ $la-bandcamp: \f2d5;
114
+ $la-barcode: \f02a;
115
+ $la-bars: \f0c9;
116
+ $la-baseball-ball: \f433;
117
+ $la-basketball-ball: \f434;
118
+ $la-bath: \f2cd;
119
+ $la-battery-empty: \f244;
120
+ $la-battery-full: \f240;
121
+ $la-battery-half: \f242;
122
+ $la-battery-quarter: \f243;
123
+ $la-battery-three-quarters: \f241;
124
+ $la-battle-net: \f835;
125
+ $la-bed: \f236;
126
+ $la-beer: \f0fc;
127
+ $la-behance: \f1b4;
128
+ $la-behance-square: \f1b5;
129
+ $la-bell: \f0f3;
130
+ $la-bell-slash: \f1f6;
131
+ $la-bezier-curve: \f55b;
132
+ $la-bible: \f647;
133
+ $la-bicycle: \f206;
134
+ $la-biking: \f84a;
135
+ $la-bimobject: \f378;
136
+ $la-binoculars: \f1e5;
137
+ $la-biohazard: \f780;
138
+ $la-birthday-cake: \f1fd;
139
+ $la-bitbucket: \f171;
140
+ $la-bitcoin: \f379;
141
+ $la-bity: \f37a;
142
+ $la-black-tie: \f27e;
143
+ $la-blackberry: \f37b;
144
+ $la-blender: \f517;
145
+ $la-blender-phone: \f6b6;
146
+ $la-blind: \f29d;
147
+ $la-blog: \f781;
148
+ $la-blogger: \f37c;
149
+ $la-blogger-b: \f37d;
150
+ $la-bluetooth: \f293;
151
+ $la-bluetooth-b: \f294;
152
+ $la-bold: \f032;
153
+ $la-bolt: \f0e7;
154
+ $la-bomb: \f1e2;
155
+ $la-bone: \f5d7;
156
+ $la-bong: \f55c;
157
+ $la-book: \f02d;
158
+ $la-book-dead: \f6b7;
159
+ $la-book-medical: \f7e6;
160
+ $la-book-open: \f518;
161
+ $la-book-reader: \f5da;
162
+ $la-bookmark: \f02e;
163
+ $la-bootstrap: \f836;
164
+ $la-border-all: \f84c;
165
+ $la-border-none: \f850;
166
+ $la-border-style: \f853;
167
+ $la-bowling-ball: \f436;
168
+ $la-box: \f466;
169
+ $la-box-open: \f49e;
170
+ $la-boxes: \f468;
171
+ $la-braille: \f2a1;
172
+ $la-brain: \f5dc;
173
+ $la-bread-slice: \f7ec;
174
+ $la-briefcase: \f0b1;
175
+ $la-briefcase-medical: \f469;
176
+ $la-broadcast-tower: \f519;
177
+ $la-broom: \f51a;
178
+ $la-brush: \f55d;
179
+ $la-btc: \f15a;
180
+ $la-buffer: \f837;
181
+ $la-bug: \f188;
182
+ $la-building: \f1ad;
183
+ $la-bullhorn: \f0a1;
184
+ $la-bullseye: \f140;
185
+ $la-burn: \f46a;
186
+ $la-buromobelexperte: \f37f;
187
+ $la-bus: \f207;
188
+ $la-bus-alt: \f55e;
189
+ $la-business-time: \f64a;
190
+ $la-buysellads: \f20d;
191
+ $la-calculator: \f1ec;
192
+ $la-calendar: \f133;
193
+ $la-calendar-alt: \f073;
194
+ $la-calendar-check: \f274;
195
+ $la-calendar-day: \f783;
196
+ $la-calendar-minus: \f272;
197
+ $la-calendar-plus: \f271;
198
+ $la-calendar-times: \f273;
199
+ $la-calendar-week: \f784;
200
+ $la-camera: \f030;
201
+ $la-camera-retro: \f083;
202
+ $la-campground: \f6bb;
203
+ $la-canadian-maple-leaf: \f785;
204
+ $la-candy-cane: \f786;
205
+ $la-cannabis: \f55f;
206
+ $la-capsules: \f46b;
207
+ $la-car: \f1b9;
208
+ $la-car-alt: \f5de;
209
+ $la-car-battery: \f5df;
210
+ $la-car-crash: \f5e1;
211
+ $la-car-side: \f5e4;
212
+ $la-caret-down: \f0d7;
213
+ $la-caret-left: \f0d9;
214
+ $la-caret-right: \f0da;
215
+ $la-caret-square-down: \f150;
216
+ $la-caret-square-left: \f191;
217
+ $la-caret-square-right: \f152;
218
+ $la-caret-square-up: \f151;
219
+ $la-caret-up: \f0d8;
220
+ $la-carrot: \f787;
221
+ $la-cart-arrow-down: \f218;
222
+ $la-cart-plus: \f217;
223
+ $la-cash-register: \f788;
224
+ $la-cat: \f6be;
225
+ $la-cc-amazon-pay: \f42d;
226
+ $la-cc-amex: \f1f3;
227
+ $la-cc-apple-pay: \f416;
228
+ $la-cc-diners-club: \f24c;
229
+ $la-cc-discover: \f1f2;
230
+ $la-cc-jcb: \f24b;
231
+ $la-cc-mastercard: \f1f1;
232
+ $la-cc-paypal: \f1f4;
233
+ $la-cc-stripe: \f1f5;
234
+ $la-cc-visa: \f1f0;
235
+ $la-centercode: \f380;
236
+ $la-centos: \f789;
237
+ $la-certificate: \f0a3;
238
+ $la-chair: \f6c0;
239
+ $la-chalkboard: \f51b;
240
+ $la-chalkboard-teacher: \f51c;
241
+ $la-charging-station: \f5e7;
242
+ $la-chart-area: \f1fe;
243
+ $la-chart-bar: \f080;
244
+ $la-chart-line: \f201;
245
+ $la-chart-pie: \f200;
246
+ $la-check: \f00c;
247
+ $la-check-circle: \f058;
248
+ $la-check-double: \f560;
249
+ $la-check-square: \f14a;
250
+ $la-cheese: \f7ef;
251
+ $la-chess: \f439;
252
+ $la-chess-bishop: \f43a;
253
+ $la-chess-board: \f43c;
254
+ $la-chess-king: \f43f;
255
+ $la-chess-knight: \f441;
256
+ $la-chess-pawn: \f443;
257
+ $la-chess-queen: \f445;
258
+ $la-chess-rook: \f447;
259
+ $la-chevron-circle-down: \f13a;
260
+ $la-chevron-circle-left: \f137;
261
+ $la-chevron-circle-right: \f138;
262
+ $la-chevron-circle-up: \f139;
263
+ $la-chevron-down: \f078;
264
+ $la-chevron-left: \f053;
265
+ $la-chevron-right: \f054;
266
+ $la-chevron-up: \f077;
267
+ $la-child: \f1ae;
268
+ $la-chrome: \f268;
269
+ $la-chromecast: \f838;
270
+ $la-church: \f51d;
271
+ $la-circle: \f111;
272
+ $la-circle-notch: \f1ce;
273
+ $la-city: \f64f;
274
+ $la-clinic-medical: \f7f2;
275
+ $la-clipboard: \f328;
276
+ $la-clipboard-check: \f46c;
277
+ $la-clipboard-list: \f46d;
278
+ $la-clock: \f017;
279
+ $la-clone: \f24d;
280
+ $la-closed-captioning: \f20a;
281
+ $la-cloud: \f0c2;
282
+ $la-cloud-download-alt: \f381;
283
+ $la-cloud-meatball: \f73b;
284
+ $la-cloud-moon: \f6c3;
285
+ $la-cloud-moon-rain: \f73c;
286
+ $la-cloud-rain: \f73d;
287
+ $la-cloud-showers-heavy: \f740;
288
+ $la-cloud-sun: \f6c4;
289
+ $la-cloud-sun-rain: \f743;
290
+ $la-cloud-upload-alt: \f382;
291
+ $la-cloudscale: \f383;
292
+ $la-cloudsmith: \f384;
293
+ $la-cloudversify: \f385;
294
+ $la-cocktail: \f561;
295
+ $la-code: \f121;
296
+ $la-code-branch: \f126;
297
+ $la-codepen: \f1cb;
298
+ $la-codiepie: \f284;
299
+ $la-coffee: \f0f4;
300
+ $la-cog: \f013;
301
+ $la-cogs: \f085;
302
+ $la-coins: \f51e;
303
+ $la-columns: \f0db;
304
+ $la-comment: \f075;
305
+ $la-comment-alt: \f27a;
306
+ $la-comment-dollar: \f651;
307
+ $la-comment-dots: \f4ad;
308
+ $la-comment-medical: \f7f5;
309
+ $la-comment-slash: \f4b3;
310
+ $la-comments: \f086;
311
+ $la-comments-dollar: \f653;
312
+ $la-compact-disc: \f51f;
313
+ $la-compass: \f14e;
314
+ $la-compress: \f066;
315
+ $la-compress-arrows-alt: \f78c;
316
+ $la-concierge-bell: \f562;
317
+ $la-confluence: \f78d;
318
+ $la-connectdevelop: \f20e;
319
+ $la-contao: \f26d;
320
+ $la-cookie: \f563;
321
+ $la-cookie-bite: \f564;
322
+ $la-copy: \f0c5;
323
+ $la-copyright: \f1f9;
324
+ $la-cotton-bureau: \f89e;
325
+ $la-couch: \f4b8;
326
+ $la-cpanel: \f388;
327
+ $la-creative-commons: \f25e;
328
+ $la-creative-commons-by: \f4e7;
329
+ $la-creative-commons-nc: \f4e8;
330
+ $la-creative-commons-nc-eu: \f4e9;
331
+ $la-creative-commons-nc-jp: \f4ea;
332
+ $la-creative-commons-nd: \f4eb;
333
+ $la-creative-commons-pd: \f4ec;
334
+ $la-creative-commons-pd-alt: \f4ed;
335
+ $la-creative-commons-remix: \f4ee;
336
+ $la-creative-commons-sa: \f4ef;
337
+ $la-creative-commons-sampling: \f4f0;
338
+ $la-creative-commons-sampling-plus: \f4f1;
339
+ $la-creative-commons-share: \f4f2;
340
+ $la-creative-commons-zero: \f4f3;
341
+ $la-credit-card: \f09d;
342
+ $la-critical-role: \f6c9;
343
+ $la-crop: \f125;
344
+ $la-crop-alt: \f565;
345
+ $la-cross: \f654;
346
+ $la-crosshairs: \f05b;
347
+ $la-crow: \f520;
348
+ $la-crown: \f521;
349
+ $la-crutch: \f7f7;
350
+ $la-css3: \f13c;
351
+ $la-css3-alt: \f38b;
352
+ $la-cube: \f1b2;
353
+ $la-cubes: \f1b3;
354
+ $la-cut: \f0c4;
355
+ $la-cuttlefish: \f38c;
356
+ $la-d-and-d: \f38d;
357
+ $la-d-and-d-beyond: \f6ca;
358
+ $la-dashcube: \f210;
359
+ $la-database: \f1c0;
360
+ $la-deaf: \f2a4;
361
+ $la-delicious: \f1a5;
362
+ $la-democrat: \f747;
363
+ $la-deploydog: \f38e;
364
+ $la-deskpro: \f38f;
365
+ $la-desktop: \f108;
366
+ $la-dev: \f6cc;
367
+ $la-deviantart: \f1bd;
368
+ $la-dharmachakra: \f655;
369
+ $la-dhl: \f790;
370
+ $la-diagnoses: \f470;
371
+ $la-diaspora: \f791;
372
+ $la-dice: \f522;
373
+ $la-dice-d20: \f6cf;
374
+ $la-dice-d6: \f6d1;
375
+ $la-dice-five: \f523;
376
+ $la-dice-four: \f524;
377
+ $la-dice-one: \f525;
378
+ $la-dice-six: \f526;
379
+ $la-dice-three: \f527;
380
+ $la-dice-two: \f528;
381
+ $la-digg: \f1a6;
382
+ $la-digital-ocean: \f391;
383
+ $la-digital-tachograph: \f566;
384
+ $la-directions: \f5eb;
385
+ $la-discord: \f392;
386
+ $la-discourse: \f393;
387
+ $la-divide: \f529;
388
+ $la-dizzy: \f567;
389
+ $la-dna: \f471;
390
+ $la-dochub: \f394;
391
+ $la-docker: \f395;
392
+ $la-dog: \f6d3;
393
+ $la-dollar-sign: \f155;
394
+ $la-dolly: \f472;
395
+ $la-dolly-flatbed: \f474;
396
+ $la-donate: \f4b9;
397
+ $la-door-closed: \f52a;
398
+ $la-door-open: \f52b;
399
+ $la-dot-circle: \f192;
400
+ $la-dove: \f4ba;
401
+ $la-download: \f019;
402
+ $la-draft2digital: \f396;
403
+ $la-drafting-compass: \f568;
404
+ $la-dragon: \f6d5;
405
+ $la-draw-polygon: \f5ee;
406
+ $la-dribbble: \f17d;
407
+ $la-dribbble-square: \f397;
408
+ $la-dropbox: \f16b;
409
+ $la-drum: \f569;
410
+ $la-drum-steelpan: \f56a;
411
+ $la-drumstick-bite: \f6d7;
412
+ $la-drupal: \f1a9;
413
+ $la-dumbbell: \f44b;
414
+ $la-dumpster: \f793;
415
+ $la-dumpster-fire: \f794;
416
+ $la-dungeon: \f6d9;
417
+ $la-dyalog: \f399;
418
+ $la-earlybirds: \f39a;
419
+ $la-ebay: \f4f4;
420
+ $la-edge: \f282;
421
+ $la-edit: \f044;
422
+ $la-egg: \f7fb;
423
+ $la-eject: \f052;
424
+ $la-elementor: \f430;
425
+ $la-ellipsis-h: \f141;
426
+ $la-ellipsis-v: \f142;
427
+ $la-ello: \f5f1;
428
+ $la-ember: \f423;
429
+ $la-empire: \f1d1;
430
+ $la-envelope: \f0e0;
431
+ $la-envelope-open: \f2b6;
432
+ $la-envelope-open-text: \f658;
433
+ $la-envelope-square: \f199;
434
+ $la-envira: \f299;
435
+ $la-equals: \f52c;
436
+ $la-eraser: \f12d;
437
+ $la-erlang: \f39d;
438
+ $la-ethereum: \f42e;
439
+ $la-ethernet: \f796;
440
+ $la-etsy: \f2d7;
441
+ $la-euro-sign: \f153;
442
+ $la-evernote: \f839;
443
+ $la-exchange-alt: \f362;
444
+ $la-exclamation: \f12a;
445
+ $la-exclamation-circle: \f06a;
446
+ $la-exclamation-triangle: \f071;
447
+ $la-expand: \f065;
448
+ $la-expand-arrows-alt: \f31e;
449
+ $la-expeditedssl: \f23e;
450
+ $la-external-link-alt: \f35d;
451
+ $la-external-link-square-alt: \f360;
452
+ $la-eye: \f06e;
453
+ $la-eye-dropper: \f1fb;
454
+ $la-eye-slash: \f070;
455
+ $la-facebook: \f09a;
456
+ $la-facebook-f: \f39e;
457
+ $la-facebook-messenger: \f39f;
458
+ $la-facebook-square: \f082;
459
+ $la-fan: \f863;
460
+ $la-fantasy-flight-games: \f6dc;
461
+ $la-fast-backward: \f049;
462
+ $la-fast-forward: \f050;
463
+ $la-fax: \f1ac;
464
+ $la-feather: \f52d;
465
+ $la-feather-alt: \f56b;
466
+ $la-fedex: \f797;
467
+ $la-fedora: \f798;
468
+ $la-female: \f182;
469
+ $la-fighter-jet: \f0fb;
470
+ $la-figma: \f799;
471
+ $la-file: \f15b;
472
+ $la-file-alt: \f15c;
473
+ $la-file-archive: \f1c6;
474
+ $la-file-audio: \f1c7;
475
+ $la-file-code: \f1c9;
476
+ $la-file-contract: \f56c;
477
+ $la-file-csv: \f6dd;
478
+ $la-file-download: \f56d;
479
+ $la-file-excel: \f1c3;
480
+ $la-file-export: \f56e;
481
+ $la-file-image: \f1c5;
482
+ $la-file-import: \f56f;
483
+ $la-file-invoice: \f570;
484
+ $la-file-invoice-dollar: \f571;
485
+ $la-file-medical: \f477;
486
+ $la-file-medical-alt: \f478;
487
+ $la-file-pdf: \f1c1;
488
+ $la-file-powerpoint: \f1c4;
489
+ $la-file-prescription: \f572;
490
+ $la-file-signature: \f573;
491
+ $la-file-upload: \f574;
492
+ $la-file-video: \f1c8;
493
+ $la-file-word: \f1c2;
494
+ $la-fill: \f575;
495
+ $la-fill-drip: \f576;
496
+ $la-film: \f008;
497
+ $la-filter: \f0b0;
498
+ $la-fingerprint: \f577;
499
+ $la-fire: \f06d;
500
+ $la-fire-alt: \f7e4;
501
+ $la-fire-extinguisher: \f134;
502
+ $la-firefox: \f269;
503
+ $la-first-aid: \f479;
504
+ $la-first-order: \f2b0;
505
+ $la-first-order-alt: \f50a;
506
+ $la-firstdraft: \f3a1;
507
+ $la-fish: \f578;
508
+ $la-fist-raised: \f6de;
509
+ $la-flag: \f024;
510
+ $la-flag-checkered: \f11e;
511
+ $la-flag-usa: \f74d;
512
+ $la-flask: \f0c3;
513
+ $la-flickr: \f16e;
514
+ $la-flipboard: \f44d;
515
+ $la-flushed: \f579;
516
+ $la-fly: \f417;
517
+ $la-folder: \f07b;
518
+ $la-folder-minus: \f65d;
519
+ $la-folder-open: \f07c;
520
+ $la-folder-plus: \f65e;
521
+ $la-font: \f031;
522
+ $la-font-awesome: \f2b4;
523
+ $la-font-awesome-alt: \f35c;
524
+ $la-font-awesome-flag: \f425;
525
+ $la-fonticons: \f280;
526
+ $la-fonticons-fi: \f3a2;
527
+ $la-football-ball: \f44e;
528
+ $la-fort-awesome: \f286;
529
+ $la-fort-awesome-alt: \f3a3;
530
+ $la-forumbee: \f211;
531
+ $la-forward: \f04e;
532
+ $la-foursquare: \f180;
533
+ $la-free-code-camp: \f2c5;
534
+ $la-freebsd: \f3a4;
535
+ $la-frog: \f52e;
536
+ $la-frown: \f119;
537
+ $la-frown-open: \f57a;
538
+ $la-fulcrum: \f50b;
539
+ $la-funnel-dollar: \f662;
540
+ $la-futbol: \f1e3;
541
+ $la-galactic-republic: \f50c;
542
+ $la-galactic-senate: \f50d;
543
+ $la-gamepad: \f11b;
544
+ $la-gas-pump: \f52f;
545
+ $la-gavel: \f0e3;
546
+ $la-gem: \f3a5;
547
+ $la-genderless: \f22d;
548
+ $la-get-pocket: \f265;
549
+ $la-gg: \f260;
550
+ $la-gg-circle: \f261;
551
+ $la-ghost: \f6e2;
552
+ $la-gift: \f06b;
553
+ $la-gifts: \f79c;
554
+ $la-git: \f1d3;
555
+ $la-git-alt: \f841;
556
+ $la-git-square: \f1d2;
557
+ $la-github: \f09b;
558
+ $la-github-alt: \f113;
559
+ $la-github-square: \f092;
560
+ $la-gitkraken: \f3a6;
561
+ $la-gitlab: \f296;
562
+ $la-gitter: \f426;
563
+ $la-glass-cheers: \f79f;
564
+ $la-glass-martini: \f000;
565
+ $la-glass-martini-alt: \f57b;
566
+ $la-glass-whiskey: \f7a0;
567
+ $la-glasses: \f530;
568
+ $la-glide: \f2a5;
569
+ $la-glide-g: \f2a6;
570
+ $la-globe: \f0ac;
571
+ $la-globe-africa: \f57c;
572
+ $la-globe-americas: \f57d;
573
+ $la-globe-asia: \f57e;
574
+ $la-globe-europe: \f7a2;
575
+ $la-gofore: \f3a7;
576
+ $la-golf-ball: \f450;
577
+ $la-goodreads: \f3a8;
578
+ $la-goodreads-g: \f3a9;
579
+ $la-google: \f1a0;
580
+ $la-google-drive: \f3aa;
581
+ $la-google-play: \f3ab;
582
+ $la-google-plus: \f2b3;
583
+ $la-google-plus-g: \f0d5;
584
+ $la-google-plus-square: \f0d4;
585
+ $la-google-wallet: \f1ee;
586
+ $la-gopuram: \f664;
587
+ $la-graduation-cap: \f19d;
588
+ $la-gratipay: \f184;
589
+ $la-grav: \f2d6;
590
+ $la-greater-than: \f531;
591
+ $la-greater-than-equal: \f532;
592
+ $la-grimace: \f57f;
593
+ $la-grin: \f580;
594
+ $la-grin-alt: \f581;
595
+ $la-grin-beam: \f582;
596
+ $la-grin-beam-sweat: \f583;
597
+ $la-grin-hearts: \f584;
598
+ $la-grin-squint: \f585;
599
+ $la-grin-squint-tears: \f586;
600
+ $la-grin-stars: \f587;
601
+ $la-grin-tears: \f588;
602
+ $la-grin-tongue: \f589;
603
+ $la-grin-tongue-squint: \f58a;
604
+ $la-grin-tongue-wink: \f58b;
605
+ $la-grin-wink: \f58c;
606
+ $la-grip-horizontal: \f58d;
607
+ $la-grip-lines: \f7a4;
608
+ $la-grip-lines-vertical: \f7a5;
609
+ $la-grip-vertical: \f58e;
610
+ $la-gripfire: \f3ac;
611
+ $la-grunt: \f3ad;
612
+ $la-guitar: \f7a6;
613
+ $la-gulp: \f3ae;
614
+ $la-h-square: \f0fd;
615
+ $la-hacker-news: \f1d4;
616
+ $la-hacker-news-square: \f3af;
617
+ $la-hackerrank: \f5f7;
618
+ $la-hamburger: \f805;
619
+ $la-hammer: \f6e3;
620
+ $la-hamsa: \f665;
621
+ $la-hand-holding: \f4bd;
622
+ $la-hand-holding-heart: \f4be;
623
+ $la-hand-holding-usd: \f4c0;
624
+ $la-hand-lizard: \f258;
625
+ $la-hand-middle-finger: \f806;
626
+ $la-hand-paper: \f256;
627
+ $la-hand-peace: \f25b;
628
+ $la-hand-point-down: \f0a7;
629
+ $la-hand-point-left: \f0a5;
630
+ $la-hand-point-right: \f0a4;
631
+ $la-hand-point-up: \f0a6;
632
+ $la-hand-pointer: \f25a;
633
+ $la-hand-rock: \f255;
634
+ $la-hand-scissors: \f257;
635
+ $la-hand-spock: \f259;
636
+ $la-hands: \f4c2;
637
+ $la-hands-helping: \f4c4;
638
+ $la-handshake: \f2b5;
639
+ $la-hanukiah: \f6e6;
640
+ $la-hard-hat: \f807;
641
+ $la-hashtag: \f292;
642
+ $la-hat-wizard: \f6e8;
643
+ $la-haykal: \f666;
644
+ $la-hdd: \f0a0;
645
+ $la-heading: \f1dc;
646
+ $la-headphones: \f025;
647
+ $la-headphones-alt: \f58f;
648
+ $la-headset: \f590;
649
+ $la-heart: \f004;
650
+ $la-heart-broken: \f7a9;
651
+ $la-heartbeat: \f21e;
652
+ $la-helicopter: \f533;
653
+ $la-highlighter: \f591;
654
+ $la-hiking: \f6ec;
655
+ $la-hippo: \f6ed;
656
+ $la-hips: \f452;
657
+ $la-hire-a-helper: \f3b0;
658
+ $la-history: \f1da;
659
+ $la-hockey-puck: \f453;
660
+ $la-holly-berry: \f7aa;
661
+ $la-home: \f015;
662
+ $la-hooli: \f427;
663
+ $la-hornbill: \f592;
664
+ $la-horse: \f6f0;
665
+ $la-horse-head: \f7ab;
666
+ $la-hospital: \f0f8;
667
+ $la-hospital-alt: \f47d;
668
+ $la-hospital-symbol: \f47e;
669
+ $la-hot-tub: \f593;
670
+ $la-hotdog: \f80f;
671
+ $la-hotel: \f594;
672
+ $la-hotjar: \f3b1;
673
+ $la-hourglass: \f254;
674
+ $la-hourglass-end: \f253;
675
+ $la-hourglass-half: \f252;
676
+ $la-hourglass-start: \f251;
677
+ $la-house-damage: \f6f1;
678
+ $la-houzz: \f27c;
679
+ $la-hryvnia: \f6f2;
680
+ $la-html5: \f13b;
681
+ $la-hubspot: \f3b2;
682
+ $la-i-cursor: \f246;
683
+ $la-ice-cream: \f810;
684
+ $la-icicles: \f7ad;
685
+ $la-icons: \f86d;
686
+ $la-id-badge: \f2c1;
687
+ $la-id-card: \f2c2;
688
+ $la-id-card-alt: \f47f;
689
+ $la-igloo: \f7ae;
690
+ $la-image: \f03e;
691
+ $la-images: \f302;
692
+ $la-imdb: \f2d8;
693
+ $la-inbox: \f01c;
694
+ $la-indent: \f03c;
695
+ $la-industry: \f275;
696
+ $la-infinity: \f534;
697
+ $la-info: \f129;
698
+ $la-info-circle: \f05a;
699
+ $la-instagram: \f16d;
700
+ $la-intercom: \f7af;
701
+ $la-internet-explorer: \f26b;
702
+ $la-invision: \f7b0;
703
+ $la-ioxhost: \f208;
704
+ $la-italic: \f033;
705
+ $la-itch-io: \f83a;
706
+ $la-itunes: \f3b4;
707
+ $la-itunes-note: \f3b5;
708
+ $la-java: \f4e4;
709
+ $la-jedi: \f669;
710
+ $la-jedi-order: \f50e;
711
+ $la-jenkins: \f3b6;
712
+ $la-jira: \f7b1;
713
+ $la-joget: \f3b7;
714
+ $la-joint: \f595;
715
+ $la-joomla: \f1aa;
716
+ $la-journal-whills: \f66a;
717
+ $la-js: \f3b8;
718
+ $la-js-square: \f3b9;
719
+ $la-jsfiddle: \f1cc;
720
+ $la-kaaba: \f66b;
721
+ $la-kaggle: \f5fa;
722
+ $la-key: \f084;
723
+ $la-keybase: \f4f5;
724
+ $la-keyboard: \f11c;
725
+ $la-keycdn: \f3ba;
726
+ $la-khanda: \f66d;
727
+ $la-kickstarter: \f3bb;
728
+ $la-kickstarter-k: \f3bc;
729
+ $la-kiss: \f596;
730
+ $la-kiss-beam: \f597;
731
+ $la-kiss-wink-heart: \f598;
732
+ $la-kiwi-bird: \f535;
733
+ $la-korvue: \f42f;
734
+ $la-landmark: \f66f;
735
+ $la-language: \f1ab;
736
+ $la-laptop: \f109;
737
+ $la-laptop-code: \f5fc;
738
+ $la-laptop-medical: \f812;
739
+ $la-laravel: \f3bd;
740
+ $la-lastfm: \f202;
741
+ $la-lastfm-square: \f203;
742
+ $la-laugh: \f599;
743
+ $la-laugh-beam: \f59a;
744
+ $la-laugh-squint: \f59b;
745
+ $la-laugh-wink: \f59c;
746
+ $la-layer-group: \f5fd;
747
+ $la-leaf: \f06c;
748
+ $la-leanpub: \f212;
749
+ $la-lemon: \f094;
750
+ $la-less: \f41d;
751
+ $la-less-than: \f536;
752
+ $la-less-than-equal: \f537;
753
+ $la-level-down-alt: \f3be;
754
+ $la-level-up-alt: \f3bf;
755
+ $la-life-ring: \f1cd;
756
+ $la-lightbulb: \f0eb;
757
+ $la-line: \f3c0;
758
+ $la-link: \f0c1;
759
+ $la-linkedin: \f08c;
760
+ $la-linkedin-in: \f0e1;
761
+ $la-linode: \f2b8;
762
+ $la-linux: \f17c;
763
+ $la-lira-sign: \f195;
764
+ $la-list: \f03a;
765
+ $la-list-alt: \f022;
766
+ $la-list-ol: \f0cb;
767
+ $la-list-ul: \f0ca;
768
+ $la-location-arrow: \f124;
769
+ $la-lock: \f023;
770
+ $la-lock-open: \f3c1;
771
+ $la-long-arrow-alt-down: \f309;
772
+ $la-long-arrow-alt-left: \f30a;
773
+ $la-long-arrow-alt-right: \f30b;
774
+ $la-long-arrow-alt-up: \f30c;
775
+ $la-low-vision: \f2a8;
776
+ $la-luggage-cart: \f59d;
777
+ $la-lyft: \f3c3;
778
+ $la-magento: \f3c4;
779
+ $la-magic: \f0d0;
780
+ $la-magnet: \f076;
781
+ $la-mail-bulk: \f674;
782
+ $la-mailchimp: \f59e;
783
+ $la-male: \f183;
784
+ $la-mandalorian: \f50f;
785
+ $la-map: \f279;
786
+ $la-map-marked: \f59f;
787
+ $la-map-marked-alt: \f5a0;
788
+ $la-map-marker: \f041;
789
+ $la-map-marker-alt: \f3c5;
790
+ $la-map-pin: \f276;
791
+ $la-map-signs: \f277;
792
+ $la-markdown: \f60f;
793
+ $la-marker: \f5a1;
794
+ $la-mars: \f222;
795
+ $la-mars-double: \f227;
796
+ $la-mars-stroke: \f229;
797
+ $la-mars-stroke-h: \f22b;
798
+ $la-mars-stroke-v: \f22a;
799
+ $la-mask: \f6fa;
800
+ $la-mastodon: \f4f6;
801
+ $la-maxcdn: \f136;
802
+ $la-medal: \f5a2;
803
+ $la-medapps: \f3c6;
804
+ $la-medium: \f23a;
805
+ $la-medium-m: \f3c7;
806
+ $la-medkit: \f0fa;
807
+ $la-medrt: \f3c8;
808
+ $la-meetup: \f2e0;
809
+ $la-megaport: \f5a3;
810
+ $la-meh: \f11a;
811
+ $la-meh-blank: \f5a4;
812
+ $la-meh-rolling-eyes: \f5a5;
813
+ $la-memory: \f538;
814
+ $la-mendeley: \f7b3;
815
+ $la-menorah: \f676;
816
+ $la-mercury: \f223;
817
+ $la-meteor: \f753;
818
+ $la-microchip: \f2db;
819
+ $la-microphone: \f130;
820
+ $la-microphone-alt: \f3c9;
821
+ $la-microphone-alt-slash: \f539;
822
+ $la-microphone-slash: \f131;
823
+ $la-microscope: \f610;
824
+ $la-microsoft: \f3ca;
825
+ $la-minus: \f068;
826
+ $la-minus-circle: \f056;
827
+ $la-minus-square: \f146;
828
+ $la-mitten: \f7b5;
829
+ $la-mix: \f3cb;
830
+ $la-mixcloud: \f289;
831
+ $la-mizuni: \f3cc;
832
+ $la-mobile: \f10b;
833
+ $la-mobile-alt: \f3cd;
834
+ $la-modx: \f285;
835
+ $la-monero: \f3d0;
836
+ $la-money-bill: \f0d6;
837
+ $la-money-bill-alt: \f3d1;
838
+ $la-money-bill-wave: \f53a;
839
+ $la-money-bill-wave-alt: \f53b;
840
+ $la-money-check: \f53c;
841
+ $la-money-check-alt: \f53d;
842
+ $la-monument: \f5a6;
843
+ $la-moon: \f186;
844
+ $la-mortar-pestle: \f5a7;
845
+ $la-mosque: \f678;
846
+ $la-motorcycle: \f21c;
847
+ $la-mountain: \f6fc;
848
+ $la-mouse-pointer: \f245;
849
+ $la-mug-hot: \f7b6;
850
+ $la-music: \f001;
851
+ $la-napster: \f3d2;
852
+ $la-neos: \f612;
853
+ $la-network-wired: \f6ff;
854
+ $la-neuter: \f22c;
855
+ $la-newspaper: \f1ea;
856
+ $la-nimblr: \f5a8;
857
+ $la-node: \f419;
858
+ $la-node-js: \f3d3;
859
+ $la-not-equal: \f53e;
860
+ $la-notes-medical: \f481;
861
+ $la-npm: \f3d4;
862
+ $la-ns8: \f3d5;
863
+ $la-nutritionix: \f3d6;
864
+ $la-object-group: \f247;
865
+ $la-object-ungroup: \f248;
866
+ $la-odnoklassniki: \f263;
867
+ $la-odnoklassniki-square: \f264;
868
+ $la-oil-can: \f613;
869
+ $la-old-republic: \f510;
870
+ $la-om: \f679;
871
+ $la-opencart: \f23d;
872
+ $la-openid: \f19b;
873
+ $la-opera: \f26a;
874
+ $la-optin-monster: \f23c;
875
+ $la-osi: \f41a;
876
+ $la-otter: \f700;
877
+ $la-outdent: \f03b;
878
+ $la-page4: \f3d7;
879
+ $la-pagelines: \f18c;
880
+ $la-pager: \f815;
881
+ $la-paint-brush: \f1fc;
882
+ $la-paint-roller: \f5aa;
883
+ $la-palette: \f53f;
884
+ $la-palfed: \f3d8;
885
+ $la-pallet: \f482;
886
+ $la-paper-plane: \f1d8;
887
+ $la-paperclip: \f0c6;
888
+ $la-parachute-box: \f4cd;
889
+ $la-paragraph: \f1dd;
890
+ $la-parking: \f540;
891
+ $la-passport: \f5ab;
892
+ $la-pastafarianism: \f67b;
893
+ $la-paste: \f0ea;
894
+ $la-patreon: \f3d9;
895
+ $la-pause: \f04c;
896
+ $la-pause-circle: \f28b;
897
+ $la-paw: \f1b0;
898
+ $la-paypal: \f1ed;
899
+ $la-peace: \f67c;
900
+ $la-pen: \f304;
901
+ $la-pen-alt: \f305;
902
+ $la-pen-fancy: \f5ac;
903
+ $la-pen-nib: \f5ad;
904
+ $la-pen-square: \f14b;
905
+ $la-pencil-alt: \f303;
906
+ $la-pencil-ruler: \f5ae;
907
+ $la-penny-arcade: \f704;
908
+ $la-people-carry: \f4ce;
909
+ $la-pepper-hot: \f816;
910
+ $la-percent: \f295;
911
+ $la-percentage: \f541;
912
+ $la-periscope: \f3da;
913
+ $la-person-booth: \f756;
914
+ $la-phabricator: \f3db;
915
+ $la-phoenix-framework: \f3dc;
916
+ $la-phoenix-squadron: \f511;
917
+ $la-phone: \f095;
918
+ $la-phone-alt: \f879;
919
+ $la-phone-slash: \f3dd;
920
+ $la-phone-square: \f098;
921
+ $la-phone-square-alt: \f87b;
922
+ $la-phone-volume: \f2a0;
923
+ $la-photo-video: \f87c;
924
+ $la-php: \f457;
925
+ $la-pied-piper: \f2ae;
926
+ $la-pied-piper-alt: \f1a8;
927
+ $la-pied-piper-hat: \f4e5;
928
+ $la-pied-piper-pp: \f1a7;
929
+ $la-piggy-bank: \f4d3;
930
+ $la-pills: \f484;
931
+ $la-pinterest: \f0d2;
932
+ $la-pinterest-p: \f231;
933
+ $la-pinterest-square: \f0d3;
934
+ $la-pizza-slice: \f818;
935
+ $la-place-of-worship: \f67f;
936
+ $la-plane: \f072;
937
+ $la-plane-arrival: \f5af;
938
+ $la-plane-departure: \f5b0;
939
+ $la-play: \f04b;
940
+ $la-play-circle: \f144;
941
+ $la-playstation: \f3df;
942
+ $la-plug: \f1e6;
943
+ $la-plus: \f067;
944
+ $la-plus-circle: \f055;
945
+ $la-plus-square: \f0fe;
946
+ $la-podcast: \f2ce;
947
+ $la-poll: \f681;
948
+ $la-poll-h: \f682;
949
+ $la-poo: \f2fe;
950
+ $la-poo-storm: \f75a;
951
+ $la-poop: \f619;
952
+ $la-portrait: \f3e0;
953
+ $la-pound-sign: \f154;
954
+ $la-power-off: \f011;
955
+ $la-pray: \f683;
956
+ $la-praying-hands: \f684;
957
+ $la-prescription: \f5b1;
958
+ $la-prescription-bottle: \f485;
959
+ $la-prescription-bottle-alt: \f486;
960
+ $la-print: \f02f;
961
+ $la-procedures: \f487;
962
+ $la-product-hunt: \f288;
963
+ $la-project-diagram: \f542;
964
+ $la-pushed: \f3e1;
965
+ $la-puzzle-piece: \f12e;
966
+ $la-python: \f3e2;
967
+ $la-qq: \f1d6;
968
+ $la-qrcode: \f029;
969
+ $la-question: \f128;
970
+ $la-question-circle: \f059;
971
+ $la-quidditch: \f458;
972
+ $la-quinscape: \f459;
973
+ $la-quora: \f2c4;
974
+ $la-quote-left: \f10d;
975
+ $la-quote-right: \f10e;
976
+ $la-quran: \f687;
977
+ $la-r-project: \f4f7;
978
+ $la-radiation: \f7b9;
979
+ $la-radiation-alt: \f7ba;
980
+ $la-rainbow: \f75b;
981
+ $la-random: \f074;
982
+ $la-raspberry-pi: \f7bb;
983
+ $la-ravelry: \f2d9;
984
+ $la-react: \f41b;
985
+ $la-reacteurope: \f75d;
986
+ $la-readme: \f4d5;
987
+ $la-rebel: \f1d0;
988
+ $la-receipt: \f543;
989
+ $la-recycle: \f1b8;
990
+ $la-red-river: \f3e3;
991
+ $la-reddit: \f1a1;
992
+ $la-reddit-alien: \f281;
993
+ $la-reddit-square: \f1a2;
994
+ $la-redhat: \f7bc;
995
+ $la-redo: \f01e;
996
+ $la-redo-alt: \f2f9;
997
+ $la-registered: \f25d;
998
+ $la-remove-format: \f87d;
999
+ $la-renren: \f18b;
1000
+ $la-reply: \f3e5;
1001
+ $la-reply-all: \f122;
1002
+ $la-replyd: \f3e6;
1003
+ $la-republican: \f75e;
1004
+ $la-researchgate: \f4f8;
1005
+ $la-resolving: \f3e7;
1006
+ $la-restroom: \f7bd;
1007
+ $la-retweet: \f079;
1008
+ $la-rev: \f5b2;
1009
+ $la-ribbon: \f4d6;
1010
+ $la-ring: \f70b;
1011
+ $la-road: \f018;
1012
+ $la-robot: \f544;
1013
+ $la-rocket: \f135;
1014
+ $la-rocketchat: \f3e8;
1015
+ $la-rockrms: \f3e9;
1016
+ $la-route: \f4d7;
1017
+ $la-rss: \f09e;
1018
+ $la-rss-square: \f143;
1019
+ $la-ruble-sign: \f158;
1020
+ $la-ruler: \f545;
1021
+ $la-ruler-combined: \f546;
1022
+ $la-ruler-horizontal: \f547;
1023
+ $la-ruler-vertical: \f548;
1024
+ $la-running: \f70c;
1025
+ $la-rupee-sign: \f156;
1026
+ $la-sad-cry: \f5b3;
1027
+ $la-sad-tear: \f5b4;
1028
+ $la-safari: \f267;
1029
+ $la-salesforce: \f83b;
1030
+ $la-sass: \f41e;
1031
+ $la-satellite: \f7bf;
1032
+ $la-satellite-dish: \f7c0;
1033
+ $la-save: \f0c7;
1034
+ $la-schlix: \f3ea;
1035
+ $la-school: \f549;
1036
+ $la-screwdriver: \f54a;
1037
+ $la-scribd: \f28a;
1038
+ $la-scroll: \f70e;
1039
+ $la-sd-card: \f7c2;
1040
+ $la-search: \f002;
1041
+ $la-search-dollar: \f688;
1042
+ $la-search-location: \f689;
1043
+ $la-search-minus: \f010;
1044
+ $la-search-plus: \f00e;
1045
+ $la-searchengin: \f3eb;
1046
+ $la-seedling: \f4d8;
1047
+ $la-sellcast: \f2da;
1048
+ $la-sellsy: \f213;
1049
+ $la-server: \f233;
1050
+ $la-servicestack: \f3ec;
1051
+ $la-shapes: \f61f;
1052
+ $la-share: \f064;
1053
+ $la-share-alt: \f1e0;
1054
+ $la-share-alt-square: \f1e1;
1055
+ $la-share-square: \f14d;
1056
+ $la-shekel-sign: \f20b;
1057
+ $la-shield-alt: \f3ed;
1058
+ $la-ship: \f21a;
1059
+ $la-shipping-fast: \f48b;
1060
+ $la-shirtsinbulk: \f214;
1061
+ $la-shoe-prints: \f54b;
1062
+ $la-shopping-bag: \f290;
1063
+ $la-shopping-basket: \f291;
1064
+ $la-shopping-cart: \f07a;
1065
+ $la-shopware: \f5b5;
1066
+ $la-shower: \f2cc;
1067
+ $la-shuttle-van: \f5b6;
1068
+ $la-sign: \f4d9;
1069
+ $la-sign-in-alt: \f2f6;
1070
+ $la-sign-language: \f2a7;
1071
+ $la-sign-out-alt: \f2f5;
1072
+ $la-signal: \f012;
1073
+ $la-signature: \f5b7;
1074
+ $la-sim-card: \f7c4;
1075
+ $la-simplybuilt: \f215;
1076
+ $la-sistrix: \f3ee;
1077
+ $la-sitemap: \f0e8;
1078
+ $la-sith: \f512;
1079
+ $la-skating: \f7c5;
1080
+ $la-sketch: \f7c6;
1081
+ $la-skiing: \f7c9;
1082
+ $la-skiing-nordic: \f7ca;
1083
+ $la-skull: \f54c;
1084
+ $la-skull-crossbones: \f714;
1085
+ $la-skyatlas: \f216;
1086
+ $la-skype: \f17e;
1087
+ $la-slack: \f198;
1088
+ $la-slack-hash: \f3ef;
1089
+ $la-slash: \f715;
1090
+ $la-sleigh: \f7cc;
1091
+ $la-sliders-h: \f1de;
1092
+ $la-slideshare: \f1e7;
1093
+ $la-smile: \f118;
1094
+ $la-smile-beam: \f5b8;
1095
+ $la-smile-wink: \f4da;
1096
+ $la-smog: \f75f;
1097
+ $la-smoking: \f48d;
1098
+ $la-smoking-ban: \f54d;
1099
+ $la-sms: \f7cd;
1100
+ $la-snapchat: \f2ab;
1101
+ $la-snapchat-ghost: \f2ac;
1102
+ $la-snapchat-square: \f2ad;
1103
+ $la-snowboarding: \f7ce;
1104
+ $la-snowflake: \f2dc;
1105
+ $la-snowman: \f7d0;
1106
+ $la-snowplow: \f7d2;
1107
+ $la-socks: \f696;
1108
+ $la-solar-panel: \f5ba;
1109
+ $la-sort: \f0dc;
1110
+ $la-sort-alpha-down: \f15d;
1111
+ $la-sort-alpha-down-alt: \f881;
1112
+ $la-sort-alpha-up: \f15e;
1113
+ $la-sort-alpha-up-alt: \f882;
1114
+ $la-sort-amount-down: \f160;
1115
+ $la-sort-amount-down-alt: \f884;
1116
+ $la-sort-amount-up: \f161;
1117
+ $la-sort-amount-up-alt: \f885;
1118
+ $la-sort-down: \f0dd;
1119
+ $la-sort-numeric-down: \f162;
1120
+ $la-sort-numeric-down-alt: \f886;
1121
+ $la-sort-numeric-up: \f163;
1122
+ $la-sort-numeric-up-alt: \f887;
1123
+ $la-sort-up: \f0de;
1124
+ $la-soundcloud: \f1be;
1125
+ $la-sourcetree: \f7d3;
1126
+ $la-spa: \f5bb;
1127
+ $la-space-shuttle: \f197;
1128
+ $la-speakap: \f3f3;
1129
+ $la-speaker-deck: \f83c;
1130
+ $la-spell-check: \f891;
1131
+ $la-spider: \f717;
1132
+ $la-spinner: \f110;
1133
+ $la-splotch: \f5bc;
1134
+ $la-spotify: \f1bc;
1135
+ $la-spray-can: \f5bd;
1136
+ $la-square: \f0c8;
1137
+ $la-square-full: \f45c;
1138
+ $la-square-root-alt: \f698;
1139
+ $la-squarespace: \f5be;
1140
+ $la-stack-exchange: \f18d;
1141
+ $la-stack-overflow: \f16c;
1142
+ $la-stackpath: \f842;
1143
+ $la-stamp: \f5bf;
1144
+ $la-star: \f005;
1145
+ $la-star-and-crescent: \f699;
1146
+ $la-star-half: \f089;
1147
+ $la-star-half-alt: \f5c0;
1148
+ $la-star-of-david: \f69a;
1149
+ $la-star-of-life: \f621;
1150
+ $la-staylinked: \f3f5;
1151
+ $la-steam: \f1b6;
1152
+ $la-steam-square: \f1b7;
1153
+ $la-steam-symbol: \f3f6;
1154
+ $la-step-backward: \f048;
1155
+ $la-step-forward: \f051;
1156
+ $la-stethoscope: \f0f1;
1157
+ $la-sticker-mule: \f3f7;
1158
+ $la-sticky-note: \f249;
1159
+ $la-stop: \f04d;
1160
+ $la-stop-circle: \f28d;
1161
+ $la-stopwatch: \f2f2;
1162
+ $la-store: \f54e;
1163
+ $la-store-alt: \f54f;
1164
+ $la-strava: \f428;
1165
+ $la-stream: \f550;
1166
+ $la-street-view: \f21d;
1167
+ $la-strikethrough: \f0cc;
1168
+ $la-stripe: \f429;
1169
+ $la-stripe-s: \f42a;
1170
+ $la-stroopwafel: \f551;
1171
+ $la-studiovinari: \f3f8;
1172
+ $la-stumbleupon: \f1a4;
1173
+ $la-stumbleupon-circle: \f1a3;
1174
+ $la-subscript: \f12c;
1175
+ $la-subway: \f239;
1176
+ $la-suitcase: \f0f2;
1177
+ $la-suitcase-rolling: \f5c1;
1178
+ $la-sun: \f185;
1179
+ $la-superpowers: \f2dd;
1180
+ $la-superscript: \f12b;
1181
+ $la-supple: \f3f9;
1182
+ $la-surprise: \f5c2;
1183
+ $la-suse: \f7d6;
1184
+ $la-swatchbook: \f5c3;
1185
+ $la-swimmer: \f5c4;
1186
+ $la-swimming-pool: \f5c5;
1187
+ $la-symfony: \f83d;
1188
+ $la-synagogue: \f69b;
1189
+ $la-sync: \f021;
1190
+ $la-sync-alt: \f2f1;
1191
+ $la-syringe: \f48e;
1192
+ $la-table: \f0ce;
1193
+ $la-table-tennis: \f45d;
1194
+ $la-tablet: \f10a;
1195
+ $la-tablet-alt: \f3fa;
1196
+ $la-tablets: \f490;
1197
+ $la-tachometer-alt: \f3fd;
1198
+ $la-tag: \f02b;
1199
+ $la-tags: \f02c;
1200
+ $la-tape: \f4db;
1201
+ $la-tasks: \f0ae;
1202
+ $la-taxi: \f1ba;
1203
+ $la-teamspeak: \f4f9;
1204
+ $la-teeth: \f62e;
1205
+ $la-teeth-open: \f62f;
1206
+ $la-telegram: \f2c6;
1207
+ $la-telegram-plane: \f3fe;
1208
+ $la-temperature-high: \f769;
1209
+ $la-temperature-low: \f76b;
1210
+ $la-tencent-weibo: \f1d5;
1211
+ $la-tenge: \f7d7;
1212
+ $la-terminal: \f120;
1213
+ $la-text-height: \f034;
1214
+ $la-text-width: \f035;
1215
+ $la-th: \f00a;
1216
+ $la-th-large: \f009;
1217
+ $la-th-list: \f00b;
1218
+ $la-the-red-yeti: \f69d;
1219
+ $la-theater-masks: \f630;
1220
+ $la-themeco: \f5c6;
1221
+ $la-themeisle: \f2b2;
1222
+ $la-thermometer: \f491;
1223
+ $la-thermometer-empty: \f2cb;
1224
+ $la-thermometer-full: \f2c7;
1225
+ $la-thermometer-half: \f2c9;
1226
+ $la-thermometer-quarter: \f2ca;
1227
+ $la-thermometer-three-quarters: \f2c8;
1228
+ $la-think-peaks: \f731;
1229
+ $la-thumbs-down: \f165;
1230
+ $la-thumbs-up: \f164;
1231
+ $la-thumbtack: \f08d;
1232
+ $la-ticket-alt: \f3ff;
1233
+ $la-times: \f00d;
1234
+ $la-times-circle: \f057;
1235
+ $la-tint: \f043;
1236
+ $la-tint-slash: \f5c7;
1237
+ $la-tired: \f5c8;
1238
+ $la-toggle-off: \f204;
1239
+ $la-toggle-on: \f205;
1240
+ $la-toilet: \f7d8;
1241
+ $la-toilet-paper: \f71e;
1242
+ $la-toolbox: \f552;
1243
+ $la-tools: \f7d9;
1244
+ $la-tooth: \f5c9;
1245
+ $la-torah: \f6a0;
1246
+ $la-torii-gate: \f6a1;
1247
+ $la-tractor: \f722;
1248
+ $la-trade-federation: \f513;
1249
+ $la-trademark: \f25c;
1250
+ $la-traffic-light: \f637;
1251
+ $la-train: \f238;
1252
+ $la-tram: \f7da;
1253
+ $la-transgender: \f224;
1254
+ $la-transgender-alt: \f225;
1255
+ $la-trash: \f1f8;
1256
+ $la-trash-alt: \f2ed;
1257
+ $la-trash-restore: \f829;
1258
+ $la-trash-restore-alt: \f82a;
1259
+ $la-tree: \f1bb;
1260
+ $la-trello: \f181;
1261
+ $la-tripadvisor: \f262;
1262
+ $la-trophy: \f091;
1263
+ $la-truck: \f0d1;
1264
+ $la-truck-loading: \f4de;
1265
+ $la-truck-monster: \f63b;
1266
+ $la-truck-moving: \f4df;
1267
+ $la-truck-pickup: \f63c;
1268
+ $la-tshirt: \f553;
1269
+ $la-tty: \f1e4;
1270
+ $la-tumblr: \f173;
1271
+ $la-tumblr-square: \f174;
1272
+ $la-tv: \f26c;
1273
+ $la-twitch: \f1e8;
1274
+ $la-twitter: \f099;
1275
+ $la-twitter-square: \f081;
1276
+ $la-typo3: \f42b;
1277
+ $la-uber: \f402;
1278
+ $la-ubuntu: \f7df;
1279
+ $la-uikit: \f403;
1280
+ $la-umbrella: \f0e9;
1281
+ $la-umbrella-beach: \f5ca;
1282
+ $la-underline: \f0cd;
1283
+ $la-undo: \f0e2;
1284
+ $la-undo-alt: \f2ea;
1285
+ $la-uniregistry: \f404;
1286
+ $la-universal-access: \f29a;
1287
+ $la-university: \f19c;
1288
+ $la-unlink: \f127;
1289
+ $la-unlock: \f09c;
1290
+ $la-unlock-alt: \f13e;
1291
+ $la-untappd: \f405;
1292
+ $la-upload: \f093;
1293
+ $la-ups: \f7e0;
1294
+ $la-usb: \f287;
1295
+ $la-user: \f007;
1296
+ $la-user-alt: \f406;
1297
+ $la-user-alt-slash: \f4fa;
1298
+ $la-user-astronaut: \f4fb;
1299
+ $la-user-check: \f4fc;
1300
+ $la-user-circle: \f2bd;
1301
+ $la-user-clock: \f4fd;
1302
+ $la-user-cog: \f4fe;
1303
+ $la-user-edit: \f4ff;
1304
+ $la-user-friends: \f500;
1305
+ $la-user-graduate: \f501;
1306
+ $la-user-injured: \f728;
1307
+ $la-user-lock: \f502;
1308
+ $la-user-md: \f0f0;
1309
+ $la-user-minus: \f503;
1310
+ $la-user-ninja: \f504;
1311
+ $la-user-nurse: \f82f;
1312
+ $la-user-plus: \f234;
1313
+ $la-user-secret: \f21b;
1314
+ $la-user-shield: \f505;
1315
+ $la-user-slash: \f506;
1316
+ $la-user-tag: \f507;
1317
+ $la-user-tie: \f508;
1318
+ $la-user-times: \f235;
1319
+ $la-users: \f0c0;
1320
+ $la-users-cog: \f509;
1321
+ $la-usps: \f7e1;
1322
+ $la-ussunnah: \f407;
1323
+ $la-utensil-spoon: \f2e5;
1324
+ $la-utensils: \f2e7;
1325
+ $la-vaadin: \f408;
1326
+ $la-vector-square: \f5cb;
1327
+ $la-venus: \f221;
1328
+ $la-venus-double: \f226;
1329
+ $la-venus-mars: \f228;
1330
+ $la-viacoin: \f237;
1331
+ $la-viadeo: \f2a9;
1332
+ $la-viadeo-square: \f2aa;
1333
+ $la-vial: \f492;
1334
+ $la-vials: \f493;
1335
+ $la-viber: \f409;
1336
+ $la-video: \f03d;
1337
+ $la-video-slash: \f4e2;
1338
+ $la-vihara: \f6a7;
1339
+ $la-vimeo: \f40a;
1340
+ $la-vimeo-square: \f194;
1341
+ $la-vimeo-v: \f27d;
1342
+ $la-vine: \f1ca;
1343
+ $la-vk: \f189;
1344
+ $la-vnv: \f40b;
1345
+ $la-voicemail: \f897;
1346
+ $la-volleyball-ball: \f45f;
1347
+ $la-volume-down: \f027;
1348
+ $la-volume-mute: \f6a9;
1349
+ $la-volume-off: \f026;
1350
+ $la-volume-up: \f028;
1351
+ $la-vote-yea: \f772;
1352
+ $la-vr-cardboard: \f729;
1353
+ $la-vuejs: \f41f;
1354
+ $la-walking: \f554;
1355
+ $la-wallet: \f555;
1356
+ $la-warehouse: \f494;
1357
+ $la-water: \f773;
1358
+ $la-wave-square: \f83e;
1359
+ $la-waze: \f83f;
1360
+ $la-weebly: \f5cc;
1361
+ $la-weibo: \f18a;
1362
+ $la-weight: \f496;
1363
+ $la-weight-hanging: \f5cd;
1364
+ $la-weixin: \f1d7;
1365
+ $la-whatsapp: \f232;
1366
+ $la-whatsapp-square: \f40c;
1367
+ $la-wheelchair: \f193;
1368
+ $la-whmcs: \f40d;
1369
+ $la-wifi: \f1eb;
1370
+ $la-wikipedia-w: \f266;
1371
+ $la-wind: \f72e;
1372
+ $la-window-close: \f410;
1373
+ $la-window-maximize: \f2d0;
1374
+ $la-window-minimize: \f2d1;
1375
+ $la-window-restore: \f2d2;
1376
+ $la-windows: \f17a;
1377
+ $la-wine-bottle: \f72f;
1378
+ $la-wine-glass: \f4e3;
1379
+ $la-wine-glass-alt: \f5ce;
1380
+ $la-wix: \f5cf;
1381
+ $la-wizards-of-the-coast: \f730;
1382
+ $la-wolf-pack-battalion: \f514;
1383
+ $la-won-sign: \f159;
1384
+ $la-wordpress: \f19a;
1385
+ $la-wordpress-simple: \f411;
1386
+ $la-wpbeginner: \f297;
1387
+ $la-wpexplorer: \f2de;
1388
+ $la-wpforms: \f298;
1389
+ $la-wpressr: \f3e4;
1390
+ $la-wrench: \f0ad;
1391
+ $la-x-ray: \f497;
1392
+ $la-xbox: \f412;
1393
+ $la-xing: \f168;
1394
+ $la-xing-square: \f169;
1395
+ $la-y-combinator: \f23b;
1396
+ $la-yahoo: \f19e;
1397
+ $la-yammer: \f840;
1398
+ $la-yandex: \f413;
1399
+ $la-yandex-international: \f414;
1400
+ $la-yarn: \f7e3;
1401
+ $la-yelp: \f1e9;
1402
+ $la-yen-sign: \f157;
1403
+ $la-yin-yang: \f6ad;
1404
+ $la-yoast: \f2b1;
1405
+ $la-youtube: \f167;
1406
+ $la-youtube-square: \f431;
1407
+ $la-zhihu: \f63f;
1408
+ $la-hat-cowboy: \f8c0;
1409
+ $la-hat-cowboy-side: \f8c1;
1410
+ $la-mdb: \f8ca;
1411
+ $la-mouse: \f8cc;
1412
+ $la-orcid: \f8d2;
1413
+ $la-record-vinyl: \f8d9;
1414
+ $la-swift: \f8e1;
1415
+ $la-umbraco: \f8e8;
1416
+ $la-buy-n-large: \f8a6;