font-awesome-sass 6.0.0 → 6.1.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.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/assets/fonts/font-awesome/fa-brands-400.ttf +0 -0
- data/assets/fonts/font-awesome/fa-brands-400.woff2 +0 -0
- data/assets/fonts/font-awesome/fa-regular-400.ttf +0 -0
- data/assets/fonts/font-awesome/fa-regular-400.woff2 +0 -0
- data/assets/fonts/font-awesome/fa-solid-900.ttf +0 -0
- data/assets/fonts/font-awesome/fa-solid-900.woff2 +0 -0
- data/assets/stylesheets/_font-awesome.scss +4 -13
- data/assets/stylesheets/font-awesome/_animated.scss +90 -27
- data/assets/stylesheets/font-awesome/_bordered-pulled.scss +4 -4
- data/assets/stylesheets/{_brands.scss → font-awesome/_brands.scss} +6 -6
- data/assets/stylesheets/font-awesome/_core.scss +7 -7
- data/assets/stylesheets/font-awesome/_functions.scss +17 -2
- data/assets/stylesheets/font-awesome/_icons.scss +3 -1
- data/assets/stylesheets/font-awesome/_list.scss +3 -1
- data/assets/stylesheets/font-awesome/_mixins.scss +4 -5
- data/assets/stylesheets/{_regular.scss → font-awesome/_regular.scss} +5 -5
- data/assets/stylesheets/font-awesome/_rotated-flipped.scss +1 -1
- data/assets/stylesheets/font-awesome/_screen-reader.scss +4 -4
- data/assets/stylesheets/font-awesome/_shims.scss +1191 -609
- data/assets/stylesheets/font-awesome/_sizing.scss +1 -1
- data/assets/stylesheets/{_solid.scss → font-awesome/_solid.scss} +5 -5
- data/assets/stylesheets/font-awesome/_variables.scss +549 -6
- data/lib/font_awesome/sass/version.rb +1 -1
- metadata +5 -6
- data/assets/stylesheets/_v4-shims.scss +0 -11
| @@ -48,11 +48,6 @@ $fa-stack-z-index: auto !default; | |
| 48 48 | 
             
            $fa-font-display: block !default;
         | 
| 49 49 | 
             
            $fa-font-path: "../fonts/font-awesome" !default;
         | 
| 50 50 |  | 
| 51 | 
            -
            // convenience function used to set content property
         | 
| 52 | 
            -
            @function fa-content($fa-var) {
         | 
| 53 | 
            -
              @return unquote('"#{ $fa-var }"');
         | 
| 54 | 
            -
            }
         | 
| 55 | 
            -
             | 
| 56 51 | 
             
            $fa-var-0: \30;
         | 
| 57 52 | 
             
            $fa-var-1: \31;
         | 
| 58 53 | 
             
            $fa-var-2: \32;
         | 
| @@ -74,6 +69,10 @@ $fa-var-align-justify: \f039; | |
| 74 69 | 
             
            $fa-var-align-left: \f036;
         | 
| 75 70 | 
             
            $fa-var-align-right: \f038;
         | 
| 76 71 | 
             
            $fa-var-anchor: \f13d;
         | 
| 72 | 
            +
            $fa-var-anchor-circle-check: \e4aa;
         | 
| 73 | 
            +
            $fa-var-anchor-circle-exclamation: \e4ab;
         | 
| 74 | 
            +
            $fa-var-anchor-circle-xmark: \e4ac;
         | 
| 75 | 
            +
            $fa-var-anchor-lock: \e4ad;
         | 
| 77 76 | 
             
            $fa-var-angle-down: \f107;
         | 
| 78 77 | 
             
            $fa-var-angle-left: \f104;
         | 
| 79 78 | 
             
            $fa-var-angle-right: \f105;
         | 
| @@ -105,6 +104,8 @@ $fa-var-long-arrow-down: \f175; | |
| 105 104 | 
             
            $fa-var-arrow-down-short-wide: \f884;
         | 
| 106 105 | 
             
            $fa-var-sort-amount-desc: \f884;
         | 
| 107 106 | 
             
            $fa-var-sort-amount-down-alt: \f884;
         | 
| 107 | 
            +
            $fa-var-arrow-down-up-across-line: \e4af;
         | 
| 108 | 
            +
            $fa-var-arrow-down-up-lock: \e4b0;
         | 
| 108 109 | 
             
            $fa-var-arrow-down-wide-short: \f160;
         | 
| 109 110 | 
             
            $fa-var-sort-amount-asc: \f160;
         | 
| 110 111 | 
             
            $fa-var-sort-amount-down: \f160;
         | 
| @@ -125,6 +126,7 @@ $fa-var-arrow-right-long: \f178; | |
| 125 126 | 
             
            $fa-var-long-arrow-right: \f178;
         | 
| 126 127 | 
             
            $fa-var-arrow-right-to-bracket: \f090;
         | 
| 127 128 | 
             
            $fa-var-sign-in: \f090;
         | 
| 129 | 
            +
            $fa-var-arrow-right-to-city: \e4b3;
         | 
| 128 130 | 
             
            $fa-var-arrow-rotate-left: \f0e2;
         | 
| 129 131 | 
             
            $fa-var-arrow-left-rotate: \f0e2;
         | 
| 130 132 | 
             
            $fa-var-arrow-rotate-back: \f0e2;
         | 
| @@ -148,8 +150,11 @@ $fa-var-sort-numeric-up-alt: \f887; | |
| 148 150 | 
             
            $fa-var-arrow-up-a-z: \f15e;
         | 
| 149 151 | 
             
            $fa-var-sort-alpha-up: \f15e;
         | 
| 150 152 | 
             
            $fa-var-arrow-up-from-bracket: \e09a;
         | 
| 153 | 
            +
            $fa-var-arrow-up-from-ground-water: \e4b5;
         | 
| 154 | 
            +
            $fa-var-arrow-up-from-water-pump: \e4b6;
         | 
| 151 155 | 
             
            $fa-var-arrow-up-long: \f176;
         | 
| 152 156 | 
             
            $fa-var-long-arrow-up: \f176;
         | 
| 157 | 
            +
            $fa-var-arrow-up-right-dots: \e4b7;
         | 
| 153 158 | 
             
            $fa-var-arrow-up-right-from-square: \f08e;
         | 
| 154 159 | 
             
            $fa-var-external-link: \f08e;
         | 
| 155 160 | 
             
            $fa-var-arrow-up-short-wide: \f885;
         | 
| @@ -158,15 +163,26 @@ $fa-var-arrow-up-wide-short: \f161; | |
| 158 163 | 
             
            $fa-var-sort-amount-up: \f161;
         | 
| 159 164 | 
             
            $fa-var-arrow-up-z-a: \f882;
         | 
| 160 165 | 
             
            $fa-var-sort-alpha-up-alt: \f882;
         | 
| 166 | 
            +
            $fa-var-arrows-down-to-line: \e4b8;
         | 
| 167 | 
            +
            $fa-var-arrows-down-to-people: \e4b9;
         | 
| 161 168 | 
             
            $fa-var-arrows-left-right: \f07e;
         | 
| 162 169 | 
             
            $fa-var-arrows-h: \f07e;
         | 
| 170 | 
            +
            $fa-var-arrows-left-right-to-line: \e4ba;
         | 
| 163 171 | 
             
            $fa-var-arrows-rotate: \f021;
         | 
| 164 172 | 
             
            $fa-var-refresh: \f021;
         | 
| 165 173 | 
             
            $fa-var-sync: \f021;
         | 
| 174 | 
            +
            $fa-var-arrows-spin: \e4bb;
         | 
| 175 | 
            +
            $fa-var-arrows-split-up-and-left: \e4bc;
         | 
| 176 | 
            +
            $fa-var-arrows-to-circle: \e4bd;
         | 
| 177 | 
            +
            $fa-var-arrows-to-dot: \e4be;
         | 
| 178 | 
            +
            $fa-var-arrows-to-eye: \e4bf;
         | 
| 179 | 
            +
            $fa-var-arrows-turn-right: \e4c0;
         | 
| 180 | 
            +
            $fa-var-arrows-turn-to-dots: \e4c1;
         | 
| 166 181 | 
             
            $fa-var-arrows-up-down: \f07d;
         | 
| 167 182 | 
             
            $fa-var-arrows-v: \f07d;
         | 
| 168 183 | 
             
            $fa-var-arrows-up-down-left-right: \f047;
         | 
| 169 184 | 
             
            $fa-var-arrows: \f047;
         | 
| 185 | 
            +
            $fa-var-arrows-up-to-line: \e4c2;
         | 
| 170 186 | 
             
            $fa-var-asterisk: \2a;
         | 
| 171 187 | 
             
            $fa-var-at: \40;
         | 
| 172 188 | 
             
            $fa-var-atom: \f5d2;
         | 
| @@ -252,6 +268,7 @@ $fa-var-book-atlas: \f558; | |
| 252 268 | 
             
            $fa-var-atlas: \f558;
         | 
| 253 269 | 
             
            $fa-var-book-bible: \f647;
         | 
| 254 270 | 
             
            $fa-var-bible: \f647;
         | 
| 271 | 
            +
            $fa-var-book-bookmark: \e0bb;
         | 
| 255 272 | 
             
            $fa-var-book-journal-whills: \f66a;
         | 
| 256 273 | 
             
            $fa-var-journal-whills: \f66a;
         | 
| 257 274 | 
             
            $fa-var-book-medical: \f7e6;
         | 
| @@ -267,12 +284,18 @@ $fa-var-border-all: \f84c; | |
| 267 284 | 
             
            $fa-var-border-none: \f850;
         | 
| 268 285 | 
             
            $fa-var-border-top-left: \f853;
         | 
| 269 286 | 
             
            $fa-var-border-style: \f853;
         | 
| 287 | 
            +
            $fa-var-bore-hole: \e4c3;
         | 
| 288 | 
            +
            $fa-var-bottle-droplet: \e4c4;
         | 
| 289 | 
            +
            $fa-var-bottle-water: \e4c5;
         | 
| 290 | 
            +
            $fa-var-bowl-food: \e4c6;
         | 
| 291 | 
            +
            $fa-var-bowl-rice: \e2eb;
         | 
| 270 292 | 
             
            $fa-var-bowling-ball: \f436;
         | 
| 271 293 | 
             
            $fa-var-box: \f466;
         | 
| 272 294 | 
             
            $fa-var-box-archive: \f187;
         | 
| 273 295 | 
             
            $fa-var-archive: \f187;
         | 
| 274 296 | 
             
            $fa-var-box-open: \f49e;
         | 
| 275 297 | 
             
            $fa-var-box-tissue: \e05b;
         | 
| 298 | 
            +
            $fa-var-boxes-packing: \e4c7;
         | 
| 276 299 | 
             
            $fa-var-boxes-stacked: \f468;
         | 
| 277 300 | 
             
            $fa-var-boxes: \f468;
         | 
| 278 301 | 
             
            $fa-var-boxes-alt: \f468;
         | 
| @@ -280,6 +303,12 @@ $fa-var-braille: \f2a1; | |
| 280 303 | 
             
            $fa-var-brain: \f5dc;
         | 
| 281 304 | 
             
            $fa-var-brazilian-real-sign: \e46c;
         | 
| 282 305 | 
             
            $fa-var-bread-slice: \f7ec;
         | 
| 306 | 
            +
            $fa-var-bridge: \e4c8;
         | 
| 307 | 
            +
            $fa-var-bridge-circle-check: \e4c9;
         | 
| 308 | 
            +
            $fa-var-bridge-circle-exclamation: \e4ca;
         | 
| 309 | 
            +
            $fa-var-bridge-circle-xmark: \e4cb;
         | 
| 310 | 
            +
            $fa-var-bridge-lock: \e4cc;
         | 
| 311 | 
            +
            $fa-var-bridge-water: \e4ce;
         | 
| 283 312 | 
             
            $fa-var-briefcase: \f0b1;
         | 
| 284 313 | 
             
            $fa-var-briefcase-medical: \f469;
         | 
| 285 314 | 
             
            $fa-var-broom: \f51a;
         | 
| @@ -287,18 +316,32 @@ $fa-var-broom-ball: \f458; | |
| 287 316 | 
             
            $fa-var-quidditch: \f458;
         | 
| 288 317 | 
             
            $fa-var-quidditch-broom-ball: \f458;
         | 
| 289 318 | 
             
            $fa-var-brush: \f55d;
         | 
| 319 | 
            +
            $fa-var-bucket: \e4cf;
         | 
| 290 320 | 
             
            $fa-var-bug: \f188;
         | 
| 291 321 | 
             
            $fa-var-bug-slash: \e490;
         | 
| 322 | 
            +
            $fa-var-bugs: \e4d0;
         | 
| 292 323 | 
             
            $fa-var-building: \f1ad;
         | 
| 324 | 
            +
            $fa-var-building-circle-arrow-right: \e4d1;
         | 
| 325 | 
            +
            $fa-var-building-circle-check: \e4d2;
         | 
| 326 | 
            +
            $fa-var-building-circle-exclamation: \e4d3;
         | 
| 327 | 
            +
            $fa-var-building-circle-xmark: \e4d4;
         | 
| 293 328 | 
             
            $fa-var-building-columns: \f19c;
         | 
| 294 329 | 
             
            $fa-var-bank: \f19c;
         | 
| 295 330 | 
             
            $fa-var-institution: \f19c;
         | 
| 296 331 | 
             
            $fa-var-museum: \f19c;
         | 
| 297 332 | 
             
            $fa-var-university: \f19c;
         | 
| 333 | 
            +
            $fa-var-building-flag: \e4d5;
         | 
| 334 | 
            +
            $fa-var-building-lock: \e4d6;
         | 
| 335 | 
            +
            $fa-var-building-ngo: \e4d7;
         | 
| 336 | 
            +
            $fa-var-building-shield: \e4d8;
         | 
| 337 | 
            +
            $fa-var-building-un: \e4d9;
         | 
| 338 | 
            +
            $fa-var-building-user: \e4da;
         | 
| 339 | 
            +
            $fa-var-building-wheat: \e4db;
         | 
| 298 340 | 
             
            $fa-var-bullhorn: \f0a1;
         | 
| 299 341 | 
             
            $fa-var-bullseye: \f140;
         | 
| 300 342 | 
             
            $fa-var-burger: \f805;
         | 
| 301 343 | 
             
            $fa-var-hamburger: \f805;
         | 
| 344 | 
            +
            $fa-var-burst: \e4dc;
         | 
| 302 345 | 
             
            $fa-var-bus: \f207;
         | 
| 303 346 | 
             
            $fa-var-bus-simple: \f55e;
         | 
| 304 347 | 
             
            $fa-var-bus-alt: \f55e;
         | 
| @@ -331,10 +374,13 @@ $fa-var-car: \f1b9; | |
| 331 374 | 
             
            $fa-var-automobile: \f1b9;
         | 
| 332 375 | 
             
            $fa-var-car-battery: \f5df;
         | 
| 333 376 | 
             
            $fa-var-battery-car: \f5df;
         | 
| 377 | 
            +
            $fa-var-car-burst: \f5e1;
         | 
| 334 378 | 
             
            $fa-var-car-crash: \f5e1;
         | 
| 379 | 
            +
            $fa-var-car-on: \e4dd;
         | 
| 335 380 | 
             
            $fa-var-car-rear: \f5de;
         | 
| 336 381 | 
             
            $fa-var-car-alt: \f5de;
         | 
| 337 382 | 
             
            $fa-var-car-side: \f5e4;
         | 
| 383 | 
            +
            $fa-var-car-tunnel: \e4de;
         | 
| 338 384 | 
             
            $fa-var-caravan: \f8ff;
         | 
| 339 385 | 
             
            $fa-var-caret-down: \f0d7;
         | 
| 340 386 | 
             
            $fa-var-caret-left: \f0d9;
         | 
| @@ -372,6 +418,7 @@ $fa-var-chart-line: \f201; | |
| 372 418 | 
             
            $fa-var-line-chart: \f201;
         | 
| 373 419 | 
             
            $fa-var-chart-pie: \f200;
         | 
| 374 420 | 
             
            $fa-var-pie-chart: \f200;
         | 
| 421 | 
            +
            $fa-var-chart-simple: \e473;
         | 
| 375 422 | 
             
            $fa-var-check: \f00c;
         | 
| 376 423 | 
             
            $fa-var-check-double: \f560;
         | 
| 377 424 | 
             
            $fa-var-check-to-slot: \f772;
         | 
| @@ -390,6 +437,8 @@ $fa-var-chevron-left: \f053; | |
| 390 437 | 
             
            $fa-var-chevron-right: \f054;
         | 
| 391 438 | 
             
            $fa-var-chevron-up: \f077;
         | 
| 392 439 | 
             
            $fa-var-child: \f1ae;
         | 
| 440 | 
            +
            $fa-var-child-rifle: \e4e0;
         | 
| 441 | 
            +
            $fa-var-children: \e4e1;
         | 
| 393 442 | 
             
            $fa-var-church: \f51d;
         | 
| 394 443 | 
             
            $fa-var-circle: \f111;
         | 
| 395 444 | 
             
            $fa-var-circle-arrow-down: \f0ab;
         | 
| @@ -428,6 +477,7 @@ $fa-var-circle-left: \f359; | |
| 428 477 | 
             
            $fa-var-arrow-alt-circle-left: \f359;
         | 
| 429 478 | 
             
            $fa-var-circle-minus: \f056;
         | 
| 430 479 | 
             
            $fa-var-minus-circle: \f056;
         | 
| 480 | 
            +
            $fa-var-circle-nodes: \e4e2;
         | 
| 431 481 | 
             
            $fa-var-circle-notch: \f1ce;
         | 
| 432 482 | 
             
            $fa-var-circle-pause: \f28b;
         | 
| 433 483 | 
             
            $fa-var-pause-circle: \f28b;
         | 
| @@ -455,6 +505,8 @@ $fa-var-clapperboard: \e131; | |
| 455 505 | 
             
            $fa-var-clipboard: \f328;
         | 
| 456 506 | 
             
            $fa-var-clipboard-check: \f46c;
         | 
| 457 507 | 
             
            $fa-var-clipboard-list: \f46d;
         | 
| 508 | 
            +
            $fa-var-clipboard-question: \e4e3;
         | 
| 509 | 
            +
            $fa-var-clipboard-user: \f7f3;
         | 
| 458 510 | 
             
            $fa-var-clock: \f017;
         | 
| 459 511 | 
             
            $fa-var-clock-four: \f017;
         | 
| 460 512 | 
             
            $fa-var-clock-rotate-left: \f1da;
         | 
| @@ -468,11 +520,14 @@ $fa-var-cloud-download-alt: \f0ed; | |
| 468 520 | 
             
            $fa-var-cloud-arrow-up: \f0ee;
         | 
| 469 521 | 
             
            $fa-var-cloud-upload: \f0ee;
         | 
| 470 522 | 
             
            $fa-var-cloud-upload-alt: \f0ee;
         | 
| 523 | 
            +
            $fa-var-cloud-bolt: \f76c;
         | 
| 524 | 
            +
            $fa-var-thunderstorm: \f76c;
         | 
| 471 525 | 
             
            $fa-var-cloud-meatball: \f73b;
         | 
| 472 526 | 
             
            $fa-var-cloud-moon: \f6c3;
         | 
| 473 527 | 
             
            $fa-var-cloud-moon-rain: \f73c;
         | 
| 474 528 | 
             
            $fa-var-cloud-rain: \f73d;
         | 
| 475 529 | 
             
            $fa-var-cloud-showers-heavy: \f740;
         | 
| 530 | 
            +
            $fa-var-cloud-showers-water: \e4e4;
         | 
| 476 531 | 
             
            $fa-var-cloud-sun: \f6c4;
         | 
| 477 532 | 
             
            $fa-var-cloud-sun-rain: \f743;
         | 
| 478 533 | 
             
            $fa-var-clover: \e139;
         | 
| @@ -500,6 +555,7 @@ $fa-var-compass: \f14e; | |
| 500 555 | 
             
            $fa-var-compass-drafting: \f568;
         | 
| 501 556 | 
             
            $fa-var-drafting-compass: \f568;
         | 
| 502 557 | 
             
            $fa-var-compress: \f066;
         | 
| 558 | 
            +
            $fa-var-computer: \e4e5;
         | 
| 503 559 | 
             
            $fa-var-computer-mouse: \f8cc;
         | 
| 504 560 | 
             
            $fa-var-mouse: \f8cc;
         | 
| 505 561 | 
             
            $fa-var-cookie: \f563;
         | 
| @@ -507,6 +563,7 @@ $fa-var-cookie-bite: \f564; | |
| 507 563 | 
             
            $fa-var-copy: \f0c5;
         | 
| 508 564 | 
             
            $fa-var-copyright: \f1f9;
         | 
| 509 565 | 
             
            $fa-var-couch: \f4b8;
         | 
| 566 | 
            +
            $fa-var-cow: \f6c8;
         | 
| 510 567 | 
             
            $fa-var-credit-card: \f09d;
         | 
| 511 568 | 
             
            $fa-var-credit-card-alt: \f09d;
         | 
| 512 569 | 
             
            $fa-var-crop: \f125;
         | 
| @@ -520,6 +577,7 @@ $fa-var-crutch: \f7f7; | |
| 520 577 | 
             
            $fa-var-cruzeiro-sign: \e152;
         | 
| 521 578 | 
             
            $fa-var-cube: \f1b2;
         | 
| 522 579 | 
             
            $fa-var-cubes: \f1b3;
         | 
| 580 | 
            +
            $fa-var-cubes-stacked: \e4e6;
         | 
| 523 581 | 
             
            $fa-var-d: \44;
         | 
| 524 582 | 
             
            $fa-var-database: \f1c0;
         | 
| 525 583 | 
             
            $fa-var-delete-left: \f55a;
         | 
| @@ -546,6 +604,7 @@ $fa-var-dice-six: \f526; | |
| 546 604 | 
             
            $fa-var-dice-three: \f527;
         | 
| 547 605 | 
             
            $fa-var-dice-two: \f528;
         | 
| 548 606 | 
             
            $fa-var-disease: \f7fa;
         | 
| 607 | 
            +
            $fa-var-display: \e163;
         | 
| 549 608 | 
             
            $fa-var-divide: \f529;
         | 
| 550 609 | 
             
            $fa-var-dna: \f471;
         | 
| 551 610 | 
             
            $fa-var-dog: \f6d3;
         | 
| @@ -603,6 +662,7 @@ $fa-var-ellipsis-h: \f141; | |
| 603 662 | 
             
            $fa-var-ellipsis-vertical: \f142;
         | 
| 604 663 | 
             
            $fa-var-ellipsis-v: \f142;
         | 
| 605 664 | 
             
            $fa-var-envelope: \f0e0;
         | 
| 665 | 
            +
            $fa-var-envelope-circle-check: \e4e8;
         | 
| 606 666 | 
             
            $fa-var-envelope-open: \f2b6;
         | 
| 607 667 | 
             
            $fa-var-envelope-open-text: \f658;
         | 
| 608 668 | 
             
            $fa-var-envelopes-bulk: \f674;
         | 
| @@ -615,6 +675,7 @@ $fa-var-eur: \f153; | |
| 615 675 | 
             
            $fa-var-euro: \f153;
         | 
| 616 676 | 
             
            $fa-var-exclamation: \21;
         | 
| 617 677 | 
             
            $fa-var-expand: \f065;
         | 
| 678 | 
            +
            $fa-var-explosion: \e4e9;
         | 
| 618 679 | 
             
            $fa-var-eye: \f06e;
         | 
| 619 680 | 
             
            $fa-var-eye-dropper: \f1fb;
         | 
| 620 681 | 
             
            $fa-var-eye-dropper-empty: \f1fb;
         | 
| @@ -697,16 +758,24 @@ $fa-var-face-tired: \f5c8; | |
| 697 758 | 
             
            $fa-var-tired: \f5c8;
         | 
| 698 759 | 
             
            $fa-var-fan: \f863;
         | 
| 699 760 | 
             
            $fa-var-faucet: \e005;
         | 
| 761 | 
            +
            $fa-var-faucet-drip: \e006;
         | 
| 700 762 | 
             
            $fa-var-fax: \f1ac;
         | 
| 701 763 | 
             
            $fa-var-feather: \f52d;
         | 
| 702 764 | 
             
            $fa-var-feather-pointed: \f56b;
         | 
| 703 765 | 
             
            $fa-var-feather-alt: \f56b;
         | 
| 766 | 
            +
            $fa-var-ferry: \e4ea;
         | 
| 704 767 | 
             
            $fa-var-file: \f15b;
         | 
| 705 768 | 
             
            $fa-var-file-arrow-down: \f56d;
         | 
| 706 769 | 
             
            $fa-var-file-download: \f56d;
         | 
| 707 770 | 
             
            $fa-var-file-arrow-up: \f574;
         | 
| 708 771 | 
             
            $fa-var-file-upload: \f574;
         | 
| 709 772 | 
             
            $fa-var-file-audio: \f1c7;
         | 
| 773 | 
            +
            $fa-var-file-circle-check: \e493;
         | 
| 774 | 
            +
            $fa-var-file-circle-exclamation: \e4eb;
         | 
| 775 | 
            +
            $fa-var-file-circle-minus: \e4ed;
         | 
| 776 | 
            +
            $fa-var-file-circle-plus: \e4ee;
         | 
| 777 | 
            +
            $fa-var-file-circle-question: \e4ef;
         | 
| 778 | 
            +
            $fa-var-file-circle-xmark: \e494;
         | 
| 710 779 | 
             
            $fa-var-file-code: \f1c9;
         | 
| 711 780 | 
             
            $fa-var-file-contract: \f56c;
         | 
| 712 781 | 
             
            $fa-var-file-csv: \f6dd;
         | 
| @@ -723,8 +792,11 @@ $fa-var-file-alt: \f15c; | |
| 723 792 | 
             
            $fa-var-file-text: \f15c;
         | 
| 724 793 | 
             
            $fa-var-file-medical: \f477;
         | 
| 725 794 | 
             
            $fa-var-file-pdf: \f1c1;
         | 
| 795 | 
            +
            $fa-var-file-pen: \f31c;
         | 
| 796 | 
            +
            $fa-var-file-edit: \f31c;
         | 
| 726 797 | 
             
            $fa-var-file-powerpoint: \f1c4;
         | 
| 727 798 | 
             
            $fa-var-file-prescription: \f572;
         | 
| 799 | 
            +
            $fa-var-file-shield: \e4f0;
         | 
| 728 800 | 
             
            $fa-var-file-signature: \f573;
         | 
| 729 801 | 
             
            $fa-var-file-video: \f1c8;
         | 
| 730 802 | 
             
            $fa-var-file-waveform: \f478;
         | 
| @@ -741,20 +813,25 @@ $fa-var-funnel-dollar: \f662; | |
| 741 813 | 
             
            $fa-var-filter-circle-xmark: \e17b;
         | 
| 742 814 | 
             
            $fa-var-fingerprint: \f577;
         | 
| 743 815 | 
             
            $fa-var-fire: \f06d;
         | 
| 816 | 
            +
            $fa-var-fire-burner: \e4f1;
         | 
| 744 817 | 
             
            $fa-var-fire-extinguisher: \f134;
         | 
| 745 818 | 
             
            $fa-var-fire-flame-curved: \f7e4;
         | 
| 746 819 | 
             
            $fa-var-fire-alt: \f7e4;
         | 
| 747 820 | 
             
            $fa-var-fire-flame-simple: \f46a;
         | 
| 748 821 | 
             
            $fa-var-burn: \f46a;
         | 
| 749 822 | 
             
            $fa-var-fish: \f578;
         | 
| 823 | 
            +
            $fa-var-fish-fins: \e4f2;
         | 
| 750 824 | 
             
            $fa-var-flag: \f024;
         | 
| 751 825 | 
             
            $fa-var-flag-checkered: \f11e;
         | 
| 752 826 | 
             
            $fa-var-flag-usa: \f74d;
         | 
| 753 827 | 
             
            $fa-var-flask: \f0c3;
         | 
| 828 | 
            +
            $fa-var-flask-vial: \e4f3;
         | 
| 754 829 | 
             
            $fa-var-floppy-disk: \f0c7;
         | 
| 755 830 | 
             
            $fa-var-save: \f0c7;
         | 
| 756 831 | 
             
            $fa-var-florin-sign: \e184;
         | 
| 757 832 | 
             
            $fa-var-folder: \f07b;
         | 
| 833 | 
            +
            $fa-var-folder-blank: \f07b;
         | 
| 834 | 
            +
            $fa-var-folder-closed: \e185;
         | 
| 758 835 | 
             
            $fa-var-folder-minus: \f65d;
         | 
| 759 836 | 
             
            $fa-var-folder-open: \f07c;
         | 
| 760 837 | 
             
            $fa-var-folder-plus: \f65e;
         | 
| @@ -799,6 +876,8 @@ $fa-var-genderless: \f22d; | |
| 799 876 | 
             
            $fa-var-ghost: \f6e2;
         | 
| 800 877 | 
             
            $fa-var-gift: \f06b;
         | 
| 801 878 | 
             
            $fa-var-gifts: \f79c;
         | 
| 879 | 
            +
            $fa-var-glass-water: \e4f4;
         | 
| 880 | 
            +
            $fa-var-glass-water-droplet: \e4f5;
         | 
| 802 881 | 
             
            $fa-var-glasses: \f530;
         | 
| 803 882 | 
             
            $fa-var-globe: \f0ac;
         | 
| 804 883 | 
             
            $fa-var-golf-ball-tee: \f450;
         | 
| @@ -813,6 +892,7 @@ $fa-var-grip-horizontal: \f58d; | |
| 813 892 | 
             
            $fa-var-grip-lines: \f7a4;
         | 
| 814 893 | 
             
            $fa-var-grip-lines-vertical: \f7a5;
         | 
| 815 894 | 
             
            $fa-var-grip-vertical: \f58e;
         | 
| 895 | 
            +
            $fa-var-group-arrows-rotate: \e4f6;
         | 
| 816 896 | 
             
            $fa-var-guarani-sign: \e19a;
         | 
| 817 897 | 
             
            $fa-var-guitar: \f7a6;
         | 
| 818 898 | 
             
            $fa-var-gun: \e19b;
         | 
| @@ -832,6 +912,7 @@ $fa-var-hand-holding-dollar: \f4c0; | |
| 832 912 | 
             
            $fa-var-hand-holding-usd: \f4c0;
         | 
| 833 913 | 
             
            $fa-var-hand-holding-droplet: \f4c1;
         | 
| 834 914 | 
             
            $fa-var-hand-holding-water: \f4c1;
         | 
| 915 | 
            +
            $fa-var-hand-holding-hand: \e4f7;
         | 
| 835 916 | 
             
            $fa-var-hand-holding-heart: \f4be;
         | 
| 836 917 | 
             
            $fa-var-hand-holding-medical: \e05c;
         | 
| 837 918 | 
             
            $fa-var-hand-lizard: \f258;
         | 
| @@ -845,6 +926,7 @@ $fa-var-hand-pointer: \f25a; | |
| 845 926 | 
             
            $fa-var-hand-scissors: \f257;
         | 
| 846 927 | 
             
            $fa-var-hand-sparkles: \e05d;
         | 
| 847 928 | 
             
            $fa-var-hand-spock: \f259;
         | 
| 929 | 
            +
            $fa-var-handcuffs: \e4f8;
         | 
| 848 930 | 
             
            $fa-var-hands: \f2a7;
         | 
| 849 931 | 
             
            $fa-var-sign-language: \f2a7;
         | 
| 850 932 | 
             
            $fa-var-signing: \f2a7;
         | 
| @@ -852,15 +934,20 @@ $fa-var-hands-asl-interpreting: \f2a3; | |
| 852 934 | 
             
            $fa-var-american-sign-language-interpreting: \f2a3;
         | 
| 853 935 | 
             
            $fa-var-asl-interpreting: \f2a3;
         | 
| 854 936 | 
             
            $fa-var-hands-american-sign-language-interpreting: \f2a3;
         | 
| 937 | 
            +
            $fa-var-hands-bound: \e4f9;
         | 
| 855 938 | 
             
            $fa-var-hands-bubbles: \e05e;
         | 
| 856 939 | 
             
            $fa-var-hands-wash: \e05e;
         | 
| 857 940 | 
             
            $fa-var-hands-clapping: \e1a8;
         | 
| 858 941 | 
             
            $fa-var-hands-holding: \f4c2;
         | 
| 942 | 
            +
            $fa-var-hands-holding-child: \e4fa;
         | 
| 943 | 
            +
            $fa-var-hands-holding-circle: \e4fb;
         | 
| 859 944 | 
             
            $fa-var-hands-praying: \f684;
         | 
| 860 945 | 
             
            $fa-var-praying-hands: \f684;
         | 
| 861 946 | 
             
            $fa-var-handshake: \f2b5;
         | 
| 862 947 | 
             
            $fa-var-handshake-angle: \f4c4;
         | 
| 863 948 | 
             
            $fa-var-hands-helping: \f4c4;
         | 
| 949 | 
            +
            $fa-var-handshake-simple: \f4c6;
         | 
| 950 | 
            +
            $fa-var-handshake-alt: \f4c6;
         | 
| 864 951 | 
             
            $fa-var-handshake-simple-slash: \e05f;
         | 
| 865 952 | 
             
            $fa-var-handshake-alt-slash: \e05f;
         | 
| 866 953 | 
             
            $fa-var-handshake-slash: \e060;
         | 
| @@ -882,15 +969,25 @@ $fa-var-headphones-simple: \f58f; | |
| 882 969 | 
             
            $fa-var-headphones-alt: \f58f;
         | 
| 883 970 | 
             
            $fa-var-headset: \f590;
         | 
| 884 971 | 
             
            $fa-var-heart: \f004;
         | 
| 972 | 
            +
            $fa-var-heart-circle-bolt: \e4fc;
         | 
| 973 | 
            +
            $fa-var-heart-circle-check: \e4fd;
         | 
| 974 | 
            +
            $fa-var-heart-circle-exclamation: \e4fe;
         | 
| 975 | 
            +
            $fa-var-heart-circle-minus: \e4ff;
         | 
| 976 | 
            +
            $fa-var-heart-circle-plus: \e500;
         | 
| 977 | 
            +
            $fa-var-heart-circle-xmark: \e501;
         | 
| 885 978 | 
             
            $fa-var-heart-crack: \f7a9;
         | 
| 886 979 | 
             
            $fa-var-heart-broken: \f7a9;
         | 
| 887 980 | 
             
            $fa-var-heart-pulse: \f21e;
         | 
| 888 981 | 
             
            $fa-var-heartbeat: \f21e;
         | 
| 889 982 | 
             
            $fa-var-helicopter: \f533;
         | 
| 983 | 
            +
            $fa-var-helicopter-symbol: \e502;
         | 
| 890 984 | 
             
            $fa-var-helmet-safety: \f807;
         | 
| 891 985 | 
             
            $fa-var-hard-hat: \f807;
         | 
| 892 986 | 
             
            $fa-var-hat-hard: \f807;
         | 
| 987 | 
            +
            $fa-var-helmet-un: \e503;
         | 
| 893 988 | 
             
            $fa-var-highlighter: \f591;
         | 
| 989 | 
            +
            $fa-var-hill-avalanche: \e507;
         | 
| 990 | 
            +
            $fa-var-hill-rockslide: \e508;
         | 
| 894 991 | 
             
            $fa-var-hippo: \f6ed;
         | 
| 895 992 | 
             
            $fa-var-hockey-puck: \f453;
         | 
| 896 993 | 
             
            $fa-var-holly-berry: \f7aa;
         | 
| @@ -924,14 +1021,29 @@ $fa-var-house-chimney-medical: \f7f2; | |
| 924 1021 | 
             
            $fa-var-clinic-medical: \f7f2;
         | 
| 925 1022 | 
             
            $fa-var-house-chimney-user: \e065;
         | 
| 926 1023 | 
             
            $fa-var-house-chimney-window: \e00d;
         | 
| 1024 | 
            +
            $fa-var-house-circle-check: \e509;
         | 
| 1025 | 
            +
            $fa-var-house-circle-exclamation: \e50a;
         | 
| 1026 | 
            +
            $fa-var-house-circle-xmark: \e50b;
         | 
| 927 1027 | 
             
            $fa-var-house-crack: \e3b1;
         | 
| 1028 | 
            +
            $fa-var-house-fire: \e50c;
         | 
| 1029 | 
            +
            $fa-var-house-flag: \e50d;
         | 
| 1030 | 
            +
            $fa-var-house-flood-water: \e50e;
         | 
| 1031 | 
            +
            $fa-var-house-flood-water-circle-arrow-right: \e50f;
         | 
| 928 1032 | 
             
            $fa-var-house-laptop: \e066;
         | 
| 929 1033 | 
             
            $fa-var-laptop-house: \e066;
         | 
| 1034 | 
            +
            $fa-var-house-lock: \e510;
         | 
| 930 1035 | 
             
            $fa-var-house-medical: \e3b2;
         | 
| 1036 | 
            +
            $fa-var-house-medical-circle-check: \e511;
         | 
| 1037 | 
            +
            $fa-var-house-medical-circle-exclamation: \e512;
         | 
| 1038 | 
            +
            $fa-var-house-medical-circle-xmark: \e513;
         | 
| 1039 | 
            +
            $fa-var-house-medical-flag: \e514;
         | 
| 1040 | 
            +
            $fa-var-house-signal: \e012;
         | 
| 1041 | 
            +
            $fa-var-house-tsunami: \e515;
         | 
| 931 1042 | 
             
            $fa-var-house-user: \e1b0;
         | 
| 932 1043 | 
             
            $fa-var-home-user: \e1b0;
         | 
| 933 1044 | 
             
            $fa-var-hryvnia-sign: \f6f2;
         | 
| 934 1045 | 
             
            $fa-var-hryvnia: \f6f2;
         | 
| 1046 | 
            +
            $fa-var-hurricane: \f751;
         | 
| 935 1047 | 
             
            $fa-var-i: \49;
         | 
| 936 1048 | 
             
            $fa-var-i-cursor: \f246;
         | 
| 937 1049 | 
             
            $fa-var-ice-cream: \f810;
         | 
| @@ -958,10 +1070,14 @@ $fa-var-infinity: \f534; | |
| 958 1070 | 
             
            $fa-var-info: \f129;
         | 
| 959 1071 | 
             
            $fa-var-italic: \f033;
         | 
| 960 1072 | 
             
            $fa-var-j: \4a;
         | 
| 1073 | 
            +
            $fa-var-jar: \e516;
         | 
| 1074 | 
            +
            $fa-var-jar-wheat: \e517;
         | 
| 961 1075 | 
             
            $fa-var-jedi: \f669;
         | 
| 962 1076 | 
             
            $fa-var-jet-fighter: \f0fb;
         | 
| 963 1077 | 
             
            $fa-var-fighter-jet: \f0fb;
         | 
| 1078 | 
            +
            $fa-var-jet-fighter-up: \e518;
         | 
| 964 1079 | 
             
            $fa-var-joint: \f595;
         | 
| 1080 | 
            +
            $fa-var-jug-detergent: \e519;
         | 
| 965 1081 | 
             
            $fa-var-k: \4b;
         | 
| 966 1082 | 
             
            $fa-var-kaaba: \f66b;
         | 
| 967 1083 | 
             
            $fa-var-key: \f084;
         | 
| @@ -970,12 +1086,18 @@ $fa-var-khanda: \f66d; | |
| 970 1086 | 
             
            $fa-var-kip-sign: \e1c4;
         | 
| 971 1087 | 
             
            $fa-var-kit-medical: \f479;
         | 
| 972 1088 | 
             
            $fa-var-first-aid: \f479;
         | 
| 1089 | 
            +
            $fa-var-kitchen-set: \e51a;
         | 
| 973 1090 | 
             
            $fa-var-kiwi-bird: \f535;
         | 
| 974 1091 | 
             
            $fa-var-l: \4c;
         | 
| 1092 | 
            +
            $fa-var-land-mine-on: \e51b;
         | 
| 975 1093 | 
             
            $fa-var-landmark: \f66f;
         | 
| 1094 | 
            +
            $fa-var-landmark-dome: \f752;
         | 
| 1095 | 
            +
            $fa-var-landmark-alt: \f752;
         | 
| 1096 | 
            +
            $fa-var-landmark-flag: \e51c;
         | 
| 976 1097 | 
             
            $fa-var-language: \f1ab;
         | 
| 977 1098 | 
             
            $fa-var-laptop: \f109;
         | 
| 978 1099 | 
             
            $fa-var-laptop-code: \f5fc;
         | 
| 1100 | 
            +
            $fa-var-laptop-file: \e51d;
         | 
| 979 1101 | 
             
            $fa-var-laptop-medical: \f812;
         | 
| 980 1102 | 
             
            $fa-var-lari-sign: \e1c8;
         | 
| 981 1103 | 
             
            $fa-var-layer-group: \f5fd;
         | 
| @@ -989,6 +1111,7 @@ $fa-var-less-than: \3c; | |
| 989 1111 | 
             
            $fa-var-less-than-equal: \f537;
         | 
| 990 1112 | 
             
            $fa-var-life-ring: \f1cd;
         | 
| 991 1113 | 
             
            $fa-var-lightbulb: \f0eb;
         | 
| 1114 | 
            +
            $fa-var-lines-leaning: \e51e;
         | 
| 992 1115 | 
             
            $fa-var-link: \f0c1;
         | 
| 993 1116 | 
             
            $fa-var-chain: \f0c1;
         | 
| 994 1117 | 
             
            $fa-var-link-slash: \f127;
         | 
| @@ -1013,14 +1136,18 @@ $fa-var-location-dot: \f3c5; | |
| 1013 1136 | 
             
            $fa-var-map-marker-alt: \f3c5;
         | 
| 1014 1137 | 
             
            $fa-var-location-pin: \f041;
         | 
| 1015 1138 | 
             
            $fa-var-map-marker: \f041;
         | 
| 1139 | 
            +
            $fa-var-location-pin-lock: \e51f;
         | 
| 1016 1140 | 
             
            $fa-var-lock: \f023;
         | 
| 1017 1141 | 
             
            $fa-var-lock-open: \f3c1;
         | 
| 1142 | 
            +
            $fa-var-locust: \e520;
         | 
| 1018 1143 | 
             
            $fa-var-lungs: \f604;
         | 
| 1019 1144 | 
             
            $fa-var-lungs-virus: \e067;
         | 
| 1020 1145 | 
             
            $fa-var-m: \4d;
         | 
| 1021 1146 | 
             
            $fa-var-magnet: \f076;
         | 
| 1022 1147 | 
             
            $fa-var-magnifying-glass: \f002;
         | 
| 1023 1148 | 
             
            $fa-var-search: \f002;
         | 
| 1149 | 
            +
            $fa-var-magnifying-glass-arrow-right: \e521;
         | 
| 1150 | 
            +
            $fa-var-magnifying-glass-chart: \e522;
         | 
| 1024 1151 | 
             
            $fa-var-magnifying-glass-dollar: \f688;
         | 
| 1025 1152 | 
             
            $fa-var-search-dollar: \f688;
         | 
| 1026 1153 | 
             
            $fa-var-magnifying-glass-location: \f689;
         | 
| @@ -1039,6 +1166,7 @@ $fa-var-map-pin: \f276; | |
| 1039 1166 | 
             
            $fa-var-marker: \f5a1;
         | 
| 1040 1167 | 
             
            $fa-var-mars: \f222;
         | 
| 1041 1168 | 
             
            $fa-var-mars-and-venus: \f224;
         | 
| 1169 | 
            +
            $fa-var-mars-and-venus-burst: \e523;
         | 
| 1042 1170 | 
             
            $fa-var-mars-double: \f227;
         | 
| 1043 1171 | 
             
            $fa-var-mars-stroke: \f229;
         | 
| 1044 1172 | 
             
            $fa-var-mars-stroke-right: \f22b;
         | 
| @@ -1053,8 +1181,10 @@ $fa-var-martini-glass-empty: \f000; | |
| 1053 1181 | 
             
            $fa-var-glass-martini: \f000;
         | 
| 1054 1182 | 
             
            $fa-var-mask: \f6fa;
         | 
| 1055 1183 | 
             
            $fa-var-mask-face: \e1d7;
         | 
| 1184 | 
            +
            $fa-var-mask-ventilator: \e524;
         | 
| 1056 1185 | 
             
            $fa-var-masks-theater: \f630;
         | 
| 1057 1186 | 
             
            $fa-var-theater-masks: \f630;
         | 
| 1187 | 
            +
            $fa-var-mattress-pillow: \e525;
         | 
| 1058 1188 | 
             
            $fa-var-maximize: \f31e;
         | 
| 1059 1189 | 
             
            $fa-var-expand-arrows-alt: \f31e;
         | 
| 1060 1190 | 
             
            $fa-var-medal: \f5a2;
         | 
| @@ -1082,6 +1212,9 @@ $fa-var-mobile: \f3ce; | |
| 1082 1212 | 
             
            $fa-var-mobile-android: \f3ce;
         | 
| 1083 1213 | 
             
            $fa-var-mobile-phone: \f3ce;
         | 
| 1084 1214 | 
             
            $fa-var-mobile-button: \f10b;
         | 
| 1215 | 
            +
            $fa-var-mobile-retro: \e527;
         | 
| 1216 | 
            +
            $fa-var-mobile-screen: \f3cf;
         | 
| 1217 | 
            +
            $fa-var-mobile-android-alt: \f3cf;
         | 
| 1085 1218 | 
             
            $fa-var-mobile-screen-button: \f3cd;
         | 
| 1086 1219 | 
             
            $fa-var-mobile-alt: \f3cd;
         | 
| 1087 1220 | 
             
            $fa-var-money-bill: \f0d6;
         | 
| @@ -1089,7 +1222,11 @@ $fa-var-money-bill-1: \f3d1; | |
| 1089 1222 | 
             
            $fa-var-money-bill-alt: \f3d1;
         | 
| 1090 1223 | 
             
            $fa-var-money-bill-1-wave: \f53b;
         | 
| 1091 1224 | 
             
            $fa-var-money-bill-wave-alt: \f53b;
         | 
| 1225 | 
            +
            $fa-var-money-bill-transfer: \e528;
         | 
| 1226 | 
            +
            $fa-var-money-bill-trend-up: \e529;
         | 
| 1092 1227 | 
             
            $fa-var-money-bill-wave: \f53a;
         | 
| 1228 | 
            +
            $fa-var-money-bill-wheat: \e52a;
         | 
| 1229 | 
            +
            $fa-var-money-bills: \e1f3;
         | 
| 1093 1230 | 
             
            $fa-var-money-check: \f53c;
         | 
| 1094 1231 | 
             
            $fa-var-money-check-dollar: \f53d;
         | 
| 1095 1232 | 
             
            $fa-var-money-check-alt: \f53d;
         | 
| @@ -1097,8 +1234,13 @@ $fa-var-monument: \f5a6; | |
| 1097 1234 | 
             
            $fa-var-moon: \f186;
         | 
| 1098 1235 | 
             
            $fa-var-mortar-pestle: \f5a7;
         | 
| 1099 1236 | 
             
            $fa-var-mosque: \f678;
         | 
| 1237 | 
            +
            $fa-var-mosquito: \e52b;
         | 
| 1238 | 
            +
            $fa-var-mosquito-net: \e52c;
         | 
| 1100 1239 | 
             
            $fa-var-motorcycle: \f21c;
         | 
| 1240 | 
            +
            $fa-var-mound: \e52d;
         | 
| 1101 1241 | 
             
            $fa-var-mountain: \f6fc;
         | 
| 1242 | 
            +
            $fa-var-mountain-city: \e52e;
         | 
| 1243 | 
            +
            $fa-var-mountain-sun: \e52f;
         | 
| 1102 1244 | 
             
            $fa-var-mug-hot: \f7b6;
         | 
| 1103 1245 | 
             
            $fa-var-mug-saucer: \f0f4;
         | 
| 1104 1246 | 
             
            $fa-var-coffee: \f0f4;
         | 
| @@ -1116,6 +1258,7 @@ $fa-var-o: \4f; | |
| 1116 1258 | 
             
            $fa-var-object-group: \f247;
         | 
| 1117 1259 | 
             
            $fa-var-object-ungroup: \f248;
         | 
| 1118 1260 | 
             
            $fa-var-oil-can: \f613;
         | 
| 1261 | 
            +
            $fa-var-oil-well: \e532;
         | 
| 1119 1262 | 
             
            $fa-var-om: \f679;
         | 
| 1120 1263 | 
             
            $fa-var-otter: \f700;
         | 
| 1121 1264 | 
             
            $fa-var-outdent: \f03b;
         | 
| @@ -1153,24 +1296,56 @@ $fa-var-people-arrows-left-right: \e068; | |
| 1153 1296 | 
             
            $fa-var-people-arrows: \e068;
         | 
| 1154 1297 | 
             
            $fa-var-people-carry-box: \f4ce;
         | 
| 1155 1298 | 
             
            $fa-var-people-carry: \f4ce;
         | 
| 1299 | 
            +
            $fa-var-people-group: \e533;
         | 
| 1300 | 
            +
            $fa-var-people-line: \e534;
         | 
| 1301 | 
            +
            $fa-var-people-pulling: \e535;
         | 
| 1302 | 
            +
            $fa-var-people-robbery: \e536;
         | 
| 1303 | 
            +
            $fa-var-people-roof: \e537;
         | 
| 1156 1304 | 
             
            $fa-var-pepper-hot: \f816;
         | 
| 1157 1305 | 
             
            $fa-var-percent: \25;
         | 
| 1158 1306 | 
             
            $fa-var-percentage: \25;
         | 
| 1159 1307 | 
             
            $fa-var-person: \f183;
         | 
| 1160 1308 | 
             
            $fa-var-male: \f183;
         | 
| 1309 | 
            +
            $fa-var-person-arrow-down-to-line: \e538;
         | 
| 1310 | 
            +
            $fa-var-person-arrow-up-from-line: \e539;
         | 
| 1161 1311 | 
             
            $fa-var-person-biking: \f84a;
         | 
| 1162 1312 | 
             
            $fa-var-biking: \f84a;
         | 
| 1163 1313 | 
             
            $fa-var-person-booth: \f756;
         | 
| 1314 | 
            +
            $fa-var-person-breastfeeding: \e53a;
         | 
| 1315 | 
            +
            $fa-var-person-burst: \e53b;
         | 
| 1316 | 
            +
            $fa-var-person-cane: \e53c;
         | 
| 1317 | 
            +
            $fa-var-person-chalkboard: \e53d;
         | 
| 1318 | 
            +
            $fa-var-person-circle-check: \e53e;
         | 
| 1319 | 
            +
            $fa-var-person-circle-exclamation: \e53f;
         | 
| 1320 | 
            +
            $fa-var-person-circle-minus: \e540;
         | 
| 1321 | 
            +
            $fa-var-person-circle-plus: \e541;
         | 
| 1322 | 
            +
            $fa-var-person-circle-question: \e542;
         | 
| 1323 | 
            +
            $fa-var-person-circle-xmark: \e543;
         | 
| 1324 | 
            +
            $fa-var-person-digging: \f85e;
         | 
| 1325 | 
            +
            $fa-var-digging: \f85e;
         | 
| 1164 1326 | 
             
            $fa-var-person-dots-from-line: \f470;
         | 
| 1165 1327 | 
             
            $fa-var-diagnoses: \f470;
         | 
| 1166 1328 | 
             
            $fa-var-person-dress: \f182;
         | 
| 1167 1329 | 
             
            $fa-var-female: \f182;
         | 
| 1330 | 
            +
            $fa-var-person-dress-burst: \e544;
         | 
| 1331 | 
            +
            $fa-var-person-drowning: \e545;
         | 
| 1332 | 
            +
            $fa-var-person-falling: \e546;
         | 
| 1333 | 
            +
            $fa-var-person-falling-burst: \e547;
         | 
| 1334 | 
            +
            $fa-var-person-half-dress: \e548;
         | 
| 1335 | 
            +
            $fa-var-person-harassing: \e549;
         | 
| 1168 1336 | 
             
            $fa-var-person-hiking: \f6ec;
         | 
| 1169 1337 | 
             
            $fa-var-hiking: \f6ec;
         | 
| 1338 | 
            +
            $fa-var-person-military-pointing: \e54a;
         | 
| 1339 | 
            +
            $fa-var-person-military-rifle: \e54b;
         | 
| 1340 | 
            +
            $fa-var-person-military-to-person: \e54c;
         | 
| 1170 1341 | 
             
            $fa-var-person-praying: \f683;
         | 
| 1171 1342 | 
             
            $fa-var-pray: \f683;
         | 
| 1343 | 
            +
            $fa-var-person-pregnant: \e31e;
         | 
| 1344 | 
            +
            $fa-var-person-rays: \e54d;
         | 
| 1345 | 
            +
            $fa-var-person-rifle: \e54e;
         | 
| 1172 1346 | 
             
            $fa-var-person-running: \f70c;
         | 
| 1173 1347 | 
             
            $fa-var-running: \f70c;
         | 
| 1348 | 
            +
            $fa-var-person-shelter: \e54f;
         | 
| 1174 1349 | 
             
            $fa-var-person-skating: \f7c5;
         | 
| 1175 1350 | 
             
            $fa-var-skating: \f7c5;
         | 
| 1176 1351 | 
             
            $fa-var-person-skiing: \f7c9;
         | 
| @@ -1181,8 +1356,13 @@ $fa-var-person-snowboarding: \f7ce; | |
| 1181 1356 | 
             
            $fa-var-snowboarding: \f7ce;
         | 
| 1182 1357 | 
             
            $fa-var-person-swimming: \f5c4;
         | 
| 1183 1358 | 
             
            $fa-var-swimmer: \f5c4;
         | 
| 1359 | 
            +
            $fa-var-person-through-window: \e433;
         | 
| 1184 1360 | 
             
            $fa-var-person-walking: \f554;
         | 
| 1185 1361 | 
             
            $fa-var-walking: \f554;
         | 
| 1362 | 
            +
            $fa-var-person-walking-arrow-loop-left: \e551;
         | 
| 1363 | 
            +
            $fa-var-person-walking-arrow-right: \e552;
         | 
| 1364 | 
            +
            $fa-var-person-walking-dashed-line-arrow-right: \e553;
         | 
| 1365 | 
            +
            $fa-var-person-walking-luggage: \e554;
         | 
| 1186 1366 | 
             
            $fa-var-person-walking-with-cane: \f29d;
         | 
| 1187 1367 | 
             
            $fa-var-blind: \f29d;
         | 
| 1188 1368 | 
             
            $fa-var-peseta-sign: \e221;
         | 
| @@ -1201,10 +1381,23 @@ $fa-var-pizza-slice: \f818; | |
| 1201 1381 | 
             
            $fa-var-place-of-worship: \f67f;
         | 
| 1202 1382 | 
             
            $fa-var-plane: \f072;
         | 
| 1203 1383 | 
             
            $fa-var-plane-arrival: \f5af;
         | 
| 1384 | 
            +
            $fa-var-plane-circle-check: \e555;
         | 
| 1385 | 
            +
            $fa-var-plane-circle-exclamation: \e556;
         | 
| 1386 | 
            +
            $fa-var-plane-circle-xmark: \e557;
         | 
| 1204 1387 | 
             
            $fa-var-plane-departure: \f5b0;
         | 
| 1388 | 
            +
            $fa-var-plane-lock: \e558;
         | 
| 1205 1389 | 
             
            $fa-var-plane-slash: \e069;
         | 
| 1390 | 
            +
            $fa-var-plane-up: \e22d;
         | 
| 1391 | 
            +
            $fa-var-plant-wilt: \e43b;
         | 
| 1392 | 
            +
            $fa-var-plate-wheat: \e55a;
         | 
| 1206 1393 | 
             
            $fa-var-play: \f04b;
         | 
| 1207 1394 | 
             
            $fa-var-plug: \f1e6;
         | 
| 1395 | 
            +
            $fa-var-plug-circle-bolt: \e55b;
         | 
| 1396 | 
            +
            $fa-var-plug-circle-check: \e55c;
         | 
| 1397 | 
            +
            $fa-var-plug-circle-exclamation: \e55d;
         | 
| 1398 | 
            +
            $fa-var-plug-circle-minus: \e55e;
         | 
| 1399 | 
            +
            $fa-var-plug-circle-plus: \e55f;
         | 
| 1400 | 
            +
            $fa-var-plug-circle-xmark: \e560;
         | 
| 1208 1401 | 
             
            $fa-var-plus: \2b;
         | 
| 1209 1402 | 
             
            $fa-var-add: \2b;
         | 
| 1210 1403 | 
             
            $fa-var-plus-minus: \e43c;
         | 
| @@ -1231,7 +1424,9 @@ $fa-var-quote-right: \f10e; | |
| 1231 1424 | 
             
            $fa-var-quote-right-alt: \f10e;
         | 
| 1232 1425 | 
             
            $fa-var-r: \52;
         | 
| 1233 1426 | 
             
            $fa-var-radiation: \f7b9;
         | 
| 1427 | 
            +
            $fa-var-radio: \f8d7;
         | 
| 1234 1428 | 
             
            $fa-var-rainbow: \f75b;
         | 
| 1429 | 
            +
            $fa-var-ranking-star: \e561;
         | 
| 1235 1430 | 
             
            $fa-var-receipt: \f543;
         | 
| 1236 1431 | 
             
            $fa-var-record-vinyl: \f8d9;
         | 
| 1237 1432 | 
             
            $fa-var-rectangle-ad: \f641;
         | 
| @@ -1263,6 +1458,13 @@ $fa-var-right-to-bracket: \f2f6; | |
| 1263 1458 | 
             
            $fa-var-sign-in-alt: \f2f6;
         | 
| 1264 1459 | 
             
            $fa-var-ring: \f70b;
         | 
| 1265 1460 | 
             
            $fa-var-road: \f018;
         | 
| 1461 | 
            +
            $fa-var-road-barrier: \e562;
         | 
| 1462 | 
            +
            $fa-var-road-bridge: \e563;
         | 
| 1463 | 
            +
            $fa-var-road-circle-check: \e564;
         | 
| 1464 | 
            +
            $fa-var-road-circle-exclamation: \e565;
         | 
| 1465 | 
            +
            $fa-var-road-circle-xmark: \e566;
         | 
| 1466 | 
            +
            $fa-var-road-lock: \e567;
         | 
| 1467 | 
            +
            $fa-var-road-spikes: \e568;
         | 
| 1266 1468 | 
             
            $fa-var-robot: \f544;
         | 
| 1267 1469 | 
             
            $fa-var-rocket: \f135;
         | 
| 1268 1470 | 
             
            $fa-var-rotate: \f2f1;
         | 
| @@ -1281,6 +1483,7 @@ $fa-var-ruble-sign: \f158; | |
| 1281 1483 | 
             
            $fa-var-rouble: \f158;
         | 
| 1282 1484 | 
             
            $fa-var-rub: \f158;
         | 
| 1283 1485 | 
             
            $fa-var-ruble: \f158;
         | 
| 1486 | 
            +
            $fa-var-rug: \e569;
         | 
| 1284 1487 | 
             
            $fa-var-ruler: \f545;
         | 
| 1285 1488 | 
             
            $fa-var-ruler-combined: \f546;
         | 
| 1286 1489 | 
             
            $fa-var-ruler-horizontal: \f547;
         | 
| @@ -1289,6 +1492,8 @@ $fa-var-rupee-sign: \f156; | |
| 1289 1492 | 
             
            $fa-var-rupee: \f156;
         | 
| 1290 1493 | 
             
            $fa-var-rupiah-sign: \e23d;
         | 
| 1291 1494 | 
             
            $fa-var-s: \53;
         | 
| 1495 | 
            +
            $fa-var-sack-dollar: \f81d;
         | 
| 1496 | 
            +
            $fa-var-sack-xmark: \e56a;
         | 
| 1292 1497 | 
             
            $fa-var-sailboat: \e445;
         | 
| 1293 1498 | 
             
            $fa-var-satellite: \f7bf;
         | 
| 1294 1499 | 
             
            $fa-var-satellite-dish: \f7c0;
         | 
| @@ -1299,6 +1504,11 @@ $fa-var-balance-scale-left: \f515; | |
| 1299 1504 | 
             
            $fa-var-scale-unbalanced-flip: \f516;
         | 
| 1300 1505 | 
             
            $fa-var-balance-scale-right: \f516;
         | 
| 1301 1506 | 
             
            $fa-var-school: \f549;
         | 
| 1507 | 
            +
            $fa-var-school-circle-check: \e56b;
         | 
| 1508 | 
            +
            $fa-var-school-circle-exclamation: \e56c;
         | 
| 1509 | 
            +
            $fa-var-school-circle-xmark: \e56d;
         | 
| 1510 | 
            +
            $fa-var-school-flag: \e56e;
         | 
| 1511 | 
            +
            $fa-var-school-lock: \e56f;
         | 
| 1302 1512 | 
             
            $fa-var-scissors: \f0c4;
         | 
| 1303 1513 | 
             
            $fa-var-cut: \f0c4;
         | 
| 1304 1514 | 
             
            $fa-var-screwdriver: \f54a;
         | 
| @@ -1321,14 +1531,19 @@ $fa-var-share-from-square: \f14d; | |
| 1321 1531 | 
             
            $fa-var-share-square: \f14d;
         | 
| 1322 1532 | 
             
            $fa-var-share-nodes: \f1e0;
         | 
| 1323 1533 | 
             
            $fa-var-share-alt: \f1e0;
         | 
| 1534 | 
            +
            $fa-var-sheet-plastic: \e571;
         | 
| 1324 1535 | 
             
            $fa-var-shekel-sign: \f20b;
         | 
| 1325 1536 | 
             
            $fa-var-ils: \f20b;
         | 
| 1326 1537 | 
             
            $fa-var-shekel: \f20b;
         | 
| 1327 1538 | 
             
            $fa-var-sheqel: \f20b;
         | 
| 1328 1539 | 
             
            $fa-var-sheqel-sign: \f20b;
         | 
| 1329 1540 | 
             
            $fa-var-shield: \f132;
         | 
| 1330 | 
            -
            $fa-var-shield-blank: \ | 
| 1541 | 
            +
            $fa-var-shield-blank: \f132;
         | 
| 1542 | 
            +
            $fa-var-shield-cat: \e572;
         | 
| 1543 | 
            +
            $fa-var-shield-dog: \e573;
         | 
| 1544 | 
            +
            $fa-var-shield-halved: \f3ed;
         | 
| 1331 1545 | 
             
            $fa-var-shield-alt: \f3ed;
         | 
| 1546 | 
            +
            $fa-var-shield-heart: \e574;
         | 
| 1332 1547 | 
             
            $fa-var-shield-virus: \e06c;
         | 
| 1333 1548 | 
             
            $fa-var-ship: \f21a;
         | 
| 1334 1549 | 
             
            $fa-var-shirt: \f553;
         | 
| @@ -1337,6 +1552,7 @@ $fa-var-tshirt: \f553; | |
| 1337 1552 | 
             
            $fa-var-shoe-prints: \f54b;
         | 
| 1338 1553 | 
             
            $fa-var-shop: \f54f;
         | 
| 1339 1554 | 
             
            $fa-var-store-alt: \f54f;
         | 
| 1555 | 
            +
            $fa-var-shop-lock: \e4a5;
         | 
| 1340 1556 | 
             
            $fa-var-shop-slash: \e070;
         | 
| 1341 1557 | 
             
            $fa-var-store-alt-slash: \e070;
         | 
| 1342 1558 | 
             
            $fa-var-shower: \f2cc;
         | 
| @@ -1408,11 +1624,13 @@ $fa-var-square-h: \f0fd; | |
| 1408 1624 | 
             
            $fa-var-h-square: \f0fd;
         | 
| 1409 1625 | 
             
            $fa-var-square-minus: \f146;
         | 
| 1410 1626 | 
             
            $fa-var-minus-square: \f146;
         | 
| 1627 | 
            +
            $fa-var-square-nfi: \e576;
         | 
| 1411 1628 | 
             
            $fa-var-square-parking: \f540;
         | 
| 1412 1629 | 
             
            $fa-var-parking: \f540;
         | 
| 1413 1630 | 
             
            $fa-var-square-pen: \f14b;
         | 
| 1414 1631 | 
             
            $fa-var-pen-square: \f14b;
         | 
| 1415 1632 | 
             
            $fa-var-pencil-square: \f14b;
         | 
| 1633 | 
            +
            $fa-var-square-person-confined: \e577;
         | 
| 1416 1634 | 
             
            $fa-var-square-phone: \f098;
         | 
| 1417 1635 | 
             
            $fa-var-phone-square: \f098;
         | 
| 1418 1636 | 
             
            $fa-var-square-phone-flip: \f87b;
         | 
| @@ -1431,9 +1649,14 @@ $fa-var-square-share-nodes: \f1e1; | |
| 1431 1649 | 
             
            $fa-var-share-alt-square: \f1e1;
         | 
| 1432 1650 | 
             
            $fa-var-square-up-right: \f360;
         | 
| 1433 1651 | 
             
            $fa-var-external-link-square-alt: \f360;
         | 
| 1652 | 
            +
            $fa-var-square-virus: \e578;
         | 
| 1434 1653 | 
             
            $fa-var-square-xmark: \f2d3;
         | 
| 1435 1654 | 
             
            $fa-var-times-square: \f2d3;
         | 
| 1436 1655 | 
             
            $fa-var-xmark-square: \f2d3;
         | 
| 1656 | 
            +
            $fa-var-staff-aesculapius: \e579;
         | 
| 1657 | 
            +
            $fa-var-rod-asclepius: \e579;
         | 
| 1658 | 
            +
            $fa-var-rod-snake: \e579;
         | 
| 1659 | 
            +
            $fa-var-staff-snake: \e579;
         | 
| 1437 1660 | 
             
            $fa-var-stairs: \e289;
         | 
| 1438 1661 | 
             
            $fa-var-stamp: \f5bf;
         | 
| 1439 1662 | 
             
            $fa-var-star: \f005;
         | 
| @@ -1461,6 +1684,7 @@ $fa-var-suitcase-medical: \f0fa; | |
| 1461 1684 | 
             
            $fa-var-medkit: \f0fa;
         | 
| 1462 1685 | 
             
            $fa-var-suitcase-rolling: \f5c1;
         | 
| 1463 1686 | 
             
            $fa-var-sun: \f185;
         | 
| 1687 | 
            +
            $fa-var-sun-plant-wilt: \e57a;
         | 
| 1464 1688 | 
             
            $fa-var-superscript: \f12b;
         | 
| 1465 1689 | 
             
            $fa-var-swatchbook: \f5c3;
         | 
| 1466 1690 | 
             
            $fa-var-synagogue: \f69b;
         | 
| @@ -1489,10 +1713,16 @@ $fa-var-digital-tachograph: \f566; | |
| 1489 1713 | 
             
            $fa-var-tag: \f02b;
         | 
| 1490 1714 | 
             
            $fa-var-tags: \f02c;
         | 
| 1491 1715 | 
             
            $fa-var-tape: \f4db;
         | 
| 1716 | 
            +
            $fa-var-tarp: \e57b;
         | 
| 1717 | 
            +
            $fa-var-tarp-droplet: \e57c;
         | 
| 1492 1718 | 
             
            $fa-var-taxi: \f1ba;
         | 
| 1493 1719 | 
             
            $fa-var-cab: \f1ba;
         | 
| 1494 1720 | 
             
            $fa-var-teeth: \f62e;
         | 
| 1495 1721 | 
             
            $fa-var-teeth-open: \f62f;
         | 
| 1722 | 
            +
            $fa-var-temperature-arrow-down: \e03f;
         | 
| 1723 | 
            +
            $fa-var-temperature-down: \e03f;
         | 
| 1724 | 
            +
            $fa-var-temperature-arrow-up: \e040;
         | 
| 1725 | 
            +
            $fa-var-temperature-up: \e040;
         | 
| 1496 1726 | 
             
            $fa-var-temperature-empty: \f2cb;
         | 
| 1497 1727 | 
             
            $fa-var-temperature-0: \f2cb;
         | 
| 1498 1728 | 
             
            $fa-var-thermometer-0: \f2cb;
         | 
| @@ -1517,6 +1747,12 @@ $fa-var-thermometer-3: \f2c8; | |
| 1517 1747 | 
             
            $fa-var-thermometer-three-quarters: \f2c8;
         | 
| 1518 1748 | 
             
            $fa-var-tenge-sign: \f7d7;
         | 
| 1519 1749 | 
             
            $fa-var-tenge: \f7d7;
         | 
| 1750 | 
            +
            $fa-var-tent: \e57d;
         | 
| 1751 | 
            +
            $fa-var-tent-arrow-down-to-line: \e57e;
         | 
| 1752 | 
            +
            $fa-var-tent-arrow-left-right: \e57f;
         | 
| 1753 | 
            +
            $fa-var-tent-arrow-turn-left: \e580;
         | 
| 1754 | 
            +
            $fa-var-tent-arrows-down: \e581;
         | 
| 1755 | 
            +
            $fa-var-tents: \e582;
         | 
| 1520 1756 | 
             
            $fa-var-terminal: \f120;
         | 
| 1521 1757 | 
             
            $fa-var-text-height: \f034;
         | 
| 1522 1758 | 
             
            $fa-var-text-slash: \f87d;
         | 
| @@ -1536,11 +1772,16 @@ $fa-var-toggle-on: \f205; | |
| 1536 1772 | 
             
            $fa-var-toilet: \f7d8;
         | 
| 1537 1773 | 
             
            $fa-var-toilet-paper: \f71e;
         | 
| 1538 1774 | 
             
            $fa-var-toilet-paper-slash: \e072;
         | 
| 1775 | 
            +
            $fa-var-toilet-portable: \e583;
         | 
| 1776 | 
            +
            $fa-var-toilets-portable: \e584;
         | 
| 1539 1777 | 
             
            $fa-var-toolbox: \f552;
         | 
| 1540 1778 | 
             
            $fa-var-tooth: \f5c9;
         | 
| 1541 1779 | 
             
            $fa-var-torii-gate: \f6a1;
         | 
| 1780 | 
            +
            $fa-var-tornado: \f76f;
         | 
| 1542 1781 | 
             
            $fa-var-tower-broadcast: \f519;
         | 
| 1543 1782 | 
             
            $fa-var-broadcast-tower: \f519;
         | 
| 1783 | 
            +
            $fa-var-tower-cell: \e585;
         | 
| 1784 | 
            +
            $fa-var-tower-observation: \e586;
         | 
| 1544 1785 | 
             
            $fa-var-tractor: \f722;
         | 
| 1545 1786 | 
             
            $fa-var-trademark: \f25c;
         | 
| 1546 1787 | 
             
            $fa-var-traffic-light: \f637;
         | 
| @@ -1560,18 +1801,27 @@ $fa-var-trash-alt: \f2ed; | |
| 1560 1801 | 
             
            $fa-var-trash-can-arrow-up: \f82a;
         | 
| 1561 1802 | 
             
            $fa-var-trash-restore-alt: \f82a;
         | 
| 1562 1803 | 
             
            $fa-var-tree: \f1bb;
         | 
| 1804 | 
            +
            $fa-var-tree-city: \e587;
         | 
| 1563 1805 | 
             
            $fa-var-triangle-exclamation: \f071;
         | 
| 1564 1806 | 
             
            $fa-var-exclamation-triangle: \f071;
         | 
| 1565 1807 | 
             
            $fa-var-warning: \f071;
         | 
| 1566 1808 | 
             
            $fa-var-trophy: \f091;
         | 
| 1809 | 
            +
            $fa-var-trowel: \e589;
         | 
| 1810 | 
            +
            $fa-var-trowel-bricks: \e58a;
         | 
| 1567 1811 | 
             
            $fa-var-truck: \f0d1;
         | 
| 1812 | 
            +
            $fa-var-truck-arrow-right: \e58b;
         | 
| 1813 | 
            +
            $fa-var-truck-droplet: \e58c;
         | 
| 1568 1814 | 
             
            $fa-var-truck-fast: \f48b;
         | 
| 1569 1815 | 
             
            $fa-var-shipping-fast: \f48b;
         | 
| 1816 | 
            +
            $fa-var-truck-field: \e58d;
         | 
| 1817 | 
            +
            $fa-var-truck-field-un: \e58e;
         | 
| 1818 | 
            +
            $fa-var-truck-front: \e2b7;
         | 
| 1570 1819 | 
             
            $fa-var-truck-medical: \f0f9;
         | 
| 1571 1820 | 
             
            $fa-var-ambulance: \f0f9;
         | 
| 1572 1821 | 
             
            $fa-var-truck-monster: \f63b;
         | 
| 1573 1822 | 
             
            $fa-var-truck-moving: \f4df;
         | 
| 1574 1823 | 
             
            $fa-var-truck-pickup: \f63c;
         | 
| 1824 | 
            +
            $fa-var-truck-plane: \e58f;
         | 
| 1575 1825 | 
             
            $fa-var-truck-ramp-box: \f4de;
         | 
| 1576 1826 | 
             
            $fa-var-truck-loading: \f4de;
         | 
| 1577 1827 | 
             
            $fa-var-tty: \f1e4;
         | 
| @@ -1636,9 +1886,14 @@ $fa-var-user-tie: \f508; | |
| 1636 1886 | 
             
            $fa-var-user-xmark: \f235;
         | 
| 1637 1887 | 
             
            $fa-var-user-times: \f235;
         | 
| 1638 1888 | 
             
            $fa-var-users: \f0c0;
         | 
| 1889 | 
            +
            $fa-var-users-between-lines: \e591;
         | 
| 1639 1890 | 
             
            $fa-var-users-gear: \f509;
         | 
| 1640 1891 | 
             
            $fa-var-users-cog: \f509;
         | 
| 1892 | 
            +
            $fa-var-users-line: \e592;
         | 
| 1893 | 
            +
            $fa-var-users-rays: \e593;
         | 
| 1894 | 
            +
            $fa-var-users-rectangle: \e594;
         | 
| 1641 1895 | 
             
            $fa-var-users-slash: \e073;
         | 
| 1896 | 
            +
            $fa-var-users-viewfinder: \e595;
         | 
| 1642 1897 | 
             
            $fa-var-utensils: \f2e7;
         | 
| 1643 1898 | 
             
            $fa-var-cutlery: \f2e7;
         | 
| 1644 1899 | 
             
            $fa-var-v: \56;
         | 
| @@ -1652,6 +1907,8 @@ $fa-var-venus-mars: \f228; | |
| 1652 1907 | 
             
            $fa-var-vest: \e085;
         | 
| 1653 1908 | 
             
            $fa-var-vest-patches: \e086;
         | 
| 1654 1909 | 
             
            $fa-var-vial: \f492;
         | 
| 1910 | 
            +
            $fa-var-vial-circle-check: \e596;
         | 
| 1911 | 
            +
            $fa-var-vial-virus: \e597;
         | 
| 1655 1912 | 
             
            $fa-var-vials: \f493;
         | 
| 1656 1913 | 
             
            $fa-var-video: \f03d;
         | 
| 1657 1914 | 
             
            $fa-var-video-camera: \f03d;
         | 
| @@ -1663,6 +1920,7 @@ $fa-var-virus-covid-slash: \e4a9; | |
| 1663 1920 | 
             
            $fa-var-virus-slash: \e075;
         | 
| 1664 1921 | 
             
            $fa-var-viruses: \e076;
         | 
| 1665 1922 | 
             
            $fa-var-voicemail: \f897;
         | 
| 1923 | 
            +
            $fa-var-volcano: \f770;
         | 
| 1666 1924 | 
             
            $fa-var-volleyball: \f45f;
         | 
| 1667 1925 | 
             
            $fa-var-volleyball-ball: \f45f;
         | 
| 1668 1926 | 
             
            $fa-var-volume-high: \f028;
         | 
| @@ -1675,6 +1933,7 @@ $fa-var-volume-mute: \f6a9; | |
| 1675 1933 | 
             
            $fa-var-volume-times: \f6a9;
         | 
| 1676 1934 | 
             
            $fa-var-vr-cardboard: \f729;
         | 
| 1677 1935 | 
             
            $fa-var-w: \57;
         | 
| 1936 | 
            +
            $fa-var-walkie-talkie: \f8ef;
         | 
| 1678 1937 | 
             
            $fa-var-wallet: \f555;
         | 
| 1679 1938 | 
             
            $fa-var-wand-magic: \f0d0;
         | 
| 1680 1939 | 
             
            $fa-var-magic: \f0d0;
         | 
| @@ -1690,7 +1949,12 @@ $fa-var-wave-square: \f83e; | |
| 1690 1949 | 
             
            $fa-var-weight-hanging: \f5cd;
         | 
| 1691 1950 | 
             
            $fa-var-weight-scale: \f496;
         | 
| 1692 1951 | 
             
            $fa-var-weight: \f496;
         | 
| 1952 | 
            +
            $fa-var-wheat-awn: \e2cd;
         | 
| 1953 | 
            +
            $fa-var-wheat-alt: \e2cd;
         | 
| 1954 | 
            +
            $fa-var-wheat-awn-circle-exclamation: \e598;
         | 
| 1693 1955 | 
             
            $fa-var-wheelchair: \f193;
         | 
| 1956 | 
            +
            $fa-var-wheelchair-move: \e2ce;
         | 
| 1957 | 
            +
            $fa-var-wheelchair-alt: \e2ce;
         | 
| 1694 1958 | 
             
            $fa-var-whiskey-glass: \f7a0;
         | 
| 1695 1959 | 
             
            $fa-var-glass-whiskey: \f7a0;
         | 
| 1696 1960 | 
             
            $fa-var-wifi: \f1eb;
         | 
| @@ -1707,6 +1971,7 @@ $fa-var-wine-glass-alt: \f5ce; | |
| 1707 1971 | 
             
            $fa-var-won-sign: \f159;
         | 
| 1708 1972 | 
             
            $fa-var-krw: \f159;
         | 
| 1709 1973 | 
             
            $fa-var-won: \f159;
         | 
| 1974 | 
            +
            $fa-var-worm: \e599;
         | 
| 1710 1975 | 
             
            $fa-var-wrench: \f0ad;
         | 
| 1711 1976 | 
             
            $fa-var-x: \58;
         | 
| 1712 1977 | 
             
            $fa-var-x-ray: \f497;
         | 
| @@ -1715,6 +1980,7 @@ $fa-var-close: \f00d; | |
| 1715 1980 | 
             
            $fa-var-multiply: \f00d;
         | 
| 1716 1981 | 
             
            $fa-var-remove: \f00d;
         | 
| 1717 1982 | 
             
            $fa-var-times: \f00d;
         | 
| 1983 | 
            +
            $fa-var-xmarks-lines: \e59a;
         | 
| 1718 1984 | 
             
            $fa-var-y: \59;
         | 
| 1719 1985 | 
             
            $fa-var-yen-sign: \f157;
         | 
| 1720 1986 | 
             
            $fa-var-cny: \f157;
         | 
| @@ -1997,6 +2263,8 @@ $fa-var-modx: \f285; | |
| 1997 2263 | 
             
            $fa-var-monero: \f3d0;
         | 
| 1998 2264 | 
             
            $fa-var-napster: \f3d2;
         | 
| 1999 2265 | 
             
            $fa-var-neos: \f612;
         | 
| 2266 | 
            +
            $fa-var-nfc-directional: \e530;
         | 
| 2267 | 
            +
            $fa-var-nfc-symbol: \e531;
         | 
| 2000 2268 | 
             
            $fa-var-nimblr: \f5a8;
         | 
| 2001 2269 | 
             
            $fa-var-node: \f419;
         | 
| 2002 2270 | 
             
            $fa-var-node-js: \f3d3;
         | 
| @@ -2065,6 +2333,7 @@ $fa-var-safari: \f267; | |
| 2065 2333 | 
             
            $fa-var-salesforce: \f83b;
         | 
| 2066 2334 | 
             
            $fa-var-sass: \f41e;
         | 
| 2067 2335 | 
             
            $fa-var-schlix: \f3ea;
         | 
| 2336 | 
            +
            $fa-var-screenpal: \e570;
         | 
| 2068 2337 | 
             
            $fa-var-scribd: \f28a;
         | 
| 2069 2338 | 
             
            $fa-var-searchengin: \f3eb;
         | 
| 2070 2339 | 
             
            $fa-var-sellcast: \f2da;
         | 
| @@ -2215,6 +2484,10 @@ $fa-icons: ( | |
| 2215 2484 | 
             
              "align-left": $fa-var-align-left,
         | 
| 2216 2485 | 
             
              "align-right": $fa-var-align-right,
         | 
| 2217 2486 | 
             
              "anchor": $fa-var-anchor,
         | 
| 2487 | 
            +
              "anchor-circle-check": $fa-var-anchor-circle-check,
         | 
| 2488 | 
            +
              "anchor-circle-exclamation": $fa-var-anchor-circle-exclamation,
         | 
| 2489 | 
            +
              "anchor-circle-xmark": $fa-var-anchor-circle-xmark,
         | 
| 2490 | 
            +
              "anchor-lock": $fa-var-anchor-lock,
         | 
| 2218 2491 | 
             
              "angle-down": $fa-var-angle-down,
         | 
| 2219 2492 | 
             
              "angle-left": $fa-var-angle-left,
         | 
| 2220 2493 | 
             
              "angle-right": $fa-var-angle-right,
         | 
| @@ -2246,6 +2519,8 @@ $fa-icons: ( | |
| 2246 2519 | 
             
              "arrow-down-short-wide": $fa-var-arrow-down-short-wide,
         | 
| 2247 2520 | 
             
              "sort-amount-desc": $fa-var-sort-amount-desc,
         | 
| 2248 2521 | 
             
              "sort-amount-down-alt": $fa-var-sort-amount-down-alt,
         | 
| 2522 | 
            +
              "arrow-down-up-across-line": $fa-var-arrow-down-up-across-line,
         | 
| 2523 | 
            +
              "arrow-down-up-lock": $fa-var-arrow-down-up-lock,
         | 
| 2249 2524 | 
             
              "arrow-down-wide-short": $fa-var-arrow-down-wide-short,
         | 
| 2250 2525 | 
             
              "sort-amount-asc": $fa-var-sort-amount-asc,
         | 
| 2251 2526 | 
             
              "sort-amount-down": $fa-var-sort-amount-down,
         | 
| @@ -2266,6 +2541,7 @@ $fa-icons: ( | |
| 2266 2541 | 
             
              "long-arrow-right": $fa-var-long-arrow-right,
         | 
| 2267 2542 | 
             
              "arrow-right-to-bracket": $fa-var-arrow-right-to-bracket,
         | 
| 2268 2543 | 
             
              "sign-in": $fa-var-sign-in,
         | 
| 2544 | 
            +
              "arrow-right-to-city": $fa-var-arrow-right-to-city,
         | 
| 2269 2545 | 
             
              "arrow-rotate-left": $fa-var-arrow-rotate-left,
         | 
| 2270 2546 | 
             
              "arrow-left-rotate": $fa-var-arrow-left-rotate,
         | 
| 2271 2547 | 
             
              "arrow-rotate-back": $fa-var-arrow-rotate-back,
         | 
| @@ -2289,8 +2565,11 @@ $fa-icons: ( | |
| 2289 2565 | 
             
              "arrow-up-a-z": $fa-var-arrow-up-a-z,
         | 
| 2290 2566 | 
             
              "sort-alpha-up": $fa-var-sort-alpha-up,
         | 
| 2291 2567 | 
             
              "arrow-up-from-bracket": $fa-var-arrow-up-from-bracket,
         | 
| 2568 | 
            +
              "arrow-up-from-ground-water": $fa-var-arrow-up-from-ground-water,
         | 
| 2569 | 
            +
              "arrow-up-from-water-pump": $fa-var-arrow-up-from-water-pump,
         | 
| 2292 2570 | 
             
              "arrow-up-long": $fa-var-arrow-up-long,
         | 
| 2293 2571 | 
             
              "long-arrow-up": $fa-var-long-arrow-up,
         | 
| 2572 | 
            +
              "arrow-up-right-dots": $fa-var-arrow-up-right-dots,
         | 
| 2294 2573 | 
             
              "arrow-up-right-from-square": $fa-var-arrow-up-right-from-square,
         | 
| 2295 2574 | 
             
              "external-link": $fa-var-external-link,
         | 
| 2296 2575 | 
             
              "arrow-up-short-wide": $fa-var-arrow-up-short-wide,
         | 
| @@ -2299,15 +2578,26 @@ $fa-icons: ( | |
| 2299 2578 | 
             
              "sort-amount-up": $fa-var-sort-amount-up,
         | 
| 2300 2579 | 
             
              "arrow-up-z-a": $fa-var-arrow-up-z-a,
         | 
| 2301 2580 | 
             
              "sort-alpha-up-alt": $fa-var-sort-alpha-up-alt,
         | 
| 2581 | 
            +
              "arrows-down-to-line": $fa-var-arrows-down-to-line,
         | 
| 2582 | 
            +
              "arrows-down-to-people": $fa-var-arrows-down-to-people,
         | 
| 2302 2583 | 
             
              "arrows-left-right": $fa-var-arrows-left-right,
         | 
| 2303 2584 | 
             
              "arrows-h": $fa-var-arrows-h,
         | 
| 2585 | 
            +
              "arrows-left-right-to-line": $fa-var-arrows-left-right-to-line,
         | 
| 2304 2586 | 
             
              "arrows-rotate": $fa-var-arrows-rotate,
         | 
| 2305 2587 | 
             
              "refresh": $fa-var-refresh,
         | 
| 2306 2588 | 
             
              "sync": $fa-var-sync,
         | 
| 2589 | 
            +
              "arrows-spin": $fa-var-arrows-spin,
         | 
| 2590 | 
            +
              "arrows-split-up-and-left": $fa-var-arrows-split-up-and-left,
         | 
| 2591 | 
            +
              "arrows-to-circle": $fa-var-arrows-to-circle,
         | 
| 2592 | 
            +
              "arrows-to-dot": $fa-var-arrows-to-dot,
         | 
| 2593 | 
            +
              "arrows-to-eye": $fa-var-arrows-to-eye,
         | 
| 2594 | 
            +
              "arrows-turn-right": $fa-var-arrows-turn-right,
         | 
| 2595 | 
            +
              "arrows-turn-to-dots": $fa-var-arrows-turn-to-dots,
         | 
| 2307 2596 | 
             
              "arrows-up-down": $fa-var-arrows-up-down,
         | 
| 2308 2597 | 
             
              "arrows-v": $fa-var-arrows-v,
         | 
| 2309 2598 | 
             
              "arrows-up-down-left-right": $fa-var-arrows-up-down-left-right,
         | 
| 2310 2599 | 
             
              "arrows": $fa-var-arrows,
         | 
| 2600 | 
            +
              "arrows-up-to-line": $fa-var-arrows-up-to-line,
         | 
| 2311 2601 | 
             
              "asterisk": $fa-var-asterisk,
         | 
| 2312 2602 | 
             
              "at": $fa-var-at,
         | 
| 2313 2603 | 
             
              "atom": $fa-var-atom,
         | 
| @@ -2393,6 +2683,7 @@ $fa-icons: ( | |
| 2393 2683 | 
             
              "atlas": $fa-var-atlas,
         | 
| 2394 2684 | 
             
              "book-bible": $fa-var-book-bible,
         | 
| 2395 2685 | 
             
              "bible": $fa-var-bible,
         | 
| 2686 | 
            +
              "book-bookmark": $fa-var-book-bookmark,
         | 
| 2396 2687 | 
             
              "book-journal-whills": $fa-var-book-journal-whills,
         | 
| 2397 2688 | 
             
              "journal-whills": $fa-var-journal-whills,
         | 
| 2398 2689 | 
             
              "book-medical": $fa-var-book-medical,
         | 
| @@ -2408,12 +2699,18 @@ $fa-icons: ( | |
| 2408 2699 | 
             
              "border-none": $fa-var-border-none,
         | 
| 2409 2700 | 
             
              "border-top-left": $fa-var-border-top-left,
         | 
| 2410 2701 | 
             
              "border-style": $fa-var-border-style,
         | 
| 2702 | 
            +
              "bore-hole": $fa-var-bore-hole,
         | 
| 2703 | 
            +
              "bottle-droplet": $fa-var-bottle-droplet,
         | 
| 2704 | 
            +
              "bottle-water": $fa-var-bottle-water,
         | 
| 2705 | 
            +
              "bowl-food": $fa-var-bowl-food,
         | 
| 2706 | 
            +
              "bowl-rice": $fa-var-bowl-rice,
         | 
| 2411 2707 | 
             
              "bowling-ball": $fa-var-bowling-ball,
         | 
| 2412 2708 | 
             
              "box": $fa-var-box,
         | 
| 2413 2709 | 
             
              "box-archive": $fa-var-box-archive,
         | 
| 2414 2710 | 
             
              "archive": $fa-var-archive,
         | 
| 2415 2711 | 
             
              "box-open": $fa-var-box-open,
         | 
| 2416 2712 | 
             
              "box-tissue": $fa-var-box-tissue,
         | 
| 2713 | 
            +
              "boxes-packing": $fa-var-boxes-packing,
         | 
| 2417 2714 | 
             
              "boxes-stacked": $fa-var-boxes-stacked,
         | 
| 2418 2715 | 
             
              "boxes": $fa-var-boxes,
         | 
| 2419 2716 | 
             
              "boxes-alt": $fa-var-boxes-alt,
         | 
| @@ -2421,6 +2718,12 @@ $fa-icons: ( | |
| 2421 2718 | 
             
              "brain": $fa-var-brain,
         | 
| 2422 2719 | 
             
              "brazilian-real-sign": $fa-var-brazilian-real-sign,
         | 
| 2423 2720 | 
             
              "bread-slice": $fa-var-bread-slice,
         | 
| 2721 | 
            +
              "bridge": $fa-var-bridge,
         | 
| 2722 | 
            +
              "bridge-circle-check": $fa-var-bridge-circle-check,
         | 
| 2723 | 
            +
              "bridge-circle-exclamation": $fa-var-bridge-circle-exclamation,
         | 
| 2724 | 
            +
              "bridge-circle-xmark": $fa-var-bridge-circle-xmark,
         | 
| 2725 | 
            +
              "bridge-lock": $fa-var-bridge-lock,
         | 
| 2726 | 
            +
              "bridge-water": $fa-var-bridge-water,
         | 
| 2424 2727 | 
             
              "briefcase": $fa-var-briefcase,
         | 
| 2425 2728 | 
             
              "briefcase-medical": $fa-var-briefcase-medical,
         | 
| 2426 2729 | 
             
              "broom": $fa-var-broom,
         | 
| @@ -2428,18 +2731,32 @@ $fa-icons: ( | |
| 2428 2731 | 
             
              "quidditch": $fa-var-quidditch,
         | 
| 2429 2732 | 
             
              "quidditch-broom-ball": $fa-var-quidditch-broom-ball,
         | 
| 2430 2733 | 
             
              "brush": $fa-var-brush,
         | 
| 2734 | 
            +
              "bucket": $fa-var-bucket,
         | 
| 2431 2735 | 
             
              "bug": $fa-var-bug,
         | 
| 2432 2736 | 
             
              "bug-slash": $fa-var-bug-slash,
         | 
| 2737 | 
            +
              "bugs": $fa-var-bugs,
         | 
| 2433 2738 | 
             
              "building": $fa-var-building,
         | 
| 2739 | 
            +
              "building-circle-arrow-right": $fa-var-building-circle-arrow-right,
         | 
| 2740 | 
            +
              "building-circle-check": $fa-var-building-circle-check,
         | 
| 2741 | 
            +
              "building-circle-exclamation": $fa-var-building-circle-exclamation,
         | 
| 2742 | 
            +
              "building-circle-xmark": $fa-var-building-circle-xmark,
         | 
| 2434 2743 | 
             
              "building-columns": $fa-var-building-columns,
         | 
| 2435 2744 | 
             
              "bank": $fa-var-bank,
         | 
| 2436 2745 | 
             
              "institution": $fa-var-institution,
         | 
| 2437 2746 | 
             
              "museum": $fa-var-museum,
         | 
| 2438 2747 | 
             
              "university": $fa-var-university,
         | 
| 2748 | 
            +
              "building-flag": $fa-var-building-flag,
         | 
| 2749 | 
            +
              "building-lock": $fa-var-building-lock,
         | 
| 2750 | 
            +
              "building-ngo": $fa-var-building-ngo,
         | 
| 2751 | 
            +
              "building-shield": $fa-var-building-shield,
         | 
| 2752 | 
            +
              "building-un": $fa-var-building-un,
         | 
| 2753 | 
            +
              "building-user": $fa-var-building-user,
         | 
| 2754 | 
            +
              "building-wheat": $fa-var-building-wheat,
         | 
| 2439 2755 | 
             
              "bullhorn": $fa-var-bullhorn,
         | 
| 2440 2756 | 
             
              "bullseye": $fa-var-bullseye,
         | 
| 2441 2757 | 
             
              "burger": $fa-var-burger,
         | 
| 2442 2758 | 
             
              "hamburger": $fa-var-hamburger,
         | 
| 2759 | 
            +
              "burst": $fa-var-burst,
         | 
| 2443 2760 | 
             
              "bus": $fa-var-bus,
         | 
| 2444 2761 | 
             
              "bus-simple": $fa-var-bus-simple,
         | 
| 2445 2762 | 
             
              "bus-alt": $fa-var-bus-alt,
         | 
| @@ -2472,10 +2789,13 @@ $fa-icons: ( | |
| 2472 2789 | 
             
              "automobile": $fa-var-automobile,
         | 
| 2473 2790 | 
             
              "car-battery": $fa-var-car-battery,
         | 
| 2474 2791 | 
             
              "battery-car": $fa-var-battery-car,
         | 
| 2792 | 
            +
              "car-burst": $fa-var-car-burst,
         | 
| 2475 2793 | 
             
              "car-crash": $fa-var-car-crash,
         | 
| 2794 | 
            +
              "car-on": $fa-var-car-on,
         | 
| 2476 2795 | 
             
              "car-rear": $fa-var-car-rear,
         | 
| 2477 2796 | 
             
              "car-alt": $fa-var-car-alt,
         | 
| 2478 2797 | 
             
              "car-side": $fa-var-car-side,
         | 
| 2798 | 
            +
              "car-tunnel": $fa-var-car-tunnel,
         | 
| 2479 2799 | 
             
              "caravan": $fa-var-caravan,
         | 
| 2480 2800 | 
             
              "caret-down": $fa-var-caret-down,
         | 
| 2481 2801 | 
             
              "caret-left": $fa-var-caret-left,
         | 
| @@ -2513,6 +2833,7 @@ $fa-icons: ( | |
| 2513 2833 | 
             
              "line-chart": $fa-var-line-chart,
         | 
| 2514 2834 | 
             
              "chart-pie": $fa-var-chart-pie,
         | 
| 2515 2835 | 
             
              "pie-chart": $fa-var-pie-chart,
         | 
| 2836 | 
            +
              "chart-simple": $fa-var-chart-simple,
         | 
| 2516 2837 | 
             
              "check": $fa-var-check,
         | 
| 2517 2838 | 
             
              "check-double": $fa-var-check-double,
         | 
| 2518 2839 | 
             
              "check-to-slot": $fa-var-check-to-slot,
         | 
| @@ -2531,6 +2852,8 @@ $fa-icons: ( | |
| 2531 2852 | 
             
              "chevron-right": $fa-var-chevron-right,
         | 
| 2532 2853 | 
             
              "chevron-up": $fa-var-chevron-up,
         | 
| 2533 2854 | 
             
              "child": $fa-var-child,
         | 
| 2855 | 
            +
              "child-rifle": $fa-var-child-rifle,
         | 
| 2856 | 
            +
              "children": $fa-var-children,
         | 
| 2534 2857 | 
             
              "church": $fa-var-church,
         | 
| 2535 2858 | 
             
              "circle": $fa-var-circle,
         | 
| 2536 2859 | 
             
              "circle-arrow-down": $fa-var-circle-arrow-down,
         | 
| @@ -2569,6 +2892,7 @@ $fa-icons: ( | |
| 2569 2892 | 
             
              "arrow-alt-circle-left": $fa-var-arrow-alt-circle-left,
         | 
| 2570 2893 | 
             
              "circle-minus": $fa-var-circle-minus,
         | 
| 2571 2894 | 
             
              "minus-circle": $fa-var-minus-circle,
         | 
| 2895 | 
            +
              "circle-nodes": $fa-var-circle-nodes,
         | 
| 2572 2896 | 
             
              "circle-notch": $fa-var-circle-notch,
         | 
| 2573 2897 | 
             
              "circle-pause": $fa-var-circle-pause,
         | 
| 2574 2898 | 
             
              "pause-circle": $fa-var-pause-circle,
         | 
| @@ -2596,6 +2920,8 @@ $fa-icons: ( | |
| 2596 2920 | 
             
              "clipboard": $fa-var-clipboard,
         | 
| 2597 2921 | 
             
              "clipboard-check": $fa-var-clipboard-check,
         | 
| 2598 2922 | 
             
              "clipboard-list": $fa-var-clipboard-list,
         | 
| 2923 | 
            +
              "clipboard-question": $fa-var-clipboard-question,
         | 
| 2924 | 
            +
              "clipboard-user": $fa-var-clipboard-user,
         | 
| 2599 2925 | 
             
              "clock": $fa-var-clock,
         | 
| 2600 2926 | 
             
              "clock-four": $fa-var-clock-four,
         | 
| 2601 2927 | 
             
              "clock-rotate-left": $fa-var-clock-rotate-left,
         | 
| @@ -2609,11 +2935,14 @@ $fa-icons: ( | |
| 2609 2935 | 
             
              "cloud-arrow-up": $fa-var-cloud-arrow-up,
         | 
| 2610 2936 | 
             
              "cloud-upload": $fa-var-cloud-upload,
         | 
| 2611 2937 | 
             
              "cloud-upload-alt": $fa-var-cloud-upload-alt,
         | 
| 2938 | 
            +
              "cloud-bolt": $fa-var-cloud-bolt,
         | 
| 2939 | 
            +
              "thunderstorm": $fa-var-thunderstorm,
         | 
| 2612 2940 | 
             
              "cloud-meatball": $fa-var-cloud-meatball,
         | 
| 2613 2941 | 
             
              "cloud-moon": $fa-var-cloud-moon,
         | 
| 2614 2942 | 
             
              "cloud-moon-rain": $fa-var-cloud-moon-rain,
         | 
| 2615 2943 | 
             
              "cloud-rain": $fa-var-cloud-rain,
         | 
| 2616 2944 | 
             
              "cloud-showers-heavy": $fa-var-cloud-showers-heavy,
         | 
| 2945 | 
            +
              "cloud-showers-water": $fa-var-cloud-showers-water,
         | 
| 2617 2946 | 
             
              "cloud-sun": $fa-var-cloud-sun,
         | 
| 2618 2947 | 
             
              "cloud-sun-rain": $fa-var-cloud-sun-rain,
         | 
| 2619 2948 | 
             
              "clover": $fa-var-clover,
         | 
| @@ -2641,6 +2970,7 @@ $fa-icons: ( | |
| 2641 2970 | 
             
              "compass-drafting": $fa-var-compass-drafting,
         | 
| 2642 2971 | 
             
              "drafting-compass": $fa-var-drafting-compass,
         | 
| 2643 2972 | 
             
              "compress": $fa-var-compress,
         | 
| 2973 | 
            +
              "computer": $fa-var-computer,
         | 
| 2644 2974 | 
             
              "computer-mouse": $fa-var-computer-mouse,
         | 
| 2645 2975 | 
             
              "mouse": $fa-var-mouse,
         | 
| 2646 2976 | 
             
              "cookie": $fa-var-cookie,
         | 
| @@ -2648,6 +2978,7 @@ $fa-icons: ( | |
| 2648 2978 | 
             
              "copy": $fa-var-copy,
         | 
| 2649 2979 | 
             
              "copyright": $fa-var-copyright,
         | 
| 2650 2980 | 
             
              "couch": $fa-var-couch,
         | 
| 2981 | 
            +
              "cow": $fa-var-cow,
         | 
| 2651 2982 | 
             
              "credit-card": $fa-var-credit-card,
         | 
| 2652 2983 | 
             
              "credit-card-alt": $fa-var-credit-card-alt,
         | 
| 2653 2984 | 
             
              "crop": $fa-var-crop,
         | 
| @@ -2661,6 +2992,7 @@ $fa-icons: ( | |
| 2661 2992 | 
             
              "cruzeiro-sign": $fa-var-cruzeiro-sign,
         | 
| 2662 2993 | 
             
              "cube": $fa-var-cube,
         | 
| 2663 2994 | 
             
              "cubes": $fa-var-cubes,
         | 
| 2995 | 
            +
              "cubes-stacked": $fa-var-cubes-stacked,
         | 
| 2664 2996 | 
             
              "d": $fa-var-d,
         | 
| 2665 2997 | 
             
              "database": $fa-var-database,
         | 
| 2666 2998 | 
             
              "delete-left": $fa-var-delete-left,
         | 
| @@ -2687,6 +3019,7 @@ $fa-icons: ( | |
| 2687 3019 | 
             
              "dice-three": $fa-var-dice-three,
         | 
| 2688 3020 | 
             
              "dice-two": $fa-var-dice-two,
         | 
| 2689 3021 | 
             
              "disease": $fa-var-disease,
         | 
| 3022 | 
            +
              "display": $fa-var-display,
         | 
| 2690 3023 | 
             
              "divide": $fa-var-divide,
         | 
| 2691 3024 | 
             
              "dna": $fa-var-dna,
         | 
| 2692 3025 | 
             
              "dog": $fa-var-dog,
         | 
| @@ -2744,6 +3077,7 @@ $fa-icons: ( | |
| 2744 3077 | 
             
              "ellipsis-vertical": $fa-var-ellipsis-vertical,
         | 
| 2745 3078 | 
             
              "ellipsis-v": $fa-var-ellipsis-v,
         | 
| 2746 3079 | 
             
              "envelope": $fa-var-envelope,
         | 
| 3080 | 
            +
              "envelope-circle-check": $fa-var-envelope-circle-check,
         | 
| 2747 3081 | 
             
              "envelope-open": $fa-var-envelope-open,
         | 
| 2748 3082 | 
             
              "envelope-open-text": $fa-var-envelope-open-text,
         | 
| 2749 3083 | 
             
              "envelopes-bulk": $fa-var-envelopes-bulk,
         | 
| @@ -2756,6 +3090,7 @@ $fa-icons: ( | |
| 2756 3090 | 
             
              "euro": $fa-var-euro,
         | 
| 2757 3091 | 
             
              "exclamation": $fa-var-exclamation,
         | 
| 2758 3092 | 
             
              "expand": $fa-var-expand,
         | 
| 3093 | 
            +
              "explosion": $fa-var-explosion,
         | 
| 2759 3094 | 
             
              "eye": $fa-var-eye,
         | 
| 2760 3095 | 
             
              "eye-dropper": $fa-var-eye-dropper,
         | 
| 2761 3096 | 
             
              "eye-dropper-empty": $fa-var-eye-dropper-empty,
         | 
| @@ -2838,16 +3173,24 @@ $fa-icons: ( | |
| 2838 3173 | 
             
              "tired": $fa-var-tired,
         | 
| 2839 3174 | 
             
              "fan": $fa-var-fan,
         | 
| 2840 3175 | 
             
              "faucet": $fa-var-faucet,
         | 
| 3176 | 
            +
              "faucet-drip": $fa-var-faucet-drip,
         | 
| 2841 3177 | 
             
              "fax": $fa-var-fax,
         | 
| 2842 3178 | 
             
              "feather": $fa-var-feather,
         | 
| 2843 3179 | 
             
              "feather-pointed": $fa-var-feather-pointed,
         | 
| 2844 3180 | 
             
              "feather-alt": $fa-var-feather-alt,
         | 
| 3181 | 
            +
              "ferry": $fa-var-ferry,
         | 
| 2845 3182 | 
             
              "file": $fa-var-file,
         | 
| 2846 3183 | 
             
              "file-arrow-down": $fa-var-file-arrow-down,
         | 
| 2847 3184 | 
             
              "file-download": $fa-var-file-download,
         | 
| 2848 3185 | 
             
              "file-arrow-up": $fa-var-file-arrow-up,
         | 
| 2849 3186 | 
             
              "file-upload": $fa-var-file-upload,
         | 
| 2850 3187 | 
             
              "file-audio": $fa-var-file-audio,
         | 
| 3188 | 
            +
              "file-circle-check": $fa-var-file-circle-check,
         | 
| 3189 | 
            +
              "file-circle-exclamation": $fa-var-file-circle-exclamation,
         | 
| 3190 | 
            +
              "file-circle-minus": $fa-var-file-circle-minus,
         | 
| 3191 | 
            +
              "file-circle-plus": $fa-var-file-circle-plus,
         | 
| 3192 | 
            +
              "file-circle-question": $fa-var-file-circle-question,
         | 
| 3193 | 
            +
              "file-circle-xmark": $fa-var-file-circle-xmark,
         | 
| 2851 3194 | 
             
              "file-code": $fa-var-file-code,
         | 
| 2852 3195 | 
             
              "file-contract": $fa-var-file-contract,
         | 
| 2853 3196 | 
             
              "file-csv": $fa-var-file-csv,
         | 
| @@ -2864,8 +3207,11 @@ $fa-icons: ( | |
| 2864 3207 | 
             
              "file-text": $fa-var-file-text,
         | 
| 2865 3208 | 
             
              "file-medical": $fa-var-file-medical,
         | 
| 2866 3209 | 
             
              "file-pdf": $fa-var-file-pdf,
         | 
| 3210 | 
            +
              "file-pen": $fa-var-file-pen,
         | 
| 3211 | 
            +
              "file-edit": $fa-var-file-edit,
         | 
| 2867 3212 | 
             
              "file-powerpoint": $fa-var-file-powerpoint,
         | 
| 2868 3213 | 
             
              "file-prescription": $fa-var-file-prescription,
         | 
| 3214 | 
            +
              "file-shield": $fa-var-file-shield,
         | 
| 2869 3215 | 
             
              "file-signature": $fa-var-file-signature,
         | 
| 2870 3216 | 
             
              "file-video": $fa-var-file-video,
         | 
| 2871 3217 | 
             
              "file-waveform": $fa-var-file-waveform,
         | 
| @@ -2882,20 +3228,25 @@ $fa-icons: ( | |
| 2882 3228 | 
             
              "filter-circle-xmark": $fa-var-filter-circle-xmark,
         | 
| 2883 3229 | 
             
              "fingerprint": $fa-var-fingerprint,
         | 
| 2884 3230 | 
             
              "fire": $fa-var-fire,
         | 
| 3231 | 
            +
              "fire-burner": $fa-var-fire-burner,
         | 
| 2885 3232 | 
             
              "fire-extinguisher": $fa-var-fire-extinguisher,
         | 
| 2886 3233 | 
             
              "fire-flame-curved": $fa-var-fire-flame-curved,
         | 
| 2887 3234 | 
             
              "fire-alt": $fa-var-fire-alt,
         | 
| 2888 3235 | 
             
              "fire-flame-simple": $fa-var-fire-flame-simple,
         | 
| 2889 3236 | 
             
              "burn": $fa-var-burn,
         | 
| 2890 3237 | 
             
              "fish": $fa-var-fish,
         | 
| 3238 | 
            +
              "fish-fins": $fa-var-fish-fins,
         | 
| 2891 3239 | 
             
              "flag": $fa-var-flag,
         | 
| 2892 3240 | 
             
              "flag-checkered": $fa-var-flag-checkered,
         | 
| 2893 3241 | 
             
              "flag-usa": $fa-var-flag-usa,
         | 
| 2894 3242 | 
             
              "flask": $fa-var-flask,
         | 
| 3243 | 
            +
              "flask-vial": $fa-var-flask-vial,
         | 
| 2895 3244 | 
             
              "floppy-disk": $fa-var-floppy-disk,
         | 
| 2896 3245 | 
             
              "save": $fa-var-save,
         | 
| 2897 3246 | 
             
              "florin-sign": $fa-var-florin-sign,
         | 
| 2898 3247 | 
             
              "folder": $fa-var-folder,
         | 
| 3248 | 
            +
              "folder-blank": $fa-var-folder-blank,
         | 
| 3249 | 
            +
              "folder-closed": $fa-var-folder-closed,
         | 
| 2899 3250 | 
             
              "folder-minus": $fa-var-folder-minus,
         | 
| 2900 3251 | 
             
              "folder-open": $fa-var-folder-open,
         | 
| 2901 3252 | 
             
              "folder-plus": $fa-var-folder-plus,
         | 
| @@ -2940,6 +3291,8 @@ $fa-icons: ( | |
| 2940 3291 | 
             
              "ghost": $fa-var-ghost,
         | 
| 2941 3292 | 
             
              "gift": $fa-var-gift,
         | 
| 2942 3293 | 
             
              "gifts": $fa-var-gifts,
         | 
| 3294 | 
            +
              "glass-water": $fa-var-glass-water,
         | 
| 3295 | 
            +
              "glass-water-droplet": $fa-var-glass-water-droplet,
         | 
| 2943 3296 | 
             
              "glasses": $fa-var-glasses,
         | 
| 2944 3297 | 
             
              "globe": $fa-var-globe,
         | 
| 2945 3298 | 
             
              "golf-ball-tee": $fa-var-golf-ball-tee,
         | 
| @@ -2954,6 +3307,7 @@ $fa-icons: ( | |
| 2954 3307 | 
             
              "grip-lines": $fa-var-grip-lines,
         | 
| 2955 3308 | 
             
              "grip-lines-vertical": $fa-var-grip-lines-vertical,
         | 
| 2956 3309 | 
             
              "grip-vertical": $fa-var-grip-vertical,
         | 
| 3310 | 
            +
              "group-arrows-rotate": $fa-var-group-arrows-rotate,
         | 
| 2957 3311 | 
             
              "guarani-sign": $fa-var-guarani-sign,
         | 
| 2958 3312 | 
             
              "guitar": $fa-var-guitar,
         | 
| 2959 3313 | 
             
              "gun": $fa-var-gun,
         | 
| @@ -2973,6 +3327,7 @@ $fa-icons: ( | |
| 2973 3327 | 
             
              "hand-holding-usd": $fa-var-hand-holding-usd,
         | 
| 2974 3328 | 
             
              "hand-holding-droplet": $fa-var-hand-holding-droplet,
         | 
| 2975 3329 | 
             
              "hand-holding-water": $fa-var-hand-holding-water,
         | 
| 3330 | 
            +
              "hand-holding-hand": $fa-var-hand-holding-hand,
         | 
| 2976 3331 | 
             
              "hand-holding-heart": $fa-var-hand-holding-heart,
         | 
| 2977 3332 | 
             
              "hand-holding-medical": $fa-var-hand-holding-medical,
         | 
| 2978 3333 | 
             
              "hand-lizard": $fa-var-hand-lizard,
         | 
| @@ -2986,6 +3341,7 @@ $fa-icons: ( | |
| 2986 3341 | 
             
              "hand-scissors": $fa-var-hand-scissors,
         | 
| 2987 3342 | 
             
              "hand-sparkles": $fa-var-hand-sparkles,
         | 
| 2988 3343 | 
             
              "hand-spock": $fa-var-hand-spock,
         | 
| 3344 | 
            +
              "handcuffs": $fa-var-handcuffs,
         | 
| 2989 3345 | 
             
              "hands": $fa-var-hands,
         | 
| 2990 3346 | 
             
              "sign-language": $fa-var-sign-language,
         | 
| 2991 3347 | 
             
              "signing": $fa-var-signing,
         | 
| @@ -2993,15 +3349,20 @@ $fa-icons: ( | |
| 2993 3349 | 
             
              "american-sign-language-interpreting": $fa-var-american-sign-language-interpreting,
         | 
| 2994 3350 | 
             
              "asl-interpreting": $fa-var-asl-interpreting,
         | 
| 2995 3351 | 
             
              "hands-american-sign-language-interpreting": $fa-var-hands-american-sign-language-interpreting,
         | 
| 3352 | 
            +
              "hands-bound": $fa-var-hands-bound,
         | 
| 2996 3353 | 
             
              "hands-bubbles": $fa-var-hands-bubbles,
         | 
| 2997 3354 | 
             
              "hands-wash": $fa-var-hands-wash,
         | 
| 2998 3355 | 
             
              "hands-clapping": $fa-var-hands-clapping,
         | 
| 2999 3356 | 
             
              "hands-holding": $fa-var-hands-holding,
         | 
| 3357 | 
            +
              "hands-holding-child": $fa-var-hands-holding-child,
         | 
| 3358 | 
            +
              "hands-holding-circle": $fa-var-hands-holding-circle,
         | 
| 3000 3359 | 
             
              "hands-praying": $fa-var-hands-praying,
         | 
| 3001 3360 | 
             
              "praying-hands": $fa-var-praying-hands,
         | 
| 3002 3361 | 
             
              "handshake": $fa-var-handshake,
         | 
| 3003 3362 | 
             
              "handshake-angle": $fa-var-handshake-angle,
         | 
| 3004 3363 | 
             
              "hands-helping": $fa-var-hands-helping,
         | 
| 3364 | 
            +
              "handshake-simple": $fa-var-handshake-simple,
         | 
| 3365 | 
            +
              "handshake-alt": $fa-var-handshake-alt,
         | 
| 3005 3366 | 
             
              "handshake-simple-slash": $fa-var-handshake-simple-slash,
         | 
| 3006 3367 | 
             
              "handshake-alt-slash": $fa-var-handshake-alt-slash,
         | 
| 3007 3368 | 
             
              "handshake-slash": $fa-var-handshake-slash,
         | 
| @@ -3023,15 +3384,25 @@ $fa-icons: ( | |
| 3023 3384 | 
             
              "headphones-alt": $fa-var-headphones-alt,
         | 
| 3024 3385 | 
             
              "headset": $fa-var-headset,
         | 
| 3025 3386 | 
             
              "heart": $fa-var-heart,
         | 
| 3387 | 
            +
              "heart-circle-bolt": $fa-var-heart-circle-bolt,
         | 
| 3388 | 
            +
              "heart-circle-check": $fa-var-heart-circle-check,
         | 
| 3389 | 
            +
              "heart-circle-exclamation": $fa-var-heart-circle-exclamation,
         | 
| 3390 | 
            +
              "heart-circle-minus": $fa-var-heart-circle-minus,
         | 
| 3391 | 
            +
              "heart-circle-plus": $fa-var-heart-circle-plus,
         | 
| 3392 | 
            +
              "heart-circle-xmark": $fa-var-heart-circle-xmark,
         | 
| 3026 3393 | 
             
              "heart-crack": $fa-var-heart-crack,
         | 
| 3027 3394 | 
             
              "heart-broken": $fa-var-heart-broken,
         | 
| 3028 3395 | 
             
              "heart-pulse": $fa-var-heart-pulse,
         | 
| 3029 3396 | 
             
              "heartbeat": $fa-var-heartbeat,
         | 
| 3030 3397 | 
             
              "helicopter": $fa-var-helicopter,
         | 
| 3398 | 
            +
              "helicopter-symbol": $fa-var-helicopter-symbol,
         | 
| 3031 3399 | 
             
              "helmet-safety": $fa-var-helmet-safety,
         | 
| 3032 3400 | 
             
              "hard-hat": $fa-var-hard-hat,
         | 
| 3033 3401 | 
             
              "hat-hard": $fa-var-hat-hard,
         | 
| 3402 | 
            +
              "helmet-un": $fa-var-helmet-un,
         | 
| 3034 3403 | 
             
              "highlighter": $fa-var-highlighter,
         | 
| 3404 | 
            +
              "hill-avalanche": $fa-var-hill-avalanche,
         | 
| 3405 | 
            +
              "hill-rockslide": $fa-var-hill-rockslide,
         | 
| 3035 3406 | 
             
              "hippo": $fa-var-hippo,
         | 
| 3036 3407 | 
             
              "hockey-puck": $fa-var-hockey-puck,
         | 
| 3037 3408 | 
             
              "holly-berry": $fa-var-holly-berry,
         | 
| @@ -3065,14 +3436,29 @@ $fa-icons: ( | |
| 3065 3436 | 
             
              "clinic-medical": $fa-var-clinic-medical,
         | 
| 3066 3437 | 
             
              "house-chimney-user": $fa-var-house-chimney-user,
         | 
| 3067 3438 | 
             
              "house-chimney-window": $fa-var-house-chimney-window,
         | 
| 3439 | 
            +
              "house-circle-check": $fa-var-house-circle-check,
         | 
| 3440 | 
            +
              "house-circle-exclamation": $fa-var-house-circle-exclamation,
         | 
| 3441 | 
            +
              "house-circle-xmark": $fa-var-house-circle-xmark,
         | 
| 3068 3442 | 
             
              "house-crack": $fa-var-house-crack,
         | 
| 3443 | 
            +
              "house-fire": $fa-var-house-fire,
         | 
| 3444 | 
            +
              "house-flag": $fa-var-house-flag,
         | 
| 3445 | 
            +
              "house-flood-water": $fa-var-house-flood-water,
         | 
| 3446 | 
            +
              "house-flood-water-circle-arrow-right": $fa-var-house-flood-water-circle-arrow-right,
         | 
| 3069 3447 | 
             
              "house-laptop": $fa-var-house-laptop,
         | 
| 3070 3448 | 
             
              "laptop-house": $fa-var-laptop-house,
         | 
| 3449 | 
            +
              "house-lock": $fa-var-house-lock,
         | 
| 3071 3450 | 
             
              "house-medical": $fa-var-house-medical,
         | 
| 3451 | 
            +
              "house-medical-circle-check": $fa-var-house-medical-circle-check,
         | 
| 3452 | 
            +
              "house-medical-circle-exclamation": $fa-var-house-medical-circle-exclamation,
         | 
| 3453 | 
            +
              "house-medical-circle-xmark": $fa-var-house-medical-circle-xmark,
         | 
| 3454 | 
            +
              "house-medical-flag": $fa-var-house-medical-flag,
         | 
| 3455 | 
            +
              "house-signal": $fa-var-house-signal,
         | 
| 3456 | 
            +
              "house-tsunami": $fa-var-house-tsunami,
         | 
| 3072 3457 | 
             
              "house-user": $fa-var-house-user,
         | 
| 3073 3458 | 
             
              "home-user": $fa-var-home-user,
         | 
| 3074 3459 | 
             
              "hryvnia-sign": $fa-var-hryvnia-sign,
         | 
| 3075 3460 | 
             
              "hryvnia": $fa-var-hryvnia,
         | 
| 3461 | 
            +
              "hurricane": $fa-var-hurricane,
         | 
| 3076 3462 | 
             
              "i": $fa-var-i,
         | 
| 3077 3463 | 
             
              "i-cursor": $fa-var-i-cursor,
         | 
| 3078 3464 | 
             
              "ice-cream": $fa-var-ice-cream,
         | 
| @@ -3099,10 +3485,14 @@ $fa-icons: ( | |
| 3099 3485 | 
             
              "info": $fa-var-info,
         | 
| 3100 3486 | 
             
              "italic": $fa-var-italic,
         | 
| 3101 3487 | 
             
              "j": $fa-var-j,
         | 
| 3488 | 
            +
              "jar": $fa-var-jar,
         | 
| 3489 | 
            +
              "jar-wheat": $fa-var-jar-wheat,
         | 
| 3102 3490 | 
             
              "jedi": $fa-var-jedi,
         | 
| 3103 3491 | 
             
              "jet-fighter": $fa-var-jet-fighter,
         | 
| 3104 3492 | 
             
              "fighter-jet": $fa-var-fighter-jet,
         | 
| 3493 | 
            +
              "jet-fighter-up": $fa-var-jet-fighter-up,
         | 
| 3105 3494 | 
             
              "joint": $fa-var-joint,
         | 
| 3495 | 
            +
              "jug-detergent": $fa-var-jug-detergent,
         | 
| 3106 3496 | 
             
              "k": $fa-var-k,
         | 
| 3107 3497 | 
             
              "kaaba": $fa-var-kaaba,
         | 
| 3108 3498 | 
             
              "key": $fa-var-key,
         | 
| @@ -3111,12 +3501,18 @@ $fa-icons: ( | |
| 3111 3501 | 
             
              "kip-sign": $fa-var-kip-sign,
         | 
| 3112 3502 | 
             
              "kit-medical": $fa-var-kit-medical,
         | 
| 3113 3503 | 
             
              "first-aid": $fa-var-first-aid,
         | 
| 3504 | 
            +
              "kitchen-set": $fa-var-kitchen-set,
         | 
| 3114 3505 | 
             
              "kiwi-bird": $fa-var-kiwi-bird,
         | 
| 3115 3506 | 
             
              "l": $fa-var-l,
         | 
| 3507 | 
            +
              "land-mine-on": $fa-var-land-mine-on,
         | 
| 3116 3508 | 
             
              "landmark": $fa-var-landmark,
         | 
| 3509 | 
            +
              "landmark-dome": $fa-var-landmark-dome,
         | 
| 3510 | 
            +
              "landmark-alt": $fa-var-landmark-alt,
         | 
| 3511 | 
            +
              "landmark-flag": $fa-var-landmark-flag,
         | 
| 3117 3512 | 
             
              "language": $fa-var-language,
         | 
| 3118 3513 | 
             
              "laptop": $fa-var-laptop,
         | 
| 3119 3514 | 
             
              "laptop-code": $fa-var-laptop-code,
         | 
| 3515 | 
            +
              "laptop-file": $fa-var-laptop-file,
         | 
| 3120 3516 | 
             
              "laptop-medical": $fa-var-laptop-medical,
         | 
| 3121 3517 | 
             
              "lari-sign": $fa-var-lari-sign,
         | 
| 3122 3518 | 
             
              "layer-group": $fa-var-layer-group,
         | 
| @@ -3130,6 +3526,7 @@ $fa-icons: ( | |
| 3130 3526 | 
             
              "less-than-equal": $fa-var-less-than-equal,
         | 
| 3131 3527 | 
             
              "life-ring": $fa-var-life-ring,
         | 
| 3132 3528 | 
             
              "lightbulb": $fa-var-lightbulb,
         | 
| 3529 | 
            +
              "lines-leaning": $fa-var-lines-leaning,
         | 
| 3133 3530 | 
             
              "link": $fa-var-link,
         | 
| 3134 3531 | 
             
              "chain": $fa-var-chain,
         | 
| 3135 3532 | 
             
              "link-slash": $fa-var-link-slash,
         | 
| @@ -3154,14 +3551,18 @@ $fa-icons: ( | |
| 3154 3551 | 
             
              "map-marker-alt": $fa-var-map-marker-alt,
         | 
| 3155 3552 | 
             
              "location-pin": $fa-var-location-pin,
         | 
| 3156 3553 | 
             
              "map-marker": $fa-var-map-marker,
         | 
| 3554 | 
            +
              "location-pin-lock": $fa-var-location-pin-lock,
         | 
| 3157 3555 | 
             
              "lock": $fa-var-lock,
         | 
| 3158 3556 | 
             
              "lock-open": $fa-var-lock-open,
         | 
| 3557 | 
            +
              "locust": $fa-var-locust,
         | 
| 3159 3558 | 
             
              "lungs": $fa-var-lungs,
         | 
| 3160 3559 | 
             
              "lungs-virus": $fa-var-lungs-virus,
         | 
| 3161 3560 | 
             
              "m": $fa-var-m,
         | 
| 3162 3561 | 
             
              "magnet": $fa-var-magnet,
         | 
| 3163 3562 | 
             
              "magnifying-glass": $fa-var-magnifying-glass,
         | 
| 3164 3563 | 
             
              "search": $fa-var-search,
         | 
| 3564 | 
            +
              "magnifying-glass-arrow-right": $fa-var-magnifying-glass-arrow-right,
         | 
| 3565 | 
            +
              "magnifying-glass-chart": $fa-var-magnifying-glass-chart,
         | 
| 3165 3566 | 
             
              "magnifying-glass-dollar": $fa-var-magnifying-glass-dollar,
         | 
| 3166 3567 | 
             
              "search-dollar": $fa-var-search-dollar,
         | 
| 3167 3568 | 
             
              "magnifying-glass-location": $fa-var-magnifying-glass-location,
         | 
| @@ -3180,6 +3581,7 @@ $fa-icons: ( | |
| 3180 3581 | 
             
              "marker": $fa-var-marker,
         | 
| 3181 3582 | 
             
              "mars": $fa-var-mars,
         | 
| 3182 3583 | 
             
              "mars-and-venus": $fa-var-mars-and-venus,
         | 
| 3584 | 
            +
              "mars-and-venus-burst": $fa-var-mars-and-venus-burst,
         | 
| 3183 3585 | 
             
              "mars-double": $fa-var-mars-double,
         | 
| 3184 3586 | 
             
              "mars-stroke": $fa-var-mars-stroke,
         | 
| 3185 3587 | 
             
              "mars-stroke-right": $fa-var-mars-stroke-right,
         | 
| @@ -3194,8 +3596,10 @@ $fa-icons: ( | |
| 3194 3596 | 
             
              "glass-martini": $fa-var-glass-martini,
         | 
| 3195 3597 | 
             
              "mask": $fa-var-mask,
         | 
| 3196 3598 | 
             
              "mask-face": $fa-var-mask-face,
         | 
| 3599 | 
            +
              "mask-ventilator": $fa-var-mask-ventilator,
         | 
| 3197 3600 | 
             
              "masks-theater": $fa-var-masks-theater,
         | 
| 3198 3601 | 
             
              "theater-masks": $fa-var-theater-masks,
         | 
| 3602 | 
            +
              "mattress-pillow": $fa-var-mattress-pillow,
         | 
| 3199 3603 | 
             
              "maximize": $fa-var-maximize,
         | 
| 3200 3604 | 
             
              "expand-arrows-alt": $fa-var-expand-arrows-alt,
         | 
| 3201 3605 | 
             
              "medal": $fa-var-medal,
         | 
| @@ -3223,6 +3627,9 @@ $fa-icons: ( | |
| 3223 3627 | 
             
              "mobile-android": $fa-var-mobile-android,
         | 
| 3224 3628 | 
             
              "mobile-phone": $fa-var-mobile-phone,
         | 
| 3225 3629 | 
             
              "mobile-button": $fa-var-mobile-button,
         | 
| 3630 | 
            +
              "mobile-retro": $fa-var-mobile-retro,
         | 
| 3631 | 
            +
              "mobile-screen": $fa-var-mobile-screen,
         | 
| 3632 | 
            +
              "mobile-android-alt": $fa-var-mobile-android-alt,
         | 
| 3226 3633 | 
             
              "mobile-screen-button": $fa-var-mobile-screen-button,
         | 
| 3227 3634 | 
             
              "mobile-alt": $fa-var-mobile-alt,
         | 
| 3228 3635 | 
             
              "money-bill": $fa-var-money-bill,
         | 
| @@ -3230,7 +3637,11 @@ $fa-icons: ( | |
| 3230 3637 | 
             
              "money-bill-alt": $fa-var-money-bill-alt,
         | 
| 3231 3638 | 
             
              "money-bill-1-wave": $fa-var-money-bill-1-wave,
         | 
| 3232 3639 | 
             
              "money-bill-wave-alt": $fa-var-money-bill-wave-alt,
         | 
| 3640 | 
            +
              "money-bill-transfer": $fa-var-money-bill-transfer,
         | 
| 3641 | 
            +
              "money-bill-trend-up": $fa-var-money-bill-trend-up,
         | 
| 3233 3642 | 
             
              "money-bill-wave": $fa-var-money-bill-wave,
         | 
| 3643 | 
            +
              "money-bill-wheat": $fa-var-money-bill-wheat,
         | 
| 3644 | 
            +
              "money-bills": $fa-var-money-bills,
         | 
| 3234 3645 | 
             
              "money-check": $fa-var-money-check,
         | 
| 3235 3646 | 
             
              "money-check-dollar": $fa-var-money-check-dollar,
         | 
| 3236 3647 | 
             
              "money-check-alt": $fa-var-money-check-alt,
         | 
| @@ -3238,8 +3649,13 @@ $fa-icons: ( | |
| 3238 3649 | 
             
              "moon": $fa-var-moon,
         | 
| 3239 3650 | 
             
              "mortar-pestle": $fa-var-mortar-pestle,
         | 
| 3240 3651 | 
             
              "mosque": $fa-var-mosque,
         | 
| 3652 | 
            +
              "mosquito": $fa-var-mosquito,
         | 
| 3653 | 
            +
              "mosquito-net": $fa-var-mosquito-net,
         | 
| 3241 3654 | 
             
              "motorcycle": $fa-var-motorcycle,
         | 
| 3655 | 
            +
              "mound": $fa-var-mound,
         | 
| 3242 3656 | 
             
              "mountain": $fa-var-mountain,
         | 
| 3657 | 
            +
              "mountain-city": $fa-var-mountain-city,
         | 
| 3658 | 
            +
              "mountain-sun": $fa-var-mountain-sun,
         | 
| 3243 3659 | 
             
              "mug-hot": $fa-var-mug-hot,
         | 
| 3244 3660 | 
             
              "mug-saucer": $fa-var-mug-saucer,
         | 
| 3245 3661 | 
             
              "coffee": $fa-var-coffee,
         | 
| @@ -3257,6 +3673,7 @@ $fa-icons: ( | |
| 3257 3673 | 
             
              "object-group": $fa-var-object-group,
         | 
| 3258 3674 | 
             
              "object-ungroup": $fa-var-object-ungroup,
         | 
| 3259 3675 | 
             
              "oil-can": $fa-var-oil-can,
         | 
| 3676 | 
            +
              "oil-well": $fa-var-oil-well,
         | 
| 3260 3677 | 
             
              "om": $fa-var-om,
         | 
| 3261 3678 | 
             
              "otter": $fa-var-otter,
         | 
| 3262 3679 | 
             
              "outdent": $fa-var-outdent,
         | 
| @@ -3294,24 +3711,56 @@ $fa-icons: ( | |
| 3294 3711 | 
             
              "people-arrows": $fa-var-people-arrows,
         | 
| 3295 3712 | 
             
              "people-carry-box": $fa-var-people-carry-box,
         | 
| 3296 3713 | 
             
              "people-carry": $fa-var-people-carry,
         | 
| 3714 | 
            +
              "people-group": $fa-var-people-group,
         | 
| 3715 | 
            +
              "people-line": $fa-var-people-line,
         | 
| 3716 | 
            +
              "people-pulling": $fa-var-people-pulling,
         | 
| 3717 | 
            +
              "people-robbery": $fa-var-people-robbery,
         | 
| 3718 | 
            +
              "people-roof": $fa-var-people-roof,
         | 
| 3297 3719 | 
             
              "pepper-hot": $fa-var-pepper-hot,
         | 
| 3298 3720 | 
             
              "percent": $fa-var-percent,
         | 
| 3299 3721 | 
             
              "percentage": $fa-var-percentage,
         | 
| 3300 3722 | 
             
              "person": $fa-var-person,
         | 
| 3301 3723 | 
             
              "male": $fa-var-male,
         | 
| 3724 | 
            +
              "person-arrow-down-to-line": $fa-var-person-arrow-down-to-line,
         | 
| 3725 | 
            +
              "person-arrow-up-from-line": $fa-var-person-arrow-up-from-line,
         | 
| 3302 3726 | 
             
              "person-biking": $fa-var-person-biking,
         | 
| 3303 3727 | 
             
              "biking": $fa-var-biking,
         | 
| 3304 3728 | 
             
              "person-booth": $fa-var-person-booth,
         | 
| 3729 | 
            +
              "person-breastfeeding": $fa-var-person-breastfeeding,
         | 
| 3730 | 
            +
              "person-burst": $fa-var-person-burst,
         | 
| 3731 | 
            +
              "person-cane": $fa-var-person-cane,
         | 
| 3732 | 
            +
              "person-chalkboard": $fa-var-person-chalkboard,
         | 
| 3733 | 
            +
              "person-circle-check": $fa-var-person-circle-check,
         | 
| 3734 | 
            +
              "person-circle-exclamation": $fa-var-person-circle-exclamation,
         | 
| 3735 | 
            +
              "person-circle-minus": $fa-var-person-circle-minus,
         | 
| 3736 | 
            +
              "person-circle-plus": $fa-var-person-circle-plus,
         | 
| 3737 | 
            +
              "person-circle-question": $fa-var-person-circle-question,
         | 
| 3738 | 
            +
              "person-circle-xmark": $fa-var-person-circle-xmark,
         | 
| 3739 | 
            +
              "person-digging": $fa-var-person-digging,
         | 
| 3740 | 
            +
              "digging": $fa-var-digging,
         | 
| 3305 3741 | 
             
              "person-dots-from-line": $fa-var-person-dots-from-line,
         | 
| 3306 3742 | 
             
              "diagnoses": $fa-var-diagnoses,
         | 
| 3307 3743 | 
             
              "person-dress": $fa-var-person-dress,
         | 
| 3308 3744 | 
             
              "female": $fa-var-female,
         | 
| 3745 | 
            +
              "person-dress-burst": $fa-var-person-dress-burst,
         | 
| 3746 | 
            +
              "person-drowning": $fa-var-person-drowning,
         | 
| 3747 | 
            +
              "person-falling": $fa-var-person-falling,
         | 
| 3748 | 
            +
              "person-falling-burst": $fa-var-person-falling-burst,
         | 
| 3749 | 
            +
              "person-half-dress": $fa-var-person-half-dress,
         | 
| 3750 | 
            +
              "person-harassing": $fa-var-person-harassing,
         | 
| 3309 3751 | 
             
              "person-hiking": $fa-var-person-hiking,
         | 
| 3310 3752 | 
             
              "hiking": $fa-var-hiking,
         | 
| 3753 | 
            +
              "person-military-pointing": $fa-var-person-military-pointing,
         | 
| 3754 | 
            +
              "person-military-rifle": $fa-var-person-military-rifle,
         | 
| 3755 | 
            +
              "person-military-to-person": $fa-var-person-military-to-person,
         | 
| 3311 3756 | 
             
              "person-praying": $fa-var-person-praying,
         | 
| 3312 3757 | 
             
              "pray": $fa-var-pray,
         | 
| 3758 | 
            +
              "person-pregnant": $fa-var-person-pregnant,
         | 
| 3759 | 
            +
              "person-rays": $fa-var-person-rays,
         | 
| 3760 | 
            +
              "person-rifle": $fa-var-person-rifle,
         | 
| 3313 3761 | 
             
              "person-running": $fa-var-person-running,
         | 
| 3314 3762 | 
             
              "running": $fa-var-running,
         | 
| 3763 | 
            +
              "person-shelter": $fa-var-person-shelter,
         | 
| 3315 3764 | 
             
              "person-skating": $fa-var-person-skating,
         | 
| 3316 3765 | 
             
              "skating": $fa-var-skating,
         | 
| 3317 3766 | 
             
              "person-skiing": $fa-var-person-skiing,
         | 
| @@ -3322,8 +3771,13 @@ $fa-icons: ( | |
| 3322 3771 | 
             
              "snowboarding": $fa-var-snowboarding,
         | 
| 3323 3772 | 
             
              "person-swimming": $fa-var-person-swimming,
         | 
| 3324 3773 | 
             
              "swimmer": $fa-var-swimmer,
         | 
| 3774 | 
            +
              "person-through-window": $fa-var-person-through-window,
         | 
| 3325 3775 | 
             
              "person-walking": $fa-var-person-walking,
         | 
| 3326 3776 | 
             
              "walking": $fa-var-walking,
         | 
| 3777 | 
            +
              "person-walking-arrow-loop-left": $fa-var-person-walking-arrow-loop-left,
         | 
| 3778 | 
            +
              "person-walking-arrow-right": $fa-var-person-walking-arrow-right,
         | 
| 3779 | 
            +
              "person-walking-dashed-line-arrow-right": $fa-var-person-walking-dashed-line-arrow-right,
         | 
| 3780 | 
            +
              "person-walking-luggage": $fa-var-person-walking-luggage,
         | 
| 3327 3781 | 
             
              "person-walking-with-cane": $fa-var-person-walking-with-cane,
         | 
| 3328 3782 | 
             
              "blind": $fa-var-blind,
         | 
| 3329 3783 | 
             
              "peseta-sign": $fa-var-peseta-sign,
         | 
| @@ -3342,10 +3796,23 @@ $fa-icons: ( | |
| 3342 3796 | 
             
              "place-of-worship": $fa-var-place-of-worship,
         | 
| 3343 3797 | 
             
              "plane": $fa-var-plane,
         | 
| 3344 3798 | 
             
              "plane-arrival": $fa-var-plane-arrival,
         | 
| 3799 | 
            +
              "plane-circle-check": $fa-var-plane-circle-check,
         | 
| 3800 | 
            +
              "plane-circle-exclamation": $fa-var-plane-circle-exclamation,
         | 
| 3801 | 
            +
              "plane-circle-xmark": $fa-var-plane-circle-xmark,
         | 
| 3345 3802 | 
             
              "plane-departure": $fa-var-plane-departure,
         | 
| 3803 | 
            +
              "plane-lock": $fa-var-plane-lock,
         | 
| 3346 3804 | 
             
              "plane-slash": $fa-var-plane-slash,
         | 
| 3805 | 
            +
              "plane-up": $fa-var-plane-up,
         | 
| 3806 | 
            +
              "plant-wilt": $fa-var-plant-wilt,
         | 
| 3807 | 
            +
              "plate-wheat": $fa-var-plate-wheat,
         | 
| 3347 3808 | 
             
              "play": $fa-var-play,
         | 
| 3348 3809 | 
             
              "plug": $fa-var-plug,
         | 
| 3810 | 
            +
              "plug-circle-bolt": $fa-var-plug-circle-bolt,
         | 
| 3811 | 
            +
              "plug-circle-check": $fa-var-plug-circle-check,
         | 
| 3812 | 
            +
              "plug-circle-exclamation": $fa-var-plug-circle-exclamation,
         | 
| 3813 | 
            +
              "plug-circle-minus": $fa-var-plug-circle-minus,
         | 
| 3814 | 
            +
              "plug-circle-plus": $fa-var-plug-circle-plus,
         | 
| 3815 | 
            +
              "plug-circle-xmark": $fa-var-plug-circle-xmark,
         | 
| 3349 3816 | 
             
              "plus": $fa-var-plus,
         | 
| 3350 3817 | 
             
              "add": $fa-var-add,
         | 
| 3351 3818 | 
             
              "plus-minus": $fa-var-plus-minus,
         | 
| @@ -3372,7 +3839,9 @@ $fa-icons: ( | |
| 3372 3839 | 
             
              "quote-right-alt": $fa-var-quote-right-alt,
         | 
| 3373 3840 | 
             
              "r": $fa-var-r,
         | 
| 3374 3841 | 
             
              "radiation": $fa-var-radiation,
         | 
| 3842 | 
            +
              "radio": $fa-var-radio,
         | 
| 3375 3843 | 
             
              "rainbow": $fa-var-rainbow,
         | 
| 3844 | 
            +
              "ranking-star": $fa-var-ranking-star,
         | 
| 3376 3845 | 
             
              "receipt": $fa-var-receipt,
         | 
| 3377 3846 | 
             
              "record-vinyl": $fa-var-record-vinyl,
         | 
| 3378 3847 | 
             
              "rectangle-ad": $fa-var-rectangle-ad,
         | 
| @@ -3404,6 +3873,13 @@ $fa-icons: ( | |
| 3404 3873 | 
             
              "sign-in-alt": $fa-var-sign-in-alt,
         | 
| 3405 3874 | 
             
              "ring": $fa-var-ring,
         | 
| 3406 3875 | 
             
              "road": $fa-var-road,
         | 
| 3876 | 
            +
              "road-barrier": $fa-var-road-barrier,
         | 
| 3877 | 
            +
              "road-bridge": $fa-var-road-bridge,
         | 
| 3878 | 
            +
              "road-circle-check": $fa-var-road-circle-check,
         | 
| 3879 | 
            +
              "road-circle-exclamation": $fa-var-road-circle-exclamation,
         | 
| 3880 | 
            +
              "road-circle-xmark": $fa-var-road-circle-xmark,
         | 
| 3881 | 
            +
              "road-lock": $fa-var-road-lock,
         | 
| 3882 | 
            +
              "road-spikes": $fa-var-road-spikes,
         | 
| 3407 3883 | 
             
              "robot": $fa-var-robot,
         | 
| 3408 3884 | 
             
              "rocket": $fa-var-rocket,
         | 
| 3409 3885 | 
             
              "rotate": $fa-var-rotate,
         | 
| @@ -3422,6 +3898,7 @@ $fa-icons: ( | |
| 3422 3898 | 
             
              "rouble": $fa-var-rouble,
         | 
| 3423 3899 | 
             
              "rub": $fa-var-rub,
         | 
| 3424 3900 | 
             
              "ruble": $fa-var-ruble,
         | 
| 3901 | 
            +
              "rug": $fa-var-rug,
         | 
| 3425 3902 | 
             
              "ruler": $fa-var-ruler,
         | 
| 3426 3903 | 
             
              "ruler-combined": $fa-var-ruler-combined,
         | 
| 3427 3904 | 
             
              "ruler-horizontal": $fa-var-ruler-horizontal,
         | 
| @@ -3430,6 +3907,8 @@ $fa-icons: ( | |
| 3430 3907 | 
             
              "rupee": $fa-var-rupee,
         | 
| 3431 3908 | 
             
              "rupiah-sign": $fa-var-rupiah-sign,
         | 
| 3432 3909 | 
             
              "s": $fa-var-s,
         | 
| 3910 | 
            +
              "sack-dollar": $fa-var-sack-dollar,
         | 
| 3911 | 
            +
              "sack-xmark": $fa-var-sack-xmark,
         | 
| 3433 3912 | 
             
              "sailboat": $fa-var-sailboat,
         | 
| 3434 3913 | 
             
              "satellite": $fa-var-satellite,
         | 
| 3435 3914 | 
             
              "satellite-dish": $fa-var-satellite-dish,
         | 
| @@ -3440,6 +3919,11 @@ $fa-icons: ( | |
| 3440 3919 | 
             
              "scale-unbalanced-flip": $fa-var-scale-unbalanced-flip,
         | 
| 3441 3920 | 
             
              "balance-scale-right": $fa-var-balance-scale-right,
         | 
| 3442 3921 | 
             
              "school": $fa-var-school,
         | 
| 3922 | 
            +
              "school-circle-check": $fa-var-school-circle-check,
         | 
| 3923 | 
            +
              "school-circle-exclamation": $fa-var-school-circle-exclamation,
         | 
| 3924 | 
            +
              "school-circle-xmark": $fa-var-school-circle-xmark,
         | 
| 3925 | 
            +
              "school-flag": $fa-var-school-flag,
         | 
| 3926 | 
            +
              "school-lock": $fa-var-school-lock,
         | 
| 3443 3927 | 
             
              "scissors": $fa-var-scissors,
         | 
| 3444 3928 | 
             
              "cut": $fa-var-cut,
         | 
| 3445 3929 | 
             
              "screwdriver": $fa-var-screwdriver,
         | 
| @@ -3462,6 +3946,7 @@ $fa-icons: ( | |
| 3462 3946 | 
             
              "share-square": $fa-var-share-square,
         | 
| 3463 3947 | 
             
              "share-nodes": $fa-var-share-nodes,
         | 
| 3464 3948 | 
             
              "share-alt": $fa-var-share-alt,
         | 
| 3949 | 
            +
              "sheet-plastic": $fa-var-sheet-plastic,
         | 
| 3465 3950 | 
             
              "shekel-sign": $fa-var-shekel-sign,
         | 
| 3466 3951 | 
             
              "ils": $fa-var-ils,
         | 
| 3467 3952 | 
             
              "shekel": $fa-var-shekel,
         | 
| @@ -3469,7 +3954,11 @@ $fa-icons: ( | |
| 3469 3954 | 
             
              "sheqel-sign": $fa-var-sheqel-sign,
         | 
| 3470 3955 | 
             
              "shield": $fa-var-shield,
         | 
| 3471 3956 | 
             
              "shield-blank": $fa-var-shield-blank,
         | 
| 3957 | 
            +
              "shield-cat": $fa-var-shield-cat,
         | 
| 3958 | 
            +
              "shield-dog": $fa-var-shield-dog,
         | 
| 3959 | 
            +
              "shield-halved": $fa-var-shield-halved,
         | 
| 3472 3960 | 
             
              "shield-alt": $fa-var-shield-alt,
         | 
| 3961 | 
            +
              "shield-heart": $fa-var-shield-heart,
         | 
| 3473 3962 | 
             
              "shield-virus": $fa-var-shield-virus,
         | 
| 3474 3963 | 
             
              "ship": $fa-var-ship,
         | 
| 3475 3964 | 
             
              "shirt": $fa-var-shirt,
         | 
| @@ -3478,6 +3967,7 @@ $fa-icons: ( | |
| 3478 3967 | 
             
              "shoe-prints": $fa-var-shoe-prints,
         | 
| 3479 3968 | 
             
              "shop": $fa-var-shop,
         | 
| 3480 3969 | 
             
              "store-alt": $fa-var-store-alt,
         | 
| 3970 | 
            +
              "shop-lock": $fa-var-shop-lock,
         | 
| 3481 3971 | 
             
              "shop-slash": $fa-var-shop-slash,
         | 
| 3482 3972 | 
             
              "store-alt-slash": $fa-var-store-alt-slash,
         | 
| 3483 3973 | 
             
              "shower": $fa-var-shower,
         | 
| @@ -3549,11 +4039,13 @@ $fa-icons: ( | |
| 3549 4039 | 
             
              "h-square": $fa-var-h-square,
         | 
| 3550 4040 | 
             
              "square-minus": $fa-var-square-minus,
         | 
| 3551 4041 | 
             
              "minus-square": $fa-var-minus-square,
         | 
| 4042 | 
            +
              "square-nfi": $fa-var-square-nfi,
         | 
| 3552 4043 | 
             
              "square-parking": $fa-var-square-parking,
         | 
| 3553 4044 | 
             
              "parking": $fa-var-parking,
         | 
| 3554 4045 | 
             
              "square-pen": $fa-var-square-pen,
         | 
| 3555 4046 | 
             
              "pen-square": $fa-var-pen-square,
         | 
| 3556 4047 | 
             
              "pencil-square": $fa-var-pencil-square,
         | 
| 4048 | 
            +
              "square-person-confined": $fa-var-square-person-confined,
         | 
| 3557 4049 | 
             
              "square-phone": $fa-var-square-phone,
         | 
| 3558 4050 | 
             
              "phone-square": $fa-var-phone-square,
         | 
| 3559 4051 | 
             
              "square-phone-flip": $fa-var-square-phone-flip,
         | 
| @@ -3572,9 +4064,14 @@ $fa-icons: ( | |
| 3572 4064 | 
             
              "share-alt-square": $fa-var-share-alt-square,
         | 
| 3573 4065 | 
             
              "square-up-right": $fa-var-square-up-right,
         | 
| 3574 4066 | 
             
              "external-link-square-alt": $fa-var-external-link-square-alt,
         | 
| 4067 | 
            +
              "square-virus": $fa-var-square-virus,
         | 
| 3575 4068 | 
             
              "square-xmark": $fa-var-square-xmark,
         | 
| 3576 4069 | 
             
              "times-square": $fa-var-times-square,
         | 
| 3577 4070 | 
             
              "xmark-square": $fa-var-xmark-square,
         | 
| 4071 | 
            +
              "staff-aesculapius": $fa-var-staff-aesculapius,
         | 
| 4072 | 
            +
              "rod-asclepius": $fa-var-rod-asclepius,
         | 
| 4073 | 
            +
              "rod-snake": $fa-var-rod-snake,
         | 
| 4074 | 
            +
              "staff-snake": $fa-var-staff-snake,
         | 
| 3578 4075 | 
             
              "stairs": $fa-var-stairs,
         | 
| 3579 4076 | 
             
              "stamp": $fa-var-stamp,
         | 
| 3580 4077 | 
             
              "star": $fa-var-star,
         | 
| @@ -3602,6 +4099,7 @@ $fa-icons: ( | |
| 3602 4099 | 
             
              "medkit": $fa-var-medkit,
         | 
| 3603 4100 | 
             
              "suitcase-rolling": $fa-var-suitcase-rolling,
         | 
| 3604 4101 | 
             
              "sun": $fa-var-sun,
         | 
| 4102 | 
            +
              "sun-plant-wilt": $fa-var-sun-plant-wilt,
         | 
| 3605 4103 | 
             
              "superscript": $fa-var-superscript,
         | 
| 3606 4104 | 
             
              "swatchbook": $fa-var-swatchbook,
         | 
| 3607 4105 | 
             
              "synagogue": $fa-var-synagogue,
         | 
| @@ -3630,10 +4128,16 @@ $fa-icons: ( | |
| 3630 4128 | 
             
              "tag": $fa-var-tag,
         | 
| 3631 4129 | 
             
              "tags": $fa-var-tags,
         | 
| 3632 4130 | 
             
              "tape": $fa-var-tape,
         | 
| 4131 | 
            +
              "tarp": $fa-var-tarp,
         | 
| 4132 | 
            +
              "tarp-droplet": $fa-var-tarp-droplet,
         | 
| 3633 4133 | 
             
              "taxi": $fa-var-taxi,
         | 
| 3634 4134 | 
             
              "cab": $fa-var-cab,
         | 
| 3635 4135 | 
             
              "teeth": $fa-var-teeth,
         | 
| 3636 4136 | 
             
              "teeth-open": $fa-var-teeth-open,
         | 
| 4137 | 
            +
              "temperature-arrow-down": $fa-var-temperature-arrow-down,
         | 
| 4138 | 
            +
              "temperature-down": $fa-var-temperature-down,
         | 
| 4139 | 
            +
              "temperature-arrow-up": $fa-var-temperature-arrow-up,
         | 
| 4140 | 
            +
              "temperature-up": $fa-var-temperature-up,
         | 
| 3637 4141 | 
             
              "temperature-empty": $fa-var-temperature-empty,
         | 
| 3638 4142 | 
             
              "temperature-0": $fa-var-temperature-0,
         | 
| 3639 4143 | 
             
              "thermometer-0": $fa-var-thermometer-0,
         | 
| @@ -3658,6 +4162,12 @@ $fa-icons: ( | |
| 3658 4162 | 
             
              "thermometer-three-quarters": $fa-var-thermometer-three-quarters,
         | 
| 3659 4163 | 
             
              "tenge-sign": $fa-var-tenge-sign,
         | 
| 3660 4164 | 
             
              "tenge": $fa-var-tenge,
         | 
| 4165 | 
            +
              "tent": $fa-var-tent,
         | 
| 4166 | 
            +
              "tent-arrow-down-to-line": $fa-var-tent-arrow-down-to-line,
         | 
| 4167 | 
            +
              "tent-arrow-left-right": $fa-var-tent-arrow-left-right,
         | 
| 4168 | 
            +
              "tent-arrow-turn-left": $fa-var-tent-arrow-turn-left,
         | 
| 4169 | 
            +
              "tent-arrows-down": $fa-var-tent-arrows-down,
         | 
| 4170 | 
            +
              "tents": $fa-var-tents,
         | 
| 3661 4171 | 
             
              "terminal": $fa-var-terminal,
         | 
| 3662 4172 | 
             
              "text-height": $fa-var-text-height,
         | 
| 3663 4173 | 
             
              "text-slash": $fa-var-text-slash,
         | 
| @@ -3677,11 +4187,16 @@ $fa-icons: ( | |
| 3677 4187 | 
             
              "toilet": $fa-var-toilet,
         | 
| 3678 4188 | 
             
              "toilet-paper": $fa-var-toilet-paper,
         | 
| 3679 4189 | 
             
              "toilet-paper-slash": $fa-var-toilet-paper-slash,
         | 
| 4190 | 
            +
              "toilet-portable": $fa-var-toilet-portable,
         | 
| 4191 | 
            +
              "toilets-portable": $fa-var-toilets-portable,
         | 
| 3680 4192 | 
             
              "toolbox": $fa-var-toolbox,
         | 
| 3681 4193 | 
             
              "tooth": $fa-var-tooth,
         | 
| 3682 4194 | 
             
              "torii-gate": $fa-var-torii-gate,
         | 
| 4195 | 
            +
              "tornado": $fa-var-tornado,
         | 
| 3683 4196 | 
             
              "tower-broadcast": $fa-var-tower-broadcast,
         | 
| 3684 4197 | 
             
              "broadcast-tower": $fa-var-broadcast-tower,
         | 
| 4198 | 
            +
              "tower-cell": $fa-var-tower-cell,
         | 
| 4199 | 
            +
              "tower-observation": $fa-var-tower-observation,
         | 
| 3685 4200 | 
             
              "tractor": $fa-var-tractor,
         | 
| 3686 4201 | 
             
              "trademark": $fa-var-trademark,
         | 
| 3687 4202 | 
             
              "traffic-light": $fa-var-traffic-light,
         | 
| @@ -3701,18 +4216,27 @@ $fa-icons: ( | |
| 3701 4216 | 
             
              "trash-can-arrow-up": $fa-var-trash-can-arrow-up,
         | 
| 3702 4217 | 
             
              "trash-restore-alt": $fa-var-trash-restore-alt,
         | 
| 3703 4218 | 
             
              "tree": $fa-var-tree,
         | 
| 4219 | 
            +
              "tree-city": $fa-var-tree-city,
         | 
| 3704 4220 | 
             
              "triangle-exclamation": $fa-var-triangle-exclamation,
         | 
| 3705 4221 | 
             
              "exclamation-triangle": $fa-var-exclamation-triangle,
         | 
| 3706 4222 | 
             
              "warning": $fa-var-warning,
         | 
| 3707 4223 | 
             
              "trophy": $fa-var-trophy,
         | 
| 4224 | 
            +
              "trowel": $fa-var-trowel,
         | 
| 4225 | 
            +
              "trowel-bricks": $fa-var-trowel-bricks,
         | 
| 3708 4226 | 
             
              "truck": $fa-var-truck,
         | 
| 4227 | 
            +
              "truck-arrow-right": $fa-var-truck-arrow-right,
         | 
| 4228 | 
            +
              "truck-droplet": $fa-var-truck-droplet,
         | 
| 3709 4229 | 
             
              "truck-fast": $fa-var-truck-fast,
         | 
| 3710 4230 | 
             
              "shipping-fast": $fa-var-shipping-fast,
         | 
| 4231 | 
            +
              "truck-field": $fa-var-truck-field,
         | 
| 4232 | 
            +
              "truck-field-un": $fa-var-truck-field-un,
         | 
| 4233 | 
            +
              "truck-front": $fa-var-truck-front,
         | 
| 3711 4234 | 
             
              "truck-medical": $fa-var-truck-medical,
         | 
| 3712 4235 | 
             
              "ambulance": $fa-var-ambulance,
         | 
| 3713 4236 | 
             
              "truck-monster": $fa-var-truck-monster,
         | 
| 3714 4237 | 
             
              "truck-moving": $fa-var-truck-moving,
         | 
| 3715 4238 | 
             
              "truck-pickup": $fa-var-truck-pickup,
         | 
| 4239 | 
            +
              "truck-plane": $fa-var-truck-plane,
         | 
| 3716 4240 | 
             
              "truck-ramp-box": $fa-var-truck-ramp-box,
         | 
| 3717 4241 | 
             
              "truck-loading": $fa-var-truck-loading,
         | 
| 3718 4242 | 
             
              "tty": $fa-var-tty,
         | 
| @@ -3777,9 +4301,14 @@ $fa-icons: ( | |
| 3777 4301 | 
             
              "user-xmark": $fa-var-user-xmark,
         | 
| 3778 4302 | 
             
              "user-times": $fa-var-user-times,
         | 
| 3779 4303 | 
             
              "users": $fa-var-users,
         | 
| 4304 | 
            +
              "users-between-lines": $fa-var-users-between-lines,
         | 
| 3780 4305 | 
             
              "users-gear": $fa-var-users-gear,
         | 
| 3781 4306 | 
             
              "users-cog": $fa-var-users-cog,
         | 
| 4307 | 
            +
              "users-line": $fa-var-users-line,
         | 
| 4308 | 
            +
              "users-rays": $fa-var-users-rays,
         | 
| 4309 | 
            +
              "users-rectangle": $fa-var-users-rectangle,
         | 
| 3782 4310 | 
             
              "users-slash": $fa-var-users-slash,
         | 
| 4311 | 
            +
              "users-viewfinder": $fa-var-users-viewfinder,
         | 
| 3783 4312 | 
             
              "utensils": $fa-var-utensils,
         | 
| 3784 4313 | 
             
              "cutlery": $fa-var-cutlery,
         | 
| 3785 4314 | 
             
              "v": $fa-var-v,
         | 
| @@ -3793,6 +4322,8 @@ $fa-icons: ( | |
| 3793 4322 | 
             
              "vest": $fa-var-vest,
         | 
| 3794 4323 | 
             
              "vest-patches": $fa-var-vest-patches,
         | 
| 3795 4324 | 
             
              "vial": $fa-var-vial,
         | 
| 4325 | 
            +
              "vial-circle-check": $fa-var-vial-circle-check,
         | 
| 4326 | 
            +
              "vial-virus": $fa-var-vial-virus,
         | 
| 3796 4327 | 
             
              "vials": $fa-var-vials,
         | 
| 3797 4328 | 
             
              "video": $fa-var-video,
         | 
| 3798 4329 | 
             
              "video-camera": $fa-var-video-camera,
         | 
| @@ -3804,6 +4335,7 @@ $fa-icons: ( | |
| 3804 4335 | 
             
              "virus-slash": $fa-var-virus-slash,
         | 
| 3805 4336 | 
             
              "viruses": $fa-var-viruses,
         | 
| 3806 4337 | 
             
              "voicemail": $fa-var-voicemail,
         | 
| 4338 | 
            +
              "volcano": $fa-var-volcano,
         | 
| 3807 4339 | 
             
              "volleyball": $fa-var-volleyball,
         | 
| 3808 4340 | 
             
              "volleyball-ball": $fa-var-volleyball-ball,
         | 
| 3809 4341 | 
             
              "volume-high": $fa-var-volume-high,
         | 
| @@ -3816,6 +4348,7 @@ $fa-icons: ( | |
| 3816 4348 | 
             
              "volume-times": $fa-var-volume-times,
         | 
| 3817 4349 | 
             
              "vr-cardboard": $fa-var-vr-cardboard,
         | 
| 3818 4350 | 
             
              "w": $fa-var-w,
         | 
| 4351 | 
            +
              "walkie-talkie": $fa-var-walkie-talkie,
         | 
| 3819 4352 | 
             
              "wallet": $fa-var-wallet,
         | 
| 3820 4353 | 
             
              "wand-magic": $fa-var-wand-magic,
         | 
| 3821 4354 | 
             
              "magic": $fa-var-magic,
         | 
| @@ -3831,7 +4364,12 @@ $fa-icons: ( | |
| 3831 4364 | 
             
              "weight-hanging": $fa-var-weight-hanging,
         | 
| 3832 4365 | 
             
              "weight-scale": $fa-var-weight-scale,
         | 
| 3833 4366 | 
             
              "weight": $fa-var-weight,
         | 
| 4367 | 
            +
              "wheat-awn": $fa-var-wheat-awn,
         | 
| 4368 | 
            +
              "wheat-alt": $fa-var-wheat-alt,
         | 
| 4369 | 
            +
              "wheat-awn-circle-exclamation": $fa-var-wheat-awn-circle-exclamation,
         | 
| 3834 4370 | 
             
              "wheelchair": $fa-var-wheelchair,
         | 
| 4371 | 
            +
              "wheelchair-move": $fa-var-wheelchair-move,
         | 
| 4372 | 
            +
              "wheelchair-alt": $fa-var-wheelchair-alt,
         | 
| 3835 4373 | 
             
              "whiskey-glass": $fa-var-whiskey-glass,
         | 
| 3836 4374 | 
             
              "glass-whiskey": $fa-var-glass-whiskey,
         | 
| 3837 4375 | 
             
              "wifi": $fa-var-wifi,
         | 
| @@ -3848,6 +4386,7 @@ $fa-icons: ( | |
| 3848 4386 | 
             
              "won-sign": $fa-var-won-sign,
         | 
| 3849 4387 | 
             
              "krw": $fa-var-krw,
         | 
| 3850 4388 | 
             
              "won": $fa-var-won,
         | 
| 4389 | 
            +
              "worm": $fa-var-worm,
         | 
| 3851 4390 | 
             
              "wrench": $fa-var-wrench,
         | 
| 3852 4391 | 
             
              "x": $fa-var-x,
         | 
| 3853 4392 | 
             
              "x-ray": $fa-var-x-ray,
         | 
| @@ -3856,6 +4395,7 @@ $fa-icons: ( | |
| 3856 4395 | 
             
              "multiply": $fa-var-multiply,
         | 
| 3857 4396 | 
             
              "remove": $fa-var-remove,
         | 
| 3858 4397 | 
             
              "times": $fa-var-times,
         | 
| 4398 | 
            +
              "xmarks-lines": $fa-var-xmarks-lines,
         | 
| 3859 4399 | 
             
              "y": $fa-var-y,
         | 
| 3860 4400 | 
             
              "yen-sign": $fa-var-yen-sign,
         | 
| 3861 4401 | 
             
              "cny": $fa-var-cny,
         | 
| @@ -4140,6 +4680,8 @@ $fa-brand-icons: ( | |
| 4140 4680 | 
             
              "monero": $fa-var-monero,
         | 
| 4141 4681 | 
             
              "napster": $fa-var-napster,
         | 
| 4142 4682 | 
             
              "neos": $fa-var-neos,
         | 
| 4683 | 
            +
              "nfc-directional": $fa-var-nfc-directional,
         | 
| 4684 | 
            +
              "nfc-symbol": $fa-var-nfc-symbol,
         | 
| 4143 4685 | 
             
              "nimblr": $fa-var-nimblr,
         | 
| 4144 4686 | 
             
              "node": $fa-var-node,
         | 
| 4145 4687 | 
             
              "node-js": $fa-var-node-js,
         | 
| @@ -4208,6 +4750,7 @@ $fa-brand-icons: ( | |
| 4208 4750 | 
             
              "salesforce": $fa-var-salesforce,
         | 
| 4209 4751 | 
             
              "sass": $fa-var-sass,
         | 
| 4210 4752 | 
             
              "schlix": $fa-var-schlix,
         | 
| 4753 | 
            +
              "screenpal": $fa-var-screenpal,
         | 
| 4211 4754 | 
             
              "scribd": $fa-var-scribd,
         | 
| 4212 4755 | 
             
              "searchengin": $fa-var-searchengin,
         | 
| 4213 4756 | 
             
              "sellcast": $fa-var-sellcast,
         |