Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/picturepan2/spectre.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYan Zhu <picturepan2@hotmail.com>2017-04-05 16:38:08 +0300
committerYan Zhu <picturepan2@hotmail.com>2017-04-05 16:38:08 +0300
commit4a8ee95ad1b0b271ba6744119c304d3c1fea8757 (patch)
tree4afab52f79d65c7231280907432bf5f14daa6caa
parent1b9913f131cb3c0eb45106014af3054676afc162 (diff)
Change Gulp building process and ignore /dist
-rw-r--r--.gitignore1
-rw-r--r--dist/spectre-exp.css805
-rw-r--r--dist/spectre-exp.min.css1
-rw-r--r--dist/spectre-icons.css467
-rw-r--r--dist/spectre-icons.min.css1
-rw-r--r--dist/spectre.css2891
-rw-r--r--dist/spectre.min.css1
-rw-r--r--docs/components.html4
-rw-r--r--docs/css/docs.css2
-rw-r--r--docs/css/docs.min.css1
-rw-r--r--docs/css/spectre-exp.css805
-rw-r--r--docs/css/spectre-exp.min.css1
-rw-r--r--docs/css/spectre-icons.css467
-rw-r--r--docs/css/spectre-icons.min.css1
-rw-r--r--docs/css/spectre.css2891
-rw-r--r--docs/css/spectre.min.css1
-rw-r--r--docs/elements.html4
-rw-r--r--docs/experimentals.html6
-rwxr-xr-xdocs/font/Read Me.txt7
-rwxr-xr-xdocs/font/demo-files/demo.css152
-rwxr-xr-xdocs/font/demo.html13558
-rwxr-xr-xdocs/font/fonts/icomoon.eotbin113500 -> 0 bytes
-rwxr-xr-xdocs/font/fonts/icomoon.svg855
-rwxr-xr-xdocs/font/fonts/icomoon.ttfbin113336 -> 0 bytes
-rwxr-xr-xdocs/font/fonts/icomoon.woffbin113412 -> 0 bytes
-rwxr-xr-xdocs/font/selection.json22006
-rwxr-xr-xdocs/font/style.css2562
-rw-r--r--docs/index.html36
-rw-r--r--docs/layout.html4
-rw-r--r--docs/utilities.html4
-rw-r--r--gulpfile.js14
31 files changed, 49 insertions, 47499 deletions
diff --git a/.gitignore b/.gitignore
index 7e8964f..d874663 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,5 @@
.idea/
+dist/
node_modules/
.*
!.gitignore
diff --git a/dist/spectre-exp.css b/dist/spectre-exp.css
deleted file mode 100644
index 0d0ea94..0000000
--- a/dist/spectre-exp.css
+++ /dev/null
@@ -1,805 +0,0 @@
-/*! Spectre.css Experimentals | MIT License | github.com/picturepan2/spectre */
-.calendar {
- border: .1rem solid #f0f1f4;
- border-radius: .2rem;
- display: block;
- min-width: 28rem;
- text-align: center;
-}
-.calendar .calendar-nav {
- -webkit-align-items: center;
- align-items: center;
- background: #f8f9fa;
- border-top-left-radius: .2rem;
- border-top-right-radius: .2rem;
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -ms-flex-align: center;
- font-size: 1.6rem;
- padding: 1rem;
-}
-.calendar .calendar-header,
-.calendar .calendar-body {
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -ms-flex-pack: center;
- -webkit-flex-wrap: wrap;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- -webkit-justify-content: center;
- justify-content: center;
- padding: 1rem 0;
-}
-.calendar .calendar-header .calendar-date,
-.calendar .calendar-body .calendar-date {
- -webkit-flex: 0 0 14.28%;
- -ms-flex: 0 0 14.28%;
- flex: 0 0 14.28%;
- width: 14.28%;
-}
-.calendar .calendar-header {
- background: #f8f9fa;
- border-bottom: .1rem solid #f0f1f4;
- color: #acb3c2;
- font-size: 1.2rem;
-}
-.calendar .calendar-body {
- color: #727e96;
-}
-.calendar .calendar-date {
- border: 0;
- padding: .4rem;
-}
-.calendar .calendar-date .date-item {
- -webkit-appearance: none;
- -moz-appearance: none;
- appearance: none;
- background: transparent;
- border: .1rem solid transparent;
- border-radius: 50%;
- color: #727e96;
- cursor: pointer;
- height: 2.8rem;
- line-height: 2rem;
- outline: none;
- padding: .3rem;
- position: relative;
- text-align: center;
- text-decoration: none;
- transition: all .2s ease;
- vertical-align: middle;
- white-space: nowrap;
- width: 2.8rem;
-}
-.calendar .calendar-date .date-item.date-today {
- border-color: #e4e6f6;
- color: #5764c6;
-}
-.calendar .calendar-date .date-item:focus {
- box-shadow: 0 0 0 .2rem rgba(87, 100, 198, .15);
-}
-.calendar .calendar-date .date-item:focus,
-.calendar .calendar-date .date-item:hover {
- background: #fbfbfe;
- border-color: #e4e6f6;
- color: #5764c6;
- text-decoration: none;
-}
-.calendar .calendar-date .date-item:active,
-.calendar .calendar-date .date-item.active {
- background: #4c59c2;
- border-color: #3e4cb6;
- color: #fff;
-}
-.calendar .calendar-date .date-item.badge::after {
- position: absolute;
- right: .3rem;
- top: .3rem;
- -webkit-transform: translate(50%, -50%);
- -ms-transform: translate(50%, -50%);
- transform: translate(50%, -50%);
-}
-.calendar .calendar-date.disabled .date-item,
-.calendar .calendar-date.disabled .calendar-event,
-.calendar .calendar-date .date-item:disabled,
-.calendar .calendar-date .calendar-event:disabled {
- cursor: default;
- opacity: .25;
- pointer-events: none;
-}
-.calendar .calendar-range {
- position: relative;
-}
-.calendar .calendar-range::before {
- background: #eff1fa;
- content: "";
- height: 2.8rem;
- left: 0;
- position: absolute;
- right: 0;
- top: 50%;
- -webkit-transform: translateY(-50%);
- -ms-transform: translateY(-50%);
- transform: translateY(-50%);
-}
-.calendar .calendar-range.range-start::before {
- left: 50%;
-}
-.calendar .calendar-range.range-end::before {
- right: 50%;
-}
-.calendar .calendar-range .date-item {
- color: #5764c6;
-}
-.calendar.calendar-lg .calendar-body {
- padding: 0;
-}
-.calendar.calendar-lg .calendar-body .calendar-date {
- border-bottom: .1rem solid #f0f1f4;
- border-right: .1rem solid #f0f1f4;
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -webkit-flex-direction: column;
- -ms-flex-direction: column;
- flex-direction: column;
- height: 11rem;
- padding: 0;
-}
-.calendar.calendar-lg .calendar-body .calendar-date:nth-child(7n) {
- border-right: 0;
-}
-.calendar.calendar-lg .calendar-body .calendar-date:nth-last-child(-n+7) {
- border-bottom: 0;
-}
-.calendar.calendar-lg .date-item {
- -webkit-align-self: flex-end;
- align-self: flex-end;
- -ms-flex-item-align: end;
- height: 2.8rem;
- margin-right: .5rem;
- margin-top: .5rem;
-}
-.calendar.calendar-lg .calendar-range::before {
- top: 1.9rem;
-}
-.calendar.calendar-lg .calendar-range.range-start::before {
- left: auto;
- width: 1.9rem;
-}
-.calendar.calendar-lg .calendar-range.range-end::before {
- right: 1.9rem;
-}
-.calendar.calendar-lg .calendar-events {
- -webkit-flex-grow: 1;
- flex-grow: 1;
- -ms-flex-positive: 1;
- line-height: 1;
- overflow-y: auto;
- padding: .5rem;
-}
-.calendar.calendar-lg .calendar-event {
- background: #eff1fa;
- border-radius: .2rem;
- color: #5764c6;
- display: block;
- font-size: 1.2rem;
- margin: .2rem auto;
- overflow: hidden;
- padding: .3rem .4rem;
- text-align: left;
- text-overflow: ellipsis;
- vertical-align: baseline;
- white-space: nowrap;
-}
-.carousel {
- background: #f8f9fa;
- display: block;
- height: 50vh;
- overflow: hidden;
- position: relative;
- width: 100%;
-}
-.carousel .carousel-container {
- height: 100%;
- left: 0;
- position: relative;
-}
-.carousel .carousel-container .carousel-item {
- -webkit-animation: carousel-slideout 1s ease-in-out 1;
- animation: carousel-slideout 1s ease-in-out 1;
- height: 100%;
- left: 0;
- margin: 0;
- opacity: 0;
- position: absolute;
- top: 0;
- width: 100%;
-}
-.carousel .carousel-container .carousel-item:hover .item-prev,
-.carousel .carousel-container .carousel-item:hover .item-next {
- opacity: 1;
-}
-.carousel .carousel-container .item-prev,
-.carousel .carousel-container .item-next {
- background: rgba(231, 233, 237, .25);
- border-color: rgba(231, 233, 237, .5);
- color: #e7e9ed;
- opacity: 0;
- position: absolute;
- top: 50%;
- -webkit-transform: translateY(-50%);
- -ms-transform: translateY(-50%);
- transform: translateY(-50%);
- transition: all .4s ease;
- z-index: 200;
-}
-.carousel .carousel-container .item-prev {
- left: 2rem;
-}
-.carousel .carousel-container .item-next {
- right: 2rem;
-}
-.carousel .carousel-locator:nth-of-type(1):checked ~ .carousel-container .carousel-item:nth-of-type(1),
-.carousel .carousel-locator:nth-of-type(2):checked ~ .carousel-container .carousel-item:nth-of-type(2),
-.carousel .carousel-locator:nth-of-type(3):checked ~ .carousel-container .carousel-item:nth-of-type(3),
-.carousel .carousel-locator:nth-of-type(4):checked ~ .carousel-container .carousel-item:nth-of-type(4) {
- -webkit-animation: carousel-slidein .75s ease-in-out 1;
- animation: carousel-slidein .75s ease-in-out 1;
- opacity: 1;
- z-index: 100;
-}
-.carousel .carousel-locator:nth-of-type(1):checked ~ .carousel-nav .nav-item:nth-of-type(1),
-.carousel .carousel-locator:nth-of-type(2):checked ~ .carousel-nav .nav-item:nth-of-type(2),
-.carousel .carousel-locator:nth-of-type(3):checked ~ .carousel-nav .nav-item:nth-of-type(3),
-.carousel .carousel-locator:nth-of-type(4):checked ~ .carousel-nav .nav-item:nth-of-type(4) {
- color: #e7e9ed;
-}
-.carousel .carousel-nav {
- bottom: 1rem;
- display: -webkit-flex;
- display: flex;
- display: -ms-flexbox;
- -ms-flex-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- left: 50%;
- position: absolute;
- -webkit-transform: translateX(-50%);
- -ms-transform: translateX(-50%);
- transform: translateX(-50%);
- width: 20rem;
- z-index: 200;
-}
-.carousel .carousel-nav .nav-item {
- color: rgba(231, 233, 237, .5);
- display: block;
- -webkit-flex: 1 0 auto;
- -ms-flex: 1 0 auto;
- flex: 1 0 auto;
- height: 4rem;
- margin: .4rem;
- max-width: 5rem;
- position: relative;
-}
-.carousel .carousel-nav .nav-item::before {
- background: currentColor;
- content: "";
- display: block;
- height: .3rem;
- position: absolute;
- top: 2rem;
- width: 100%;
-}
-@-webkit-keyframes carousel-slidein {
- 0% {
- -webkit-transform: translateX(100%);
- transform: translateX(100%);
- }
- 100% {
- -webkit-transform: translateX(0);
- transform: translateX(0);
- }
-}
-@keyframes carousel-slidein {
- 0% {
- -webkit-transform: translateX(100%);
- transform: translateX(100%);
- }
- 100% {
- -webkit-transform: translateX(0);
- transform: translateX(0);
- }
-}
-@-webkit-keyframes carousel-slideout {
- 0% {
- opacity: 1;
- -webkit-transform: translateX(0);
- transform: translateX(0);
- }
- 100% {
- opacity: 1;
- -webkit-transform: translateX(-50%);
- transform: translateX(-50%);
- }
-}
-@keyframes carousel-slideout {
- 0% {
- opacity: 1;
- -webkit-transform: translateX(0);
- transform: translateX(0);
- }
- 100% {
- opacity: 1;
- -webkit-transform: translateX(-50%);
- transform: translateX(-50%);
- }
-}
-.comparison-slider {
- height: 50vh;
- overflow: hidden;
- position: relative;
- width: 100%;
-}
-.comparison-slider .comparison-before,
-.comparison-slider .comparison-after {
- height: 100%;
- left: 0;
- margin: 0;
- overflow: hidden;
- position: absolute;
- top: 0;
-}
-.comparison-slider .comparison-before img,
-.comparison-slider .comparison-after img {
- height: 100%;
- object-fit: none;
- object-position: left top;
- position: absolute;
- width: 100%;
- z-index: -1;
-}
-.comparison-slider .comparison-before {
- width: 100%;
-}
-.comparison-slider .comparison-before .comparison-label {
- right: 1.6rem;
-}
-.comparison-slider .comparison-after {
- max-width: 100%;
- min-width: 0;
- z-index: 1;
-}
-.comparison-slider .comparison-after::before {
- background: transparent;
- content: "";
- cursor: default;
- height: 100%;
- left: 0;
- position: absolute;
- right: 1.6rem;
- top: 0;
- z-index: 1;
-}
-.comparison-slider .comparison-after::after {
- background: currentColor;
- border-radius: 50%;
- box-shadow: 0 -.5rem, 0 .5rem;
- color: #fff;
- content: "";
- height: .3rem;
- position: absolute;
- right: .8rem;
- top: 50%;
- -webkit-transform: translate(50%, -50%);
- -ms-transform: translate(50%, -50%);
- transform: translate(50%, -50%);
- width: .3rem;
- z-index: -1;
-}
-.comparison-slider .comparison-after .comparison-label {
- left: 1.6rem;
-}
-.comparison-slider .comparison-resizer {
- -webkit-animation: first-run 1.5s 1 ease-in-out;
- animation: first-run 1.5s 1 ease-in-out;
- cursor: ew-resize;
- height: 1.5rem;
- left: 0;
- max-width: 100%;
- min-width: 1.6rem;
- opacity: 0;
- outline: none;
- position: relative;
- resize: horizontal;
- top: 50%;
- -webkit-transform: translateY(-50%) scaleY(30);
- -ms-transform: translateY(-50%) scaleY(30);
- transform: translateY(-50%) scaleY(30);
- width: 0;
-}
-.comparison-slider .comparison-label {
- background: rgba(69, 77, 93, .5);
- bottom: 1.6rem;
- color: #fff;
- padding: .3rem .8rem;
- position: absolute;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
-}
-@-webkit-keyframes first-run {
- 0% {
- width: 0;
- }
- 25% {
- width: 4.8rem;
- }
- 50% {
- width: 1.6rem;
- }
- 75% {
- width: 2.4rem;
- }
- 100% {
- width: 0;
- }
-}
-@keyframes first-run {
- 0% {
- width: 0;
- }
- 25% {
- width: 4.8rem;
- }
- 50% {
- width: 1.6rem;
- }
- 75% {
- width: 2.4rem;
- }
- 100% {
- width: 0;
- }
-}
-.filter .filter-nav {
- margin: 1rem 0;
-}
-.filter .filter-body {
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -webkit-flex-wrap: wrap;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
-}
-.filter .filter-tag#tag-all:checked ~ .filter-nav .chip[for="tag-all"],
-.filter .filter-tag#tag-action:checked ~ .filter-nav .chip[for="tag-action"],
-.filter .filter-tag#tag-roleplaying:checked ~ .filter-nav .chip[for="tag-roleplaying"],
-.filter .filter-tag#tag-shooter:checked ~ .filter-nav .chip[for="tag-shooter"],
-.filter .filter-tag#tag-sports:checked ~ .filter-nav .chip[for="tag-sports"] {
- background: #5764c6;
- color: #fff;
-}
-.filter .filter-tag#tag-action:checked ~ .filter-body .column:not([data-tag~="tag-action"]),
-.filter .filter-tag#tag-roleplaying:checked ~ .filter-body .column:not([data-tag~="tag-roleplaying"]),
-.filter .filter-tag#tag-shooter:checked ~ .filter-body .column:not([data-tag~="tag-shooter"]),
-.filter .filter-tag#tag-sports:checked ~ .filter-body .column:not([data-tag~="tag-sports"]) {
- display: none;
-}
-.meter {
- -webkit-appearance: none;
- -moz-appearance: none;
- appearance: none;
- background: #f8f9fa;
- border: 0;
- border-radius: .2rem;
- display: block;
- height: 1.6rem;
- width: 100%;
-}
-.meter::-webkit-meter-inner-element {
- display: block;
-}
-.meter::-webkit-meter-bar,
-.meter::-webkit-meter-optimum-value,
-.meter::-webkit-meter-suboptimum-value,
-.meter::-webkit-meter-even-less-good-value {
- border-radius: .2rem;
-}
-.meter::-webkit-meter-bar {
- background: #f8f9fa;
-}
-.meter::-webkit-meter-optimum-value {
- background: #32b643;
-}
-.meter::-webkit-meter-suboptimum-value {
- background: #ffb700;
-}
-.meter::-webkit-meter-even-less-good-value {
- background: #e85600;
-}
-.meter::-moz-meter-bar,
-.meter:-moz-meter-optimum,
-.meter:-moz-meter-sub-optimum,
-.meter:-moz-meter-sub-sub-optimum {
- border-radius: .2rem;
-}
-.meter:-moz-meter-optimum::-moz-meter-bar {
- background: #32b643;
-}
-.meter:-moz-meter-sub-optimum::-moz-meter-bar {
- background: #ffb700;
-}
-.meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
- background: #e85600;
-}
-.parallax {
- display: block;
- height: auto;
- position: relative;
- width: auto;
-}
-.parallax .parallax-content {
- box-shadow: 0 2rem 4.2rem rgba(69, 77, 93, .3);
- height: auto;
- -webkit-transform: perspective(100rem);
- transform: perspective(100rem);
- -webkit-transform-style: preserve-3d;
- transform-style: preserve-3d;
- transition: all .4s ease;
- width: 100%;
-}
-.parallax .parallax-content::before {
- content: "";
- display: block;
- height: 100%;
- left: 0;
- position: absolute;
- top: 0;
- width: 100%;
-}
-.parallax .parallax-front {
- -webkit-align-items: center;
- align-items: center;
- color: #fff;
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -ms-flex-align: center;
- -ms-flex-pack: center;
- height: 100%;
- -webkit-justify-content: center;
- justify-content: center;
- left: 0;
- position: absolute;
- text-align: center;
- text-shadow: 0 0 3rem rgba(69, 77, 93, .95);
- top: 0;
- -webkit-transform: translateZ(10rem);
- transform: translateZ(10rem);
- transition: all .4s ease;
- width: 100%;
- z-index: 1;
-}
-.parallax .parallax-top-left {
- height: 50%;
- left: 0;
- position: absolute;
- top: 0;
- width: 50%;
- z-index: 300;
-}
-.parallax .parallax-top-left:hover ~ .parallax-content {
- -webkit-transform: perspective(100rem) rotateX(-3deg) rotateY(3deg);
- transform: perspective(100rem) rotateX(-3deg) rotateY(3deg);
-}
-.parallax .parallax-top-left:hover ~ .parallax-content::before {
- background: linear-gradient(135deg, rgba(255, 255, 255, .25) 0%, rgba(255, 255, 255, 0) 50%);
-}
-.parallax .parallax-top-left:hover ~ .parallax-content .parallax-front {
- -webkit-transform: translate3d(-.65rem, -.65rem, 10rem);
- transform: translate3d(-.65rem, -.65rem, 10rem);
-}
-.parallax .parallax-top-right {
- height: 50%;
- position: absolute;
- right: 0;
- top: 0;
- width: 50%;
- z-index: 300;
-}
-.parallax .parallax-top-right:hover ~ .parallax-content {
- -webkit-transform: perspective(100rem) rotateX(-3deg) rotateY(-3deg);
- transform: perspective(100rem) rotateX(-3deg) rotateY(-3deg);
-}
-.parallax .parallax-top-right:hover ~ .parallax-content::before {
- background: linear-gradient(-135deg, rgba(255, 255, 255, .25) 0%, rgba(255, 255, 255, 0) 50%);
-}
-.parallax .parallax-top-right:hover ~ .parallax-content .parallax-front {
- -webkit-transform: translate3d(.65rem, -.65rem, 10rem);
- transform: translate3d(.65rem, -.65rem, 10rem);
-}
-.parallax .parallax-bottom-left {
- bottom: 0;
- height: 50%;
- left: 0;
- position: absolute;
- width: 50%;
- z-index: 300;
-}
-.parallax .parallax-bottom-left:hover ~ .parallax-content {
- -webkit-transform: perspective(100rem) rotateX(3deg) rotateY(3deg);
- transform: perspective(100rem) rotateX(3deg) rotateY(3deg);
-}
-.parallax .parallax-bottom-left:hover ~ .parallax-content::before {
- background: linear-gradient(45deg, rgba(255, 255, 255, .25) 0%, rgba(255, 255, 255, 0) 50%);
-}
-.parallax .parallax-bottom-left:hover ~ .parallax-content .parallax-front {
- -webkit-transform: translate3d(-.65rem, .65rem, 10rem);
- transform: translate3d(-.65rem, .65rem, 10rem);
-}
-.parallax .parallax-bottom-right {
- bottom: 0;
- height: 50%;
- position: absolute;
- right: 0;
- width: 50%;
- z-index: 300;
-}
-.parallax .parallax-bottom-right:hover ~ .parallax-content {
- -webkit-transform: perspective(100rem) rotateX(3deg) rotateY(-3deg);
- transform: perspective(100rem) rotateX(3deg) rotateY(-3deg);
-}
-.parallax .parallax-bottom-right:hover ~ .parallax-content::before {
- background: linear-gradient(-45deg, rgba(255, 255, 255, .25) 0%, rgba(255, 255, 255, 0) 50%);
-}
-.parallax .parallax-bottom-right:hover ~ .parallax-content .parallax-front {
- -webkit-transform: translate3d(.65rem, .65rem, 10rem);
- transform: translate3d(.65rem, .65rem, 10rem);
-}
-.progress {
- -webkit-appearance: none;
- -moz-appearance: none;
- appearance: none;
- background: #f0f1f4;
- border: 0;
- border-radius: .2rem;
- color: #5764c6;
- height: .4rem;
- position: relative;
- width: 100%;
-}
-.progress::-webkit-progress-bar {
- background: transparent;
- border-radius: .2rem;
-}
-.progress::-webkit-progress-value {
- background: #5764c6;
- border-radius: .2rem;
-}
-.progress::-moz-progress-bar {
- background: #5764c6;
- border-radius: .2rem;
-}
-.progress:indeterminate {
- -webkit-animation: progress-indeterminate 1.5s linear infinite;
- animation: progress-indeterminate 1.5s linear infinite;
- background: #f0f1f4 linear-gradient(to right, #5764c6 30%, #f0f1f4 30%) top left / 150% 150% no-repeat;
-}
-.progress:indeterminate::-moz-progress-bar {
- background: transparent;
-}
-@-webkit-keyframes progress-indeterminate {
- 0% {
- background-position: 200% 0;
- }
- 100% {
- background-position: -200% 0;
- }
-}
-@keyframes progress-indeterminate {
- 0% {
- background-position: 200% 0;
- }
- 100% {
- background-position: -200% 0;
- }
-}
-.slider {
- -webkit-appearance: none;
- -moz-appearance: none;
- appearance: none;
- background: transparent;
- display: block;
- height: 2.4rem;
- width: 100%;
-}
-.slider:focus {
- box-shadow: 0 0 0 .2rem rgba(87, 100, 198, .15);
- outline: none;
-}
-.slider::-webkit-slider-thumb {
- -webkit-appearance: none;
- background: #5764c6;
- border: 0;
- border-radius: 50%;
- height: 1.2rem;
- margin-top: -.5rem;
- transition: transform .2s ease, -webkit-transform .2s ease;
- transition: transform .2s ease;
- transition: -webkit-transform .2s ease;
- width: 1.2rem;
-}
-.slider::-moz-range-thumb {
- background: #5764c6;
- border: 0;
- border-radius: 50%;
- height: 1.2rem;
- transition: transform .2s ease, -webkit-transform .2s ease;
- transition: transform .2s ease;
- transition: -webkit-transform .2s ease;
- width: 1.2rem;
-}
-.slider::-ms-thumb {
- background: #5764c6;
- border: 0;
- border-radius: 50%;
- height: 1.2rem;
- transition: transform .2s ease, -webkit-transform .2s ease;
- transition: transform .2s ease;
- transition: -webkit-transform .2s ease;
- width: 1.2rem;
-}
-.slider:active::-webkit-slider-thumb {
- -webkit-transform: scale(1.25);
- transform: scale(1.25);
-}
-.slider:active::-moz-range-thumb {
- transform: scale(1.25);
-}
-.slider:active::-ms-thumb {
- -ms-transform: scale(1.25);
- transform: scale(1.25);
-}
-.slider:disabled::-webkit-slider-thumb,
-.slider.disabled::-webkit-slider-thumb {
- background: #e7e9ed;
- -webkit-transform: scale(1);
- transform: scale(1);
-}
-.slider:disabled::-moz-range-thumb,
-.slider.disabled::-moz-range-thumb {
- background: #e7e9ed;
- transform: scale(1);
-}
-.slider:disabled::-ms-thumb,
-.slider.disabled::-ms-thumb {
- background: #e7e9ed;
- -ms-transform: scale(1);
- transform: scale(1);
-}
-.slider::-webkit-slider-runnable-track {
- background: #f0f1f4;
- border-radius: .2rem;
- height: .2rem;
- width: 100%;
-}
-.slider::-moz-range-track {
- background: #f0f1f4;
- border-radius: .2rem;
- height: .2rem;
- width: 100%;
-}
-.slider::-ms-track {
- background: #f0f1f4;
- border-radius: .2rem;
- height: .2rem;
- width: 100%;
-}
-.slider::-ms-fill-lower {
- background: #5764c6;
-} \ No newline at end of file
diff --git a/dist/spectre-exp.min.css b/dist/spectre-exp.min.css
deleted file mode 100644
index 0f93092..0000000
--- a/dist/spectre-exp.min.css
+++ /dev/null
@@ -1 +0,0 @@
-/*! Spectre.css Experimentals | MIT License | github.com/picturepan2/spectre */.calendar{border:.1rem solid #f0f1f4;border-radius:.2rem;display:block;min-width:28rem;text-align:center}.calendar .calendar-nav{-webkit-align-items:center;align-items:center;background:#f8f9fa;border-top-left-radius:.2rem;border-top-right-radius:.2rem;display:flex;display:-ms-flexbox;display:-webkit-flex;-ms-flex-align:center;font-size:1.6rem;padding:1rem}.calendar .calendar-body,.calendar .calendar-header{display:flex;display:-ms-flexbox;display:-webkit-flex;-ms-flex-pack:center;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-justify-content:center;justify-content:center;padding:1rem 0}.calendar .calendar-body .calendar-date,.calendar .calendar-header .calendar-date{-webkit-flex:0 0 14.28%;-ms-flex:0 0 14.28%;flex:0 0 14.28%;width:14.28%}.calendar .calendar-header{background:#f8f9fa;border-bottom:.1rem solid #f0f1f4;color:#acb3c2;font-size:1.2rem}.calendar .calendar-body{color:#727e96}.calendar .calendar-date{border:0;padding:.4rem}.calendar .calendar-date .date-item{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:.1rem solid transparent;border-radius:50%;color:#727e96;cursor:pointer;height:2.8rem;line-height:2rem;outline:0;padding:.3rem;position:relative;text-align:center;text-decoration:none;transition:all .2s ease;vertical-align:middle;white-space:nowrap;width:2.8rem}.calendar .calendar-date .date-item.date-today{border-color:#e4e6f6;color:#5764c6}.calendar .calendar-date .date-item:focus{box-shadow:0 0 0 .2rem rgba(87,100,198,.15)}.calendar .calendar-date .date-item:focus,.calendar .calendar-date .date-item:hover{background:#fbfbfe;border-color:#e4e6f6;color:#5764c6;text-decoration:none}.calendar .calendar-date .date-item.active,.calendar .calendar-date .date-item:active{background:#4c59c2;border-color:#3e4cb6;color:#fff}.calendar .calendar-date .date-item.badge::after{position:absolute;right:.3rem;top:.3rem;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.calendar .calendar-date .calendar-event:disabled,.calendar .calendar-date .date-item:disabled,.calendar .calendar-date.disabled .calendar-event,.calendar .calendar-date.disabled .date-item{cursor:default;opacity:.25;pointer-events:none}.calendar .calendar-range{position:relative}.calendar .calendar-range::before{background:#eff1fa;content:"";height:2.8rem;left:0;position:absolute;right:0;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.calendar .calendar-range.range-start::before{left:50%}.calendar .calendar-range.range-end::before{right:50%}.calendar .calendar-range .date-item{color:#5764c6}.calendar.calendar-lg .calendar-body{padding:0}.calendar.calendar-lg .calendar-body .calendar-date{border-bottom:.1rem solid #f0f1f4;border-right:.1rem solid #f0f1f4;display:flex;display:-ms-flexbox;display:-webkit-flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;height:11rem;padding:0}.calendar.calendar-lg .calendar-body .calendar-date:nth-child(7n){border-right:0}.calendar.calendar-lg .calendar-body .calendar-date:nth-last-child(-n+7){border-bottom:0}.calendar.calendar-lg .date-item{-webkit-align-self:flex-end;align-self:flex-end;-ms-flex-item-align:end;height:2.8rem;margin-right:.5rem;margin-top:.5rem}.calendar.calendar-lg .calendar-range::before{top:1.9rem}.calendar.calendar-lg .calendar-range.range-start::before{left:auto;width:1.9rem}.calendar.calendar-lg .calendar-range.range-end::before{right:1.9rem}.calendar.calendar-lg .calendar-events{-webkit-flex-grow:1;flex-grow:1;-ms-flex-positive:1;line-height:1;overflow-y:auto;padding:.5rem}.calendar.calendar-lg .calendar-event{background:#eff1fa;border-radius:.2rem;color:#5764c6;display:block;font-size:1.2rem;margin:.2rem auto;overflow:hidden;padding:.3rem .4rem;text-align:left;text-overflow:ellipsis;vertical-align:baseline;white-space:nowrap}.carousel{background:#f8f9fa;display:block;height:50vh;overflow:hidden;position:relative;width:100%}.carousel .carousel-container{height:100%;left:0;position:relative}.carousel .carousel-container .carousel-item{-webkit-animation:carousel-slideout 1s ease-in-out 1;animation:carousel-slideout 1s ease-in-out 1;height:100%;left:0;margin:0;opacity:0;position:absolute;top:0;width:100%}.carousel .carousel-container .carousel-item:hover .item-next,.carousel .carousel-container .carousel-item:hover .item-prev{opacity:1}.carousel .carousel-container .item-next,.carousel .carousel-container .item-prev{background:rgba(231,233,237,.25);border-color:rgba(231,233,237,.5);color:#e7e9ed;opacity:0;position:absolute;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);transition:all .4s ease;z-index:200}.carousel .carousel-container .item-prev{left:2rem}.carousel .carousel-container .item-next{right:2rem}.carousel .carousel-locator:nth-of-type(1):checked~.carousel-container .carousel-item:nth-of-type(1),.carousel .carousel-locator:nth-of-type(2):checked~.carousel-container .carousel-item:nth-of-type(2),.carousel .carousel-locator:nth-of-type(3):checked~.carousel-container .carousel-item:nth-of-type(3),.carousel .carousel-locator:nth-of-type(4):checked~.carousel-container .carousel-item:nth-of-type(4){-webkit-animation:carousel-slidein .75s ease-in-out 1;animation:carousel-slidein .75s ease-in-out 1;opacity:1;z-index:100}.carousel .carousel-locator:nth-of-type(1):checked~.carousel-nav .nav-item:nth-of-type(1),.carousel .carousel-locator:nth-of-type(2):checked~.carousel-nav .nav-item:nth-of-type(2),.carousel .carousel-locator:nth-of-type(3):checked~.carousel-nav .nav-item:nth-of-type(3),.carousel .carousel-locator:nth-of-type(4):checked~.carousel-nav .nav-item:nth-of-type(4){color:#e7e9ed}.carousel .carousel-nav{bottom:1rem;display:-webkit-flex;display:flex;display:-ms-flexbox;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;left:50%;position:absolute;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:20rem;z-index:200}.carousel .carousel-nav .nav-item{color:rgba(231,233,237,.5);display:block;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;height:4rem;margin:.4rem;max-width:5rem;position:relative}.carousel .carousel-nav .nav-item::before{background:currentColor;content:"";display:block;height:.3rem;position:absolute;top:2rem;width:100%}@-webkit-keyframes carousel-slidein{0%{-webkit-transform:translateX(100%);transform:translateX(100%)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes carousel-slidein{0%{-webkit-transform:translateX(100%);transform:translateX(100%)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes carousel-slideout{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:1;-webkit-transform:translateX(-50%);transform:translateX(-50%)}}@keyframes carousel-slideout{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:1;-webkit-transform:translateX(-50%);transform:translateX(-50%)}}.comparison-slider{height:50vh;overflow:hidden;position:relative;width:100%}.comparison-slider .comparison-after,.comparison-slider .comparison-before{height:100%;left:0;margin:0;overflow:hidden;position:absolute;top:0}.comparison-slider .comparison-after img,.comparison-slider .comparison-before img{height:100%;object-fit:none;object-position:left top;position:absolute;width:100%;z-index:-1}.comparison-slider .comparison-before{width:100%}.comparison-slider .comparison-before .comparison-label{right:1.6rem}.comparison-slider .comparison-after{max-width:100%;min-width:0;z-index:1}.comparison-slider .comparison-after::before{background:0 0;content:"";cursor:default;height:100%;left:0;position:absolute;right:1.6rem;top:0;z-index:1}.comparison-slider .comparison-after::after{background:currentColor;border-radius:50%;box-shadow:0 -.5rem,0 .5rem;color:#fff;content:"";height:.3rem;position:absolute;right:.8rem;top:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%);width:.3rem;z-index:-1}.comparison-slider .comparison-after .comparison-label{left:1.6rem}.comparison-slider .comparison-resizer{-webkit-animation:first-run 1.5s 1 ease-in-out;animation:first-run 1.5s 1 ease-in-out;cursor:ew-resize;height:1.5rem;left:0;max-width:100%;min-width:1.6rem;opacity:0;outline:0;position:relative;resize:horizontal;top:50%;-webkit-transform:translateY(-50%) scaleY(30);-ms-transform:translateY(-50%) scaleY(30);transform:translateY(-50%) scaleY(30);width:0}.comparison-slider .comparison-label{background:rgba(69,77,93,.5);bottom:1.6rem;color:#fff;padding:.3rem .8rem;position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}@-webkit-keyframes first-run{0%{width:0}25%{width:4.8rem}50%{width:1.6rem}75%{width:2.4rem}100%{width:0}}@keyframes first-run{0%{width:0}25%{width:4.8rem}50%{width:1.6rem}75%{width:2.4rem}100%{width:0}}.filter .filter-nav{margin:1rem 0}.filter .filter-body{display:flex;display:-ms-flexbox;display:-webkit-flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.filter .filter-tag#tag-action:checked~.filter-nav .chip[for=tag-action],.filter .filter-tag#tag-all:checked~.filter-nav .chip[for=tag-all],.filter .filter-tag#tag-roleplaying:checked~.filter-nav .chip[for=tag-roleplaying],.filter .filter-tag#tag-shooter:checked~.filter-nav .chip[for=tag-shooter],.filter .filter-tag#tag-sports:checked~.filter-nav .chip[for=tag-sports]{background:#5764c6;color:#fff}.filter .filter-tag#tag-action:checked~.filter-body .column:not([data-tag~=tag-action]),.filter .filter-tag#tag-roleplaying:checked~.filter-body .column:not([data-tag~=tag-roleplaying]),.filter .filter-tag#tag-shooter:checked~.filter-body .column:not([data-tag~=tag-shooter]),.filter .filter-tag#tag-sports:checked~.filter-body .column:not([data-tag~=tag-sports]){display:none}.meter{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#f8f9fa;border:0;border-radius:.2rem;display:block;height:1.6rem;width:100%}.meter::-webkit-meter-inner-element{display:block}.meter::-webkit-meter-bar,.meter::-webkit-meter-even-less-good-value,.meter::-webkit-meter-optimum-value,.meter::-webkit-meter-suboptimum-value{border-radius:.2rem}.meter::-webkit-meter-bar{background:#f8f9fa}.meter::-webkit-meter-optimum-value{background:#32b643}.meter::-webkit-meter-suboptimum-value{background:#ffb700}.meter::-webkit-meter-even-less-good-value{background:#e85600}.meter:-moz-meter-optimum,.meter:-moz-meter-sub-optimum,.meter:-moz-meter-sub-sub-optimum,.meter::-moz-meter-bar{border-radius:.2rem}.meter:-moz-meter-optimum::-moz-meter-bar{background:#32b643}.meter:-moz-meter-sub-optimum::-moz-meter-bar{background:#ffb700}.meter:-moz-meter-sub-sub-optimum::-moz-meter-bar{background:#e85600}.parallax{display:block;height:auto;position:relative;width:auto}.parallax .parallax-content{box-shadow:0 2rem 4.2rem rgba(69,77,93,.3);height:auto;-webkit-transform:perspective(100rem);transform:perspective(100rem);-webkit-transform-style:preserve-3d;transform-style:preserve-3d;transition:all .4s ease;width:100%}.parallax .parallax-content::before{content:"";display:block;height:100%;left:0;position:absolute;top:0;width:100%}.parallax .parallax-front{-webkit-align-items:center;align-items:center;color:#fff;display:flex;display:-ms-flexbox;display:-webkit-flex;-ms-flex-align:center;-ms-flex-pack:center;height:100%;-webkit-justify-content:center;justify-content:center;left:0;position:absolute;text-align:center;text-shadow:0 0 3rem rgba(69,77,93,.95);top:0;-webkit-transform:translateZ(10rem);transform:translateZ(10rem);transition:all .4s ease;width:100%;z-index:1}.parallax .parallax-top-left{height:50%;left:0;position:absolute;top:0;width:50%;z-index:300}.parallax .parallax-top-left:hover~.parallax-content{-webkit-transform:perspective(100rem) rotateX(-3deg) rotateY(3deg);transform:perspective(100rem) rotateX(-3deg) rotateY(3deg)}.parallax .parallax-top-left:hover~.parallax-content::before{background:linear-gradient(135deg,rgba(255,255,255,.25) 0,rgba(255,255,255,0) 50%)}.parallax .parallax-top-left:hover~.parallax-content .parallax-front{-webkit-transform:translate3d(-.65rem,-.65rem,10rem);transform:translate3d(-.65rem,-.65rem,10rem)}.parallax .parallax-top-right{height:50%;position:absolute;right:0;top:0;width:50%;z-index:300}.parallax .parallax-top-right:hover~.parallax-content{-webkit-transform:perspective(100rem) rotateX(-3deg) rotateY(-3deg);transform:perspective(100rem) rotateX(-3deg) rotateY(-3deg)}.parallax .parallax-top-right:hover~.parallax-content::before{background:linear-gradient(-135deg,rgba(255,255,255,.25) 0,rgba(255,255,255,0) 50%)}.parallax .parallax-top-right:hover~.parallax-content .parallax-front{-webkit-transform:translate3d(.65rem,-.65rem,10rem);transform:translate3d(.65rem,-.65rem,10rem)}.parallax .parallax-bottom-left{bottom:0;height:50%;left:0;position:absolute;width:50%;z-index:300}.parallax .parallax-bottom-left:hover~.parallax-content{-webkit-transform:perspective(100rem) rotateX(3deg) rotateY(3deg);transform:perspective(100rem) rotateX(3deg) rotateY(3deg)}.parallax .parallax-bottom-left:hover~.parallax-content::before{background:linear-gradient(45deg,rgba(255,255,255,.25) 0,rgba(255,255,255,0) 50%)}.parallax .parallax-bottom-left:hover~.parallax-content .parallax-front{-webkit-transform:translate3d(-.65rem,.65rem,10rem);transform:translate3d(-.65rem,.65rem,10rem)}.parallax .parallax-bottom-right{bottom:0;height:50%;position:absolute;right:0;width:50%;z-index:300}.parallax .parallax-bottom-right:hover~.parallax-content{-webkit-transform:perspective(100rem) rotateX(3deg) rotateY(-3deg);transform:perspective(100rem) rotateX(3deg) rotateY(-3deg)}.parallax .parallax-bottom-right:hover~.parallax-content::before{background:linear-gradient(-45deg,rgba(255,255,255,.25) 0,rgba(255,255,255,0) 50%)}.parallax .parallax-bottom-right:hover~.parallax-content .parallax-front{-webkit-transform:translate3d(.65rem,.65rem,10rem);transform:translate3d(.65rem,.65rem,10rem)}.progress{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#f0f1f4;border:0;border-radius:.2rem;color:#5764c6;height:.4rem;position:relative;width:100%}.progress::-webkit-progress-bar{background:0 0;border-radius:.2rem}.progress::-webkit-progress-value{background:#5764c6;border-radius:.2rem}.progress::-moz-progress-bar{background:#5764c6;border-radius:.2rem}.progress:indeterminate{-webkit-animation:progress-indeterminate 1.5s linear infinite;animation:progress-indeterminate 1.5s linear infinite;background:#f0f1f4 linear-gradient(to right,#5764c6 30%,#f0f1f4 30%) top left/150% 150% no-repeat}.progress:indeterminate::-moz-progress-bar{background:0 0}@-webkit-keyframes progress-indeterminate{0%{background-position:200% 0}100%{background-position:-200% 0}}@keyframes progress-indeterminate{0%{background-position:200% 0}100%{background-position:-200% 0}}.slider{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;display:block;height:2.4rem;width:100%}.slider:focus{box-shadow:0 0 0 .2rem rgba(87,100,198,.15);outline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;background:#5764c6;border:0;border-radius:50%;height:1.2rem;margin-top:-.5rem;transition:transform .2s ease,-webkit-transform .2s ease;transition:transform .2s ease;transition:-webkit-transform .2s ease;width:1.2rem}.slider::-moz-range-thumb{background:#5764c6;border:0;border-radius:50%;height:1.2rem;transition:transform .2s ease,-webkit-transform .2s ease;transition:transform .2s ease;transition:-webkit-transform .2s ease;width:1.2rem}.slider::-ms-thumb{background:#5764c6;border:0;border-radius:50%;height:1.2rem;transition:transform .2s ease,-webkit-transform .2s ease;transition:transform .2s ease;transition:-webkit-transform .2s ease;width:1.2rem}.slider:active::-webkit-slider-thumb{-webkit-transform:scale(1.25);transform:scale(1.25)}.slider:active::-moz-range-thumb{transform:scale(1.25)}.slider:active::-ms-thumb{-ms-transform:scale(1.25);transform:scale(1.25)}.slider.disabled::-webkit-slider-thumb,.slider:disabled::-webkit-slider-thumb{background:#e7e9ed;-webkit-transform:scale(1);transform:scale(1)}.slider.disabled::-moz-range-thumb,.slider:disabled::-moz-range-thumb{background:#e7e9ed;transform:scale(1)}.slider.disabled::-ms-thumb,.slider:disabled::-ms-thumb{background:#e7e9ed;-ms-transform:scale(1);transform:scale(1)}.slider::-webkit-slider-runnable-track{background:#f0f1f4;border-radius:.2rem;height:.2rem;width:100%}.slider::-moz-range-track{background:#f0f1f4;border-radius:.2rem;height:.2rem;width:100%}.slider::-ms-track{background:#f0f1f4;border-radius:.2rem;height:.2rem;width:100%}.slider::-ms-fill-lower{background:#5764c6} \ No newline at end of file
diff --git a/dist/spectre-icons.css b/dist/spectre-icons.css
deleted file mode 100644
index 4d43246..0000000
--- a/dist/spectre-icons.css
+++ /dev/null
@@ -1,467 +0,0 @@
-/*! Spectre.css Icons | MIT License | github.com/picturepan2/spectre */
-.icon {
- box-sizing: border-box;
- display: inline-block;
- font-size: inherit;
- height: 1em;
- position: relative;
- text-indent: -999rem;
- vertical-align: middle;
- width: 1em;
-}
-.icon::before,
-.icon::after {
- display: block;
- left: 50%;
- position: absolute;
- top: 50%;
- -webkit-transform: translate(-50%, -50%);
- -ms-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
-}
-.icon-arrow-down::before,
-.icon-arrow-left::before,
-.icon-arrow-right::before,
-.icon-arrow-up::before,
-.icon-downward::before,
-.icon-back::before,
-.icon-forward::before,
-.icon-upward::before {
- border: .2rem solid currentColor;
- border-bottom: 0;
- border-right: 0;
- content: "";
- height: .65em;
- -webkit-transform: translate(-25%, -50%) rotate(-45deg);
- -ms-transform: translate(-25%, -50%) rotate(-45deg);
- transform: translate(-25%, -50%) rotate(-45deg);
- width: .65em;
-}
-.icon-arrow-down,
-.icon-downward {
- -webkit-transform: rotate(-90deg);
- -ms-transform: rotate(-90deg);
- transform: rotate(-90deg);
-}
-.icon-arrow-right,
-.icon-forward {
- -webkit-transform: rotate(180deg);
- -ms-transform: rotate(180deg);
- transform: rotate(180deg);
-}
-.icon-arrow-up,
-.icon-upward {
- -webkit-transform: rotate(90deg);
- -ms-transform: rotate(90deg);
- transform: rotate(90deg);
-}
-.icon-downward::before,
-.icon-back::before,
-.icon-forward::before,
-.icon-upward::before {
- -webkit-transform: translate(-50%, -50%) rotate(-45deg);
- -ms-transform: translate(-50%, -50%) rotate(-45deg);
- transform: translate(-50%, -50%) rotate(-45deg);
-}
-.icon-downward::after,
-.icon-back::after,
-.icon-forward::after,
-.icon-upward::after {
- background: currentColor;
- content: "";
- height: .2rem;
- left: 55%;
- width: .8em;
-}
-.icon-caret::before {
- border-left: .3em solid transparent;
- border-right: .3em solid transparent;
- border-top: .3em solid currentColor;
- content: "";
- height: 0;
- -webkit-transform: translate(-50%, -25%);
- -ms-transform: translate(-50%, -25%);
- transform: translate(-50%, -25%);
- width: 0;
-}
-.icon-menu::before {
- background: currentColor;
- box-shadow: 0 -.35em, 0 .35em;
- content: "";
- height: .2rem;
- width: 100%;
-}
-.icon-apps::before {
- background: currentColor;
- box-shadow: -.35em -.35em, -.35em 0, -.35em .35em, 0 -.35em, 0 .35em, .35em -.35em, .35em 0, .35em .35em;
- content: "";
- height: .3rem;
- width: .3rem;
-}
-.icon-resize-horiz::before,
-.icon-resize-vert::before,
-.icon-resize-horiz::after,
-.icon-resize-vert::after {
- border: .2rem solid currentColor;
- border-bottom: 0;
- border-right: 0;
- content: "";
- height: .45em;
- width: .45em;
-}
-.icon-resize-horiz::before,
-.icon-resize-vert::before {
- -webkit-transform: translate(-50%, -90%) rotate(45deg);
- -ms-transform: translate(-50%, -90%) rotate(45deg);
- transform: translate(-50%, -90%) rotate(45deg);
-}
-.icon-resize-horiz::after,
-.icon-resize-vert::after {
- -webkit-transform: translate(-50%, -10%) rotate(225deg);
- -ms-transform: translate(-50%, -10%) rotate(225deg);
- transform: translate(-50%, -10%) rotate(225deg);
-}
-.icon-resize-horiz::before {
- -webkit-transform: translate(-90%, -50%) rotate(-45deg);
- -ms-transform: translate(-90%, -50%) rotate(-45deg);
- transform: translate(-90%, -50%) rotate(-45deg);
-}
-.icon-resize-horiz::after {
- -webkit-transform: translate(-10%, -50%) rotate(135deg);
- -ms-transform: translate(-10%, -50%) rotate(135deg);
- transform: translate(-10%, -50%) rotate(135deg);
-}
-.icon-more-horiz::before,
-.icon-more-vert::before {
- background: currentColor;
- border-radius: 50%;
- box-shadow: -.4em 0, .4em 0;
- content: "";
- height: .3rem;
- width: .3rem;
-}
-.icon-more-vert::before {
- box-shadow: 0 -.4em, 0 .4em;
-}
-.icon-plus::before,
-.icon-minus::before,
-.icon-cross::before {
- background: currentColor;
- content: "";
- height: .2rem;
- width: 90%;
-}
-.icon-plus::after,
-.icon-cross::after {
- background: currentColor;
- content: "";
- height: 90%;
- width: .2rem;
-}
-.icon-cross::before {
- width: 100%;
-}
-.icon-cross::after {
- height: 100%;
-}
-.icon-cross::before,
-.icon-cross::after {
- -webkit-transform: translate(-50%, -50%) rotate(45deg);
- -ms-transform: translate(-50%, -50%) rotate(45deg);
- transform: translate(-50%, -50%) rotate(45deg);
-}
-.icon-check::before {
- border: .2rem solid currentColor;
- border-right: 0;
- border-top: 0;
- content: "";
- height: .5em;
- -webkit-transform: translate(-50%, -75%) rotate(-45deg);
- -ms-transform: translate(-50%, -75%) rotate(-45deg);
- transform: translate(-50%, -75%) rotate(-45deg);
- width: .9em;
-}
-.icon-refresh::before {
- border: .2rem solid currentColor;
- border-radius: 50%;
- border-right-color: transparent;
- content: "";
- height: .9em;
- width: .9em;
-}
-.icon-refresh::after {
- border: .2em solid currentColor;
- border-left-color: transparent;
- border-top-color: transparent;
- content: "";
- height: 0;
- left: 75%;
- top: 25%;
- width: 0;
-}
-.icon-search::before {
- border: .2rem solid currentColor;
- border-radius: 50%;
- content: "";
- height: .75em;
- left: 5%;
- top: 5%;
- -webkit-transform: translate(0, 0) rotate(45deg);
- -ms-transform: translate(0, 0) rotate(45deg);
- transform: translate(0, 0) rotate(45deg);
- width: .75em;
-}
-.icon-search::after {
- background: currentColor;
- content: "";
- height: .2rem;
- left: 80%;
- top: 80%;
- -webkit-transform: translate(-50%, -50%) rotate(45deg);
- -ms-transform: translate(-50%, -50%) rotate(45deg);
- transform: translate(-50%, -50%) rotate(45deg);
- width: .4em;
-}
-.icon-edit::before {
- border: .2rem solid currentColor;
- content: "";
- height: .4em;
- -webkit-transform: translate(-40%, -60%) rotate(-45deg);
- -ms-transform: translate(-40%, -60%) rotate(-45deg);
- transform: translate(-40%, -60%) rotate(-45deg);
- width: .85em;
-}
-.icon-edit::after {
- border: .15em solid currentColor;
- border-right-color: transparent;
- border-top-color: transparent;
- content: "";
- height: 0;
- left: 10%;
- top: 95%;
- -webkit-transform: translate(0, -100%);
- -ms-transform: translate(0, -100%);
- transform: translate(0, -100%);
- width: 0;
-}
-.icon-delete {
- height: .7em;
- margin: .15em .1em;
- width: .8em;
-}
-.icon-delete::before {
- border: .2rem solid currentColor;
- border-bottom-left-radius: .2rem;
- border-bottom-right-radius: .2rem;
- border-top: 0;
- content: "";
- height: .7em;
- top: 65%;
- width: .75em;
-}
-.icon-delete::after {
- background: currentColor;
- content: "";
- height: .2rem;
- top: 10%;
- width: .9em;
-}
-.icon-share {
- border: .2rem solid currentColor;
- border-radius: .2rem;
- border-right: 0;
- border-top: 0;
-}
-.icon-share::before {
- border: .2rem solid currentColor;
- border-bottom: 0;
- border-right: 0;
- content: "";
- height: .45em;
- left: 100%;
- top: 36%;
- -webkit-transform: translate(-125%, -50%) rotate(135deg);
- -ms-transform: translate(-125%, -50%) rotate(135deg);
- transform: translate(-125%, -50%) rotate(135deg);
- width: .45em;
-}
-.icon-share::after {
- border: .2rem solid currentColor;
- border-bottom: 0;
- border-radius: 75% 5%;
- border-right: 0;
- content: "";
- height: .4em;
- width: .6em;
-}
-.icon-flag::before {
- background: currentColor;
- content: "";
- height: 1em;
- left: 10%;
- width: .2rem;
-}
-.icon-flag::after {
- border: .2rem solid currentColor;
- border-bottom-right-radius: .2rem;
- border-left: 0;
- border-top-right-radius: .2rem;
- content: "";
- height: .65em;
- left: 55%;
- top: 35%;
- width: .75em;
-}
-.icon-bookmark::before {
- border: .2rem solid currentColor;
- border-bottom: 0;
- border-top-left-radius: .2rem;
- border-top-right-radius: .2rem;
- content: "";
- height: 90%;
- width: 90%;
-}
-.icon-bookmark::after {
- border: .2rem solid currentColor;
- border-bottom: 0;
- border-left: 0;
- border-radius: .2rem;
- content: "";
- height: 50%;
- -webkit-transform: translate(-50%, 35%) rotate(-45deg) skew(15deg, 15deg);
- -ms-transform: translate(-50%, 35%) rotate(-45deg) skew(15deg, 15deg);
- transform: translate(-50%, 35%) rotate(-45deg) skew(15deg, 15deg);
- width: 50%;
-}
-.icon-download,
-.icon-upload {
- border-bottom: .2rem solid currentColor;
-}
-.icon-download::before,
-.icon-upload::before {
- border: .2rem solid currentColor;
- border-bottom: 0;
- border-right: 0;
- content: "";
- height: .5em;
- -webkit-transform: translate(-50%, -60%) rotate(-135deg);
- -ms-transform: translate(-50%, -60%) rotate(-135deg);
- transform: translate(-50%, -60%) rotate(-135deg);
- width: .5em;
-}
-.icon-download::after,
-.icon-upload::after {
- background: currentColor;
- content: "";
- height: .6em;
- top: 40%;
- width: .2rem;
-}
-.icon-upload::before {
- -webkit-transform: translate(-50%, -60%) rotate(45deg);
- -ms-transform: translate(-50%, -60%) rotate(45deg);
- transform: translate(-50%, -60%) rotate(45deg);
-}
-.icon-upload::after {
- top: 50%;
-}
-.icon-time {
- border: .2rem solid currentColor;
- border-radius: 50%;
-}
-.icon-time::before {
- background: currentColor;
- content: "";
- height: .4em;
- -webkit-transform: translate(-50%, -75%);
- -ms-transform: translate(-50%, -75%);
- transform: translate(-50%, -75%);
- width: .2rem;
-}
-.icon-time::after {
- background: currentColor;
- content: "";
- height: .3em;
- -webkit-transform: translate(-50%, -75%) rotate(90deg);
- -ms-transform: translate(-50%, -75%) rotate(90deg);
- transform: translate(-50%, -75%) rotate(90deg);
- -webkit-transform-origin: 50% 90%;
- -ms-transform-origin: 50% 90%;
- transform-origin: 50% 90%;
- width: .2rem;
-}
-.icon-mail::before {
- border: .2rem solid currentColor;
- border-radius: .2rem;
- content: "";
- height: .8em;
- width: 1em;
-}
-.icon-mail::after {
- border: .2rem solid currentColor;
- border-right: 0;
- border-top: 0;
- content: "";
- height: .5em;
- -webkit-transform: translate(-50%, -90%) rotate(-45deg) skew(10deg, 10deg);
- -ms-transform: translate(-50%, -90%) rotate(-45deg) skew(10deg, 10deg);
- transform: translate(-50%, -90%) rotate(-45deg) skew(10deg, 10deg);
- width: .5em;
-}
-.icon-people::before {
- border: .2rem solid currentColor;
- border-radius: 50%;
- content: "";
- height: .45em;
- top: 25%;
- width: .45em;
-}
-.icon-people::after {
- border: .2rem solid currentColor;
- border-radius: 50% 50% 0 0;
- content: "";
- height: .4em;
- top: 75%;
- width: .9em;
-}
-.icon-file::before {
- border: .2rem solid currentColor;
- border-radius: .2rem .4em .2rem .2rem;
- content: "";
- height: 1em;
- width: .9em;
-}
-.icon-file::after {
- border: .2em solid currentColor;
- border-right-color: transparent;
- border-top-color: transparent;
- content: "";
- height: 0;
- left: .8em;
- top: .2em;
- width: 0;
-}
-.icon-link::before,
-.icon-link::after {
- border: .2rem solid currentColor;
- border-radius: 5em;
- border-right-color: transparent;
- content: "";
- height: .5em;
- width: .75em;
-}
-.icon-link::before {
- -webkit-transform: translate(-70%, -45%) rotate(-45deg);
- -ms-transform: translate(-70%, -45%) rotate(-45deg);
- transform: translate(-70%, -45%) rotate(-45deg);
-}
-.icon-link::after {
- -webkit-transform: translate(-30%, -55%) rotate(135deg);
- -ms-transform: translate(-30%, -55%) rotate(135deg);
- transform: translate(-30%, -55%) rotate(135deg);
-}
-.btn .icon,
-.toast .icon,
-.menu .icon {
- vertical-align: -10%;
-} \ No newline at end of file
diff --git a/dist/spectre-icons.min.css b/dist/spectre-icons.min.css
deleted file mode 100644
index 192bc70..0000000
--- a/dist/spectre-icons.min.css
+++ /dev/null
@@ -1 +0,0 @@
-/*! Spectre.css Icons | MIT License | github.com/picturepan2/spectre */.icon{box-sizing:border-box;display:inline-block;font-size:inherit;height:1em;position:relative;text-indent:-999rem;vertical-align:middle;width:1em}.icon::after,.icon::before{display:block;left:50%;position:absolute;top:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.icon-arrow-down::before,.icon-arrow-left::before,.icon-arrow-right::before,.icon-arrow-up::before,.icon-back::before,.icon-downward::before,.icon-forward::before,.icon-upward::before{border:.2rem solid currentColor;border-bottom:0;border-right:0;content:"";height:.65em;-webkit-transform:translate(-25%,-50%) rotate(-45deg);-ms-transform:translate(-25%,-50%) rotate(-45deg);transform:translate(-25%,-50%) rotate(-45deg);width:.65em}.icon-arrow-down,.icon-downward{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.icon-arrow-right,.icon-forward{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.icon-arrow-up,.icon-upward{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.icon-back::before,.icon-downward::before,.icon-forward::before,.icon-upward::before{-webkit-transform:translate(-50%,-50%) rotate(-45deg);-ms-transform:translate(-50%,-50%) rotate(-45deg);transform:translate(-50%,-50%) rotate(-45deg)}.icon-back::after,.icon-downward::after,.icon-forward::after,.icon-upward::after{background:currentColor;content:"";height:.2rem;left:55%;width:.8em}.icon-caret::before{border-left:.3em solid transparent;border-right:.3em solid transparent;border-top:.3em solid currentColor;content:"";height:0;-webkit-transform:translate(-50%,-25%);-ms-transform:translate(-50%,-25%);transform:translate(-50%,-25%);width:0}.icon-menu::before{background:currentColor;box-shadow:0 -.35em,0 .35em;content:"";height:.2rem;width:100%}.icon-apps::before{background:currentColor;box-shadow:-.35em -.35em,-.35em 0,-.35em .35em,0 -.35em,0 .35em,.35em -.35em,.35em 0,.35em .35em;content:"";height:.3rem;width:.3rem}.icon-resize-horiz::after,.icon-resize-horiz::before,.icon-resize-vert::after,.icon-resize-vert::before{border:.2rem solid currentColor;border-bottom:0;border-right:0;content:"";height:.45em;width:.45em}.icon-resize-horiz::before,.icon-resize-vert::before{-webkit-transform:translate(-50%,-90%) rotate(45deg);-ms-transform:translate(-50%,-90%) rotate(45deg);transform:translate(-50%,-90%) rotate(45deg)}.icon-resize-horiz::after,.icon-resize-vert::after{-webkit-transform:translate(-50%,-10%) rotate(225deg);-ms-transform:translate(-50%,-10%) rotate(225deg);transform:translate(-50%,-10%) rotate(225deg)}.icon-resize-horiz::before{-webkit-transform:translate(-90%,-50%) rotate(-45deg);-ms-transform:translate(-90%,-50%) rotate(-45deg);transform:translate(-90%,-50%) rotate(-45deg)}.icon-resize-horiz::after{-webkit-transform:translate(-10%,-50%) rotate(135deg);-ms-transform:translate(-10%,-50%) rotate(135deg);transform:translate(-10%,-50%) rotate(135deg)}.icon-more-horiz::before,.icon-more-vert::before{background:currentColor;border-radius:50%;box-shadow:-.4em 0,.4em 0;content:"";height:.3rem;width:.3rem}.icon-more-vert::before{box-shadow:0 -.4em,0 .4em}.icon-cross::before,.icon-minus::before,.icon-plus::before{background:currentColor;content:"";height:.2rem;width:90%}.icon-cross::after,.icon-plus::after{background:currentColor;content:"";height:90%;width:.2rem}.icon-cross::before{width:100%}.icon-cross::after{height:100%}.icon-cross::after,.icon-cross::before{-webkit-transform:translate(-50%,-50%) rotate(45deg);-ms-transform:translate(-50%,-50%) rotate(45deg);transform:translate(-50%,-50%) rotate(45deg)}.icon-check::before{border:.2rem solid currentColor;border-right:0;border-top:0;content:"";height:.5em;-webkit-transform:translate(-50%,-75%) rotate(-45deg);-ms-transform:translate(-50%,-75%) rotate(-45deg);transform:translate(-50%,-75%) rotate(-45deg);width:.9em}.icon-refresh::before{border:.2rem solid currentColor;border-radius:50%;border-right-color:transparent;content:"";height:.9em;width:.9em}.icon-refresh::after{border:.2em solid currentColor;border-left-color:transparent;border-top-color:transparent;content:"";height:0;left:75%;top:25%;width:0}.icon-search::before{border:.2rem solid currentColor;border-radius:50%;content:"";height:.75em;left:5%;top:5%;-webkit-transform:translate(0,0) rotate(45deg);-ms-transform:translate(0,0) rotate(45deg);transform:translate(0,0) rotate(45deg);width:.75em}.icon-search::after{background:currentColor;content:"";height:.2rem;left:80%;top:80%;-webkit-transform:translate(-50%,-50%) rotate(45deg);-ms-transform:translate(-50%,-50%) rotate(45deg);transform:translate(-50%,-50%) rotate(45deg);width:.4em}.icon-edit::before{border:.2rem solid currentColor;content:"";height:.4em;-webkit-transform:translate(-40%,-60%) rotate(-45deg);-ms-transform:translate(-40%,-60%) rotate(-45deg);transform:translate(-40%,-60%) rotate(-45deg);width:.85em}.icon-edit::after{border:.15em solid currentColor;border-right-color:transparent;border-top-color:transparent;content:"";height:0;left:10%;top:95%;-webkit-transform:translate(0,-100%);-ms-transform:translate(0,-100%);transform:translate(0,-100%);width:0}.icon-delete{height:.7em;margin:.15em .1em;width:.8em}.icon-delete::before{border:.2rem solid currentColor;border-bottom-left-radius:.2rem;border-bottom-right-radius:.2rem;border-top:0;content:"";height:.7em;top:65%;width:.75em}.icon-delete::after{background:currentColor;content:"";height:.2rem;top:10%;width:.9em}.icon-share{border:.2rem solid currentColor;border-radius:.2rem;border-right:0;border-top:0}.icon-share::before{border:.2rem solid currentColor;border-bottom:0;border-right:0;content:"";height:.45em;left:100%;top:36%;-webkit-transform:translate(-125%,-50%) rotate(135deg);-ms-transform:translate(-125%,-50%) rotate(135deg);transform:translate(-125%,-50%) rotate(135deg);width:.45em}.icon-share::after{border:.2rem solid currentColor;border-bottom:0;border-radius:75% 5%;border-right:0;content:"";height:.4em;width:.6em}.icon-flag::before{background:currentColor;content:"";height:1em;left:10%;width:.2rem}.icon-flag::after{border:.2rem solid currentColor;border-bottom-right-radius:.2rem;border-left:0;border-top-right-radius:.2rem;content:"";height:.65em;left:55%;top:35%;width:.75em}.icon-bookmark::before{border:.2rem solid currentColor;border-bottom:0;border-top-left-radius:.2rem;border-top-right-radius:.2rem;content:"";height:90%;width:90%}.icon-bookmark::after{border:.2rem solid currentColor;border-bottom:0;border-left:0;border-radius:.2rem;content:"";height:50%;-webkit-transform:translate(-50%,35%) rotate(-45deg) skew(15deg,15deg);-ms-transform:translate(-50%,35%) rotate(-45deg) skew(15deg,15deg);transform:translate(-50%,35%) rotate(-45deg) skew(15deg,15deg);width:50%}.icon-download,.icon-upload{border-bottom:.2rem solid currentColor}.icon-download::before,.icon-upload::before{border:.2rem solid currentColor;border-bottom:0;border-right:0;content:"";height:.5em;-webkit-transform:translate(-50%,-60%) rotate(-135deg);-ms-transform:translate(-50%,-60%) rotate(-135deg);transform:translate(-50%,-60%) rotate(-135deg);width:.5em}.icon-download::after,.icon-upload::after{background:currentColor;content:"";height:.6em;top:40%;width:.2rem}.icon-upload::before{-webkit-transform:translate(-50%,-60%) rotate(45deg);-ms-transform:translate(-50%,-60%) rotate(45deg);transform:translate(-50%,-60%) rotate(45deg)}.icon-upload::after{top:50%}.icon-time{border:.2rem solid currentColor;border-radius:50%}.icon-time::before{background:currentColor;content:"";height:.4em;-webkit-transform:translate(-50%,-75%);-ms-transform:translate(-50%,-75%);transform:translate(-50%,-75%);width:.2rem}.icon-time::after{background:currentColor;content:"";height:.3em;-webkit-transform:translate(-50%,-75%) rotate(90deg);-ms-transform:translate(-50%,-75%) rotate(90deg);transform:translate(-50%,-75%) rotate(90deg);-webkit-transform-origin:50% 90%;-ms-transform-origin:50% 90%;transform-origin:50% 90%;width:.2rem}.icon-mail::before{border:.2rem solid currentColor;border-radius:.2rem;content:"";height:.8em;width:1em}.icon-mail::after{border:.2rem solid currentColor;border-right:0;border-top:0;content:"";height:.5em;-webkit-transform:translate(-50%,-90%) rotate(-45deg) skew(10deg,10deg);-ms-transform:translate(-50%,-90%) rotate(-45deg) skew(10deg,10deg);transform:translate(-50%,-90%) rotate(-45deg) skew(10deg,10deg);width:.5em}.icon-people::before{border:.2rem solid currentColor;border-radius:50%;content:"";height:.45em;top:25%;width:.45em}.icon-people::after{border:.2rem solid currentColor;border-radius:50% 50% 0 0;content:"";height:.4em;top:75%;width:.9em}.icon-file::before{border:.2rem solid currentColor;border-radius:.2rem .4em .2rem .2rem;content:"";height:1em;width:.9em}.icon-file::after{border:.2em solid currentColor;border-right-color:transparent;border-top-color:transparent;content:"";height:0;left:.8em;top:.2em;width:0}.icon-link::after,.icon-link::before{border:.2rem solid currentColor;border-radius:5em;border-right-color:transparent;content:"";height:.5em;width:.75em}.icon-link::before{-webkit-transform:translate(-70%,-45%) rotate(-45deg);-ms-transform:translate(-70%,-45%) rotate(-45deg);transform:translate(-70%,-45%) rotate(-45deg)}.icon-link::after{-webkit-transform:translate(-30%,-55%) rotate(135deg);-ms-transform:translate(-30%,-55%) rotate(135deg);transform:translate(-30%,-55%) rotate(135deg)}.btn .icon,.menu .icon,.toast .icon{vertical-align:-10%} \ No newline at end of file
diff --git a/dist/spectre.css b/dist/spectre.css
deleted file mode 100644
index 2f74731..0000000
--- a/dist/spectre.css
+++ /dev/null
@@ -1,2891 +0,0 @@
-/*! Spectre.css | MIT License | github.com/picturepan2/spectre */
-/* Manually forked from Normalize.css */
-/* normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
-/**
- * 1. Change the default font family in all browsers (opinionated).
- * 2. Correct the line height in all browsers.
- * 3. Prevent adjustments of font size after orientation changes in
- * IE on Windows Phone and in iOS.
- */
-/* Document
- ========================================================================== */
-html {
- font-family: sans-serif;
- /* 1 */
- line-height: 1.15;
- /* 3 */
- -webkit-text-size-adjust: 100%;
- /* 2 */
- -ms-text-size-adjust: 100%;
- /* 3 */
-}
-/* Sections
- ========================================================================== */
-/**
- * Remove the margin in all browsers (opinionated).
- */
-body {
- margin: 0;
-}
-/**
- * Add the correct display in IE 9-.
- */
-article,
-aside,
-footer,
-header,
-nav,
-section {
- display: block;
-}
-/**
- * Correct the font size and margin on `h1` elements within `section` and
- * `article` contexts in Chrome, Firefox, and Safari.
- */
-h1 {
- font-size: 2em;
- margin: .67em 0;
-}
-/* Grouping content
- ========================================================================== */
-/**
- * Add the correct display in IE 9-.
- * 1. Add the correct display in IE.
- */
-figcaption,
-figure,
-main {
- /* 1 */
- display: block;
-}
-/**
- * Add the correct margin in IE 8 (removed).
- */
-/**
- * 1. Add the correct box sizing in Firefox.
- * 2. Show the overflow in Edge and IE.
- */
-hr {
- box-sizing: content-box;
- /* 1 */
- height: 0;
- /* 1 */
- overflow: visible;
- /* 2 */
-}
-/**
- * 1. Correct the inheritance and scaling of font size in all browsers. (removed)
- * 2. Correct the odd `em` font sizing in all browsers.
- */
-/* Text-level semantics
- ========================================================================== */
-/**
- * 1. Remove the gray background on active links in IE 10.
- * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
- */
-a {
- background-color: transparent;
- /* 1 */
- -webkit-text-decoration-skip: objects;
- /* 2 */
-}
-/**
- * Remove the outline on focused links when they are also active or hovered
- * in all browsers (opinionated).
- */
-a:active,
-a:hover {
- outline-width: 0;
-}
-/**
- * 1. Remove the bottom border in Firefox 39-.
- * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. (removed)
- */
-/**
- * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
- */
-b,
-strong {
- font-weight: inherit;
-}
-/**
- * Add the correct font weight in Chrome, Edge, and Safari.
- */
-b,
-strong {
- font-weight: bolder;
-}
-/**
- * 1. Correct the inheritance and scaling of font size in all browsers.
- * 2. Correct the odd `em` font sizing in all browsers.
- */
-code,
-kbd,
-pre,
-samp {
- font-family: monospace, monospace;
- /* 1 */
- font-size: 1em;
- /* 2 */
-}
-/**
- * Add the correct font style in Android 4.3-.
- */
-dfn {
- font-style: italic;
-}
-/**
- * Add the correct background and color in IE 9-. (Removed)
- */
-/**
- * Add the correct font size in all browsers.
- */
-small {
- font-size: 80%;
-}
-/**
- * Prevent `sub` and `sup` elements from affecting the line height in
- * all browsers.
- */
-sub,
-sup {
- font-size: 75%;
- line-height: 0;
- position: relative;
- vertical-align: baseline;
-}
-sub {
- bottom: -.25em;
-}
-sup {
- top: -.5em;
-}
-/* Embedded content
- ========================================================================== */
-/**
- * Add the correct display in IE 9-.
- */
-audio,
-video {
- display: inline-block;
-}
-/**
- * Add the correct display in iOS 4-7.
- */
-audio:not([controls]) {
- display: none;
- height: 0;
-}
-/**
- * Remove the border on images inside links in IE 10-.
- */
-img {
- border-style: none;
-}
-/**
- * Hide the overflow in IE.
- */
-svg:not(:root) {
- overflow: hidden;
-}
-/* Forms
- ========================================================================== */
-/**
- * 1. Change the font styles in all browsers (opinionated).
- * 2. Remove the margin in Firefox and Safari.
- */
-button,
-input,
-optgroup,
-select,
-textarea {
- font-family: inherit;
- /* 1 (changed) */
- font-size: inherit;
- /* 1 (changed) */
- line-height: inherit;
- /* 1 (changed) */
- margin: 0;
- /* 2 */
-}
-/**
- * Show the overflow in IE.
- * 1. Show the overflow in Edge.
- */
-button,
-input {
- /* 1 */
- overflow: visible;
-}
-/**
- * Remove the inheritance of text transform in Edge, Firefox, and IE.
- * 1. Remove the inheritance of text transform in Firefox.
- */
-button,
-select {
- /* 1 */
- text-transform: none;
-}
-/**
- * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
- * controls in Android 4.
- * 2. Correct the inability to style clickable types in iOS and Safari.
- */
-button,
-html [type="button"],
-[type="reset"],
-[type="submit"] {
- -webkit-appearance: button;
- /* 2 */
-}
-/**
- * Remove the inner border and padding in Firefox.
- */
-button::-moz-focus-inner,
-[type="button"]::-moz-focus-inner,
-[type="reset"]::-moz-focus-inner,
-[type="submit"]::-moz-focus-inner {
- border-style: none;
- padding: 0;
-}
-/**
- * Restore the focus styles unset by the previous rule (removed).
- */
-/**
- * Change the border, margin, and padding in all browsers (opinionated) (changed).
- */
-fieldset {
- border: 0;
- margin: 0;
- padding: 0;
-}
-/**
- * 1. Correct the text wrapping in Edge and IE.
- * 2. Correct the color inheritance from `fieldset` elements in IE.
- * 3. Remove the padding so developers are not caught out when they zero out
- * `fieldset` elements in all browsers.
- */
-legend {
- box-sizing: border-box;
- /* 1 */
- color: inherit;
- /* 2 */
- display: table;
- /* 1 */
- max-width: 100%;
- /* 1 */
- padding: 0;
- /* 3 */
- white-space: normal;
- /* 1 */
-}
-/**
- * 1. Add the correct display in IE 9-.
- * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
- */
-progress {
- display: inline-block;
- /* 1 */
- vertical-align: baseline;
- /* 2 */
-}
-/**
- * Remove the default vertical scrollbar in IE.
- */
-textarea {
- overflow: auto;
-}
-/**
- * 1. Add the correct box sizing in IE 10-.
- * 2. Remove the padding in IE 10-.
- */
-[type="checkbox"],
-[type="radio"] {
- box-sizing: border-box;
- /* 1 */
- padding: 0;
- /* 2 */
-}
-/**
- * Correct the cursor style of increment and decrement buttons in Chrome.
- */
-[type="number"]::-webkit-inner-spin-button,
-[type="number"]::-webkit-outer-spin-button {
- height: auto;
-}
-/**
- * 1. Correct the odd appearance in Chrome and Safari.
- * 2. Correct the outline style in Safari.
- */
-[type="search"] {
- -webkit-appearance: textfield;
- /* 1 */
- outline-offset: -2px;
- /* 2 */
-}
-/**
- * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
- */
-[type="search"]::-webkit-search-cancel-button,
-[type="search"]::-webkit-search-decoration {
- -webkit-appearance: none;
-}
-/**
- * 1. Correct the inability to style clickable types in iOS and Safari.
- * 2. Change font properties to `inherit` in Safari.
- */
-::-webkit-file-upload-button {
- -webkit-appearance: button;
- /* 1 */
- font: inherit;
- /* 2 */
-}
-/* Interactive
- ========================================================================== */
-/*
- * Add the correct display in IE 9-.
- * 1. Add the correct display in Edge, IE, and Firefox.
- */
-details,
-menu {
- display: block;
-}
-/*
- * Add the correct display in all browsers.
- */
-summary {
- display: list-item;
-}
-/* Scripting
- ========================================================================== */
-/**
- * Add the correct display in IE 9-.
- */
-canvas {
- display: inline-block;
-}
-/**
- * Add the correct display in IE.
- */
-template {
- display: none;
-}
-/* Hidden
- ========================================================================== */
-/**
- * Add the correct display in IE 10-.
- */
-[hidden] {
- display: none;
-}
-*,
-*::before,
-*::after {
- box-sizing: inherit;
-}
-html {
- box-sizing: border-box;
- font-size: 10px;
- line-height: 1.42857143;
- -webkit-tap-highlight-color: transparent;
-}
-body {
- background: #fff;
- color: #50596c;
- font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
- font-size: 1.4rem;
- overflow-x: hidden;
- text-rendering: optimizeLegibility;
-}
-a {
- color: #5764c6;
- outline: none;
- text-decoration: none;
-}
-a:focus {
- box-shadow: 0 0 0 .2rem rgba(87, 100, 198, .15);
-}
-a:focus,
-a:hover,
-a:active,
-a.active {
- color: #3b49af;
- text-decoration: underline;
-}
-h1,
-h2,
-h3,
-h4,
-h5,
-h6 {
- color: inherit;
- font-weight: 300;
- line-height: 1.2;
- margin-bottom: 1.5rem;
- margin-top: 0;
-}
-h1 {
- font-size: 5rem;
-}
-h2 {
- font-size: 4rem;
-}
-h3 {
- font-size: 3rem;
-}
-h4 {
- font-size: 2.4rem;
-}
-h5 {
- font-size: 2rem;
-}
-h6 {
- font-size: 1.6rem;
-}
-p {
- line-height: 2.4rem;
- margin: 0 0 1rem;
-}
-a,
-ins,
-u {
- -webkit-text-decoration-skip: ink edges;
- text-decoration-skip: ink edges;
-}
-blockquote {
- border-left: .2rem solid #f0f1f4;
- margin-left: 0;
- padding: 1rem 2rem;
-}
-blockquote p:last-child {
- margin-bottom: 0;
-}
-blockquote cite {
- color: #acb3c2;
-}
-ul,
-ol {
- margin: 2rem 0 2rem 2rem;
- padding: 0;
-}
-ul ul,
-ol ul,
-ul ol,
-ol ol {
- margin: 1.5rem 0 1.5rem 2rem;
-}
-ul li,
-ol li {
- margin-top: 1rem;
-}
-ul {
- list-style: disc inside;
-}
-ul ul {
- list-style-type: circle;
-}
-ol {
- list-style: decimal inside;
-}
-ol ol {
- list-style-type: lower-alpha;
-}
-dl dt {
- font-weight: bold;
-}
-dl dd {
- margin: .5rem 0 1.5rem 0;
-}
-mark {
- background: #ffe9b3;
- border-radius: .2rem;
- color: #50596c;
- display: inline-block;
- line-height: 1;
- padding: .3rem .4rem;
- vertical-align: baseline;
-}
-kbd {
- background: #454d5d;
- border-radius: .2rem;
- color: #fff;
- display: inline-block;
- line-height: 1;
- padding: .3rem .4rem;
- vertical-align: baseline;
-}
-abbr[title] {
- border-bottom: .1rem dotted;
- cursor: help;
- text-decoration: none;
-}
-:lang(zh),
-:lang(ja),
-:lang(ko),
-.cjk {
- font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Hiragino Kaku Gothic Pro", Meiryo, "Malgun Gothic", "Helvetica Neue", sans-serif;
-}
-:lang(zh) ins,
-:lang(ja) ins,
-.cjk ins,
-:lang(zh) u,
-:lang(ja) u,
-.cjk u {
- border-bottom: .1rem solid;
- text-decoration: none;
-}
-:lang(zh) del + del,
-:lang(ja) del + del,
-.cjk del + del,
-:lang(zh) del + s,
-:lang(ja) del + s,
-.cjk del + s,
-:lang(zh) ins + ins,
-:lang(ja) ins + ins,
-.cjk ins + ins,
-:lang(zh) ins + u,
-:lang(ja) ins + u,
-.cjk ins + u,
-:lang(zh) s + del,
-:lang(ja) s + del,
-.cjk s + del,
-:lang(zh) s + s,
-:lang(ja) s + s,
-.cjk s + s,
-:lang(zh) u + ins,
-:lang(ja) u + ins,
-.cjk u + ins,
-:lang(zh) u + u,
-:lang(ja) u + u,
-.cjk u + u {
- margin-left: .125em;
-}
-.table {
- border-collapse: collapse;
- border-spacing: 0;
- text-align: left;
- width: 100%;
-}
-.table.table-striped tbody tr:nth-of-type(odd) {
- background: #f8f9fa;
-}
-.table.table-hover tbody tr:hover {
- background: #f0f1f4;
-}
-.table tbody tr.active,
-.table.table-striped tbody tr.active {
- background: #f0f1f4;
-}
-.table td {
- border-bottom: .1rem solid #f0f1f4;
- padding: 1.5rem 1rem;
-}
-.table th {
- border-bottom: .2rem solid #727e96;
- padding: 1.5rem 1rem;
-}
-.btn {
- -webkit-appearance: none;
- -moz-appearance: none;
- appearance: none;
- background: #fff;
- border: .1rem solid #5764c6;
- border-radius: .2rem;
- color: #5764c6;
- cursor: pointer;
- display: inline-block;
- font-size: 1.4rem;
- height: 3.2rem;
- line-height: 2rem;
- outline: none;
- padding: .5rem .8rem;
- text-align: center;
- text-decoration: none;
- transition: all .2s ease;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- vertical-align: middle;
- white-space: nowrap;
-}
-.btn:focus {
- background: #fbfbfe;
- box-shadow: 0 0 0 .2rem rgba(87, 100, 198, .15);
- text-decoration: none;
-}
-.btn:hover {
- background: #5764c6;
- border-color: #4c59c2;
- color: #fff;
- text-decoration: none;
-}
-.btn:active,
-.btn.active {
- background: #4c59c2;
- border-color: #3e4cb6;
- color: #fff;
- text-decoration: none;
-}
-.btn[disabled],
-.btn:disabled,
-.btn.disabled {
- cursor: default;
- opacity: .5;
- pointer-events: none;
-}
-.btn.btn-primary {
- background: #5764c6;
- border-color: #4c59c2;
- color: #fff;
-}
-.btn.btn-primary:focus,
-.btn.btn-primary:hover {
- background: #4452c0;
- border-color: #3e4cb6;
- color: #fff;
-}
-.btn.btn-primary:active,
-.btn.btn-primary.active {
- background: #3f4eba;
- border-color: #3b49af;
- color: #fff;
-}
-.btn.btn-primary.loading::after {
- border-bottom-color: #fff;
- border-left-color: #fff;
-}
-.btn.btn-link {
- background: transparent;
- border-color: transparent;
- color: #5764c6;
-}
-.btn.btn-link:focus,
-.btn.btn-link:hover,
-.btn.btn-link:active,
-.btn.btn-link.active {
- color: #3b49af;
-}
-.btn.btn-sm {
- font-size: 1.2rem;
- height: 2.4rem;
- padding: .1rem .8rem;
-}
-.btn.btn-lg {
- font-size: 1.6rem;
- height: 4rem;
- padding: .9rem .8rem;
-}
-.btn.btn-block {
- display: block;
- width: 100%;
-}
-.btn.btn-action {
- padding-left: 0;
- padding-right: 0;
- width: 3.2rem;
-}
-.btn.btn-action.btn-sm {
- width: 2.4rem;
-}
-.btn.btn-action.btn-lg {
- width: 4rem;
-}
-.btn.btn-clear {
- background: transparent;
- border: 0;
- color: currentColor;
- height: 1.6rem;
- line-height: 1.6rem;
- margin: .2rem -.2rem .2rem .4rem;
- opacity: .45;
- padding: 0 .2rem;
- text-decoration: none;
- width: 1.6rem;
-}
-.btn.btn-clear:hover {
- opacity: .85;
-}
-.btn.btn-clear::before {
- content: "\2715";
-}
-.btn-group {
- display: inline-flex;
- display: -ms-inline-flexbox;
- display: -webkit-inline-flex;
- -webkit-flex-wrap: wrap;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
-}
-.btn-group .btn {
- -webkit-flex: 1 0 auto;
- -ms-flex: 1 0 auto;
- flex: 1 0 auto;
-}
-.btn-group .btn:first-child:not(:last-child) {
- border-bottom-right-radius: 0;
- border-top-right-radius: 0;
-}
-.btn-group .btn:not(:first-child):not(:last-child) {
- border-radius: 0;
- margin-left: -.1rem;
-}
-.btn-group .btn:last-child:not(:first-child) {
- border-bottom-left-radius: 0;
- border-top-left-radius: 0;
- margin-left: -.1rem;
-}
-.btn-group .btn:focus,
-.btn-group .btn:hover,
-.btn-group .btn:active,
-.btn-group .btn.active {
- z-index: 1;
-}
-.btn-group.btn-group-block {
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
-}
-.form-group:not(:last-child) {
- margin-bottom: 1rem;
-}
-.form-label {
- display: block;
- padding: .6rem 0;
-}
-.form-label.label-sm {
- padding: .2rem 0;
-}
-.form-label.label-lg {
- padding: 1rem 0;
-}
-.form-input {
- -webkit-appearance: none;
- -moz-appearance: none;
- appearance: none;
- background: #fff;
- background-image: none;
- border: .1rem solid #c4c9d3;
- border-radius: .2rem;
- color: #50596c;
- display: block;
- font-size: 1.4rem;
- height: 3.2rem;
- line-height: 2rem;
- max-width: 100%;
- outline: none;
- padding: .5rem .8rem;
- position: relative;
- transition: all .2s ease;
- width: 100%;
-}
-.form-input:focus {
- border-color: #5764c6;
- box-shadow: 0 0 0 .2rem rgba(87, 100, 198, .15);
-}
-.form-input::-webkit-input-placeholder {
- color: #acb3c2;
-}
-.form-input::-moz-placeholder {
- color: #acb3c2;
-}
-.form-input:-ms-input-placeholder {
- color: #acb3c2;
-}
-.form-input::placeholder {
- color: #acb3c2;
-}
-.form-input.input-sm {
- font-size: 1.2rem;
- height: 2.4rem;
- padding: .1rem .8rem;
-}
-.form-input.input-lg {
- font-size: 1.6rem;
- height: 4rem;
- padding: .9rem .8rem;
-}
-.form-input.input-inline {
- display: inline-block;
- vertical-align: middle;
- width: auto;
-}
-textarea.form-input {
- height: auto;
-}
-.form-input[type="file"] {
- height: auto;
-}
-.form-input-hint {
- color: #acb3c2;
- margin-top: .4rem;
-}
-.has-success .form-input-hint,
-.is-success + .form-input-hint {
- color: #32b643;
-}
-.has-danger .form-input-hint,
-.is-danger + .form-input-hint {
- color: #e85600;
-}
-.form-select {
- -webkit-appearance: none;
- -moz-appearance: none;
- appearance: none;
- border: .1rem solid #c4c9d3;
- border-radius: .2rem;
- color: inherit;
- font-size: 1.4rem;
- line-height: 2rem;
- outline: none;
- padding: .5rem .8rem;
- vertical-align: middle;
-}
-.form-select[multiple] {
- width: 100%;
-}
-.form-select[multiple] option {
- padding: .2rem .4rem;
-}
-.form-select:not([multiple]) {
- background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23667189' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center / .8rem 1rem;
- height: 3.2rem;
- padding-right: 2.4rem;
-}
-.form-select:focus {
- border-color: #5764c6;
- box-shadow: 0 0 0 .2rem rgba(87, 100, 198, .15);
-}
-.form-select::-ms-expand {
- display: none;
-}
-.form-select.select-sm {
- font-size: 1.2rem;
- height: 2.4rem;
- padding: .1rem 2rem .1rem .6rem;
-}
-.form-select.select-lg {
- font-size: 1.6rem;
- height: 4rem;
- padding: .9rem 2.4rem .9rem .8rem;
-}
-.has-success .form-input,
-.has-success .form-select,
-.form-input.is-success,
-.form-select.is-success {
- border-color: #32b643;
-}
-.has-success .form-input:focus,
-.has-success .form-select:focus,
-.form-input.is-success:focus,
-.form-select.is-success:focus {
- box-shadow: 0 0 0 .2rem rgba(50, 182, 67, .15);
-}
-.has-danger .form-input,
-.has-danger .form-select,
-.form-input.is-danger,
-.form-select.is-danger {
- border-color: #e85600;
-}
-.has-danger .form-input:focus,
-.has-danger .form-select:focus,
-.form-input.is-danger:focus,
-.form-select.is-danger:focus {
- box-shadow: 0 0 0 .2rem rgba(232, 86, 0, .15);
-}
-.form-checkbox,
-.form-radio,
-.form-switch {
- display: inline-block;
- line-height: 2rem;
- position: relative;
-}
-.form-checkbox input,
-.form-radio input,
-.form-switch input {
- clip: rect(0, 0, 0, 0);
- height: .1rem;
- margin: -.1rem;
- overflow: hidden;
- position: absolute;
- width: .1rem;
-}
-.form-checkbox input:focus + .form-icon,
-.form-radio input:focus + .form-icon,
-.form-switch input:focus + .form-icon {
- border-color: #5764c6;
- box-shadow: 0 0 0 .2rem rgba(87, 100, 198, .15);
-}
-.form-checkbox input:checked + .form-icon,
-.form-radio input:checked + .form-icon,
-.form-switch input:checked + .form-icon {
- background: #5764c6;
- border-color: #5764c6;
-}
-.form-checkbox .form-icon,
-.form-radio .form-icon,
-.form-switch .form-icon {
- border: .1rem solid #c4c9d3;
- cursor: pointer;
- display: inline-block;
- position: absolute;
- transition: all .2s ease;
-}
-.form-checkbox,
-.form-radio {
- padding: .2rem 2rem;
-}
-.form-checkbox .form-icon,
-.form-radio .form-icon {
- height: 1.4rem;
- left: 0;
- top: .5rem;
- width: 1.4rem;
-}
-.form-checkbox input:active + .form-icon,
-.form-radio input:active + .form-icon {
- background: #f0f1f4;
-}
-.form-checkbox .form-icon {
- border-radius: .2rem;
-}
-.form-checkbox input:checked + .form-icon::before {
- background-clip: padding-box;
- border: .2rem solid #fff;
- border-left-width: 0;
- border-top-width: 0;
- content: "";
- height: 1rem;
- left: 50%;
- margin-left: -.3rem;
- margin-top: -.6rem;
- position: absolute;
- top: 50%;
- -webkit-transform: rotate(45deg);
- -ms-transform: rotate(45deg);
- transform: rotate(45deg);
- width: .6rem;
-}
-.form-checkbox input:indeterminate + .form-icon {
- background: #5764c6;
- border-color: #5764c6;
-}
-.form-checkbox input:indeterminate + .form-icon::before {
- background: #fff;
- content: "";
- height: .2rem;
- left: 50%;
- margin-left: -.5rem;
- margin-top: -.1rem;
- position: absolute;
- top: 50%;
- width: 1rem;
-}
-.form-radio .form-icon {
- border-radius: .7rem;
-}
-.form-radio input:checked + .form-icon::before {
- background: #fff;
- border-radius: .2rem;
- content: "";
- height: .4rem;
- left: 50%;
- margin-left: -.2rem;
- margin-top: -.2rem;
- position: absolute;
- top: 50%;
- width: .4rem;
-}
-.form-switch {
- padding: .2rem 2rem .2rem 3.6rem;
-}
-.form-switch .form-icon {
- background: #e7e9ed;
- background-clip: padding-box;
- border-radius: .9rem;
- height: 1.8rem;
- left: 0;
- top: .3rem;
- width: 3rem;
-}
-.form-switch .form-icon::before {
- background: #fff;
- border-radius: .8rem;
- content: "";
- display: block;
- height: 1.6rem;
- left: 0;
- position: absolute;
- top: 0;
- transition: all .2s ease;
- width: 1.6rem;
-}
-.form-switch input:checked + .form-icon::before {
- left: 1.2rem;
-}
-.form-switch input:active + .form-icon::before {
- background: #f8f9fa;
-}
-.input-group {
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
-}
-.input-group .input-group-addon {
- background: #f8f9fa;
- border: .1rem solid #c4c9d3;
- border-radius: .2rem;
- line-height: 2rem;
- padding: .5rem .8rem;
-}
-.input-group .input-group-addon.addon-sm {
- font-size: 1.2rem;
- padding: .1rem .8rem;
-}
-.input-group .input-group-addon.addon-lg {
- font-size: 1.6rem;
- padding: .9rem .8rem;
-}
-.input-group .input-group-addon,
-.input-group .input-group-btn {
- -webkit-flex: 1 0 auto;
- -ms-flex: 1 0 auto;
- flex: 1 0 auto;
-}
-.input-group .form-input:first-child:not(:last-child),
-.input-group .input-group-addon:first-child:not(:last-child),
-.input-group .input-group-btn:first-child:not(:last-child) {
- border-bottom-right-radius: 0;
- border-top-right-radius: 0;
-}
-.input-group .form-input:not(:first-child):not(:last-child),
-.input-group .input-group-addon:not(:first-child):not(:last-child),
-.input-group .input-group-btn:not(:first-child):not(:last-child) {
- border-radius: 0;
- margin-left: -.1rem;
-}
-.input-group .form-input:last-child:not(:first-child),
-.input-group .input-group-addon:last-child:not(:first-child),
-.input-group .input-group-btn:last-child:not(:first-child) {
- border-bottom-left-radius: 0;
- border-top-left-radius: 0;
- margin-left: -.1rem;
-}
-.input-group .form-input:focus,
-.input-group .input-group-addon:focus,
-.input-group .input-group-btn:focus {
- z-index: 1;
-}
-.input-group.input-inline {
- display: inline-flex;
- display: -ms-inline-flexbox;
- display: -webkit-inline-flex;
-}
-.form-input:disabled,
-.form-select:disabled,
-.form-input.disabled,
-.form-select.disabled {
- background-color: #f0f1f4;
- cursor: not-allowed;
- opacity: .5;
-}
-input:disabled + .form-icon,
-input.disabled + .form-icon {
- background: #f0f1f4;
- cursor: not-allowed;
- opacity: .5;
-}
-.form-switch input:disabled + .form-icon::before,
-.form-switch input.disabled + .form-icon::before {
- background: #fff;
-}
-.form-horizontal {
- padding: 1rem;
-}
-.form-horizontal .form-group {
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
-}
-.form-horizontal .form-checkbox,
-.form-horizontal .form-radio,
-.form-horizontal .form-switch {
- margin: .4rem 0;
-}
-.label {
- background: #f8f9fa;
- border-radius: .2rem;
- color: inherit;
- display: inline-block;
- line-height: 1;
- padding: .3rem .4rem;
- vertical-align: baseline;
-}
-.label.label-primary {
- background: #5764c6;
- color: #fff;
-}
-.label.label-success {
- background: #32b643;
- color: #fff;
-}
-.label.label-warning {
- background: #ffb700;
- color: #fff;
-}
-.label.label-danger {
- background: #e85600;
- color: #fff;
-}
-code {
- background: #f8f9fa;
- border-radius: .2rem;
- color: #e06870;
- display: inline-block;
- line-height: 1;
- padding: .3rem .4rem;
- vertical-align: baseline;
-}
-.code {
- border-radius: .2rem;
- color: #50596c;
- line-height: 2rem;
- position: relative;
-}
-.code::before {
- color: #acb3c2;
- content: attr(data-lang);
- font-size: 1.2rem;
- position: absolute;
- right: 1rem;
- top: .2rem;
-}
-.code code {
- color: inherit;
- display: block;
- line-height: inherit;
- overflow-x: auto;
- padding: 2rem;
- width: 100%;
-}
-.img-responsive {
- display: block;
- height: auto;
- max-width: 100%;
-}
-.img-fit-cover {
- object-fit: cover;
-}
-.img-fit-contain {
- object-fit: contain;
-}
-.video-responsive {
- display: block;
- overflow: hidden;
- padding: 0;
- position: relative;
- width: 100%;
-}
-.video-responsive::before {
- content: "";
- display: block;
- padding-bottom: 56.25%;
-}
-.video-responsive iframe,
-.video-responsive object,
-.video-responsive embed {
- bottom: 0;
- height: 100%;
- left: 0;
- position: absolute;
- right: 0;
- top: 0;
- width: 100%;
-}
-.video-responsive video {
- height: auto;
- max-width: 100%;
- width: 100%;
-}
-.video-responsive-4-3::before {
- padding-bottom: 75%;
-}
-.video-responsive-1-1::before {
- padding-bottom: 100%;
-}
-.figure {
- margin: 0 0 1rem 0;
-}
-.figure .figure-caption {
- color: #727e96;
- margin-top: 1rem;
-}
-.container {
- margin-left: auto;
- margin-right: auto;
- padding-left: 1rem;
- padding-right: 1rem;
- width: 100%;
-}
-.container.grid-960 {
- max-width: 98rem;
-}
-.container.grid-480 {
- max-width: 50rem;
-}
-.columns {
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -webkit-flex-wrap: wrap;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- margin-left: -1rem;
- margin-right: -1rem;
-}
-.columns.col-gapless {
- margin-left: 0;
- margin-right: 0;
-}
-.columns.col-gapless .column {
- padding-left: 0;
- padding-right: 0;
-}
-.columns.col-oneline {
- -webkit-flex-wrap: nowrap;
- -ms-flex-wrap: nowrap;
- flex-wrap: nowrap;
- overflow-x: auto;
-}
-.column {
- -webkit-flex: 1;
- -ms-flex: 1;
- flex: 1;
- padding: 1rem;
-}
-.column.col-12,
-.column.col-11,
-.column.col-10,
-.column.col-9,
-.column.col-8,
-.column.col-7,
-.column.col-6,
-.column.col-5,
-.column.col-4,
-.column.col-3,
-.column.col-2,
-.column.col-1 {
- -webkit-flex: none;
- -ms-flex: none;
- flex: none;
-}
-.col-12 {
- width: 100%;
-}
-.col-11 {
- width: 91.66666667%;
-}
-.col-10 {
- width: 83.33333333%;
-}
-.col-9 {
- width: 75%;
-}
-.col-8 {
- width: 66.66666667%;
-}
-.col-7 {
- width: 58.33333333%;
-}
-.col-6 {
- width: 50%;
-}
-.col-5 {
- width: 41.66666667%;
-}
-.col-4 {
- width: 33.33333333%;
-}
-.col-3 {
- width: 25%;
-}
-.col-2 {
- width: 16.66666667%;
-}
-.col-1 {
- width: 8.33333333%;
-}
-@media screen and (max-width: 1280px) {
- .col-xl-12,
- .col-xl-11,
- .col-xl-10,
- .col-xl-9,
- .col-xl-8,
- .col-xl-7,
- .col-xl-6,
- .col-xl-5,
- .col-xl-4,
- .col-xl-3,
- .col-xl-2,
- .col-xl-1 {
- -webkit-flex: none;
- -ms-flex: none;
- flex: none;
- }
- .col-xl-12 {
- width: 100%;
- }
- .col-xl-11 {
- width: 91.66666667%;
- }
- .col-xl-10 {
- width: 83.33333333%;
- }
- .col-xl-9 {
- width: 75%;
- }
- .col-xl-8 {
- width: 66.66666667%;
- }
- .col-xl-7 {
- width: 58.33333333%;
- }
- .col-xl-6 {
- width: 50%;
- }
- .col-xl-5 {
- width: 41.66666667%;
- }
- .col-xl-4 {
- width: 33.33333333%;
- }
- .col-xl-3 {
- width: 25%;
- }
- .col-xl-2 {
- width: 16.66666667%;
- }
- .col-xl-1 {
- width: 8.33333333%;
- }
-}
-@media screen and (max-width: 960px) {
- .col-lg-12,
- .col-lg-11,
- .col-lg-10,
- .col-lg-9,
- .col-lg-8,
- .col-lg-7,
- .col-lg-6,
- .col-lg-5,
- .col-lg-4,
- .col-lg-3,
- .col-lg-2,
- .col-lg-1 {
- -webkit-flex: none;
- -ms-flex: none;
- flex: none;
- }
- .col-lg-12 {
- width: 100%;
- }
- .col-lg-11 {
- width: 91.66666667%;
- }
- .col-lg-10 {
- width: 83.33333333%;
- }
- .col-lg-9 {
- width: 75%;
- }
- .col-lg-8 {
- width: 66.66666667%;
- }
- .col-lg-7 {
- width: 58.33333333%;
- }
- .col-lg-6 {
- width: 50%;
- }
- .col-lg-5 {
- width: 41.66666667%;
- }
- .col-lg-4 {
- width: 33.33333333%;
- }
- .col-lg-3 {
- width: 25%;
- }
- .col-lg-2 {
- width: 16.66666667%;
- }
- .col-lg-1 {
- width: 8.33333333%;
- }
-}
-@media screen and (max-width: 840px) {
- .col-md-12,
- .col-md-11,
- .col-md-10,
- .col-md-9,
- .col-md-8,
- .col-md-7,
- .col-md-6,
- .col-md-5,
- .col-md-4,
- .col-md-3,
- .col-md-2,
- .col-md-1 {
- -webkit-flex: none;
- -ms-flex: none;
- flex: none;
- }
- .col-md-12 {
- width: 100%;
- }
- .col-md-11 {
- width: 91.66666667%;
- }
- .col-md-10 {
- width: 83.33333333%;
- }
- .col-md-9 {
- width: 75%;
- }
- .col-md-8 {
- width: 66.66666667%;
- }
- .col-md-7 {
- width: 58.33333333%;
- }
- .col-md-6 {
- width: 50%;
- }
- .col-md-5 {
- width: 41.66666667%;
- }
- .col-md-4 {
- width: 33.33333333%;
- }
- .col-md-3 {
- width: 25%;
- }
- .col-md-2 {
- width: 16.66666667%;
- }
- .col-md-1 {
- width: 8.33333333%;
- }
-}
-@media screen and (max-width: 600px) {
- .col-sm-12,
- .col-sm-11,
- .col-sm-10,
- .col-sm-9,
- .col-sm-8,
- .col-sm-7,
- .col-sm-6,
- .col-sm-5,
- .col-sm-4,
- .col-sm-3,
- .col-sm-2,
- .col-sm-1 {
- -webkit-flex: none;
- -ms-flex: none;
- flex: none;
- }
- .col-sm-12 {
- width: 100%;
- }
- .col-sm-11 {
- width: 91.66666667%;
- }
- .col-sm-10 {
- width: 83.33333333%;
- }
- .col-sm-9 {
- width: 75%;
- }
- .col-sm-8 {
- width: 66.66666667%;
- }
- .col-sm-7 {
- width: 58.33333333%;
- }
- .col-sm-6 {
- width: 50%;
- }
- .col-sm-5 {
- width: 41.66666667%;
- }
- .col-sm-4 {
- width: 33.33333333%;
- }
- .col-sm-3 {
- width: 25%;
- }
- .col-sm-2 {
- width: 16.66666667%;
- }
- .col-sm-1 {
- width: 8.33333333%;
- }
-}
-@media screen and (max-width: 480px) {
- .col-xs-12,
- .col-xs-11,
- .col-xs-10,
- .col-xs-9,
- .col-xs-8,
- .col-xs-7,
- .col-xs-6,
- .col-xs-5,
- .col-xs-4,
- .col-xs-3,
- .col-xs-2,
- .col-xs-1 {
- -webkit-flex: none;
- -ms-flex: none;
- flex: none;
- }
- .col-xs-12 {
- width: 100%;
- }
- .col-xs-11 {
- width: 91.66666667%;
- }
- .col-xs-10 {
- width: 83.33333333%;
- }
- .col-xs-9 {
- width: 75%;
- }
- .col-xs-8 {
- width: 66.66666667%;
- }
- .col-xs-7 {
- width: 58.33333333%;
- }
- .col-xs-6 {
- width: 50%;
- }
- .col-xs-5 {
- width: 41.66666667%;
- }
- .col-xs-4 {
- width: 33.33333333%;
- }
- .col-xs-3 {
- width: 25%;
- }
- .col-xs-2 {
- width: 16.66666667%;
- }
- .col-xs-1 {
- width: 8.33333333%;
- }
-}
-.show-xs,
-.show-sm,
-.show-md,
-.show-lg,
-.show-xl {
- display: none !important;
-}
-@media screen and (max-width: 480px) {
- .hide-xs {
- display: none !important;
- }
- .show-xs {
- display: block !important;
- }
-}
-@media screen and (max-width: 600px) {
- .hide-sm {
- display: none !important;
- }
- .show-sm {
- display: block !important;
- }
-}
-@media screen and (max-width: 840px) {
- .hide-md {
- display: none !important;
- }
- .show-md {
- display: block !important;
- }
-}
-@media screen and (max-width: 960px) {
- .hide-lg {
- display: none !important;
- }
- .show-lg {
- display: block !important;
- }
-}
-@media screen and (max-width: 1280px) {
- .hide-xl {
- display: none !important;
- }
- .show-xl {
- display: block !important;
- }
-}
-.navbar {
- -webkit-align-items: stretch;
- align-items: stretch;
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -ms-flex-align: stretch;
- -ms-flex-pack: justify;
- -webkit-flex-wrap: wrap;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- -webkit-justify-content: space-between;
- justify-content: space-between;
-}
-.navbar .navbar-section {
- -webkit-align-items: center;
- align-items: center;
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -webkit-flex: 1 0 0;
- -ms-flex: 1 0 0;
- flex: 1 0 0;
- -ms-flex-align: center;
-}
-.navbar .navbar-section:last-child {
- -ms-flex-pack: end;
- -webkit-justify-content: flex-end;
- justify-content: flex-end;
-}
-.navbar .navbar-center {
- -webkit-align-items: center;
- align-items: center;
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -webkit-flex: 0 0 auto;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- -ms-flex-align: center;
-}
-.navbar .navbar-brand {
- font-size: 1.6rem;
- font-weight: 500;
- text-decoration: none;
-}
-.panel {
- border: .1rem solid #f0f1f4;
- border-radius: .2rem;
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -webkit-flex-direction: column;
- -ms-flex-direction: column;
- flex-direction: column;
-}
-.panel .panel-header,
-.panel .panel-footer {
- -webkit-flex: 0 0 auto;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- padding: 1.5rem;
-}
-.panel .panel-nav {
- -webkit-flex: 0 0 auto;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
-}
-.panel .panel-body {
- -webkit-flex: 1 1 auto;
- -ms-flex: 1 1 auto;
- flex: 1 1 auto;
- overflow-y: auto;
- padding: 0 1.5rem;
-}
-.panel .panel-title {
- font-size: 2rem;
-}
-.panel .panel-subtitle {
- opacity: .5;
-}
-.empty {
- background: #f8f9fa;
- border-radius: .2rem;
- color: #727e96;
- padding: 4rem;
- text-align: center;
-}
-.empty .empty-title,
-.empty .empty-subtitle {
- margin: 1rem auto;
-}
-.empty .empty-subtitle {
- opacity: .5;
-}
-.empty .empty-action {
- margin-top: 1.5rem;
-}
-.form-autocomplete {
- position: relative;
-}
-.form-autocomplete .form-autocomplete-input {
- -webkit-align-content: flex-start;
- align-content: flex-start;
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -ms-flex-line-pack: start;
- -webkit-flex-wrap: wrap;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- height: auto;
- min-height: 3.2rem;
- padding: .1rem 0 0 .1rem;
-}
-.form-autocomplete .form-autocomplete-input.is-focused {
- border-color: #5764c6;
- box-shadow: 0 0 0 .2rem rgba(87, 100, 198, .15);
-}
-.form-autocomplete .form-autocomplete-input .form-input {
- border-color: transparent;
- box-shadow: none;
- display: inline-block;
- -webkit-flex: 1 0 auto;
- -ms-flex: 1 0 auto;
- flex: 1 0 auto;
- height: 2.8rem;
- padding: .3rem .8rem;
- width: auto;
-}
-.form-autocomplete mark {
- font-size: 1;
- padding: .1em 0;
-}
-.form-autocomplete .menu {
- left: 0;
- position: absolute;
- top: 100%;
- width: 100%;
-}
-.avatar {
- background: #5764c6;
- border-radius: 50%;
- color: rgba(255, 255, 255, .85);
- display: inline-block;
- font-size: 1.4rem;
- font-weight: 300;
- height: 3.2rem;
- line-height: 1;
- margin: 0;
- position: relative;
- vertical-align: middle;
- width: 3.2rem;
-}
-.avatar.avatar-xs {
- font-size: .8rem;
- height: 1.6rem;
- width: 1.6rem;
-}
-.avatar.avatar-sm {
- font-size: 1rem;
- height: 2.4rem;
- width: 2.4rem;
-}
-.avatar.avatar-lg {
- font-size: 2rem;
- height: 4.8rem;
- width: 4.8rem;
-}
-.avatar.avatar-xl {
- font-size: 2.6rem;
- height: 6.4rem;
- width: 6.4rem;
-}
-.avatar img {
- border-radius: 50%;
- height: 100%;
- position: relative;
- width: 100%;
- z-index: 100;
-}
-.avatar .avatar-icon {
- background: #fff;
- bottom: 14.64%;
- height: 50%;
- padding: .2rem;
- position: absolute;
- right: 14.64%;
- -webkit-transform: translate(50%, 50%);
- -ms-transform: translate(50%, 50%);
- transform: translate(50%, 50%);
- width: 50%;
-}
-.avatar[data-initial]::before {
- color: currentColor;
- content: attr(data-initial);
- left: 50%;
- position: absolute;
- top: 50%;
- -webkit-transform: translate(-50%, -50%);
- -ms-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
- z-index: 1;
-}
-.badge {
- position: relative;
- white-space: nowrap;
-}
-.badge[data-badge]::after,
-.badge:not([data-badge])::after {
- background: #5764c6;
- background-clip: padding-box;
- border: .1rem solid #fff;
- border-radius: 1rem;
- color: #fff;
- content: attr(data-badge);
- display: inline-block;
- -webkit-transform: translate(-.2rem, -1rem);
- -ms-transform: translate(-.2rem, -1rem);
- transform: translate(-.2rem, -1rem);
-}
-.badge[data-badge]::after {
- font-size: 1.2rem;
- height: 2rem;
- line-height: 1;
- min-width: 2rem;
- padding: .3rem .5rem;
- text-align: center;
- white-space: nowrap;
-}
-.badge:not([data-badge])::after,
-.badge[data-badge=""]::after {
- height: .8rem;
- min-width: .8rem;
- padding: 0;
- width: .8rem;
-}
-.badge.btn::after {
- position: absolute;
- right: 0;
- top: 0;
- -webkit-transform: translate(50%, -50%);
- -ms-transform: translate(50%, -50%);
- transform: translate(50%, -50%);
-}
-.badge.avatar::after {
- position: absolute;
- right: 14.64%;
- top: 14.64%;
- -webkit-transform: translate(50%, -50%);
- -ms-transform: translate(50%, -50%);
- transform: translate(50%, -50%);
- z-index: 100;
-}
-.badge.avatar-xs::after {
- content: "";
- height: .8rem;
- min-width: .8rem;
- padding: 0;
- width: .8rem;
-}
-.bar {
- background: #f0f1f4;
- border-radius: .2rem;
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -webkit-flex-wrap: nowrap;
- -ms-flex-wrap: nowrap;
- flex-wrap: nowrap;
- height: 1.6rem;
- width: 100%;
-}
-.bar.bar-sm {
- height: .4rem;
-}
-.bar .bar-item {
- background: #5764c6;
- color: #fff;
- display: block;
- -ms-flex-negative: 0;
- -webkit-flex-shrink: 0;
- flex-shrink: 0;
- font-size: 1.2rem;
- height: 100%;
- line-height: 1;
- padding: .2rem 0;
- position: relative;
- text-align: center;
- width: 0;
-}
-.bar .bar-item:first-child {
- border-bottom-left-radius: .2rem;
- border-top-left-radius: .2rem;
-}
-.bar .bar-item:last-child {
- border-bottom-right-radius: .2rem;
- border-top-right-radius: .2rem;
- -ms-flex-negative: 1;
- -webkit-flex-shrink: 1;
- flex-shrink: 1;
-}
-.bar-slider {
- height: .2rem;
- margin: 1rem 0;
- position: relative;
-}
-.bar-slider .bar-item {
- left: 0;
- padding: 0;
- position: absolute;
-}
-.bar-slider .bar-item:not(:last-child):first-child {
- background: #f0f1f4;
- z-index: 1;
-}
-.bar-slider .bar-slider-btn {
- background: #5764c6;
- border: 0;
- border-radius: 50%;
- height: 1.2rem;
- padding: 0;
- position: absolute;
- right: 0;
- top: 50%;
- -webkit-transform: translate(50%, -50%);
- -ms-transform: translate(50%, -50%);
- transform: translate(50%, -50%);
- width: 1.2rem;
-}
-.bar-slider .bar-slider-btn:active {
- box-shadow: 0 0 0 .2rem #5764c6;
-}
-.card {
- background: #fff;
- border: .1rem solid #f0f1f4;
- border-radius: .2rem;
- display: block;
-}
-.card .card-header,
-.card .card-body,
-.card .card-footer {
- padding: 1.5rem;
- padding-bottom: 0;
-}
-.card .card-header:last-child,
-.card .card-body:last-child,
-.card .card-footer:last-child {
- padding-bottom: 1.5rem;
-}
-.card .card-image {
- padding-top: 1.5rem;
-}
-.card .card-image:first-child {
- padding-top: 0;
-}
-.card .card-image:first-child img {
- border-top-left-radius: .2rem;
- border-top-right-radius: .2rem;
-}
-.card .card-image:last-child img {
- border-bottom-left-radius: .2rem;
- border-bottom-right-radius: .2rem;
-}
-.card .card-title {
- font-size: 2rem;
-}
-.card .card-subtitle {
- font-size: 1.2rem;
- opacity: .5;
-}
-.chip {
- -webkit-align-items: center;
- align-items: center;
- background: #f0f1f4;
- border-radius: .2rem;
- color: #727e96;
- display: -ms-inline-flexbox;
- display: inline-flex;
- display: -webkit-inline-flex;
- -ms-flex-align: center;
- height: 2.8rem;
- margin: 0 .1rem .1rem 0;
- max-width: 100%;
- padding: .1rem .8rem;
- text-decoration: none;
- vertical-align: middle;
-}
-.chip.active {
- background: #5764c6;
- color: #fff;
-}
-.chip .avatar {
- margin-left: -.4rem;
- margin-right: .4rem;
-}
-.dropdown {
- display: inline-block;
- position: relative;
-}
-.dropdown .menu {
- -webkit-animation: slide-down .2s ease 1;
- animation: slide-down .2s ease 1;
- display: none;
- left: 0;
- position: absolute;
- top: 100%;
-}
-.dropdown.dropdown-right .menu {
- left: auto;
- right: 0;
-}
-.dropdown.active .menu,
-.dropdown .dropdown-toggle:focus + .menu,
-.dropdown .menu:hover {
- display: block;
-}
-.menu {
- background: #fff;
- border-radius: .2rem;
- box-shadow: 0 .1rem .4rem rgba(69, 77, 93, .3);
- list-style: none;
- margin: 0;
- min-width: 18rem;
- padding: 1rem;
- -webkit-transform: translateY(.5rem);
- -ms-transform: translateY(.5rem);
- transform: translateY(.5rem);
- z-index: 100;
-}
-.menu .menu-item {
- margin-top: 0;
- padding: 0 .8rem;
- text-decoration: none;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
-}
-.menu .menu-item > a {
- border-radius: .2rem;
- color: inherit;
- display: block;
- margin: 0 -.8rem;
- padding: .6rem .8rem;
- text-decoration: none;
-}
-.menu .menu-item > a:focus,
-.menu .menu-item > a:hover {
- color: #5764c6;
-}
-.menu .menu-item > a:active,
-.menu .menu-item > a.active {
- background: #fbfbfe;
- color: #5764c6;
-}
-.menu .menu-badge {
- float: right;
- padding: .6rem 0;
-}
-.menu .menu-badge .btn {
- margin-top: -.2rem;
-}
-.modal {
- -webkit-align-items: center;
- align-items: center;
- bottom: 0;
- display: none;
- -ms-flex-align: center;
- -ms-flex-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- left: 0;
- opacity: 0;
- overflow: hidden;
- padding: 1rem;
- position: fixed;
- right: 0;
- top: 0;
-}
-.modal:target,
-.modal.active {
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- opacity: 1;
- z-index: 400;
-}
-.modal:target .modal-overlay,
-.modal.active .modal-overlay {
- background: rgba(69, 77, 93, .5);
- bottom: 0;
- cursor: default;
- display: block;
- left: 0;
- position: absolute;
- right: 0;
- top: 0;
-}
-.modal:target .modal-container,
-.modal.active .modal-container {
- -webkit-animation: slide-down .2s ease 1;
- animation: slide-down .2s ease 1;
- max-width: 64rem;
- z-index: 1;
-}
-.modal.modal-sm .modal-container {
- max-width: 32rem;
-}
-.modal-container {
- background: #fff;
- border-radius: .2rem;
- box-shadow: 0 .4rem 1rem rgba(69, 77, 93, .3);
- display: block;
- padding: 0;
- text-align: left;
-}
-.modal-container .modal-header {
- padding: 1.5rem;
-}
-.modal-container .modal-header .modal-title {
- font-size: 1.6rem;
- margin: 0;
-}
-.modal-container .modal-body {
- max-height: 50vh;
- overflow-y: auto;
- padding: 1.5rem;
- position: relative;
-}
-.modal-container .modal-footer {
- padding: 1.5rem;
- text-align: right;
-}
-.breadcrumb,
-.tab,
-.pagination,
-.nav {
- list-style: none;
- margin: .5rem 0;
-}
-.breadcrumb {
- padding: 1.2rem;
-}
-.breadcrumb .breadcrumb-item {
- display: inline-block;
- margin: 0;
-}
-.breadcrumb .breadcrumb-item:last-child {
- color: #acb3c2;
-}
-.breadcrumb .breadcrumb-item:not(:first-child)::before {
- color: #e7e9ed;
- content: "/";
- padding: 0 .4rem;
-}
-.tab {
- -webkit-align-items: center;
- align-items: center;
- border-bottom: .1rem solid #f0f1f4;
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -ms-flex-align: center;
- -webkit-flex-wrap: wrap;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
-}
-.tab .tab-item {
- margin-top: 0;
-}
-.tab .tab-item.tab-action {
- -webkit-flex: 1 0 auto;
- -ms-flex: 1 0 auto;
- flex: 1 0 auto;
- text-align: right;
-}
-.tab .tab-item a {
- border-bottom: .2rem solid transparent;
- color: inherit;
- display: block;
- margin-top: 0;
- padding: .5rem 1.2rem;
- text-decoration: none;
-}
-.tab .tab-item a:focus,
-.tab .tab-item a:hover {
- color: #5764c6;
-}
-.tab .tab-item.active a,
-.tab .tab-item a.active {
- border-bottom-color: #5764c6;
- color: #5764c6;
-}
-.tab.tab-block .tab-item {
- -webkit-flex: 1 0 0;
- -ms-flex: 1 0 0;
- flex: 1 0 0;
- text-align: center;
-}
-.tab.tab-block .tab-item .badge[data-badge]::after {
- position: absolute;
- right: -.4rem;
- top: -.4rem;
- -webkit-transform: translate(0, 0);
- -ms-transform: translate(0, 0);
- transform: translate(0, 0);
-}
-.tab:not(.tab-block) .badge {
- padding-right: 0;
-}
-.pagination {
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
-}
-.pagination .page-item {
- margin: 1rem .1rem;
-}
-.pagination .page-item span {
- display: inline-block;
- padding: .6rem .4rem;
-}
-.pagination .page-item a {
- border-radius: .2rem;
- color: #727e96;
- display: inline-block;
- padding: .6rem .8rem;
- text-decoration: none;
-}
-.pagination .page-item a:focus,
-.pagination .page-item a:hover {
- color: #5764c6;
-}
-.pagination .page-item a[disabled],
-.pagination .page-item a.disabled {
- cursor: default;
- opacity: .5;
- pointer-events: none;
-}
-.pagination .page-item.active a {
- background: #5764c6;
- color: #fff;
-}
-.pagination .page-item.page-prev,
-.pagination .page-item.page-next {
- -webkit-flex: 1 0 50%;
- -ms-flex: 1 0 50%;
- flex: 1 0 50%;
-}
-.pagination .page-item.page-next {
- text-align: right;
-}
-.pagination .page-item .page-item-title {
- margin: 0;
-}
-.pagination .page-item .page-item-subtitle {
- margin: 0;
- opacity: .5;
-}
-.nav {
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -webkit-flex-direction: column;
- -ms-flex-direction: column;
- flex-direction: column;
-}
-.nav .nav-item a {
- color: #727e96;
- padding: .6rem .8rem;
- text-decoration: none;
-}
-.nav .nav-item a:focus,
-.nav .nav-item a:hover {
- color: #5764c6;
-}
-.nav .nav-item.active > a {
- font-weight: bold;
-}
-.nav .nav-item.active > a:focus,
-.nav .nav-item.active > a:hover {
- color: #5764c6;
-}
-.nav .nav {
- margin-bottom: 1rem;
- margin-left: 2rem;
-}
-.nav .nav a {
- color: #acb3c2;
-}
-.popover {
- display: inline-block;
- position: relative;
-}
-.popover .popover-container {
- content: attr(data-tooltip);
- left: 50%;
- opacity: 0;
- padding: 1rem;
- position: absolute;
- top: 0;
- -webkit-transform: translate(-50%, -50%) scale(0);
- -ms-transform: translate(-50%, -50%) scale(0);
- transform: translate(-50%, -50%) scale(0);
- transition: transform .2s ease, -webkit-transform .2s ease;
- transition: transform .2s ease;
- transition: -webkit-transform .2s ease;
- width: 32rem;
- z-index: 400;
-}
-.popover :focus + .popover-container,
-.popover:hover .popover-container,
-.popover .popover-container:hover {
- display: block;
- opacity: 1;
- -webkit-transform: translate(-50%, -100%) scale(1);
- -ms-transform: translate(-50%, -100%) scale(1);
- transform: translate(-50%, -100%) scale(1);
-}
-.popover.popover-right .popover-container {
- left: 100%;
- top: 50%;
-}
-.popover.popover-right :focus + .popover-container,
-.popover.popover-right:hover .popover-container,
-.popover.popover-right .popover-container:hover {
- -webkit-transform: translate(0, -50%) scale(1);
- -ms-transform: translate(0, -50%) scale(1);
- transform: translate(0, -50%) scale(1);
-}
-.popover.popover-bottom .popover-container {
- left: 50%;
- top: 100%;
-}
-.popover.popover-bottom :focus + .popover-container,
-.popover.popover-bottom:hover .popover-container,
-.popover.popover-bottom .popover-container:hover {
- -webkit-transform: translate(-50%, 0) scale(1);
- -ms-transform: translate(-50%, 0) scale(1);
- transform: translate(-50%, 0) scale(1);
-}
-.popover.popover-left .popover-container {
- left: 0;
- top: 50%;
-}
-.popover.popover-left :focus + .popover-container,
-.popover.popover-left:hover .popover-container,
-.popover.popover-left .popover-container:hover {
- -webkit-transform: translate(-100%, -50%) scale(1);
- -ms-transform: translate(-100%, -50%) scale(1);
- transform: translate(-100%, -50%) scale(1);
-}
-.popover .card {
- border: 0;
- box-shadow: 0 .4rem 1rem rgba(69, 77, 93, .3);
-}
-.step {
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -webkit-flex-wrap: nowrap;
- -ms-flex-wrap: nowrap;
- flex-wrap: nowrap;
- list-style: none;
- margin: .5rem 0;
- width: 100%;
-}
-.step .step-item {
- -webkit-flex: 1 1 0;
- -ms-flex: 1 1 0;
- flex: 1 1 0;
- margin-top: 0;
- min-height: 2rem;
- position: relative;
- text-align: center;
-}
-.step .step-item:not(:first-child)::before {
- background: #5764c6;
- content: "";
- height: .2rem;
- left: -50%;
- position: absolute;
- top: .9rem;
- width: 100%;
-}
-.step .step-item a {
- color: #acb3c2;
- display: inline-block;
- padding: 2rem 1rem 0;
- text-decoration: none;
-}
-.step .step-item a::before {
- background: #5764c6;
- border: .2rem solid #fff;
- border-radius: 50%;
- content: "";
- display: block;
- height: 1.2rem;
- left: 50%;
- position: absolute;
- top: .4rem;
- -webkit-transform: translateX(-50%);
- -ms-transform: translateX(-50%);
- transform: translateX(-50%);
- width: 1.2rem;
- z-index: 1;
-}
-.step .step-item.active a::before {
- background: #fff;
- border: .2rem solid #5764c6;
-}
-.step .step-item.active ~ .step-item::before {
- background: #f0f1f4;
-}
-.step .step-item.active ~ .step-item a::before {
- background: #e7e9ed;
-}
-.tile {
- -webkit-align-content: space-between;
- align-content: space-between;
- -webkit-align-items: flex-start;
- align-items: flex-start;
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -ms-flex-align: start;
- -ms-flex-line-pack: justify;
-}
-.tile .tile-icon,
-.tile .tile-action {
- -webkit-flex: 0 0 auto;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
-}
-.tile .tile-content {
- -webkit-flex: 1 1 auto;
- -ms-flex: 1 1 auto;
- flex: 1 1 auto;
-}
-.tile .tile-content:not(:first-child) {
- padding-left: 1rem;
-}
-.tile .tile-content:not(:last-child) {
- padding-right: 1rem;
-}
-.tile .tile-title {
- font-weight: 500;
-}
-.tile .tile-subtitle {
- line-height: 2rem;
- opacity: .5;
-}
-.tile.tile-centered {
- -webkit-align-items: center;
- align-items: center;
- -ms-flex-align: center;
-}
-.tile.tile-centered .tile-content {
- overflow: hidden;
-}
-.tile.tile-centered .tile-title,
-.tile.tile-centered .tile-subtitle {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
-}
-.toast {
- background: rgba(69, 77, 93, .9);
- border: .1rem solid #454d5d;
- border-color: #454d5d;
- border-radius: .2rem;
- color: #fff;
- display: block;
- padding: 1rem;
- width: 100%;
-}
-.toast.toast-primary {
- background: rgba(87, 100, 198, .9);
- border-color: #5764c6;
-}
-.toast.toast-success {
- background: rgba(50, 182, 67, .9);
- border-color: #32b643;
-}
-.toast.toast-danger {
- background: rgba(232, 86, 0, .9);
- border-color: #e85600;
-}
-.toast a {
- color: #fff;
- text-decoration: underline;
-}
-.toast a:focus,
-.toast a:hover,
-.toast a:active,
-.toast a.active {
- opacity: .75;
-}
-.tooltip {
- position: relative;
-}
-.tooltip::after {
- background: rgba(69, 77, 93, .9);
- border-radius: .2rem;
- bottom: 100%;
- color: #fff;
- content: attr(data-tooltip);
- display: block;
- font-size: 1.2rem;
- left: 50%;
- max-width: 32rem;
- opacity: 0;
- overflow: hidden;
- padding: .4rem .8rem;
- pointer-events: none;
- position: absolute;
- text-overflow: ellipsis;
- -webkit-transform: translate(-50%, 1rem);
- -ms-transform: translate(-50%, 1rem);
- transform: translate(-50%, 1rem);
- transition: all .2s ease;
- white-space: nowrap;
- z-index: 200;
-}
-.tooltip:focus::after,
-.tooltip:hover::after {
- opacity: 1;
- -webkit-transform: translate(-50%, -.5rem);
- -ms-transform: translate(-50%, -.5rem);
- transform: translate(-50%, -.5rem);
-}
-.tooltip[disabled],
-.tooltip.disabled {
- pointer-events: auto;
-}
-.tooltip.tooltip-right::after {
- bottom: 50%;
- left: 100%;
- -webkit-transform: translate(-1rem, 50%);
- -ms-transform: translate(-1rem, 50%);
- transform: translate(-1rem, 50%);
-}
-.tooltip.tooltip-right:focus::after,
-.tooltip.tooltip-right:hover::after {
- -webkit-transform: translate(.5rem, 50%);
- -ms-transform: translate(.5rem, 50%);
- transform: translate(.5rem, 50%);
-}
-.tooltip.tooltip-bottom::after {
- bottom: auto;
- top: 100%;
- -webkit-transform: translate(-50%, -1rem);
- -ms-transform: translate(-50%, -1rem);
- transform: translate(-50%, -1rem);
-}
-.tooltip.tooltip-bottom:focus::after,
-.tooltip.tooltip-bottom:hover::after {
- -webkit-transform: translate(-50%, .5rem);
- -ms-transform: translate(-50%, .5rem);
- transform: translate(-50%, .5rem);
-}
-.tooltip.tooltip-left::after {
- bottom: 50%;
- left: auto;
- right: 100%;
- -webkit-transform: translate(1rem, 50%);
- -ms-transform: translate(1rem, 50%);
- transform: translate(1rem, 50%);
-}
-.tooltip.tooltip-left:focus::after,
-.tooltip.tooltip-left:hover::after {
- -webkit-transform: translate(-.5rem, 50%);
- -ms-transform: translate(-.5rem, 50%);
- transform: translate(-.5rem, 50%);
-}
-@-webkit-keyframes loading {
- 0% {
- -webkit-transform: rotate(0deg);
- transform: rotate(0deg);
- }
- 100% {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg);
- }
-}
-@keyframes loading {
- 0% {
- -webkit-transform: rotate(0deg);
- transform: rotate(0deg);
- }
- 100% {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg);
- }
-}
-@-webkit-keyframes slide-down {
- 0% {
- opacity: 0;
- -webkit-transform: translateY(-3rem);
- transform: translateY(-3rem);
- }
- 100% {
- opacity: 1;
- -webkit-transform: translateY(0);
- transform: translateY(0);
- }
-}
-@keyframes slide-down {
- 0% {
- opacity: 0;
- -webkit-transform: translateY(-3rem);
- transform: translateY(-3rem);
- }
- 100% {
- opacity: 1;
- -webkit-transform: translateY(0);
- transform: translateY(0);
- }
-}
-.divider {
- border-top: .1rem solid #f0f1f4;
- display: block;
- height: .1rem;
- margin: 1rem 0;
- position: relative;
-}
-.divider[data-content]::before {
- background: #fff;
- color: #e7e9ed;
- content: attr(data-content);
- display: inline-block;
- font-size: 1.2rem;
- padding: 0 .8rem;
- -webkit-transform: translateY(-1.1rem);
- -ms-transform: translateY(-1.1rem);
- transform: translateY(-1.1rem);
-}
-.loading {
- color: transparent !important;
- min-height: 1.6rem;
- pointer-events: none;
- position: relative;
-}
-.loading::after {
- -webkit-animation: loading 500ms infinite linear;
- animation: loading 500ms infinite linear;
- border: .2rem solid #5764c6;
- border-radius: .8rem;
- border-right-color: transparent;
- border-top-color: transparent;
- content: "";
- display: block;
- height: 1.6rem;
- left: 50%;
- margin-left: -.8rem;
- margin-top: -.8rem;
- position: absolute;
- top: 50%;
- width: 1.6rem;
- z-index: 1;
-}
-.clearfix::after,
-.container::after {
- clear: both;
- content: "";
- display: table;
-}
-.float-left {
- float: left !important;
-}
-.float-right {
- float: right !important;
-}
-.rel {
- position: relative;
-}
-.abs {
- position: absolute;
-}
-.fixed {
- position: fixed;
-}
-.centered {
- display: block;
- float: none;
- margin-left: auto;
- margin-right: auto;
-}
-.mt-10 {
- margin-top: 1rem;
-}
-.mr-10 {
- margin-right: 1rem;
-}
-.mb-10 {
- margin-bottom: 1rem;
-}
-.ml-10 {
- margin-left: 1rem;
-}
-.mt-5 {
- margin-top: .5rem;
-}
-.mr-5 {
- margin-right: .5rem;
-}
-.mb-5 {
- margin-bottom: .5rem;
-}
-.ml-5 {
- margin-left: .5rem;
-}
-.pt-10 {
- padding-top: 1rem;
-}
-.pr-10 {
- padding-right: 1rem;
-}
-.pb-10 {
- padding-bottom: 1rem;
-}
-.pl-10 {
- padding-left: 1rem;
-}
-.pt-5 {
- padding-top: .5rem;
-}
-.pr-5 {
- padding-right: .5rem;
-}
-.pb-5 {
- padding-bottom: .5rem;
-}
-.pl-5 {
- padding-left: .5rem;
-}
-.block {
- display: block;
-}
-.inline {
- display: inline;
-}
-.inline-block {
- display: inline-block;
-}
-.flex {
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
-}
-.inline-flex {
- display: inline-flex;
- display: -ms-inline-flexbox;
- display: -webkit-inline-flex;
-}
-.hide {
- display: none !important;
-}
-.visible {
- visibility: visible;
-}
-.invisible {
- visibility: hidden;
-}
-.text-hide {
- background: transparent;
- border: 0;
- color: transparent;
- font-size: 0;
- line-height: 0;
- text-shadow: none;
-}
-.text-assistive {
- border: 0;
- clip: rect(0, 0, 0, 0);
- height: .1rem;
- margin: -.1rem;
- overflow: hidden;
- padding: 0;
- position: absolute;
- width: .1rem;
-}
-.text-left {
- text-align: left;
-}
-.text-right {
- text-align: right;
-}
-.text-center {
- text-align: center;
-}
-.text-justify {
- text-align: justify;
-}
-.text-lowercase {
- text-transform: lowercase;
-}
-.text-uppercase {
- text-transform: uppercase;
-}
-.text-capitalize {
- text-transform: capitalize;
-}
-.text-normal {
- font-weight: normal;
-}
-.text-bold {
- font-weight: bold;
-}
-.text-italic {
- font-style: italic;
-}
-.text-large {
- font-size: 1.2em;
-}
-.text-ellipsis {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
-}
-.text-clip {
- overflow: hidden;
- text-overflow: clip;
- white-space: nowrap;
-}
-.text-break {
- -webkit-hyphens: auto;
- -ms-hyphens: auto;
- hyphens: auto;
- word-break: break-word;
- word-wrap: break-word;
-}
-.hand {
- cursor: pointer;
-}
-.shadow-0 {
- box-shadow: 0 0 .2rem rgba(69, 77, 93, .3);
-}
-.shadow-1 {
- box-shadow: 0 .1rem .4rem rgba(69, 77, 93, .3);
-}
-.shadow-2 {
- box-shadow: 0 .2rem .6rem rgba(69, 77, 93, .3);
-}
-.shadow-3 {
- box-shadow: 0 .3rem .8rem rgba(69, 77, 93, .3);
-}
-.shadow-4 {
- box-shadow: 0 .4rem 1rem rgba(69, 77, 93, .3);
-}
-.rounded {
- border-radius: .2rem;
-}
-.circle {
- border-radius: 50%;
-} \ No newline at end of file
diff --git a/dist/spectre.min.css b/dist/spectre.min.css
deleted file mode 100644
index df7e8c7..0000000
--- a/dist/spectre.min.css
+++ /dev/null
@@ -1 +0,0 @@
-/*! Spectre.css | MIT License | github.com/picturepan2/spectre */html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:.67em 0}figcaption,figure,main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}b,strong{font-weight:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}dfn{font-style:italic}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}fieldset{border:0;margin:0;padding:0}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}template{display:none}[hidden]{display:none}*,::after,::before{box-sizing:inherit}html{box-sizing:border-box;font-size:10px;line-height:1.42857143;-webkit-tap-highlight-color:transparent}body{background:#fff;color:#50596c;font-family:-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",sans-serif;font-size:1.4rem;overflow-x:hidden;text-rendering:optimizeLegibility}a{color:#5764c6;outline:0;text-decoration:none}a:focus{box-shadow:0 0 0 .2rem rgba(87,100,198,.15)}a.active,a:active,a:focus,a:hover{color:#3b49af;text-decoration:underline}h1,h2,h3,h4,h5,h6{color:inherit;font-weight:300;line-height:1.2;margin-bottom:1.5rem;margin-top:0}h1{font-size:5rem}h2{font-size:4rem}h3{font-size:3rem}h4{font-size:2.4rem}h5{font-size:2rem}h6{font-size:1.6rem}p{line-height:2.4rem;margin:0 0 1rem}a,ins,u{-webkit-text-decoration-skip:ink edges;text-decoration-skip:ink edges}blockquote{border-left:.2rem solid #f0f1f4;margin-left:0;padding:1rem 2rem}blockquote p:last-child{margin-bottom:0}blockquote cite{color:#acb3c2}ol,ul{margin:2rem 0 2rem 2rem;padding:0}ol ol,ol ul,ul ol,ul ul{margin:1.5rem 0 1.5rem 2rem}ol li,ul li{margin-top:1rem}ul{list-style:disc inside}ul ul{list-style-type:circle}ol{list-style:decimal inside}ol ol{list-style-type:lower-alpha}dl dt{font-weight:700}dl dd{margin:.5rem 0 1.5rem 0}mark{background:#ffe9b3;border-radius:.2rem;color:#50596c;display:inline-block;line-height:1;padding:.3rem .4rem;vertical-align:baseline}kbd{background:#454d5d;border-radius:.2rem;color:#fff;display:inline-block;line-height:1;padding:.3rem .4rem;vertical-align:baseline}abbr[title]{border-bottom:.1rem dotted;cursor:help;text-decoration:none}.cjk,:lang(ja),:lang(ko),:lang(zh){font-family:-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Hiragino Kaku Gothic Pro",Meiryo,"Malgun Gothic","Helvetica Neue",sans-serif}.cjk ins,.cjk u,:lang(ja) ins,:lang(ja) u,:lang(zh) ins,:lang(zh) u{border-bottom:.1rem solid;text-decoration:none}.cjk del+del,.cjk del+s,.cjk ins+ins,.cjk ins+u,.cjk s+del,.cjk s+s,.cjk u+ins,.cjk u+u,:lang(ja) del+del,:lang(ja) del+s,:lang(ja) ins+ins,:lang(ja) ins+u,:lang(ja) s+del,:lang(ja) s+s,:lang(ja) u+ins,:lang(ja) u+u,:lang(zh) del+del,:lang(zh) del+s,:lang(zh) ins+ins,:lang(zh) ins+u,:lang(zh) s+del,:lang(zh) s+s,:lang(zh) u+ins,:lang(zh) u+u{margin-left:.125em}.table{border-collapse:collapse;border-spacing:0;text-align:left;width:100%}.table.table-striped tbody tr:nth-of-type(odd){background:#f8f9fa}.table.table-hover tbody tr:hover{background:#f0f1f4}.table tbody tr.active,.table.table-striped tbody tr.active{background:#f0f1f4}.table td{border-bottom:.1rem solid #f0f1f4;padding:1.5rem 1rem}.table th{border-bottom:.2rem solid #727e96;padding:1.5rem 1rem}.btn{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#fff;border:.1rem solid #5764c6;border-radius:.2rem;color:#5764c6;cursor:pointer;display:inline-block;font-size:1.4rem;height:3.2rem;line-height:2rem;outline:0;padding:.5rem .8rem;text-align:center;text-decoration:none;transition:all .2s ease;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;white-space:nowrap}.btn:focus{background:#fbfbfe;box-shadow:0 0 0 .2rem rgba(87,100,198,.15);text-decoration:none}.btn:hover{background:#5764c6;border-color:#4c59c2;color:#fff;text-decoration:none}.btn.active,.btn:active{background:#4c59c2;border-color:#3e4cb6;color:#fff;text-decoration:none}.btn.disabled,.btn:disabled,.btn[disabled]{cursor:default;opacity:.5;pointer-events:none}.btn.btn-primary{background:#5764c6;border-color:#4c59c2;color:#fff}.btn.btn-primary:focus,.btn.btn-primary:hover{background:#4452c0;border-color:#3e4cb6;color:#fff}.btn.btn-primary.active,.btn.btn-primary:active{background:#3f4eba;border-color:#3b49af;color:#fff}.btn.btn-primary.loading::after{border-bottom-color:#fff;border-left-color:#fff}.btn.btn-link{background:0 0;border-color:transparent;color:#5764c6}.btn.btn-link.active,.btn.btn-link:active,.btn.btn-link:focus,.btn.btn-link:hover{color:#3b49af}.btn.btn-sm{font-size:1.2rem;height:2.4rem;padding:.1rem .8rem}.btn.btn-lg{font-size:1.6rem;height:4rem;padding:.9rem .8rem}.btn.btn-block{display:block;width:100%}.btn.btn-action{padding-left:0;padding-right:0;width:3.2rem}.btn.btn-action.btn-sm{width:2.4rem}.btn.btn-action.btn-lg{width:4rem}.btn.btn-clear{background:0 0;border:0;color:currentColor;height:1.6rem;line-height:1.6rem;margin:.2rem -.2rem .2rem .4rem;opacity:.45;padding:0 .2rem;text-decoration:none;width:1.6rem}.btn.btn-clear:hover{opacity:.85}.btn.btn-clear::before{content:"\2715"}.btn-group{display:inline-flex;display:-ms-inline-flexbox;display:-webkit-inline-flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.btn-group .btn{-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto}.btn-group .btn:first-child:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group .btn:not(:first-child):not(:last-child){border-radius:0;margin-left:-.1rem}.btn-group .btn:last-child:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0;margin-left:-.1rem}.btn-group .btn.active,.btn-group .btn:active,.btn-group .btn:focus,.btn-group .btn:hover{z-index:1}.btn-group.btn-group-block{display:flex;display:-ms-flexbox;display:-webkit-flex}.form-group:not(:last-child){margin-bottom:1rem}.form-label{display:block;padding:.6rem 0}.form-label.label-sm{padding:.2rem 0}.form-label.label-lg{padding:1rem 0}.form-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#fff;background-image:none;border:.1rem solid #c4c9d3;border-radius:.2rem;color:#50596c;display:block;font-size:1.4rem;height:3.2rem;line-height:2rem;max-width:100%;outline:0;padding:.5rem .8rem;position:relative;transition:all .2s ease;width:100%}.form-input:focus{border-color:#5764c6;box-shadow:0 0 0 .2rem rgba(87,100,198,.15)}.form-input::-webkit-input-placeholder{color:#acb3c2}.form-input::-moz-placeholder{color:#acb3c2}.form-input:-ms-input-placeholder{color:#acb3c2}.form-input::placeholder{color:#acb3c2}.form-input.input-sm{font-size:1.2rem;height:2.4rem;padding:.1rem .8rem}.form-input.input-lg{font-size:1.6rem;height:4rem;padding:.9rem .8rem}.form-input.input-inline{display:inline-block;vertical-align:middle;width:auto}textarea.form-input{height:auto}.form-input[type=file]{height:auto}.form-input-hint{color:#acb3c2;margin-top:.4rem}.has-success .form-input-hint,.is-success+.form-input-hint{color:#32b643}.has-danger .form-input-hint,.is-danger+.form-input-hint{color:#e85600}.form-select{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:.1rem solid #c4c9d3;border-radius:.2rem;color:inherit;font-size:1.4rem;line-height:2rem;outline:0;padding:.5rem .8rem;vertical-align:middle}.form-select[multiple]{width:100%}.form-select[multiple] option{padding:.2rem .4rem}.form-select:not([multiple]){background:#fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23667189' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center/.8rem 1rem;height:3.2rem;padding-right:2.4rem}.form-select:focus{border-color:#5764c6;box-shadow:0 0 0 .2rem rgba(87,100,198,.15)}.form-select::-ms-expand{display:none}.form-select.select-sm{font-size:1.2rem;height:2.4rem;padding:.1rem 2rem .1rem .6rem}.form-select.select-lg{font-size:1.6rem;height:4rem;padding:.9rem 2.4rem .9rem .8rem}.form-input.is-success,.form-select.is-success,.has-success .form-input,.has-success .form-select{border-color:#32b643}.form-input.is-success:focus,.form-select.is-success:focus,.has-success .form-input:focus,.has-success .form-select:focus{box-shadow:0 0 0 .2rem rgba(50,182,67,.15)}.form-input.is-danger,.form-select.is-danger,.has-danger .form-input,.has-danger .form-select{border-color:#e85600}.form-input.is-danger:focus,.form-select.is-danger:focus,.has-danger .form-input:focus,.has-danger .form-select:focus{box-shadow:0 0 0 .2rem rgba(232,86,0,.15)}.form-checkbox,.form-radio,.form-switch{display:inline-block;line-height:2rem;position:relative}.form-checkbox input,.form-radio input,.form-switch input{clip:rect(0,0,0,0);height:.1rem;margin:-.1rem;overflow:hidden;position:absolute;width:.1rem}.form-checkbox input:focus+.form-icon,.form-radio input:focus+.form-icon,.form-switch input:focus+.form-icon{border-color:#5764c6;box-shadow:0 0 0 .2rem rgba(87,100,198,.15)}.form-checkbox input:checked+.form-icon,.form-radio input:checked+.form-icon,.form-switch input:checked+.form-icon{background:#5764c6;border-color:#5764c6}.form-checkbox .form-icon,.form-radio .form-icon,.form-switch .form-icon{border:.1rem solid #c4c9d3;cursor:pointer;display:inline-block;position:absolute;transition:all .2s ease}.form-checkbox,.form-radio{padding:.2rem 2rem}.form-checkbox .form-icon,.form-radio .form-icon{height:1.4rem;left:0;top:.5rem;width:1.4rem}.form-checkbox input:active+.form-icon,.form-radio input:active+.form-icon{background:#f0f1f4}.form-checkbox .form-icon{border-radius:.2rem}.form-checkbox input:checked+.form-icon::before{background-clip:padding-box;border:.2rem solid #fff;border-left-width:0;border-top-width:0;content:"";height:1rem;left:50%;margin-left:-.3rem;margin-top:-.6rem;position:absolute;top:50%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);width:.6rem}.form-checkbox input:indeterminate+.form-icon{background:#5764c6;border-color:#5764c6}.form-checkbox input:indeterminate+.form-icon::before{background:#fff;content:"";height:.2rem;left:50%;margin-left:-.5rem;margin-top:-.1rem;position:absolute;top:50%;width:1rem}.form-radio .form-icon{border-radius:.7rem}.form-radio input:checked+.form-icon::before{background:#fff;border-radius:.2rem;content:"";height:.4rem;left:50%;margin-left:-.2rem;margin-top:-.2rem;position:absolute;top:50%;width:.4rem}.form-switch{padding:.2rem 2rem .2rem 3.6rem}.form-switch .form-icon{background:#e7e9ed;background-clip:padding-box;border-radius:.9rem;height:1.8rem;left:0;top:.3rem;width:3rem}.form-switch .form-icon::before{background:#fff;border-radius:.8rem;content:"";display:block;height:1.6rem;left:0;position:absolute;top:0;transition:all .2s ease;width:1.6rem}.form-switch input:checked+.form-icon::before{left:1.2rem}.form-switch input:active+.form-icon::before{background:#f8f9fa}.input-group{display:flex;display:-ms-flexbox;display:-webkit-flex}.input-group .input-group-addon{background:#f8f9fa;border:.1rem solid #c4c9d3;border-radius:.2rem;line-height:2rem;padding:.5rem .8rem}.input-group .input-group-addon.addon-sm{font-size:1.2rem;padding:.1rem .8rem}.input-group .input-group-addon.addon-lg{font-size:1.6rem;padding:.9rem .8rem}.input-group .input-group-addon,.input-group .input-group-btn{-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto}.input-group .form-input:first-child:not(:last-child),.input-group .input-group-addon:first-child:not(:last-child),.input-group .input-group-btn:first-child:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.input-group .form-input:not(:first-child):not(:last-child),.input-group .input-group-addon:not(:first-child):not(:last-child),.input-group .input-group-btn:not(:first-child):not(:last-child){border-radius:0;margin-left:-.1rem}.input-group .form-input:last-child:not(:first-child),.input-group .input-group-addon:last-child:not(:first-child),.input-group .input-group-btn:last-child:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0;margin-left:-.1rem}.input-group .form-input:focus,.input-group .input-group-addon:focus,.input-group .input-group-btn:focus{z-index:1}.input-group.input-inline{display:inline-flex;display:-ms-inline-flexbox;display:-webkit-inline-flex}.form-input.disabled,.form-input:disabled,.form-select.disabled,.form-select:disabled{background-color:#f0f1f4;cursor:not-allowed;opacity:.5}input.disabled+.form-icon,input:disabled+.form-icon{background:#f0f1f4;cursor:not-allowed;opacity:.5}.form-switch input.disabled+.form-icon::before,.form-switch input:disabled+.form-icon::before{background:#fff}.form-horizontal{padding:1rem}.form-horizontal .form-group{display:flex;display:-ms-flexbox;display:-webkit-flex}.form-horizontal .form-checkbox,.form-horizontal .form-radio,.form-horizontal .form-switch{margin:.4rem 0}.label{background:#f8f9fa;border-radius:.2rem;color:inherit;display:inline-block;line-height:1;padding:.3rem .4rem;vertical-align:baseline}.label.label-primary{background:#5764c6;color:#fff}.label.label-success{background:#32b643;color:#fff}.label.label-warning{background:#ffb700;color:#fff}.label.label-danger{background:#e85600;color:#fff}code{background:#f8f9fa;border-radius:.2rem;color:#e06870;display:inline-block;line-height:1;padding:.3rem .4rem;vertical-align:baseline}.code{border-radius:.2rem;color:#50596c;line-height:2rem;position:relative}.code::before{color:#acb3c2;content:attr(data-lang);font-size:1.2rem;position:absolute;right:1rem;top:.2rem}.code code{color:inherit;display:block;line-height:inherit;overflow-x:auto;padding:2rem;width:100%}.img-responsive{display:block;height:auto;max-width:100%}.img-fit-cover{object-fit:cover}.img-fit-contain{object-fit:contain}.video-responsive{display:block;overflow:hidden;padding:0;position:relative;width:100%}.video-responsive::before{content:"";display:block;padding-bottom:56.25%}.video-responsive embed,.video-responsive iframe,.video-responsive object{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.video-responsive video{height:auto;max-width:100%;width:100%}.video-responsive-4-3::before{padding-bottom:75%}.video-responsive-1-1::before{padding-bottom:100%}.figure{margin:0 0 1rem 0}.figure .figure-caption{color:#727e96;margin-top:1rem}.container{margin-left:auto;margin-right:auto;padding-left:1rem;padding-right:1rem;width:100%}.container.grid-960{max-width:98rem}.container.grid-480{max-width:50rem}.columns{display:flex;display:-ms-flexbox;display:-webkit-flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-1rem;margin-right:-1rem}.columns.col-gapless{margin-left:0;margin-right:0}.columns.col-gapless .column{padding-left:0;padding-right:0}.columns.col-oneline{-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;overflow-x:auto}.column{-webkit-flex:1;-ms-flex:1;flex:1;padding:1rem}.column.col-1,.column.col-10,.column.col-11,.column.col-12,.column.col-2,.column.col-3,.column.col-4,.column.col-5,.column.col-6,.column.col-7,.column.col-8,.column.col-9{-webkit-flex:none;-ms-flex:none;flex:none}.col-12{width:100%}.col-11{width:91.66666667%}.col-10{width:83.33333333%}.col-9{width:75%}.col-8{width:66.66666667%}.col-7{width:58.33333333%}.col-6{width:50%}.col-5{width:41.66666667%}.col-4{width:33.33333333%}.col-3{width:25%}.col-2{width:16.66666667%}.col-1{width:8.33333333%}@media screen and (max-width:1280px){.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9{-webkit-flex:none;-ms-flex:none;flex:none}.col-xl-12{width:100%}.col-xl-11{width:91.66666667%}.col-xl-10{width:83.33333333%}.col-xl-9{width:75%}.col-xl-8{width:66.66666667%}.col-xl-7{width:58.33333333%}.col-xl-6{width:50%}.col-xl-5{width:41.66666667%}.col-xl-4{width:33.33333333%}.col-xl-3{width:25%}.col-xl-2{width:16.66666667%}.col-xl-1{width:8.33333333%}}@media screen and (max-width:960px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{-webkit-flex:none;-ms-flex:none;flex:none}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}}@media screen and (max-width:840px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{-webkit-flex:none;-ms-flex:none;flex:none}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}}@media screen and (max-width:600px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{-webkit-flex:none;-ms-flex:none;flex:none}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}}@media screen and (max-width:480px){.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{-webkit-flex:none;-ms-flex:none;flex:none}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}}.show-lg,.show-md,.show-sm,.show-xl,.show-xs{display:none!important}@media screen and (max-width:480px){.hide-xs{display:none!important}.show-xs{display:block!important}}@media screen and (max-width:600px){.hide-sm{display:none!important}.show-sm{display:block!important}}@media screen and (max-width:840px){.hide-md{display:none!important}.show-md{display:block!important}}@media screen and (max-width:960px){.hide-lg{display:none!important}.show-lg{display:block!important}}@media screen and (max-width:1280px){.hide-xl{display:none!important}.show-xl{display:block!important}}.navbar{-webkit-align-items:stretch;align-items:stretch;display:flex;display:-ms-flexbox;display:-webkit-flex;-ms-flex-align:stretch;-ms-flex-pack:justify;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-justify-content:space-between;justify-content:space-between}.navbar .navbar-section{-webkit-align-items:center;align-items:center;display:flex;display:-ms-flexbox;display:-webkit-flex;-webkit-flex:1 0 0;-ms-flex:1 0 0;flex:1 0 0;-ms-flex-align:center}.navbar .navbar-section:last-child{-ms-flex-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end}.navbar .navbar-center{-webkit-align-items:center;align-items:center;display:flex;display:-ms-flexbox;display:-webkit-flex;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-align:center}.navbar .navbar-brand{font-size:1.6rem;font-weight:500;text-decoration:none}.panel{border:.1rem solid #f0f1f4;border-radius:.2rem;display:flex;display:-ms-flexbox;display:-webkit-flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.panel .panel-footer,.panel .panel-header{-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;padding:1.5rem}.panel .panel-nav{-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto}.panel .panel-body{-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;overflow-y:auto;padding:0 1.5rem}.panel .panel-title{font-size:2rem}.panel .panel-subtitle{opacity:.5}.empty{background:#f8f9fa;border-radius:.2rem;color:#727e96;padding:4rem;text-align:center}.empty .empty-subtitle,.empty .empty-title{margin:1rem auto}.empty .empty-subtitle{opacity:.5}.empty .empty-action{margin-top:1.5rem}.form-autocomplete{position:relative}.form-autocomplete .form-autocomplete-input{-webkit-align-content:flex-start;align-content:flex-start;display:flex;display:-ms-flexbox;display:-webkit-flex;-ms-flex-line-pack:start;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;height:auto;min-height:3.2rem;padding:.1rem 0 0 .1rem}.form-autocomplete .form-autocomplete-input.is-focused{border-color:#5764c6;box-shadow:0 0 0 .2rem rgba(87,100,198,.15)}.form-autocomplete .form-autocomplete-input .form-input{border-color:transparent;box-shadow:none;display:inline-block;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;height:2.8rem;padding:.3rem .8rem;width:auto}.form-autocomplete mark{font-size:1;padding:.1em 0}.form-autocomplete .menu{left:0;position:absolute;top:100%;width:100%}.avatar{background:#5764c6;border-radius:50%;color:rgba(255,255,255,.85);display:inline-block;font-size:1.4rem;font-weight:300;height:3.2rem;line-height:1;margin:0;position:relative;vertical-align:middle;width:3.2rem}.avatar.avatar-xs{font-size:.8rem;height:1.6rem;width:1.6rem}.avatar.avatar-sm{font-size:1rem;height:2.4rem;width:2.4rem}.avatar.avatar-lg{font-size:2rem;height:4.8rem;width:4.8rem}.avatar.avatar-xl{font-size:2.6rem;height:6.4rem;width:6.4rem}.avatar img{border-radius:50%;height:100%;position:relative;width:100%;z-index:100}.avatar .avatar-icon{background:#fff;bottom:14.64%;height:50%;padding:.2rem;position:absolute;right:14.64%;-webkit-transform:translate(50%,50%);-ms-transform:translate(50%,50%);transform:translate(50%,50%);width:50%}.avatar[data-initial]::before{color:currentColor;content:attr(data-initial);left:50%;position:absolute;top:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);z-index:1}.badge{position:relative;white-space:nowrap}.badge:not([data-badge])::after,.badge[data-badge]::after{background:#5764c6;background-clip:padding-box;border:.1rem solid #fff;border-radius:1rem;color:#fff;content:attr(data-badge);display:inline-block;-webkit-transform:translate(-.2rem,-1rem);-ms-transform:translate(-.2rem,-1rem);transform:translate(-.2rem,-1rem)}.badge[data-badge]::after{font-size:1.2rem;height:2rem;line-height:1;min-width:2rem;padding:.3rem .5rem;text-align:center;white-space:nowrap}.badge:not([data-badge])::after,.badge[data-badge=""]::after{height:.8rem;min-width:.8rem;padding:0;width:.8rem}.badge.btn::after{position:absolute;right:0;top:0;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.badge.avatar::after{position:absolute;right:14.64%;top:14.64%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%);z-index:100}.badge.avatar-xs::after{content:"";height:.8rem;min-width:.8rem;padding:0;width:.8rem}.bar{background:#f0f1f4;border-radius:.2rem;display:flex;display:-ms-flexbox;display:-webkit-flex;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;height:1.6rem;width:100%}.bar.bar-sm{height:.4rem}.bar .bar-item{background:#5764c6;color:#fff;display:block;-ms-flex-negative:0;-webkit-flex-shrink:0;flex-shrink:0;font-size:1.2rem;height:100%;line-height:1;padding:.2rem 0;position:relative;text-align:center;width:0}.bar .bar-item:first-child{border-bottom-left-radius:.2rem;border-top-left-radius:.2rem}.bar .bar-item:last-child{border-bottom-right-radius:.2rem;border-top-right-radius:.2rem;-ms-flex-negative:1;-webkit-flex-shrink:1;flex-shrink:1}.bar-slider{height:.2rem;margin:1rem 0;position:relative}.bar-slider .bar-item{left:0;padding:0;position:absolute}.bar-slider .bar-item:not(:last-child):first-child{background:#f0f1f4;z-index:1}.bar-slider .bar-slider-btn{background:#5764c6;border:0;border-radius:50%;height:1.2rem;padding:0;position:absolute;right:0;top:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%);width:1.2rem}.bar-slider .bar-slider-btn:active{box-shadow:0 0 0 .2rem #5764c6}.card{background:#fff;border:.1rem solid #f0f1f4;border-radius:.2rem;display:block}.card .card-body,.card .card-footer,.card .card-header{padding:1.5rem;padding-bottom:0}.card .card-body:last-child,.card .card-footer:last-child,.card .card-header:last-child{padding-bottom:1.5rem}.card .card-image{padding-top:1.5rem}.card .card-image:first-child{padding-top:0}.card .card-image:first-child img{border-top-left-radius:.2rem;border-top-right-radius:.2rem}.card .card-image:last-child img{border-bottom-left-radius:.2rem;border-bottom-right-radius:.2rem}.card .card-title{font-size:2rem}.card .card-subtitle{font-size:1.2rem;opacity:.5}.chip{-webkit-align-items:center;align-items:center;background:#f0f1f4;border-radius:.2rem;color:#727e96;display:-ms-inline-flexbox;display:inline-flex;display:-webkit-inline-flex;-ms-flex-align:center;height:2.8rem;margin:0 .1rem .1rem 0;max-width:100%;padding:.1rem .8rem;text-decoration:none;vertical-align:middle}.chip.active{background:#5764c6;color:#fff}.chip .avatar{margin-left:-.4rem;margin-right:.4rem}.dropdown{display:inline-block;position:relative}.dropdown .menu{-webkit-animation:slide-down .2s ease 1;animation:slide-down .2s ease 1;display:none;left:0;position:absolute;top:100%}.dropdown.dropdown-right .menu{left:auto;right:0}.dropdown .dropdown-toggle:focus+.menu,.dropdown .menu:hover,.dropdown.active .menu{display:block}.menu{background:#fff;border-radius:.2rem;box-shadow:0 .1rem .4rem rgba(69,77,93,.3);list-style:none;margin:0;min-width:18rem;padding:1rem;-webkit-transform:translateY(.5rem);-ms-transform:translateY(.5rem);transform:translateY(.5rem);z-index:100}.menu .menu-item{margin-top:0;padding:0 .8rem;text-decoration:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.menu .menu-item>a{border-radius:.2rem;color:inherit;display:block;margin:0 -.8rem;padding:.6rem .8rem;text-decoration:none}.menu .menu-item>a:focus,.menu .menu-item>a:hover{color:#5764c6}.menu .menu-item>a.active,.menu .menu-item>a:active{background:#fbfbfe;color:#5764c6}.menu .menu-badge{float:right;padding:.6rem 0}.menu .menu-badge .btn{margin-top:-.2rem}.modal{-webkit-align-items:center;align-items:center;bottom:0;display:none;-ms-flex-align:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;left:0;opacity:0;overflow:hidden;padding:1rem;position:fixed;right:0;top:0}.modal.active,.modal:target{display:flex;display:-ms-flexbox;display:-webkit-flex;opacity:1;z-index:400}.modal.active .modal-overlay,.modal:target .modal-overlay{background:rgba(69,77,93,.5);bottom:0;cursor:default;display:block;left:0;position:absolute;right:0;top:0}.modal.active .modal-container,.modal:target .modal-container{-webkit-animation:slide-down .2s ease 1;animation:slide-down .2s ease 1;max-width:64rem;z-index:1}.modal.modal-sm .modal-container{max-width:32rem}.modal-container{background:#fff;border-radius:.2rem;box-shadow:0 .4rem 1rem rgba(69,77,93,.3);display:block;padding:0;text-align:left}.modal-container .modal-header{padding:1.5rem}.modal-container .modal-header .modal-title{font-size:1.6rem;margin:0}.modal-container .modal-body{max-height:50vh;overflow-y:auto;padding:1.5rem;position:relative}.modal-container .modal-footer{padding:1.5rem;text-align:right}.breadcrumb,.nav,.pagination,.tab{list-style:none;margin:.5rem 0}.breadcrumb{padding:1.2rem}.breadcrumb .breadcrumb-item{display:inline-block;margin:0}.breadcrumb .breadcrumb-item:last-child{color:#acb3c2}.breadcrumb .breadcrumb-item:not(:first-child)::before{color:#e7e9ed;content:"/";padding:0 .4rem}.tab{-webkit-align-items:center;align-items:center;border-bottom:.1rem solid #f0f1f4;display:flex;display:-ms-flexbox;display:-webkit-flex;-ms-flex-align:center;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.tab .tab-item{margin-top:0}.tab .tab-item.tab-action{-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;text-align:right}.tab .tab-item a{border-bottom:.2rem solid transparent;color:inherit;display:block;margin-top:0;padding:.5rem 1.2rem;text-decoration:none}.tab .tab-item a:focus,.tab .tab-item a:hover{color:#5764c6}.tab .tab-item a.active,.tab .tab-item.active a{border-bottom-color:#5764c6;color:#5764c6}.tab.tab-block .tab-item{-webkit-flex:1 0 0;-ms-flex:1 0 0;flex:1 0 0;text-align:center}.tab.tab-block .tab-item .badge[data-badge]::after{position:absolute;right:-.4rem;top:-.4rem;-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.tab:not(.tab-block) .badge{padding-right:0}.pagination{display:flex;display:-ms-flexbox;display:-webkit-flex}.pagination .page-item{margin:1rem .1rem}.pagination .page-item span{display:inline-block;padding:.6rem .4rem}.pagination .page-item a{border-radius:.2rem;color:#727e96;display:inline-block;padding:.6rem .8rem;text-decoration:none}.pagination .page-item a:focus,.pagination .page-item a:hover{color:#5764c6}.pagination .page-item a.disabled,.pagination .page-item a[disabled]{cursor:default;opacity:.5;pointer-events:none}.pagination .page-item.active a{background:#5764c6;color:#fff}.pagination .page-item.page-next,.pagination .page-item.page-prev{-webkit-flex:1 0 50%;-ms-flex:1 0 50%;flex:1 0 50%}.pagination .page-item.page-next{text-align:right}.pagination .page-item .page-item-title{margin:0}.pagination .page-item .page-item-subtitle{margin:0;opacity:.5}.nav{display:flex;display:-ms-flexbox;display:-webkit-flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.nav .nav-item a{color:#727e96;padding:.6rem .8rem;text-decoration:none}.nav .nav-item a:focus,.nav .nav-item a:hover{color:#5764c6}.nav .nav-item.active>a{font-weight:700}.nav .nav-item.active>a:focus,.nav .nav-item.active>a:hover{color:#5764c6}.nav .nav{margin-bottom:1rem;margin-left:2rem}.nav .nav a{color:#acb3c2}.popover{display:inline-block;position:relative}.popover .popover-container{content:attr(data-tooltip);left:50%;opacity:0;padding:1rem;position:absolute;top:0;-webkit-transform:translate(-50%,-50%) scale(0);-ms-transform:translate(-50%,-50%) scale(0);transform:translate(-50%,-50%) scale(0);transition:transform .2s ease,-webkit-transform .2s ease;transition:transform .2s ease;transition:-webkit-transform .2s ease;width:32rem;z-index:400}.popover .popover-container:hover,.popover :focus+.popover-container,.popover:hover .popover-container{display:block;opacity:1;-webkit-transform:translate(-50%,-100%) scale(1);-ms-transform:translate(-50%,-100%) scale(1);transform:translate(-50%,-100%) scale(1)}.popover.popover-right .popover-container{left:100%;top:50%}.popover.popover-right .popover-container:hover,.popover.popover-right :focus+.popover-container,.popover.popover-right:hover .popover-container{-webkit-transform:translate(0,-50%) scale(1);-ms-transform:translate(0,-50%) scale(1);transform:translate(0,-50%) scale(1)}.popover.popover-bottom .popover-container{left:50%;top:100%}.popover.popover-bottom .popover-container:hover,.popover.popover-bottom :focus+.popover-container,.popover.popover-bottom:hover .popover-container{-webkit-transform:translate(-50%,0) scale(1);-ms-transform:translate(-50%,0) scale(1);transform:translate(-50%,0) scale(1)}.popover.popover-left .popover-container{left:0;top:50%}.popover.popover-left .popover-container:hover,.popover.popover-left :focus+.popover-container,.popover.popover-left:hover .popover-container{-webkit-transform:translate(-100%,-50%) scale(1);-ms-transform:translate(-100%,-50%) scale(1);transform:translate(-100%,-50%) scale(1)}.popover .card{border:0;box-shadow:0 .4rem 1rem rgba(69,77,93,.3)}.step{display:flex;display:-ms-flexbox;display:-webkit-flex;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;list-style:none;margin:.5rem 0;width:100%}.step .step-item{-webkit-flex:1 1 0;-ms-flex:1 1 0;flex:1 1 0;margin-top:0;min-height:2rem;position:relative;text-align:center}.step .step-item:not(:first-child)::before{background:#5764c6;content:"";height:.2rem;left:-50%;position:absolute;top:.9rem;width:100%}.step .step-item a{color:#acb3c2;display:inline-block;padding:2rem 1rem 0;text-decoration:none}.step .step-item a::before{background:#5764c6;border:.2rem solid #fff;border-radius:50%;content:"";display:block;height:1.2rem;left:50%;position:absolute;top:.4rem;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:1.2rem;z-index:1}.step .step-item.active a::before{background:#fff;border:.2rem solid #5764c6}.step .step-item.active~.step-item::before{background:#f0f1f4}.step .step-item.active~.step-item a::before{background:#e7e9ed}.tile{-webkit-align-content:space-between;align-content:space-between;-webkit-align-items:flex-start;align-items:flex-start;display:flex;display:-ms-flexbox;display:-webkit-flex;-ms-flex-align:start;-ms-flex-line-pack:justify}.tile .tile-action,.tile .tile-icon{-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto}.tile .tile-content{-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto}.tile .tile-content:not(:first-child){padding-left:1rem}.tile .tile-content:not(:last-child){padding-right:1rem}.tile .tile-title{font-weight:500}.tile .tile-subtitle{line-height:2rem;opacity:.5}.tile.tile-centered{-webkit-align-items:center;align-items:center;-ms-flex-align:center}.tile.tile-centered .tile-content{overflow:hidden}.tile.tile-centered .tile-subtitle,.tile.tile-centered .tile-title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.toast{background:rgba(69,77,93,.9);border:.1rem solid #454d5d;border-color:#454d5d;border-radius:.2rem;color:#fff;display:block;padding:1rem;width:100%}.toast.toast-primary{background:rgba(87,100,198,.9);border-color:#5764c6}.toast.toast-success{background:rgba(50,182,67,.9);border-color:#32b643}.toast.toast-danger{background:rgba(232,86,0,.9);border-color:#e85600}.toast a{color:#fff;text-decoration:underline}.toast a.active,.toast a:active,.toast a:focus,.toast a:hover{opacity:.75}.tooltip{position:relative}.tooltip::after{background:rgba(69,77,93,.9);border-radius:.2rem;bottom:100%;color:#fff;content:attr(data-tooltip);display:block;font-size:1.2rem;left:50%;max-width:32rem;opacity:0;overflow:hidden;padding:.4rem .8rem;pointer-events:none;position:absolute;text-overflow:ellipsis;-webkit-transform:translate(-50%,1rem);-ms-transform:translate(-50%,1rem);transform:translate(-50%,1rem);transition:all .2s ease;white-space:nowrap;z-index:200}.tooltip:focus::after,.tooltip:hover::after{opacity:1;-webkit-transform:translate(-50%,-.5rem);-ms-transform:translate(-50%,-.5rem);transform:translate(-50%,-.5rem)}.tooltip.disabled,.tooltip[disabled]{pointer-events:auto}.tooltip.tooltip-right::after{bottom:50%;left:100%;-webkit-transform:translate(-1rem,50%);-ms-transform:translate(-1rem,50%);transform:translate(-1rem,50%)}.tooltip.tooltip-right:focus::after,.tooltip.tooltip-right:hover::after{-webkit-transform:translate(.5rem,50%);-ms-transform:translate(.5rem,50%);transform:translate(.5rem,50%)}.tooltip.tooltip-bottom::after{bottom:auto;top:100%;-webkit-transform:translate(-50%,-1rem);-ms-transform:translate(-50%,-1rem);transform:translate(-50%,-1rem)}.tooltip.tooltip-bottom:focus::after,.tooltip.tooltip-bottom:hover::after{-webkit-transform:translate(-50%,.5rem);-ms-transform:translate(-50%,.5rem);transform:translate(-50%,.5rem)}.tooltip.tooltip-left::after{bottom:50%;left:auto;right:100%;-webkit-transform:translate(1rem,50%);-ms-transform:translate(1rem,50%);transform:translate(1rem,50%)}.tooltip.tooltip-left:focus::after,.tooltip.tooltip-left:hover::after{-webkit-transform:translate(-.5rem,50%);-ms-transform:translate(-.5rem,50%);transform:translate(-.5rem,50%)}@-webkit-keyframes loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes slide-down{0%{opacity:0;-webkit-transform:translateY(-3rem);transform:translateY(-3rem)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes slide-down{0%{opacity:0;-webkit-transform:translateY(-3rem);transform:translateY(-3rem)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}.divider{border-top:.1rem solid #f0f1f4;display:block;height:.1rem;margin:1rem 0;position:relative}.divider[data-content]::before{background:#fff;color:#e7e9ed;content:attr(data-content);display:inline-block;font-size:1.2rem;padding:0 .8rem;-webkit-transform:translateY(-1.1rem);-ms-transform:translateY(-1.1rem);transform:translateY(-1.1rem)}.loading{color:transparent!important;min-height:1.6rem;pointer-events:none;position:relative}.loading::after{-webkit-animation:loading .5s infinite linear;animation:loading .5s infinite linear;border:.2rem solid #5764c6;border-radius:.8rem;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:1.6rem;left:50%;margin-left:-.8rem;margin-top:-.8rem;position:absolute;top:50%;width:1.6rem;z-index:1}.clearfix::after,.container::after{clear:both;content:"";display:table}.float-left{float:left!important}.float-right{float:right!important}.rel{position:relative}.abs{position:absolute}.fixed{position:fixed}.centered{display:block;float:none;margin-left:auto;margin-right:auto}.mt-10{margin-top:1rem}.mr-10{margin-right:1rem}.mb-10{margin-bottom:1rem}.ml-10{margin-left:1rem}.mt-5{margin-top:.5rem}.mr-5{margin-right:.5rem}.mb-5{margin-bottom:.5rem}.ml-5{margin-left:.5rem}.pt-10{padding-top:1rem}.pr-10{padding-right:1rem}.pb-10{padding-bottom:1rem}.pl-10{padding-left:1rem}.pt-5{padding-top:.5rem}.pr-5{padding-right:.5rem}.pb-5{padding-bottom:.5rem}.pl-5{padding-left:.5rem}.block{display:block}.inline{display:inline}.inline-block{display:inline-block}.flex{display:flex;display:-ms-flexbox;display:-webkit-flex}.inline-flex{display:inline-flex;display:-ms-inline-flexbox;display:-webkit-inline-flex}.hide{display:none!important}.visible{visibility:visible}.invisible{visibility:hidden}.text-hide{background:0 0;border:0;color:transparent;font-size:0;line-height:0;text-shadow:none}.text-assistive{border:0;clip:rect(0,0,0,0);height:.1rem;margin:-.1rem;overflow:hidden;padding:0;position:absolute;width:.1rem}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-normal{font-weight:400}.text-bold{font-weight:700}.text-italic{font-style:italic}.text-large{font-size:1.2em}.text-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-clip{overflow:hidden;text-overflow:clip;white-space:nowrap}.text-break{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-break:break-word;word-wrap:break-word}.hand{cursor:pointer}.shadow-0{box-shadow:0 0 .2rem rgba(69,77,93,.3)}.shadow-1{box-shadow:0 .1rem .4rem rgba(69,77,93,.3)}.shadow-2{box-shadow:0 .2rem .6rem rgba(69,77,93,.3)}.shadow-3{box-shadow:0 .3rem .8rem rgba(69,77,93,.3)}.shadow-4{box-shadow:0 .4rem 1rem rgba(69,77,93,.3)}.rounded{border-radius:.2rem}.circle{border-radius:50%} \ No newline at end of file
diff --git a/docs/components.html b/docs/components.html
index cf18cd3..a0e704c 100644
--- a/docs/components.html
+++ b/docs/components.html
@@ -7,8 +7,8 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="author" content="https://github.com/picturepan2/" />
<title>Components - Spectre.css</title>
- <link rel="stylesheet" href="css/spectre.css" />
- <link rel="stylesheet" href="css/spectre-icons.css" />
+ <link rel="stylesheet" href="dist/spectre.css" />
+ <link rel="stylesheet" href="dist/spectre-icons.css" />
<link rel="stylesheet" href="css/docs.css" />
</head>
<body>
diff --git a/docs/css/docs.css b/docs/css/docs.css
index 73f53a7..7fa61b2 100644
--- a/docs/css/docs.css
+++ b/docs/css/docs.css
@@ -1,7 +1,7 @@
/*! Spectre.css Docs | MIT License | github.com/picturepan2/spectre */
/* Spectre version */
.version::after {
- content: "0.2.12";
+ content: "0.2.13";
}
/* Spectre docs style */
.bg-gray {
diff --git a/docs/css/docs.min.css b/docs/css/docs.min.css
deleted file mode 100644
index 949c33b..0000000
--- a/docs/css/docs.min.css
+++ /dev/null
@@ -1 +0,0 @@
-/*! Spectre.css Docs | MIT License | github.com/picturepan2/spectre */.version::after{content:"0.2.12"}.bg-gray{background:#f8f9fa;color:#667189;padding:1rem}.bg-dark{background:#50596c;color:#fff;padding:1rem}.bg-primary{background:#5764c6;color:#fff;padding:1rem}.section-header{padding:1rem .5rem;position:fixed;top:0;width:100%;z-index:200}.section-hero{position:relative;z-index:300}.grid-header .navbar{height:4rem}.grid-header .navbar-section{padding:0}.grid-header .navbar-brand{color:#5b657a}.grid-header .btn-link{color:#667189;padding-left:.6rem;padding-right:.6rem}.grid-header .btn-link:active,.grid-header .btn-link:focus,.grid-header .btn-link:hover{color:#50596c;opacity:.75}.grid-hero{margin-bottom:4rem;margin-top:10rem}.grid-hero h1{color:#5b657a;font-size:3.2rem;font-weight:400}.grid-hero h2{color:#5b657a;font-size:1.8rem;font-weight:400;line-height:3rem;margin-bottom:3rem}.grid-hero h2 u{border-bottom:.2rem solid #5b657a;padding-bottom:.1rem;text-decoration:none}.grid-hero .card{background:0 0;border:0;color:#667189;padding:1rem}.grid-hero .card .card-title{color:#5764c6;font-size:1.8rem;margin-bottom:0}.grid-footer{color:#acb3c2;margin-bottom:1rem;margin-top:2rem}.grid-footer a{color:#727e96}.docs-content{color:#667189;padding-top:0}.docs-content .container{padding:1rem}.docs-content header{color:#50596c;padding-top:6rem}.docs-content .notes{margin:4rem 0}.docs-content .docs-block{border-radius:.2rem;padding:1rem .5rem}.docs-content .docs-dot{border-radius:50%;display:inline-block;height:1rem;padding:0;width:1rem}.docs-content .docs-table td,.docs-content .docs-table th{padding:1.5rem .5rem}.docs-content h1,.docs-content h2,.docs-content h3,.docs-content h4,.docs-content h5,.docs-content h6{margin-bottom:2rem;margin-top:2rem}.docs-content .docs-color{border-radius:.2rem;margin:.5rem 0;padding:1rem}.docs-content .docs-color .color-subtitle{font-size:1.2rem;opacity:.75}.docs-content .panel{height:75vh}.docs-content .panel .tile{margin:1.5rem 0}.docs-content .code{color:#667189}.docs-content .code .com{color:#acb3c2}.docs-content .code .tag{color:#5764c6}.docs-content .code .atn{color:#667189}.docs-content .code .atv{color:#e06870}.docs-content .empty .icon{font-size:4rem}.docs-content .navbar-brand .icon{font-size:3rem}.docs-content .form-autocomplete .menu{position:static}.docs-content .example-tile-icon{-webkit-align-content:space-around;align-content:space-around;-webkit-align-items:center;align-items:center;background:#5764c6;border-radius:.2rem;color:#fff;display:flex;display:-ms-flexbox;display:-webkit-flex;-ms-flex-align:center;-ms-flex-line-pack:distribute;font-size:2.4rem;height:4rem;width:4rem}.docs-content .example-tile-icon .icon{margin:auto}.docs-content .comparison-slider .filter-grayscale{-webkit-filter:grayscale(75%);filter:grayscale(75%)}@media screen and (min-width:601px){.section-header .navbar-section{padding:0 .5rem}.docs-sidebar{padding:7rem 1rem 3.5rem 1rem}.docs-sidebar .docs-nav{position:relative}@supports ((position:-webkit-sticky) or (position:sticky)){.docs-sidebar .docs-nav{position:sticky;position:-webkit-sticky;top:8rem}.docs-sidebar .docs-nav .nav-item a:focus{box-shadow:none}}}.docs-nav-clear{display:none}@media screen and (max-width:600px){.grid-hero h2{font-size:1.8rem}.grid-hero .card{padding:0}.docs-sidebar{background:#fff;height:100%;left:0;overflow-y:auto;padding:6rem 3rem;position:fixed;top:0;-webkit-transform:translateX(-100%);-ms-transform:translateX(-100%);transform:translateX(-100%);transition:transform .2s ease,-webkit-transform .2s ease;transition:transform .2s ease;transition:-webkit-transform .2s ease;width:24rem;z-index:400}.docs-sidebar:target{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);transition:transform .2s ease,-webkit-transform .2s ease;transition:transform .2s ease;transition:-webkit-transform .2s ease}.docs-sidebar:target+.docs-nav-clear{display:block}.docs-nav-clear{background:rgba(0,0,0,.15);display:none;height:100%;left:0;position:fixed;right:0;top:0;width:100%;z-index:300}} \ No newline at end of file
diff --git a/docs/css/spectre-exp.css b/docs/css/spectre-exp.css
deleted file mode 100644
index 0d0ea94..0000000
--- a/docs/css/spectre-exp.css
+++ /dev/null
@@ -1,805 +0,0 @@
-/*! Spectre.css Experimentals | MIT License | github.com/picturepan2/spectre */
-.calendar {
- border: .1rem solid #f0f1f4;
- border-radius: .2rem;
- display: block;
- min-width: 28rem;
- text-align: center;
-}
-.calendar .calendar-nav {
- -webkit-align-items: center;
- align-items: center;
- background: #f8f9fa;
- border-top-left-radius: .2rem;
- border-top-right-radius: .2rem;
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -ms-flex-align: center;
- font-size: 1.6rem;
- padding: 1rem;
-}
-.calendar .calendar-header,
-.calendar .calendar-body {
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -ms-flex-pack: center;
- -webkit-flex-wrap: wrap;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- -webkit-justify-content: center;
- justify-content: center;
- padding: 1rem 0;
-}
-.calendar .calendar-header .calendar-date,
-.calendar .calendar-body .calendar-date {
- -webkit-flex: 0 0 14.28%;
- -ms-flex: 0 0 14.28%;
- flex: 0 0 14.28%;
- width: 14.28%;
-}
-.calendar .calendar-header {
- background: #f8f9fa;
- border-bottom: .1rem solid #f0f1f4;
- color: #acb3c2;
- font-size: 1.2rem;
-}
-.calendar .calendar-body {
- color: #727e96;
-}
-.calendar .calendar-date {
- border: 0;
- padding: .4rem;
-}
-.calendar .calendar-date .date-item {
- -webkit-appearance: none;
- -moz-appearance: none;
- appearance: none;
- background: transparent;
- border: .1rem solid transparent;
- border-radius: 50%;
- color: #727e96;
- cursor: pointer;
- height: 2.8rem;
- line-height: 2rem;
- outline: none;
- padding: .3rem;
- position: relative;
- text-align: center;
- text-decoration: none;
- transition: all .2s ease;
- vertical-align: middle;
- white-space: nowrap;
- width: 2.8rem;
-}
-.calendar .calendar-date .date-item.date-today {
- border-color: #e4e6f6;
- color: #5764c6;
-}
-.calendar .calendar-date .date-item:focus {
- box-shadow: 0 0 0 .2rem rgba(87, 100, 198, .15);
-}
-.calendar .calendar-date .date-item:focus,
-.calendar .calendar-date .date-item:hover {
- background: #fbfbfe;
- border-color: #e4e6f6;
- color: #5764c6;
- text-decoration: none;
-}
-.calendar .calendar-date .date-item:active,
-.calendar .calendar-date .date-item.active {
- background: #4c59c2;
- border-color: #3e4cb6;
- color: #fff;
-}
-.calendar .calendar-date .date-item.badge::after {
- position: absolute;
- right: .3rem;
- top: .3rem;
- -webkit-transform: translate(50%, -50%);
- -ms-transform: translate(50%, -50%);
- transform: translate(50%, -50%);
-}
-.calendar .calendar-date.disabled .date-item,
-.calendar .calendar-date.disabled .calendar-event,
-.calendar .calendar-date .date-item:disabled,
-.calendar .calendar-date .calendar-event:disabled {
- cursor: default;
- opacity: .25;
- pointer-events: none;
-}
-.calendar .calendar-range {
- position: relative;
-}
-.calendar .calendar-range::before {
- background: #eff1fa;
- content: "";
- height: 2.8rem;
- left: 0;
- position: absolute;
- right: 0;
- top: 50%;
- -webkit-transform: translateY(-50%);
- -ms-transform: translateY(-50%);
- transform: translateY(-50%);
-}
-.calendar .calendar-range.range-start::before {
- left: 50%;
-}
-.calendar .calendar-range.range-end::before {
- right: 50%;
-}
-.calendar .calendar-range .date-item {
- color: #5764c6;
-}
-.calendar.calendar-lg .calendar-body {
- padding: 0;
-}
-.calendar.calendar-lg .calendar-body .calendar-date {
- border-bottom: .1rem solid #f0f1f4;
- border-right: .1rem solid #f0f1f4;
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -webkit-flex-direction: column;
- -ms-flex-direction: column;
- flex-direction: column;
- height: 11rem;
- padding: 0;
-}
-.calendar.calendar-lg .calendar-body .calendar-date:nth-child(7n) {
- border-right: 0;
-}
-.calendar.calendar-lg .calendar-body .calendar-date:nth-last-child(-n+7) {
- border-bottom: 0;
-}
-.calendar.calendar-lg .date-item {
- -webkit-align-self: flex-end;
- align-self: flex-end;
- -ms-flex-item-align: end;
- height: 2.8rem;
- margin-right: .5rem;
- margin-top: .5rem;
-}
-.calendar.calendar-lg .calendar-range::before {
- top: 1.9rem;
-}
-.calendar.calendar-lg .calendar-range.range-start::before {
- left: auto;
- width: 1.9rem;
-}
-.calendar.calendar-lg .calendar-range.range-end::before {
- right: 1.9rem;
-}
-.calendar.calendar-lg .calendar-events {
- -webkit-flex-grow: 1;
- flex-grow: 1;
- -ms-flex-positive: 1;
- line-height: 1;
- overflow-y: auto;
- padding: .5rem;
-}
-.calendar.calendar-lg .calendar-event {
- background: #eff1fa;
- border-radius: .2rem;
- color: #5764c6;
- display: block;
- font-size: 1.2rem;
- margin: .2rem auto;
- overflow: hidden;
- padding: .3rem .4rem;
- text-align: left;
- text-overflow: ellipsis;
- vertical-align: baseline;
- white-space: nowrap;
-}
-.carousel {
- background: #f8f9fa;
- display: block;
- height: 50vh;
- overflow: hidden;
- position: relative;
- width: 100%;
-}
-.carousel .carousel-container {
- height: 100%;
- left: 0;
- position: relative;
-}
-.carousel .carousel-container .carousel-item {
- -webkit-animation: carousel-slideout 1s ease-in-out 1;
- animation: carousel-slideout 1s ease-in-out 1;
- height: 100%;
- left: 0;
- margin: 0;
- opacity: 0;
- position: absolute;
- top: 0;
- width: 100%;
-}
-.carousel .carousel-container .carousel-item:hover .item-prev,
-.carousel .carousel-container .carousel-item:hover .item-next {
- opacity: 1;
-}
-.carousel .carousel-container .item-prev,
-.carousel .carousel-container .item-next {
- background: rgba(231, 233, 237, .25);
- border-color: rgba(231, 233, 237, .5);
- color: #e7e9ed;
- opacity: 0;
- position: absolute;
- top: 50%;
- -webkit-transform: translateY(-50%);
- -ms-transform: translateY(-50%);
- transform: translateY(-50%);
- transition: all .4s ease;
- z-index: 200;
-}
-.carousel .carousel-container .item-prev {
- left: 2rem;
-}
-.carousel .carousel-container .item-next {
- right: 2rem;
-}
-.carousel .carousel-locator:nth-of-type(1):checked ~ .carousel-container .carousel-item:nth-of-type(1),
-.carousel .carousel-locator:nth-of-type(2):checked ~ .carousel-container .carousel-item:nth-of-type(2),
-.carousel .carousel-locator:nth-of-type(3):checked ~ .carousel-container .carousel-item:nth-of-type(3),
-.carousel .carousel-locator:nth-of-type(4):checked ~ .carousel-container .carousel-item:nth-of-type(4) {
- -webkit-animation: carousel-slidein .75s ease-in-out 1;
- animation: carousel-slidein .75s ease-in-out 1;
- opacity: 1;
- z-index: 100;
-}
-.carousel .carousel-locator:nth-of-type(1):checked ~ .carousel-nav .nav-item:nth-of-type(1),
-.carousel .carousel-locator:nth-of-type(2):checked ~ .carousel-nav .nav-item:nth-of-type(2),
-.carousel .carousel-locator:nth-of-type(3):checked ~ .carousel-nav .nav-item:nth-of-type(3),
-.carousel .carousel-locator:nth-of-type(4):checked ~ .carousel-nav .nav-item:nth-of-type(4) {
- color: #e7e9ed;
-}
-.carousel .carousel-nav {
- bottom: 1rem;
- display: -webkit-flex;
- display: flex;
- display: -ms-flexbox;
- -ms-flex-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- left: 50%;
- position: absolute;
- -webkit-transform: translateX(-50%);
- -ms-transform: translateX(-50%);
- transform: translateX(-50%);
- width: 20rem;
- z-index: 200;
-}
-.carousel .carousel-nav .nav-item {
- color: rgba(231, 233, 237, .5);
- display: block;
- -webkit-flex: 1 0 auto;
- -ms-flex: 1 0 auto;
- flex: 1 0 auto;
- height: 4rem;
- margin: .4rem;
- max-width: 5rem;
- position: relative;
-}
-.carousel .carousel-nav .nav-item::before {
- background: currentColor;
- content: "";
- display: block;
- height: .3rem;
- position: absolute;
- top: 2rem;
- width: 100%;
-}
-@-webkit-keyframes carousel-slidein {
- 0% {
- -webkit-transform: translateX(100%);
- transform: translateX(100%);
- }
- 100% {
- -webkit-transform: translateX(0);
- transform: translateX(0);
- }
-}
-@keyframes carousel-slidein {
- 0% {
- -webkit-transform: translateX(100%);
- transform: translateX(100%);
- }
- 100% {
- -webkit-transform: translateX(0);
- transform: translateX(0);
- }
-}
-@-webkit-keyframes carousel-slideout {
- 0% {
- opacity: 1;
- -webkit-transform: translateX(0);
- transform: translateX(0);
- }
- 100% {
- opacity: 1;
- -webkit-transform: translateX(-50%);
- transform: translateX(-50%);
- }
-}
-@keyframes carousel-slideout {
- 0% {
- opacity: 1;
- -webkit-transform: translateX(0);
- transform: translateX(0);
- }
- 100% {
- opacity: 1;
- -webkit-transform: translateX(-50%);
- transform: translateX(-50%);
- }
-}
-.comparison-slider {
- height: 50vh;
- overflow: hidden;
- position: relative;
- width: 100%;
-}
-.comparison-slider .comparison-before,
-.comparison-slider .comparison-after {
- height: 100%;
- left: 0;
- margin: 0;
- overflow: hidden;
- position: absolute;
- top: 0;
-}
-.comparison-slider .comparison-before img,
-.comparison-slider .comparison-after img {
- height: 100%;
- object-fit: none;
- object-position: left top;
- position: absolute;
- width: 100%;
- z-index: -1;
-}
-.comparison-slider .comparison-before {
- width: 100%;
-}
-.comparison-slider .comparison-before .comparison-label {
- right: 1.6rem;
-}
-.comparison-slider .comparison-after {
- max-width: 100%;
- min-width: 0;
- z-index: 1;
-}
-.comparison-slider .comparison-after::before {
- background: transparent;
- content: "";
- cursor: default;
- height: 100%;
- left: 0;
- position: absolute;
- right: 1.6rem;
- top: 0;
- z-index: 1;
-}
-.comparison-slider .comparison-after::after {
- background: currentColor;
- border-radius: 50%;
- box-shadow: 0 -.5rem, 0 .5rem;
- color: #fff;
- content: "";
- height: .3rem;
- position: absolute;
- right: .8rem;
- top: 50%;
- -webkit-transform: translate(50%, -50%);
- -ms-transform: translate(50%, -50%);
- transform: translate(50%, -50%);
- width: .3rem;
- z-index: -1;
-}
-.comparison-slider .comparison-after .comparison-label {
- left: 1.6rem;
-}
-.comparison-slider .comparison-resizer {
- -webkit-animation: first-run 1.5s 1 ease-in-out;
- animation: first-run 1.5s 1 ease-in-out;
- cursor: ew-resize;
- height: 1.5rem;
- left: 0;
- max-width: 100%;
- min-width: 1.6rem;
- opacity: 0;
- outline: none;
- position: relative;
- resize: horizontal;
- top: 50%;
- -webkit-transform: translateY(-50%) scaleY(30);
- -ms-transform: translateY(-50%) scaleY(30);
- transform: translateY(-50%) scaleY(30);
- width: 0;
-}
-.comparison-slider .comparison-label {
- background: rgba(69, 77, 93, .5);
- bottom: 1.6rem;
- color: #fff;
- padding: .3rem .8rem;
- position: absolute;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
-}
-@-webkit-keyframes first-run {
- 0% {
- width: 0;
- }
- 25% {
- width: 4.8rem;
- }
- 50% {
- width: 1.6rem;
- }
- 75% {
- width: 2.4rem;
- }
- 100% {
- width: 0;
- }
-}
-@keyframes first-run {
- 0% {
- width: 0;
- }
- 25% {
- width: 4.8rem;
- }
- 50% {
- width: 1.6rem;
- }
- 75% {
- width: 2.4rem;
- }
- 100% {
- width: 0;
- }
-}
-.filter .filter-nav {
- margin: 1rem 0;
-}
-.filter .filter-body {
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -webkit-flex-wrap: wrap;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
-}
-.filter .filter-tag#tag-all:checked ~ .filter-nav .chip[for="tag-all"],
-.filter .filter-tag#tag-action:checked ~ .filter-nav .chip[for="tag-action"],
-.filter .filter-tag#tag-roleplaying:checked ~ .filter-nav .chip[for="tag-roleplaying"],
-.filter .filter-tag#tag-shooter:checked ~ .filter-nav .chip[for="tag-shooter"],
-.filter .filter-tag#tag-sports:checked ~ .filter-nav .chip[for="tag-sports"] {
- background: #5764c6;
- color: #fff;
-}
-.filter .filter-tag#tag-action:checked ~ .filter-body .column:not([data-tag~="tag-action"]),
-.filter .filter-tag#tag-roleplaying:checked ~ .filter-body .column:not([data-tag~="tag-roleplaying"]),
-.filter .filter-tag#tag-shooter:checked ~ .filter-body .column:not([data-tag~="tag-shooter"]),
-.filter .filter-tag#tag-sports:checked ~ .filter-body .column:not([data-tag~="tag-sports"]) {
- display: none;
-}
-.meter {
- -webkit-appearance: none;
- -moz-appearance: none;
- appearance: none;
- background: #f8f9fa;
- border: 0;
- border-radius: .2rem;
- display: block;
- height: 1.6rem;
- width: 100%;
-}
-.meter::-webkit-meter-inner-element {
- display: block;
-}
-.meter::-webkit-meter-bar,
-.meter::-webkit-meter-optimum-value,
-.meter::-webkit-meter-suboptimum-value,
-.meter::-webkit-meter-even-less-good-value {
- border-radius: .2rem;
-}
-.meter::-webkit-meter-bar {
- background: #f8f9fa;
-}
-.meter::-webkit-meter-optimum-value {
- background: #32b643;
-}
-.meter::-webkit-meter-suboptimum-value {
- background: #ffb700;
-}
-.meter::-webkit-meter-even-less-good-value {
- background: #e85600;
-}
-.meter::-moz-meter-bar,
-.meter:-moz-meter-optimum,
-.meter:-moz-meter-sub-optimum,
-.meter:-moz-meter-sub-sub-optimum {
- border-radius: .2rem;
-}
-.meter:-moz-meter-optimum::-moz-meter-bar {
- background: #32b643;
-}
-.meter:-moz-meter-sub-optimum::-moz-meter-bar {
- background: #ffb700;
-}
-.meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {
- background: #e85600;
-}
-.parallax {
- display: block;
- height: auto;
- position: relative;
- width: auto;
-}
-.parallax .parallax-content {
- box-shadow: 0 2rem 4.2rem rgba(69, 77, 93, .3);
- height: auto;
- -webkit-transform: perspective(100rem);
- transform: perspective(100rem);
- -webkit-transform-style: preserve-3d;
- transform-style: preserve-3d;
- transition: all .4s ease;
- width: 100%;
-}
-.parallax .parallax-content::before {
- content: "";
- display: block;
- height: 100%;
- left: 0;
- position: absolute;
- top: 0;
- width: 100%;
-}
-.parallax .parallax-front {
- -webkit-align-items: center;
- align-items: center;
- color: #fff;
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -ms-flex-align: center;
- -ms-flex-pack: center;
- height: 100%;
- -webkit-justify-content: center;
- justify-content: center;
- left: 0;
- position: absolute;
- text-align: center;
- text-shadow: 0 0 3rem rgba(69, 77, 93, .95);
- top: 0;
- -webkit-transform: translateZ(10rem);
- transform: translateZ(10rem);
- transition: all .4s ease;
- width: 100%;
- z-index: 1;
-}
-.parallax .parallax-top-left {
- height: 50%;
- left: 0;
- position: absolute;
- top: 0;
- width: 50%;
- z-index: 300;
-}
-.parallax .parallax-top-left:hover ~ .parallax-content {
- -webkit-transform: perspective(100rem) rotateX(-3deg) rotateY(3deg);
- transform: perspective(100rem) rotateX(-3deg) rotateY(3deg);
-}
-.parallax .parallax-top-left:hover ~ .parallax-content::before {
- background: linear-gradient(135deg, rgba(255, 255, 255, .25) 0%, rgba(255, 255, 255, 0) 50%);
-}
-.parallax .parallax-top-left:hover ~ .parallax-content .parallax-front {
- -webkit-transform: translate3d(-.65rem, -.65rem, 10rem);
- transform: translate3d(-.65rem, -.65rem, 10rem);
-}
-.parallax .parallax-top-right {
- height: 50%;
- position: absolute;
- right: 0;
- top: 0;
- width: 50%;
- z-index: 300;
-}
-.parallax .parallax-top-right:hover ~ .parallax-content {
- -webkit-transform: perspective(100rem) rotateX(-3deg) rotateY(-3deg);
- transform: perspective(100rem) rotateX(-3deg) rotateY(-3deg);
-}
-.parallax .parallax-top-right:hover ~ .parallax-content::before {
- background: linear-gradient(-135deg, rgba(255, 255, 255, .25) 0%, rgba(255, 255, 255, 0) 50%);
-}
-.parallax .parallax-top-right:hover ~ .parallax-content .parallax-front {
- -webkit-transform: translate3d(.65rem, -.65rem, 10rem);
- transform: translate3d(.65rem, -.65rem, 10rem);
-}
-.parallax .parallax-bottom-left {
- bottom: 0;
- height: 50%;
- left: 0;
- position: absolute;
- width: 50%;
- z-index: 300;
-}
-.parallax .parallax-bottom-left:hover ~ .parallax-content {
- -webkit-transform: perspective(100rem) rotateX(3deg) rotateY(3deg);
- transform: perspective(100rem) rotateX(3deg) rotateY(3deg);
-}
-.parallax .parallax-bottom-left:hover ~ .parallax-content::before {
- background: linear-gradient(45deg, rgba(255, 255, 255, .25) 0%, rgba(255, 255, 255, 0) 50%);
-}
-.parallax .parallax-bottom-left:hover ~ .parallax-content .parallax-front {
- -webkit-transform: translate3d(-.65rem, .65rem, 10rem);
- transform: translate3d(-.65rem, .65rem, 10rem);
-}
-.parallax .parallax-bottom-right {
- bottom: 0;
- height: 50%;
- position: absolute;
- right: 0;
- width: 50%;
- z-index: 300;
-}
-.parallax .parallax-bottom-right:hover ~ .parallax-content {
- -webkit-transform: perspective(100rem) rotateX(3deg) rotateY(-3deg);
- transform: perspective(100rem) rotateX(3deg) rotateY(-3deg);
-}
-.parallax .parallax-bottom-right:hover ~ .parallax-content::before {
- background: linear-gradient(-45deg, rgba(255, 255, 255, .25) 0%, rgba(255, 255, 255, 0) 50%);
-}
-.parallax .parallax-bottom-right:hover ~ .parallax-content .parallax-front {
- -webkit-transform: translate3d(.65rem, .65rem, 10rem);
- transform: translate3d(.65rem, .65rem, 10rem);
-}
-.progress {
- -webkit-appearance: none;
- -moz-appearance: none;
- appearance: none;
- background: #f0f1f4;
- border: 0;
- border-radius: .2rem;
- color: #5764c6;
- height: .4rem;
- position: relative;
- width: 100%;
-}
-.progress::-webkit-progress-bar {
- background: transparent;
- border-radius: .2rem;
-}
-.progress::-webkit-progress-value {
- background: #5764c6;
- border-radius: .2rem;
-}
-.progress::-moz-progress-bar {
- background: #5764c6;
- border-radius: .2rem;
-}
-.progress:indeterminate {
- -webkit-animation: progress-indeterminate 1.5s linear infinite;
- animation: progress-indeterminate 1.5s linear infinite;
- background: #f0f1f4 linear-gradient(to right, #5764c6 30%, #f0f1f4 30%) top left / 150% 150% no-repeat;
-}
-.progress:indeterminate::-moz-progress-bar {
- background: transparent;
-}
-@-webkit-keyframes progress-indeterminate {
- 0% {
- background-position: 200% 0;
- }
- 100% {
- background-position: -200% 0;
- }
-}
-@keyframes progress-indeterminate {
- 0% {
- background-position: 200% 0;
- }
- 100% {
- background-position: -200% 0;
- }
-}
-.slider {
- -webkit-appearance: none;
- -moz-appearance: none;
- appearance: none;
- background: transparent;
- display: block;
- height: 2.4rem;
- width: 100%;
-}
-.slider:focus {
- box-shadow: 0 0 0 .2rem rgba(87, 100, 198, .15);
- outline: none;
-}
-.slider::-webkit-slider-thumb {
- -webkit-appearance: none;
- background: #5764c6;
- border: 0;
- border-radius: 50%;
- height: 1.2rem;
- margin-top: -.5rem;
- transition: transform .2s ease, -webkit-transform .2s ease;
- transition: transform .2s ease;
- transition: -webkit-transform .2s ease;
- width: 1.2rem;
-}
-.slider::-moz-range-thumb {
- background: #5764c6;
- border: 0;
- border-radius: 50%;
- height: 1.2rem;
- transition: transform .2s ease, -webkit-transform .2s ease;
- transition: transform .2s ease;
- transition: -webkit-transform .2s ease;
- width: 1.2rem;
-}
-.slider::-ms-thumb {
- background: #5764c6;
- border: 0;
- border-radius: 50%;
- height: 1.2rem;
- transition: transform .2s ease, -webkit-transform .2s ease;
- transition: transform .2s ease;
- transition: -webkit-transform .2s ease;
- width: 1.2rem;
-}
-.slider:active::-webkit-slider-thumb {
- -webkit-transform: scale(1.25);
- transform: scale(1.25);
-}
-.slider:active::-moz-range-thumb {
- transform: scale(1.25);
-}
-.slider:active::-ms-thumb {
- -ms-transform: scale(1.25);
- transform: scale(1.25);
-}
-.slider:disabled::-webkit-slider-thumb,
-.slider.disabled::-webkit-slider-thumb {
- background: #e7e9ed;
- -webkit-transform: scale(1);
- transform: scale(1);
-}
-.slider:disabled::-moz-range-thumb,
-.slider.disabled::-moz-range-thumb {
- background: #e7e9ed;
- transform: scale(1);
-}
-.slider:disabled::-ms-thumb,
-.slider.disabled::-ms-thumb {
- background: #e7e9ed;
- -ms-transform: scale(1);
- transform: scale(1);
-}
-.slider::-webkit-slider-runnable-track {
- background: #f0f1f4;
- border-radius: .2rem;
- height: .2rem;
- width: 100%;
-}
-.slider::-moz-range-track {
- background: #f0f1f4;
- border-radius: .2rem;
- height: .2rem;
- width: 100%;
-}
-.slider::-ms-track {
- background: #f0f1f4;
- border-radius: .2rem;
- height: .2rem;
- width: 100%;
-}
-.slider::-ms-fill-lower {
- background: #5764c6;
-} \ No newline at end of file
diff --git a/docs/css/spectre-exp.min.css b/docs/css/spectre-exp.min.css
deleted file mode 100644
index 0f93092..0000000
--- a/docs/css/spectre-exp.min.css
+++ /dev/null
@@ -1 +0,0 @@
-/*! Spectre.css Experimentals | MIT License | github.com/picturepan2/spectre */.calendar{border:.1rem solid #f0f1f4;border-radius:.2rem;display:block;min-width:28rem;text-align:center}.calendar .calendar-nav{-webkit-align-items:center;align-items:center;background:#f8f9fa;border-top-left-radius:.2rem;border-top-right-radius:.2rem;display:flex;display:-ms-flexbox;display:-webkit-flex;-ms-flex-align:center;font-size:1.6rem;padding:1rem}.calendar .calendar-body,.calendar .calendar-header{display:flex;display:-ms-flexbox;display:-webkit-flex;-ms-flex-pack:center;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-justify-content:center;justify-content:center;padding:1rem 0}.calendar .calendar-body .calendar-date,.calendar .calendar-header .calendar-date{-webkit-flex:0 0 14.28%;-ms-flex:0 0 14.28%;flex:0 0 14.28%;width:14.28%}.calendar .calendar-header{background:#f8f9fa;border-bottom:.1rem solid #f0f1f4;color:#acb3c2;font-size:1.2rem}.calendar .calendar-body{color:#727e96}.calendar .calendar-date{border:0;padding:.4rem}.calendar .calendar-date .date-item{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:.1rem solid transparent;border-radius:50%;color:#727e96;cursor:pointer;height:2.8rem;line-height:2rem;outline:0;padding:.3rem;position:relative;text-align:center;text-decoration:none;transition:all .2s ease;vertical-align:middle;white-space:nowrap;width:2.8rem}.calendar .calendar-date .date-item.date-today{border-color:#e4e6f6;color:#5764c6}.calendar .calendar-date .date-item:focus{box-shadow:0 0 0 .2rem rgba(87,100,198,.15)}.calendar .calendar-date .date-item:focus,.calendar .calendar-date .date-item:hover{background:#fbfbfe;border-color:#e4e6f6;color:#5764c6;text-decoration:none}.calendar .calendar-date .date-item.active,.calendar .calendar-date .date-item:active{background:#4c59c2;border-color:#3e4cb6;color:#fff}.calendar .calendar-date .date-item.badge::after{position:absolute;right:.3rem;top:.3rem;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.calendar .calendar-date .calendar-event:disabled,.calendar .calendar-date .date-item:disabled,.calendar .calendar-date.disabled .calendar-event,.calendar .calendar-date.disabled .date-item{cursor:default;opacity:.25;pointer-events:none}.calendar .calendar-range{position:relative}.calendar .calendar-range::before{background:#eff1fa;content:"";height:2.8rem;left:0;position:absolute;right:0;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.calendar .calendar-range.range-start::before{left:50%}.calendar .calendar-range.range-end::before{right:50%}.calendar .calendar-range .date-item{color:#5764c6}.calendar.calendar-lg .calendar-body{padding:0}.calendar.calendar-lg .calendar-body .calendar-date{border-bottom:.1rem solid #f0f1f4;border-right:.1rem solid #f0f1f4;display:flex;display:-ms-flexbox;display:-webkit-flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;height:11rem;padding:0}.calendar.calendar-lg .calendar-body .calendar-date:nth-child(7n){border-right:0}.calendar.calendar-lg .calendar-body .calendar-date:nth-last-child(-n+7){border-bottom:0}.calendar.calendar-lg .date-item{-webkit-align-self:flex-end;align-self:flex-end;-ms-flex-item-align:end;height:2.8rem;margin-right:.5rem;margin-top:.5rem}.calendar.calendar-lg .calendar-range::before{top:1.9rem}.calendar.calendar-lg .calendar-range.range-start::before{left:auto;width:1.9rem}.calendar.calendar-lg .calendar-range.range-end::before{right:1.9rem}.calendar.calendar-lg .calendar-events{-webkit-flex-grow:1;flex-grow:1;-ms-flex-positive:1;line-height:1;overflow-y:auto;padding:.5rem}.calendar.calendar-lg .calendar-event{background:#eff1fa;border-radius:.2rem;color:#5764c6;display:block;font-size:1.2rem;margin:.2rem auto;overflow:hidden;padding:.3rem .4rem;text-align:left;text-overflow:ellipsis;vertical-align:baseline;white-space:nowrap}.carousel{background:#f8f9fa;display:block;height:50vh;overflow:hidden;position:relative;width:100%}.carousel .carousel-container{height:100%;left:0;position:relative}.carousel .carousel-container .carousel-item{-webkit-animation:carousel-slideout 1s ease-in-out 1;animation:carousel-slideout 1s ease-in-out 1;height:100%;left:0;margin:0;opacity:0;position:absolute;top:0;width:100%}.carousel .carousel-container .carousel-item:hover .item-next,.carousel .carousel-container .carousel-item:hover .item-prev{opacity:1}.carousel .carousel-container .item-next,.carousel .carousel-container .item-prev{background:rgba(231,233,237,.25);border-color:rgba(231,233,237,.5);color:#e7e9ed;opacity:0;position:absolute;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);transition:all .4s ease;z-index:200}.carousel .carousel-container .item-prev{left:2rem}.carousel .carousel-container .item-next{right:2rem}.carousel .carousel-locator:nth-of-type(1):checked~.carousel-container .carousel-item:nth-of-type(1),.carousel .carousel-locator:nth-of-type(2):checked~.carousel-container .carousel-item:nth-of-type(2),.carousel .carousel-locator:nth-of-type(3):checked~.carousel-container .carousel-item:nth-of-type(3),.carousel .carousel-locator:nth-of-type(4):checked~.carousel-container .carousel-item:nth-of-type(4){-webkit-animation:carousel-slidein .75s ease-in-out 1;animation:carousel-slidein .75s ease-in-out 1;opacity:1;z-index:100}.carousel .carousel-locator:nth-of-type(1):checked~.carousel-nav .nav-item:nth-of-type(1),.carousel .carousel-locator:nth-of-type(2):checked~.carousel-nav .nav-item:nth-of-type(2),.carousel .carousel-locator:nth-of-type(3):checked~.carousel-nav .nav-item:nth-of-type(3),.carousel .carousel-locator:nth-of-type(4):checked~.carousel-nav .nav-item:nth-of-type(4){color:#e7e9ed}.carousel .carousel-nav{bottom:1rem;display:-webkit-flex;display:flex;display:-ms-flexbox;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;left:50%;position:absolute;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:20rem;z-index:200}.carousel .carousel-nav .nav-item{color:rgba(231,233,237,.5);display:block;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;height:4rem;margin:.4rem;max-width:5rem;position:relative}.carousel .carousel-nav .nav-item::before{background:currentColor;content:"";display:block;height:.3rem;position:absolute;top:2rem;width:100%}@-webkit-keyframes carousel-slidein{0%{-webkit-transform:translateX(100%);transform:translateX(100%)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes carousel-slidein{0%{-webkit-transform:translateX(100%);transform:translateX(100%)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes carousel-slideout{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:1;-webkit-transform:translateX(-50%);transform:translateX(-50%)}}@keyframes carousel-slideout{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:1;-webkit-transform:translateX(-50%);transform:translateX(-50%)}}.comparison-slider{height:50vh;overflow:hidden;position:relative;width:100%}.comparison-slider .comparison-after,.comparison-slider .comparison-before{height:100%;left:0;margin:0;overflow:hidden;position:absolute;top:0}.comparison-slider .comparison-after img,.comparison-slider .comparison-before img{height:100%;object-fit:none;object-position:left top;position:absolute;width:100%;z-index:-1}.comparison-slider .comparison-before{width:100%}.comparison-slider .comparison-before .comparison-label{right:1.6rem}.comparison-slider .comparison-after{max-width:100%;min-width:0;z-index:1}.comparison-slider .comparison-after::before{background:0 0;content:"";cursor:default;height:100%;left:0;position:absolute;right:1.6rem;top:0;z-index:1}.comparison-slider .comparison-after::after{background:currentColor;border-radius:50%;box-shadow:0 -.5rem,0 .5rem;color:#fff;content:"";height:.3rem;position:absolute;right:.8rem;top:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%);width:.3rem;z-index:-1}.comparison-slider .comparison-after .comparison-label{left:1.6rem}.comparison-slider .comparison-resizer{-webkit-animation:first-run 1.5s 1 ease-in-out;animation:first-run 1.5s 1 ease-in-out;cursor:ew-resize;height:1.5rem;left:0;max-width:100%;min-width:1.6rem;opacity:0;outline:0;position:relative;resize:horizontal;top:50%;-webkit-transform:translateY(-50%) scaleY(30);-ms-transform:translateY(-50%) scaleY(30);transform:translateY(-50%) scaleY(30);width:0}.comparison-slider .comparison-label{background:rgba(69,77,93,.5);bottom:1.6rem;color:#fff;padding:.3rem .8rem;position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}@-webkit-keyframes first-run{0%{width:0}25%{width:4.8rem}50%{width:1.6rem}75%{width:2.4rem}100%{width:0}}@keyframes first-run{0%{width:0}25%{width:4.8rem}50%{width:1.6rem}75%{width:2.4rem}100%{width:0}}.filter .filter-nav{margin:1rem 0}.filter .filter-body{display:flex;display:-ms-flexbox;display:-webkit-flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.filter .filter-tag#tag-action:checked~.filter-nav .chip[for=tag-action],.filter .filter-tag#tag-all:checked~.filter-nav .chip[for=tag-all],.filter .filter-tag#tag-roleplaying:checked~.filter-nav .chip[for=tag-roleplaying],.filter .filter-tag#tag-shooter:checked~.filter-nav .chip[for=tag-shooter],.filter .filter-tag#tag-sports:checked~.filter-nav .chip[for=tag-sports]{background:#5764c6;color:#fff}.filter .filter-tag#tag-action:checked~.filter-body .column:not([data-tag~=tag-action]),.filter .filter-tag#tag-roleplaying:checked~.filter-body .column:not([data-tag~=tag-roleplaying]),.filter .filter-tag#tag-shooter:checked~.filter-body .column:not([data-tag~=tag-shooter]),.filter .filter-tag#tag-sports:checked~.filter-body .column:not([data-tag~=tag-sports]){display:none}.meter{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#f8f9fa;border:0;border-radius:.2rem;display:block;height:1.6rem;width:100%}.meter::-webkit-meter-inner-element{display:block}.meter::-webkit-meter-bar,.meter::-webkit-meter-even-less-good-value,.meter::-webkit-meter-optimum-value,.meter::-webkit-meter-suboptimum-value{border-radius:.2rem}.meter::-webkit-meter-bar{background:#f8f9fa}.meter::-webkit-meter-optimum-value{background:#32b643}.meter::-webkit-meter-suboptimum-value{background:#ffb700}.meter::-webkit-meter-even-less-good-value{background:#e85600}.meter:-moz-meter-optimum,.meter:-moz-meter-sub-optimum,.meter:-moz-meter-sub-sub-optimum,.meter::-moz-meter-bar{border-radius:.2rem}.meter:-moz-meter-optimum::-moz-meter-bar{background:#32b643}.meter:-moz-meter-sub-optimum::-moz-meter-bar{background:#ffb700}.meter:-moz-meter-sub-sub-optimum::-moz-meter-bar{background:#e85600}.parallax{display:block;height:auto;position:relative;width:auto}.parallax .parallax-content{box-shadow:0 2rem 4.2rem rgba(69,77,93,.3);height:auto;-webkit-transform:perspective(100rem);transform:perspective(100rem);-webkit-transform-style:preserve-3d;transform-style:preserve-3d;transition:all .4s ease;width:100%}.parallax .parallax-content::before{content:"";display:block;height:100%;left:0;position:absolute;top:0;width:100%}.parallax .parallax-front{-webkit-align-items:center;align-items:center;color:#fff;display:flex;display:-ms-flexbox;display:-webkit-flex;-ms-flex-align:center;-ms-flex-pack:center;height:100%;-webkit-justify-content:center;justify-content:center;left:0;position:absolute;text-align:center;text-shadow:0 0 3rem rgba(69,77,93,.95);top:0;-webkit-transform:translateZ(10rem);transform:translateZ(10rem);transition:all .4s ease;width:100%;z-index:1}.parallax .parallax-top-left{height:50%;left:0;position:absolute;top:0;width:50%;z-index:300}.parallax .parallax-top-left:hover~.parallax-content{-webkit-transform:perspective(100rem) rotateX(-3deg) rotateY(3deg);transform:perspective(100rem) rotateX(-3deg) rotateY(3deg)}.parallax .parallax-top-left:hover~.parallax-content::before{background:linear-gradient(135deg,rgba(255,255,255,.25) 0,rgba(255,255,255,0) 50%)}.parallax .parallax-top-left:hover~.parallax-content .parallax-front{-webkit-transform:translate3d(-.65rem,-.65rem,10rem);transform:translate3d(-.65rem,-.65rem,10rem)}.parallax .parallax-top-right{height:50%;position:absolute;right:0;top:0;width:50%;z-index:300}.parallax .parallax-top-right:hover~.parallax-content{-webkit-transform:perspective(100rem) rotateX(-3deg) rotateY(-3deg);transform:perspective(100rem) rotateX(-3deg) rotateY(-3deg)}.parallax .parallax-top-right:hover~.parallax-content::before{background:linear-gradient(-135deg,rgba(255,255,255,.25) 0,rgba(255,255,255,0) 50%)}.parallax .parallax-top-right:hover~.parallax-content .parallax-front{-webkit-transform:translate3d(.65rem,-.65rem,10rem);transform:translate3d(.65rem,-.65rem,10rem)}.parallax .parallax-bottom-left{bottom:0;height:50%;left:0;position:absolute;width:50%;z-index:300}.parallax .parallax-bottom-left:hover~.parallax-content{-webkit-transform:perspective(100rem) rotateX(3deg) rotateY(3deg);transform:perspective(100rem) rotateX(3deg) rotateY(3deg)}.parallax .parallax-bottom-left:hover~.parallax-content::before{background:linear-gradient(45deg,rgba(255,255,255,.25) 0,rgba(255,255,255,0) 50%)}.parallax .parallax-bottom-left:hover~.parallax-content .parallax-front{-webkit-transform:translate3d(-.65rem,.65rem,10rem);transform:translate3d(-.65rem,.65rem,10rem)}.parallax .parallax-bottom-right{bottom:0;height:50%;position:absolute;right:0;width:50%;z-index:300}.parallax .parallax-bottom-right:hover~.parallax-content{-webkit-transform:perspective(100rem) rotateX(3deg) rotateY(-3deg);transform:perspective(100rem) rotateX(3deg) rotateY(-3deg)}.parallax .parallax-bottom-right:hover~.parallax-content::before{background:linear-gradient(-45deg,rgba(255,255,255,.25) 0,rgba(255,255,255,0) 50%)}.parallax .parallax-bottom-right:hover~.parallax-content .parallax-front{-webkit-transform:translate3d(.65rem,.65rem,10rem);transform:translate3d(.65rem,.65rem,10rem)}.progress{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#f0f1f4;border:0;border-radius:.2rem;color:#5764c6;height:.4rem;position:relative;width:100%}.progress::-webkit-progress-bar{background:0 0;border-radius:.2rem}.progress::-webkit-progress-value{background:#5764c6;border-radius:.2rem}.progress::-moz-progress-bar{background:#5764c6;border-radius:.2rem}.progress:indeterminate{-webkit-animation:progress-indeterminate 1.5s linear infinite;animation:progress-indeterminate 1.5s linear infinite;background:#f0f1f4 linear-gradient(to right,#5764c6 30%,#f0f1f4 30%) top left/150% 150% no-repeat}.progress:indeterminate::-moz-progress-bar{background:0 0}@-webkit-keyframes progress-indeterminate{0%{background-position:200% 0}100%{background-position:-200% 0}}@keyframes progress-indeterminate{0%{background-position:200% 0}100%{background-position:-200% 0}}.slider{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;display:block;height:2.4rem;width:100%}.slider:focus{box-shadow:0 0 0 .2rem rgba(87,100,198,.15);outline:0}.slider::-webkit-slider-thumb{-webkit-appearance:none;background:#5764c6;border:0;border-radius:50%;height:1.2rem;margin-top:-.5rem;transition:transform .2s ease,-webkit-transform .2s ease;transition:transform .2s ease;transition:-webkit-transform .2s ease;width:1.2rem}.slider::-moz-range-thumb{background:#5764c6;border:0;border-radius:50%;height:1.2rem;transition:transform .2s ease,-webkit-transform .2s ease;transition:transform .2s ease;transition:-webkit-transform .2s ease;width:1.2rem}.slider::-ms-thumb{background:#5764c6;border:0;border-radius:50%;height:1.2rem;transition:transform .2s ease,-webkit-transform .2s ease;transition:transform .2s ease;transition:-webkit-transform .2s ease;width:1.2rem}.slider:active::-webkit-slider-thumb{-webkit-transform:scale(1.25);transform:scale(1.25)}.slider:active::-moz-range-thumb{transform:scale(1.25)}.slider:active::-ms-thumb{-ms-transform:scale(1.25);transform:scale(1.25)}.slider.disabled::-webkit-slider-thumb,.slider:disabled::-webkit-slider-thumb{background:#e7e9ed;-webkit-transform:scale(1);transform:scale(1)}.slider.disabled::-moz-range-thumb,.slider:disabled::-moz-range-thumb{background:#e7e9ed;transform:scale(1)}.slider.disabled::-ms-thumb,.slider:disabled::-ms-thumb{background:#e7e9ed;-ms-transform:scale(1);transform:scale(1)}.slider::-webkit-slider-runnable-track{background:#f0f1f4;border-radius:.2rem;height:.2rem;width:100%}.slider::-moz-range-track{background:#f0f1f4;border-radius:.2rem;height:.2rem;width:100%}.slider::-ms-track{background:#f0f1f4;border-radius:.2rem;height:.2rem;width:100%}.slider::-ms-fill-lower{background:#5764c6} \ No newline at end of file
diff --git a/docs/css/spectre-icons.css b/docs/css/spectre-icons.css
deleted file mode 100644
index 4d43246..0000000
--- a/docs/css/spectre-icons.css
+++ /dev/null
@@ -1,467 +0,0 @@
-/*! Spectre.css Icons | MIT License | github.com/picturepan2/spectre */
-.icon {
- box-sizing: border-box;
- display: inline-block;
- font-size: inherit;
- height: 1em;
- position: relative;
- text-indent: -999rem;
- vertical-align: middle;
- width: 1em;
-}
-.icon::before,
-.icon::after {
- display: block;
- left: 50%;
- position: absolute;
- top: 50%;
- -webkit-transform: translate(-50%, -50%);
- -ms-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
-}
-.icon-arrow-down::before,
-.icon-arrow-left::before,
-.icon-arrow-right::before,
-.icon-arrow-up::before,
-.icon-downward::before,
-.icon-back::before,
-.icon-forward::before,
-.icon-upward::before {
- border: .2rem solid currentColor;
- border-bottom: 0;
- border-right: 0;
- content: "";
- height: .65em;
- -webkit-transform: translate(-25%, -50%) rotate(-45deg);
- -ms-transform: translate(-25%, -50%) rotate(-45deg);
- transform: translate(-25%, -50%) rotate(-45deg);
- width: .65em;
-}
-.icon-arrow-down,
-.icon-downward {
- -webkit-transform: rotate(-90deg);
- -ms-transform: rotate(-90deg);
- transform: rotate(-90deg);
-}
-.icon-arrow-right,
-.icon-forward {
- -webkit-transform: rotate(180deg);
- -ms-transform: rotate(180deg);
- transform: rotate(180deg);
-}
-.icon-arrow-up,
-.icon-upward {
- -webkit-transform: rotate(90deg);
- -ms-transform: rotate(90deg);
- transform: rotate(90deg);
-}
-.icon-downward::before,
-.icon-back::before,
-.icon-forward::before,
-.icon-upward::before {
- -webkit-transform: translate(-50%, -50%) rotate(-45deg);
- -ms-transform: translate(-50%, -50%) rotate(-45deg);
- transform: translate(-50%, -50%) rotate(-45deg);
-}
-.icon-downward::after,
-.icon-back::after,
-.icon-forward::after,
-.icon-upward::after {
- background: currentColor;
- content: "";
- height: .2rem;
- left: 55%;
- width: .8em;
-}
-.icon-caret::before {
- border-left: .3em solid transparent;
- border-right: .3em solid transparent;
- border-top: .3em solid currentColor;
- content: "";
- height: 0;
- -webkit-transform: translate(-50%, -25%);
- -ms-transform: translate(-50%, -25%);
- transform: translate(-50%, -25%);
- width: 0;
-}
-.icon-menu::before {
- background: currentColor;
- box-shadow: 0 -.35em, 0 .35em;
- content: "";
- height: .2rem;
- width: 100%;
-}
-.icon-apps::before {
- background: currentColor;
- box-shadow: -.35em -.35em, -.35em 0, -.35em .35em, 0 -.35em, 0 .35em, .35em -.35em, .35em 0, .35em .35em;
- content: "";
- height: .3rem;
- width: .3rem;
-}
-.icon-resize-horiz::before,
-.icon-resize-vert::before,
-.icon-resize-horiz::after,
-.icon-resize-vert::after {
- border: .2rem solid currentColor;
- border-bottom: 0;
- border-right: 0;
- content: "";
- height: .45em;
- width: .45em;
-}
-.icon-resize-horiz::before,
-.icon-resize-vert::before {
- -webkit-transform: translate(-50%, -90%) rotate(45deg);
- -ms-transform: translate(-50%, -90%) rotate(45deg);
- transform: translate(-50%, -90%) rotate(45deg);
-}
-.icon-resize-horiz::after,
-.icon-resize-vert::after {
- -webkit-transform: translate(-50%, -10%) rotate(225deg);
- -ms-transform: translate(-50%, -10%) rotate(225deg);
- transform: translate(-50%, -10%) rotate(225deg);
-}
-.icon-resize-horiz::before {
- -webkit-transform: translate(-90%, -50%) rotate(-45deg);
- -ms-transform: translate(-90%, -50%) rotate(-45deg);
- transform: translate(-90%, -50%) rotate(-45deg);
-}
-.icon-resize-horiz::after {
- -webkit-transform: translate(-10%, -50%) rotate(135deg);
- -ms-transform: translate(-10%, -50%) rotate(135deg);
- transform: translate(-10%, -50%) rotate(135deg);
-}
-.icon-more-horiz::before,
-.icon-more-vert::before {
- background: currentColor;
- border-radius: 50%;
- box-shadow: -.4em 0, .4em 0;
- content: "";
- height: .3rem;
- width: .3rem;
-}
-.icon-more-vert::before {
- box-shadow: 0 -.4em, 0 .4em;
-}
-.icon-plus::before,
-.icon-minus::before,
-.icon-cross::before {
- background: currentColor;
- content: "";
- height: .2rem;
- width: 90%;
-}
-.icon-plus::after,
-.icon-cross::after {
- background: currentColor;
- content: "";
- height: 90%;
- width: .2rem;
-}
-.icon-cross::before {
- width: 100%;
-}
-.icon-cross::after {
- height: 100%;
-}
-.icon-cross::before,
-.icon-cross::after {
- -webkit-transform: translate(-50%, -50%) rotate(45deg);
- -ms-transform: translate(-50%, -50%) rotate(45deg);
- transform: translate(-50%, -50%) rotate(45deg);
-}
-.icon-check::before {
- border: .2rem solid currentColor;
- border-right: 0;
- border-top: 0;
- content: "";
- height: .5em;
- -webkit-transform: translate(-50%, -75%) rotate(-45deg);
- -ms-transform: translate(-50%, -75%) rotate(-45deg);
- transform: translate(-50%, -75%) rotate(-45deg);
- width: .9em;
-}
-.icon-refresh::before {
- border: .2rem solid currentColor;
- border-radius: 50%;
- border-right-color: transparent;
- content: "";
- height: .9em;
- width: .9em;
-}
-.icon-refresh::after {
- border: .2em solid currentColor;
- border-left-color: transparent;
- border-top-color: transparent;
- content: "";
- height: 0;
- left: 75%;
- top: 25%;
- width: 0;
-}
-.icon-search::before {
- border: .2rem solid currentColor;
- border-radius: 50%;
- content: "";
- height: .75em;
- left: 5%;
- top: 5%;
- -webkit-transform: translate(0, 0) rotate(45deg);
- -ms-transform: translate(0, 0) rotate(45deg);
- transform: translate(0, 0) rotate(45deg);
- width: .75em;
-}
-.icon-search::after {
- background: currentColor;
- content: "";
- height: .2rem;
- left: 80%;
- top: 80%;
- -webkit-transform: translate(-50%, -50%) rotate(45deg);
- -ms-transform: translate(-50%, -50%) rotate(45deg);
- transform: translate(-50%, -50%) rotate(45deg);
- width: .4em;
-}
-.icon-edit::before {
- border: .2rem solid currentColor;
- content: "";
- height: .4em;
- -webkit-transform: translate(-40%, -60%) rotate(-45deg);
- -ms-transform: translate(-40%, -60%) rotate(-45deg);
- transform: translate(-40%, -60%) rotate(-45deg);
- width: .85em;
-}
-.icon-edit::after {
- border: .15em solid currentColor;
- border-right-color: transparent;
- border-top-color: transparent;
- content: "";
- height: 0;
- left: 10%;
- top: 95%;
- -webkit-transform: translate(0, -100%);
- -ms-transform: translate(0, -100%);
- transform: translate(0, -100%);
- width: 0;
-}
-.icon-delete {
- height: .7em;
- margin: .15em .1em;
- width: .8em;
-}
-.icon-delete::before {
- border: .2rem solid currentColor;
- border-bottom-left-radius: .2rem;
- border-bottom-right-radius: .2rem;
- border-top: 0;
- content: "";
- height: .7em;
- top: 65%;
- width: .75em;
-}
-.icon-delete::after {
- background: currentColor;
- content: "";
- height: .2rem;
- top: 10%;
- width: .9em;
-}
-.icon-share {
- border: .2rem solid currentColor;
- border-radius: .2rem;
- border-right: 0;
- border-top: 0;
-}
-.icon-share::before {
- border: .2rem solid currentColor;
- border-bottom: 0;
- border-right: 0;
- content: "";
- height: .45em;
- left: 100%;
- top: 36%;
- -webkit-transform: translate(-125%, -50%) rotate(135deg);
- -ms-transform: translate(-125%, -50%) rotate(135deg);
- transform: translate(-125%, -50%) rotate(135deg);
- width: .45em;
-}
-.icon-share::after {
- border: .2rem solid currentColor;
- border-bottom: 0;
- border-radius: 75% 5%;
- border-right: 0;
- content: "";
- height: .4em;
- width: .6em;
-}
-.icon-flag::before {
- background: currentColor;
- content: "";
- height: 1em;
- left: 10%;
- width: .2rem;
-}
-.icon-flag::after {
- border: .2rem solid currentColor;
- border-bottom-right-radius: .2rem;
- border-left: 0;
- border-top-right-radius: .2rem;
- content: "";
- height: .65em;
- left: 55%;
- top: 35%;
- width: .75em;
-}
-.icon-bookmark::before {
- border: .2rem solid currentColor;
- border-bottom: 0;
- border-top-left-radius: .2rem;
- border-top-right-radius: .2rem;
- content: "";
- height: 90%;
- width: 90%;
-}
-.icon-bookmark::after {
- border: .2rem solid currentColor;
- border-bottom: 0;
- border-left: 0;
- border-radius: .2rem;
- content: "";
- height: 50%;
- -webkit-transform: translate(-50%, 35%) rotate(-45deg) skew(15deg, 15deg);
- -ms-transform: translate(-50%, 35%) rotate(-45deg) skew(15deg, 15deg);
- transform: translate(-50%, 35%) rotate(-45deg) skew(15deg, 15deg);
- width: 50%;
-}
-.icon-download,
-.icon-upload {
- border-bottom: .2rem solid currentColor;
-}
-.icon-download::before,
-.icon-upload::before {
- border: .2rem solid currentColor;
- border-bottom: 0;
- border-right: 0;
- content: "";
- height: .5em;
- -webkit-transform: translate(-50%, -60%) rotate(-135deg);
- -ms-transform: translate(-50%, -60%) rotate(-135deg);
- transform: translate(-50%, -60%) rotate(-135deg);
- width: .5em;
-}
-.icon-download::after,
-.icon-upload::after {
- background: currentColor;
- content: "";
- height: .6em;
- top: 40%;
- width: .2rem;
-}
-.icon-upload::before {
- -webkit-transform: translate(-50%, -60%) rotate(45deg);
- -ms-transform: translate(-50%, -60%) rotate(45deg);
- transform: translate(-50%, -60%) rotate(45deg);
-}
-.icon-upload::after {
- top: 50%;
-}
-.icon-time {
- border: .2rem solid currentColor;
- border-radius: 50%;
-}
-.icon-time::before {
- background: currentColor;
- content: "";
- height: .4em;
- -webkit-transform: translate(-50%, -75%);
- -ms-transform: translate(-50%, -75%);
- transform: translate(-50%, -75%);
- width: .2rem;
-}
-.icon-time::after {
- background: currentColor;
- content: "";
- height: .3em;
- -webkit-transform: translate(-50%, -75%) rotate(90deg);
- -ms-transform: translate(-50%, -75%) rotate(90deg);
- transform: translate(-50%, -75%) rotate(90deg);
- -webkit-transform-origin: 50% 90%;
- -ms-transform-origin: 50% 90%;
- transform-origin: 50% 90%;
- width: .2rem;
-}
-.icon-mail::before {
- border: .2rem solid currentColor;
- border-radius: .2rem;
- content: "";
- height: .8em;
- width: 1em;
-}
-.icon-mail::after {
- border: .2rem solid currentColor;
- border-right: 0;
- border-top: 0;
- content: "";
- height: .5em;
- -webkit-transform: translate(-50%, -90%) rotate(-45deg) skew(10deg, 10deg);
- -ms-transform: translate(-50%, -90%) rotate(-45deg) skew(10deg, 10deg);
- transform: translate(-50%, -90%) rotate(-45deg) skew(10deg, 10deg);
- width: .5em;
-}
-.icon-people::before {
- border: .2rem solid currentColor;
- border-radius: 50%;
- content: "";
- height: .45em;
- top: 25%;
- width: .45em;
-}
-.icon-people::after {
- border: .2rem solid currentColor;
- border-radius: 50% 50% 0 0;
- content: "";
- height: .4em;
- top: 75%;
- width: .9em;
-}
-.icon-file::before {
- border: .2rem solid currentColor;
- border-radius: .2rem .4em .2rem .2rem;
- content: "";
- height: 1em;
- width: .9em;
-}
-.icon-file::after {
- border: .2em solid currentColor;
- border-right-color: transparent;
- border-top-color: transparent;
- content: "";
- height: 0;
- left: .8em;
- top: .2em;
- width: 0;
-}
-.icon-link::before,
-.icon-link::after {
- border: .2rem solid currentColor;
- border-radius: 5em;
- border-right-color: transparent;
- content: "";
- height: .5em;
- width: .75em;
-}
-.icon-link::before {
- -webkit-transform: translate(-70%, -45%) rotate(-45deg);
- -ms-transform: translate(-70%, -45%) rotate(-45deg);
- transform: translate(-70%, -45%) rotate(-45deg);
-}
-.icon-link::after {
- -webkit-transform: translate(-30%, -55%) rotate(135deg);
- -ms-transform: translate(-30%, -55%) rotate(135deg);
- transform: translate(-30%, -55%) rotate(135deg);
-}
-.btn .icon,
-.toast .icon,
-.menu .icon {
- vertical-align: -10%;
-} \ No newline at end of file
diff --git a/docs/css/spectre-icons.min.css b/docs/css/spectre-icons.min.css
deleted file mode 100644
index 192bc70..0000000
--- a/docs/css/spectre-icons.min.css
+++ /dev/null
@@ -1 +0,0 @@
-/*! Spectre.css Icons | MIT License | github.com/picturepan2/spectre */.icon{box-sizing:border-box;display:inline-block;font-size:inherit;height:1em;position:relative;text-indent:-999rem;vertical-align:middle;width:1em}.icon::after,.icon::before{display:block;left:50%;position:absolute;top:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.icon-arrow-down::before,.icon-arrow-left::before,.icon-arrow-right::before,.icon-arrow-up::before,.icon-back::before,.icon-downward::before,.icon-forward::before,.icon-upward::before{border:.2rem solid currentColor;border-bottom:0;border-right:0;content:"";height:.65em;-webkit-transform:translate(-25%,-50%) rotate(-45deg);-ms-transform:translate(-25%,-50%) rotate(-45deg);transform:translate(-25%,-50%) rotate(-45deg);width:.65em}.icon-arrow-down,.icon-downward{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.icon-arrow-right,.icon-forward{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.icon-arrow-up,.icon-upward{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.icon-back::before,.icon-downward::before,.icon-forward::before,.icon-upward::before{-webkit-transform:translate(-50%,-50%) rotate(-45deg);-ms-transform:translate(-50%,-50%) rotate(-45deg);transform:translate(-50%,-50%) rotate(-45deg)}.icon-back::after,.icon-downward::after,.icon-forward::after,.icon-upward::after{background:currentColor;content:"";height:.2rem;left:55%;width:.8em}.icon-caret::before{border-left:.3em solid transparent;border-right:.3em solid transparent;border-top:.3em solid currentColor;content:"";height:0;-webkit-transform:translate(-50%,-25%);-ms-transform:translate(-50%,-25%);transform:translate(-50%,-25%);width:0}.icon-menu::before{background:currentColor;box-shadow:0 -.35em,0 .35em;content:"";height:.2rem;width:100%}.icon-apps::before{background:currentColor;box-shadow:-.35em -.35em,-.35em 0,-.35em .35em,0 -.35em,0 .35em,.35em -.35em,.35em 0,.35em .35em;content:"";height:.3rem;width:.3rem}.icon-resize-horiz::after,.icon-resize-horiz::before,.icon-resize-vert::after,.icon-resize-vert::before{border:.2rem solid currentColor;border-bottom:0;border-right:0;content:"";height:.45em;width:.45em}.icon-resize-horiz::before,.icon-resize-vert::before{-webkit-transform:translate(-50%,-90%) rotate(45deg);-ms-transform:translate(-50%,-90%) rotate(45deg);transform:translate(-50%,-90%) rotate(45deg)}.icon-resize-horiz::after,.icon-resize-vert::after{-webkit-transform:translate(-50%,-10%) rotate(225deg);-ms-transform:translate(-50%,-10%) rotate(225deg);transform:translate(-50%,-10%) rotate(225deg)}.icon-resize-horiz::before{-webkit-transform:translate(-90%,-50%) rotate(-45deg);-ms-transform:translate(-90%,-50%) rotate(-45deg);transform:translate(-90%,-50%) rotate(-45deg)}.icon-resize-horiz::after{-webkit-transform:translate(-10%,-50%) rotate(135deg);-ms-transform:translate(-10%,-50%) rotate(135deg);transform:translate(-10%,-50%) rotate(135deg)}.icon-more-horiz::before,.icon-more-vert::before{background:currentColor;border-radius:50%;box-shadow:-.4em 0,.4em 0;content:"";height:.3rem;width:.3rem}.icon-more-vert::before{box-shadow:0 -.4em,0 .4em}.icon-cross::before,.icon-minus::before,.icon-plus::before{background:currentColor;content:"";height:.2rem;width:90%}.icon-cross::after,.icon-plus::after{background:currentColor;content:"";height:90%;width:.2rem}.icon-cross::before{width:100%}.icon-cross::after{height:100%}.icon-cross::after,.icon-cross::before{-webkit-transform:translate(-50%,-50%) rotate(45deg);-ms-transform:translate(-50%,-50%) rotate(45deg);transform:translate(-50%,-50%) rotate(45deg)}.icon-check::before{border:.2rem solid currentColor;border-right:0;border-top:0;content:"";height:.5em;-webkit-transform:translate(-50%,-75%) rotate(-45deg);-ms-transform:translate(-50%,-75%) rotate(-45deg);transform:translate(-50%,-75%) rotate(-45deg);width:.9em}.icon-refresh::before{border:.2rem solid currentColor;border-radius:50%;border-right-color:transparent;content:"";height:.9em;width:.9em}.icon-refresh::after{border:.2em solid currentColor;border-left-color:transparent;border-top-color:transparent;content:"";height:0;left:75%;top:25%;width:0}.icon-search::before{border:.2rem solid currentColor;border-radius:50%;content:"";height:.75em;left:5%;top:5%;-webkit-transform:translate(0,0) rotate(45deg);-ms-transform:translate(0,0) rotate(45deg);transform:translate(0,0) rotate(45deg);width:.75em}.icon-search::after{background:currentColor;content:"";height:.2rem;left:80%;top:80%;-webkit-transform:translate(-50%,-50%) rotate(45deg);-ms-transform:translate(-50%,-50%) rotate(45deg);transform:translate(-50%,-50%) rotate(45deg);width:.4em}.icon-edit::before{border:.2rem solid currentColor;content:"";height:.4em;-webkit-transform:translate(-40%,-60%) rotate(-45deg);-ms-transform:translate(-40%,-60%) rotate(-45deg);transform:translate(-40%,-60%) rotate(-45deg);width:.85em}.icon-edit::after{border:.15em solid currentColor;border-right-color:transparent;border-top-color:transparent;content:"";height:0;left:10%;top:95%;-webkit-transform:translate(0,-100%);-ms-transform:translate(0,-100%);transform:translate(0,-100%);width:0}.icon-delete{height:.7em;margin:.15em .1em;width:.8em}.icon-delete::before{border:.2rem solid currentColor;border-bottom-left-radius:.2rem;border-bottom-right-radius:.2rem;border-top:0;content:"";height:.7em;top:65%;width:.75em}.icon-delete::after{background:currentColor;content:"";height:.2rem;top:10%;width:.9em}.icon-share{border:.2rem solid currentColor;border-radius:.2rem;border-right:0;border-top:0}.icon-share::before{border:.2rem solid currentColor;border-bottom:0;border-right:0;content:"";height:.45em;left:100%;top:36%;-webkit-transform:translate(-125%,-50%) rotate(135deg);-ms-transform:translate(-125%,-50%) rotate(135deg);transform:translate(-125%,-50%) rotate(135deg);width:.45em}.icon-share::after{border:.2rem solid currentColor;border-bottom:0;border-radius:75% 5%;border-right:0;content:"";height:.4em;width:.6em}.icon-flag::before{background:currentColor;content:"";height:1em;left:10%;width:.2rem}.icon-flag::after{border:.2rem solid currentColor;border-bottom-right-radius:.2rem;border-left:0;border-top-right-radius:.2rem;content:"";height:.65em;left:55%;top:35%;width:.75em}.icon-bookmark::before{border:.2rem solid currentColor;border-bottom:0;border-top-left-radius:.2rem;border-top-right-radius:.2rem;content:"";height:90%;width:90%}.icon-bookmark::after{border:.2rem solid currentColor;border-bottom:0;border-left:0;border-radius:.2rem;content:"";height:50%;-webkit-transform:translate(-50%,35%) rotate(-45deg) skew(15deg,15deg);-ms-transform:translate(-50%,35%) rotate(-45deg) skew(15deg,15deg);transform:translate(-50%,35%) rotate(-45deg) skew(15deg,15deg);width:50%}.icon-download,.icon-upload{border-bottom:.2rem solid currentColor}.icon-download::before,.icon-upload::before{border:.2rem solid currentColor;border-bottom:0;border-right:0;content:"";height:.5em;-webkit-transform:translate(-50%,-60%) rotate(-135deg);-ms-transform:translate(-50%,-60%) rotate(-135deg);transform:translate(-50%,-60%) rotate(-135deg);width:.5em}.icon-download::after,.icon-upload::after{background:currentColor;content:"";height:.6em;top:40%;width:.2rem}.icon-upload::before{-webkit-transform:translate(-50%,-60%) rotate(45deg);-ms-transform:translate(-50%,-60%) rotate(45deg);transform:translate(-50%,-60%) rotate(45deg)}.icon-upload::after{top:50%}.icon-time{border:.2rem solid currentColor;border-radius:50%}.icon-time::before{background:currentColor;content:"";height:.4em;-webkit-transform:translate(-50%,-75%);-ms-transform:translate(-50%,-75%);transform:translate(-50%,-75%);width:.2rem}.icon-time::after{background:currentColor;content:"";height:.3em;-webkit-transform:translate(-50%,-75%) rotate(90deg);-ms-transform:translate(-50%,-75%) rotate(90deg);transform:translate(-50%,-75%) rotate(90deg);-webkit-transform-origin:50% 90%;-ms-transform-origin:50% 90%;transform-origin:50% 90%;width:.2rem}.icon-mail::before{border:.2rem solid currentColor;border-radius:.2rem;content:"";height:.8em;width:1em}.icon-mail::after{border:.2rem solid currentColor;border-right:0;border-top:0;content:"";height:.5em;-webkit-transform:translate(-50%,-90%) rotate(-45deg) skew(10deg,10deg);-ms-transform:translate(-50%,-90%) rotate(-45deg) skew(10deg,10deg);transform:translate(-50%,-90%) rotate(-45deg) skew(10deg,10deg);width:.5em}.icon-people::before{border:.2rem solid currentColor;border-radius:50%;content:"";height:.45em;top:25%;width:.45em}.icon-people::after{border:.2rem solid currentColor;border-radius:50% 50% 0 0;content:"";height:.4em;top:75%;width:.9em}.icon-file::before{border:.2rem solid currentColor;border-radius:.2rem .4em .2rem .2rem;content:"";height:1em;width:.9em}.icon-file::after{border:.2em solid currentColor;border-right-color:transparent;border-top-color:transparent;content:"";height:0;left:.8em;top:.2em;width:0}.icon-link::after,.icon-link::before{border:.2rem solid currentColor;border-radius:5em;border-right-color:transparent;content:"";height:.5em;width:.75em}.icon-link::before{-webkit-transform:translate(-70%,-45%) rotate(-45deg);-ms-transform:translate(-70%,-45%) rotate(-45deg);transform:translate(-70%,-45%) rotate(-45deg)}.icon-link::after{-webkit-transform:translate(-30%,-55%) rotate(135deg);-ms-transform:translate(-30%,-55%) rotate(135deg);transform:translate(-30%,-55%) rotate(135deg)}.btn .icon,.menu .icon,.toast .icon{vertical-align:-10%} \ No newline at end of file
diff --git a/docs/css/spectre.css b/docs/css/spectre.css
deleted file mode 100644
index 2f74731..0000000
--- a/docs/css/spectre.css
+++ /dev/null
@@ -1,2891 +0,0 @@
-/*! Spectre.css | MIT License | github.com/picturepan2/spectre */
-/* Manually forked from Normalize.css */
-/* normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
-/**
- * 1. Change the default font family in all browsers (opinionated).
- * 2. Correct the line height in all browsers.
- * 3. Prevent adjustments of font size after orientation changes in
- * IE on Windows Phone and in iOS.
- */
-/* Document
- ========================================================================== */
-html {
- font-family: sans-serif;
- /* 1 */
- line-height: 1.15;
- /* 3 */
- -webkit-text-size-adjust: 100%;
- /* 2 */
- -ms-text-size-adjust: 100%;
- /* 3 */
-}
-/* Sections
- ========================================================================== */
-/**
- * Remove the margin in all browsers (opinionated).
- */
-body {
- margin: 0;
-}
-/**
- * Add the correct display in IE 9-.
- */
-article,
-aside,
-footer,
-header,
-nav,
-section {
- display: block;
-}
-/**
- * Correct the font size and margin on `h1` elements within `section` and
- * `article` contexts in Chrome, Firefox, and Safari.
- */
-h1 {
- font-size: 2em;
- margin: .67em 0;
-}
-/* Grouping content
- ========================================================================== */
-/**
- * Add the correct display in IE 9-.
- * 1. Add the correct display in IE.
- */
-figcaption,
-figure,
-main {
- /* 1 */
- display: block;
-}
-/**
- * Add the correct margin in IE 8 (removed).
- */
-/**
- * 1. Add the correct box sizing in Firefox.
- * 2. Show the overflow in Edge and IE.
- */
-hr {
- box-sizing: content-box;
- /* 1 */
- height: 0;
- /* 1 */
- overflow: visible;
- /* 2 */
-}
-/**
- * 1. Correct the inheritance and scaling of font size in all browsers. (removed)
- * 2. Correct the odd `em` font sizing in all browsers.
- */
-/* Text-level semantics
- ========================================================================== */
-/**
- * 1. Remove the gray background on active links in IE 10.
- * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
- */
-a {
- background-color: transparent;
- /* 1 */
- -webkit-text-decoration-skip: objects;
- /* 2 */
-}
-/**
- * Remove the outline on focused links when they are also active or hovered
- * in all browsers (opinionated).
- */
-a:active,
-a:hover {
- outline-width: 0;
-}
-/**
- * 1. Remove the bottom border in Firefox 39-.
- * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. (removed)
- */
-/**
- * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
- */
-b,
-strong {
- font-weight: inherit;
-}
-/**
- * Add the correct font weight in Chrome, Edge, and Safari.
- */
-b,
-strong {
- font-weight: bolder;
-}
-/**
- * 1. Correct the inheritance and scaling of font size in all browsers.
- * 2. Correct the odd `em` font sizing in all browsers.
- */
-code,
-kbd,
-pre,
-samp {
- font-family: monospace, monospace;
- /* 1 */
- font-size: 1em;
- /* 2 */
-}
-/**
- * Add the correct font style in Android 4.3-.
- */
-dfn {
- font-style: italic;
-}
-/**
- * Add the correct background and color in IE 9-. (Removed)
- */
-/**
- * Add the correct font size in all browsers.
- */
-small {
- font-size: 80%;
-}
-/**
- * Prevent `sub` and `sup` elements from affecting the line height in
- * all browsers.
- */
-sub,
-sup {
- font-size: 75%;
- line-height: 0;
- position: relative;
- vertical-align: baseline;
-}
-sub {
- bottom: -.25em;
-}
-sup {
- top: -.5em;
-}
-/* Embedded content
- ========================================================================== */
-/**
- * Add the correct display in IE 9-.
- */
-audio,
-video {
- display: inline-block;
-}
-/**
- * Add the correct display in iOS 4-7.
- */
-audio:not([controls]) {
- display: none;
- height: 0;
-}
-/**
- * Remove the border on images inside links in IE 10-.
- */
-img {
- border-style: none;
-}
-/**
- * Hide the overflow in IE.
- */
-svg:not(:root) {
- overflow: hidden;
-}
-/* Forms
- ========================================================================== */
-/**
- * 1. Change the font styles in all browsers (opinionated).
- * 2. Remove the margin in Firefox and Safari.
- */
-button,
-input,
-optgroup,
-select,
-textarea {
- font-family: inherit;
- /* 1 (changed) */
- font-size: inherit;
- /* 1 (changed) */
- line-height: inherit;
- /* 1 (changed) */
- margin: 0;
- /* 2 */
-}
-/**
- * Show the overflow in IE.
- * 1. Show the overflow in Edge.
- */
-button,
-input {
- /* 1 */
- overflow: visible;
-}
-/**
- * Remove the inheritance of text transform in Edge, Firefox, and IE.
- * 1. Remove the inheritance of text transform in Firefox.
- */
-button,
-select {
- /* 1 */
- text-transform: none;
-}
-/**
- * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
- * controls in Android 4.
- * 2. Correct the inability to style clickable types in iOS and Safari.
- */
-button,
-html [type="button"],
-[type="reset"],
-[type="submit"] {
- -webkit-appearance: button;
- /* 2 */
-}
-/**
- * Remove the inner border and padding in Firefox.
- */
-button::-moz-focus-inner,
-[type="button"]::-moz-focus-inner,
-[type="reset"]::-moz-focus-inner,
-[type="submit"]::-moz-focus-inner {
- border-style: none;
- padding: 0;
-}
-/**
- * Restore the focus styles unset by the previous rule (removed).
- */
-/**
- * Change the border, margin, and padding in all browsers (opinionated) (changed).
- */
-fieldset {
- border: 0;
- margin: 0;
- padding: 0;
-}
-/**
- * 1. Correct the text wrapping in Edge and IE.
- * 2. Correct the color inheritance from `fieldset` elements in IE.
- * 3. Remove the padding so developers are not caught out when they zero out
- * `fieldset` elements in all browsers.
- */
-legend {
- box-sizing: border-box;
- /* 1 */
- color: inherit;
- /* 2 */
- display: table;
- /* 1 */
- max-width: 100%;
- /* 1 */
- padding: 0;
- /* 3 */
- white-space: normal;
- /* 1 */
-}
-/**
- * 1. Add the correct display in IE 9-.
- * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
- */
-progress {
- display: inline-block;
- /* 1 */
- vertical-align: baseline;
- /* 2 */
-}
-/**
- * Remove the default vertical scrollbar in IE.
- */
-textarea {
- overflow: auto;
-}
-/**
- * 1. Add the correct box sizing in IE 10-.
- * 2. Remove the padding in IE 10-.
- */
-[type="checkbox"],
-[type="radio"] {
- box-sizing: border-box;
- /* 1 */
- padding: 0;
- /* 2 */
-}
-/**
- * Correct the cursor style of increment and decrement buttons in Chrome.
- */
-[type="number"]::-webkit-inner-spin-button,
-[type="number"]::-webkit-outer-spin-button {
- height: auto;
-}
-/**
- * 1. Correct the odd appearance in Chrome and Safari.
- * 2. Correct the outline style in Safari.
- */
-[type="search"] {
- -webkit-appearance: textfield;
- /* 1 */
- outline-offset: -2px;
- /* 2 */
-}
-/**
- * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
- */
-[type="search"]::-webkit-search-cancel-button,
-[type="search"]::-webkit-search-decoration {
- -webkit-appearance: none;
-}
-/**
- * 1. Correct the inability to style clickable types in iOS and Safari.
- * 2. Change font properties to `inherit` in Safari.
- */
-::-webkit-file-upload-button {
- -webkit-appearance: button;
- /* 1 */
- font: inherit;
- /* 2 */
-}
-/* Interactive
- ========================================================================== */
-/*
- * Add the correct display in IE 9-.
- * 1. Add the correct display in Edge, IE, and Firefox.
- */
-details,
-menu {
- display: block;
-}
-/*
- * Add the correct display in all browsers.
- */
-summary {
- display: list-item;
-}
-/* Scripting
- ========================================================================== */
-/**
- * Add the correct display in IE 9-.
- */
-canvas {
- display: inline-block;
-}
-/**
- * Add the correct display in IE.
- */
-template {
- display: none;
-}
-/* Hidden
- ========================================================================== */
-/**
- * Add the correct display in IE 10-.
- */
-[hidden] {
- display: none;
-}
-*,
-*::before,
-*::after {
- box-sizing: inherit;
-}
-html {
- box-sizing: border-box;
- font-size: 10px;
- line-height: 1.42857143;
- -webkit-tap-highlight-color: transparent;
-}
-body {
- background: #fff;
- color: #50596c;
- font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
- font-size: 1.4rem;
- overflow-x: hidden;
- text-rendering: optimizeLegibility;
-}
-a {
- color: #5764c6;
- outline: none;
- text-decoration: none;
-}
-a:focus {
- box-shadow: 0 0 0 .2rem rgba(87, 100, 198, .15);
-}
-a:focus,
-a:hover,
-a:active,
-a.active {
- color: #3b49af;
- text-decoration: underline;
-}
-h1,
-h2,
-h3,
-h4,
-h5,
-h6 {
- color: inherit;
- font-weight: 300;
- line-height: 1.2;
- margin-bottom: 1.5rem;
- margin-top: 0;
-}
-h1 {
- font-size: 5rem;
-}
-h2 {
- font-size: 4rem;
-}
-h3 {
- font-size: 3rem;
-}
-h4 {
- font-size: 2.4rem;
-}
-h5 {
- font-size: 2rem;
-}
-h6 {
- font-size: 1.6rem;
-}
-p {
- line-height: 2.4rem;
- margin: 0 0 1rem;
-}
-a,
-ins,
-u {
- -webkit-text-decoration-skip: ink edges;
- text-decoration-skip: ink edges;
-}
-blockquote {
- border-left: .2rem solid #f0f1f4;
- margin-left: 0;
- padding: 1rem 2rem;
-}
-blockquote p:last-child {
- margin-bottom: 0;
-}
-blockquote cite {
- color: #acb3c2;
-}
-ul,
-ol {
- margin: 2rem 0 2rem 2rem;
- padding: 0;
-}
-ul ul,
-ol ul,
-ul ol,
-ol ol {
- margin: 1.5rem 0 1.5rem 2rem;
-}
-ul li,
-ol li {
- margin-top: 1rem;
-}
-ul {
- list-style: disc inside;
-}
-ul ul {
- list-style-type: circle;
-}
-ol {
- list-style: decimal inside;
-}
-ol ol {
- list-style-type: lower-alpha;
-}
-dl dt {
- font-weight: bold;
-}
-dl dd {
- margin: .5rem 0 1.5rem 0;
-}
-mark {
- background: #ffe9b3;
- border-radius: .2rem;
- color: #50596c;
- display: inline-block;
- line-height: 1;
- padding: .3rem .4rem;
- vertical-align: baseline;
-}
-kbd {
- background: #454d5d;
- border-radius: .2rem;
- color: #fff;
- display: inline-block;
- line-height: 1;
- padding: .3rem .4rem;
- vertical-align: baseline;
-}
-abbr[title] {
- border-bottom: .1rem dotted;
- cursor: help;
- text-decoration: none;
-}
-:lang(zh),
-:lang(ja),
-:lang(ko),
-.cjk {
- font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Hiragino Kaku Gothic Pro", Meiryo, "Malgun Gothic", "Helvetica Neue", sans-serif;
-}
-:lang(zh) ins,
-:lang(ja) ins,
-.cjk ins,
-:lang(zh) u,
-:lang(ja) u,
-.cjk u {
- border-bottom: .1rem solid;
- text-decoration: none;
-}
-:lang(zh) del + del,
-:lang(ja) del + del,
-.cjk del + del,
-:lang(zh) del + s,
-:lang(ja) del + s,
-.cjk del + s,
-:lang(zh) ins + ins,
-:lang(ja) ins + ins,
-.cjk ins + ins,
-:lang(zh) ins + u,
-:lang(ja) ins + u,
-.cjk ins + u,
-:lang(zh) s + del,
-:lang(ja) s + del,
-.cjk s + del,
-:lang(zh) s + s,
-:lang(ja) s + s,
-.cjk s + s,
-:lang(zh) u + ins,
-:lang(ja) u + ins,
-.cjk u + ins,
-:lang(zh) u + u,
-:lang(ja) u + u,
-.cjk u + u {
- margin-left: .125em;
-}
-.table {
- border-collapse: collapse;
- border-spacing: 0;
- text-align: left;
- width: 100%;
-}
-.table.table-striped tbody tr:nth-of-type(odd) {
- background: #f8f9fa;
-}
-.table.table-hover tbody tr:hover {
- background: #f0f1f4;
-}
-.table tbody tr.active,
-.table.table-striped tbody tr.active {
- background: #f0f1f4;
-}
-.table td {
- border-bottom: .1rem solid #f0f1f4;
- padding: 1.5rem 1rem;
-}
-.table th {
- border-bottom: .2rem solid #727e96;
- padding: 1.5rem 1rem;
-}
-.btn {
- -webkit-appearance: none;
- -moz-appearance: none;
- appearance: none;
- background: #fff;
- border: .1rem solid #5764c6;
- border-radius: .2rem;
- color: #5764c6;
- cursor: pointer;
- display: inline-block;
- font-size: 1.4rem;
- height: 3.2rem;
- line-height: 2rem;
- outline: none;
- padding: .5rem .8rem;
- text-align: center;
- text-decoration: none;
- transition: all .2s ease;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- vertical-align: middle;
- white-space: nowrap;
-}
-.btn:focus {
- background: #fbfbfe;
- box-shadow: 0 0 0 .2rem rgba(87, 100, 198, .15);
- text-decoration: none;
-}
-.btn:hover {
- background: #5764c6;
- border-color: #4c59c2;
- color: #fff;
- text-decoration: none;
-}
-.btn:active,
-.btn.active {
- background: #4c59c2;
- border-color: #3e4cb6;
- color: #fff;
- text-decoration: none;
-}
-.btn[disabled],
-.btn:disabled,
-.btn.disabled {
- cursor: default;
- opacity: .5;
- pointer-events: none;
-}
-.btn.btn-primary {
- background: #5764c6;
- border-color: #4c59c2;
- color: #fff;
-}
-.btn.btn-primary:focus,
-.btn.btn-primary:hover {
- background: #4452c0;
- border-color: #3e4cb6;
- color: #fff;
-}
-.btn.btn-primary:active,
-.btn.btn-primary.active {
- background: #3f4eba;
- border-color: #3b49af;
- color: #fff;
-}
-.btn.btn-primary.loading::after {
- border-bottom-color: #fff;
- border-left-color: #fff;
-}
-.btn.btn-link {
- background: transparent;
- border-color: transparent;
- color: #5764c6;
-}
-.btn.btn-link:focus,
-.btn.btn-link:hover,
-.btn.btn-link:active,
-.btn.btn-link.active {
- color: #3b49af;
-}
-.btn.btn-sm {
- font-size: 1.2rem;
- height: 2.4rem;
- padding: .1rem .8rem;
-}
-.btn.btn-lg {
- font-size: 1.6rem;
- height: 4rem;
- padding: .9rem .8rem;
-}
-.btn.btn-block {
- display: block;
- width: 100%;
-}
-.btn.btn-action {
- padding-left: 0;
- padding-right: 0;
- width: 3.2rem;
-}
-.btn.btn-action.btn-sm {
- width: 2.4rem;
-}
-.btn.btn-action.btn-lg {
- width: 4rem;
-}
-.btn.btn-clear {
- background: transparent;
- border: 0;
- color: currentColor;
- height: 1.6rem;
- line-height: 1.6rem;
- margin: .2rem -.2rem .2rem .4rem;
- opacity: .45;
- padding: 0 .2rem;
- text-decoration: none;
- width: 1.6rem;
-}
-.btn.btn-clear:hover {
- opacity: .85;
-}
-.btn.btn-clear::before {
- content: "\2715";
-}
-.btn-group {
- display: inline-flex;
- display: -ms-inline-flexbox;
- display: -webkit-inline-flex;
- -webkit-flex-wrap: wrap;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
-}
-.btn-group .btn {
- -webkit-flex: 1 0 auto;
- -ms-flex: 1 0 auto;
- flex: 1 0 auto;
-}
-.btn-group .btn:first-child:not(:last-child) {
- border-bottom-right-radius: 0;
- border-top-right-radius: 0;
-}
-.btn-group .btn:not(:first-child):not(:last-child) {
- border-radius: 0;
- margin-left: -.1rem;
-}
-.btn-group .btn:last-child:not(:first-child) {
- border-bottom-left-radius: 0;
- border-top-left-radius: 0;
- margin-left: -.1rem;
-}
-.btn-group .btn:focus,
-.btn-group .btn:hover,
-.btn-group .btn:active,
-.btn-group .btn.active {
- z-index: 1;
-}
-.btn-group.btn-group-block {
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
-}
-.form-group:not(:last-child) {
- margin-bottom: 1rem;
-}
-.form-label {
- display: block;
- padding: .6rem 0;
-}
-.form-label.label-sm {
- padding: .2rem 0;
-}
-.form-label.label-lg {
- padding: 1rem 0;
-}
-.form-input {
- -webkit-appearance: none;
- -moz-appearance: none;
- appearance: none;
- background: #fff;
- background-image: none;
- border: .1rem solid #c4c9d3;
- border-radius: .2rem;
- color: #50596c;
- display: block;
- font-size: 1.4rem;
- height: 3.2rem;
- line-height: 2rem;
- max-width: 100%;
- outline: none;
- padding: .5rem .8rem;
- position: relative;
- transition: all .2s ease;
- width: 100%;
-}
-.form-input:focus {
- border-color: #5764c6;
- box-shadow: 0 0 0 .2rem rgba(87, 100, 198, .15);
-}
-.form-input::-webkit-input-placeholder {
- color: #acb3c2;
-}
-.form-input::-moz-placeholder {
- color: #acb3c2;
-}
-.form-input:-ms-input-placeholder {
- color: #acb3c2;
-}
-.form-input::placeholder {
- color: #acb3c2;
-}
-.form-input.input-sm {
- font-size: 1.2rem;
- height: 2.4rem;
- padding: .1rem .8rem;
-}
-.form-input.input-lg {
- font-size: 1.6rem;
- height: 4rem;
- padding: .9rem .8rem;
-}
-.form-input.input-inline {
- display: inline-block;
- vertical-align: middle;
- width: auto;
-}
-textarea.form-input {
- height: auto;
-}
-.form-input[type="file"] {
- height: auto;
-}
-.form-input-hint {
- color: #acb3c2;
- margin-top: .4rem;
-}
-.has-success .form-input-hint,
-.is-success + .form-input-hint {
- color: #32b643;
-}
-.has-danger .form-input-hint,
-.is-danger + .form-input-hint {
- color: #e85600;
-}
-.form-select {
- -webkit-appearance: none;
- -moz-appearance: none;
- appearance: none;
- border: .1rem solid #c4c9d3;
- border-radius: .2rem;
- color: inherit;
- font-size: 1.4rem;
- line-height: 2rem;
- outline: none;
- padding: .5rem .8rem;
- vertical-align: middle;
-}
-.form-select[multiple] {
- width: 100%;
-}
-.form-select[multiple] option {
- padding: .2rem .4rem;
-}
-.form-select:not([multiple]) {
- background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23667189' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center / .8rem 1rem;
- height: 3.2rem;
- padding-right: 2.4rem;
-}
-.form-select:focus {
- border-color: #5764c6;
- box-shadow: 0 0 0 .2rem rgba(87, 100, 198, .15);
-}
-.form-select::-ms-expand {
- display: none;
-}
-.form-select.select-sm {
- font-size: 1.2rem;
- height: 2.4rem;
- padding: .1rem 2rem .1rem .6rem;
-}
-.form-select.select-lg {
- font-size: 1.6rem;
- height: 4rem;
- padding: .9rem 2.4rem .9rem .8rem;
-}
-.has-success .form-input,
-.has-success .form-select,
-.form-input.is-success,
-.form-select.is-success {
- border-color: #32b643;
-}
-.has-success .form-input:focus,
-.has-success .form-select:focus,
-.form-input.is-success:focus,
-.form-select.is-success:focus {
- box-shadow: 0 0 0 .2rem rgba(50, 182, 67, .15);
-}
-.has-danger .form-input,
-.has-danger .form-select,
-.form-input.is-danger,
-.form-select.is-danger {
- border-color: #e85600;
-}
-.has-danger .form-input:focus,
-.has-danger .form-select:focus,
-.form-input.is-danger:focus,
-.form-select.is-danger:focus {
- box-shadow: 0 0 0 .2rem rgba(232, 86, 0, .15);
-}
-.form-checkbox,
-.form-radio,
-.form-switch {
- display: inline-block;
- line-height: 2rem;
- position: relative;
-}
-.form-checkbox input,
-.form-radio input,
-.form-switch input {
- clip: rect(0, 0, 0, 0);
- height: .1rem;
- margin: -.1rem;
- overflow: hidden;
- position: absolute;
- width: .1rem;
-}
-.form-checkbox input:focus + .form-icon,
-.form-radio input:focus + .form-icon,
-.form-switch input:focus + .form-icon {
- border-color: #5764c6;
- box-shadow: 0 0 0 .2rem rgba(87, 100, 198, .15);
-}
-.form-checkbox input:checked + .form-icon,
-.form-radio input:checked + .form-icon,
-.form-switch input:checked + .form-icon {
- background: #5764c6;
- border-color: #5764c6;
-}
-.form-checkbox .form-icon,
-.form-radio .form-icon,
-.form-switch .form-icon {
- border: .1rem solid #c4c9d3;
- cursor: pointer;
- display: inline-block;
- position: absolute;
- transition: all .2s ease;
-}
-.form-checkbox,
-.form-radio {
- padding: .2rem 2rem;
-}
-.form-checkbox .form-icon,
-.form-radio .form-icon {
- height: 1.4rem;
- left: 0;
- top: .5rem;
- width: 1.4rem;
-}
-.form-checkbox input:active + .form-icon,
-.form-radio input:active + .form-icon {
- background: #f0f1f4;
-}
-.form-checkbox .form-icon {
- border-radius: .2rem;
-}
-.form-checkbox input:checked + .form-icon::before {
- background-clip: padding-box;
- border: .2rem solid #fff;
- border-left-width: 0;
- border-top-width: 0;
- content: "";
- height: 1rem;
- left: 50%;
- margin-left: -.3rem;
- margin-top: -.6rem;
- position: absolute;
- top: 50%;
- -webkit-transform: rotate(45deg);
- -ms-transform: rotate(45deg);
- transform: rotate(45deg);
- width: .6rem;
-}
-.form-checkbox input:indeterminate + .form-icon {
- background: #5764c6;
- border-color: #5764c6;
-}
-.form-checkbox input:indeterminate + .form-icon::before {
- background: #fff;
- content: "";
- height: .2rem;
- left: 50%;
- margin-left: -.5rem;
- margin-top: -.1rem;
- position: absolute;
- top: 50%;
- width: 1rem;
-}
-.form-radio .form-icon {
- border-radius: .7rem;
-}
-.form-radio input:checked + .form-icon::before {
- background: #fff;
- border-radius: .2rem;
- content: "";
- height: .4rem;
- left: 50%;
- margin-left: -.2rem;
- margin-top: -.2rem;
- position: absolute;
- top: 50%;
- width: .4rem;
-}
-.form-switch {
- padding: .2rem 2rem .2rem 3.6rem;
-}
-.form-switch .form-icon {
- background: #e7e9ed;
- background-clip: padding-box;
- border-radius: .9rem;
- height: 1.8rem;
- left: 0;
- top: .3rem;
- width: 3rem;
-}
-.form-switch .form-icon::before {
- background: #fff;
- border-radius: .8rem;
- content: "";
- display: block;
- height: 1.6rem;
- left: 0;
- position: absolute;
- top: 0;
- transition: all .2s ease;
- width: 1.6rem;
-}
-.form-switch input:checked + .form-icon::before {
- left: 1.2rem;
-}
-.form-switch input:active + .form-icon::before {
- background: #f8f9fa;
-}
-.input-group {
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
-}
-.input-group .input-group-addon {
- background: #f8f9fa;
- border: .1rem solid #c4c9d3;
- border-radius: .2rem;
- line-height: 2rem;
- padding: .5rem .8rem;
-}
-.input-group .input-group-addon.addon-sm {
- font-size: 1.2rem;
- padding: .1rem .8rem;
-}
-.input-group .input-group-addon.addon-lg {
- font-size: 1.6rem;
- padding: .9rem .8rem;
-}
-.input-group .input-group-addon,
-.input-group .input-group-btn {
- -webkit-flex: 1 0 auto;
- -ms-flex: 1 0 auto;
- flex: 1 0 auto;
-}
-.input-group .form-input:first-child:not(:last-child),
-.input-group .input-group-addon:first-child:not(:last-child),
-.input-group .input-group-btn:first-child:not(:last-child) {
- border-bottom-right-radius: 0;
- border-top-right-radius: 0;
-}
-.input-group .form-input:not(:first-child):not(:last-child),
-.input-group .input-group-addon:not(:first-child):not(:last-child),
-.input-group .input-group-btn:not(:first-child):not(:last-child) {
- border-radius: 0;
- margin-left: -.1rem;
-}
-.input-group .form-input:last-child:not(:first-child),
-.input-group .input-group-addon:last-child:not(:first-child),
-.input-group .input-group-btn:last-child:not(:first-child) {
- border-bottom-left-radius: 0;
- border-top-left-radius: 0;
- margin-left: -.1rem;
-}
-.input-group .form-input:focus,
-.input-group .input-group-addon:focus,
-.input-group .input-group-btn:focus {
- z-index: 1;
-}
-.input-group.input-inline {
- display: inline-flex;
- display: -ms-inline-flexbox;
- display: -webkit-inline-flex;
-}
-.form-input:disabled,
-.form-select:disabled,
-.form-input.disabled,
-.form-select.disabled {
- background-color: #f0f1f4;
- cursor: not-allowed;
- opacity: .5;
-}
-input:disabled + .form-icon,
-input.disabled + .form-icon {
- background: #f0f1f4;
- cursor: not-allowed;
- opacity: .5;
-}
-.form-switch input:disabled + .form-icon::before,
-.form-switch input.disabled + .form-icon::before {
- background: #fff;
-}
-.form-horizontal {
- padding: 1rem;
-}
-.form-horizontal .form-group {
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
-}
-.form-horizontal .form-checkbox,
-.form-horizontal .form-radio,
-.form-horizontal .form-switch {
- margin: .4rem 0;
-}
-.label {
- background: #f8f9fa;
- border-radius: .2rem;
- color: inherit;
- display: inline-block;
- line-height: 1;
- padding: .3rem .4rem;
- vertical-align: baseline;
-}
-.label.label-primary {
- background: #5764c6;
- color: #fff;
-}
-.label.label-success {
- background: #32b643;
- color: #fff;
-}
-.label.label-warning {
- background: #ffb700;
- color: #fff;
-}
-.label.label-danger {
- background: #e85600;
- color: #fff;
-}
-code {
- background: #f8f9fa;
- border-radius: .2rem;
- color: #e06870;
- display: inline-block;
- line-height: 1;
- padding: .3rem .4rem;
- vertical-align: baseline;
-}
-.code {
- border-radius: .2rem;
- color: #50596c;
- line-height: 2rem;
- position: relative;
-}
-.code::before {
- color: #acb3c2;
- content: attr(data-lang);
- font-size: 1.2rem;
- position: absolute;
- right: 1rem;
- top: .2rem;
-}
-.code code {
- color: inherit;
- display: block;
- line-height: inherit;
- overflow-x: auto;
- padding: 2rem;
- width: 100%;
-}
-.img-responsive {
- display: block;
- height: auto;
- max-width: 100%;
-}
-.img-fit-cover {
- object-fit: cover;
-}
-.img-fit-contain {
- object-fit: contain;
-}
-.video-responsive {
- display: block;
- overflow: hidden;
- padding: 0;
- position: relative;
- width: 100%;
-}
-.video-responsive::before {
- content: "";
- display: block;
- padding-bottom: 56.25%;
-}
-.video-responsive iframe,
-.video-responsive object,
-.video-responsive embed {
- bottom: 0;
- height: 100%;
- left: 0;
- position: absolute;
- right: 0;
- top: 0;
- width: 100%;
-}
-.video-responsive video {
- height: auto;
- max-width: 100%;
- width: 100%;
-}
-.video-responsive-4-3::before {
- padding-bottom: 75%;
-}
-.video-responsive-1-1::before {
- padding-bottom: 100%;
-}
-.figure {
- margin: 0 0 1rem 0;
-}
-.figure .figure-caption {
- color: #727e96;
- margin-top: 1rem;
-}
-.container {
- margin-left: auto;
- margin-right: auto;
- padding-left: 1rem;
- padding-right: 1rem;
- width: 100%;
-}
-.container.grid-960 {
- max-width: 98rem;
-}
-.container.grid-480 {
- max-width: 50rem;
-}
-.columns {
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -webkit-flex-wrap: wrap;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- margin-left: -1rem;
- margin-right: -1rem;
-}
-.columns.col-gapless {
- margin-left: 0;
- margin-right: 0;
-}
-.columns.col-gapless .column {
- padding-left: 0;
- padding-right: 0;
-}
-.columns.col-oneline {
- -webkit-flex-wrap: nowrap;
- -ms-flex-wrap: nowrap;
- flex-wrap: nowrap;
- overflow-x: auto;
-}
-.column {
- -webkit-flex: 1;
- -ms-flex: 1;
- flex: 1;
- padding: 1rem;
-}
-.column.col-12,
-.column.col-11,
-.column.col-10,
-.column.col-9,
-.column.col-8,
-.column.col-7,
-.column.col-6,
-.column.col-5,
-.column.col-4,
-.column.col-3,
-.column.col-2,
-.column.col-1 {
- -webkit-flex: none;
- -ms-flex: none;
- flex: none;
-}
-.col-12 {
- width: 100%;
-}
-.col-11 {
- width: 91.66666667%;
-}
-.col-10 {
- width: 83.33333333%;
-}
-.col-9 {
- width: 75%;
-}
-.col-8 {
- width: 66.66666667%;
-}
-.col-7 {
- width: 58.33333333%;
-}
-.col-6 {
- width: 50%;
-}
-.col-5 {
- width: 41.66666667%;
-}
-.col-4 {
- width: 33.33333333%;
-}
-.col-3 {
- width: 25%;
-}
-.col-2 {
- width: 16.66666667%;
-}
-.col-1 {
- width: 8.33333333%;
-}
-@media screen and (max-width: 1280px) {
- .col-xl-12,
- .col-xl-11,
- .col-xl-10,
- .col-xl-9,
- .col-xl-8,
- .col-xl-7,
- .col-xl-6,
- .col-xl-5,
- .col-xl-4,
- .col-xl-3,
- .col-xl-2,
- .col-xl-1 {
- -webkit-flex: none;
- -ms-flex: none;
- flex: none;
- }
- .col-xl-12 {
- width: 100%;
- }
- .col-xl-11 {
- width: 91.66666667%;
- }
- .col-xl-10 {
- width: 83.33333333%;
- }
- .col-xl-9 {
- width: 75%;
- }
- .col-xl-8 {
- width: 66.66666667%;
- }
- .col-xl-7 {
- width: 58.33333333%;
- }
- .col-xl-6 {
- width: 50%;
- }
- .col-xl-5 {
- width: 41.66666667%;
- }
- .col-xl-4 {
- width: 33.33333333%;
- }
- .col-xl-3 {
- width: 25%;
- }
- .col-xl-2 {
- width: 16.66666667%;
- }
- .col-xl-1 {
- width: 8.33333333%;
- }
-}
-@media screen and (max-width: 960px) {
- .col-lg-12,
- .col-lg-11,
- .col-lg-10,
- .col-lg-9,
- .col-lg-8,
- .col-lg-7,
- .col-lg-6,
- .col-lg-5,
- .col-lg-4,
- .col-lg-3,
- .col-lg-2,
- .col-lg-1 {
- -webkit-flex: none;
- -ms-flex: none;
- flex: none;
- }
- .col-lg-12 {
- width: 100%;
- }
- .col-lg-11 {
- width: 91.66666667%;
- }
- .col-lg-10 {
- width: 83.33333333%;
- }
- .col-lg-9 {
- width: 75%;
- }
- .col-lg-8 {
- width: 66.66666667%;
- }
- .col-lg-7 {
- width: 58.33333333%;
- }
- .col-lg-6 {
- width: 50%;
- }
- .col-lg-5 {
- width: 41.66666667%;
- }
- .col-lg-4 {
- width: 33.33333333%;
- }
- .col-lg-3 {
- width: 25%;
- }
- .col-lg-2 {
- width: 16.66666667%;
- }
- .col-lg-1 {
- width: 8.33333333%;
- }
-}
-@media screen and (max-width: 840px) {
- .col-md-12,
- .col-md-11,
- .col-md-10,
- .col-md-9,
- .col-md-8,
- .col-md-7,
- .col-md-6,
- .col-md-5,
- .col-md-4,
- .col-md-3,
- .col-md-2,
- .col-md-1 {
- -webkit-flex: none;
- -ms-flex: none;
- flex: none;
- }
- .col-md-12 {
- width: 100%;
- }
- .col-md-11 {
- width: 91.66666667%;
- }
- .col-md-10 {
- width: 83.33333333%;
- }
- .col-md-9 {
- width: 75%;
- }
- .col-md-8 {
- width: 66.66666667%;
- }
- .col-md-7 {
- width: 58.33333333%;
- }
- .col-md-6 {
- width: 50%;
- }
- .col-md-5 {
- width: 41.66666667%;
- }
- .col-md-4 {
- width: 33.33333333%;
- }
- .col-md-3 {
- width: 25%;
- }
- .col-md-2 {
- width: 16.66666667%;
- }
- .col-md-1 {
- width: 8.33333333%;
- }
-}
-@media screen and (max-width: 600px) {
- .col-sm-12,
- .col-sm-11,
- .col-sm-10,
- .col-sm-9,
- .col-sm-8,
- .col-sm-7,
- .col-sm-6,
- .col-sm-5,
- .col-sm-4,
- .col-sm-3,
- .col-sm-2,
- .col-sm-1 {
- -webkit-flex: none;
- -ms-flex: none;
- flex: none;
- }
- .col-sm-12 {
- width: 100%;
- }
- .col-sm-11 {
- width: 91.66666667%;
- }
- .col-sm-10 {
- width: 83.33333333%;
- }
- .col-sm-9 {
- width: 75%;
- }
- .col-sm-8 {
- width: 66.66666667%;
- }
- .col-sm-7 {
- width: 58.33333333%;
- }
- .col-sm-6 {
- width: 50%;
- }
- .col-sm-5 {
- width: 41.66666667%;
- }
- .col-sm-4 {
- width: 33.33333333%;
- }
- .col-sm-3 {
- width: 25%;
- }
- .col-sm-2 {
- width: 16.66666667%;
- }
- .col-sm-1 {
- width: 8.33333333%;
- }
-}
-@media screen and (max-width: 480px) {
- .col-xs-12,
- .col-xs-11,
- .col-xs-10,
- .col-xs-9,
- .col-xs-8,
- .col-xs-7,
- .col-xs-6,
- .col-xs-5,
- .col-xs-4,
- .col-xs-3,
- .col-xs-2,
- .col-xs-1 {
- -webkit-flex: none;
- -ms-flex: none;
- flex: none;
- }
- .col-xs-12 {
- width: 100%;
- }
- .col-xs-11 {
- width: 91.66666667%;
- }
- .col-xs-10 {
- width: 83.33333333%;
- }
- .col-xs-9 {
- width: 75%;
- }
- .col-xs-8 {
- width: 66.66666667%;
- }
- .col-xs-7 {
- width: 58.33333333%;
- }
- .col-xs-6 {
- width: 50%;
- }
- .col-xs-5 {
- width: 41.66666667%;
- }
- .col-xs-4 {
- width: 33.33333333%;
- }
- .col-xs-3 {
- width: 25%;
- }
- .col-xs-2 {
- width: 16.66666667%;
- }
- .col-xs-1 {
- width: 8.33333333%;
- }
-}
-.show-xs,
-.show-sm,
-.show-md,
-.show-lg,
-.show-xl {
- display: none !important;
-}
-@media screen and (max-width: 480px) {
- .hide-xs {
- display: none !important;
- }
- .show-xs {
- display: block !important;
- }
-}
-@media screen and (max-width: 600px) {
- .hide-sm {
- display: none !important;
- }
- .show-sm {
- display: block !important;
- }
-}
-@media screen and (max-width: 840px) {
- .hide-md {
- display: none !important;
- }
- .show-md {
- display: block !important;
- }
-}
-@media screen and (max-width: 960px) {
- .hide-lg {
- display: none !important;
- }
- .show-lg {
- display: block !important;
- }
-}
-@media screen and (max-width: 1280px) {
- .hide-xl {
- display: none !important;
- }
- .show-xl {
- display: block !important;
- }
-}
-.navbar {
- -webkit-align-items: stretch;
- align-items: stretch;
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -ms-flex-align: stretch;
- -ms-flex-pack: justify;
- -webkit-flex-wrap: wrap;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- -webkit-justify-content: space-between;
- justify-content: space-between;
-}
-.navbar .navbar-section {
- -webkit-align-items: center;
- align-items: center;
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -webkit-flex: 1 0 0;
- -ms-flex: 1 0 0;
- flex: 1 0 0;
- -ms-flex-align: center;
-}
-.navbar .navbar-section:last-child {
- -ms-flex-pack: end;
- -webkit-justify-content: flex-end;
- justify-content: flex-end;
-}
-.navbar .navbar-center {
- -webkit-align-items: center;
- align-items: center;
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -webkit-flex: 0 0 auto;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- -ms-flex-align: center;
-}
-.navbar .navbar-brand {
- font-size: 1.6rem;
- font-weight: 500;
- text-decoration: none;
-}
-.panel {
- border: .1rem solid #f0f1f4;
- border-radius: .2rem;
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -webkit-flex-direction: column;
- -ms-flex-direction: column;
- flex-direction: column;
-}
-.panel .panel-header,
-.panel .panel-footer {
- -webkit-flex: 0 0 auto;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- padding: 1.5rem;
-}
-.panel .panel-nav {
- -webkit-flex: 0 0 auto;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
-}
-.panel .panel-body {
- -webkit-flex: 1 1 auto;
- -ms-flex: 1 1 auto;
- flex: 1 1 auto;
- overflow-y: auto;
- padding: 0 1.5rem;
-}
-.panel .panel-title {
- font-size: 2rem;
-}
-.panel .panel-subtitle {
- opacity: .5;
-}
-.empty {
- background: #f8f9fa;
- border-radius: .2rem;
- color: #727e96;
- padding: 4rem;
- text-align: center;
-}
-.empty .empty-title,
-.empty .empty-subtitle {
- margin: 1rem auto;
-}
-.empty .empty-subtitle {
- opacity: .5;
-}
-.empty .empty-action {
- margin-top: 1.5rem;
-}
-.form-autocomplete {
- position: relative;
-}
-.form-autocomplete .form-autocomplete-input {
- -webkit-align-content: flex-start;
- align-content: flex-start;
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -ms-flex-line-pack: start;
- -webkit-flex-wrap: wrap;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- height: auto;
- min-height: 3.2rem;
- padding: .1rem 0 0 .1rem;
-}
-.form-autocomplete .form-autocomplete-input.is-focused {
- border-color: #5764c6;
- box-shadow: 0 0 0 .2rem rgba(87, 100, 198, .15);
-}
-.form-autocomplete .form-autocomplete-input .form-input {
- border-color: transparent;
- box-shadow: none;
- display: inline-block;
- -webkit-flex: 1 0 auto;
- -ms-flex: 1 0 auto;
- flex: 1 0 auto;
- height: 2.8rem;
- padding: .3rem .8rem;
- width: auto;
-}
-.form-autocomplete mark {
- font-size: 1;
- padding: .1em 0;
-}
-.form-autocomplete .menu {
- left: 0;
- position: absolute;
- top: 100%;
- width: 100%;
-}
-.avatar {
- background: #5764c6;
- border-radius: 50%;
- color: rgba(255, 255, 255, .85);
- display: inline-block;
- font-size: 1.4rem;
- font-weight: 300;
- height: 3.2rem;
- line-height: 1;
- margin: 0;
- position: relative;
- vertical-align: middle;
- width: 3.2rem;
-}
-.avatar.avatar-xs {
- font-size: .8rem;
- height: 1.6rem;
- width: 1.6rem;
-}
-.avatar.avatar-sm {
- font-size: 1rem;
- height: 2.4rem;
- width: 2.4rem;
-}
-.avatar.avatar-lg {
- font-size: 2rem;
- height: 4.8rem;
- width: 4.8rem;
-}
-.avatar.avatar-xl {
- font-size: 2.6rem;
- height: 6.4rem;
- width: 6.4rem;
-}
-.avatar img {
- border-radius: 50%;
- height: 100%;
- position: relative;
- width: 100%;
- z-index: 100;
-}
-.avatar .avatar-icon {
- background: #fff;
- bottom: 14.64%;
- height: 50%;
- padding: .2rem;
- position: absolute;
- right: 14.64%;
- -webkit-transform: translate(50%, 50%);
- -ms-transform: translate(50%, 50%);
- transform: translate(50%, 50%);
- width: 50%;
-}
-.avatar[data-initial]::before {
- color: currentColor;
- content: attr(data-initial);
- left: 50%;
- position: absolute;
- top: 50%;
- -webkit-transform: translate(-50%, -50%);
- -ms-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
- z-index: 1;
-}
-.badge {
- position: relative;
- white-space: nowrap;
-}
-.badge[data-badge]::after,
-.badge:not([data-badge])::after {
- background: #5764c6;
- background-clip: padding-box;
- border: .1rem solid #fff;
- border-radius: 1rem;
- color: #fff;
- content: attr(data-badge);
- display: inline-block;
- -webkit-transform: translate(-.2rem, -1rem);
- -ms-transform: translate(-.2rem, -1rem);
- transform: translate(-.2rem, -1rem);
-}
-.badge[data-badge]::after {
- font-size: 1.2rem;
- height: 2rem;
- line-height: 1;
- min-width: 2rem;
- padding: .3rem .5rem;
- text-align: center;
- white-space: nowrap;
-}
-.badge:not([data-badge])::after,
-.badge[data-badge=""]::after {
- height: .8rem;
- min-width: .8rem;
- padding: 0;
- width: .8rem;
-}
-.badge.btn::after {
- position: absolute;
- right: 0;
- top: 0;
- -webkit-transform: translate(50%, -50%);
- -ms-transform: translate(50%, -50%);
- transform: translate(50%, -50%);
-}
-.badge.avatar::after {
- position: absolute;
- right: 14.64%;
- top: 14.64%;
- -webkit-transform: translate(50%, -50%);
- -ms-transform: translate(50%, -50%);
- transform: translate(50%, -50%);
- z-index: 100;
-}
-.badge.avatar-xs::after {
- content: "";
- height: .8rem;
- min-width: .8rem;
- padding: 0;
- width: .8rem;
-}
-.bar {
- background: #f0f1f4;
- border-radius: .2rem;
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -webkit-flex-wrap: nowrap;
- -ms-flex-wrap: nowrap;
- flex-wrap: nowrap;
- height: 1.6rem;
- width: 100%;
-}
-.bar.bar-sm {
- height: .4rem;
-}
-.bar .bar-item {
- background: #5764c6;
- color: #fff;
- display: block;
- -ms-flex-negative: 0;
- -webkit-flex-shrink: 0;
- flex-shrink: 0;
- font-size: 1.2rem;
- height: 100%;
- line-height: 1;
- padding: .2rem 0;
- position: relative;
- text-align: center;
- width: 0;
-}
-.bar .bar-item:first-child {
- border-bottom-left-radius: .2rem;
- border-top-left-radius: .2rem;
-}
-.bar .bar-item:last-child {
- border-bottom-right-radius: .2rem;
- border-top-right-radius: .2rem;
- -ms-flex-negative: 1;
- -webkit-flex-shrink: 1;
- flex-shrink: 1;
-}
-.bar-slider {
- height: .2rem;
- margin: 1rem 0;
- position: relative;
-}
-.bar-slider .bar-item {
- left: 0;
- padding: 0;
- position: absolute;
-}
-.bar-slider .bar-item:not(:last-child):first-child {
- background: #f0f1f4;
- z-index: 1;
-}
-.bar-slider .bar-slider-btn {
- background: #5764c6;
- border: 0;
- border-radius: 50%;
- height: 1.2rem;
- padding: 0;
- position: absolute;
- right: 0;
- top: 50%;
- -webkit-transform: translate(50%, -50%);
- -ms-transform: translate(50%, -50%);
- transform: translate(50%, -50%);
- width: 1.2rem;
-}
-.bar-slider .bar-slider-btn:active {
- box-shadow: 0 0 0 .2rem #5764c6;
-}
-.card {
- background: #fff;
- border: .1rem solid #f0f1f4;
- border-radius: .2rem;
- display: block;
-}
-.card .card-header,
-.card .card-body,
-.card .card-footer {
- padding: 1.5rem;
- padding-bottom: 0;
-}
-.card .card-header:last-child,
-.card .card-body:last-child,
-.card .card-footer:last-child {
- padding-bottom: 1.5rem;
-}
-.card .card-image {
- padding-top: 1.5rem;
-}
-.card .card-image:first-child {
- padding-top: 0;
-}
-.card .card-image:first-child img {
- border-top-left-radius: .2rem;
- border-top-right-radius: .2rem;
-}
-.card .card-image:last-child img {
- border-bottom-left-radius: .2rem;
- border-bottom-right-radius: .2rem;
-}
-.card .card-title {
- font-size: 2rem;
-}
-.card .card-subtitle {
- font-size: 1.2rem;
- opacity: .5;
-}
-.chip {
- -webkit-align-items: center;
- align-items: center;
- background: #f0f1f4;
- border-radius: .2rem;
- color: #727e96;
- display: -ms-inline-flexbox;
- display: inline-flex;
- display: -webkit-inline-flex;
- -ms-flex-align: center;
- height: 2.8rem;
- margin: 0 .1rem .1rem 0;
- max-width: 100%;
- padding: .1rem .8rem;
- text-decoration: none;
- vertical-align: middle;
-}
-.chip.active {
- background: #5764c6;
- color: #fff;
-}
-.chip .avatar {
- margin-left: -.4rem;
- margin-right: .4rem;
-}
-.dropdown {
- display: inline-block;
- position: relative;
-}
-.dropdown .menu {
- -webkit-animation: slide-down .2s ease 1;
- animation: slide-down .2s ease 1;
- display: none;
- left: 0;
- position: absolute;
- top: 100%;
-}
-.dropdown.dropdown-right .menu {
- left: auto;
- right: 0;
-}
-.dropdown.active .menu,
-.dropdown .dropdown-toggle:focus + .menu,
-.dropdown .menu:hover {
- display: block;
-}
-.menu {
- background: #fff;
- border-radius: .2rem;
- box-shadow: 0 .1rem .4rem rgba(69, 77, 93, .3);
- list-style: none;
- margin: 0;
- min-width: 18rem;
- padding: 1rem;
- -webkit-transform: translateY(.5rem);
- -ms-transform: translateY(.5rem);
- transform: translateY(.5rem);
- z-index: 100;
-}
-.menu .menu-item {
- margin-top: 0;
- padding: 0 .8rem;
- text-decoration: none;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
-}
-.menu .menu-item > a {
- border-radius: .2rem;
- color: inherit;
- display: block;
- margin: 0 -.8rem;
- padding: .6rem .8rem;
- text-decoration: none;
-}
-.menu .menu-item > a:focus,
-.menu .menu-item > a:hover {
- color: #5764c6;
-}
-.menu .menu-item > a:active,
-.menu .menu-item > a.active {
- background: #fbfbfe;
- color: #5764c6;
-}
-.menu .menu-badge {
- float: right;
- padding: .6rem 0;
-}
-.menu .menu-badge .btn {
- margin-top: -.2rem;
-}
-.modal {
- -webkit-align-items: center;
- align-items: center;
- bottom: 0;
- display: none;
- -ms-flex-align: center;
- -ms-flex-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- left: 0;
- opacity: 0;
- overflow: hidden;
- padding: 1rem;
- position: fixed;
- right: 0;
- top: 0;
-}
-.modal:target,
-.modal.active {
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- opacity: 1;
- z-index: 400;
-}
-.modal:target .modal-overlay,
-.modal.active .modal-overlay {
- background: rgba(69, 77, 93, .5);
- bottom: 0;
- cursor: default;
- display: block;
- left: 0;
- position: absolute;
- right: 0;
- top: 0;
-}
-.modal:target .modal-container,
-.modal.active .modal-container {
- -webkit-animation: slide-down .2s ease 1;
- animation: slide-down .2s ease 1;
- max-width: 64rem;
- z-index: 1;
-}
-.modal.modal-sm .modal-container {
- max-width: 32rem;
-}
-.modal-container {
- background: #fff;
- border-radius: .2rem;
- box-shadow: 0 .4rem 1rem rgba(69, 77, 93, .3);
- display: block;
- padding: 0;
- text-align: left;
-}
-.modal-container .modal-header {
- padding: 1.5rem;
-}
-.modal-container .modal-header .modal-title {
- font-size: 1.6rem;
- margin: 0;
-}
-.modal-container .modal-body {
- max-height: 50vh;
- overflow-y: auto;
- padding: 1.5rem;
- position: relative;
-}
-.modal-container .modal-footer {
- padding: 1.5rem;
- text-align: right;
-}
-.breadcrumb,
-.tab,
-.pagination,
-.nav {
- list-style: none;
- margin: .5rem 0;
-}
-.breadcrumb {
- padding: 1.2rem;
-}
-.breadcrumb .breadcrumb-item {
- display: inline-block;
- margin: 0;
-}
-.breadcrumb .breadcrumb-item:last-child {
- color: #acb3c2;
-}
-.breadcrumb .breadcrumb-item:not(:first-child)::before {
- color: #e7e9ed;
- content: "/";
- padding: 0 .4rem;
-}
-.tab {
- -webkit-align-items: center;
- align-items: center;
- border-bottom: .1rem solid #f0f1f4;
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -ms-flex-align: center;
- -webkit-flex-wrap: wrap;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
-}
-.tab .tab-item {
- margin-top: 0;
-}
-.tab .tab-item.tab-action {
- -webkit-flex: 1 0 auto;
- -ms-flex: 1 0 auto;
- flex: 1 0 auto;
- text-align: right;
-}
-.tab .tab-item a {
- border-bottom: .2rem solid transparent;
- color: inherit;
- display: block;
- margin-top: 0;
- padding: .5rem 1.2rem;
- text-decoration: none;
-}
-.tab .tab-item a:focus,
-.tab .tab-item a:hover {
- color: #5764c6;
-}
-.tab .tab-item.active a,
-.tab .tab-item a.active {
- border-bottom-color: #5764c6;
- color: #5764c6;
-}
-.tab.tab-block .tab-item {
- -webkit-flex: 1 0 0;
- -ms-flex: 1 0 0;
- flex: 1 0 0;
- text-align: center;
-}
-.tab.tab-block .tab-item .badge[data-badge]::after {
- position: absolute;
- right: -.4rem;
- top: -.4rem;
- -webkit-transform: translate(0, 0);
- -ms-transform: translate(0, 0);
- transform: translate(0, 0);
-}
-.tab:not(.tab-block) .badge {
- padding-right: 0;
-}
-.pagination {
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
-}
-.pagination .page-item {
- margin: 1rem .1rem;
-}
-.pagination .page-item span {
- display: inline-block;
- padding: .6rem .4rem;
-}
-.pagination .page-item a {
- border-radius: .2rem;
- color: #727e96;
- display: inline-block;
- padding: .6rem .8rem;
- text-decoration: none;
-}
-.pagination .page-item a:focus,
-.pagination .page-item a:hover {
- color: #5764c6;
-}
-.pagination .page-item a[disabled],
-.pagination .page-item a.disabled {
- cursor: default;
- opacity: .5;
- pointer-events: none;
-}
-.pagination .page-item.active a {
- background: #5764c6;
- color: #fff;
-}
-.pagination .page-item.page-prev,
-.pagination .page-item.page-next {
- -webkit-flex: 1 0 50%;
- -ms-flex: 1 0 50%;
- flex: 1 0 50%;
-}
-.pagination .page-item.page-next {
- text-align: right;
-}
-.pagination .page-item .page-item-title {
- margin: 0;
-}
-.pagination .page-item .page-item-subtitle {
- margin: 0;
- opacity: .5;
-}
-.nav {
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -webkit-flex-direction: column;
- -ms-flex-direction: column;
- flex-direction: column;
-}
-.nav .nav-item a {
- color: #727e96;
- padding: .6rem .8rem;
- text-decoration: none;
-}
-.nav .nav-item a:focus,
-.nav .nav-item a:hover {
- color: #5764c6;
-}
-.nav .nav-item.active > a {
- font-weight: bold;
-}
-.nav .nav-item.active > a:focus,
-.nav .nav-item.active > a:hover {
- color: #5764c6;
-}
-.nav .nav {
- margin-bottom: 1rem;
- margin-left: 2rem;
-}
-.nav .nav a {
- color: #acb3c2;
-}
-.popover {
- display: inline-block;
- position: relative;
-}
-.popover .popover-container {
- content: attr(data-tooltip);
- left: 50%;
- opacity: 0;
- padding: 1rem;
- position: absolute;
- top: 0;
- -webkit-transform: translate(-50%, -50%) scale(0);
- -ms-transform: translate(-50%, -50%) scale(0);
- transform: translate(-50%, -50%) scale(0);
- transition: transform .2s ease, -webkit-transform .2s ease;
- transition: transform .2s ease;
- transition: -webkit-transform .2s ease;
- width: 32rem;
- z-index: 400;
-}
-.popover :focus + .popover-container,
-.popover:hover .popover-container,
-.popover .popover-container:hover {
- display: block;
- opacity: 1;
- -webkit-transform: translate(-50%, -100%) scale(1);
- -ms-transform: translate(-50%, -100%) scale(1);
- transform: translate(-50%, -100%) scale(1);
-}
-.popover.popover-right .popover-container {
- left: 100%;
- top: 50%;
-}
-.popover.popover-right :focus + .popover-container,
-.popover.popover-right:hover .popover-container,
-.popover.popover-right .popover-container:hover {
- -webkit-transform: translate(0, -50%) scale(1);
- -ms-transform: translate(0, -50%) scale(1);
- transform: translate(0, -50%) scale(1);
-}
-.popover.popover-bottom .popover-container {
- left: 50%;
- top: 100%;
-}
-.popover.popover-bottom :focus + .popover-container,
-.popover.popover-bottom:hover .popover-container,
-.popover.popover-bottom .popover-container:hover {
- -webkit-transform: translate(-50%, 0) scale(1);
- -ms-transform: translate(-50%, 0) scale(1);
- transform: translate(-50%, 0) scale(1);
-}
-.popover.popover-left .popover-container {
- left: 0;
- top: 50%;
-}
-.popover.popover-left :focus + .popover-container,
-.popover.popover-left:hover .popover-container,
-.popover.popover-left .popover-container:hover {
- -webkit-transform: translate(-100%, -50%) scale(1);
- -ms-transform: translate(-100%, -50%) scale(1);
- transform: translate(-100%, -50%) scale(1);
-}
-.popover .card {
- border: 0;
- box-shadow: 0 .4rem 1rem rgba(69, 77, 93, .3);
-}
-.step {
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -webkit-flex-wrap: nowrap;
- -ms-flex-wrap: nowrap;
- flex-wrap: nowrap;
- list-style: none;
- margin: .5rem 0;
- width: 100%;
-}
-.step .step-item {
- -webkit-flex: 1 1 0;
- -ms-flex: 1 1 0;
- flex: 1 1 0;
- margin-top: 0;
- min-height: 2rem;
- position: relative;
- text-align: center;
-}
-.step .step-item:not(:first-child)::before {
- background: #5764c6;
- content: "";
- height: .2rem;
- left: -50%;
- position: absolute;
- top: .9rem;
- width: 100%;
-}
-.step .step-item a {
- color: #acb3c2;
- display: inline-block;
- padding: 2rem 1rem 0;
- text-decoration: none;
-}
-.step .step-item a::before {
- background: #5764c6;
- border: .2rem solid #fff;
- border-radius: 50%;
- content: "";
- display: block;
- height: 1.2rem;
- left: 50%;
- position: absolute;
- top: .4rem;
- -webkit-transform: translateX(-50%);
- -ms-transform: translateX(-50%);
- transform: translateX(-50%);
- width: 1.2rem;
- z-index: 1;
-}
-.step .step-item.active a::before {
- background: #fff;
- border: .2rem solid #5764c6;
-}
-.step .step-item.active ~ .step-item::before {
- background: #f0f1f4;
-}
-.step .step-item.active ~ .step-item a::before {
- background: #e7e9ed;
-}
-.tile {
- -webkit-align-content: space-between;
- align-content: space-between;
- -webkit-align-items: flex-start;
- align-items: flex-start;
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
- -ms-flex-align: start;
- -ms-flex-line-pack: justify;
-}
-.tile .tile-icon,
-.tile .tile-action {
- -webkit-flex: 0 0 auto;
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
-}
-.tile .tile-content {
- -webkit-flex: 1 1 auto;
- -ms-flex: 1 1 auto;
- flex: 1 1 auto;
-}
-.tile .tile-content:not(:first-child) {
- padding-left: 1rem;
-}
-.tile .tile-content:not(:last-child) {
- padding-right: 1rem;
-}
-.tile .tile-title {
- font-weight: 500;
-}
-.tile .tile-subtitle {
- line-height: 2rem;
- opacity: .5;
-}
-.tile.tile-centered {
- -webkit-align-items: center;
- align-items: center;
- -ms-flex-align: center;
-}
-.tile.tile-centered .tile-content {
- overflow: hidden;
-}
-.tile.tile-centered .tile-title,
-.tile.tile-centered .tile-subtitle {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
-}
-.toast {
- background: rgba(69, 77, 93, .9);
- border: .1rem solid #454d5d;
- border-color: #454d5d;
- border-radius: .2rem;
- color: #fff;
- display: block;
- padding: 1rem;
- width: 100%;
-}
-.toast.toast-primary {
- background: rgba(87, 100, 198, .9);
- border-color: #5764c6;
-}
-.toast.toast-success {
- background: rgba(50, 182, 67, .9);
- border-color: #32b643;
-}
-.toast.toast-danger {
- background: rgba(232, 86, 0, .9);
- border-color: #e85600;
-}
-.toast a {
- color: #fff;
- text-decoration: underline;
-}
-.toast a:focus,
-.toast a:hover,
-.toast a:active,
-.toast a.active {
- opacity: .75;
-}
-.tooltip {
- position: relative;
-}
-.tooltip::after {
- background: rgba(69, 77, 93, .9);
- border-radius: .2rem;
- bottom: 100%;
- color: #fff;
- content: attr(data-tooltip);
- display: block;
- font-size: 1.2rem;
- left: 50%;
- max-width: 32rem;
- opacity: 0;
- overflow: hidden;
- padding: .4rem .8rem;
- pointer-events: none;
- position: absolute;
- text-overflow: ellipsis;
- -webkit-transform: translate(-50%, 1rem);
- -ms-transform: translate(-50%, 1rem);
- transform: translate(-50%, 1rem);
- transition: all .2s ease;
- white-space: nowrap;
- z-index: 200;
-}
-.tooltip:focus::after,
-.tooltip:hover::after {
- opacity: 1;
- -webkit-transform: translate(-50%, -.5rem);
- -ms-transform: translate(-50%, -.5rem);
- transform: translate(-50%, -.5rem);
-}
-.tooltip[disabled],
-.tooltip.disabled {
- pointer-events: auto;
-}
-.tooltip.tooltip-right::after {
- bottom: 50%;
- left: 100%;
- -webkit-transform: translate(-1rem, 50%);
- -ms-transform: translate(-1rem, 50%);
- transform: translate(-1rem, 50%);
-}
-.tooltip.tooltip-right:focus::after,
-.tooltip.tooltip-right:hover::after {
- -webkit-transform: translate(.5rem, 50%);
- -ms-transform: translate(.5rem, 50%);
- transform: translate(.5rem, 50%);
-}
-.tooltip.tooltip-bottom::after {
- bottom: auto;
- top: 100%;
- -webkit-transform: translate(-50%, -1rem);
- -ms-transform: translate(-50%, -1rem);
- transform: translate(-50%, -1rem);
-}
-.tooltip.tooltip-bottom:focus::after,
-.tooltip.tooltip-bottom:hover::after {
- -webkit-transform: translate(-50%, .5rem);
- -ms-transform: translate(-50%, .5rem);
- transform: translate(-50%, .5rem);
-}
-.tooltip.tooltip-left::after {
- bottom: 50%;
- left: auto;
- right: 100%;
- -webkit-transform: translate(1rem, 50%);
- -ms-transform: translate(1rem, 50%);
- transform: translate(1rem, 50%);
-}
-.tooltip.tooltip-left:focus::after,
-.tooltip.tooltip-left:hover::after {
- -webkit-transform: translate(-.5rem, 50%);
- -ms-transform: translate(-.5rem, 50%);
- transform: translate(-.5rem, 50%);
-}
-@-webkit-keyframes loading {
- 0% {
- -webkit-transform: rotate(0deg);
- transform: rotate(0deg);
- }
- 100% {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg);
- }
-}
-@keyframes loading {
- 0% {
- -webkit-transform: rotate(0deg);
- transform: rotate(0deg);
- }
- 100% {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg);
- }
-}
-@-webkit-keyframes slide-down {
- 0% {
- opacity: 0;
- -webkit-transform: translateY(-3rem);
- transform: translateY(-3rem);
- }
- 100% {
- opacity: 1;
- -webkit-transform: translateY(0);
- transform: translateY(0);
- }
-}
-@keyframes slide-down {
- 0% {
- opacity: 0;
- -webkit-transform: translateY(-3rem);
- transform: translateY(-3rem);
- }
- 100% {
- opacity: 1;
- -webkit-transform: translateY(0);
- transform: translateY(0);
- }
-}
-.divider {
- border-top: .1rem solid #f0f1f4;
- display: block;
- height: .1rem;
- margin: 1rem 0;
- position: relative;
-}
-.divider[data-content]::before {
- background: #fff;
- color: #e7e9ed;
- content: attr(data-content);
- display: inline-block;
- font-size: 1.2rem;
- padding: 0 .8rem;
- -webkit-transform: translateY(-1.1rem);
- -ms-transform: translateY(-1.1rem);
- transform: translateY(-1.1rem);
-}
-.loading {
- color: transparent !important;
- min-height: 1.6rem;
- pointer-events: none;
- position: relative;
-}
-.loading::after {
- -webkit-animation: loading 500ms infinite linear;
- animation: loading 500ms infinite linear;
- border: .2rem solid #5764c6;
- border-radius: .8rem;
- border-right-color: transparent;
- border-top-color: transparent;
- content: "";
- display: block;
- height: 1.6rem;
- left: 50%;
- margin-left: -.8rem;
- margin-top: -.8rem;
- position: absolute;
- top: 50%;
- width: 1.6rem;
- z-index: 1;
-}
-.clearfix::after,
-.container::after {
- clear: both;
- content: "";
- display: table;
-}
-.float-left {
- float: left !important;
-}
-.float-right {
- float: right !important;
-}
-.rel {
- position: relative;
-}
-.abs {
- position: absolute;
-}
-.fixed {
- position: fixed;
-}
-.centered {
- display: block;
- float: none;
- margin-left: auto;
- margin-right: auto;
-}
-.mt-10 {
- margin-top: 1rem;
-}
-.mr-10 {
- margin-right: 1rem;
-}
-.mb-10 {
- margin-bottom: 1rem;
-}
-.ml-10 {
- margin-left: 1rem;
-}
-.mt-5 {
- margin-top: .5rem;
-}
-.mr-5 {
- margin-right: .5rem;
-}
-.mb-5 {
- margin-bottom: .5rem;
-}
-.ml-5 {
- margin-left: .5rem;
-}
-.pt-10 {
- padding-top: 1rem;
-}
-.pr-10 {
- padding-right: 1rem;
-}
-.pb-10 {
- padding-bottom: 1rem;
-}
-.pl-10 {
- padding-left: 1rem;
-}
-.pt-5 {
- padding-top: .5rem;
-}
-.pr-5 {
- padding-right: .5rem;
-}
-.pb-5 {
- padding-bottom: .5rem;
-}
-.pl-5 {
- padding-left: .5rem;
-}
-.block {
- display: block;
-}
-.inline {
- display: inline;
-}
-.inline-block {
- display: inline-block;
-}
-.flex {
- display: flex;
- display: -ms-flexbox;
- display: -webkit-flex;
-}
-.inline-flex {
- display: inline-flex;
- display: -ms-inline-flexbox;
- display: -webkit-inline-flex;
-}
-.hide {
- display: none !important;
-}
-.visible {
- visibility: visible;
-}
-.invisible {
- visibility: hidden;
-}
-.text-hide {
- background: transparent;
- border: 0;
- color: transparent;
- font-size: 0;
- line-height: 0;
- text-shadow: none;
-}
-.text-assistive {
- border: 0;
- clip: rect(0, 0, 0, 0);
- height: .1rem;
- margin: -.1rem;
- overflow: hidden;
- padding: 0;
- position: absolute;
- width: .1rem;
-}
-.text-left {
- text-align: left;
-}
-.text-right {
- text-align: right;
-}
-.text-center {
- text-align: center;
-}
-.text-justify {
- text-align: justify;
-}
-.text-lowercase {
- text-transform: lowercase;
-}
-.text-uppercase {
- text-transform: uppercase;
-}
-.text-capitalize {
- text-transform: capitalize;
-}
-.text-normal {
- font-weight: normal;
-}
-.text-bold {
- font-weight: bold;
-}
-.text-italic {
- font-style: italic;
-}
-.text-large {
- font-size: 1.2em;
-}
-.text-ellipsis {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
-}
-.text-clip {
- overflow: hidden;
- text-overflow: clip;
- white-space: nowrap;
-}
-.text-break {
- -webkit-hyphens: auto;
- -ms-hyphens: auto;
- hyphens: auto;
- word-break: break-word;
- word-wrap: break-word;
-}
-.hand {
- cursor: pointer;
-}
-.shadow-0 {
- box-shadow: 0 0 .2rem rgba(69, 77, 93, .3);
-}
-.shadow-1 {
- box-shadow: 0 .1rem .4rem rgba(69, 77, 93, .3);
-}
-.shadow-2 {
- box-shadow: 0 .2rem .6rem rgba(69, 77, 93, .3);
-}
-.shadow-3 {
- box-shadow: 0 .3rem .8rem rgba(69, 77, 93, .3);
-}
-.shadow-4 {
- box-shadow: 0 .4rem 1rem rgba(69, 77, 93, .3);
-}
-.rounded {
- border-radius: .2rem;
-}
-.circle {
- border-radius: 50%;
-} \ No newline at end of file
diff --git a/docs/css/spectre.min.css b/docs/css/spectre.min.css
deleted file mode 100644
index df7e8c7..0000000
--- a/docs/css/spectre.min.css
+++ /dev/null
@@ -1 +0,0 @@
-/*! Spectre.css | MIT License | github.com/picturepan2/spectre */html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:.67em 0}figcaption,figure,main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}b,strong{font-weight:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}dfn{font-style:italic}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}fieldset{border:0;margin:0;padding:0}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}template{display:none}[hidden]{display:none}*,::after,::before{box-sizing:inherit}html{box-sizing:border-box;font-size:10px;line-height:1.42857143;-webkit-tap-highlight-color:transparent}body{background:#fff;color:#50596c;font-family:-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",sans-serif;font-size:1.4rem;overflow-x:hidden;text-rendering:optimizeLegibility}a{color:#5764c6;outline:0;text-decoration:none}a:focus{box-shadow:0 0 0 .2rem rgba(87,100,198,.15)}a.active,a:active,a:focus,a:hover{color:#3b49af;text-decoration:underline}h1,h2,h3,h4,h5,h6{color:inherit;font-weight:300;line-height:1.2;margin-bottom:1.5rem;margin-top:0}h1{font-size:5rem}h2{font-size:4rem}h3{font-size:3rem}h4{font-size:2.4rem}h5{font-size:2rem}h6{font-size:1.6rem}p{line-height:2.4rem;margin:0 0 1rem}a,ins,u{-webkit-text-decoration-skip:ink edges;text-decoration-skip:ink edges}blockquote{border-left:.2rem solid #f0f1f4;margin-left:0;padding:1rem 2rem}blockquote p:last-child{margin-bottom:0}blockquote cite{color:#acb3c2}ol,ul{margin:2rem 0 2rem 2rem;padding:0}ol ol,ol ul,ul ol,ul ul{margin:1.5rem 0 1.5rem 2rem}ol li,ul li{margin-top:1rem}ul{list-style:disc inside}ul ul{list-style-type:circle}ol{list-style:decimal inside}ol ol{list-style-type:lower-alpha}dl dt{font-weight:700}dl dd{margin:.5rem 0 1.5rem 0}mark{background:#ffe9b3;border-radius:.2rem;color:#50596c;display:inline-block;line-height:1;padding:.3rem .4rem;vertical-align:baseline}kbd{background:#454d5d;border-radius:.2rem;color:#fff;display:inline-block;line-height:1;padding:.3rem .4rem;vertical-align:baseline}abbr[title]{border-bottom:.1rem dotted;cursor:help;text-decoration:none}.cjk,:lang(ja),:lang(ko),:lang(zh){font-family:-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Hiragino Kaku Gothic Pro",Meiryo,"Malgun Gothic","Helvetica Neue",sans-serif}.cjk ins,.cjk u,:lang(ja) ins,:lang(ja) u,:lang(zh) ins,:lang(zh) u{border-bottom:.1rem solid;text-decoration:none}.cjk del+del,.cjk del+s,.cjk ins+ins,.cjk ins+u,.cjk s+del,.cjk s+s,.cjk u+ins,.cjk u+u,:lang(ja) del+del,:lang(ja) del+s,:lang(ja) ins+ins,:lang(ja) ins+u,:lang(ja) s+del,:lang(ja) s+s,:lang(ja) u+ins,:lang(ja) u+u,:lang(zh) del+del,:lang(zh) del+s,:lang(zh) ins+ins,:lang(zh) ins+u,:lang(zh) s+del,:lang(zh) s+s,:lang(zh) u+ins,:lang(zh) u+u{margin-left:.125em}.table{border-collapse:collapse;border-spacing:0;text-align:left;width:100%}.table.table-striped tbody tr:nth-of-type(odd){background:#f8f9fa}.table.table-hover tbody tr:hover{background:#f0f1f4}.table tbody tr.active,.table.table-striped tbody tr.active{background:#f0f1f4}.table td{border-bottom:.1rem solid #f0f1f4;padding:1.5rem 1rem}.table th{border-bottom:.2rem solid #727e96;padding:1.5rem 1rem}.btn{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#fff;border:.1rem solid #5764c6;border-radius:.2rem;color:#5764c6;cursor:pointer;display:inline-block;font-size:1.4rem;height:3.2rem;line-height:2rem;outline:0;padding:.5rem .8rem;text-align:center;text-decoration:none;transition:all .2s ease;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;white-space:nowrap}.btn:focus{background:#fbfbfe;box-shadow:0 0 0 .2rem rgba(87,100,198,.15);text-decoration:none}.btn:hover{background:#5764c6;border-color:#4c59c2;color:#fff;text-decoration:none}.btn.active,.btn:active{background:#4c59c2;border-color:#3e4cb6;color:#fff;text-decoration:none}.btn.disabled,.btn:disabled,.btn[disabled]{cursor:default;opacity:.5;pointer-events:none}.btn.btn-primary{background:#5764c6;border-color:#4c59c2;color:#fff}.btn.btn-primary:focus,.btn.btn-primary:hover{background:#4452c0;border-color:#3e4cb6;color:#fff}.btn.btn-primary.active,.btn.btn-primary:active{background:#3f4eba;border-color:#3b49af;color:#fff}.btn.btn-primary.loading::after{border-bottom-color:#fff;border-left-color:#fff}.btn.btn-link{background:0 0;border-color:transparent;color:#5764c6}.btn.btn-link.active,.btn.btn-link:active,.btn.btn-link:focus,.btn.btn-link:hover{color:#3b49af}.btn.btn-sm{font-size:1.2rem;height:2.4rem;padding:.1rem .8rem}.btn.btn-lg{font-size:1.6rem;height:4rem;padding:.9rem .8rem}.btn.btn-block{display:block;width:100%}.btn.btn-action{padding-left:0;padding-right:0;width:3.2rem}.btn.btn-action.btn-sm{width:2.4rem}.btn.btn-action.btn-lg{width:4rem}.btn.btn-clear{background:0 0;border:0;color:currentColor;height:1.6rem;line-height:1.6rem;margin:.2rem -.2rem .2rem .4rem;opacity:.45;padding:0 .2rem;text-decoration:none;width:1.6rem}.btn.btn-clear:hover{opacity:.85}.btn.btn-clear::before{content:"\2715"}.btn-group{display:inline-flex;display:-ms-inline-flexbox;display:-webkit-inline-flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.btn-group .btn{-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto}.btn-group .btn:first-child:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group .btn:not(:first-child):not(:last-child){border-radius:0;margin-left:-.1rem}.btn-group .btn:last-child:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0;margin-left:-.1rem}.btn-group .btn.active,.btn-group .btn:active,.btn-group .btn:focus,.btn-group .btn:hover{z-index:1}.btn-group.btn-group-block{display:flex;display:-ms-flexbox;display:-webkit-flex}.form-group:not(:last-child){margin-bottom:1rem}.form-label{display:block;padding:.6rem 0}.form-label.label-sm{padding:.2rem 0}.form-label.label-lg{padding:1rem 0}.form-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#fff;background-image:none;border:.1rem solid #c4c9d3;border-radius:.2rem;color:#50596c;display:block;font-size:1.4rem;height:3.2rem;line-height:2rem;max-width:100%;outline:0;padding:.5rem .8rem;position:relative;transition:all .2s ease;width:100%}.form-input:focus{border-color:#5764c6;box-shadow:0 0 0 .2rem rgba(87,100,198,.15)}.form-input::-webkit-input-placeholder{color:#acb3c2}.form-input::-moz-placeholder{color:#acb3c2}.form-input:-ms-input-placeholder{color:#acb3c2}.form-input::placeholder{color:#acb3c2}.form-input.input-sm{font-size:1.2rem;height:2.4rem;padding:.1rem .8rem}.form-input.input-lg{font-size:1.6rem;height:4rem;padding:.9rem .8rem}.form-input.input-inline{display:inline-block;vertical-align:middle;width:auto}textarea.form-input{height:auto}.form-input[type=file]{height:auto}.form-input-hint{color:#acb3c2;margin-top:.4rem}.has-success .form-input-hint,.is-success+.form-input-hint{color:#32b643}.has-danger .form-input-hint,.is-danger+.form-input-hint{color:#e85600}.form-select{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:.1rem solid #c4c9d3;border-radius:.2rem;color:inherit;font-size:1.4rem;line-height:2rem;outline:0;padding:.5rem .8rem;vertical-align:middle}.form-select[multiple]{width:100%}.form-select[multiple] option{padding:.2rem .4rem}.form-select:not([multiple]){background:#fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23667189' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center/.8rem 1rem;height:3.2rem;padding-right:2.4rem}.form-select:focus{border-color:#5764c6;box-shadow:0 0 0 .2rem rgba(87,100,198,.15)}.form-select::-ms-expand{display:none}.form-select.select-sm{font-size:1.2rem;height:2.4rem;padding:.1rem 2rem .1rem .6rem}.form-select.select-lg{font-size:1.6rem;height:4rem;padding:.9rem 2.4rem .9rem .8rem}.form-input.is-success,.form-select.is-success,.has-success .form-input,.has-success .form-select{border-color:#32b643}.form-input.is-success:focus,.form-select.is-success:focus,.has-success .form-input:focus,.has-success .form-select:focus{box-shadow:0 0 0 .2rem rgba(50,182,67,.15)}.form-input.is-danger,.form-select.is-danger,.has-danger .form-input,.has-danger .form-select{border-color:#e85600}.form-input.is-danger:focus,.form-select.is-danger:focus,.has-danger .form-input:focus,.has-danger .form-select:focus{box-shadow:0 0 0 .2rem rgba(232,86,0,.15)}.form-checkbox,.form-radio,.form-switch{display:inline-block;line-height:2rem;position:relative}.form-checkbox input,.form-radio input,.form-switch input{clip:rect(0,0,0,0);height:.1rem;margin:-.1rem;overflow:hidden;position:absolute;width:.1rem}.form-checkbox input:focus+.form-icon,.form-radio input:focus+.form-icon,.form-switch input:focus+.form-icon{border-color:#5764c6;box-shadow:0 0 0 .2rem rgba(87,100,198,.15)}.form-checkbox input:checked+.form-icon,.form-radio input:checked+.form-icon,.form-switch input:checked+.form-icon{background:#5764c6;border-color:#5764c6}.form-checkbox .form-icon,.form-radio .form-icon,.form-switch .form-icon{border:.1rem solid #c4c9d3;cursor:pointer;display:inline-block;position:absolute;transition:all .2s ease}.form-checkbox,.form-radio{padding:.2rem 2rem}.form-checkbox .form-icon,.form-radio .form-icon{height:1.4rem;left:0;top:.5rem;width:1.4rem}.form-checkbox input:active+.form-icon,.form-radio input:active+.form-icon{background:#f0f1f4}.form-checkbox .form-icon{border-radius:.2rem}.form-checkbox input:checked+.form-icon::before{background-clip:padding-box;border:.2rem solid #fff;border-left-width:0;border-top-width:0;content:"";height:1rem;left:50%;margin-left:-.3rem;margin-top:-.6rem;position:absolute;top:50%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);width:.6rem}.form-checkbox input:indeterminate+.form-icon{background:#5764c6;border-color:#5764c6}.form-checkbox input:indeterminate+.form-icon::before{background:#fff;content:"";height:.2rem;left:50%;margin-left:-.5rem;margin-top:-.1rem;position:absolute;top:50%;width:1rem}.form-radio .form-icon{border-radius:.7rem}.form-radio input:checked+.form-icon::before{background:#fff;border-radius:.2rem;content:"";height:.4rem;left:50%;margin-left:-.2rem;margin-top:-.2rem;position:absolute;top:50%;width:.4rem}.form-switch{padding:.2rem 2rem .2rem 3.6rem}.form-switch .form-icon{background:#e7e9ed;background-clip:padding-box;border-radius:.9rem;height:1.8rem;left:0;top:.3rem;width:3rem}.form-switch .form-icon::before{background:#fff;border-radius:.8rem;content:"";display:block;height:1.6rem;left:0;position:absolute;top:0;transition:all .2s ease;width:1.6rem}.form-switch input:checked+.form-icon::before{left:1.2rem}.form-switch input:active+.form-icon::before{background:#f8f9fa}.input-group{display:flex;display:-ms-flexbox;display:-webkit-flex}.input-group .input-group-addon{background:#f8f9fa;border:.1rem solid #c4c9d3;border-radius:.2rem;line-height:2rem;padding:.5rem .8rem}.input-group .input-group-addon.addon-sm{font-size:1.2rem;padding:.1rem .8rem}.input-group .input-group-addon.addon-lg{font-size:1.6rem;padding:.9rem .8rem}.input-group .input-group-addon,.input-group .input-group-btn{-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto}.input-group .form-input:first-child:not(:last-child),.input-group .input-group-addon:first-child:not(:last-child),.input-group .input-group-btn:first-child:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.input-group .form-input:not(:first-child):not(:last-child),.input-group .input-group-addon:not(:first-child):not(:last-child),.input-group .input-group-btn:not(:first-child):not(:last-child){border-radius:0;margin-left:-.1rem}.input-group .form-input:last-child:not(:first-child),.input-group .input-group-addon:last-child:not(:first-child),.input-group .input-group-btn:last-child:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0;margin-left:-.1rem}.input-group .form-input:focus,.input-group .input-group-addon:focus,.input-group .input-group-btn:focus{z-index:1}.input-group.input-inline{display:inline-flex;display:-ms-inline-flexbox;display:-webkit-inline-flex}.form-input.disabled,.form-input:disabled,.form-select.disabled,.form-select:disabled{background-color:#f0f1f4;cursor:not-allowed;opacity:.5}input.disabled+.form-icon,input:disabled+.form-icon{background:#f0f1f4;cursor:not-allowed;opacity:.5}.form-switch input.disabled+.form-icon::before,.form-switch input:disabled+.form-icon::before{background:#fff}.form-horizontal{padding:1rem}.form-horizontal .form-group{display:flex;display:-ms-flexbox;display:-webkit-flex}.form-horizontal .form-checkbox,.form-horizontal .form-radio,.form-horizontal .form-switch{margin:.4rem 0}.label{background:#f8f9fa;border-radius:.2rem;color:inherit;display:inline-block;line-height:1;padding:.3rem .4rem;vertical-align:baseline}.label.label-primary{background:#5764c6;color:#fff}.label.label-success{background:#32b643;color:#fff}.label.label-warning{background:#ffb700;color:#fff}.label.label-danger{background:#e85600;color:#fff}code{background:#f8f9fa;border-radius:.2rem;color:#e06870;display:inline-block;line-height:1;padding:.3rem .4rem;vertical-align:baseline}.code{border-radius:.2rem;color:#50596c;line-height:2rem;position:relative}.code::before{color:#acb3c2;content:attr(data-lang);font-size:1.2rem;position:absolute;right:1rem;top:.2rem}.code code{color:inherit;display:block;line-height:inherit;overflow-x:auto;padding:2rem;width:100%}.img-responsive{display:block;height:auto;max-width:100%}.img-fit-cover{object-fit:cover}.img-fit-contain{object-fit:contain}.video-responsive{display:block;overflow:hidden;padding:0;position:relative;width:100%}.video-responsive::before{content:"";display:block;padding-bottom:56.25%}.video-responsive embed,.video-responsive iframe,.video-responsive object{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.video-responsive video{height:auto;max-width:100%;width:100%}.video-responsive-4-3::before{padding-bottom:75%}.video-responsive-1-1::before{padding-bottom:100%}.figure{margin:0 0 1rem 0}.figure .figure-caption{color:#727e96;margin-top:1rem}.container{margin-left:auto;margin-right:auto;padding-left:1rem;padding-right:1rem;width:100%}.container.grid-960{max-width:98rem}.container.grid-480{max-width:50rem}.columns{display:flex;display:-ms-flexbox;display:-webkit-flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-1rem;margin-right:-1rem}.columns.col-gapless{margin-left:0;margin-right:0}.columns.col-gapless .column{padding-left:0;padding-right:0}.columns.col-oneline{-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;overflow-x:auto}.column{-webkit-flex:1;-ms-flex:1;flex:1;padding:1rem}.column.col-1,.column.col-10,.column.col-11,.column.col-12,.column.col-2,.column.col-3,.column.col-4,.column.col-5,.column.col-6,.column.col-7,.column.col-8,.column.col-9{-webkit-flex:none;-ms-flex:none;flex:none}.col-12{width:100%}.col-11{width:91.66666667%}.col-10{width:83.33333333%}.col-9{width:75%}.col-8{width:66.66666667%}.col-7{width:58.33333333%}.col-6{width:50%}.col-5{width:41.66666667%}.col-4{width:33.33333333%}.col-3{width:25%}.col-2{width:16.66666667%}.col-1{width:8.33333333%}@media screen and (max-width:1280px){.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9{-webkit-flex:none;-ms-flex:none;flex:none}.col-xl-12{width:100%}.col-xl-11{width:91.66666667%}.col-xl-10{width:83.33333333%}.col-xl-9{width:75%}.col-xl-8{width:66.66666667%}.col-xl-7{width:58.33333333%}.col-xl-6{width:50%}.col-xl-5{width:41.66666667%}.col-xl-4{width:33.33333333%}.col-xl-3{width:25%}.col-xl-2{width:16.66666667%}.col-xl-1{width:8.33333333%}}@media screen and (max-width:960px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{-webkit-flex:none;-ms-flex:none;flex:none}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}}@media screen and (max-width:840px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{-webkit-flex:none;-ms-flex:none;flex:none}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}}@media screen and (max-width:600px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{-webkit-flex:none;-ms-flex:none;flex:none}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}}@media screen and (max-width:480px){.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{-webkit-flex:none;-ms-flex:none;flex:none}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}}.show-lg,.show-md,.show-sm,.show-xl,.show-xs{display:none!important}@media screen and (max-width:480px){.hide-xs{display:none!important}.show-xs{display:block!important}}@media screen and (max-width:600px){.hide-sm{display:none!important}.show-sm{display:block!important}}@media screen and (max-width:840px){.hide-md{display:none!important}.show-md{display:block!important}}@media screen and (max-width:960px){.hide-lg{display:none!important}.show-lg{display:block!important}}@media screen and (max-width:1280px){.hide-xl{display:none!important}.show-xl{display:block!important}}.navbar{-webkit-align-items:stretch;align-items:stretch;display:flex;display:-ms-flexbox;display:-webkit-flex;-ms-flex-align:stretch;-ms-flex-pack:justify;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-justify-content:space-between;justify-content:space-between}.navbar .navbar-section{-webkit-align-items:center;align-items:center;display:flex;display:-ms-flexbox;display:-webkit-flex;-webkit-flex:1 0 0;-ms-flex:1 0 0;flex:1 0 0;-ms-flex-align:center}.navbar .navbar-section:last-child{-ms-flex-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end}.navbar .navbar-center{-webkit-align-items:center;align-items:center;display:flex;display:-ms-flexbox;display:-webkit-flex;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-align:center}.navbar .navbar-brand{font-size:1.6rem;font-weight:500;text-decoration:none}.panel{border:.1rem solid #f0f1f4;border-radius:.2rem;display:flex;display:-ms-flexbox;display:-webkit-flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.panel .panel-footer,.panel .panel-header{-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;padding:1.5rem}.panel .panel-nav{-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto}.panel .panel-body{-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;overflow-y:auto;padding:0 1.5rem}.panel .panel-title{font-size:2rem}.panel .panel-subtitle{opacity:.5}.empty{background:#f8f9fa;border-radius:.2rem;color:#727e96;padding:4rem;text-align:center}.empty .empty-subtitle,.empty .empty-title{margin:1rem auto}.empty .empty-subtitle{opacity:.5}.empty .empty-action{margin-top:1.5rem}.form-autocomplete{position:relative}.form-autocomplete .form-autocomplete-input{-webkit-align-content:flex-start;align-content:flex-start;display:flex;display:-ms-flexbox;display:-webkit-flex;-ms-flex-line-pack:start;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;height:auto;min-height:3.2rem;padding:.1rem 0 0 .1rem}.form-autocomplete .form-autocomplete-input.is-focused{border-color:#5764c6;box-shadow:0 0 0 .2rem rgba(87,100,198,.15)}.form-autocomplete .form-autocomplete-input .form-input{border-color:transparent;box-shadow:none;display:inline-block;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;height:2.8rem;padding:.3rem .8rem;width:auto}.form-autocomplete mark{font-size:1;padding:.1em 0}.form-autocomplete .menu{left:0;position:absolute;top:100%;width:100%}.avatar{background:#5764c6;border-radius:50%;color:rgba(255,255,255,.85);display:inline-block;font-size:1.4rem;font-weight:300;height:3.2rem;line-height:1;margin:0;position:relative;vertical-align:middle;width:3.2rem}.avatar.avatar-xs{font-size:.8rem;height:1.6rem;width:1.6rem}.avatar.avatar-sm{font-size:1rem;height:2.4rem;width:2.4rem}.avatar.avatar-lg{font-size:2rem;height:4.8rem;width:4.8rem}.avatar.avatar-xl{font-size:2.6rem;height:6.4rem;width:6.4rem}.avatar img{border-radius:50%;height:100%;position:relative;width:100%;z-index:100}.avatar .avatar-icon{background:#fff;bottom:14.64%;height:50%;padding:.2rem;position:absolute;right:14.64%;-webkit-transform:translate(50%,50%);-ms-transform:translate(50%,50%);transform:translate(50%,50%);width:50%}.avatar[data-initial]::before{color:currentColor;content:attr(data-initial);left:50%;position:absolute;top:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);z-index:1}.badge{position:relative;white-space:nowrap}.badge:not([data-badge])::after,.badge[data-badge]::after{background:#5764c6;background-clip:padding-box;border:.1rem solid #fff;border-radius:1rem;color:#fff;content:attr(data-badge);display:inline-block;-webkit-transform:translate(-.2rem,-1rem);-ms-transform:translate(-.2rem,-1rem);transform:translate(-.2rem,-1rem)}.badge[data-badge]::after{font-size:1.2rem;height:2rem;line-height:1;min-width:2rem;padding:.3rem .5rem;text-align:center;white-space:nowrap}.badge:not([data-badge])::after,.badge[data-badge=""]::after{height:.8rem;min-width:.8rem;padding:0;width:.8rem}.badge.btn::after{position:absolute;right:0;top:0;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.badge.avatar::after{position:absolute;right:14.64%;top:14.64%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%);z-index:100}.badge.avatar-xs::after{content:"";height:.8rem;min-width:.8rem;padding:0;width:.8rem}.bar{background:#f0f1f4;border-radius:.2rem;display:flex;display:-ms-flexbox;display:-webkit-flex;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;height:1.6rem;width:100%}.bar.bar-sm{height:.4rem}.bar .bar-item{background:#5764c6;color:#fff;display:block;-ms-flex-negative:0;-webkit-flex-shrink:0;flex-shrink:0;font-size:1.2rem;height:100%;line-height:1;padding:.2rem 0;position:relative;text-align:center;width:0}.bar .bar-item:first-child{border-bottom-left-radius:.2rem;border-top-left-radius:.2rem}.bar .bar-item:last-child{border-bottom-right-radius:.2rem;border-top-right-radius:.2rem;-ms-flex-negative:1;-webkit-flex-shrink:1;flex-shrink:1}.bar-slider{height:.2rem;margin:1rem 0;position:relative}.bar-slider .bar-item{left:0;padding:0;position:absolute}.bar-slider .bar-item:not(:last-child):first-child{background:#f0f1f4;z-index:1}.bar-slider .bar-slider-btn{background:#5764c6;border:0;border-radius:50%;height:1.2rem;padding:0;position:absolute;right:0;top:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%);width:1.2rem}.bar-slider .bar-slider-btn:active{box-shadow:0 0 0 .2rem #5764c6}.card{background:#fff;border:.1rem solid #f0f1f4;border-radius:.2rem;display:block}.card .card-body,.card .card-footer,.card .card-header{padding:1.5rem;padding-bottom:0}.card .card-body:last-child,.card .card-footer:last-child,.card .card-header:last-child{padding-bottom:1.5rem}.card .card-image{padding-top:1.5rem}.card .card-image:first-child{padding-top:0}.card .card-image:first-child img{border-top-left-radius:.2rem;border-top-right-radius:.2rem}.card .card-image:last-child img{border-bottom-left-radius:.2rem;border-bottom-right-radius:.2rem}.card .card-title{font-size:2rem}.card .card-subtitle{font-size:1.2rem;opacity:.5}.chip{-webkit-align-items:center;align-items:center;background:#f0f1f4;border-radius:.2rem;color:#727e96;display:-ms-inline-flexbox;display:inline-flex;display:-webkit-inline-flex;-ms-flex-align:center;height:2.8rem;margin:0 .1rem .1rem 0;max-width:100%;padding:.1rem .8rem;text-decoration:none;vertical-align:middle}.chip.active{background:#5764c6;color:#fff}.chip .avatar{margin-left:-.4rem;margin-right:.4rem}.dropdown{display:inline-block;position:relative}.dropdown .menu{-webkit-animation:slide-down .2s ease 1;animation:slide-down .2s ease 1;display:none;left:0;position:absolute;top:100%}.dropdown.dropdown-right .menu{left:auto;right:0}.dropdown .dropdown-toggle:focus+.menu,.dropdown .menu:hover,.dropdown.active .menu{display:block}.menu{background:#fff;border-radius:.2rem;box-shadow:0 .1rem .4rem rgba(69,77,93,.3);list-style:none;margin:0;min-width:18rem;padding:1rem;-webkit-transform:translateY(.5rem);-ms-transform:translateY(.5rem);transform:translateY(.5rem);z-index:100}.menu .menu-item{margin-top:0;padding:0 .8rem;text-decoration:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.menu .menu-item>a{border-radius:.2rem;color:inherit;display:block;margin:0 -.8rem;padding:.6rem .8rem;text-decoration:none}.menu .menu-item>a:focus,.menu .menu-item>a:hover{color:#5764c6}.menu .menu-item>a.active,.menu .menu-item>a:active{background:#fbfbfe;color:#5764c6}.menu .menu-badge{float:right;padding:.6rem 0}.menu .menu-badge .btn{margin-top:-.2rem}.modal{-webkit-align-items:center;align-items:center;bottom:0;display:none;-ms-flex-align:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;left:0;opacity:0;overflow:hidden;padding:1rem;position:fixed;right:0;top:0}.modal.active,.modal:target{display:flex;display:-ms-flexbox;display:-webkit-flex;opacity:1;z-index:400}.modal.active .modal-overlay,.modal:target .modal-overlay{background:rgba(69,77,93,.5);bottom:0;cursor:default;display:block;left:0;position:absolute;right:0;top:0}.modal.active .modal-container,.modal:target .modal-container{-webkit-animation:slide-down .2s ease 1;animation:slide-down .2s ease 1;max-width:64rem;z-index:1}.modal.modal-sm .modal-container{max-width:32rem}.modal-container{background:#fff;border-radius:.2rem;box-shadow:0 .4rem 1rem rgba(69,77,93,.3);display:block;padding:0;text-align:left}.modal-container .modal-header{padding:1.5rem}.modal-container .modal-header .modal-title{font-size:1.6rem;margin:0}.modal-container .modal-body{max-height:50vh;overflow-y:auto;padding:1.5rem;position:relative}.modal-container .modal-footer{padding:1.5rem;text-align:right}.breadcrumb,.nav,.pagination,.tab{list-style:none;margin:.5rem 0}.breadcrumb{padding:1.2rem}.breadcrumb .breadcrumb-item{display:inline-block;margin:0}.breadcrumb .breadcrumb-item:last-child{color:#acb3c2}.breadcrumb .breadcrumb-item:not(:first-child)::before{color:#e7e9ed;content:"/";padding:0 .4rem}.tab{-webkit-align-items:center;align-items:center;border-bottom:.1rem solid #f0f1f4;display:flex;display:-ms-flexbox;display:-webkit-flex;-ms-flex-align:center;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.tab .tab-item{margin-top:0}.tab .tab-item.tab-action{-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;text-align:right}.tab .tab-item a{border-bottom:.2rem solid transparent;color:inherit;display:block;margin-top:0;padding:.5rem 1.2rem;text-decoration:none}.tab .tab-item a:focus,.tab .tab-item a:hover{color:#5764c6}.tab .tab-item a.active,.tab .tab-item.active a{border-bottom-color:#5764c6;color:#5764c6}.tab.tab-block .tab-item{-webkit-flex:1 0 0;-ms-flex:1 0 0;flex:1 0 0;text-align:center}.tab.tab-block .tab-item .badge[data-badge]::after{position:absolute;right:-.4rem;top:-.4rem;-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.tab:not(.tab-block) .badge{padding-right:0}.pagination{display:flex;display:-ms-flexbox;display:-webkit-flex}.pagination .page-item{margin:1rem .1rem}.pagination .page-item span{display:inline-block;padding:.6rem .4rem}.pagination .page-item a{border-radius:.2rem;color:#727e96;display:inline-block;padding:.6rem .8rem;text-decoration:none}.pagination .page-item a:focus,.pagination .page-item a:hover{color:#5764c6}.pagination .page-item a.disabled,.pagination .page-item a[disabled]{cursor:default;opacity:.5;pointer-events:none}.pagination .page-item.active a{background:#5764c6;color:#fff}.pagination .page-item.page-next,.pagination .page-item.page-prev{-webkit-flex:1 0 50%;-ms-flex:1 0 50%;flex:1 0 50%}.pagination .page-item.page-next{text-align:right}.pagination .page-item .page-item-title{margin:0}.pagination .page-item .page-item-subtitle{margin:0;opacity:.5}.nav{display:flex;display:-ms-flexbox;display:-webkit-flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.nav .nav-item a{color:#727e96;padding:.6rem .8rem;text-decoration:none}.nav .nav-item a:focus,.nav .nav-item a:hover{color:#5764c6}.nav .nav-item.active>a{font-weight:700}.nav .nav-item.active>a:focus,.nav .nav-item.active>a:hover{color:#5764c6}.nav .nav{margin-bottom:1rem;margin-left:2rem}.nav .nav a{color:#acb3c2}.popover{display:inline-block;position:relative}.popover .popover-container{content:attr(data-tooltip);left:50%;opacity:0;padding:1rem;position:absolute;top:0;-webkit-transform:translate(-50%,-50%) scale(0);-ms-transform:translate(-50%,-50%) scale(0);transform:translate(-50%,-50%) scale(0);transition:transform .2s ease,-webkit-transform .2s ease;transition:transform .2s ease;transition:-webkit-transform .2s ease;width:32rem;z-index:400}.popover .popover-container:hover,.popover :focus+.popover-container,.popover:hover .popover-container{display:block;opacity:1;-webkit-transform:translate(-50%,-100%) scale(1);-ms-transform:translate(-50%,-100%) scale(1);transform:translate(-50%,-100%) scale(1)}.popover.popover-right .popover-container{left:100%;top:50%}.popover.popover-right .popover-container:hover,.popover.popover-right :focus+.popover-container,.popover.popover-right:hover .popover-container{-webkit-transform:translate(0,-50%) scale(1);-ms-transform:translate(0,-50%) scale(1);transform:translate(0,-50%) scale(1)}.popover.popover-bottom .popover-container{left:50%;top:100%}.popover.popover-bottom .popover-container:hover,.popover.popover-bottom :focus+.popover-container,.popover.popover-bottom:hover .popover-container{-webkit-transform:translate(-50%,0) scale(1);-ms-transform:translate(-50%,0) scale(1);transform:translate(-50%,0) scale(1)}.popover.popover-left .popover-container{left:0;top:50%}.popover.popover-left .popover-container:hover,.popover.popover-left :focus+.popover-container,.popover.popover-left:hover .popover-container{-webkit-transform:translate(-100%,-50%) scale(1);-ms-transform:translate(-100%,-50%) scale(1);transform:translate(-100%,-50%) scale(1)}.popover .card{border:0;box-shadow:0 .4rem 1rem rgba(69,77,93,.3)}.step{display:flex;display:-ms-flexbox;display:-webkit-flex;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;list-style:none;margin:.5rem 0;width:100%}.step .step-item{-webkit-flex:1 1 0;-ms-flex:1 1 0;flex:1 1 0;margin-top:0;min-height:2rem;position:relative;text-align:center}.step .step-item:not(:first-child)::before{background:#5764c6;content:"";height:.2rem;left:-50%;position:absolute;top:.9rem;width:100%}.step .step-item a{color:#acb3c2;display:inline-block;padding:2rem 1rem 0;text-decoration:none}.step .step-item a::before{background:#5764c6;border:.2rem solid #fff;border-radius:50%;content:"";display:block;height:1.2rem;left:50%;position:absolute;top:.4rem;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:1.2rem;z-index:1}.step .step-item.active a::before{background:#fff;border:.2rem solid #5764c6}.step .step-item.active~.step-item::before{background:#f0f1f4}.step .step-item.active~.step-item a::before{background:#e7e9ed}.tile{-webkit-align-content:space-between;align-content:space-between;-webkit-align-items:flex-start;align-items:flex-start;display:flex;display:-ms-flexbox;display:-webkit-flex;-ms-flex-align:start;-ms-flex-line-pack:justify}.tile .tile-action,.tile .tile-icon{-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto}.tile .tile-content{-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto}.tile .tile-content:not(:first-child){padding-left:1rem}.tile .tile-content:not(:last-child){padding-right:1rem}.tile .tile-title{font-weight:500}.tile .tile-subtitle{line-height:2rem;opacity:.5}.tile.tile-centered{-webkit-align-items:center;align-items:center;-ms-flex-align:center}.tile.tile-centered .tile-content{overflow:hidden}.tile.tile-centered .tile-subtitle,.tile.tile-centered .tile-title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.toast{background:rgba(69,77,93,.9);border:.1rem solid #454d5d;border-color:#454d5d;border-radius:.2rem;color:#fff;display:block;padding:1rem;width:100%}.toast.toast-primary{background:rgba(87,100,198,.9);border-color:#5764c6}.toast.toast-success{background:rgba(50,182,67,.9);border-color:#32b643}.toast.toast-danger{background:rgba(232,86,0,.9);border-color:#e85600}.toast a{color:#fff;text-decoration:underline}.toast a.active,.toast a:active,.toast a:focus,.toast a:hover{opacity:.75}.tooltip{position:relative}.tooltip::after{background:rgba(69,77,93,.9);border-radius:.2rem;bottom:100%;color:#fff;content:attr(data-tooltip);display:block;font-size:1.2rem;left:50%;max-width:32rem;opacity:0;overflow:hidden;padding:.4rem .8rem;pointer-events:none;position:absolute;text-overflow:ellipsis;-webkit-transform:translate(-50%,1rem);-ms-transform:translate(-50%,1rem);transform:translate(-50%,1rem);transition:all .2s ease;white-space:nowrap;z-index:200}.tooltip:focus::after,.tooltip:hover::after{opacity:1;-webkit-transform:translate(-50%,-.5rem);-ms-transform:translate(-50%,-.5rem);transform:translate(-50%,-.5rem)}.tooltip.disabled,.tooltip[disabled]{pointer-events:auto}.tooltip.tooltip-right::after{bottom:50%;left:100%;-webkit-transform:translate(-1rem,50%);-ms-transform:translate(-1rem,50%);transform:translate(-1rem,50%)}.tooltip.tooltip-right:focus::after,.tooltip.tooltip-right:hover::after{-webkit-transform:translate(.5rem,50%);-ms-transform:translate(.5rem,50%);transform:translate(.5rem,50%)}.tooltip.tooltip-bottom::after{bottom:auto;top:100%;-webkit-transform:translate(-50%,-1rem);-ms-transform:translate(-50%,-1rem);transform:translate(-50%,-1rem)}.tooltip.tooltip-bottom:focus::after,.tooltip.tooltip-bottom:hover::after{-webkit-transform:translate(-50%,.5rem);-ms-transform:translate(-50%,.5rem);transform:translate(-50%,.5rem)}.tooltip.tooltip-left::after{bottom:50%;left:auto;right:100%;-webkit-transform:translate(1rem,50%);-ms-transform:translate(1rem,50%);transform:translate(1rem,50%)}.tooltip.tooltip-left:focus::after,.tooltip.tooltip-left:hover::after{-webkit-transform:translate(-.5rem,50%);-ms-transform:translate(-.5rem,50%);transform:translate(-.5rem,50%)}@-webkit-keyframes loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes slide-down{0%{opacity:0;-webkit-transform:translateY(-3rem);transform:translateY(-3rem)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes slide-down{0%{opacity:0;-webkit-transform:translateY(-3rem);transform:translateY(-3rem)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}.divider{border-top:.1rem solid #f0f1f4;display:block;height:.1rem;margin:1rem 0;position:relative}.divider[data-content]::before{background:#fff;color:#e7e9ed;content:attr(data-content);display:inline-block;font-size:1.2rem;padding:0 .8rem;-webkit-transform:translateY(-1.1rem);-ms-transform:translateY(-1.1rem);transform:translateY(-1.1rem)}.loading{color:transparent!important;min-height:1.6rem;pointer-events:none;position:relative}.loading::after{-webkit-animation:loading .5s infinite linear;animation:loading .5s infinite linear;border:.2rem solid #5764c6;border-radius:.8rem;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:1.6rem;left:50%;margin-left:-.8rem;margin-top:-.8rem;position:absolute;top:50%;width:1.6rem;z-index:1}.clearfix::after,.container::after{clear:both;content:"";display:table}.float-left{float:left!important}.float-right{float:right!important}.rel{position:relative}.abs{position:absolute}.fixed{position:fixed}.centered{display:block;float:none;margin-left:auto;margin-right:auto}.mt-10{margin-top:1rem}.mr-10{margin-right:1rem}.mb-10{margin-bottom:1rem}.ml-10{margin-left:1rem}.mt-5{margin-top:.5rem}.mr-5{margin-right:.5rem}.mb-5{margin-bottom:.5rem}.ml-5{margin-left:.5rem}.pt-10{padding-top:1rem}.pr-10{padding-right:1rem}.pb-10{padding-bottom:1rem}.pl-10{padding-left:1rem}.pt-5{padding-top:.5rem}.pr-5{padding-right:.5rem}.pb-5{padding-bottom:.5rem}.pl-5{padding-left:.5rem}.block{display:block}.inline{display:inline}.inline-block{display:inline-block}.flex{display:flex;display:-ms-flexbox;display:-webkit-flex}.inline-flex{display:inline-flex;display:-ms-inline-flexbox;display:-webkit-inline-flex}.hide{display:none!important}.visible{visibility:visible}.invisible{visibility:hidden}.text-hide{background:0 0;border:0;color:transparent;font-size:0;line-height:0;text-shadow:none}.text-assistive{border:0;clip:rect(0,0,0,0);height:.1rem;margin:-.1rem;overflow:hidden;padding:0;position:absolute;width:.1rem}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-normal{font-weight:400}.text-bold{font-weight:700}.text-italic{font-style:italic}.text-large{font-size:1.2em}.text-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-clip{overflow:hidden;text-overflow:clip;white-space:nowrap}.text-break{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-break:break-word;word-wrap:break-word}.hand{cursor:pointer}.shadow-0{box-shadow:0 0 .2rem rgba(69,77,93,.3)}.shadow-1{box-shadow:0 .1rem .4rem rgba(69,77,93,.3)}.shadow-2{box-shadow:0 .2rem .6rem rgba(69,77,93,.3)}.shadow-3{box-shadow:0 .3rem .8rem rgba(69,77,93,.3)}.shadow-4{box-shadow:0 .4rem 1rem rgba(69,77,93,.3)}.rounded{border-radius:.2rem}.circle{border-radius:50%} \ No newline at end of file
diff --git a/docs/elements.html b/docs/elements.html
index b673be5..8dc1130 100644
--- a/docs/elements.html
+++ b/docs/elements.html
@@ -7,8 +7,8 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="author" content="https://github.com/picturepan2/" />
<title>Elements - Spectre.css</title>
- <link rel="stylesheet" href="css/spectre.css" />
- <link rel="stylesheet" href="css/spectre-icons.css" />
+ <link rel="stylesheet" href="dist/spectre.css" />
+ <link rel="stylesheet" href="dist/spectre-icons.css" />
<link rel="stylesheet" href="css/docs.css" />
</head>
<body>
diff --git a/docs/experimentals.html b/docs/experimentals.html
index 7909e76..590621f 100644
--- a/docs/experimentals.html
+++ b/docs/experimentals.html
@@ -7,9 +7,9 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="author" content="https://github.com/picturepan2/" />
<title>Experimentals - Spectre.css</title>
- <link rel="stylesheet" href="css/spectre.css" />
- <link rel="stylesheet" href="css/spectre-exp.css" />
- <link rel="stylesheet" href="css/spectre-icons.css" />
+ <link rel="stylesheet" href="dist/spectre.css" />
+ <link rel="stylesheet" href="dist/spectre-exp.css" />
+ <link rel="stylesheet" href="dist/spectre-icons.css" />
<link rel="stylesheet" href="css/docs.css" />
</head>
<body>
diff --git a/docs/font/Read Me.txt b/docs/font/Read Me.txt
deleted file mode 100755
index 8491652..0000000
--- a/docs/font/Read Me.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-Open *demo.html* to see a list of all the glyphs in your font along with their codes/ligatures.
-
-To use the generated font in desktop programs, you can install the TTF font. In order to copy the character associated with each icon, refer to the text box at the bottom right corner of each glyph in demo.html. The character inside this text box may be invisible; but it can still be copied. See this guide for more info: https://icomoon.io/#docs/local-fonts
-
-You won't need any of the files located under the *demo-files* directory when including the generated font in your own projects.
-
-You can import *selection.json* back to the IcoMoon app using the *Import Icons* button (or via Main Menu → Manage Projects) to retrieve your icon selection.
diff --git a/docs/font/demo-files/demo.css b/docs/font/demo-files/demo.css
deleted file mode 100755
index 2fbea0e..0000000
--- a/docs/font/demo-files/demo.css
+++ /dev/null
@@ -1,152 +0,0 @@
-body {
- padding: 0;
- margin: 0;
- font-family: sans-serif;
- font-size: 1em;
- line-height: 1.5;
- color: #555;
- background: #fff;
-}
-h1 {
- font-size: 1.5em;
- font-weight: normal;
-}
-small {
- font-size: .66666667em;
-}
-a {
- color: #e74c3c;
- text-decoration: none;
-}
-a:hover, a:focus {
- box-shadow: 0 1px #e74c3c;
-}
-.bshadow0, input {
- box-shadow: inset 0 -2px #e7e7e7;
-}
-input:hover {
- box-shadow: inset 0 -2px #ccc;
-}
-input, fieldset {
- font-family: sans-serif;
- font-size: 1em;
- margin: 0;
- padding: 0;
- border: 0;
-}
-input {
- color: inherit;
- line-height: 1.5;
- height: 1.5em;
- padding: .25em 0;
-}
-input:focus {
- outline: none;
- box-shadow: inset 0 -2px #449fdb;
-}
-.glyph {
- font-size: 16px;
- width: 15em;
- padding-bottom: 1em;
- margin-right: 4em;
- margin-bottom: 1em;
- float: left;
- overflow: hidden;
-}
-.liga {
- width: 80%;
- width: calc(100% - 2.5em);
-}
-.talign-right {
- text-align: right;
-}
-.talign-center {
- text-align: center;
-}
-.bgc1 {
- background: #f1f1f1;
-}
-.fgc1 {
- color: #999;
-}
-.fgc0 {
- color: #000;
-}
-p {
- margin-top: 1em;
- margin-bottom: 1em;
-}
-.mvm {
- margin-top: .75em;
- margin-bottom: .75em;
-}
-.mtn {
- margin-top: 0;
-}
-.mtl, .mal {
- margin-top: 1.5em;
-}
-.mbl, .mal {
- margin-bottom: 1.5em;
-}
-.mal, .mhl {
- margin-left: 1.5em;
- margin-right: 1.5em;
-}
-.mhmm {
- margin-left: 1em;
- margin-right: 1em;
-}
-.mls {
- margin-left: .25em;
-}
-.ptl {
- padding-top: 1.5em;
-}
-.pbs, .pvs {
- padding-bottom: .25em;
-}
-.pvs, .pts {
- padding-top: .25em;
-}
-.unit {
- float: left;
-}
-.unitRight {
- float: right;
-}
-.size1of2 {
- width: 50%;
-}
-.size1of1 {
- width: 100%;
-}
-.clearfix:before, .clearfix:after {
- content: " ";
- display: table;
-}
-.clearfix:after {
- clear: both;
-}
-.hidden-true {
- display: none;
-}
-.textbox0 {
- width: 3em;
- background: #f1f1f1;
- padding: .25em .5em;
- line-height: 1.5;
- height: 1.5em;
-}
-#testDrive {
- display: block;
- padding-top: 24px;
- line-height: 1.5;
-}
-.fs0 {
- font-size: 16px;
-}
-.fs1 {
- font-size: 24px;
-}
-
diff --git a/docs/font/demo.html b/docs/font/demo.html
deleted file mode 100755
index cc94e59..0000000
--- a/docs/font/demo.html
+++ /dev/null
@@ -1,13558 +0,0 @@
-<!doctype html>
-<html>
-<head>
- <meta charset="utf-8">
- <title>IcoMoon Demo</title>
- <meta name="description" content="An Icon Font Generated By IcoMoon.io">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <link rel="stylesheet" href="demo-files/demo.css">
- <link rel="stylesheet" href="style.css"></head>
-<body>
- <div class="bgc1 clearfix">
- <h1 class="mhmm mvm"><span class="fgc1">Font Name:</span> icomoon <small class="fgc1">(Glyphs:&nbsp;845)</small></h1>
- </div>
- <div class="clearfix mhl ptl">
- <h1 class="mvm mtn fgc1">Grid Size: 24</h1>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-d_rotation">
-
- </span>
- <span class="mls"> icon-d_rotation</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e84d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe84d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="3d_rotation" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-ac_unit">
-
- </span>
- <span class="mls"> icon-ac_unit</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="eb3b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xeb3b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="ac_unit" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-alarm">
-
- </span>
- <span class="mls"> icon-alarm</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e855" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe855;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="access_alarm, alarm" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-access_alarms">
-
- </span>
- <span class="mls"> icon-access_alarms</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e191" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe191;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="access_alarms" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-schedule">
-
- </span>
- <span class="mls"> icon-schedule</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8b5" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8b5;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="access_time, query_builder, schedule" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-accessibility">
-
- </span>
- <span class="mls"> icon-accessibility</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e84e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe84e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="accessibility" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-accessible">
-
- </span>
- <span class="mls"> icon-accessible</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e914" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe914;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="accessible" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-account_balance">
-
- </span>
- <span class="mls"> icon-account_balance</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e84f" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe84f;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="account_balance" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-account_balance_wallet">
-
- </span>
- <span class="mls"> icon-account_balance_wallet</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e850" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe850;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="account_balance_wallet" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-account_box">
-
- </span>
- <span class="mls"> icon-account_box</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e851" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe851;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="account_box" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-account_circle">
-
- </span>
- <span class="mls"> icon-account_circle</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e853" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe853;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="account_circle" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-adb">
-
- </span>
- <span class="mls"> icon-adb</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e60e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe60e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="adb" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-add">
-
- </span>
- <span class="mls"> icon-add</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e145" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe145;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="add" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-add_a_photo">
-
- </span>
- <span class="mls"> icon-add_a_photo</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e439" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe439;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="add_a_photo" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-alarm_add">
-
- </span>
- <span class="mls"> icon-alarm_add</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e856" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe856;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="add_alarm, alarm_add" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-add_alert">
-
- </span>
- <span class="mls"> icon-add_alert</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e003" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe003;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="add_alert" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-add_box">
-
- </span>
- <span class="mls"> icon-add_box</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e146" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe146;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="add_box" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-add_circle">
-
- </span>
- <span class="mls"> icon-add_circle</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e147" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe147;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="add_circle" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-control_point">
-
- </span>
- <span class="mls"> icon-control_point</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3ba" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3ba;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="add_circle_outline, control_point" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-add_location">
-
- </span>
- <span class="mls"> icon-add_location</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e567" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe567;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="add_location" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-add_shopping_cart">
-
- </span>
- <span class="mls"> icon-add_shopping_cart</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e854" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe854;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="add_shopping_cart" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-queue">
-
- </span>
- <span class="mls"> icon-queue</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e03c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe03c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="add_to_photos, library_add, queue" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-add_to_queue">
-
- </span>
- <span class="mls"> icon-add_to_queue</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e05c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe05c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="add_to_queue" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-adjust">
-
- </span>
- <span class="mls"> icon-adjust</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e39e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe39e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="adjust" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-airline_seat_flat">
-
- </span>
- <span class="mls"> icon-airline_seat_flat</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e630" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe630;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="airline_seat_flat" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-airline_seat_flat_angled">
-
- </span>
- <span class="mls"> icon-airline_seat_flat_angled</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e631" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe631;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="airline_seat_flat_angled" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-airline_seat_individual_suite">
-
- </span>
- <span class="mls"> icon-airline_seat_individual_suite</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e632" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe632;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="airline_seat_individual_suite" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-airline_seat_legroom_extra">
-
- </span>
- <span class="mls"> icon-airline_seat_legroom_extra</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e633" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe633;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="airline_seat_legroom_extra" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-airline_seat_legroom_normal">
-
- </span>
- <span class="mls"> icon-airline_seat_legroom_normal</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e634" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe634;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="airline_seat_legroom_normal" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-airline_seat_legroom_reduced">
-
- </span>
- <span class="mls"> icon-airline_seat_legroom_reduced</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e635" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe635;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="airline_seat_legroom_reduced" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-airline_seat_recline_extra">
-
- </span>
- <span class="mls"> icon-airline_seat_recline_extra</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e636" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe636;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="airline_seat_recline_extra" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-airline_seat_recline_normal">
-
- </span>
- <span class="mls"> icon-airline_seat_recline_normal</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e637" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe637;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="airline_seat_recline_normal" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-flight">
-
- </span>
- <span class="mls"> icon-flight</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e539" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe539;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="airplanemode_active, flight" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-airplanemode_inactive">
-
- </span>
- <span class="mls"> icon-airplanemode_inactive</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e194" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe194;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="airplanemode_inactive" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-airplay">
-
- </span>
- <span class="mls"> icon-airplay</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e055" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe055;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="airplay" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-airport_shuttle">
-
- </span>
- <span class="mls"> icon-airport_shuttle</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="eb3c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xeb3c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="airport_shuttle" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-alarm_off">
-
- </span>
- <span class="mls"> icon-alarm_off</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e857" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe857;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="alarm_off" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-alarm_on">
-
- </span>
- <span class="mls"> icon-alarm_on</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e858" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe858;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="alarm_on" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-album">
-
- </span>
- <span class="mls"> icon-album</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e019" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe019;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="album" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-all_inclusive">
-
- </span>
- <span class="mls"> icon-all_inclusive</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="eb3d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xeb3d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="all_inclusive" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-all_out">
-
- </span>
- <span class="mls"> icon-all_out</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e90b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe90b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="all_out" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-android">
-
- </span>
- <span class="mls"> icon-android</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e859" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe859;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="android" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-announcement">
-
- </span>
- <span class="mls"> icon-announcement</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e85a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe85a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="announcement" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-apps">
-
- </span>
- <span class="mls"> icon-apps</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e5c3" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe5c3;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="apps" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-archive">
-
- </span>
- <span class="mls"> icon-archive</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e149" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe149;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="archive" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-arrow_back">
-
- </span>
- <span class="mls"> icon-arrow_back</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e5c4" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe5c4;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="arrow_back" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-arrow_downward">
-
- </span>
- <span class="mls"> icon-arrow_downward</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e5db" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe5db;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="arrow_downward" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-arrow_drop_down">
-
- </span>
- <span class="mls"> icon-arrow_drop_down</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e5c5" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe5c5;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="arrow_drop_down" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-arrow_drop_down_circle">
-
- </span>
- <span class="mls"> icon-arrow_drop_down_circle</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e5c6" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe5c6;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="arrow_drop_down_circle" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-arrow_drop_up">
-
- </span>
- <span class="mls"> icon-arrow_drop_up</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e5c7" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe5c7;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="arrow_drop_up" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-arrow_forward">
-
- </span>
- <span class="mls"> icon-arrow_forward</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e5c8" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe5c8;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="arrow_forward" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-arrow_upward">
-
- </span>
- <span class="mls"> icon-arrow_upward</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e5d8" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe5d8;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="arrow_upward" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-art_track">
-
- </span>
- <span class="mls"> icon-art_track</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e060" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe060;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="art_track" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-aspect_ratio">
-
- </span>
- <span class="mls"> icon-aspect_ratio</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e85b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe85b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="aspect_ratio" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-poll">
-
- </span>
- <span class="mls"> icon-poll</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e801" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe801;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="assessment, insert_chart, poll" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-assignment">
-
- </span>
- <span class="mls"> icon-assignment</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e85d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe85d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="assignment" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-assignment_ind">
-
- </span>
- <span class="mls"> icon-assignment_ind</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e85e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe85e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="assignment_ind" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-assignment_late">
-
- </span>
- <span class="mls"> icon-assignment_late</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e85f" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe85f;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="assignment_late" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-assignment_return">
-
- </span>
- <span class="mls"> icon-assignment_return</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e860" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe860;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="assignment_return" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-assignment_returned">
-
- </span>
- <span class="mls"> icon-assignment_returned</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e861" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe861;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="assignment_returned" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-assignment_turned_in">
-
- </span>
- <span class="mls"> icon-assignment_turned_in</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e862" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe862;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="assignment_turned_in" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-assistant">
-
- </span>
- <span class="mls"> icon-assistant</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e39f" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe39f;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="assistant" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-flag">
-
- </span>
- <span class="mls"> icon-flag</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e153" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe153;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="assistant_photo, flag" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-attach_file">
-
- </span>
- <span class="mls"> icon-attach_file</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e226" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe226;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="attach_file" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-attach_money">
-
- </span>
- <span class="mls"> icon-attach_money</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e227" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe227;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="attach_money" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-attachment">
-
- </span>
- <span class="mls"> icon-attachment</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e2bc" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe2bc;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="attachment" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-audiotrack">
-
- </span>
- <span class="mls"> icon-audiotrack</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3a1" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3a1;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="audiotrack" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-autorenew">
-
- </span>
- <span class="mls"> icon-autorenew</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e863" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe863;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="autorenew" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-av_timer">
-
- </span>
- <span class="mls"> icon-av_timer</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e01b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe01b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="av_timer" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-backspace">
-
- </span>
- <span class="mls"> icon-backspace</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e14a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe14a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="backspace" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-cloud_upload">
-
- </span>
- <span class="mls"> icon-cloud_upload</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e2c3" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe2c3;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="backup, cloud_upload" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-battery_alert">
-
- </span>
- <span class="mls"> icon-battery_alert</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e19c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe19c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="battery_alert" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-battery_charging_full">
-
- </span>
- <span class="mls"> icon-battery_charging_full</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1a3" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1a3;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="battery_charging_full" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-battery_std">
-
- </span>
- <span class="mls"> icon-battery_std</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1a5" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1a5;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="battery_full, battery_std" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-battery_unknown">
-
- </span>
- <span class="mls"> icon-battery_unknown</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1a6" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1a6;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="battery_unknown" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-beach_access">
-
- </span>
- <span class="mls"> icon-beach_access</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="eb3e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xeb3e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="beach_access" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-beenhere">
-
- </span>
- <span class="mls"> icon-beenhere</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e52d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe52d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="beenhere" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-block">
-
- </span>
- <span class="mls"> icon-block</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e14b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe14b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="block" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-bluetooth">
-
- </span>
- <span class="mls"> icon-bluetooth</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1a7" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1a7;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="bluetooth" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-bluetooth_searching">
-
- </span>
- <span class="mls"> icon-bluetooth_searching</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1aa" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1aa;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="bluetooth_audio, bluetooth_searching" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-bluetooth_connected">
-
- </span>
- <span class="mls"> icon-bluetooth_connected</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1a8" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1a8;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="bluetooth_connected" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-bluetooth_disabled">
-
- </span>
- <span class="mls"> icon-bluetooth_disabled</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1a9" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1a9;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="bluetooth_disabled" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-blur_circular">
-
- </span>
- <span class="mls"> icon-blur_circular</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3a2" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3a2;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="blur_circular" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-blur_linear">
-
- </span>
- <span class="mls"> icon-blur_linear</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3a3" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3a3;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="blur_linear" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-blur_off">
-
- </span>
- <span class="mls"> icon-blur_off</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3a4" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3a4;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="blur_off" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-blur_on">
-
- </span>
- <span class="mls"> icon-blur_on</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3a5" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3a5;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="blur_on" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-class">
-
- </span>
- <span class="mls"> icon-class</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e86e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe86e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="book, class" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-turned_in">
-
- </span>
- <span class="mls"> icon-turned_in</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8e6" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8e6;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="bookmark, turned_in" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-turned_in_not">
-
- </span>
- <span class="mls"> icon-turned_in_not</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8e7" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8e7;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="bookmark_border, turned_in_not" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-border_all">
-
- </span>
- <span class="mls"> icon-border_all</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e228" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe228;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="border_all" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-border_bottom">
-
- </span>
- <span class="mls"> icon-border_bottom</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e229" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe229;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="border_bottom" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-border_clear">
-
- </span>
- <span class="mls"> icon-border_clear</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e22a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe22a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="border_clear" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-border_color">
-
- </span>
- <span class="mls"> icon-border_color</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e22b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe22b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="border_color" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-border_horizontal">
-
- </span>
- <span class="mls"> icon-border_horizontal</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e22c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe22c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="border_horizontal" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-border_inner">
-
- </span>
- <span class="mls"> icon-border_inner</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e22d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe22d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="border_inner" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-border_left">
-
- </span>
- <span class="mls"> icon-border_left</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e22e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe22e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="border_left" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-border_outer">
-
- </span>
- <span class="mls"> icon-border_outer</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e22f" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe22f;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="border_outer" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-border_right">
-
- </span>
- <span class="mls"> icon-border_right</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e230" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe230;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="border_right" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-border_style">
-
- </span>
- <span class="mls"> icon-border_style</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e231" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe231;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="border_style" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-border_top">
-
- </span>
- <span class="mls"> icon-border_top</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e232" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe232;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="border_top" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-border_vertical">
-
- </span>
- <span class="mls"> icon-border_vertical</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e233" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe233;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="border_vertical" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-branding_watermark">
-
- </span>
- <span class="mls"> icon-branding_watermark</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e06b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe06b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="branding_watermark" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-brightness_1">
-
- </span>
- <span class="mls"> icon-brightness_1</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3a6" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3a6;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="brightness_1" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-brightness_2">
-
- </span>
- <span class="mls"> icon-brightness_2</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3a7" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3a7;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="brightness_2" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-brightness_3">
-
- </span>
- <span class="mls"> icon-brightness_3</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3a8" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3a8;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="brightness_3" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-brightness_4">
-
- </span>
- <span class="mls"> icon-brightness_4</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3a9" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3a9;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="brightness_4" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-brightness_low">
-
- </span>
- <span class="mls"> icon-brightness_low</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1ad" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1ad;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="brightness_5, brightness_low" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-brightness_medium">
-
- </span>
- <span class="mls"> icon-brightness_medium</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1ae" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1ae;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="brightness_6, brightness_medium" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-brightness_high">
-
- </span>
- <span class="mls"> icon-brightness_high</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1ac" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1ac;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="brightness_7, brightness_high" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-brightness_auto">
-
- </span>
- <span class="mls"> icon-brightness_auto</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1ab" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1ab;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="brightness_auto" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-broken_image">
-
- </span>
- <span class="mls"> icon-broken_image</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3ad" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3ad;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="broken_image" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-brush">
-
- </span>
- <span class="mls"> icon-brush</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3ae" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3ae;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="brush" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-bubble_chart">
-
- </span>
- <span class="mls"> icon-bubble_chart</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e6dd" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe6dd;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="bubble_chart" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-bug_report">
-
- </span>
- <span class="mls"> icon-bug_report</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e868" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe868;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="bug_report" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-build">
-
- </span>
- <span class="mls"> icon-build</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e869" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe869;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="build" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-burst_mode">
-
- </span>
- <span class="mls"> icon-burst_mode</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e43c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe43c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="burst_mode" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-domain">
-
- </span>
- <span class="mls"> icon-domain</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e7ee" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe7ee;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="business, domain" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-business_center">
-
- </span>
- <span class="mls"> icon-business_center</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="eb3f" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xeb3f;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="business_center" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-cached">
-
- </span>
- <span class="mls"> icon-cached</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e86a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe86a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="cached" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-cake">
-
- </span>
- <span class="mls"> icon-cake</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e7e9" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe7e9;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="cake" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-phone">
-
- </span>
- <span class="mls"> icon-phone</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0cd" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0cd;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="call, local_phone, phone" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-call_end">
-
- </span>
- <span class="mls"> icon-call_end</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0b1" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0b1;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="call_end" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-call_made">
-
- </span>
- <span class="mls"> icon-call_made</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0b2" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0b2;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="call_made" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-merge_type">
-
- </span>
- <span class="mls"> icon-merge_type</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e252" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe252;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="call_merge, merge_type" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-call_missed">
-
- </span>
- <span class="mls"> icon-call_missed</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0b4" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0b4;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="call_missed" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-call_missed_outgoing">
-
- </span>
- <span class="mls"> icon-call_missed_outgoing</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0e4" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0e4;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="call_missed_outgoing" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-call_received">
-
- </span>
- <span class="mls"> icon-call_received</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0b5" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0b5;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="call_received" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-call_split">
-
- </span>
- <span class="mls"> icon-call_split</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0b6" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0b6;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="call_split" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-call_to_action">
-
- </span>
- <span class="mls"> icon-call_to_action</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e06c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe06c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="call_to_action" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-camera">
-
- </span>
- <span class="mls"> icon-camera</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3af" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3af;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="camera" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-photo_camera">
-
- </span>
- <span class="mls"> icon-photo_camera</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e412" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe412;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="camera_alt, local_see, photo_camera" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-camera_enhance">
-
- </span>
- <span class="mls"> icon-camera_enhance</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8fc" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8fc;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="camera_enhance" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-camera_front">
-
- </span>
- <span class="mls"> icon-camera_front</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3b1" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3b1;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="camera_front" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-camera_rear">
-
- </span>
- <span class="mls"> icon-camera_rear</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3b2" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3b2;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="camera_rear" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-camera_roll">
-
- </span>
- <span class="mls"> icon-camera_roll</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3b3" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3b3;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="camera_roll" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-cancel">
-
- </span>
- <span class="mls"> icon-cancel</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e5c9" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe5c9;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="cancel" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-redeem">
-
- </span>
- <span class="mls"> icon-redeem</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8b1" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8b1;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="card_giftcard, redeem" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-card_membership">
-
- </span>
- <span class="mls"> icon-card_membership</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8f7" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8f7;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="card_membership" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-card_travel">
-
- </span>
- <span class="mls"> icon-card_travel</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8f8" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8f8;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="card_travel" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-casino">
-
- </span>
- <span class="mls"> icon-casino</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="eb40" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xeb40;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="casino" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-cast">
-
- </span>
- <span class="mls"> icon-cast</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e307" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe307;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="cast" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-cast_connected">
-
- </span>
- <span class="mls"> icon-cast_connected</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e308" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe308;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="cast_connected" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-center_focus_strong">
-
- </span>
- <span class="mls"> icon-center_focus_strong</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3b4" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3b4;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="center_focus_strong" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-center_focus_weak">
-
- </span>
- <span class="mls"> icon-center_focus_weak</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3b5" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3b5;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="center_focus_weak" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-change_history">
-
- </span>
- <span class="mls"> icon-change_history</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e86b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe86b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="change_history" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-chat">
-
- </span>
- <span class="mls"> icon-chat</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0b7" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0b7;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="chat" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-chat_bubble">
-
- </span>
- <span class="mls"> icon-chat_bubble</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0ca" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0ca;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="chat_bubble" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-chat_bubble_outline">
-
- </span>
- <span class="mls"> icon-chat_bubble_outline</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0cb" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0cb;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="chat_bubble_outline" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-check">
-
- </span>
- <span class="mls"> icon-check</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e5ca" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe5ca;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="check" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-check_box">
-
- </span>
- <span class="mls"> icon-check_box</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e834" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe834;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="check_box" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-check_box_outline_blank">
-
- </span>
- <span class="mls"> icon-check_box_outline_blank</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e835" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe835;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="check_box_outline_blank" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-check_circle">
-
- </span>
- <span class="mls"> icon-check_circle</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e86c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe86c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="check_circle" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-navigate_before">
-
- </span>
- <span class="mls"> icon-navigate_before</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e408" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe408;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="chevron_left, navigate_before" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-navigate_next">
-
- </span>
- <span class="mls"> icon-navigate_next</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e409" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe409;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="chevron_right, navigate_next" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-child_care">
-
- </span>
- <span class="mls"> icon-child_care</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="eb41" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xeb41;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="child_care" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-child_friendly">
-
- </span>
- <span class="mls"> icon-child_friendly</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="eb42" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xeb42;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="child_friendly" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-chrome_reader_mode">
-
- </span>
- <span class="mls"> icon-chrome_reader_mode</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e86d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe86d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="chrome_reader_mode" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-close">
-
- </span>
- <span class="mls"> icon-close</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e5cd" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe5cd;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="clear, close" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-clear_all">
-
- </span>
- <span class="mls"> icon-clear_all</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0b8" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0b8;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="clear_all" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-closed_caption">
-
- </span>
- <span class="mls"> icon-closed_caption</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e01c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe01c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="closed_caption" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-wb_cloudy">
-
- </span>
- <span class="mls"> icon-wb_cloudy</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e42d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe42d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="cloud, wb_cloudy" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-cloud_circle">
-
- </span>
- <span class="mls"> icon-cloud_circle</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e2be" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe2be;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="cloud_circle" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-cloud_done">
-
- </span>
- <span class="mls"> icon-cloud_done</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e2bf" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe2bf;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="cloud_done" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-cloud_download">
-
- </span>
- <span class="mls"> icon-cloud_download</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e2c0" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe2c0;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="cloud_download" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-cloud_off">
-
- </span>
- <span class="mls"> icon-cloud_off</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e2c1" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe2c1;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="cloud_off" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-cloud_queue">
-
- </span>
- <span class="mls"> icon-cloud_queue</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e2c2" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe2c2;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="cloud_queue" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-code">
-
- </span>
- <span class="mls"> icon-code</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e86f" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe86f;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="code" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-photo_library">
-
- </span>
- <span class="mls"> icon-photo_library</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e413" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe413;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="collections, photo_library" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-collections_bookmark">
-
- </span>
- <span class="mls"> icon-collections_bookmark</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e431" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe431;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="collections_bookmark" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-palette">
-
- </span>
- <span class="mls"> icon-palette</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e40a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe40a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="color_lens, palette" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-colorize">
-
- </span>
- <span class="mls"> icon-colorize</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3b8" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3b8;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="colorize" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-comment">
-
- </span>
- <span class="mls"> icon-comment</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0b9" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0b9;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="comment" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-compare">
-
- </span>
- <span class="mls"> icon-compare</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3b9" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3b9;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="compare" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-compare_arrows">
-
- </span>
- <span class="mls"> icon-compare_arrows</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e915" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe915;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="compare_arrows" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-laptop">
-
- </span>
- <span class="mls"> icon-laptop</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e31e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe31e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="computer, laptop" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-confirmation_number">
-
- </span>
- <span class="mls"> icon-confirmation_number</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e638" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe638;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="confirmation_number" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-contact_mail">
-
- </span>
- <span class="mls"> icon-contact_mail</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0d0" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0d0;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="contact_mail" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-contact_phone">
-
- </span>
- <span class="mls"> icon-contact_phone</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0cf" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0cf;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="contact_phone" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-contacts">
-
- </span>
- <span class="mls"> icon-contacts</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0ba" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0ba;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="contacts" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-content_copy">
-
- </span>
- <span class="mls"> icon-content_copy</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e14d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe14d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="content_copy" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-content_cut">
-
- </span>
- <span class="mls"> icon-content_cut</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e14e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe14e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="content_cut" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-content_paste">
-
- </span>
- <span class="mls"> icon-content_paste</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e14f" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe14f;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="content_paste" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-control_point_duplicate">
-
- </span>
- <span class="mls"> icon-control_point_duplicate</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3bb" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3bb;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="control_point_duplicate" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-copyright">
-
- </span>
- <span class="mls"> icon-copyright</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e90c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe90c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="copyright" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-mode_edit">
-
- </span>
- <span class="mls"> icon-mode_edit</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e254" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe254;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="create, edit, mode_edit" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-create_new_folder">
-
- </span>
- <span class="mls"> icon-create_new_folder</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e2cc" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe2cc;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="create_new_folder" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-payment">
-
- </span>
- <span class="mls"> icon-payment</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8a1" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8a1;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="credit_card, payment" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-crop">
-
- </span>
- <span class="mls"> icon-crop</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3be" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3be;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="crop" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-crop_16_9">
-
- </span>
- <span class="mls"> icon-crop_16_9</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3bc" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3bc;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="crop_16_9" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-crop_3_2">
-
- </span>
- <span class="mls"> icon-crop_3_2</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3bd" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3bd;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="crop_3_2" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-crop_landscape">
-
- </span>
- <span class="mls"> icon-crop_landscape</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3c3" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3c3;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="crop_5_4, crop_landscape" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-crop_7_5">
-
- </span>
- <span class="mls"> icon-crop_7_5</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3c0" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3c0;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="crop_7_5" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-crop_din">
-
- </span>
- <span class="mls"> icon-crop_din</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3c1" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3c1;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="crop_din" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-crop_free">
-
- </span>
- <span class="mls"> icon-crop_free</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3c2" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3c2;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="crop_free" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-crop_original">
-
- </span>
- <span class="mls"> icon-crop_original</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3c4" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3c4;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="crop_original" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-crop_portrait">
-
- </span>
- <span class="mls"> icon-crop_portrait</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3c5" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3c5;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="crop_portrait" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-crop_rotate">
-
- </span>
- <span class="mls"> icon-crop_rotate</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e437" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe437;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="crop_rotate" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-crop_square">
-
- </span>
- <span class="mls"> icon-crop_square</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3c6" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3c6;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="crop_square" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-dashboard">
-
- </span>
- <span class="mls"> icon-dashboard</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e871" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe871;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="dashboard" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-data_usage">
-
- </span>
- <span class="mls"> icon-data_usage</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1af" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1af;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="data_usage" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-date_range">
-
- </span>
- <span class="mls"> icon-date_range</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e916" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe916;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="date_range" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-dehaze">
-
- </span>
- <span class="mls"> icon-dehaze</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3c7" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3c7;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="dehaze" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-delete">
-
- </span>
- <span class="mls"> icon-delete</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e872" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe872;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="delete" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-delete_forever">
-
- </span>
- <span class="mls"> icon-delete_forever</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e92b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe92b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="delete_forever" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-delete_sweep">
-
- </span>
- <span class="mls"> icon-delete_sweep</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e16c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe16c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="delete_sweep" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-description">
-
- </span>
- <span class="mls"> icon-description</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e873" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe873;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="description" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-desktop_mac">
-
- </span>
- <span class="mls"> icon-desktop_mac</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e30b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe30b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="desktop_mac" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-desktop_windows">
-
- </span>
- <span class="mls"> icon-desktop_windows</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e30c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe30c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="desktop_windows" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-details">
-
- </span>
- <span class="mls"> icon-details</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3c8" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3c8;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="details" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-developer_board">
-
- </span>
- <span class="mls"> icon-developer_board</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e30d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe30d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="developer_board" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-developer_mode">
-
- </span>
- <span class="mls"> icon-developer_mode</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1b0" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1b0;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="developer_mode" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-device_hub">
-
- </span>
- <span class="mls"> icon-device_hub</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e335" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe335;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="device_hub" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-phonelink">
-
- </span>
- <span class="mls"> icon-phonelink</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e326" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe326;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="devices, phonelink" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-devices_other">
-
- </span>
- <span class="mls"> icon-devices_other</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e337" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe337;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="devices_other" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-dialer_sip">
-
- </span>
- <span class="mls"> icon-dialer_sip</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0bb" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0bb;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="dialer_sip" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-dialpad">
-
- </span>
- <span class="mls"> icon-dialpad</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0bc" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0bc;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="dialpad" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-directions">
-
- </span>
- <span class="mls"> icon-directions</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e52e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe52e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="directions" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-directions_bike">
-
- </span>
- <span class="mls"> icon-directions_bike</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e52f" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe52f;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="directions_bike" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-directions_boat">
-
- </span>
- <span class="mls"> icon-directions_boat</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e532" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe532;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="directions_boat" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-directions_bus">
-
- </span>
- <span class="mls"> icon-directions_bus</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e530" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe530;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="directions_bus" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-directions_car">
-
- </span>
- <span class="mls"> icon-directions_car</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e531" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe531;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="directions_car" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-directions_railway">
-
- </span>
- <span class="mls"> icon-directions_railway</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e534" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe534;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="directions_railway" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-directions_run">
-
- </span>
- <span class="mls"> icon-directions_run</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e566" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe566;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="directions_run" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-directions_transit">
-
- </span>
- <span class="mls"> icon-directions_transit</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e535" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe535;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="directions_subway, directions_transit" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-directions_walk">
-
- </span>
- <span class="mls"> icon-directions_walk</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e536" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe536;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="directions_walk" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-disc_full">
-
- </span>
- <span class="mls"> icon-disc_full</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e610" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe610;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="disc_full" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-dns">
-
- </span>
- <span class="mls"> icon-dns</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e875" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe875;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="dns" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-not_interested">
-
- </span>
- <span class="mls"> icon-not_interested</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e033" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe033;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="do_not_disturb, not_interested" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-do_not_disturb_alt">
-
- </span>
- <span class="mls"> icon-do_not_disturb_alt</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e611" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe611;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="do_not_disturb_alt" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-do_not_disturb_off">
-
- </span>
- <span class="mls"> icon-do_not_disturb_off</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e643" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe643;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="do_not_disturb_off" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-remove_circle">
-
- </span>
- <span class="mls"> icon-remove_circle</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e15c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe15c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="do_not_disturb_on, remove_circle" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-dock">
-
- </span>
- <span class="mls"> icon-dock</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e30e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe30e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="dock" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-done">
-
- </span>
- <span class="mls"> icon-done</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e876" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe876;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="done" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-done_all">
-
- </span>
- <span class="mls"> icon-done_all</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e877" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe877;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="done_all" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-donut_large">
-
- </span>
- <span class="mls"> icon-donut_large</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e917" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe917;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="donut_large" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-donut_small">
-
- </span>
- <span class="mls"> icon-donut_small</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e918" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe918;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="donut_small" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-drafts">
-
- </span>
- <span class="mls"> icon-drafts</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e151" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe151;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="drafts" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-drag_handle">
-
- </span>
- <span class="mls"> icon-drag_handle</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e25d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe25d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="drag_handle" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-time_to_leave">
-
- </span>
- <span class="mls"> icon-time_to_leave</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e62c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe62c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="drive_eta, time_to_leave" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-dvr">
-
- </span>
- <span class="mls"> icon-dvr</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1b2" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1b2;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="dvr" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-edit_location">
-
- </span>
- <span class="mls"> icon-edit_location</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e568" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe568;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="edit_location" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-eject">
-
- </span>
- <span class="mls"> icon-eject</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8fb" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8fb;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="eject" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-markunread">
-
- </span>
- <span class="mls"> icon-markunread</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e159" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe159;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="email, local_post_office, mail, markunread" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-enhanced_encryption">
-
- </span>
- <span class="mls"> icon-enhanced_encryption</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e63f" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe63f;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="enhanced_encryption" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-equalizer">
-
- </span>
- <span class="mls"> icon-equalizer</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e01d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe01d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="equalizer" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-error">
-
- </span>
- <span class="mls"> icon-error</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e000" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe000;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="error" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-error_outline">
-
- </span>
- <span class="mls"> icon-error_outline</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e001" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe001;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="error_outline" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-euro_symbol">
-
- </span>
- <span class="mls"> icon-euro_symbol</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e926" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe926;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="euro_symbol" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-ev_station">
-
- </span>
- <span class="mls"> icon-ev_station</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e56d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe56d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="ev_station" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-insert_invitation">
-
- </span>
- <span class="mls"> icon-insert_invitation</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e24f" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe24f;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="event, insert_invitation" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-event_available">
-
- </span>
- <span class="mls"> icon-event_available</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e614" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe614;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="event_available" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-event_busy">
-
- </span>
- <span class="mls"> icon-event_busy</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e615" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe615;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="event_busy" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-event_note">
-
- </span>
- <span class="mls"> icon-event_note</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e616" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe616;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="event_note" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-event_seat">
-
- </span>
- <span class="mls"> icon-event_seat</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e903" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe903;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="event_seat" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-exit_to_app">
-
- </span>
- <span class="mls"> icon-exit_to_app</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e879" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe879;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="exit_to_app" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-expand_less">
-
- </span>
- <span class="mls"> icon-expand_less</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e5ce" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe5ce;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="expand_less" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-expand_more">
-
- </span>
- <span class="mls"> icon-expand_more</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e5cf" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe5cf;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="expand_more" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-explicit">
-
- </span>
- <span class="mls"> icon-explicit</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e01e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe01e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="explicit" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-explore">
-
- </span>
- <span class="mls"> icon-explore</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e87a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe87a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="explore" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-exposure">
-
- </span>
- <span class="mls"> icon-exposure</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3ca" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3ca;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="exposure" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-exposure_neg_1">
-
- </span>
- <span class="mls"> icon-exposure_neg_1</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3cb" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3cb;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="exposure_neg_1" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-exposure_neg_2">
-
- </span>
- <span class="mls"> icon-exposure_neg_2</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3cc" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3cc;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="exposure_neg_2" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-exposure_plus_1">
-
- </span>
- <span class="mls"> icon-exposure_plus_1</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3cd" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3cd;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="exposure_plus_1" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-exposure_plus_2">
-
- </span>
- <span class="mls"> icon-exposure_plus_2</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3ce" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3ce;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="exposure_plus_2" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-exposure_zero">
-
- </span>
- <span class="mls"> icon-exposure_zero</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3cf" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3cf;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="exposure_zero" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-extension">
-
- </span>
- <span class="mls"> icon-extension</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e87b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe87b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="extension" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-face">
-
- </span>
- <span class="mls"> icon-face</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e87c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe87c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="face" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-fast_forward">
-
- </span>
- <span class="mls"> icon-fast_forward</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e01f" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe01f;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="fast_forward" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-fast_rewind">
-
- </span>
- <span class="mls"> icon-fast_rewind</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e020" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe020;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="fast_rewind" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-favorite">
-
- </span>
- <span class="mls"> icon-favorite</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e87d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe87d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="favorite" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-favorite_border">
-
- </span>
- <span class="mls"> icon-favorite_border</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e87e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe87e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="favorite_border" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-featured_play_list">
-
- </span>
- <span class="mls"> icon-featured_play_list</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e06d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe06d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="featured_play_list" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-featured_video">
-
- </span>
- <span class="mls"> icon-featured_video</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e06e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe06e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="featured_video" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-sms_failed">
-
- </span>
- <span class="mls"> icon-sms_failed</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e626" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe626;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="feedback, sms_failed" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-fiber_dvr">
-
- </span>
- <span class="mls"> icon-fiber_dvr</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e05d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe05d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="fiber_dvr" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-fiber_manual_record">
-
- </span>
- <span class="mls"> icon-fiber_manual_record</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e061" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe061;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="fiber_manual_record" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-fiber_new">
-
- </span>
- <span class="mls"> icon-fiber_new</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e05e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe05e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="fiber_new" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-fiber_pin">
-
- </span>
- <span class="mls"> icon-fiber_pin</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e06a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe06a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="fiber_pin" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-fiber_smart_record">
-
- </span>
- <span class="mls"> icon-fiber_smart_record</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e062" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe062;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="fiber_smart_record" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-get_app">
-
- </span>
- <span class="mls"> icon-get_app</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e884" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe884;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="file_download, get_app" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-file_upload">
-
- </span>
- <span class="mls"> icon-file_upload</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e2c6" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe2c6;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="file_upload" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-filter">
-
- </span>
- <span class="mls"> icon-filter</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3d3" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3d3;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="filter" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-filter_1">
-
- </span>
- <span class="mls"> icon-filter_1</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3d0" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3d0;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="filter_1" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-filter_2">
-
- </span>
- <span class="mls"> icon-filter_2</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3d1" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3d1;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="filter_2" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-filter_3">
-
- </span>
- <span class="mls"> icon-filter_3</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3d2" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3d2;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="filter_3" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-filter_4">
-
- </span>
- <span class="mls"> icon-filter_4</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3d4" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3d4;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="filter_4" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-filter_5">
-
- </span>
- <span class="mls"> icon-filter_5</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3d5" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3d5;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="filter_5" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-filter_6">
-
- </span>
- <span class="mls"> icon-filter_6</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3d6" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3d6;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="filter_6" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-filter_7">
-
- </span>
- <span class="mls"> icon-filter_7</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3d7" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3d7;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="filter_7" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-filter_8">
-
- </span>
- <span class="mls"> icon-filter_8</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3d8" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3d8;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="filter_8" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-filter_9">
-
- </span>
- <span class="mls"> icon-filter_9</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3d9" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3d9;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="filter_9" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-filter_9_plus">
-
- </span>
- <span class="mls"> icon-filter_9_plus</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3da" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3da;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="filter_9_plus" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-filter_b_and_w">
-
- </span>
- <span class="mls"> icon-filter_b_and_w</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3db" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3db;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="filter_b_and_w" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-filter_center_focus">
-
- </span>
- <span class="mls"> icon-filter_center_focus</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3dc" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3dc;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="filter_center_focus" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-filter_drama">
-
- </span>
- <span class="mls"> icon-filter_drama</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3dd" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3dd;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="filter_drama" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-filter_frames">
-
- </span>
- <span class="mls"> icon-filter_frames</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3de" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3de;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="filter_frames" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-terrain">
-
- </span>
- <span class="mls"> icon-terrain</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e564" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe564;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="filter_hdr, landscape, terrain" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-filter_list">
-
- </span>
- <span class="mls"> icon-filter_list</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e152" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe152;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="filter_list" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-filter_none">
-
- </span>
- <span class="mls"> icon-filter_none</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3e0" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3e0;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="filter_none" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-filter_tilt_shift">
-
- </span>
- <span class="mls"> icon-filter_tilt_shift</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3e2" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3e2;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="filter_tilt_shift" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-filter_vintage">
-
- </span>
- <span class="mls"> icon-filter_vintage</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3e3" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3e3;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="filter_vintage" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-find_in_page">
-
- </span>
- <span class="mls"> icon-find_in_page</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e880" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe880;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="find_in_page" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-find_replace">
-
- </span>
- <span class="mls"> icon-find_replace</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e881" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe881;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="find_replace" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-fingerprint">
-
- </span>
- <span class="mls"> icon-fingerprint</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e90d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe90d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="fingerprint" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-first_page">
-
- </span>
- <span class="mls"> icon-first_page</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e5dc" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe5dc;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="first_page" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-fitness_center">
-
- </span>
- <span class="mls"> icon-fitness_center</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="eb43" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xeb43;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="fitness_center" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-flare">
-
- </span>
- <span class="mls"> icon-flare</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3e4" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3e4;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="flare" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-flash_auto">
-
- </span>
- <span class="mls"> icon-flash_auto</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3e5" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3e5;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="flash_auto" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-flash_off">
-
- </span>
- <span class="mls"> icon-flash_off</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3e6" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3e6;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="flash_off" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-flash_on">
-
- </span>
- <span class="mls"> icon-flash_on</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3e7" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3e7;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="flash_on" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-flight_land">
-
- </span>
- <span class="mls"> icon-flight_land</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e904" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe904;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="flight_land" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-flight_takeoff">
-
- </span>
- <span class="mls"> icon-flight_takeoff</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e905" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe905;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="flight_takeoff" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-flip">
-
- </span>
- <span class="mls"> icon-flip</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3e8" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3e8;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="flip" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-flip_to_back">
-
- </span>
- <span class="mls"> icon-flip_to_back</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e882" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe882;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="flip_to_back" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-flip_to_front">
-
- </span>
- <span class="mls"> icon-flip_to_front</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e883" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe883;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="flip_to_front" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-folder">
-
- </span>
- <span class="mls"> icon-folder</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e2c7" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe2c7;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="folder" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-folder_open">
-
- </span>
- <span class="mls"> icon-folder_open</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e2c8" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe2c8;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="folder_open" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-folder_shared">
-
- </span>
- <span class="mls"> icon-folder_shared</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e2c9" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe2c9;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="folder_shared" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-folder_special">
-
- </span>
- <span class="mls"> icon-folder_special</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e617" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe617;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="folder_special" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-font_download">
-
- </span>
- <span class="mls"> icon-font_download</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e167" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe167;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="font_download" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-format_align_center">
-
- </span>
- <span class="mls"> icon-format_align_center</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e234" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe234;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="format_align_center" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-format_align_justify">
-
- </span>
- <span class="mls"> icon-format_align_justify</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e235" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe235;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="format_align_justify" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-format_align_left">
-
- </span>
- <span class="mls"> icon-format_align_left</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e236" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe236;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="format_align_left" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-format_align_right">
-
- </span>
- <span class="mls"> icon-format_align_right</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e237" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe237;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="format_align_right" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-format_bold">
-
- </span>
- <span class="mls"> icon-format_bold</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e238" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe238;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="format_bold" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-format_clear">
-
- </span>
- <span class="mls"> icon-format_clear</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e239" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe239;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="format_clear" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-format_color_fill">
-
- </span>
- <span class="mls"> icon-format_color_fill</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e23a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe23a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="format_color_fill" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-format_color_reset">
-
- </span>
- <span class="mls"> icon-format_color_reset</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e23b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe23b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="format_color_reset" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-format_color_text">
-
- </span>
- <span class="mls"> icon-format_color_text</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e23c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe23c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="format_color_text" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-format_indent_decrease">
-
- </span>
- <span class="mls"> icon-format_indent_decrease</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e23d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe23d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="format_indent_decrease" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-format_indent_increase">
-
- </span>
- <span class="mls"> icon-format_indent_increase</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e23e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe23e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="format_indent_increase" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-format_italic">
-
- </span>
- <span class="mls"> icon-format_italic</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e23f" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe23f;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="format_italic" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-format_line_spacing">
-
- </span>
- <span class="mls"> icon-format_line_spacing</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e240" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe240;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="format_line_spacing" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-format_list_bulleted">
-
- </span>
- <span class="mls"> icon-format_list_bulleted</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e241" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe241;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="format_list_bulleted" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-format_list_numbered">
-
- </span>
- <span class="mls"> icon-format_list_numbered</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e242" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe242;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="format_list_numbered" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-format_paint">
-
- </span>
- <span class="mls"> icon-format_paint</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e243" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe243;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="format_paint" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-format_quote">
-
- </span>
- <span class="mls"> icon-format_quote</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e244" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe244;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="format_quote" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-format_shapes">
-
- </span>
- <span class="mls"> icon-format_shapes</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e25e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe25e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="format_shapes" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-format_size">
-
- </span>
- <span class="mls"> icon-format_size</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e245" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe245;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="format_size" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-format_strikethrough">
-
- </span>
- <span class="mls"> icon-format_strikethrough</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e246" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe246;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="format_strikethrough" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-format_textdirection_l_to_r">
-
- </span>
- <span class="mls"> icon-format_textdirection_l_to_r</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e247" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe247;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="format_textdirection_l_to_r" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-format_textdirection_r_to_l">
-
- </span>
- <span class="mls"> icon-format_textdirection_r_to_l</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e248" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe248;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="format_textdirection_r_to_l" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-format_underlined">
-
- </span>
- <span class="mls"> icon-format_underlined</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e249" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe249;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="format_underlined" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-question_answer">
-
- </span>
- <span class="mls"> icon-question_answer</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8af" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8af;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="forum, question_answer" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-forward">
-
- </span>
- <span class="mls"> icon-forward</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e154" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe154;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="forward" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-forward_10">
-
- </span>
- <span class="mls"> icon-forward_10</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e056" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe056;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="forward_10" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-forward_30">
-
- </span>
- <span class="mls"> icon-forward_30</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e057" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe057;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="forward_30" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-forward_5">
-
- </span>
- <span class="mls"> icon-forward_5</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e058" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe058;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="forward_5" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-free_breakfast">
-
- </span>
- <span class="mls"> icon-free_breakfast</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="eb44" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xeb44;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="free_breakfast" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-fullscreen">
-
- </span>
- <span class="mls"> icon-fullscreen</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e5d0" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe5d0;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="fullscreen" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-fullscreen_exit">
-
- </span>
- <span class="mls"> icon-fullscreen_exit</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e5d1" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe5d1;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="fullscreen_exit" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-functions">
-
- </span>
- <span class="mls"> icon-functions</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e24a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe24a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="functions" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-g_translate">
-
- </span>
- <span class="mls"> icon-g_translate</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e927" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe927;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="g_translate" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-games">
-
- </span>
- <span class="mls"> icon-games</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e021" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe021;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="gamepad, games" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-gavel">
-
- </span>
- <span class="mls"> icon-gavel</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e90e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe90e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="gavel" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-gesture">
-
- </span>
- <span class="mls"> icon-gesture</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e155" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe155;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="gesture" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-gif">
-
- </span>
- <span class="mls"> icon-gif</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e908" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe908;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="gif" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-goat">
-
- </span>
- <span class="mls"> icon-goat</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e900" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe900;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="goat" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-golf_course">
-
- </span>
- <span class="mls"> icon-golf_course</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="eb45" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xeb45;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="golf_course" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-my_location">
-
- </span>
- <span class="mls"> icon-my_location</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e55c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe55c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="gps_fixed, my_location" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-location_searching">
-
- </span>
- <span class="mls"> icon-location_searching</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1b7" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1b7;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="gps_not_fixed, location_searching" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-location_disabled">
-
- </span>
- <span class="mls"> icon-location_disabled</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1b6" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1b6;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="gps_off, location_disabled" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-star">
-
- </span>
- <span class="mls"> icon-star</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e838" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe838;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="grade, star" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-gradient">
-
- </span>
- <span class="mls"> icon-gradient</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3e9" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3e9;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="gradient" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-grain">
-
- </span>
- <span class="mls"> icon-grain</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3ea" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3ea;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="grain" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-graphic_eq">
-
- </span>
- <span class="mls"> icon-graphic_eq</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1b8" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1b8;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="graphic_eq" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-grid_off">
-
- </span>
- <span class="mls"> icon-grid_off</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3eb" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3eb;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="grid_off" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-grid_on">
-
- </span>
- <span class="mls"> icon-grid_on</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3ec" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3ec;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="grid_on" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-people">
-
- </span>
- <span class="mls"> icon-people</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e7fb" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe7fb;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="group, people" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-group_add">
-
- </span>
- <span class="mls"> icon-group_add</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e7f0" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe7f0;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="group_add" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-group_work">
-
- </span>
- <span class="mls"> icon-group_work</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e886" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe886;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="group_work" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-hd">
-
- </span>
- <span class="mls"> icon-hd</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e052" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe052;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="hd" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-hdr_off">
-
- </span>
- <span class="mls"> icon-hdr_off</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3ed" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3ed;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="hdr_off" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-hdr_on">
-
- </span>
- <span class="mls"> icon-hdr_on</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3ee" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3ee;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="hdr_on" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-hdr_strong">
-
- </span>
- <span class="mls"> icon-hdr_strong</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3f1" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3f1;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="hdr_strong" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-hdr_weak">
-
- </span>
- <span class="mls"> icon-hdr_weak</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3f2" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3f2;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="hdr_weak" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-headset">
-
- </span>
- <span class="mls"> icon-headset</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e310" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe310;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="headset" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-headset_mic">
-
- </span>
- <span class="mls"> icon-headset_mic</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e311" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe311;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="headset_mic" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-healing">
-
- </span>
- <span class="mls"> icon-healing</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3f3" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3f3;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="healing" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-hearing">
-
- </span>
- <span class="mls"> icon-hearing</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e023" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe023;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="hearing" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-help">
-
- </span>
- <span class="mls"> icon-help</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e887" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe887;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="help" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-help_outline">
-
- </span>
- <span class="mls"> icon-help_outline</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8fd" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8fd;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="help_outline" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-high_quality">
-
- </span>
- <span class="mls"> icon-high_quality</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e024" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe024;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="high_quality" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-highlight">
-
- </span>
- <span class="mls"> icon-highlight</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e25f" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe25f;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="highlight" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-highlight_off">
-
- </span>
- <span class="mls"> icon-highlight_off</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e888" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe888;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="highlight_off" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-restore">
-
- </span>
- <span class="mls"> icon-restore</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8b3" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8b3;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="history, restore" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-home">
-
- </span>
- <span class="mls"> icon-home</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e88a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe88a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="home" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-hot_tub">
-
- </span>
- <span class="mls"> icon-hot_tub</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="eb46" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xeb46;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="hot_tub" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-local_hotel">
-
- </span>
- <span class="mls"> icon-local_hotel</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e549" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe549;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="hotel, local_hotel" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-hourglass_empty">
-
- </span>
- <span class="mls"> icon-hourglass_empty</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e88b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe88b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="hourglass_empty" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-hourglass_full">
-
- </span>
- <span class="mls"> icon-hourglass_full</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e88c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe88c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="hourglass_full" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-http">
-
- </span>
- <span class="mls"> icon-http</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e902" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe902;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="http" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-lock">
-
- </span>
- <span class="mls"> icon-lock</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e897" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe897;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="https, lock" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-photo">
-
- </span>
- <span class="mls"> icon-photo</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e410" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe410;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="image, insert_photo, photo" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-image_aspect_ratio">
-
- </span>
- <span class="mls"> icon-image_aspect_ratio</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3f5" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3f5;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="image_aspect_ratio" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-import_contacts">
-
- </span>
- <span class="mls"> icon-import_contacts</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0e0" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0e0;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="import_contacts" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-import_export">
-
- </span>
- <span class="mls"> icon-import_export</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0c3" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0c3;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="import_export" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-important_devices">
-
- </span>
- <span class="mls"> icon-important_devices</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e912" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe912;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="important_devices" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-inbox">
-
- </span>
- <span class="mls"> icon-inbox</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e156" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe156;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="inbox" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-indeterminate_check_box">
-
- </span>
- <span class="mls"> icon-indeterminate_check_box</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e909" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe909;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="indeterminate_check_box" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-info">
-
- </span>
- <span class="mls"> icon-info</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e88e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe88e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="info" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-info_outline">
-
- </span>
- <span class="mls"> icon-info_outline</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e88f" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe88f;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="info_outline" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-input">
-
- </span>
- <span class="mls"> icon-input</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e890" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe890;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="input" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-insert_comment">
-
- </span>
- <span class="mls"> icon-insert_comment</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e24c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe24c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="insert_comment" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-insert_drive_file">
-
- </span>
- <span class="mls"> icon-insert_drive_file</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e24d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe24d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="insert_drive_file" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-tag_faces">
-
- </span>
- <span class="mls"> icon-tag_faces</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e420" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe420;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="insert_emoticon, mood, tag_faces" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-link">
-
- </span>
- <span class="mls"> icon-link</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e157" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe157;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="insert_link, link" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-invert_colors">
-
- </span>
- <span class="mls"> icon-invert_colors</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e891" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe891;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="invert_colors" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-invert_colors_off">
-
- </span>
- <span class="mls"> icon-invert_colors_off</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0c4" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0c4;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="invert_colors_off" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-iso">
-
- </span>
- <span class="mls"> icon-iso</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3f6" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3f6;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="iso" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-keyboard">
-
- </span>
- <span class="mls"> icon-keyboard</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e312" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe312;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="keyboard" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-keyboard_arrow_down">
-
- </span>
- <span class="mls"> icon-keyboard_arrow_down</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e313" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe313;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="keyboard_arrow_down" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-keyboard_arrow_left">
-
- </span>
- <span class="mls"> icon-keyboard_arrow_left</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e314" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe314;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="keyboard_arrow_left" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-keyboard_arrow_right">
-
- </span>
- <span class="mls"> icon-keyboard_arrow_right</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e315" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe315;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="keyboard_arrow_right" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-keyboard_arrow_up">
-
- </span>
- <span class="mls"> icon-keyboard_arrow_up</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e316" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe316;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="keyboard_arrow_up" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-keyboard_backspace">
-
- </span>
- <span class="mls"> icon-keyboard_backspace</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e317" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe317;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="keyboard_backspace" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-keyboard_capslock">
-
- </span>
- <span class="mls"> icon-keyboard_capslock</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e318" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe318;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="keyboard_capslock" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-keyboard_hide">
-
- </span>
- <span class="mls"> icon-keyboard_hide</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e31a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe31a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="keyboard_hide" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-keyboard_return">
-
- </span>
- <span class="mls"> icon-keyboard_return</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e31b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe31b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="keyboard_return" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-keyboard_tab">
-
- </span>
- <span class="mls"> icon-keyboard_tab</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e31c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe31c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="keyboard_tab" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-keyboard_voice">
-
- </span>
- <span class="mls"> icon-keyboard_voice</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e31d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe31d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="keyboard_voice" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-kitchen">
-
- </span>
- <span class="mls"> icon-kitchen</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="eb47" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xeb47;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="kitchen" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-label">
-
- </span>
- <span class="mls"> icon-label</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e892" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe892;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="label" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-label_outline">
-
- </span>
- <span class="mls"> icon-label_outline</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e893" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe893;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="label_outline" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-language">
-
- </span>
- <span class="mls"> icon-language</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e894" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe894;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="language" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-laptop_chromebook">
-
- </span>
- <span class="mls"> icon-laptop_chromebook</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e31f" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe31f;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="laptop_chromebook" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-laptop_mac">
-
- </span>
- <span class="mls"> icon-laptop_mac</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e320" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe320;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="laptop_mac" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-laptop_windows">
-
- </span>
- <span class="mls"> icon-laptop_windows</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e321" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe321;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="laptop_windows" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-last_page">
-
- </span>
- <span class="mls"> icon-last_page</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e5dd" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe5dd;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="last_page" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-open_in_new">
-
- </span>
- <span class="mls"> icon-open_in_new</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e89e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe89e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="launch, open_in_new" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-layers">
-
- </span>
- <span class="mls"> icon-layers</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e53b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe53b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="layers" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-layers_clear">
-
- </span>
- <span class="mls"> icon-layers_clear</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e53c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe53c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="layers_clear" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-leak_add">
-
- </span>
- <span class="mls"> icon-leak_add</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3f8" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3f8;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="leak_add" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-leak_remove">
-
- </span>
- <span class="mls"> icon-leak_remove</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3f9" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3f9;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="leak_remove" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-lens">
-
- </span>
- <span class="mls"> icon-lens</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3fa" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3fa;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="lens" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-library_books">
-
- </span>
- <span class="mls"> icon-library_books</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e02f" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe02f;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="library_books" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-library_music">
-
- </span>
- <span class="mls"> icon-library_music</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e030" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe030;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="library_music" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-lightbulb_outline">
-
- </span>
- <span class="mls"> icon-lightbulb_outline</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e90f" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe90f;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="lightbulb_outline" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-line_style">
-
- </span>
- <span class="mls"> icon-line_style</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e919" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe919;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="line_style" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-line_weight">
-
- </span>
- <span class="mls"> icon-line_weight</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e91a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe91a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="line_weight" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-linear_scale">
-
- </span>
- <span class="mls"> icon-linear_scale</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e260" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe260;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="linear_scale" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-linked_camera">
-
- </span>
- <span class="mls"> icon-linked_camera</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e438" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe438;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="linked_camera" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-list">
-
- </span>
- <span class="mls"> icon-list</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e896" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe896;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="list" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-live_help">
-
- </span>
- <span class="mls"> icon-live_help</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0c6" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0c6;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="live_help" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-live_tv">
-
- </span>
- <span class="mls"> icon-live_tv</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e639" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe639;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="live_tv" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-local_play">
-
- </span>
- <span class="mls"> icon-local_play</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e553" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe553;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="local_activity, local_play" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-local_airport">
-
- </span>
- <span class="mls"> icon-local_airport</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e53d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe53d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="local_airport" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-local_atm">
-
- </span>
- <span class="mls"> icon-local_atm</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e53e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe53e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="local_atm" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-local_bar">
-
- </span>
- <span class="mls"> icon-local_bar</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e540" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe540;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="local_bar" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-local_cafe">
-
- </span>
- <span class="mls"> icon-local_cafe</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e541" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe541;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="local_cafe" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-local_car_wash">
-
- </span>
- <span class="mls"> icon-local_car_wash</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e542" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe542;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="local_car_wash" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-local_convenience_store">
-
- </span>
- <span class="mls"> icon-local_convenience_store</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e543" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe543;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="local_convenience_store" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-restaurant_menu">
-
- </span>
- <span class="mls"> icon-restaurant_menu</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e561" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe561;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="local_dining, restaurant_menu" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-local_drink">
-
- </span>
- <span class="mls"> icon-local_drink</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e544" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe544;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="local_drink" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-local_florist">
-
- </span>
- <span class="mls"> icon-local_florist</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e545" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe545;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="local_florist" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-local_gas_station">
-
- </span>
- <span class="mls"> icon-local_gas_station</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e546" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe546;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="local_gas_station" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-shopping_cart">
-
- </span>
- <span class="mls"> icon-shopping_cart</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8cc" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8cc;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="local_grocery_store, shopping_cart" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-local_hospital">
-
- </span>
- <span class="mls"> icon-local_hospital</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e548" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe548;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="local_hospital" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-local_laundry_service">
-
- </span>
- <span class="mls"> icon-local_laundry_service</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e54a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe54a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="local_laundry_service" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-local_library">
-
- </span>
- <span class="mls"> icon-local_library</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e54b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe54b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="local_library" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-local_mall">
-
- </span>
- <span class="mls"> icon-local_mall</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e54c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe54c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="local_mall" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-theaters">
-
- </span>
- <span class="mls"> icon-theaters</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8da" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8da;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="local_movies, theaters" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-local_offer">
-
- </span>
- <span class="mls"> icon-local_offer</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e54e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe54e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="local_offer" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-local_parking">
-
- </span>
- <span class="mls"> icon-local_parking</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e54f" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe54f;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="local_parking" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-local_pharmacy">
-
- </span>
- <span class="mls"> icon-local_pharmacy</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e550" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe550;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="local_pharmacy" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-local_pizza">
-
- </span>
- <span class="mls"> icon-local_pizza</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e552" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe552;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="local_pizza" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-print">
-
- </span>
- <span class="mls"> icon-print</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8ad" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8ad;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="local_printshop, print" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-local_shipping">
-
- </span>
- <span class="mls"> icon-local_shipping</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e558" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe558;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="local_shipping" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-local_taxi">
-
- </span>
- <span class="mls"> icon-local_taxi</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e559" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe559;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="local_taxi" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-location_city">
-
- </span>
- <span class="mls"> icon-location_city</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e7f1" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe7f1;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="location_city" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-location_off">
-
- </span>
- <span class="mls"> icon-location_off</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0c7" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0c7;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="location_off" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-room">
-
- </span>
- <span class="mls"> icon-room</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8b4" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8b4;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="location_on, place, room" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-lock_open">
-
- </span>
- <span class="mls"> icon-lock_open</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e898" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe898;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="lock_open" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-lock_outline">
-
- </span>
- <span class="mls"> icon-lock_outline</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e899" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe899;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="lock_outline" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-looks">
-
- </span>
- <span class="mls"> icon-looks</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3fc" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3fc;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="looks" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-looks_3">
-
- </span>
- <span class="mls"> icon-looks_3</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3fb" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3fb;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="looks_3" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-looks_4">
-
- </span>
- <span class="mls"> icon-looks_4</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3fd" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3fd;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="looks_4" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-looks_5">
-
- </span>
- <span class="mls"> icon-looks_5</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3fe" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3fe;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="looks_5" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-looks_6">
-
- </span>
- <span class="mls"> icon-looks_6</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e3ff" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe3ff;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="looks_6" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-looks_one">
-
- </span>
- <span class="mls"> icon-looks_one</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e400" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe400;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="looks_one" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-looks_two">
-
- </span>
- <span class="mls"> icon-looks_two</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e401" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe401;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="looks_two" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-sync">
-
- </span>
- <span class="mls"> icon-sync</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e627" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe627;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="loop, sync" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-loupe">
-
- </span>
- <span class="mls"> icon-loupe</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e402" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe402;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="loupe" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-low_priority">
-
- </span>
- <span class="mls"> icon-low_priority</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e16d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe16d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="low_priority" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-loyalty">
-
- </span>
- <span class="mls"> icon-loyalty</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e89a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe89a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="loyalty" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-mail_outline">
-
- </span>
- <span class="mls"> icon-mail_outline</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0e1" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0e1;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="mail_outline" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-map">
-
- </span>
- <span class="mls"> icon-map</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e55b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe55b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="map" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-markunread_mailbox">
-
- </span>
- <span class="mls"> icon-markunread_mailbox</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e89b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe89b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="markunread_mailbox" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-memory">
-
- </span>
- <span class="mls"> icon-memory</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e322" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe322;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="memory" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-menu">
-
- </span>
- <span class="mls"> icon-menu</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e5d2" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe5d2;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="menu" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-message">
-
- </span>
- <span class="mls"> icon-message</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0c9" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0c9;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="message" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-mic">
-
- </span>
- <span class="mls"> icon-mic</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e029" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe029;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="mic" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-mic_none">
-
- </span>
- <span class="mls"> icon-mic_none</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e02a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe02a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="mic_none" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-mic_off">
-
- </span>
- <span class="mls"> icon-mic_off</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e02b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe02b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="mic_off" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-mms">
-
- </span>
- <span class="mls"> icon-mms</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e618" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe618;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="mms" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-mode_comment">
-
- </span>
- <span class="mls"> icon-mode_comment</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e253" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe253;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="mode_comment" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-monetization_on">
-
- </span>
- <span class="mls"> icon-monetization_on</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e263" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe263;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="monetization_on" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-money_off">
-
- </span>
- <span class="mls"> icon-money_off</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e25c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe25c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="money_off" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-monochrome_photos">
-
- </span>
- <span class="mls"> icon-monochrome_photos</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e403" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe403;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="monochrome_photos" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-mood_bad">
-
- </span>
- <span class="mls"> icon-mood_bad</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e7f3" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe7f3;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="mood_bad" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-more">
-
- </span>
- <span class="mls"> icon-more</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e619" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe619;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="more" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-more_horiz">
-
- </span>
- <span class="mls"> icon-more_horiz</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e5d3" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe5d3;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="more_horiz" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-more_vert">
-
- </span>
- <span class="mls"> icon-more_vert</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e5d4" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe5d4;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="more_vert" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-motorcycle">
-
- </span>
- <span class="mls"> icon-motorcycle</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e91b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe91b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="motorcycle" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-mouse">
-
- </span>
- <span class="mls"> icon-mouse</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e323" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe323;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="mouse" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-move_to_inbox">
-
- </span>
- <span class="mls"> icon-move_to_inbox</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e168" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe168;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="move_to_inbox" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-movie_creation">
-
- </span>
- <span class="mls"> icon-movie_creation</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e404" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe404;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="movie, movie_creation" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-movie_filter">
-
- </span>
- <span class="mls"> icon-movie_filter</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e43a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe43a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="movie_filter" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-multiline_chart">
-
- </span>
- <span class="mls"> icon-multiline_chart</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e6df" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe6df;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="multiline_chart" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-music_note">
-
- </span>
- <span class="mls"> icon-music_note</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e405" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe405;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="music_note" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-music_video">
-
- </span>
- <span class="mls"> icon-music_video</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e063" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe063;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="music_video" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-nature">
-
- </span>
- <span class="mls"> icon-nature</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e406" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe406;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="nature" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-nature_people">
-
- </span>
- <span class="mls"> icon-nature_people</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e407" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe407;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="nature_people" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-navigation">
-
- </span>
- <span class="mls"> icon-navigation</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e55d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe55d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="navigation" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-near_me">
-
- </span>
- <span class="mls"> icon-near_me</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e569" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe569;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="near_me" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-network_cell">
-
- </span>
- <span class="mls"> icon-network_cell</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1b9" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1b9;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="network_cell" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-network_check">
-
- </span>
- <span class="mls"> icon-network_check</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e640" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe640;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="network_check" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-network_locked">
-
- </span>
- <span class="mls"> icon-network_locked</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e61a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe61a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="network_locked" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-network_wifi">
-
- </span>
- <span class="mls"> icon-network_wifi</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1ba" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1ba;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="network_wifi" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-new_releases">
-
- </span>
- <span class="mls"> icon-new_releases</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e031" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe031;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="new_releases" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-next_week">
-
- </span>
- <span class="mls"> icon-next_week</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e16a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe16a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="next_week" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-nfc">
-
- </span>
- <span class="mls"> icon-nfc</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1bb" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1bb;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="nfc" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-no_encryption">
-
- </span>
- <span class="mls"> icon-no_encryption</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e641" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe641;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="no_encryption" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-signal_cellular_no_sim">
-
- </span>
- <span class="mls"> icon-signal_cellular_no_sim</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1ce" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1ce;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="no_sim, signal_cellular_no_sim" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-note">
-
- </span>
- <span class="mls"> icon-note</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e06f" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe06f;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="note" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-note_add">
-
- </span>
- <span class="mls"> icon-note_add</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e89c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe89c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="note_add" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-notifications">
-
- </span>
- <span class="mls"> icon-notifications</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e7f4" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe7f4;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="notifications" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-notifications_active">
-
- </span>
- <span class="mls"> icon-notifications_active</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e7f7" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe7f7;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="notifications_active" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-notifications_none">
-
- </span>
- <span class="mls"> icon-notifications_none</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e7f5" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe7f5;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="notifications_none" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-notifications_off">
-
- </span>
- <span class="mls"> icon-notifications_off</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e7f6" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe7f6;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="notifications_off" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-notifications_paused">
-
- </span>
- <span class="mls"> icon-notifications_paused</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e7f8" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe7f8;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="notifications_paused" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-offline_pin">
-
- </span>
- <span class="mls"> icon-offline_pin</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e90a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe90a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="offline_pin" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-ondemand_video">
-
- </span>
- <span class="mls"> icon-ondemand_video</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e63a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe63a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="ondemand_video" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-opacity">
-
- </span>
- <span class="mls"> icon-opacity</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e91c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe91c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="opacity" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-open_in_browser">
-
- </span>
- <span class="mls"> icon-open_in_browser</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e89d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe89d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="open_in_browser" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-open_with">
-
- </span>
- <span class="mls"> icon-open_with</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e89f" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe89f;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="open_with" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-pages">
-
- </span>
- <span class="mls"> icon-pages</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e7f9" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe7f9;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="pages" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-pageview">
-
- </span>
- <span class="mls"> icon-pageview</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8a0" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8a0;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="pageview" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-pan_tool">
-
- </span>
- <span class="mls"> icon-pan_tool</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e925" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe925;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="pan_tool" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-panorama">
-
- </span>
- <span class="mls"> icon-panorama</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e40b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe40b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="panorama" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-radio_button_unchecked">
-
- </span>
- <span class="mls"> icon-radio_button_unchecked</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e836" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe836;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="panorama_fish_eye, radio_button_unchecked" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-panorama_horizontal">
-
- </span>
- <span class="mls"> icon-panorama_horizontal</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e40d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe40d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="panorama_horizontal" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-panorama_vertical">
-
- </span>
- <span class="mls"> icon-panorama_vertical</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e40e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe40e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="panorama_vertical" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-panorama_wide_angle">
-
- </span>
- <span class="mls"> icon-panorama_wide_angle</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e40f" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe40f;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="panorama_wide_angle" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-party_mode">
-
- </span>
- <span class="mls"> icon-party_mode</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e7fa" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe7fa;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="party_mode" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-pause">
-
- </span>
- <span class="mls"> icon-pause</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e034" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe034;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="pause" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-pause_circle_filled">
-
- </span>
- <span class="mls"> icon-pause_circle_filled</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e035" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe035;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="pause_circle_filled" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-pause_circle_outline">
-
- </span>
- <span class="mls"> icon-pause_circle_outline</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e036" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe036;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="pause_circle_outline" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-people_outline">
-
- </span>
- <span class="mls"> icon-people_outline</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e7fc" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe7fc;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="people_outline" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-perm_camera_mic">
-
- </span>
- <span class="mls"> icon-perm_camera_mic</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8a2" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8a2;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="perm_camera_mic" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-perm_contact_calendar">
-
- </span>
- <span class="mls"> icon-perm_contact_calendar</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8a3" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8a3;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="perm_contact_calendar" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-perm_data_setting">
-
- </span>
- <span class="mls"> icon-perm_data_setting</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8a4" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8a4;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="perm_data_setting" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-perm_device_information">
-
- </span>
- <span class="mls"> icon-perm_device_information</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8a5" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8a5;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="perm_device_information" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-person_outline">
-
- </span>
- <span class="mls"> icon-person_outline</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e7ff" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe7ff;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="perm_identity, person_outline" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-perm_media">
-
- </span>
- <span class="mls"> icon-perm_media</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8a7" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8a7;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="perm_media" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-perm_phone_msg">
-
- </span>
- <span class="mls"> icon-perm_phone_msg</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8a8" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8a8;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="perm_phone_msg" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-perm_scan_wifi">
-
- </span>
- <span class="mls"> icon-perm_scan_wifi</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8a9" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8a9;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="perm_scan_wifi" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-person">
-
- </span>
- <span class="mls"> icon-person</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e7fd" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe7fd;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="person" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-person_add">
-
- </span>
- <span class="mls"> icon-person_add</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e7fe" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe7fe;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="person_add" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-person_pin">
-
- </span>
- <span class="mls"> icon-person_pin</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e55a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe55a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="person_pin" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-person_pin_circle">
-
- </span>
- <span class="mls"> icon-person_pin_circle</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e56a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe56a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="person_pin_circle" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-personal_video">
-
- </span>
- <span class="mls"> icon-personal_video</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e63b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe63b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="personal_video" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-pets">
-
- </span>
- <span class="mls"> icon-pets</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e91d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe91d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="pets" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-phone_android">
-
- </span>
- <span class="mls"> icon-phone_android</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e324" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe324;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="phone_android" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-phone_bluetooth_speaker">
-
- </span>
- <span class="mls"> icon-phone_bluetooth_speaker</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e61b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe61b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="phone_bluetooth_speaker" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-phone_forwarded">
-
- </span>
- <span class="mls"> icon-phone_forwarded</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e61c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe61c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="phone_forwarded" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-phone_in_talk">
-
- </span>
- <span class="mls"> icon-phone_in_talk</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e61d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe61d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="phone_in_talk" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-phone_iphone">
-
- </span>
- <span class="mls"> icon-phone_iphone</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e325" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe325;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="phone_iphone" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-phone_locked">
-
- </span>
- <span class="mls"> icon-phone_locked</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e61e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe61e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="phone_locked" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-phone_missed">
-
- </span>
- <span class="mls"> icon-phone_missed</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e61f" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe61f;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="phone_missed" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-phone_paused">
-
- </span>
- <span class="mls"> icon-phone_paused</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e620" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe620;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="phone_paused" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-phonelink_erase">
-
- </span>
- <span class="mls"> icon-phonelink_erase</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0db" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0db;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="phonelink_erase" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-phonelink_lock">
-
- </span>
- <span class="mls"> icon-phonelink_lock</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0dc" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0dc;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="phonelink_lock" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-phonelink_off">
-
- </span>
- <span class="mls"> icon-phonelink_off</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e327" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe327;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="phonelink_off" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-phonelink_ring">
-
- </span>
- <span class="mls"> icon-phonelink_ring</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0dd" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0dd;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="phonelink_ring" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-phonelink_setup">
-
- </span>
- <span class="mls"> icon-phonelink_setup</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0de" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0de;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="phonelink_setup" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-photo_album">
-
- </span>
- <span class="mls"> icon-photo_album</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e411" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe411;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="photo_album" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-photo_filter">
-
- </span>
- <span class="mls"> icon-photo_filter</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e43b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe43b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="photo_filter" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-photo_size_select_actual">
-
- </span>
- <span class="mls"> icon-photo_size_select_actual</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e432" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe432;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="photo_size_select_actual" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-photo_size_select_large">
-
- </span>
- <span class="mls"> icon-photo_size_select_large</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e433" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe433;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="photo_size_select_large" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-photo_size_select_small">
-
- </span>
- <span class="mls"> icon-photo_size_select_small</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e434" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe434;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="photo_size_select_small" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-picture_as_pdf">
-
- </span>
- <span class="mls"> icon-picture_as_pdf</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e415" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe415;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="picture_as_pdf" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-picture_in_picture">
-
- </span>
- <span class="mls"> icon-picture_in_picture</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8aa" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8aa;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="picture_in_picture" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-picture_in_picture_alt">
-
- </span>
- <span class="mls"> icon-picture_in_picture_alt</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e911" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe911;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="picture_in_picture_alt" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-pie_chart">
-
- </span>
- <span class="mls"> icon-pie_chart</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e6c4" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe6c4;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="pie_chart" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-pie_chart_outlined">
-
- </span>
- <span class="mls"> icon-pie_chart_outlined</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e6c5" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe6c5;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="pie_chart_outlined" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-pin_drop">
-
- </span>
- <span class="mls"> icon-pin_drop</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e55e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe55e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="pin_drop" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-play_arrow">
-
- </span>
- <span class="mls"> icon-play_arrow</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e037" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe037;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="play_arrow" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-play_circle_filled">
-
- </span>
- <span class="mls"> icon-play_circle_filled</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e038" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe038;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="play_circle_filled" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-play_circle_outline">
-
- </span>
- <span class="mls"> icon-play_circle_outline</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e039" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe039;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="play_circle_outline" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-play_for_work">
-
- </span>
- <span class="mls"> icon-play_for_work</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e906" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe906;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="play_for_work" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-playlist_add">
-
- </span>
- <span class="mls"> icon-playlist_add</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e03b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe03b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="playlist_add" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-playlist_add_check">
-
- </span>
- <span class="mls"> icon-playlist_add_check</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e065" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe065;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="playlist_add_check" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-playlist_play">
-
- </span>
- <span class="mls"> icon-playlist_play</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e05f" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe05f;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="playlist_play" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-plus_one">
-
- </span>
- <span class="mls"> icon-plus_one</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e800" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe800;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="plus_one" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-polymer">
-
- </span>
- <span class="mls"> icon-polymer</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8ab" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8ab;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="polymer" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-pool">
-
- </span>
- <span class="mls"> icon-pool</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="eb48" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xeb48;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="pool" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-portable_wifi_off">
-
- </span>
- <span class="mls"> icon-portable_wifi_off</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0ce" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0ce;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="portable_wifi_off" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-portrait">
-
- </span>
- <span class="mls"> icon-portrait</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e416" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe416;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="portrait" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-power">
-
- </span>
- <span class="mls"> icon-power</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e63c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe63c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="power" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-power_input">
-
- </span>
- <span class="mls"> icon-power_input</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e336" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe336;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="power_input" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-power_settings_new">
-
- </span>
- <span class="mls"> icon-power_settings_new</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8ac" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8ac;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="power_settings_new" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-pregnant_woman">
-
- </span>
- <span class="mls"> icon-pregnant_woman</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e91e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe91e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="pregnant_woman" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-present_to_all">
-
- </span>
- <span class="mls"> icon-present_to_all</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0df" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0df;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="present_to_all" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-priority_high">
-
- </span>
- <span class="mls"> icon-priority_high</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e645" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe645;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="priority_high" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-public">
-
- </span>
- <span class="mls"> icon-public</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e80b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe80b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="public" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-publish">
-
- </span>
- <span class="mls"> icon-publish</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e255" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe255;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="publish" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-queue_music">
-
- </span>
- <span class="mls"> icon-queue_music</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e03d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe03d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="queue_music" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-queue_play_next">
-
- </span>
- <span class="mls"> icon-queue_play_next</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e066" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe066;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="queue_play_next" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-radio">
-
- </span>
- <span class="mls"> icon-radio</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e03e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe03e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="radio" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-radio_button_checked">
-
- </span>
- <span class="mls"> icon-radio_button_checked</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e837" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe837;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="radio_button_checked" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-rate_review">
-
- </span>
- <span class="mls"> icon-rate_review</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e560" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe560;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="rate_review" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-receipt">
-
- </span>
- <span class="mls"> icon-receipt</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8b0" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8b0;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="receipt" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-recent_actors">
-
- </span>
- <span class="mls"> icon-recent_actors</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e03f" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe03f;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="recent_actors" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-record_voice_over">
-
- </span>
- <span class="mls"> icon-record_voice_over</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e91f" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe91f;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="record_voice_over" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-redo">
-
- </span>
- <span class="mls"> icon-redo</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e15a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe15a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="redo" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-refresh">
-
- </span>
- <span class="mls"> icon-refresh</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e5d5" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe5d5;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="refresh" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-remove">
-
- </span>
- <span class="mls"> icon-remove</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e15b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe15b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="remove" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-remove_circle_outline">
-
- </span>
- <span class="mls"> icon-remove_circle_outline</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e15d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe15d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="remove_circle_outline" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-remove_from_queue">
-
- </span>
- <span class="mls"> icon-remove_from_queue</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e067" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe067;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="remove_from_queue" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-visibility">
-
- </span>
- <span class="mls"> icon-visibility</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8f4" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8f4;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="remove_red_eye, visibility" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-remove_shopping_cart">
-
- </span>
- <span class="mls"> icon-remove_shopping_cart</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e928" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe928;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="remove_shopping_cart" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-reorder">
-
- </span>
- <span class="mls"> icon-reorder</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8fe" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8fe;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="reorder" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-repeat">
-
- </span>
- <span class="mls"> icon-repeat</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e040" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe040;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="repeat" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-repeat_one">
-
- </span>
- <span class="mls"> icon-repeat_one</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e041" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe041;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="repeat_one" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-replay">
-
- </span>
- <span class="mls"> icon-replay</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e042" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe042;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="replay" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-replay_10">
-
- </span>
- <span class="mls"> icon-replay_10</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e059" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe059;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="replay_10" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-replay_30">
-
- </span>
- <span class="mls"> icon-replay_30</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e05a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe05a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="replay_30" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-replay_5">
-
- </span>
- <span class="mls"> icon-replay_5</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e05b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe05b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="replay_5" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-reply">
-
- </span>
- <span class="mls"> icon-reply</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e15e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe15e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="reply" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-reply_all">
-
- </span>
- <span class="mls"> icon-reply_all</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e15f" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe15f;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="reply_all" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-report">
-
- </span>
- <span class="mls"> icon-report</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e160" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe160;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="report" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-warning">
-
- </span>
- <span class="mls"> icon-warning</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e002" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe002;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="report_problem, warning" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-restaurant">
-
- </span>
- <span class="mls"> icon-restaurant</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e56c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe56c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="restaurant" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-restore_page">
-
- </span>
- <span class="mls"> icon-restore_page</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e929" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe929;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="restore_page" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-ring_volume">
-
- </span>
- <span class="mls"> icon-ring_volume</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0d1" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0d1;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="ring_volume" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-room_service">
-
- </span>
- <span class="mls"> icon-room_service</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="eb49" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xeb49;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="room_service" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-rotate_90_degrees_ccw">
-
- </span>
- <span class="mls"> icon-rotate_90_degrees_ccw</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e418" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe418;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="rotate_90_degrees_ccw" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-rotate_left">
-
- </span>
- <span class="mls"> icon-rotate_left</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e419" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe419;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="rotate_left" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-rotate_right">
-
- </span>
- <span class="mls"> icon-rotate_right</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e41a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe41a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="rotate_right" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-rounded_corner">
-
- </span>
- <span class="mls"> icon-rounded_corner</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e920" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe920;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="rounded_corner" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-router">
-
- </span>
- <span class="mls"> icon-router</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e328" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe328;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="router" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-rowing">
-
- </span>
- <span class="mls"> icon-rowing</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e921" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe921;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="rowing" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-rss_feed">
-
- </span>
- <span class="mls"> icon-rss_feed</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0e5" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0e5;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="rss_feed" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-rv_hookup">
-
- </span>
- <span class="mls"> icon-rv_hookup</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e642" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe642;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="rv_hookup" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-satellite">
-
- </span>
- <span class="mls"> icon-satellite</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e562" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe562;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="satellite" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-save">
-
- </span>
- <span class="mls"> icon-save</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e161" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe161;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="save" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-scanner">
-
- </span>
- <span class="mls"> icon-scanner</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e329" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe329;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="scanner" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-school">
-
- </span>
- <span class="mls"> icon-school</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e80c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe80c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="school" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-screen_lock_landscape">
-
- </span>
- <span class="mls"> icon-screen_lock_landscape</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1be" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1be;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="screen_lock_landscape" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-screen_lock_portrait">
-
- </span>
- <span class="mls"> icon-screen_lock_portrait</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1bf" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1bf;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="screen_lock_portrait" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-screen_lock_rotation">
-
- </span>
- <span class="mls"> icon-screen_lock_rotation</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1c0" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1c0;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="screen_lock_rotation" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-screen_rotation">
-
- </span>
- <span class="mls"> icon-screen_rotation</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1c1" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1c1;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="screen_rotation" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-screen_share">
-
- </span>
- <span class="mls"> icon-screen_share</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0e2" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0e2;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="screen_share" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-sd_storage">
-
- </span>
- <span class="mls"> icon-sd_storage</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1c2" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1c2;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="sd_card, sd_storage" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-search">
-
- </span>
- <span class="mls"> icon-search</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8b6" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8b6;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="search" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-security">
-
- </span>
- <span class="mls"> icon-security</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e32a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe32a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="security" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-select_all">
-
- </span>
- <span class="mls"> icon-select_all</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e162" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe162;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="select_all" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-send">
-
- </span>
- <span class="mls"> icon-send</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e163" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe163;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="send" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-sentiment_dissatisfied">
-
- </span>
- <span class="mls"> icon-sentiment_dissatisfied</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e811" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe811;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="sentiment_dissatisfied" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-sentiment_neutral">
-
- </span>
- <span class="mls"> icon-sentiment_neutral</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e812" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe812;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="sentiment_neutral" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-sentiment_satisfied">
-
- </span>
- <span class="mls"> icon-sentiment_satisfied</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e813" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe813;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="sentiment_satisfied" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-sentiment_very_dissatisfied">
-
- </span>
- <span class="mls"> icon-sentiment_very_dissatisfied</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e814" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe814;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="sentiment_very_dissatisfied" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-sentiment_very_satisfied">
-
- </span>
- <span class="mls"> icon-sentiment_very_satisfied</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e815" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe815;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="sentiment_very_satisfied" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-settings">
-
- </span>
- <span class="mls"> icon-settings</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8b8" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8b8;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="settings" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-settings_applications">
-
- </span>
- <span class="mls"> icon-settings_applications</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8b9" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8b9;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="settings_applications" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-settings_backup_restore">
-
- </span>
- <span class="mls"> icon-settings_backup_restore</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8ba" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8ba;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="settings_backup_restore" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-settings_bluetooth">
-
- </span>
- <span class="mls"> icon-settings_bluetooth</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8bb" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8bb;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="settings_bluetooth" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-settings_brightness">
-
- </span>
- <span class="mls"> icon-settings_brightness</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8bd" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8bd;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="settings_brightness" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-settings_cell">
-
- </span>
- <span class="mls"> icon-settings_cell</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8bc" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8bc;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="settings_cell" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-settings_ethernet">
-
- </span>
- <span class="mls"> icon-settings_ethernet</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8be" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8be;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="settings_ethernet" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-settings_input_antenna">
-
- </span>
- <span class="mls"> icon-settings_input_antenna</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8bf" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8bf;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="settings_input_antenna" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-settings_input_composite">
-
- </span>
- <span class="mls"> icon-settings_input_composite</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8c1" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8c1;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="settings_input_component, settings_input_composite" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-settings_input_hdmi">
-
- </span>
- <span class="mls"> icon-settings_input_hdmi</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8c2" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8c2;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="settings_input_hdmi" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-settings_input_svideo">
-
- </span>
- <span class="mls"> icon-settings_input_svideo</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8c3" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8c3;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="settings_input_svideo" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-settings_overscan">
-
- </span>
- <span class="mls"> icon-settings_overscan</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8c4" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8c4;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="settings_overscan" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-settings_phone">
-
- </span>
- <span class="mls"> icon-settings_phone</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8c5" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8c5;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="settings_phone" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-settings_power">
-
- </span>
- <span class="mls"> icon-settings_power</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8c6" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8c6;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="settings_power" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-settings_remote">
-
- </span>
- <span class="mls"> icon-settings_remote</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8c7" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8c7;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="settings_remote" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-settings_system_daydream">
-
- </span>
- <span class="mls"> icon-settings_system_daydream</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1c3" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1c3;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="settings_system_daydream" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-settings_voice">
-
- </span>
- <span class="mls"> icon-settings_voice</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8c8" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8c8;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="settings_voice" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-share">
-
- </span>
- <span class="mls"> icon-share</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e80d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe80d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="share" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-shop">
-
- </span>
- <span class="mls"> icon-shop</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8c9" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8c9;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="shop" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-shop_two">
-
- </span>
- <span class="mls"> icon-shop_two</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8ca" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8ca;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="shop_two" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-shopping_basket">
-
- </span>
- <span class="mls"> icon-shopping_basket</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8cb" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8cb;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="shopping_basket" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-short_text">
-
- </span>
- <span class="mls"> icon-short_text</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e261" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe261;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="short_text" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-show_chart">
-
- </span>
- <span class="mls"> icon-show_chart</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e6e1" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe6e1;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="show_chart" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-shuffle">
-
- </span>
- <span class="mls"> icon-shuffle</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e043" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe043;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="shuffle" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-signal_cellular_4_bar">
-
- </span>
- <span class="mls"> icon-signal_cellular_4_bar</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1c8" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1c8;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="signal_cellular_4_bar" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-signal_cellular_connected_no_internet_4_bar">
-
- </span>
- <span class="mls"> icon-signal_cellular_connected_no_internet_4_bar</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1cd" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1cd;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="signal_cellular_connected_no_internet_4_bar" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-signal_cellular_null">
-
- </span>
- <span class="mls"> icon-signal_cellular_null</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1cf" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1cf;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="signal_cellular_null" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-signal_cellular_off">
-
- </span>
- <span class="mls"> icon-signal_cellular_off</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1d0" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1d0;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="signal_cellular_off" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-signal_wifi_4_bar">
-
- </span>
- <span class="mls"> icon-signal_wifi_4_bar</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1d8" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1d8;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="signal_wifi_4_bar" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-signal_wifi_4_bar_lock">
-
- </span>
- <span class="mls"> icon-signal_wifi_4_bar_lock</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1d9" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1d9;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="signal_wifi_4_bar_lock" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-signal_wifi_off">
-
- </span>
- <span class="mls"> icon-signal_wifi_off</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1da" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1da;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="signal_wifi_off" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-sim_card">
-
- </span>
- <span class="mls"> icon-sim_card</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e32b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe32b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="sim_card" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-sim_card_alert">
-
- </span>
- <span class="mls"> icon-sim_card_alert</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e624" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe624;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="sim_card_alert" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-skip_next">
-
- </span>
- <span class="mls"> icon-skip_next</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e044" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe044;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="skip_next" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-skip_previous">
-
- </span>
- <span class="mls"> icon-skip_previous</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e045" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe045;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="skip_previous" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-slideshow">
-
- </span>
- <span class="mls"> icon-slideshow</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e41b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe41b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="slideshow" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-slow_motion_video">
-
- </span>
- <span class="mls"> icon-slow_motion_video</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e068" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe068;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="slow_motion_video" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-stay_primary_portrait">
-
- </span>
- <span class="mls"> icon-stay_primary_portrait</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0d6" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0d6;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="smartphone, stay_current_portrait, stay_primary_portrait" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-smoke_free">
-
- </span>
- <span class="mls"> icon-smoke_free</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="eb4a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xeb4a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="smoke_free" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-smoking_rooms">
-
- </span>
- <span class="mls"> icon-smoking_rooms</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="eb4b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xeb4b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="smoking_rooms" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-textsms">
-
- </span>
- <span class="mls"> icon-textsms</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0d8" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0d8;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="sms, textsms" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-snooze">
-
- </span>
- <span class="mls"> icon-snooze</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e046" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe046;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="snooze" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-sort">
-
- </span>
- <span class="mls"> icon-sort</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e164" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe164;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="sort" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-sort_by_alpha">
-
- </span>
- <span class="mls"> icon-sort_by_alpha</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e053" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe053;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="sort_by_alpha" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-spa">
-
- </span>
- <span class="mls"> icon-spa</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="eb4c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xeb4c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="spa" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-space_bar">
-
- </span>
- <span class="mls"> icon-space_bar</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e256" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe256;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="space_bar" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-speaker">
-
- </span>
- <span class="mls"> icon-speaker</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e32d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe32d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="speaker" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-speaker_group">
-
- </span>
- <span class="mls"> icon-speaker_group</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e32e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe32e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="speaker_group" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-speaker_notes">
-
- </span>
- <span class="mls"> icon-speaker_notes</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8cd" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8cd;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="speaker_notes" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-speaker_notes_off">
-
- </span>
- <span class="mls"> icon-speaker_notes_off</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e92a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe92a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="speaker_notes_off" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-speaker_phone">
-
- </span>
- <span class="mls"> icon-speaker_phone</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0d2" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0d2;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="speaker_phone" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-spellcheck">
-
- </span>
- <span class="mls"> icon-spellcheck</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8ce" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8ce;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="spellcheck" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-star_border">
-
- </span>
- <span class="mls"> icon-star_border</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e83a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe83a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="star_border" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-star_half">
-
- </span>
- <span class="mls"> icon-star_half</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e839" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe839;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="star_half" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-stars">
-
- </span>
- <span class="mls"> icon-stars</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8d0" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8d0;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="stars" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-stay_primary_landscape">
-
- </span>
- <span class="mls"> icon-stay_primary_landscape</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0d5" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0d5;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="stay_current_landscape, stay_primary_landscape" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-stop">
-
- </span>
- <span class="mls"> icon-stop</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e047" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe047;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="stop" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-stop_screen_share">
-
- </span>
- <span class="mls"> icon-stop_screen_share</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0e3" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0e3;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="stop_screen_share" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-storage">
-
- </span>
- <span class="mls"> icon-storage</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1db" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1db;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="storage" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-store_mall_directory">
-
- </span>
- <span class="mls"> icon-store_mall_directory</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e563" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe563;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="store, store_mall_directory" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-straighten">
-
- </span>
- <span class="mls"> icon-straighten</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e41c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe41c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="straighten" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-streetview">
-
- </span>
- <span class="mls"> icon-streetview</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e56e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe56e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="streetview" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-strikethrough_s">
-
- </span>
- <span class="mls"> icon-strikethrough_s</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e257" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe257;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="strikethrough_s" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-style">
-
- </span>
- <span class="mls"> icon-style</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e41d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe41d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="style" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-subdirectory_arrow_left">
-
- </span>
- <span class="mls"> icon-subdirectory_arrow_left</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e5d9" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe5d9;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="subdirectory_arrow_left" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-subdirectory_arrow_right">
-
- </span>
- <span class="mls"> icon-subdirectory_arrow_right</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e5da" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe5da;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="subdirectory_arrow_right" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-subject">
-
- </span>
- <span class="mls"> icon-subject</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8d2" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8d2;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="subject" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-subscriptions">
-
- </span>
- <span class="mls"> icon-subscriptions</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e064" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe064;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="subscriptions" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-subtitles">
-
- </span>
- <span class="mls"> icon-subtitles</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e048" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe048;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="subtitles" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-subway">
-
- </span>
- <span class="mls"> icon-subway</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e56f" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe56f;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="subway" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-supervisor_account">
-
- </span>
- <span class="mls"> icon-supervisor_account</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8d3" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8d3;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="supervisor_account" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-surround_sound">
-
- </span>
- <span class="mls"> icon-surround_sound</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e049" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe049;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="surround_sound" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-swap_calls">
-
- </span>
- <span class="mls"> icon-swap_calls</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0d7" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0d7;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="swap_calls" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-swap_horiz">
-
- </span>
- <span class="mls"> icon-swap_horiz</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8d4" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8d4;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="swap_horiz" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-swap_vert">
-
- </span>
- <span class="mls"> icon-swap_vert</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8d5" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8d5;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="swap_vert" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-swap_vertical_circle">
-
- </span>
- <span class="mls"> icon-swap_vertical_circle</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8d6" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8d6;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="swap_vertical_circle" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-switch_camera">
-
- </span>
- <span class="mls"> icon-switch_camera</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e41e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe41e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="switch_camera" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-switch_video">
-
- </span>
- <span class="mls"> icon-switch_video</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e41f" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe41f;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="switch_video" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-sync_disabled">
-
- </span>
- <span class="mls"> icon-sync_disabled</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e628" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe628;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="sync_disabled" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-sync_problem">
-
- </span>
- <span class="mls"> icon-sync_problem</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e629" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe629;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="sync_problem" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-system_update">
-
- </span>
- <span class="mls"> icon-system_update</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e62a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe62a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="system_update" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-system_update_alt">
-
- </span>
- <span class="mls"> icon-system_update_alt</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8d7" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8d7;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="system_update_alt" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-tab">
-
- </span>
- <span class="mls"> icon-tab</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8d8" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8d8;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="tab" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-tab_unselected">
-
- </span>
- <span class="mls"> icon-tab_unselected</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8d9" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8d9;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="tab_unselected" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-tablet">
-
- </span>
- <span class="mls"> icon-tablet</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e32f" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe32f;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="tablet" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-tablet_android">
-
- </span>
- <span class="mls"> icon-tablet_android</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e330" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe330;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="tablet_android" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-tablet_mac">
-
- </span>
- <span class="mls"> icon-tablet_mac</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e331" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe331;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="tablet_mac" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-tap_and_play">
-
- </span>
- <span class="mls"> icon-tap_and_play</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e62b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe62b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="tap_and_play" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-text_fields">
-
- </span>
- <span class="mls"> icon-text_fields</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e262" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe262;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="text_fields" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-text_format">
-
- </span>
- <span class="mls"> icon-text_format</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e165" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe165;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="text_format" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-texture">
-
- </span>
- <span class="mls"> icon-texture</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e421" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe421;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="texture" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-thumb_down">
-
- </span>
- <span class="mls"> icon-thumb_down</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8db" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8db;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="thumb_down" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-thumb_up">
-
- </span>
- <span class="mls"> icon-thumb_up</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8dc" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8dc;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="thumb_up" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-thumbs_up_down">
-
- </span>
- <span class="mls"> icon-thumbs_up_down</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8dd" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8dd;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="thumbs_up_down" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-timelapse">
-
- </span>
- <span class="mls"> icon-timelapse</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e422" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe422;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="timelapse" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-timeline">
-
- </span>
- <span class="mls"> icon-timeline</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e922" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe922;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="timeline" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-timer">
-
- </span>
- <span class="mls"> icon-timer</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e425" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe425;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="timer" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-timer_10">
-
- </span>
- <span class="mls"> icon-timer_10</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e423" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe423;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="timer_10" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-timer_3">
-
- </span>
- <span class="mls"> icon-timer_3</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e424" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe424;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="timer_3" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-timer_off">
-
- </span>
- <span class="mls"> icon-timer_off</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e426" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe426;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="timer_off" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-title">
-
- </span>
- <span class="mls"> icon-title</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e264" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe264;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="title" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-toc">
-
- </span>
- <span class="mls"> icon-toc</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8de" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8de;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="toc" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-today">
-
- </span>
- <span class="mls"> icon-today</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8df" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8df;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="today" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-toll">
-
- </span>
- <span class="mls"> icon-toll</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8e0" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8e0;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="toll" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-tonality">
-
- </span>
- <span class="mls"> icon-tonality</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e427" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe427;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="tonality" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-touch_app">
-
- </span>
- <span class="mls"> icon-touch_app</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e913" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe913;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="touch_app" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-toys">
-
- </span>
- <span class="mls"> icon-toys</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e332" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe332;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="toys" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-track_changes">
-
- </span>
- <span class="mls"> icon-track_changes</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8e1" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8e1;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="track_changes" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-traffic">
-
- </span>
- <span class="mls"> icon-traffic</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e565" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe565;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="traffic" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-train">
-
- </span>
- <span class="mls"> icon-train</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e570" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe570;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="train" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-tram">
-
- </span>
- <span class="mls"> icon-tram</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e571" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe571;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="tram" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-transfer_within_a_station">
-
- </span>
- <span class="mls"> icon-transfer_within_a_station</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e572" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe572;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="transfer_within_a_station" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-transform">
-
- </span>
- <span class="mls"> icon-transform</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e428" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe428;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="transform" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-translate">
-
- </span>
- <span class="mls"> icon-translate</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8e2" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8e2;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="translate" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-trending_down">
-
- </span>
- <span class="mls"> icon-trending_down</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8e3" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8e3;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="trending_down" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-trending_flat">
-
- </span>
- <span class="mls"> icon-trending_flat</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8e4" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8e4;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="trending_flat" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-trending_up">
-
- </span>
- <span class="mls"> icon-trending_up</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8e5" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8e5;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="trending_up" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-tune">
-
- </span>
- <span class="mls"> icon-tune</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e429" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe429;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="tune" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-tv">
-
- </span>
- <span class="mls"> icon-tv</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e333" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe333;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="tv" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-unarchive">
-
- </span>
- <span class="mls"> icon-unarchive</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e169" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe169;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="unarchive" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-undo">
-
- </span>
- <span class="mls"> icon-undo</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e166" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe166;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="undo" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-unfold_less">
-
- </span>
- <span class="mls"> icon-unfold_less</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e5d6" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe5d6;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="unfold_less" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-unfold_more">
-
- </span>
- <span class="mls"> icon-unfold_more</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e5d7" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe5d7;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="unfold_more" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-update">
-
- </span>
- <span class="mls"> icon-update</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e923" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe923;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="update" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-usb">
-
- </span>
- <span class="mls"> icon-usb</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1e0" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1e0;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="usb" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-verified_user">
-
- </span>
- <span class="mls"> icon-verified_user</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8e8" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8e8;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="verified_user" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-vertical_align_bottom">
-
- </span>
- <span class="mls"> icon-vertical_align_bottom</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e258" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe258;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="vertical_align_bottom" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-vertical_align_center">
-
- </span>
- <span class="mls"> icon-vertical_align_center</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e259" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe259;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="vertical_align_center" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-vertical_align_top">
-
- </span>
- <span class="mls"> icon-vertical_align_top</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e25a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe25a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="vertical_align_top" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-vibration">
-
- </span>
- <span class="mls"> icon-vibration</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e62d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe62d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="vibration" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-video_call">
-
- </span>
- <span class="mls"> icon-video_call</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e070" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe070;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="video_call" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-video_label">
-
- </span>
- <span class="mls"> icon-video_label</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e071" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe071;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="video_label" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-video_library">
-
- </span>
- <span class="mls"> icon-video_library</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e04a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe04a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="video_library" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-videocam">
-
- </span>
- <span class="mls"> icon-videocam</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e04b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe04b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="videocam" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-videocam_off">
-
- </span>
- <span class="mls"> icon-videocam_off</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e04c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe04c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="videocam_off" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-videogame_asset">
-
- </span>
- <span class="mls"> icon-videogame_asset</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e338" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe338;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="videogame_asset" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-view_agenda">
-
- </span>
- <span class="mls"> icon-view_agenda</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8e9" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8e9;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="view_agenda" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-view_array">
-
- </span>
- <span class="mls"> icon-view_array</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8ea" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8ea;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="view_array" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-view_carousel">
-
- </span>
- <span class="mls"> icon-view_carousel</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8eb" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8eb;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="view_carousel" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-view_column">
-
- </span>
- <span class="mls"> icon-view_column</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8ec" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8ec;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="view_column" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-view_comfy">
-
- </span>
- <span class="mls"> icon-view_comfy</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e42a" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe42a;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="view_comfy" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-view_compact">
-
- </span>
- <span class="mls"> icon-view_compact</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e42b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe42b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="view_compact" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-view_day">
-
- </span>
- <span class="mls"> icon-view_day</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8ed" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8ed;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="view_day" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-view_headline">
-
- </span>
- <span class="mls"> icon-view_headline</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8ee" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8ee;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="view_headline" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-view_list">
-
- </span>
- <span class="mls"> icon-view_list</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8ef" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8ef;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="view_list" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-view_module">
-
- </span>
- <span class="mls"> icon-view_module</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8f0" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8f0;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="view_module" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-view_quilt">
-
- </span>
- <span class="mls"> icon-view_quilt</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8f1" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8f1;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="view_quilt" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-view_stream">
-
- </span>
- <span class="mls"> icon-view_stream</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8f2" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8f2;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="view_stream" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-view_week">
-
- </span>
- <span class="mls"> icon-view_week</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8f3" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8f3;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="view_week" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-vignette">
-
- </span>
- <span class="mls"> icon-vignette</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e435" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe435;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="vignette" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-visibility_off">
-
- </span>
- <span class="mls"> icon-visibility_off</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8f5" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8f5;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="visibility_off" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-voice_chat">
-
- </span>
- <span class="mls"> icon-voice_chat</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e62e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe62e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="voice_chat" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-voicemail">
-
- </span>
- <span class="mls"> icon-voicemail</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0d9" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0d9;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="voicemail" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-volume_down">
-
- </span>
- <span class="mls"> icon-volume_down</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e04d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe04d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="volume_down" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-volume_mute">
-
- </span>
- <span class="mls"> icon-volume_mute</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e04e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe04e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="volume_mute" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-volume_off">
-
- </span>
- <span class="mls"> icon-volume_off</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e04f" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe04f;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="volume_off" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-volume_up">
-
- </span>
- <span class="mls"> icon-volume_up</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e050" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe050;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="volume_up" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-vpn_key">
-
- </span>
- <span class="mls"> icon-vpn_key</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e0da" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe0da;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="vpn_key" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-vpn_lock">
-
- </span>
- <span class="mls"> icon-vpn_lock</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e62f" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe62f;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="vpn_lock" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-wallpaper">
-
- </span>
- <span class="mls"> icon-wallpaper</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1bc" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1bc;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="wallpaper" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-watch">
-
- </span>
- <span class="mls"> icon-watch</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e334" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe334;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="watch" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-watch_later">
-
- </span>
- <span class="mls"> icon-watch_later</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e924" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe924;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="watch_later" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-wb_auto">
-
- </span>
- <span class="mls"> icon-wb_auto</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e42c" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe42c;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="wb_auto" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-wb_incandescent">
-
- </span>
- <span class="mls"> icon-wb_incandescent</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e42e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe42e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="wb_incandescent" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-wb_iridescent">
-
- </span>
- <span class="mls"> icon-wb_iridescent</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e436" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe436;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="wb_iridescent" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-wb_sunny">
-
- </span>
- <span class="mls"> icon-wb_sunny</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e430" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe430;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="wb_sunny" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-wc">
-
- </span>
- <span class="mls"> icon-wc</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e63d" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe63d;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="wc" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-web">
-
- </span>
- <span class="mls"> icon-web</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e051" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe051;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="web" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-web_asset">
-
- </span>
- <span class="mls"> icon-web_asset</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e069" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe069;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="web_asset" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-weekend">
-
- </span>
- <span class="mls"> icon-weekend</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e16b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe16b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="weekend" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-whatshot">
-
- </span>
- <span class="mls"> icon-whatshot</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e80e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe80e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="whatshot" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-widgets">
-
- </span>
- <span class="mls"> icon-widgets</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1bd" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1bd;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="widgets" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-wifi">
-
- </span>
- <span class="mls"> icon-wifi</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e63e" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe63e;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="wifi" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-wifi_lock">
-
- </span>
- <span class="mls"> icon-wifi_lock</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1e1" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1e1;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="wifi_lock" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-wifi_tethering">
-
- </span>
- <span class="mls"> icon-wifi_tethering</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e1e2" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe1e2;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="wifi_tethering" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-work">
-
- </span>
- <span class="mls"> icon-work</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8f9" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8f9;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="work" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-wrap_text">
-
- </span>
- <span class="mls"> icon-wrap_text</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e25b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe25b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="wrap_text" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-youtube_searched_for">
-
- </span>
- <span class="mls"> icon-youtube_searched_for</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8fa" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8fa;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="youtube_searched_for" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-zoom_in">
-
- </span>
- <span class="mls"> icon-zoom_in</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e8ff" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe8ff;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="zoom_in" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-zoom_out">
-
- </span>
- <span class="mls"> icon-zoom_out</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e901" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe901;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="zoom_out" class="liga unitRight" />
- </div>
- </div>
- <div class="glyph fs1">
- <div class="clearfix bshadow0 pbs">
- <span class="icon-zoom_out_map">
-
- </span>
- <span class="mls"> icon-zoom_out_map</span>
- </div>
- <fieldset class="fs0 size1of1 clearfix hidden-false">
- <input type="text" readonly value="e56b" class="unit size1of2" />
- <input type="text" maxlength="1" readonly value="&#xe56b;" class="unitRight size1of2 talign-right" />
- </fieldset>
- <div class="fs0 bshadow0 clearfix hidden-true">
- <span class="unit pvs fgc1">liga: </span>
- <input type="text" readonly value="zoom_out_map" class="liga unitRight" />
- </div>
- </div>
- </div>
-
- <!--[if gt IE 8]><!-->
- <div class="mhl clearfix mbl">
- <h1>Font Test Drive</h1>
- <label>
- Font Size: <input id="fontSize" type="number" class="textbox0 mbm"
- min="8" value="48" />
- px
- </label>
- <input id="testText" type="text" class="phl size1of1 mvl"
- placeholder="Type some text to test..." value=""/>
- </label>
- <div id="testDrive" class="icon-">&nbsp;
- </div>
- </div>
- <!--<![endif]-->
- <div class="bgc1 clearfix">
- <p class="mhl">Generated by <a href="https://icomoon.io/app">IcoMoon</a></p>
- </div>
-
-</body>
-</html>
diff --git a/docs/font/fonts/icomoon.eot b/docs/font/fonts/icomoon.eot
deleted file mode 100755
index a0bfac4..0000000
--- a/docs/font/fonts/icomoon.eot
+++ /dev/null
Binary files differ
diff --git a/docs/font/fonts/icomoon.svg b/docs/font/fonts/icomoon.svg
deleted file mode 100755
index cce5635..0000000
--- a/docs/font/fonts/icomoon.svg
+++ /dev/null
@@ -1,855 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
-<svg xmlns="http://www.w3.org/2000/svg">
-<metadata>Generated by IcoMoon</metadata>
-<defs>
-<font id="icomoon" horiz-adv-x="1024">
-<font-face units-per-em="1024" ascent="960" descent="-64" />
-<missing-glyph horiz-adv-x="1024" />
-<glyph unicode="&#x20;" horiz-adv-x="512" d="" />
-<glyph unicode="&#xe000;" glyph-name="error" d="M554 384.667v256h-84v-256h84zM554 212.667v86h-84v-86h84zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426z" />
-<glyph unicode="&#xe001;" glyph-name="error_outline" d="M512 84.667c188 0 342 154 342 342s-154 342-342 342-342-154-342-342 154-342 342-342zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426zM470 640.667h84v-256h-84v256zM470 298.667h84v-86h-84v86z" />
-<glyph unicode="&#xe002;" glyph-name="warning" d="M554 340.667v172h-84v-172h84zM554 170.667v86h-84v-86h84zM42 42.667l470 810 470-810h-940z" />
-<glyph unicode="&#xe003;" glyph-name="add_alert" d="M682 382.667v86h-128v128h-84v-128h-128v-86h128v-128h84v128h128zM806 220.667l90-90v-46h-768v46l90 90v248c0 138 96 256 226 286v30c0 38 30 68 68 68s68-30 68-68v-30c130-30 226-148 226-286v-248zM428 42.667h168c0-46-38-86-84-86s-84 40-84 86z" />
-<glyph unicode="&#xe019;" glyph-name="album" d="M512 468.667c24 0 42-18 42-42s-18-42-42-42-42 18-42 42 18 42 42 42zM512 234.667c106 0 192 86 192 192s-86 192-192 192-192-86-192-192 86-192 192-192zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426z" />
-<glyph unicode="&#xe01b;" glyph-name="av_timer" d="M256 426.667c0 24 18 42 42 42s44-18 44-42-20-42-44-42-42 18-42 42zM768 426.667c0-24-18-42-42-42s-44 18-44 42 20 42 44 42 42-18 42-42zM470 810.667h42c212 0 384-172 384-384s-172-384-384-384-384 172-384 384c0 126 60 236 154 306v2l290-290-60-60-232 230c-42-52-66-116-66-188 0-166 132-298 298-298s298 132 298 298c0 150-112 276-256 296v-82h-84v170zM470 212.667c0 24 18 44 42 44s42-20 42-44-18-42-42-42-42 18-42 42z" />
-<glyph unicode="&#xe01c;" glyph-name="closed_caption" d="M768 468.667v44c0 24-18 42-42 42h-128c-24 0-44-18-44-42v-172c0-24 20-42 44-42h128c24 0 42 18 42 42v44h-64v-22h-86v128h86v-22h64zM470 468.667v44c0 24-20 42-44 42h-128c-24 0-42-18-42-42v-172c0-24 18-42 42-42h128c24 0 44 18 44 42v44h-64v-22h-86v128h86v-22h64zM810 768.667c46 0 86-40 86-86v-512c0-46-40-86-86-86h-596c-48 0-86 40-86 86v512c0 46 38 86 86 86h596z" />
-<glyph unicode="&#xe01d;" glyph-name="equalizer" d="M682 554.667h172v-470h-172v470zM170 84.667v342h172v-342h-172zM426 84.667v684h172v-684h-172z" />
-<glyph unicode="&#xe01e;" glyph-name="explicit" d="M640 554.667v86h-256v-428h256v86h-170v86h170v84h-170v86h170zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-46 0-86 40-86 86v596c0 46 40 86 86 86h596z" />
-<glyph unicode="&#xe01f;" glyph-name="fast_forward" d="M554 682.667l364-256-364-256v512zM170 170.667v512l364-256z" />
-<glyph unicode="&#xe020;" glyph-name="fast_rewind" d="M490 426.667l364 256v-512zM470 170.667l-364 256 364 256v-512z" />
-<glyph unicode="&#xe021;" glyph-name="games" d="M704 554.667h234v-256h-234l-128 128zM384 234.667l128 128 128-128v-234h-256v234zM320 554.667l128-128-128-128h-234v256h234zM640 618.667l-128-128-128 128v234h256v-234z" />
-<glyph unicode="&#xe023;" glyph-name="hearing" d="M490 554.667c0 58 50 106 108 106s106-48 106-106-48-106-106-106-108 48-108 106zM326 826.667c-70-70-112-166-112-272s42-202 112-272l-60-60c-84 84-138 202-138 332s54 248 138 332zM726 84.667c46 0 84 40 84 86h86c0-94-76-170-170-170-24 0-48 4-70 14-58 30-92 74-118 152-14 42-38 62-72 88-38 28-84 64-122 134-30 54-46 112-46 166 0 168 132 298 300 298s298-130 298-298h-86c0 120-92 214-212 214s-214-94-214-214c0-40 12-86 34-126 30-56 66-82 100-108 40-30 80-62 102-128 22-64 42-84 72-100 8-4 22-8 34-8z" />
-<glyph unicode="&#xe024;" glyph-name="high_quality" d="M618 362.667v128h86v-128h-86zM768 340.667v172c0 24-18 42-42 42h-128c-24 0-44-18-44-42v-172c0-24 20-42 44-42h32v-64h64v64h32c24 0 42 18 42 42zM470 298.667v256h-64v-106h-86v106h-64v-256h64v86h86v-86h64zM810 768.667c46 0 86-40 86-86v-512c0-46-40-86-86-86h-596c-48 0-86 40-86 86v512c0 46 38 86 86 86h596z" />
-<glyph unicode="&#xe029;" glyph-name="mic" d="M738 468.667h72c0-146-116-266-256-286v-140h-84v140c-140 20-256 140-256 286h72c0-128 108-216 226-216s226 88 226 216zM512 340.667c-70 0-128 58-128 128v256c0 70 58 128 128 128s128-58 128-128v-256c0-70-58-128-128-128z" />
-<glyph unicode="&#xe02a;" glyph-name="mic_none" d="M738 468.667h72c0-146-116-266-256-286v-140h-84v140c-140 20-256 140-256 286h72c0-128 108-216 226-216s226 88 226 216zM460 728.667v-264c0-28 24-50 52-50s50 22 50 50l2 264c0 28-24 52-52 52s-52-24-52-52zM512 340.667c-70 0-128 58-128 128v256c0 70 58 128 128 128s128-58 128-128v-256c0-70-58-128-128-128z" />
-<glyph unicode="&#xe02b;" glyph-name="mic_off" d="M182 810.667l714-714-54-54-178 178c-32-20-72-32-110-38v-140h-84v140c-140 20-256 140-256 286h72c0-128 108-216 226-216 34 0 68 8 98 22l-70 70c-8-2-18-4-28-4-70 0-128 58-128 128v32l-256 256zM640 462.667l-256 254v8c0 70 58 128 128 128s128-58 128-128v-262zM810 468.667c0-50-14-98-38-140l-52 54c12 26 18 54 18 86h72z" />
-<glyph unicode="&#xe02f;" glyph-name="library_books" d="M810 640.667v84h-426v-84h426zM640 298.667v86h-256v-86h256zM810 468.667v86h-426v-86h426zM854 852.667c46 0 84-38 84-84v-512c0-46-38-86-84-86h-512c-46 0-86 40-86 86v512c0 46 40 84 86 84h512zM170 682.667v-598h598v-84h-598c-46 0-84 38-84 84v598h84z" />
-<glyph unicode="&#xe030;" glyph-name="library_music" d="M170 682.667v-598h598v-84h-598c-46 0-84 38-84 84v598h84zM768 640.667v84h-170v-234c-18 14-40 22-64 22-58 0-108-50-108-108s50-106 108-106 106 48 106 106v236h128zM854 852.667c46 0 84-38 84-84v-512c0-46-38-86-84-86h-512c-46 0-86 40-86 86v512c0 46 40 84 86 84h512z" />
-<glyph unicode="&#xe031;" glyph-name="new_releases" d="M554 384.667v256h-84v-256h84zM554 212.667v86h-84v-86h84zM982 426.667l-104-118 14-158-154-34-80-136-146 62-146-62-80 134-154 36 14 158-104 118 104 120-14 156 154 34 80 136 146-62 146 62 80-136 154-34-14-158z" />
-<glyph unicode="&#xe033;" glyph-name="not_interested" d="M782 216.667c46 58 72 132 72 210 0 188-154 342-342 342-78 0-152-26-210-72zM512 84.667c78 0 152 26 210 72l-480 480c-46-58-72-132-72-210 0-188 154-342 342-342zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426z" />
-<glyph unicode="&#xe034;" glyph-name="pause" d="M598 724.667h170v-596h-170v596zM256 128.667v596h170v-596h-170z" />
-<glyph unicode="&#xe035;" glyph-name="pause_circle_filled" d="M640 256.667v340h-86v-340h86zM470 256.667v340h-86v-340h86zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426z" />
-<glyph unicode="&#xe036;" glyph-name="pause_circle_outline" d="M554 256.667v340h86v-340h-86zM512 84.667c188 0 342 154 342 342s-154 342-342 342-342-154-342-342 154-342 342-342zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426zM384 256.667v340h86v-340h-86z" />
-<glyph unicode="&#xe037;" glyph-name="play_arrow" d="M342 724.667l468-298-468-298v596z" />
-<glyph unicode="&#xe038;" glyph-name="play_circle_filled" d="M426 234.667l256 192-256 192v-384zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426z" />
-<glyph unicode="&#xe039;" glyph-name="play_circle_outline" d="M512 84.667c188 0 342 154 342 342s-154 342-342 342-342-154-342-342 154-342 342-342zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426zM426 234.667v384l256-192z" />
-<glyph unicode="&#xe03b;" glyph-name="playlist_add" d="M86 256.667v84h340v-84h-340zM768 340.667h170v-84h-170v-172h-86v172h-170v84h170v172h86v-172zM598 682.667v-86h-512v86h512zM598 512.667v-86h-512v86h512z" />
-<glyph unicode="&#xe03c;" glyph-name="queue" d="M810 468.667v86h-170v170h-86v-170h-170v-86h170v-170h86v170h170zM854 852.667c46 0 84-38 84-84v-512c0-46-38-86-84-86h-512c-46 0-86 40-86 86v512c0 46 40 84 86 84h512zM170 682.667v-598h598v-84h-598c-46 0-84 38-84 84v598h84z" />
-<glyph unicode="&#xe03d;" glyph-name="queue_music" d="M726 682.667h212v-86h-128v-384c0-70-58-128-128-128s-128 58-128 128 58 128 128 128c14 0 30-4 44-8v350zM128 256.667v84h342v-84h-342zM640 512.667v-86h-512v86h512zM640 682.667v-86h-512v86h512z" />
-<glyph unicode="&#xe03e;" glyph-name="radio" d="M854 426.667v170h-684v-170h512v86h86v-86h86zM298 84.667c70 0 128 58 128 128s-58 128-128 128-128-58-128-128 58-128 128-128zM138 676.667l540 220 28-72-352-142h500c48 0 84-38 84-86v-512c0-46-36-84-84-84h-684c-48 0-84 38-84 84v512c0 36 20 68 52 80z" />
-<glyph unicode="&#xe03f;" glyph-name="recent_actors" d="M534 212.667v32c0 64-128 96-192 96s-192-32-192-96v-32h384zM342 608.667c-52 0-96-44-96-96s44-96 96-96 96 44 96 96-44 96-96 96zM598 724.667c24 0 42-18 42-42v-512c0-24-18-42-42-42h-512c-24 0-44 18-44 42v512c0 24 20 42 44 42h512zM726 128.667v596h84v-596h-84zM896 724.667h86v-596h-86v596z" />
-<glyph unicode="&#xe040;" glyph-name="repeat" d="M726 212.667v172h84v-256h-512v-128l-170 170 170 170v-128h428zM298 640.667v-172h-84v256h512v128l170-170-170-170v128h-428z" />
-<glyph unicode="&#xe041;" glyph-name="repeat_one" d="M554 298.667h-64v170h-64v44l86 42h42v-256zM726 212.667v172h84v-256h-512v-128l-170 170 170 170v-128h428zM298 640.667v-172h-84v256h512v128l170-170-170-170v128h-428z" />
-<glyph unicode="&#xe042;" glyph-name="replay" d="M512 724.667c188 0 342-152 342-340s-154-342-342-342-342 154-342 342h86c0-142 114-256 256-256s256 114 256 256-114 256-256 256v-172l-214 214 214 214v-172z" />
-<glyph unicode="&#xe043;" glyph-name="shuffle" d="M632 366.667l134-134 88 88v-236h-236l88 88-134 134zM618 768.667h236v-236l-88 88-536-536-60 60 536 536zM452 546.667l-60-60-222 222 60 60z" />
-<glyph unicode="&#xe044;" glyph-name="skip_next" d="M682 682.667h86v-512h-86v512zM256 170.667v512l362-256z" />
-<glyph unicode="&#xe045;" glyph-name="skip_previous" d="M406 426.667l362 256v-512zM256 682.667h86v-512h-86v512z" />
-<glyph unicode="&#xe046;" glyph-name="snooze" d="M384 468.667v86h256v-76l-154-180h154v-86h-256v78l154 178h-154zM512 84.667c166 0 298 134 298 300s-132 298-298 298-298-132-298-298 132-300 298-300zM512 768.667c212 0 384-172 384-384s-172-384-384-384-384 172-384 384 172 384 384 384zM938 694.667l-54-66-196 166 54 64zM336 794.667l-196-164-54 64 196 164z" />
-<glyph unicode="&#xe047;" glyph-name="stop" d="M256 682.667h512v-512h-512v512z" />
-<glyph unicode="&#xe048;" glyph-name="subtitles" d="M854 340.667v86h-428v-86h428zM854 170.667v86h-172v-86h172zM598 170.667v86h-428v-86h428zM170 426.667v-86h172v86h-172zM854 768.667c46 0 84-40 84-86v-512c0-46-38-86-84-86h-684c-46 0-84 40-84 86v512c0 46 38 86 84 86h684z" />
-<glyph unicode="&#xe049;" glyph-name="surround_sound" d="M512 512.667c46 0 86-40 86-86s-40-86-86-86-86 40-86 86 40 86 86 86zM754 184.667c66 66 100 154 100 242s-34 176-100 242l-62-62c50-50 76-114 76-180s-24-132-74-182zM512 256.667c94 0 170 76 170 170s-76 170-170 170-170-76-170-170 76-170 170-170zM332 246.667c-50 50-76 114-76 180s24 132 74 182l-60 60c-66-66-100-154-100-242s34-176 100-242zM854 768.667c46 0 84-40 84-86v-512c0-46-38-86-84-86h-684c-46 0-84 40-84 86v512c0 46 38 86 84 86h684z" />
-<glyph unicode="&#xe04a;" glyph-name="video_library" d="M512 320.667l256 192-256 192v-384zM854 852.667c46 0 84-38 84-84v-512c0-46-38-86-84-86h-512c-46 0-86 40-86 86v512c0 46 40 84 86 84h512zM170 682.667v-598h598v-84h-598c-46 0-84 38-84 84v598h84z" />
-<glyph unicode="&#xe04b;" glyph-name="videocam" d="M726 490.667l170 170v-468l-170 170v-150c0-24-20-42-44-42h-512c-24 0-42 18-42 42v428c0 24 18 42 42 42h512c24 0 44-18 44-42v-150z" />
-<glyph unicode="&#xe04c;" glyph-name="videocam_off" d="M140 852.667l756-756-54-54-136 136c-6-4-16-8-24-8h-512c-24 0-42 18-42 42v428c0 24 18 42 42 42h32l-116 116zM896 660.667v-456l-478 478h264c24 0 44-18 44-42v-150z" />
-<glyph unicode="&#xe04d;" glyph-name="volume_down" d="M214 554.667h170l214 214v-684l-214 214h-170v256zM790 426.667c0-76-44-140-108-172v344c64-32 108-96 108-172z" />
-<glyph unicode="&#xe04e;" glyph-name="volume_mute" d="M298 554.667h172l212 214v-684l-212 214h-172v256z" />
-<glyph unicode="&#xe04f;" glyph-name="volume_off" d="M512 768.667v-180l-90 90zM182 810.667l714-714-54-54-88 88c-46-36-98-64-156-78v88c36 10 68 28 96 50l-182 182v-288l-214 214h-170v256h202l-202 202zM810 426.667c0 136-88 250-212 286v88c172-38 298-192 298-374 0-64-16-126-44-178l-64 66c14 34 22 72 22 112zM704 426.667c0-10 0-18-2-26l-104 104v94c64-32 106-96 106-172z" />
-<glyph unicode="&#xe050;" glyph-name="volume_up" d="M598 800.667c172-38 298-192 298-374s-126-336-298-374v88c124 36 212 150 212 286s-88 250-212 286v88zM704 426.667c0-76-42-140-106-172v344c64-32 106-96 106-172zM128 554.667h170l214 214v-684l-214 214h-170v256z" />
-<glyph unicode="&#xe051;" glyph-name="web" d="M854 170.667v384h-172v-384h172zM640 384.667v170h-470v-170h470zM640 170.667v170h-470v-170h470zM854 768.667c46 0 84-40 84-86v-512c0-46-38-86-84-86h-684c-46 0-84 40-84 86v512c0 46 38 86 84 86h684z" />
-<glyph unicode="&#xe052;" glyph-name="hd" d="M618 362.667v128h86v-128h-86zM554 554.667v-256h172c24 0 42 18 42 42v172c0 24-18 42-42 42h-172zM470 298.667v256h-64v-106h-86v106h-64v-256h64v86h86v-86h64zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-48 0-86 40-86 86v596c0 46 38 86 86 86h596z" />
-<glyph unicode="&#xe053;" glyph-name="sort_by_alpha" d="M672 250.667h260v-68h-364v54l252 366h-250v68h354v-54zM212 356.667h166l-84 222zM260 670.667h70l192-488h-78l-40 104h-218l-40-104h-78zM438 112.667h198l-100-100zM638 740.667h-202l100 100z" />
-<glyph unicode="&#xe055;" glyph-name="airplay" d="M896 810.667c46 0 86-40 86-86v-512c0-46-40-84-86-84h-170v84h170v512h-768v-512h170v-84h-170c-46 0-86 38-86 84v512c0 46 40 86 86 86h768zM256 0.667l256 256 256-256h-512z" />
-<glyph unicode="&#xe056;" glyph-name="forward_10" d="M564 290.667c0-6.531 12.65-14 20-14 4 0 10 0 14 4l8 10s4 8 4 12v86c0 0-4 8-4 12 0 5.505-16.424 14-22 14-4 0-8-2-12-6l-8-8s-6-8-6-12v-86s6-8 6-12zM644 332.667c0-12 0-26-4-34l-12-26s-14-12-22-12-18-4-26-4-18 0-26 4-12 8-20 12c-13.488 6.744-18 39.492-18 60v30c0 12 0 26 4 34l14 26s12 12 20 12 18 4 26 4 18 0 26-4 14-8 22-12 8-14 12-26 4-22 4-34v-30zM466 256.667h-40v140l-42-12v30l76 24h6v-182zM170 384.667c0 188 154 340 342 340v172l214-214-214-214v172c-140 0-256-116-256-256s116-256 256-256 256 116 256 256h86c0-188-154-342-342-342s-342 154-342 342z" />
-<glyph unicode="&#xe057;" glyph-name="forward_30" d="M170 384.667c0 188 154 340 342 340v172l214-214-214-214v172c-140 0-256-116-256-256s116-256 256-256 256 116 256 256h86c0-188-154-342-342-342s-342 154-342 342zM568 290.667c0-6.531 12.65-14 20-14 4 0 10 0 14 4l8 10s4 8 4 12v86c0 0-4 8-4 12 0 5.505-16.424 14-22 14-4 0-8-2-12-6l-8-8s-4-8-4-12v-86s4-8 4-12zM652 332.667c0-12 0-26-4-34l-12-26s-14-12-22-12-18-4-26-4c-20.252 0-32.299 9.149-46 16-8 4-8 14-12 26s-6 22-6 34v30c0 12 2 26 6 34l12 26s14 12 22 12 16 4 24 4 18 0 26-4 14-8 22-12 8-14 12-26 4-22 4-34v-30zM426 362.667c16.239 0 30 9.918 30 26v8s-4 4-4 8-4 4-8 4h-22s-4-4-8-4-4-4-4-8v-8h-44c0 19.788 17.639 46 36 46 4 0 16 4 20 4 17.345 0 35.264-5.632 48-12 10.13-5.065 16-24.218 16-38v-14s-4-8-4-12-4-8-8-8-10-6-14-10c8-4 18-8 22-16s8-18 8-26 0-18-4-22-8-12-12-16-14-8-22-8-18-4-26-4-16 0-20 4-14 4-22 8c-11.162 5.581-18 27.017-18 42h36v-8s4-4 4-8 4-4 8-4h22s4 4 8 4 4 4 4 8v22s-4 4-4 8-4 4-8 4h-26v30h16z" />
-<glyph unicode="&#xe058;" glyph-name="forward_5" d="M500 358.667c-3.584-1.434-14-4.805-14-8 0-4-4-6-4-6h-26l10 94h102v-30h-74l-4-38s4 0 4 4 6 2 6 6 4 0 8 0h8c8 0 18-2 22-6s12-8 16-12c8.873-8.873 18-27.257 18-46 0-8 0-18-4-22s-6-14-14-22c-11.246-11.246-26.59-16-46-16-8 0-18 0-22 4s-12 4-20 8c-11.191 5.596-18 22.554-18 38h34c0-14.809 10.59-20 26-20 4 0 8 0 12 4l10 8s4 8 4 12v26l-4 8-10 10s-8 4-12 4h-8zM170 384.667c0 188 154 340 342 340v172l214-214-214-214v172c-140 0-256-116-256-256s116-256 256-256 256 116 256 256h86c0-188-154-342-342-342s-342 154-342 342z" />
-<glyph unicode="&#xe059;" glyph-name="replay_10" d="M564 290.667c0-6.531 12.65-14 20-14 4 0 10 0 14 4l8 10s4 8 4 12v86c0 0-4 8-4 12 0 5.505-16.424 14-22 14-4 0-8-2-12-6l-8-8s-6-8-6-12v-86s6-8 6-12zM648 332.667c0-12 0-26-4-34l-12-26s-14-12-22-12-18-4-26-4-18 0-26 4-12 8-20 12c-13.488 6.744-18 39.492-18 60v30c0 12 0 26 4 34l14 26s12 12 20 12 18 4 26 4 18 0 26-4 14-8 22-12 8-14 12-26 4-22 4-34v-30zM466 256.667h-40v140l-42-12v30l76 24h6v-182zM512 724.667c188 0 342-152 342-340s-154-342-342-342-342 154-342 342h86c0-140 116-256 256-256s256 116 256 256-116 256-256 256v-172l-214 214 214 214v-172z" />
-<glyph unicode="&#xe05a;" glyph-name="replay_30" d="M572 290.667c0-7.531 13.843-14 22-14 4 0 8 0 12 4l8 10s4 8 4 12v86c0 4-4 8-4 12 0 4.671-15.121 14-20 14-4 0-10-2-14-6l-8-8s-4-8-4-12v-86s4-8 4-12zM652 332.667c0-12 0-26-4-34l-12-26s-14-12-22-12-18-4-26-4c-20.252 0-32.299 9.149-46 16-8 4-8 14-12 26s-6 22-6 34v30c0 12 2 26 6 34l12 26s14 12 22 12 16 4 24 4 18 0 26-4 14-8 22-12 8-14 12-26 4-22 4-34v-30zM426 362.667c16.239 0 30 9.918 30 26v8s-4 4-4 8-4 4-8 4h-22s-4-4-8-4-4-4-4-8v-8h-44c0 19.788 17.639 46 36 46 4 0 16 4 20 4 17.345 0 35.264-5.632 48-12 10.13-5.065 16-24.218 16-38v-14s-4-8-4-12-4-8-8-8-10-6-14-10c8-4 18-8 22-16s8-18 8-26 0-18-4-22-8-12-12-16-14-8-22-8-18-4-26-4-16 0-20 4-14 4-22 8c-11.162 5.581-18 27.017-18 42h36v-8s4-4 4-8 4-4 8-4h22s4 4 8 4 4 4 4 8v22s-4 4-4 8-4 4-8 4h-26v30h16zM512 724.667c188 0 342-152 342-340s-154-342-342-342-342 154-342 342h86c0-140 116-256 256-256s256 116 256 256-116 256-256 256v-172l-214 214 214 214v-172z" />
-<glyph unicode="&#xe05b;" glyph-name="replay_5" d="M504 358.667c-3.584-1.434-14-4.805-14-8 0-4-4-6-4-6h-30l10 94h102v-30h-74l-4-38s4 0 4 4 6 2 6 6 4 0 8 0h8c8 0 18-2 22-6s12-8 16-12c8.873-8.873 18-27.257 18-46 0-8 0-18-4-22s-6-14-14-22-12-8-16-12-18-4-26-4-18 0-22 4-12 4-20 8c-11.191 5.596-18 22.554-18 38h34c0-14.809 10.59-20 26-20 4 0 8 0 12 4l10 8s4 8 4 12v26l-4 8-10 10s-8 4-12 4h-8zM512 724.667c188 0 342-152 342-340s-154-342-342-342-342 154-342 342h86c0-140 116-256 256-256s256 116 256 256-116 256-256 256v-172l-214 214 214 214v-172z" />
-<glyph unicode="&#xe05c;" glyph-name="add_to_queue" d="M682 512.667v-86h-128v-128h-84v128h-128v86h128v128h84v-128h128zM896 212.667v512h-768v-512h768zM896 810.667c46 0 86-38 86-86l-2-512c0-46-38-84-84-84h-214v-86h-340v86h-214c-48 0-86 38-86 84v512c0 48 38 86 86 86h768z" />
-<glyph unicode="&#xe05d;" glyph-name="fiber_dvr" d="M896 448.667v42c0 36-28 64-64 64h-150v-256h64v86h50l36-86h64l-38 90c22 10 38 34 38 60zM538 298.667l76 256h-64l-44-146-42 146h-64l74-256h64zM342 362.667v128c0 36-28 64-64 64h-150v-256h150c36 0 64 28 64 64zM896 810.667c48 0 86-38 86-86v-596c0-46-38-86-86-86h-768c-48 0-86 40-86 86v596c0 48 38 86 86 86h768zM192 490.667h86v-128h-86v128zM746 490.667h86v-42h-86v42z" />
-<glyph unicode="&#xe05e;" glyph-name="fiber_new" d="M874 340.667v214h-52v-192h-48v150h-54v-150h-48v192h-54v-214c0-24 20-42 44-42h170c24 0 42 18 42 42zM576 500.667v54h-170v-256h170v54h-106v46h106v54h-106v48h106zM362 298.667v256h-52v-150l-108 150h-52v-256h52v150l110-150h50zM854 768.667c48 0 84-38 84-86v-512c0-48-36-86-84-86h-684c-48 0-84 38-84 86v512c0 48 36 86 84 86h684z" />
-<glyph unicode="&#xe05f;" glyph-name="playlist_play" d="M726 384.667l212-128-212-128v256zM86 298.667v86h554v-86h-554zM810 724.667v-84h-724v84h724zM810 554.667v-86h-724v86h724z" />
-<glyph unicode="&#xe060;" glyph-name="art_track" d="M448 298.667l-96 128-74-96-54 64-74-96h298zM512 554.667v-256c0-46-40-86-86-86h-256c-46 0-84 40-84 86v256c0 46 38 86 84 86h256c46 0 86-40 86-86zM598 212.667v86h340v-86h-340zM938 640.667v-86h-340v86h340zM938 384.667h-340v84h340v-84z" />
-<glyph unicode="&#xe061;" glyph-name="fiber_manual_record" d="M170 426.667c0 188 154 342 342 342s342-154 342-342-154-342-342-342-342 154-342 342z" />
-<glyph unicode="&#xe062;" glyph-name="fiber_smart_record" d="M726 756.667c148-38 256-170 256-330s-108-292-256-330v88c100 34 170 130 170 242s-70 208-170 242v88zM42 426.667c0 188 154 342 342 342s342-154 342-342-154-342-342-342-342 154-342 342z" />
-<glyph unicode="&#xe063;" glyph-name="music_video" d="M342 298.667c0 70 58 128 128 128 14 0 28-4 42-8v264h214v-86h-128v-300c0-70-58-126-128-126s-128 58-128 128zM896 128.667v596h-768v-596h768zM896 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-768c-46 0-86 40-86 86v596c0 46 40 86 86 86h768z" />
-<glyph unicode="&#xe064;" glyph-name="subscriptions" d="M682 256.667l-256 138v-278zM938 426.667v-342c0-46-38-84-84-84h-684c-46 0-84 38-84 84v342c0 46 38 86 84 86h684c46 0 84-40 84-86zM768 852.667v-84h-512v84h512zM854 596.667h-684v86h684v-86z" />
-<glyph unicode="&#xe065;" glyph-name="playlist_add_check" d="M918 448.667l64-64-298-300-194 192 64 64 130-128zM86 256.667v84h340v-84h-340zM598 682.667v-86h-512v86h512zM598 512.667v-86h-512v86h512z" />
-<glyph unicode="&#xe066;" glyph-name="queue_play_next" d="M1024 170.667l-192-192-64 64 128 128-128 128 64 64zM554 512.667h128v-86h-128v-128h-84v128h-128v86h128v128h84v-128zM896 810.667c46 0 86-38 86-86v-340h-86v340h-768v-512h640v-84h-86v-86h-340v86h-214c-48 0-86 38-86 84v512c0 48 38 86 86 86h768z" />
-<glyph unicode="&#xe067;" glyph-name="remove_from_queue" d="M682 512.667v-86h-340v86h340zM896 212.667v512h-768v-512h768zM896 810.667c46 0 86-38 86-86l-2-512c0-46-38-84-84-84h-214v-86h-340v86h-214c-48 0-86 38-86 84v512c0 48 38 86 86 86h768z" />
-<glyph unicode="&#xe068;" glyph-name="slow_motion_video" d="M938 426.667c0-220-168-402-382-424v86c168 22 298 166 298 338s-130 316-298 338v86c214-22 382-204 382-424zM242 96.667l60 60c48-36 106-60 168-68v-86c-86 8-164 42-228 94zM174 384.667c8-62 32-120 68-166l-60-62c-52 64-86 142-94 228h86zM242 636.667c-36-48-60-106-68-168h-86c8 86 42 164 94 228zM470 764.667c-62-8-120-32-168-68l-60 60c64 52 142 86 228 94v-86zM556 520.667l126-94c-85.639-63.694-170.958-127.709-256-192z" />
-<glyph unicode="&#xe069;" glyph-name="web_asset" d="M810 170.667v426h-596v-426h596zM810 768.667c48 0 86-40 86-86v-512c0-46-40-86-86-86h-596c-48 0-86 40-86 86v512c0 46 38 86 86 86h596z" />
-<glyph unicode="&#xe06a;" glyph-name="fiber_pin" d="M854 298.667v256h-54v-150l-106 150h-54v-256h54v150l108-150h52zM534 298.667v256h-64v-256h64zM384 448.667v42c0 36-28 64-64 64h-150v-256h64v86h86c36 0 64 28 64 64zM854 768.667c48 0 84-38 84-86v-512c0-48-36-86-84-86h-684c-48 0-84 38-84 86v512c0 48 36 86 84 86h684zM234 490.667h86v-42h-86v42z" />
-<glyph unicode="&#xe06b;" glyph-name="branding_watermark" d="M896 128.667v256h-384v-256h384zM896 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-768c-46 0-86 40-86 86v596c0 46 40 86 86 86h768z" />
-<glyph unicode="&#xe06c;" glyph-name="call_to_action" d="M896 128.667v128h-768v-128h768zM896 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-768c-46 0-86 40-86 86v596c0 46 40 86 86 86h768z" />
-<glyph unicode="&#xe06d;" glyph-name="featured_play_list" d="M512 640.667v84h-384v-84h384zM512 468.667v86h-384v-86h384zM896 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-768c-46 0-86 40-86 86v596c0 46 40 86 86 86h768z" />
-<glyph unicode="&#xe06e;" glyph-name="featured_video" d="M512 426.667v298h-384v-298h384zM896 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-768c-46 0-86 40-86 86v596c0 46 40 86 86 86h768z" />
-<glyph unicode="&#xe06f;" glyph-name="note" d="M640 704.667v-236h234zM938 512.667v-342c0-46-38-84-84-84l-684-2c-46 0-84 40-84 86v512c0 46 38 86 84 86h512z" />
-<glyph unicode="&#xe070;" glyph-name="video_call" d="M598 384.667v84h-128v128h-86v-128h-128v-84h128v-128h86v128h128zM726 490.667l170 170v-468l-170 170v-150c0-24-20-42-44-42h-512c-24 0-42 18-42 42v428c0 24 18 42 42 42h512c24 0 44-18 44-42v-150z" />
-<glyph unicode="&#xe071;" glyph-name="video_label" d="M896 256.667v468h-768v-468h768zM896 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-768c-46 0-86 40-86 86v596c0 46 40 86 86 86h768z" />
-<glyph unicode="&#xe0b1;" glyph-name="call_end" d="M512 554.667c-68 0-134-10-196-30v-132c0-16-10-34-24-40-42-20-80-46-114-78-8-8-18-12-30-12s-22 4-30 12l-106 106c-8 8-12 18-12 30s4 22 12 30c130 124 306 200 500 200s370-76 500-200c8-8 12-18 12-30s-4-22-12-30l-106-106c-8-8-18-12-30-12s-22 4-30 12c-34 32-72 58-114 78-14 6-24 20-24 38v132c-62 20-128 32-196 32z" />
-<glyph unicode="&#xe0b2;" glyph-name="call_made" d="M384 724.667h426v-426h-84v282l-496-496-60 60 496 496h-282v84z" />
-<glyph unicode="&#xe0b4;" glyph-name="call_missed" d="M836 640.667l60-60-384-384-298 298v-196h-86v342h342v-86h-196l238-238z" />
-<glyph unicode="&#xe0b5;" glyph-name="call_received" d="M854 708.667l-496-496h282v-84h-426v426h84v-282l496 496z" />
-<glyph unicode="&#xe0b6;" glyph-name="call_split" d="M426 768.667l-98-98 226-226v-360h-84v324l-202 202-98-98v256h256zM598 768.667h256v-256l-98 98-124-124-60 60 124 124z" />
-<glyph unicode="&#xe0b7;" glyph-name="chat" d="M768 596.667v86h-512v-86h512zM598 340.667v86h-342v-86h342zM256 554.667v-86h512v86h-512zM854 852.667c46 0 84-38 84-84v-512c0-46-38-86-84-86h-598l-170-170v768c0 46 38 84 84 84h684z" />
-<glyph unicode="&#xe0b8;" glyph-name="clear_all" d="M298 640.667h598v-86h-598v86zM128 212.667v86h598v-86h-598zM214 384.667v84h596v-84h-596z" />
-<glyph unicode="&#xe0b9;" glyph-name="comment" d="M768 596.667v86h-512v-86h512zM768 468.667v86h-512v-86h512zM768 340.667v86h-512v-86h512zM938 768.667v-768l-170 170h-598c-46 0-84 40-84 86v512c0 46 38 84 84 84h684c46 0 84-38 84-84z" />
-<glyph unicode="&#xe0ba;" glyph-name="contacts" d="M726 212.667v64c0 72-142 108-214 108s-214-36-214-108v-64h428zM512 650.667c-52 0-96-44-96-96s44-96 96-96 96 44 96 96-44 96-96 96zM854 768.667c46 0 84-40 84-86v-512c0-46-38-86-84-86h-684c-46 0-84 40-84 86v512c0 46 38 86 84 86h684zM170-85.333v86h684v-86h-684zM854 938.667v-86h-684v86h684z" />
-<glyph unicode="&#xe0bb;" glyph-name="dialer_sip" d="M854 276.667c24 0 42-18 42-42v-150c0-24-18-42-42-42-400 0-726 326-726 726 0 24 18 42 42 42h150c24 0 42-18 42-42 0-54 8-104 24-152 4-14 2-32-10-44l-94-94c62-122 162-220 282-282l94 94c12 12 30 14 44 10 48-16 98-24 152-24zM854 724.667v44h-44v-44h44zM768 810.667h128v-128h-86v-86h-42v214zM640 724.667v-128h-128v44h86v42h-86v128h128v-42h-86v-44h86zM726 810.667v-214h-44v214h44z" />
-<glyph unicode="&#xe0bc;" glyph-name="dialpad" d="M512 896.667c46 0 86-40 86-86s-40-86-86-86-86 40-86 86 40 86 86 86zM512 640.667c46 0 86-40 86-86s-40-86-86-86-86 40-86 86 40 86 86 86zM768 640.667c46 0 86-40 86-86s-40-86-86-86-86 40-86 86 40 86 86 86zM768 384.667c46 0 86-40 86-86s-40-86-86-86-86 40-86 86 40 86 86 86zM512 384.667c46 0 86-40 86-86s-40-86-86-86-86 40-86 86 40 86 86 86zM768 724.667c-46 0-86 40-86 86s40 86 86 86 86-40 86-86-40-86-86-86zM256 384.667c46 0 86-40 86-86s-40-86-86-86-86 40-86 86 40 86 86 86zM256 640.667c46 0 86-40 86-86s-40-86-86-86-86 40-86 86 40 86 86 86zM256 896.667c46 0 86-40 86-86s-40-86-86-86-86 40-86 86 40 86 86 86zM512 128.667c46 0 86-40 86-86s-40-86-86-86-86 40-86 86 40 86 86 86z" />
-<glyph unicode="&#xe0c3;" glyph-name="import_export" d="M682 212.667h128l-170-170-170 170h128v300h84v-300zM384 810.667l170-170h-128v-300h-84v300h-128z" />
-<glyph unicode="&#xe0c4;" glyph-name="invert_colors_off" d="M512 720.667l-98-96-60 60 158 158 242-242c104-104 126-258 68-384l-310 308v196zM512 102.667v206l-204 204c-34-44-52-98-52-154 0-137.583 118.4-256 256-256zM882 48.667l14-16-54-54-116 116c-62-50-138-76-214-76-88 0-176 34-242 100-124 126-132 322-24 456l-118 118 54 54c232.99-232.99 464.706-467.32 700-698z" />
-<glyph unicode="&#xe0c6;" glyph-name="live_help" d="M642 500.667c24 24 40 58 40 96 0 94-76 172-170 172s-170-78-170-172h84c0 46 40 86 86 86s86-40 86-86c0-24-10-44-26-60l-52-54c-30-32-50-74-50-120v-22h84c0 64 20 90 50 122zM554 170.667v86h-84v-86h84zM810 852.667c46 0 86-38 86-84v-598c0-46-40-86-86-86h-170l-128-128-128 128h-170c-48 0-86 40-86 86v598c0 46 38 84 86 84h596z" />
-<glyph unicode="&#xe0c7;" glyph-name="location_off" d="M500 448.667c118.353-116.98 236.568-234.098 354-352l-54-54-144 142c-72-106-144-184-144-184s-298 330-298 554c0 22 4 44 8 66l-136 136 54 54 356-356zM512 660.667c-32 0-58-14-78-36l-138 136c54 56 132 92 216 92 166 0 298-132 298-298 0-72-30-154-72-234l-154 156c22 20 34 46 34 78 0 58-48 106-106 106z" />
-<glyph unicode="&#xe0c9;" glyph-name="message" d="M768 596.667v86h-512v-86h512zM768 468.667v86h-512v-86h512zM768 340.667v86h-512v-86h512zM854 852.667c46 0 84-38 84-84v-512c0-46-38-86-84-86h-598l-170-170v768c0 46 38 84 84 84h684z" />
-<glyph unicode="&#xe0ca;" glyph-name="chat_bubble" d="M854 852.667c46 0 84-38 84-84v-512c0-46-38-86-84-86h-598l-170-170v768c0 46 38 84 84 84h684z" />
-<glyph unicode="&#xe0cb;" glyph-name="chat_bubble_outline" d="M854 256.667v512h-684v-598l86 86h598zM854 852.667c46 0 84-38 84-84v-512c0-46-38-86-84-86h-598l-170-170v768c0 46 38 84 84 84h684z" />
-<glyph unicode="&#xe0cd;" glyph-name="phone" d="M282 478.667c62-120 162-220 282-282l94 94c12 12 30 16 44 10 48-16 100-24 152-24 24 0 42-18 42-42v-150c0-24-18-42-42-42-400 0-726 326-726 726 0 24 18 42 42 42h150c24 0 42-18 42-42 0-54 8-104 24-152 4-14 2-32-10-44z" />
-<glyph unicode="&#xe0ce;" glyph-name="portable_wifi_off" d="M140 832.667l42-44 714-714-54-54-320 322h-2l-8-2c-46 0-86 40-86 86l2 8-68 68c-12-24-18-48-18-76 0-64 34-118 84-148l-42-74c-76 44-128 128-128 222 0 52 14 98 40 138l-60 62c-40-56-66-124-66-200 0-126 68-236 170-296l-42-74c-128 74-212 212-212 370 0 98 32 190 88 262l-88 90zM512 768.667c-58 0-112-14-160-40l-62 62c64 40 140 62 222 62 236 0 426-190 426-426 0-82-22-158-62-222l-64 62c26 48 42 102 42 160 0 188-154 342-342 342zM750 330.667l-70 70c2 8 2 18 2 26 0 94-76 170-170 170-8 0-18 0-26-2l-70 70c30 12 62 18 96 18 142 0 256-114 256-256 0-34-6-66-18-96z" />
-<glyph unicode="&#xe0cf;" glyph-name="contact_phone" d="M762 340.667c-10 26-16 56-16 86s6 60 16 86h70l64 84-84 86c-56-42-98-100-118-170-8-28-12-56-12-86s4-58 12-86c20-68 62-128 118-170l84 86-64 84h-70zM598 170.667v42c0 86-170 132-256 132s-256-46-256-132v-42h512zM342 682.667c-70 0-128-58-128-128s58-128 128-128 128 58 128 128-58 128-128 128zM938 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-852c-46 0-86 40-86 86v596c0 46 40 86 86 86h852z" />
-<glyph unicode="&#xe0d0;" glyph-name="contact_mail" d="M938 426.667v256h-340v-256h340zM598 170.667v42c0 86-170 132-256 132s-256-46-256-132v-42h512zM342 682.667c-70 0-128-58-128-128s58-128 128-128 128 58 128 128-58 128-128 128zM938 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-852c-46 0-86 40-86 86v596c0 46 40 86 86 86h852zM896 596.667l-128-84-128 84v44l128-86 128 86v-44z" />
-<glyph unicode="&#xe0d1;" glyph-name="ring_volume" d="M274 520.667c0 0-148 148-152 150l60 62 152-152zM554 852.667v-212h-84v212h84zM902 670.667c-4-2-152-150-152-150l-60 60 152 152zM1012 226.667c8-8 12-18 12-30s-4-22-12-30l-106-106c-8-8-18-12-30-12s-22 4-30 12c-34 32-72 60-114 80-14 6-24 22-24 38v132c-62 20-128 30-196 30s-134-10-196-30v-132c0-18-10-34-24-40-42-20-80-46-114-78-8-8-18-12-30-12s-22 4-30 12l-106 106c-8 8-12 18-12 30s4 22 12 30c130 124 306 200 500 200s370-76 500-200z" />
-<glyph unicode="&#xe0d2;" glyph-name="speaker_phone" d="M640 84.667v342h-256v-342h256zM634 510.667c26 0 48-22 48-48v-414c0-26-22-48-48-48h-244c-26 0-48 22-48 48v414c0 26 22 50 48 50zM512 896.667c128 0 246-54 330-138l-60-60c-70 70-164 112-270 112s-200-42-270-112l-60 60c84 84 202 138 330 138zM298 636.667c54 54 130 88 214 88s160-34 214-88l-62-60c-38 38-92 62-152 62s-114-24-152-62z" />
-<glyph unicode="&#xe0d5;" glyph-name="stay_primary_landscape" d="M810 640.667h-596v-428h596v428zM44 640.667c0 46 38 84 84 84h768c46 0 86-38 86-84v-428c0-46-40-84-86-84h-768c-46 0-86 38-86 84z" />
-<glyph unicode="&#xe0d6;" glyph-name="stay_primary_portrait" d="M726 128.667v596h-428v-596h428zM726 894.667c46 0 84-38 84-84v-768c0-46-38-86-84-86h-428c-46 0-84 40-84 86v768c0 46 38 86 84 86z" />
-<glyph unicode="&#xe0d7;" glyph-name="swap_calls" d="M768 768.667l170-172h-128v-298c0-94-76-170-170-170s-170 76-170 170v298c0 46-40 86-86 86s-86-40-86-86v-298h128l-170-170-170 170h128v298c0 94 76 172 170 172s170-78 170-172v-298c0-46 40-86 86-86s86 40 86 86v298h-128z" />
-<glyph unicode="&#xe0d8;" glyph-name="textsms" d="M726 468.667v86h-86v-86h86zM554 468.667v86h-84v-86h84zM384 468.667v86h-86v-86h86zM854 852.667c46 0 84-38 84-84v-512c0-46-38-86-84-86h-598l-170-170v768c0 46 38 84 84 84h684z" />
-<glyph unicode="&#xe0d9;" glyph-name="voicemail" d="M790 298.667c82 0 148 68 148 150s-66 148-148 148-150-66-150-148 68-150 150-150zM234 298.667c82 0 150 68 150 150s-68 148-150 148-148-66-148-148 66-150 148-150zM790 682.667c130 0 234-104 234-234s-104-236-234-236h-556c-130 0-234 106-234 236s104 234 234 234 236-104 236-234c0-56-20-110-54-150h192c-34 40-54 94-54 150 0 130 106 234 236 234z" />
-<glyph unicode="&#xe0da;" glyph-name="vpn_key" d="M298 340.667c46 0 86 40 86 86s-40 86-86 86-84-40-84-86 38-86 84-86zM540 512.667h442v-172h-86v-170h-170v170h-186c-34-100-130-170-242-170-142 0-256 114-256 256s114 256 256 256c112 0 208-70 242-170z" />
-<glyph unicode="&#xe0db;" glyph-name="phonelink_erase" d="M810 896.667c46 0 86-40 86-86v-768c0-46-40-86-86-86h-426c-46 0-86 40-86 86v128h86v-86h426v684h-426v-86h-86v128c0 46 40 86 86 86h426zM554 588.667l-170-170 170-172-42-42-170 170-172-170-42 42 170 172-170 170 42 42 172-170 170 170z" />
-<glyph unicode="&#xe0dc;" glyph-name="phonelink_lock" d="M406 468.667v64c0 34-30 56-64 56s-64-22-64-56v-64h128zM460 468.667c26 0 52-24 52-54v-150c0-26-26-52-56-52h-234c-26 0-52 26-52 56v150c0 26 26 50 52 50v64c0 60 60 108 120 108s118-48 118-108v-64zM810 896.667c46 0 86-40 86-86v-768c0-46-40-86-86-86h-426c-46 0-86 40-86 86v128h86v-86h426v684h-426v-86h-86v128c0 46 40 86 86 86h426z" />
-<glyph unicode="&#xe0dd;" glyph-name="phonelink_ring" d="M598 84.667v684h-428v-684h428zM598 896.667c46 0 84-40 84-86v-768c0-46-38-86-84-86h-428c-46 0-84 40-84 86v768c0 46 38 86 84 86h428zM768 520.667c52-56 52-132 0-184l-42 44c22 30 22 68 0 98zM858 610.667c106-102 106-266 0-364l-44 44c76 82 76 200 0 276z" />
-<glyph unicode="&#xe0de;" glyph-name="phonelink_setup" d="M810 896.667c46 0 86-40 86-86v-768c0-46-40-86-86-86h-426c-46 0-86 40-86 86v128h86v-86h426v684h-426v-86h-86v128c0 46 40 86 86 86h426zM342 340.667c46 0 84 40 84 86s-38 86-84 86-86-40-86-86 40-86 86-86zM504 404.667l46-38c4-4 8-8 4-12l-42-74c-4-4-8-4-12-4l-56 22c-12-8-26-18-38-22l-10-54c-4-4-8-10-12-10h-86c-4 0-12 6-8 10l-8 54c-12 4-26 14-38 22l-60-18c-4-4-10 2-14 6l-42 72c0 4 0 8 4 16l48 34v44l-48 34c-4 4-8 8-4 12l42 74c4 4 10 4 14 4l54-22c12 8 28 18 40 22l8 54c4 4 8 10 12 10h86c8 0 12-6 12-10l10-54c12-4 26-14 38-22l56 18c4 4 8-2 12-6l42-72c0-4 0-8-4-12l-46-34v-44z" />
-<glyph unicode="&#xe0df;" glyph-name="present_to_all" d="M426 426.667h-84l170 170 170-170h-84v-170h-172v170zM896 126.667v600h-768v-600h768zM896 810.667c48 0 86-38 86-86v-596c0-48-38-86-86-86h-768c-48 0-86 38-86 86v596c0 48 38 86 86 86h768z" />
-<glyph unicode="&#xe0e0;" glyph-name="import_contacts" d="M896 148.667v492c-46 14-98 20-150 20-72 0-176-28-234-64v-490c58 36 162 64 234 64 52 0 104-8 150-22zM746 746.667c88.409 0 181.498-22.075 236-64v-622c0-10-12-22-22-22-4 0-6 0-10 2-60 32-134 44-204 44-72 0-176-28-234-64-62 46-150 64-234 64-62 0-146-18-204-46-4 0-6-2-10-2-10 0-22 10-22 20v626c62 46 152 64 236 64s172-18 234-64c62 46 150 64 234 64z" />
-<glyph unicode="&#xe0e1;" glyph-name="mail_outline" d="M512 468.667l342 214h-684zM854 170.667v426l-342-212-342 212v-426h684zM854 768.667c46 0 84-40 84-86v-512c0-46-38-86-84-86h-684c-46 0-84 40-84 86v512c0 46 38 86 84 86h684z" />
-<glyph unicode="&#xe0e2;" glyph-name="screen_share" d="M554 320.667l172 160-172 160v-92c-166-24-232-136-256-250 60 80 138 116 256 116v-94zM854 170.667h170v-86h-1024v86h170c-48 0-84 40-84 86v426c0 48 36 86 84 86h684c46 0 84-38 84-86v-426c0-46-38-86-84-86z" />
-<glyph unicode="&#xe0e3;" glyph-name="stop_screen_share" d="M298 298.667c40 56 90 88 156 104l-68 68c-50-48-74-108-88-172zM102 864.667l842-842-54-54-116 116h-774v86h170c-48 0-84 38-84 84v428c0 26 10 46 28 62l-66 66zM938 254.667c0-32-18-60-44-74l-236 236 68 64-172 158v-90c-8-2-14-2-22-4l-224 222h546c46 0 84-36 84-84v-428zM906 170.667h118v-86h-34z" />
-<glyph unicode="&#xe0e4;" glyph-name="call_missed_outgoing" d="M128 580.667l60 60 324-324 238 238h-196v86h342v-342h-86v196l-298-298z" />
-<glyph unicode="&#xe0e5;" glyph-name="rss_feed" d="M170 508.667c234 0 424-190 424-424h-122c0 166-136 302-302 302v122zM170 748.667c366 0 664-298 664-664h-120c0 300-244 544-544 544v120zM170 178.667c0 52 42 92 94 92s92-40 92-92-40-94-92-94-94 42-94 94z" />
-<glyph unicode="&#xe145;" glyph-name="add" d="M810 384.667h-256v-256h-84v256h-256v84h256v256h84v-256h256v-84z" />
-<glyph unicode="&#xe146;" glyph-name="add_box" d="M726 384.667v84h-172v172h-84v-172h-172v-84h172v-172h84v172h172zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-48 0-86 40-86 86v596c0 46 38 86 86 86h596z" />
-<glyph unicode="&#xe147;" glyph-name="add_circle" d="M726 384.667v84h-172v172h-84v-172h-172v-84h172v-172h84v172h172zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426z" />
-<glyph unicode="&#xe149;" glyph-name="archive" d="M218 724.667h588l-40 44h-512zM512 192.667l234 234h-148v86h-172v-86h-148zM876 714.667c12-14 20-34 20-54v-532c0-46-40-86-86-86h-596c-46 0-86 40-86 86v532c0 20 8 40 20 54l58 72c12 14 30 24 50 24h512c20 0 38-10 50-24z" />
-<glyph unicode="&#xe14a;" glyph-name="backspace" d="M810 272.667l-152 154 152 154-60 60-152-154-154 154-60-60 154-154-154-154 60-60 154 154 152-154zM938 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-640c-30 0-52 16-68 38l-230 346 230 346c16 22 38 38 68 38h640z" />
-<glyph unicode="&#xe14b;" glyph-name="block" d="M512 84.667c188 0 342 154 342 342 0 78-26 152-72 210l-480-480c58-46 132-72 210-72zM170 426.667c0-78 26-152 72-210l480 480c-58 46-132 72-210 72-188 0-342-154-342-342zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426z" />
-<glyph unicode="&#xe14d;" glyph-name="content_copy" d="M810 42.667v598h-468v-598h468zM810 724.667c46 0 86-38 86-84v-598c0-46-40-86-86-86h-468c-46 0-86 40-86 86v598c0 46 40 84 86 84h468zM682 896.667v-86h-512v-598h-84v598c0 46 38 86 84 86h512z" />
-<glyph unicode="&#xe14e;" glyph-name="content_cut" d="M810 810.667h128v-42l-298-300-86 86zM512 404.667c12 0 22 10 22 22s-10 22-22 22-22-10-22-22 10-22 22-22zM256 84.667c46 0 86 38 86 86s-40 86-86 86-86-38-86-86 40-86 86-86zM256 596.667c46 0 86 38 86 86s-40 86-86 86-86-38-86-86 40-86 86-86zM412 612.667l526-528v-42h-128l-298 298-100-100c10-22 14-44 14-70 0-94-76-170-170-170s-170 76-170 170 76 170 170 170c26 0 48-4 70-14l100 100-100 100c-22-10-44-14-70-14-94 0-170 76-170 170s76 170 170 170 170-76 170-170c0-26-4-48-14-70z" />
-<glyph unicode="&#xe14f;" glyph-name="content_paste" d="M810 84.667v684h-84v-128h-428v128h-84v-684h596zM512 852.667c-24 0-42-18-42-42s18-42 42-42 42 18 42 42-18 42-42 42zM810 852.667c46 0 86-38 86-84v-684c0-46-40-84-86-84h-596c-46 0-86 38-86 84v684c0 46 40 84 86 84h178c18 50 64 86 120 86s102-36 120-86h178z" />
-<glyph unicode="&#xe151;" glyph-name="drafts" d="M512 384.667l352 220-352 206-352-206zM938 596.667v-426c0-46-38-86-84-86h-684c-46 0-84 40-84 86v426c0 30 16 60 40 74l386 226 386-226c24-14 40-44 40-74z" />
-<glyph unicode="&#xe152;" glyph-name="filter_list" d="M256 384.667v84h512v-84h-512zM128 682.667h768v-86h-768v86zM426 170.667v86h172v-86h-172z" />
-<glyph unicode="&#xe153;" glyph-name="flag" d="M614 682.667h240v-426h-300l-16 84h-240v-298h-84v726h384z" />
-<glyph unicode="&#xe154;" glyph-name="forward" d="M512 596.667v172l342-342-342-342v172h-342v340h342z" />
-<glyph unicode="&#xe155;" glyph-name="gesture" d="M592 146.667c30 0 80 36 92 150-92-24-124-92-124-118 0-20 18-32 32-32zM196 644.667l-74 72c10 12 20 24 36 40 10 10 60 54 116 54 38 0 108-30 108-122 0-58-22-92-56-140-20-28-64-104-78-150-16-46-6-82 14-82 18 0 38 24 48 36 10 10 74 84 98 116 32 40 114 120 210 120 126 0 166-108 172-178h106v-106h-104c-18-204-132-262-202-262-76 0-136 60-136 132s68 202 230 230c-4 34-6 76-76 76-54 0-122-82-174-146-48-58-84-104-130-118-99.552-31.437-170 56.487-170 146 0 104 112 252 122 270 12 20 34 56 12 64-14 6-42-22-72-52z" />
-<glyph unicode="&#xe156;" glyph-name="inbox" d="M810 298.667v426h-598v-426h172c0-70 58-128 128-128s128 58 128 128h170zM810 810.667c46 0 86-38 86-86v-596c0-46-40-86-86-86h-598c-48 0-84 40-84 86v596c0 48 36 86 84 86h598z" />
-<glyph unicode="&#xe157;" glyph-name="link" d="M726 640.667c118 0 212-96 212-214s-94-214-212-214h-172v82h172c72 0 132 60 132 132s-60 132-132 132h-172v82h172zM342 384.667v84h340v-84h-340zM166 426.667c0-72 60-132 132-132h172v-82h-172c-118 0-212 96-212 214s94 214 212 214h172v-82h-172c-72 0-132-60-132-132z" />
-<glyph unicode="&#xe159;" glyph-name="markunread" d="M854 596.667v86l-342-214-342 214v-86l342-212zM854 768.667c46 0 84-40 84-86v-512c0-46-38-86-84-86h-684c-46 0-84 40-84 86v512c0 46 38 86 84 86h684z" />
-<glyph unicode="&#xe15a;" glyph-name="redo" d="M786 486.667l152 154v-384h-384l156 154c-60 50-136 80-220 80-152 0-280-98-324-234l-100 32c58 178 226 308 424 308 114 0 218-42 296-110z" />
-<glyph unicode="&#xe15b;" glyph-name="remove" d="M810 384.667h-596v84h596v-84z" />
-<glyph unicode="&#xe15c;" glyph-name="remove_circle" d="M726 384.667v84h-428v-84h428zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426z" />
-<glyph unicode="&#xe15d;" glyph-name="remove_circle_outline" d="M512 84.667c188 0 342 154 342 342s-154 342-342 342-342-154-342-342 154-342 342-342zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426zM298 468.667h428v-84h-428v84z" />
-<glyph unicode="&#xe15e;" glyph-name="reply" d="M426 554.667c298-42 428-256 470-470-106 150-256 218-470 218v-174l-298 298 298 298v-170z" />
-<glyph unicode="&#xe15f;" glyph-name="reply_all" d="M554 554.667c298-42 428-256 470-470-106 150-256 218-470 218v-174l-298 298 298 298v-170zM298 596.667l-170-170 170-170v-128l-298 298 298 298v-128z" />
-<glyph unicode="&#xe160;" glyph-name="report" d="M554 384.667v256h-84v-256h84zM512 200.667c30 0 56 26 56 56s-26 54-56 54-56-24-56-54 26-56 56-56zM672 810.667l224-224v-320l-224-224h-320l-224 224v320l224 224h320z" />
-<glyph unicode="&#xe161;" glyph-name="save" d="M640 554.667v170h-426v-170h426zM512 128.667c70 0 128 58 128 128s-58 128-128 128-128-58-128-128 58-128 128-128zM726 810.667l170-170v-512c0-46-40-86-86-86h-596c-48 0-86 40-86 86v596c0 46 38 86 86 86h512z" />
-<glyph unicode="&#xe162;" glyph-name="select_all" d="M384 554.667v-256h256v256h-256zM298 212.667v428h428v-428h-428zM640 724.667v86h86v-86h-86zM640 42.667v86h86v-86h-86zM810 212.667v86h86v-86h-86zM810 554.667v86h86v-86h-86zM810 42.667v86h86c0-46-40-86-86-86zM810 384.667v84h86v-84h-86zM470 42.667v86h84v-86h-84zM384 810.667v-86h-86v86h86zM128 212.667v86h86v-86h-86zM214 42.667c-46 0-86 40-86 86h86v-86zM810 810.667c46 0 86-40 86-86h-86v86zM554 810.667v-86h-84v86h84zM128 554.667v86h86v-86h-86zM298 42.667v86h86v-86h-86zM128 384.667v84h86v-84h-86zM128 724.667c0 46 40 86 86 86v-86h-86z" />
-<glyph unicode="&#xe163;" glyph-name="send" d="M86 42.667v298l640 86-640 86v298l896-384z" />
-<glyph unicode="&#xe164;" glyph-name="sort" d="M128 384.667v84h512v-84h-512zM128 682.667h768v-86h-768v86zM128 170.667v86h256v-86h-256z" />
-<glyph unicode="&#xe165;" glyph-name="text_format" d="M512 682.667l-80-214h160zM406 392.667l-40-94h-88l202 470h64l202-470h-88l-40 94h-212zM214 212.667h596v-84h-596v84z" />
-<glyph unicode="&#xe166;" glyph-name="undo" d="M534 596.667c198 0 364-130 424-308l-100-32c-44 136-172 234-324 234-84 0-160-30-220-80l156-154h-384v384l152-154c78 68 182 110 296 110z" />
-<glyph unicode="&#xe167;" glyph-name="font_download" d="M680 148.667h90l-218 556h-80l-218-556h90l48 128h240zM854 852.667c46 0 84-38 84-84v-684c0-46-38-84-84-84h-684c-46 0-84 38-84 84v684c0 46 38 84 84 84h684zM424 362.667l88 236 88-236h-176z" />
-<glyph unicode="&#xe168;" glyph-name="move_to_inbox" d="M682 512.667l-170-172-170 172h84v128h172v-128h84zM810 298.667v426h-598v-426h172c0-70 58-128 128-128s128 58 128 128h170zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-598c-48 0-84 40-84 86v596c0 46 36 86 84 86h598z" />
-<glyph unicode="&#xe169;" glyph-name="unarchive" d="M218 724.667h588l-40 44h-512zM512 532.667l-234-234h148v-86h172v86h148zM876 716.667c12-14 20-36 20-56v-532c0-46-40-86-86-86h-596c-48 0-86 40-86 86v532c0 20 8 42 20 56l58 70c12 14 30 24 50 24h512c20 0 38-10 50-24z" />
-<glyph unicode="&#xe16a;" glyph-name="next_week" d="M470 148.667l170 172-170 170-44-42 128-128-128-128zM426 724.667v-84h172v84h-172zM598 810.667c46.645 0 84-38.997 84-86v-84h172c46 0 84-40 84-86v-470c0-46-38-84-84-84h-684c-46 0-84 38-84 84v470c0 46 38 86 84 86h172v84c0 46 38 86 84 86h172z" />
-<glyph unicode="&#xe16b;" glyph-name="weekend" d="M768 724.667c46 0 86-38 86-84v-92c-50-18-86-64-86-120v-88h-512v88c0 56-36 102-86 120v92c0 46 40 84 86 84h512zM896 512.667c46 0 86-40 86-86v-214c0-46-40-84-86-84h-768c-46 0-86 38-86 84v214c0 46 40 86 86 86s86-40 86-86v-128h596v128c0 46 40 86 86 86z" />
-<glyph unicode="&#xe16c;" glyph-name="delete_sweep" d="M598 724.667v-84h-512v84h128l42 44h170l44-44h128zM128 170.667v426h426v-426c0-46-38-86-84-86h-256c-46 0-86 40-86 86zM640 426.667h256v-86h-256v86zM640 596.667h298v-84h-298v84zM640 256.667h170v-86h-170v86z" />
-<glyph unicode="&#xe16d;" glyph-name="low_priority" d="M86 448.667c0 152 124 276 276 276h150v-84h-150c-106 0-192-86-192-192s86-192 192-192h22v84l128-128-128-128v86h-22c-152 0-276 126-276 278zM598 256.667h340v-86h-340v86zM598 490.667h340v-86h-340v86zM598 724.667h340v-84h-340v84z" />
-<glyph unicode="&#xe191;" glyph-name="access_alarms" d="M512 84.667c166 0 298 134 298 300s-132 298-298 298-298-132-298-298 132-300 298-300zM512 768.667c214 0 384-170 384-384s-170-384-384-384-384 170-384 384 170 384 384 384zM534 596.667v-226l170-102-34-52-200 124v256h64zM338 792.667l-198-162-54 64 196 162zM938 694.667l-54-64-198 168 56 64z" />
-<glyph unicode="&#xe194;" glyph-name="airplanemode_inactive" d="M128 714.667l54 54 672-672-54-54-246 244v-158l86-64v-64l-150 42-148-42v64l84 64v234l-340-106v84l254 160zM554 554.667l342-214v-84l-136 42-334 334v156c0 36 28 64 64 64s64-28 64-64v-234z" />
-<glyph unicode="&#xe19c;" glyph-name="battery_alert" d="M554 340.667v214h-84v-214h84zM554 170.667v86h-84v-86h84zM668 768.667c32 0 58-26 58-58v-654c0-32-26-56-58-56h-312c-32 0-58 24-58 56v654c0 32 26 58 58 58h70v84h172v-84h70z" />
-<glyph unicode="&#xe1a3;" glyph-name="battery_charging_full" d="M470 84.667l170 320h-86v236l-170-320h86v-236zM668 768.667c32 0 58-26 58-58v-654c0-32-26-56-58-56h-312c-32 0-58 24-58 56v654c0 32 26 58 58 58h70v84h172v-84h70z" />
-<glyph unicode="&#xe1a5;" glyph-name="battery_std" d="M668 768.667c32 0 58-26 58-58v-654c0-32-26-56-58-56h-312c-32 0-58 24-58 56v654c0 32 26 58 58 58h70v84h172v-84h70z" />
-<glyph unicode="&#xe1a6;" glyph-name="battery_unknown" d="M610 396.667c18 18 30 44 30 72 0 70-58 128-128 128s-128-58-128-128h64c0 36 28 64 64 64s64-28 64-64c0-18-6-32-18-44l-40-40c-20-20-40-50-40-86h68c0 20 16 48 36 68 12 12 28 30 28 30zM552 172.667v82h-80v-82h80zM668 768.667c32 0 58-26 58-58v-654c0-32-26-56-58-56h-312c-32 0-58 24-58 56v654c0 32 26 58 58 58h70v84h172v-84h70z" />
-<glyph unicode="&#xe1a7;" glyph-name="bluetooth" d="M634 242.667l-80 82v-162zM554 690.667v-162l80 82zM756 610.667l-184-184 184-184-244-242h-42v324l-196-196-60 60 238 238-238 238 60 60 196-196v324h42z" />
-<glyph unicode="&#xe1a8;" glyph-name="bluetooth_connected" d="M810 512.667l86-86-86-86-84 86zM634 242.667l-80 82v-162zM554 690.667v-162l80 82zM756 610.667l-184-184 184-184-244-242h-42v324l-196-196-60 60 238 238-238 238 60 60 196-196v324h42zM298 426.667l-84-86-86 86 86 86z" />
-<glyph unicode="&#xe1a9;" glyph-name="bluetooth_disabled" d="M554 162.667l80 80-80 82v-162zM230 768.667l624-624-60-60-98 98-184-182h-42v324l-196-196-60 60 238 238-282 282zM554 690.667v-138l-84 86v214h42l244-242-130-130-60 60 68 70z" />
-<glyph unicode="&#xe1aa;" glyph-name="bluetooth_searching" d="M550 242.667l-80 82v-162zM470 690.667v-162l80 82zM670 610.667l-184-184 184-184-244-242h-42v324l-196-196-60 60 238 238-238 238 60 60 196-196v324h42zM834 652.667c40-64 62-142 62-222 0-84-24-160-66-226l-50 50c26 52 42 110 42 172s-16 120-42 172zM608 426.667l98 98c12-30 20-64 20-98s-8-70-20-100z" />
-<glyph unicode="&#xe1ab;" glyph-name="brightness_auto" d="M610 256.667h82l-138 384h-84l-138-384h82l30 84h136zM854 568.667l140-142-140-142v-200h-200l-142-140-142 140h-200v200l-140 142 140 142v200h200l142 140 142-140h200v-200zM462 398.667l50 156 50-156h-100z" />
-<glyph unicode="&#xe1ac;" glyph-name="brightness_high" d="M512 596.667c94 0 170-76 170-170s-76-170-170-170-170 76-170 170 76 170 170 170zM512 170.667c142 0 256 114 256 256s-114 256-256 256-256-114-256-256 114-256 256-256zM854 568.667l140-142-140-142v-200h-200l-142-140-142 140h-200v200l-140 142 140 142v200h200l142 140 142-140h200v-200z" />
-<glyph unicode="&#xe1ad;" glyph-name="brightness_low" d="M512 170.667c142 0 256 114 256 256s-114 256-256 256-256-114-256-256 114-256 256-256zM854 284.667v-200h-200l-142-140-142 140h-200v200l-140 142 140 142v200h200l142 140 142-140h200v-200l140-142z" />
-<glyph unicode="&#xe1ae;" glyph-name="brightness_medium" d="M512 170.667c142 0 256 114 256 256s-114 256-256 256v-512zM854 284.667v-200h-200l-142-140-142 140h-200v200l-140 142 140 142v200h200l142 140 142-140h200v-200l140-142z" />
-<glyph unicode="&#xe1af;" glyph-name="data_usage" d="M512 128.667c94 0 178 44 232 112l112-66c-78-106-202-174-344-174-236 0-426 190-426 426 0 222 168 402 384 424v-128c-144-20-256-146-256-296 0-166 132-298 298-298zM554 850.667c216-22 384-202 384-424 0-62-12-122-36-174l-112 66c12 34 20 70 20 108 0 150-112 276-256 296v128z" />
-<glyph unicode="&#xe1b0;" glyph-name="developer_mode" d="M726 128.667v84h84v-170c0-46-38-86-84-86h-428c-46 0-84 40-84 86v170h84v-84h428zM426 290.667l-60-60-196 196 196 196 60-60-134-136zM658 230.667l-60 60 134 136-134 136 60 60 196-196zM298 724.667v-84h-84v170c0 46 38 86 84 86l428-2c46 0 84-38 84-84v-170h-84v84h-428z" />
-<glyph unicode="&#xe1b2;" glyph-name="dvr" d="M298 426.667v-86h-84v86h84zM298 596.667v-84h-84v84h84zM810 426.667v-86h-468v86h468zM810 596.667v-84h-468v84h468zM896 212.667v512h-768v-512h768zM896 810.667c46 0 86-40 86-86l-2-512c0-46-38-84-84-84h-214v-86h-340v86h-214c-46 0-86 38-86 84v512c0 46 40 86 86 86h768z" />
-<glyph unicode="&#xe1b6;" glyph-name="location_disabled" d="M694 190.667l-418 418c-38-50-62-114-62-182 0-166 132-298 298-298 68 0 132 24 182 62zM128 756.667l54 54 714-714-54-54-88 88c-56-46-124-78-200-86v-88h-84v88c-178 20-320 162-340 340h-88v84h88c8 76 40 144 86 200zM894 468.667h88v-84h-88c-6-48-20-96-42-136l-64 64c14 34 22 74 22 114 0 166-132 298-298 298-40 0-80-8-114-22l-64 64c42 22 88 36 136 42v88h84v-88c178-20 320-162 340-340z" />
-<glyph unicode="&#xe1b7;" glyph-name="location_searching" d="M512 128.667c166 0 298 132 298 298s-132 298-298 298-298-132-298-298 132-298 298-298zM894 468.667h88v-84h-88c-20-178-162-320-340-340v-88h-84v88c-178 20-320 162-340 340h-88v84h88c20 178 162 320 340 340v88h84v-88c178-20 320-162 340-340z" />
-<glyph unicode="&#xe1b8;" glyph-name="graphic_eq" d="M810 512.667h86v-172h-86v172zM640 170.667v512h86v-512h-86zM128 340.667v172h86v-172h-86zM470 0.667v852h84v-852h-84zM298 170.667v512h86v-512h-86z" />
-<glyph unicode="&#xe1b9;" glyph-name="network_cell" d="M938 0.667h-852l852 852v-852z" />
-<glyph unicode="&#xe1ba;" glyph-name="network_wifi" d="M872.5 471.839c0.568-0.445 1.068-0.837 1.5-1.172l-362-448-362 448c0.431 0.335 0.931 0.727 1.5 1.172l-135.5 168.828c20 14 210 170 496 170s476-156 496-170z" />
-<glyph unicode="&#xe1bb;" glyph-name="nfc" d="M768 682.667v-512h-512v512h170v-86h-84v-340h340v340h-128v-96c26-14 44-42 44-74 0-46-40-86-86-86s-86 40-86 86c0 32 18 60 44 74v96c0 46 38 86 84 86h214zM854 84.667v684h-684v-684h684zM854 852.667c46 0 84-38 84-84v-684c0-46-38-84-84-84h-684c-46 0-84 38-84 84v684c0 46 38 84 84 84h684z" />
-<glyph unicode="&#xe1bc;" glyph-name="wallpaper" d="M170 384.667v-300h300v-84h-300c-46 0-84 38-84 84v300h84zM854 84.667v300h84v-300c0-46-38-84-84-84h-300v84h300zM854 852.667c46 0 84-38 84-84v-300h-84v300h-300v84h300zM726 576.667c0-36-28-64-64-64s-64 28-64 64 28 64 64 64 64-28 64-64zM426 384.667l128-158 86 114 128-170h-512zM170 768.667v-300h-84v300c0 46 38 84 84 84h300v-84h-300z" />
-<glyph unicode="&#xe1bd;" glyph-name="widgets" d="M710 866.667l242-242-242-240h186v-342h-342v342h156l-240 240v-156h-342v342h342v-186zM128 42.667v342h342v-342h-342z" />
-<glyph unicode="&#xe1be;" glyph-name="screen_lock_landscape" d="M460 512.667v-44h104v44c0 28-24 50-52 50s-52-22-52-50zM426 256.667c-24 0-42 18-42 42v128c0 24 18 42 42 42v44c0 46 38 84 86 84 46 0 86-36 86-84v-44c24 0 42-18 42-42v-128c0-24-18-42-42-42h-172zM810 212.667v428h-596v-428h596zM896 724.667c46 0 86-38 86-84v-428c0-46-40-84-86-84h-768c-46 0-86 38-86 84v428c0 46 40 84 86 84h768z" />
-<glyph unicode="&#xe1bf;" glyph-name="screen_lock_portrait" d="M726 128.667v596h-428v-596h428zM726 896.667c46 0 84-40 84-86v-768c0-46-38-86-84-86h-428c-46 0-84 40-84 86v768c0 46 38 86 84 86h428zM460 512.667v-44h104v44c0 28-24 50-52 50s-52-22-52-50zM426 256.667c-24 0-42 18-42 42v128c0 24 18 42 42 42v44c0 46 38 84 86 84 46 0 86-36 86-84v-44c24 0 42-18 42-42v-128c0-24-18-42-42-42h-172z" />
-<glyph unicode="&#xe1c0;" glyph-name="screen_lock_rotation" d="M716 832.667v-22h146v22c0 40-32 72-72 72s-74-32-74-72zM682 554.667c-24 0-42 18-42 42v172c0 24 18 42 42 42v22c0 58 50 106 108 106s106-48 106-106v-22c24 0 42-18 42-42v-172c0-24-18-42-42-42h-214zM362 64.667l56 56 162-162-28-2c-268 0-488 208-510 470h64c16-160 116-296 256-362zM992 394.667c26-24 26-66 0-92l-272-270c-24-26-64-26-90 0l-512 512c-26 24-26 64 0 90l270 272c24 26 66 26 92 0l104-104-60-60-90 88-242-240 484-484 240 242-94 94 60 60z" />
-<glyph unicode="&#xe1c1;" glyph-name="screen_rotation" d="M320 22.667l58 56 162-162-28-2c-268 0-488 208-510 470h64c16-160 114-296 254-362zM632 34.667l272 272-512 512-272-272zM436 864.667l514-514c26-24 26-64 0-90l-272-272c-24-26-64-26-90 0l-514 514c-26 24-26 64 0 90l272 272c24 26 64 26 90 0zM704 830.667l-58-56-162 162 28 2c268 0 488-208 510-470h-64c-16 160-114 296-254 362z" />
-<glyph unicode="&#xe1c2;" glyph-name="sd_storage" d="M768 596.667v172h-86v-172h86zM640 596.667v172h-86v-172h86zM512 596.667v172h-86v-172h86zM768 852.667c46 0 86-38 86-84v-684c0-46-40-84-86-84h-512c-46 0-86 38-86 84l2 512 254 256h342z" />
-<glyph unicode="&#xe1c3;" glyph-name="settings_system_daydream" d="M896 126.667v600h-768v-600h768zM896 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-768c-46 0-86 40-86 86v596c0 46 40 86 86 86h768zM384 256.667c-70 0-128 58-128 128 0 66 50 120 114 126h8c24 50 74 86 134 86 76 0 138-56 148-128h2c58 0 106-48 106-106s-48-106-106-106h-278z" />
-<glyph unicode="&#xe1c8;" glyph-name="signal_cellular_4_bar" d="M86 0.667l852 852v-852h-852z" />
-<glyph unicode="&#xe1cd;" glyph-name="signal_cellular_connected_no_internet_4_bar" d="M86 0.667l852 852v-256h-170v-596h-682zM854 0.667v84h84v-84h-84zM854 170.667v342h84v-342h-84z" />
-<glyph unicode="&#xe1ce;" glyph-name="signal_cellular_no_sim" d="M156 772.667l746-744-56-56-80 82c-12-6-26-12-40-12h-428c-46 0-84 40-84 86v478l-112 112zM810 724.667v-498l-484 484 100 100h300c46 0 84-40 84-86z" />
-<glyph unicode="&#xe1cf;" glyph-name="signal_cellular_null" d="M938 852.667v-852h-852zM854 646.667l-562-562h562v562z" />
-<glyph unicode="&#xe1d0;" glyph-name="signal_cellular_off" d="M204 746.667l734-736-54-54-84 86h-758l378 378-270 272zM896 896.667v-734l-366 366z" />
-<glyph unicode="&#xe1d8;" glyph-name="signal_wifi_4_bar" d="M512 22.667l-496 618c20 14 210 170 496 170s476-156 496-170z" />
-<glyph unicode="&#xe1d9;" glyph-name="signal_wifi_4_bar_lock" d="M662 320.667v-112l-150-188-494 620c18 12 208 170 494 170s476-158 494-170l-88-112c-12 4-26 4-44 4-120 0-212-92-212-212zM938 256.667v64c0 34-30 64-64 64s-64-30-64-64v-64h128zM982 256.667c22 0 42-22 42-44v-170c0-22-20-42-42-42h-214c-22 0-42 20-42 42v170c0 22 20 44 42 44v64c0 60 46 106 106 106s108-46 108-106v-64z" />
-<glyph unicode="&#xe1da;" glyph-name="signal_wifi_off" d="M140 876.667c244.604-245.396 490.948-489.052 734-736l-54-54-142 142-166-206-496 618c10 8 64 52 156 94l-86 88zM1008 640.667l-232-290-442 440c54 12 114 20 178 20 286 0 476-156 496-170z" />
-<glyph unicode="&#xe1db;" glyph-name="storage" d="M170 468.667v-84h86v84h-86zM86 340.667v172h852v-172h-852zM256 640.667v84h-86v-84h86zM86 768.667h852v-172h-852v172zM170 212.667v-84h86v84h-86zM86 84.667v172h852v-172h-852z" />
-<glyph unicode="&#xe1e0;" glyph-name="usb" d="M640 640.667h170v-172h-42v-84c0-48-38-86-86-86h-128v-130c30-16 52-48 52-84 0-52-42-94-94-94s-94 42-94 94c0 36 22 68 52 84v130h-128c-48 0-86 38-86 86v88c-30 16-52 46-52 82 0 52 42 94 94 94s94-42 94-94c0-36-20-66-50-82v-88h128v340h-86l128 172 128-172h-86v-340h128v84h-42v172z" />
-<glyph unicode="&#xe1e1;" glyph-name="wifi_lock" d="M938 256.667v64c0 36-28 64-64 64s-64-28-64-64v-64h128zM982 256.667c24 0 42-20 42-44v-170c0-24-18-42-42-42h-214c-24 0-42 18-42 42v170c0 24 18 44 42 44v64c0 58 48 106 106 106s108-48 108-106v-64zM874 532.667c-118 0-212-94-212-212v-122l-150-198-512 682c142 108 320 170 512 170s370-62 512-170l-114-152c-12 2-24 2-36 2z" />
-<glyph unicode="&#xe1e2;" glyph-name="wifi_tethering" d="M512 810.667c236 0 426-190 426-426 0-158-84-296-212-370l-44 74c102 60 172 170 172 296 0 188-154 340-342 340s-342-152-342-340c0-126 68-236 170-296l-42-74c-128 74-212 212-212 370 0 236 190 426 426 426zM768 384.667c0-94-52-178-128-222l-42 74c50 30 84 84 84 148 0 94-76 170-170 170s-170-76-170-170c0-64 34-118 84-148l-42-74c-76 44-128 128-128 222 0 142 114 256 256 256s256-114 256-256zM512 468.667c46 0 86-38 86-84s-40-86-86-86-86 40-86 86 40 84 86 84z" />
-<glyph unicode="&#xe226;" glyph-name="attach_file" d="M704 682.667h64v-490c0-130-104-236-234-236s-236 106-236 236v532c0 94 78 172 172 172s170-78 170-172v-448c0-58-48-106-106-106s-108 48-108 106v406h64v-406c0-24 20-42 44-42s42 18 42 42v448c0 58-48 108-106 108s-108-50-108-108v-532c0-94 78-172 172-172s170 78 170 172v490z" />
-<glyph unicode="&#xe227;" glyph-name="attach_money" d="M504 472.667c96-26 200-64 200-186 0-88-66-136-150-152v-92h-128v92c-82 18-150 70-156 164h94c4-50 38-90 126-90 94 0 116 46 116 76 0 40-22 78-128 104-120 28-200 78-200 176 0 82 66 136 148 154v92h128v-94c90-22 136-88 138-162h-94c-2 54-32 90-108 90-72 0-114-34-114-80 0-40 32-66 128-92z" />
-<glyph unicode="&#xe228;" glyph-name="border_all" d="M810 468.667v256h-256v-256h256zM810 128.667v256h-256v-256h256zM470 468.667v256h-256v-256h256zM470 128.667v256h-256v-256h256zM128 810.667h768v-768h-768v768z" />
-<glyph unicode="&#xe229;" glyph-name="border_bottom" d="M214 298.667v-86h-86v86h86zM128 42.667v86h768v-86h-768zM214 468.667v-84h-86v84h86zM810 554.667v86h86v-86h-86zM810 810.667h86v-86h-86v86zM214 640.667v-86h-86v86h86zM810 212.667v86h86v-86h-86zM810 384.667v84h86v-84h-86zM726 810.667v-86h-86v86h86zM554 810.667v-86h-84v86h84zM726 468.667v-84h-86v84h86zM554 640.667v-86h-84v86h84zM214 810.667v-86h-86v86h86zM554 468.667v-84h-84v84h84zM384 810.667v-86h-86v86h86zM554 298.667v-86h-84v86h84zM384 468.667v-84h-86v84h86z" />
-<glyph unicode="&#xe22a;" glyph-name="border_clear" d="M640 724.667v86h86v-86h-86zM640 384.667v84h86v-84h-86zM640 42.667v86h86v-86h-86zM470 724.667v86h84v-86h-84zM810 810.667h86v-86h-86v86zM470 554.667v86h84v-86h-84zM810 554.667v86h86v-86h-86zM810 42.667v86h86v-86h-86zM810 384.667v84h86v-84h-86zM810 212.667v86h86v-86h-86zM470 384.667v84h84v-84h-84zM128 724.667v86h86v-86h-86zM128 554.667v86h86v-86h-86zM128 384.667v84h86v-84h-86zM128 212.667v86h86v-86h-86zM128 42.667v86h86v-86h-86zM470 42.667v86h84v-86h-84zM470 212.667v86h84v-86h-84zM298 42.667v86h86v-86h-86zM298 384.667v84h86v-84h-86zM298 724.667v86h86v-86h-86z" />
-<glyph unicode="&#xe22b;" glyph-name="border_color" d="M0 84.667h1024v-170h-1024v170zM884 766.667l-84-84-160 160 84 84c16 16 44 16 60 0l100-100c16-16 16-44 0-60zM758 640.667l-428-428h-160v160l428 428z" />
-<glyph unicode="&#xe22c;" glyph-name="border_horizontal" d="M810 42.667v86h86v-86h-86zM640 42.667v86h86v-86h-86zM470 212.667v86h84v-86h-84zM810 554.667v86h86v-86h-86zM810 810.667h86v-86h-86v86zM128 384.667v84h768v-84h-768zM470 42.667v86h84v-86h-84zM810 212.667v86h86v-86h-86zM554 810.667v-86h-84v86h84zM554 640.667v-86h-84v86h84zM726 810.667v-86h-86v86h86zM384 810.667v-86h-86v86h86zM214 810.667v-86h-86v86h86zM298 42.667v86h86v-86h-86zM128 212.667v86h86v-86h-86zM214 640.667v-86h-86v86h86zM128 42.667v86h86v-86h-86z" />
-<glyph unicode="&#xe22d;" glyph-name="border_inner" d="M810 212.667v86h86v-86h-86zM810 42.667v86h86v-86h-86zM554 810.667v-342h342v-84h-342v-342h-84v342h-342v84h342v342h84zM640 42.667v86h86v-86h-86zM810 810.667h86v-86h-86v86zM810 554.667v86h86v-86h-86zM726 810.667v-86h-86v86h86zM214 810.667v-86h-86v86h86zM384 810.667v-86h-86v86h86zM128 212.667v86h86v-86h-86zM214 640.667v-86h-86v86h86zM298 42.667v86h86v-86h-86zM128 42.667v86h86v-86h-86z" />
-<glyph unicode="&#xe22e;" glyph-name="border_left" d="M640 724.667v86h86v-86h-86zM640 384.667v84h86v-84h-86zM810 42.667v86h86v-86h-86zM810 384.667v84h86v-84h-86zM810 810.667h86v-86h-86v86zM810 212.667v86h86v-86h-86zM640 42.667v86h86v-86h-86zM810 554.667v86h86v-86h-86zM128 42.667v768h86v-768h-86zM298 384.667v84h86v-84h-86zM298 724.667v86h86v-86h-86zM298 42.667v86h86v-86h-86zM470 384.667v84h84v-84h-84zM470 554.667v86h84v-86h-84zM470 724.667v86h84v-86h-84zM470 212.667v86h84v-86h-84zM470 42.667v86h84v-86h-84z" />
-<glyph unicode="&#xe22f;" glyph-name="border_outer" d="M384 468.667v-84h-86v84h86zM554 298.667v-86h-84v86h84zM810 128.667v596h-596v-596h596zM128 810.667h768v-768h-768v768zM726 468.667v-84h-86v84h86zM554 468.667v-84h-84v84h84zM554 640.667v-86h-84v86h84z" />
-<glyph unicode="&#xe230;" glyph-name="border_right" d="M470 554.667v86h84v-86h-84zM470 724.667v86h84v-86h-84zM470 384.667v84h84v-84h-84zM640 724.667v86h86v-86h-86zM640 42.667v86h86v-86h-86zM810 810.667h86v-768h-86v768zM640 384.667v84h86v-84h-86zM470 212.667v86h84v-86h-84zM128 554.667v86h86v-86h-86zM128 212.667v86h86v-86h-86zM128 384.667v84h86v-84h-86zM470 42.667v86h84v-86h-84zM128 42.667v86h86v-86h-86zM298 384.667v84h86v-84h-86zM298 724.667v86h86v-86h-86zM128 724.667v86h86v-86h-86zM298 42.667v86h86v-86h-86z" />
-<glyph unicode="&#xe231;" glyph-name="border_style" d="M810 554.667v86h86v-86h-86zM128 810.667h768v-86h-682v-682h-86v768zM810 384.667v84h86v-84h-86zM810 212.667v86h86v-86h-86zM470 42.667v86h84v-86h-84zM298 42.667v86h86v-86h-86zM810 42.667v86h86v-86h-86zM640 42.667v86h86v-86h-86z" />
-<glyph unicode="&#xe232;" glyph-name="border_top" d="M640 384.667v84h86v-84h-86zM810 42.667v86h86v-86h-86zM470 554.667v86h84v-86h-84zM640 42.667v86h86v-86h-86zM810 212.667v86h86v-86h-86zM128 810.667h768v-86h-768v86zM810 384.667v84h86v-84h-86zM810 554.667v86h86v-86h-86zM470 212.667v86h84v-86h-84zM128 554.667v86h86v-86h-86zM128 384.667v84h86v-84h-86zM128 42.667v86h86v-86h-86zM128 212.667v86h86v-86h-86zM470 42.667v86h84v-86h-84zM470 384.667v84h84v-84h-84zM298 384.667v84h86v-84h-86zM298 42.667v86h86v-86h-86z" />
-<glyph unicode="&#xe233;" glyph-name="border_vertical" d="M640 384.667v84h86v-84h-86zM640 42.667v86h86v-86h-86zM640 724.667v86h86v-86h-86zM810 554.667v86h86v-86h-86zM810 810.667h86v-86h-86v86zM810 384.667v84h86v-84h-86zM810 42.667v86h86v-86h-86zM470 42.667v768h84v-768h-84zM810 212.667v86h86v-86h-86zM298 724.667v86h86v-86h-86zM128 212.667v86h86v-86h-86zM128 42.667v86h86v-86h-86zM128 384.667v84h86v-84h-86zM298 384.667v84h86v-84h-86zM298 42.667v86h86v-86h-86zM128 724.667v86h86v-86h-86zM128 554.667v86h86v-86h-86z" />
-<glyph unicode="&#xe234;" glyph-name="format_align_center" d="M128 810.667h768v-86h-768v86zM298 640.667h428v-86h-428v86zM128 384.667v84h768v-84h-768zM128 42.667v86h768v-86h-768zM298 298.667h428v-86h-428v86z" />
-<glyph unicode="&#xe235;" glyph-name="format_align_justify" d="M128 810.667h768v-86h-768v86zM128 554.667v86h768v-86h-768zM128 384.667v84h768v-84h-768zM128 212.667v86h768v-86h-768zM128 42.667v86h768v-86h-768z" />
-<glyph unicode="&#xe236;" glyph-name="format_align_left" d="M128 810.667h768v-86h-768v86zM128 42.667v86h768v-86h-768zM128 384.667v84h768v-84h-768zM640 640.667v-86h-512v86h512zM640 298.667v-86h-512v86h512z" />
-<glyph unicode="&#xe237;" glyph-name="format_align_right" d="M128 810.667h768v-86h-768v86zM384 554.667v86h512v-86h-512zM128 384.667v84h768v-84h-768zM384 212.667v86h512v-86h-512zM128 42.667v86h768v-86h-768z" />
-<glyph unicode="&#xe238;" glyph-name="format_bold" d="M576 276.667c36 0 64 28 64 64s-28 64-64 64h-150v-128h150zM426 660.667v-128h128c36 0 64 28 64 64s-28 64-64 64h-128zM666 478.667c56-26 92-82 92-146 0-90-68-162-158-162h-302v598h268c96 0 170-76 170-172 0-44-28-90-70-118z" />
-<glyph unicode="&#xe239;" glyph-name="format_clear" d="M256 724.667h598v-128h-248l-68-160-90 88 30 72h-102l-120 120v8zM140 724.667l12-10 616-618-54-54-242 242-66-156h-128l104 246-296 296z" />
-<glyph unicode="&#xe23a;" glyph-name="format_color_fill" d="M0 84.667h1024v-170h-1024v170zM810 448.667c0 0 86-94 86-150 0-46-40-86-86-86s-84 40-84 86c0 56 84 150 84 150zM222 512.667h410l-206 204zM706 556.667c26-26 26-66 0-90l-234-234c-12-12-30-20-46-20s-32 8-44 20l-236 234c-26 24-26 64 0 90l220 220-102 102 62 60z" />
-<glyph unicode="&#xe23b;" glyph-name="format_color_reset" d="M224 714.667l624-624-54-54-114 112c-46-40-104-64-168-64-142 0-256 114-256 256 0 52 24 114 56 176l-142 142zM768 340.667c0-20-2-38-6-56l-366 368c60 86 116 150 116 150s256-292 256-462z" />
-<glyph unicode="&#xe23c;" glyph-name="format_color_text" d="M410 426.667h204l-102 270zM470 810.667h84l234-598h-96l-46 128h-268l-48-128h-96zM0 84.667h1024v-170h-1024v170z" />
-<glyph unicode="&#xe23d;" glyph-name="format_indent_decrease" d="M470 384.667v84h426v-84h-426zM470 554.667v86h426v-86h-426zM128 810.667h768v-86h-768v86zM128 42.667v86h768v-86h-768zM128 426.667l170 170v-340zM470 212.667v86h426v-86h-426z" />
-<glyph unicode="&#xe23e;" glyph-name="format_indent_increase" d="M470 384.667v84h426v-84h-426zM470 554.667v86h426v-86h-426zM128 810.667h768v-86h-768v86zM470 212.667v86h426v-86h-426zM128 596.667l170-170-170-170v340zM128 42.667v86h768v-86h-768z" />
-<glyph unicode="&#xe23f;" glyph-name="format_italic" d="M426 768.667h342v-128h-120l-144-342h94v-128h-342v128h120l144 342h-94v128z" />
-<glyph unicode="&#xe240;" glyph-name="format_line_spacing" d="M426 384.667v84h512v-84h-512zM426 128.667v84h512v-84h-512zM426 724.667h512v-84h-512v84zM256 640.667v-428h106l-148-148-150 148h106v428h-106l150 148 148-148h-106z" />
-<glyph unicode="&#xe241;" glyph-name="format_list_bulleted" d="M298 724.667h598v-84h-598v84zM298 384.667v84h598v-84h-598zM298 128.667v84h598v-84h-598zM170 234.667c36 0 64-30 64-64s-30-64-64-64-64 30-64 64 28 64 64 64zM170 746.667c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM170 490.667c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64z" />
-<glyph unicode="&#xe242;" glyph-name="format_list_numbered" d="M298 384.667v84h598v-84h-598zM298 128.667v84h598v-84h-598zM298 724.667h598v-84h-598v84zM86 468.667v44h128v-40l-78-88h78v-44h-128v40l76 88h-76zM128 596.667v128h-42v44h84v-172h-42zM86 212.667v44h128v-172h-128v44h84v20h-42v44h42v20h-84z" />
-<glyph unicode="&#xe243;" glyph-name="format_paint" d="M768 768.667h128v-342h-342v-384c0-24-18-42-42-42h-86c-24 0-42 18-42 42v470h426v170h-42v-42c0-24-18-44-42-44h-512c-24 0-44 20-44 44v170c0 24 20 42 44 42h512c24 0 42-18 42-42v-42z" />
-<glyph unicode="&#xe244;" glyph-name="format_quote" d="M598 212.667l84 172h-128v256h256v-256l-84-172h-128zM256 212.667l86 172h-128v256h256v-256l-86-172h-128z" />
-<glyph unicode="&#xe245;" glyph-name="format_size" d="M128 426.667v128h384v-128h-128v-298h-128v298h-128zM384 768.667h554v-128h-212v-512h-128v512h-214v128z" />
-<glyph unicode="&#xe246;" glyph-name="format_strikethrough" d="M128 340.667v86h768v-86h-768zM214 768.667h596v-128h-212v-128h-172v128h-212v128zM426 128.667v128h172v-128h-172z" />
-<glyph unicode="&#xe247;" glyph-name="format_textdirection_l_to_r" d="M896 170.667l-170-170v128h-512v84h512v128zM384 512.667c-94 0-170 76-170 170s76 170 170 170h342v-84h-86v-470h-86v470h-84v-470h-86v214z" />
-<glyph unicode="&#xe248;" glyph-name="format_textdirection_r_to_l" d="M342 212.667h512v-84h-512v-128l-172 170 172 170v-128zM426 512.667c-94 0-170 76-170 170s76 170 170 170h342v-84h-86v-470h-84v470h-86v-470h-86v214z" />
-<glyph unicode="&#xe249;" glyph-name="format_underlined" d="M214 128.667h596v-86h-596v86zM512 212.667c-142 0-256 114-256 256v342h106v-342c0-82 68-148 150-148s150 66 150 148v342h106v-342c0-142-114-256-256-256z" />
-<glyph unicode="&#xe24a;" glyph-name="functions" d="M768 768.667v-128h-298l212-214-212-214h298v-128h-512v86l278 256-278 256v86h512z" />
-<glyph unicode="&#xe24c;" glyph-name="insert_comment" d="M768 596.667v86h-512v-86h512zM768 468.667v86h-512v-86h512zM768 340.667v86h-512v-86h512zM854 852.667c46 0 84-38 84-84v-768l-170 170h-598c-46 0-84 40-84 86v512c0 46 38 84 84 84h684z" />
-<glyph unicode="&#xe24d;" glyph-name="insert_drive_file" d="M554 554.667h236l-236 234v-234zM256 852.667h342l256-256v-512c0-46-40-84-86-84h-512c-46 0-86 38-86 84l2 684c0 46 38 84 84 84z" />
-<glyph unicode="&#xe24f;" glyph-name="insert_invitation" d="M810 128.667v468h-596v-468h596zM682 896.667h86v-86h42c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-48 0-86 40-86 86v596c0 46 38 86 86 86h42v86h86v-86h340v86zM726 426.667v-214h-214v214h214z" />
-<glyph unicode="&#xe252;" glyph-name="merge_type" d="M320 596.667l192 192 192-192h-150v-272l-256-256-60 60 232 230v238h-150zM726 68.667l-146 144 60 60 146-144z" />
-<glyph unicode="&#xe253;" glyph-name="mode_comment" d="M938 768.667v-768l-170 170h-598c-46 0-84 40-84 86v512c0 46 38 84 84 84h684c46 0 84-38 84-84z" />
-<glyph unicode="&#xe254;" glyph-name="mode_edit" d="M884 638.667l-78-78-160 160 78 78c16 16 44 16 60 0l100-100c16-16 16-44 0-60zM128 202.667l472 472 160-160-472-472h-160v160z" />
-<glyph unicode="&#xe255;" glyph-name="publish" d="M214 340.667l298 300 298-300h-170v-256h-256v256h-170zM214 768.667h596v-86h-596v86z" />
-<glyph unicode="&#xe256;" glyph-name="space_bar" d="M768 554.667h86v-256h-684v256h86v-170h512v170z" />
-<glyph unicode="&#xe257;" glyph-name="strikethrough_s" d="M400 378.667c0-76.243 48.309-108 124-108 52.313 0 98 21.34 98 72 0 47.832-25.37 58.685-60 76-6 2-16 6-24 8h-410v86h768v-86h-166c2-4 6-10 8-14 8-20 14-44 14-70 0-92.509-60.376-138.965-134-160-28-8-58-12-92-12-20 0-42 2-62 6-43.831 8.766-81.207 20.905-112 44-45.673 34.254-78 79.826-78 158h126zM622 618.667c0 61.554-39.204 90-102 90-45.146 0-79.257-14.514-94-44-4-8-6-18-6-28 0-20 12-38 32-52 16-10 32-20 60-30h-196c-2 4-6 6-8 10-12 20-16 44-16 72 0 57.483 29.861 98.689 64 126 41.082 28.758 95.625 48 166 48 70.131 0 128.265-20.039 166-54 35.121-31.608 62-75.894 62-138h-128z" />
-<glyph unicode="&#xe258;" glyph-name="vertical_align_bottom" d="M170 128.667h684v-86h-684v86zM682 384.667l-170-172-170 172h128v426h84v-426h128z" />
-<glyph unicode="&#xe259;" glyph-name="vertical_align_center" d="M170 468.667h684v-84h-684v84zM682 724.667l-170-170-170 170h128v172h84v-172h128zM342 128.667l170 170 170-170h-128v-172h-84v172h-128z" />
-<glyph unicode="&#xe25a;" glyph-name="vertical_align_top" d="M170 810.667h684v-86h-684v86zM342 468.667l170 172 170-172h-128v-426h-84v426h-128z" />
-<glyph unicode="&#xe25b;" glyph-name="wrap_text" d="M726 468.667c94 0 170-76 170-170s-76-170-170-170h-86v-86l-128 128 128 128v-86h96c46 0 86 40 86 86s-40 86-86 86h-566v84h556zM854 724.667v-84h-684v84h684zM170 128.667v84h256v-84h-256z" />
-<glyph unicode="&#xe25c;" glyph-name="money_off" d="M228 764.667l622-624-54-54-94 96c-26-24-64-40-104-48v-92h-128v92c-82 18-152 70-158 164h94c4-50 40-90 128-90 58 0 88 20 102 40l-150 148c-100 30-166 80-166 168l-146 146zM534 644.667c-26 0-48-4-66-12l-62 62c20 10 42 18 64 24v92h128v-94c90-22 134-88 136-162h-94c-2 54-30 90-106 90z" />
-<glyph unicode="&#xe25d;" glyph-name="drag_handle" d="M170 298.667v86h684v-86h-684zM854 554.667v-86h-684v86h684z" />
-<glyph unicode="&#xe25e;" glyph-name="format_shapes" d="M456 394.667h112l-56 164zM586 340.667h-150l-30-84h-70l146 384h60l144-384h-68zM810 724.667h86v86h-86v-86zM896 42.667v86h-86v-86h86zM726 128.667v84h84v428h-84v84h-428v-84h-84v-428h84v-84h428zM214 42.667v86h-86v-86h86zM128 810.667v-86h86v86h-86zM982 640.667h-86v-428h86v-256h-256v86h-428v-86h-256v256h86v428h-86v256h256v-86h428v86h256v-256z" />
-<glyph unicode="&#xe25f;" glyph-name="highlight" d="M724 658.667l90 90 60-60-90-92zM150 688.667l60 60 90-90-60-62zM470 852.667h84v-128h-84v128zM256 340.667v214h512v-214l-128-128v-212h-256v212z" />
-<glyph unicode="&#xe260;" glyph-name="linear_scale" d="M832 532.667c58 0 106-48 106-106s-48-106-106-106c-44 0-82 26-98 64h-124c-16-38-54-64-98-64s-82 26-98 64h-124c-16-38-54-64-98-64-58 0-106 48-106 106s48 106 106 106c44 0 82-26 98-64h124c16 38 54 64 98 64s82-26 98-64h124c16 38 54 64 98 64z" />
-<glyph unicode="&#xe261;" glyph-name="short_text" d="M170 384.667h428v-86h-428v86zM170 554.667h684v-86h-684v86z" />
-<glyph unicode="&#xe262;" glyph-name="text_fields" d="M918 554.667v-128h-128v-298h-128v298h-128v128h384zM106 768.667h556v-128h-214v-512h-128v512h-214v128z" />
-<glyph unicode="&#xe263;" glyph-name="monetization_on" d="M572 166.667c74 14 134 56 134 134 0 108-94 146-180 168s-112 46-112 82c0 40 38 70 102 70 68 0 92-32 94-80h84c-2 66-42 124-122 144v84h-114v-84c-74-16-132-62-132-136 0-88 72-130 178-156 96-22 114-56 114-92 0-26-18-68-102-68-78 0-110 36-114 80h-84c4-82 68-128 140-144v-84h114v82zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426z" />
-<glyph unicode="&#xe264;" glyph-name="title" d="M214 768.667h596v-128h-234v-512h-128v512h-234v128z" />
-<glyph unicode="&#xe2bc;" glyph-name="attachment" d="M86 404.667c0 130 104 236 234 236h448c94 0 170-78 170-172s-76-170-170-170h-362c-58 0-108 48-108 106s50 108 108 108h320v-86h-324c-24 0-24-42 0-42h366c46 0 86 38 86 84s-40 86-86 86h-448c-82 0-150-68-150-150s68-148 150-148h406v-86h-406c-130 0-234 104-234 234z" />
-<glyph unicode="&#xe2be;" glyph-name="cloud_circle" d="M704 256.667c58 0 106 48 106 106s-48 106-106 106h-22c0 94-76 172-170 172-80 0-146-56-164-130l-6 2c-70 0-128-58-128-128s58-128 128-128h362zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426z" />
-<glyph unicode="&#xe2bf;" glyph-name="cloud_done" d="M426 212.667l282 282-60 60-222-220-88 88-60-60zM826 510.667c110-8 198-100 198-212 0-118-96-214-214-214h-554c-142 0-256 114-256 256 0 132 100 240 228 254 54 102 160 174 284 174 156 0 284-110 314-258z" />
-<glyph unicode="&#xe2c0;" glyph-name="cloud_download" d="M726 384.667h-128v170h-172v-170h-128l214-214zM826 510.667c110-8 198-100 198-212 0-118-96-214-214-214h-554c-142 0-256 114-256 256 0 132 100 240 228 254 54 102 160 174 284 174 156 0 284-110 314-258z" />
-<glyph unicode="&#xe2c1;" glyph-name="cloud_off" d="M330 512.667h-74c-94 0-170-78-170-172s76-170 170-170h416zM128 714.667l54 54 714-714-54-54-86 84h-500c-142 0-256 114-256 256 0 138 110 250 246 256zM826 510.667c110-8 198-100 198-212 0-72-36-136-90-174l-62 62c40 22 66 64 66 112 0 70-58 128-128 128h-64v22c0 130-104 234-234 234-40 0-76-8-108-26l-64 62c50 32 108 50 172 50 156 0 284-110 314-258z" />
-<glyph unicode="&#xe2c2;" glyph-name="cloud_queue" d="M810 170.667c70 0 128 58 128 128s-58 128-128 128h-64v22c0 130-104 234-234 234-108 0-198-72-226-170h-30c-94 0-170-78-170-172s76-170 170-170h554zM826 510.667c110-8 198-100 198-212 0-118-96-214-214-214h-554c-142 0-256 114-256 256 0 132 100 240 228 254 54 102 160 174 284 174 156 0 284-110 314-258z" />
-<glyph unicode="&#xe2c3;" glyph-name="cloud_upload" d="M598 384.667h128l-214 212-214-212h128v-172h172v172zM826 510.667c110-8 198-100 198-212 0-118-96-214-214-214h-554c-142 0-256 114-256 256 0 132 100 240 228 254 54 102 160 174 284 174 156 0 284-110 314-258z" />
-<glyph unicode="&#xe2c6;" glyph-name="file_upload" d="M214 170.667h596v-86h-596v86zM384 256.667v256h-170l298 298 298-298h-170v-256h-256z" />
-<glyph unicode="&#xe2c7;" glyph-name="folder" d="M426 768.667l86-86h342c46 0 84-40 84-86v-426c0-46-38-86-84-86h-684c-46 0-84 40-84 86v512c0 46 38 86 84 86h256z" />
-<glyph unicode="&#xe2c8;" glyph-name="folder_open" d="M854 170.667v426h-684v-426h684zM854 682.667c46 0 84-40 84-86v-426c0-46-38-86-84-86h-684c-46 0-84 40-84 86v512c0 46 38 86 84 86h256l86-86h342z" />
-<glyph unicode="&#xe2c9;" glyph-name="folder_shared" d="M810 212.667v44c0 56-114 84-170 84s-170-28-170-84v-44h340zM640 554.667c-46 0-86-40-86-86s40-84 86-84 86 38 86 84-40 86-86 86zM854 682.667c46 0 84-40 84-86v-426c0-46-38-86-84-86h-684c-46 0-84 40-84 86v512c0 46 38 86 84 86h256l86-86h342z" />
-<glyph unicode="&#xe2cc;" glyph-name="create_new_folder" d="M810 340.667v86h-128v128h-84v-128h-128v-86h128v-128h84v128h128zM854 682.667c48 0 84-38 84-86v-426c0-48-36-86-84-86h-684c-48 0-84 38-84 86v512c0 48 36 86 84 86h256l86-86h342z" />
-<glyph unicode="&#xe307;" glyph-name="cast" d="M42 512.667c258 0 470-210 470-470h-86c0 212-172 384-384 384v86zM42 340.667c166 0 300-132 300-298h-86c0 118-96 214-214 214v84zM42 170.667c70 0 128-58 128-128h-128v128zM896 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-298v86h298v596h-768v-128h-86v128c0 46 40 86 86 86h768z" />
-<glyph unicode="&#xe308;" glyph-name="cast_connected" d="M896 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-298v86h298v596h-768v-128h-86v128c0 46 40 86 86 86h768zM42 512.667c258 0 470-210 470-470h-86c0 212-172 384-384 384v86zM810 640.667v-428h-240c-54 168-188 304-356 358v70h596zM42 340.667c166 0 300-132 300-298h-86c0 118-96 214-214 214v84zM42 170.667c70 0 128-58 128-128h-128v128z" />
-<glyph unicode="&#xe30b;" glyph-name="desktop_mac" d="M896 340.667v428h-768v-428h768zM896 852.667c46 0 86-38 86-84v-512c0-46-40-86-86-86h-298l84-128v-42h-340v42l84 128h-298c-46 0-86 40-86 86v512c0 46 40 84 86 84h768z" />
-<glyph unicode="&#xe30c;" glyph-name="desktop_windows" d="M896 256.667v512h-768v-512h768zM896 852.667c46 0 86-38 86-84v-512c0-46-40-86-86-86h-298v-86h84v-84h-340v84h84v86h-298c-46 0-86 40-86 86v512c0 46 40 84 86 84h768z" />
-<glyph unicode="&#xe30d;" glyph-name="developer_board" d="M512 468.667h170v-256h-170v256zM256 640.667h214v-214h-214v214zM512 640.667h170v-128h-170v128zM256 384.667h214v-172h-214v172zM768 128.667v596h-598v-596h598zM938 554.667h-84v-86h84v-84h-84v-86h84v-86h-84v-84c0-46-40-86-86-86h-598c-46 0-84 40-84 86v596c0 46 38 86 84 86h598c46 0 86-40 86-86v-84h84v-86z" />
-<glyph unicode="&#xe30e;" glyph-name="dock" d="M682 298.667v426h-340v-426h340zM682 894.667c46 0 86-38 86-84v-598c0-46-40-84-86-84h-340c-46 0-86 38-86 84v598c0 46 40 86 86 86zM342-43.333v86h340v-86h-340z" />
-<glyph unicode="&#xe310;" glyph-name="headset" d="M512 896.667c212 0 384-172 384-384v-300c0-70-58-128-128-128h-128v342h170v86c0 166-132 298-298 298s-298-132-298-298v-86h170v-342h-128c-70 0-128 58-128 128v300c0 212 172 384 384 384z" />
-<glyph unicode="&#xe311;" glyph-name="headset_mic" d="M512 896.667c212 0 384-172 384-384v-428c0-70-58-128-128-128h-256v86h298v42h-170v342h170v86c0 166-132 298-298 298s-298-132-298-298v-86h170v-342h-128c-70 0-128 58-128 128v300c0 212 172 384 384 384z" />
-<glyph unicode="&#xe312;" glyph-name="keyboard" d="M810 512.667v84h-84v-84h84zM810 384.667v84h-84v-84h84zM682 512.667v84h-84v-84h84zM682 384.667v84h-84v-84h84zM682 212.667v86h-340v-86h340zM298 512.667v84h-84v-84h84zM298 384.667v84h-84v-84h84zM342 468.667v-84h84v84h-84zM342 596.667v-84h84v84h-84zM470 468.667v-84h84v84h-84zM470 596.667v-84h84v84h-84zM854 724.667c46 0 84-38 84-84v-428c0-46-38-84-84-84h-684c-46 0-84 38-84 84v428c0 46 38 84 84 84h684z" />
-<glyph unicode="&#xe313;" glyph-name="keyboard_arrow_down" d="M316 604.667l196-196 196 196 60-60-256-256-256 256z" />
-<glyph unicode="&#xe314;" glyph-name="keyboard_arrow_left" d="M658 252.667l-60-60-256 256 256 256 60-60-196-196z" />
-<glyph unicode="&#xe315;" glyph-name="keyboard_arrow_right" d="M366 240.667l196 196-196 196 60 60 256-256-256-256z" />
-<glyph unicode="&#xe316;" glyph-name="keyboard_arrow_up" d="M316 280.667l-60 60 256 256 256-256-60-60-196 196z" />
-<glyph unicode="&#xe317;" glyph-name="keyboard_backspace" d="M896 468.667v-84h-604l152-154-60-60-256 256 256 256 60-60-152-154h604z" />
-<glyph unicode="&#xe318;" glyph-name="keyboard_capslock" d="M256 170.667v86h512v-86h-512zM512 580.667l-196-196-60 60 256 256 256-256-60-60z" />
-<glyph unicode="&#xe31a;" glyph-name="keyboard_hide" d="M512-43.333l-170 172h340zM810 596.667v86h-84v-86h84zM810 468.667v86h-84v-86h84zM682 596.667v86h-84v-86h84zM682 468.667v86h-84v-86h84zM682 298.667v86h-340v-86h340zM298 596.667v86h-84v-86h84zM298 468.667v86h-84v-86h84zM342 554.667v-86h84v86h-84zM342 682.667v-86h84v86h-84zM470 554.667v-86h84v86h-84zM470 682.667v-86h84v86h-84zM854 810.667c46 0 84-40 84-86v-426c0-46-38-86-84-86h-684c-46 0-84 40-84 86v426c0 46 38 86 84 86h684z" />
-<glyph unicode="&#xe31b;" glyph-name="keyboard_return" d="M810 640.667h86v-256h-648l154-154-60-60-256 256 256 256 60-60-154-154h562v172z" />
-<glyph unicode="&#xe31c;" glyph-name="keyboard_tab" d="M854 682.667h84v-512h-84v512zM494 622.667l60 60 256-256-256-256-60 60 154 154h-606v84h606z" />
-<glyph unicode="&#xe31d;" glyph-name="keyboard_voice" d="M738 426.667h72c0-146-116-266-256-286v-140h-84v140c-140 20-256 140-256 286h72c0-128 108-218 226-218s226 90 226 218zM512 298.667c-70 0-128 58-128 128v256c0 70 58 128 128 128s128-58 128-128v-256c0-70-58-128-128-128z" />
-<glyph unicode="&#xe31e;" glyph-name="laptop" d="M170 682.667v-426h684v426h-684zM854 170.667h170v-86h-1024v86h170c-46 0-84 40-84 86v426c0 46 38 86 84 86h684c46 0 84-40 84-86v-426c0-46-38-86-84-86z" />
-<glyph unicode="&#xe31f;" glyph-name="laptop_chromebook" d="M854 298.667v426h-684v-426h684zM598 170.667v42h-172v-42h172zM938 170.667h86v-86h-1024v86h86v640h852v-640z" />
-<glyph unicode="&#xe320;" glyph-name="laptop_mac" d="M512 128.667c24 0 42 18 42 42s-18 42-42 42-42-18-42-42 18-42 42-42zM170 724.667v-468h684v468h-684zM854 170.667h170c0-46-40-86-86-86h-852c-46 0-86 40-86 86h170c-46 0-84 40-84 86v468c0 46 38 86 84 86h684c46 0 84-40 84-86v-468c0-46-38-86-84-86z" />
-<glyph unicode="&#xe321;" glyph-name="laptop_windows" d="M170 724.667v-426h684v426h-684zM854 170.667h170v-86h-1024v86h170v42c-46 0-84 40-84 86v426c0 46 38 86 84 86h684c46 0 84-40 84-86v-426c0-46-38-86-84-86v-42z" />
-<glyph unicode="&#xe322;" glyph-name="memory" d="M726 212.667v428h-428v-428h428zM896 468.667h-86v-84h86v-86h-86v-86c0-46-38-84-84-84h-86v-86h-86v86h-84v-86h-86v86h-86c-46 0-84 38-84 84v86h-86v86h86v84h-86v86h86v86c0 46 38 84 84 84h86v86h86v-86h84v86h86v-86h86c46 0 84-38 84-84v-86h86v-86zM554 384.667v84h-84v-84h84zM640 554.667v-256h-256v256h256z" />
-<glyph unicode="&#xe323;" glyph-name="mouse" d="M470 892.667v-338h-300c0 174 132 318 300 338zM170 298.667v170h684v-170c0-188-154-342-342-342s-342 154-342 342zM554 892.667c168-20 300-164 300-338h-300v338z" />
-<glyph unicode="&#xe324;" glyph-name="phone_android" d="M736 170.667v598h-448v-598h448zM598 42.667v42h-172v-42h172zM682 896.667c70 0 128-58 128-128v-684c0-70-58-128-128-128h-340c-70 0-128 58-128 128v684c0 70 58 128 128 128h340z" />
-<glyph unicode="&#xe325;" glyph-name="phone_iphone" d="M682 170.667v598h-384v-598h384zM490 0.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM662 896.667c58 0 106-50 106-108v-724c0-58-48-108-106-108h-342c-58 0-106 50-106 108v724c0 58 48 108 106 108h342z" />
-<glyph unicode="&#xe326;" glyph-name="phonelink" d="M938 212.667v300h-170v-300h170zM982 596.667c24 0 42-18 42-42v-426c0-24-18-44-42-44h-256c-24 0-44 20-44 44v426c0 24 20 42 44 42h256zM170 682.667v-470h428v-128h-598v128h86v470c0 46 38 86 84 86h768v-86h-768z" />
-<glyph unicode="&#xe327;" glyph-name="phonelink_off" d="M982 596.667c24 0 42-18 42-42v-426c0-24-18-44-42-44h-8l-128 128h92v300h-170v-222l-86 86v178c0 24 20 42 44 42h256zM170 670.667v-458h458zM82 868.667c276.214-276.452 551.97-553.364 828-830l-54-54-100 100h-756v128h86v470c0 20 8 40 20 54l-78 78zM938 682.667h-562l-86 86h648v-86z" />
-<glyph unicode="&#xe328;" glyph-name="router" d="M640 170.667v86h-86v-86h86zM490 170.667v86h-84v-86h84zM342 170.667v86h-86v-86h86zM810 384.667c46 0 86-40 86-86v-170c0-46-40-86-86-86h-596c-46 0-86 40-86 86v170c0 46 40 86 86 86h426v170h86v-170h84zM824 652.667l-34-34c-30 30-70 42-108 42s-76-12-106-42l-34 34c38 38 88 60 140 60s104-22 142-60zM862 686.667c-52 46-116 72-180 72s-126-26-178-72l-34 34c60 60 136 90 212 90s154-30 214-90z" />
-<glyph unicode="&#xe329;" glyph-name="scanner" d="M810 212.667v86h-426v-86h426zM298 212.667v86h-84v-86h84zM844 482.667c30-8 52-44 52-78v-234c0-46-40-86-86-86h-596c-46 0-86 40-86 86v170c0 46 40 86 86 86h536l-600 218 30 80z" />
-<glyph unicode="&#xe32a;" glyph-name="security" d="M512 896.667l384-172v-256c0-236-164-458-384-512-220 54-384 276-384 512v256zM512 426.667v-382c158 50 276 206 298 382h-298zM512 426.667v376l-298-132v-244h298z" />
-<glyph unicode="&#xe32b;" glyph-name="sim_card" d="M726 298.667v170h-86v-170h86zM554 384.667v84h-84v-84h84zM554 128.667v170h-84v-170h84zM384 298.667v170h-86v-170h86zM726 128.667v84h-86v-84h86zM384 128.667v84h-86v-84h86zM852 768.667l2-684c0-46-40-84-86-84h-512c-46 0-86 38-86 84v512l256 256h342c46 0 84-38 84-84z" />
-<glyph unicode="&#xe32d;" glyph-name="speaker" d="M512 426.667c70 0 128-58 128-128s-58-128-128-128-128 58-128 128 58 128 128 128zM512 84.667c118 0 214 96 214 214s-96 214-214 214-214-96-214-214 96-214 214-214zM512 768.667c-48 0-86-40-86-86s38-86 86-86c46 0 86 40 86 86s-40 86-86 86zM726 852.667c46 0 84-38 84-84v-684c0-46-38-84-84-84h-428c-46 0-84 38-84 84v684c0 46 38 84 84 84h428z" />
-<glyph unicode="&#xe32e;" glyph-name="speaker_group" d="M256 724.667v-682h426v-86h-426c-48 0-86 40-86 86v682h86zM490 404.667c0 58 50 108 108 108s106-50 106-108-48-106-106-106-108 48-108 106zM598 234.667c94 0 170 76 170 170s-76 172-170 172-172-78-172-172 78-170 172-170zM598 810.667c-46 0-86-38-86-86s40-84 86-84 84 36 84 84-38 86-84 86zM776 896.667c42 0 78-36 78-78v-614c0-42-36-76-78-76h-358c-42 0-76 34-76 76v614c0 42 34 78 76 78h358z" />
-<glyph unicode="&#xe32f;" glyph-name="tablet" d="M810 170.667v512h-596v-512h596zM896 768.667c46 0 86-40 86-86l-2-512c0-46-38-86-84-86h-768c-46 0-86 40-86 86v512c0 46 40 86 86 86h768z" />
-<glyph unicode="&#xe330;" glyph-name="tablet_android" d="M822 128.667v682h-620v-682h620zM598 0.667v42h-172v-42h172zM768 938.667c70 0 128-58 128-128v-768c0-70-58-128-128-128h-512c-70 0-128 58-128 128v768c0 70 58 128 128 128h512z" />
-<glyph unicode="&#xe331;" glyph-name="tablet_mac" d="M810 128.667v682h-640v-682h640zM490-43.333c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM790 938.667c58 0 106-48 106-106v-812c0-58-48-106-106-106h-598c-58 0-106 48-106 106v812c0 58 48 106 106 106h598z" />
-<glyph unicode="&#xe332;" glyph-name="toys" d="M512 426.667c0-128-106-234-234-234s-236 106-236 234h470zM512 426.667c-128 0-234 106-234 234s106 236 234 236v-470zM512 426.667c128 0 234-106 234-234s-106-236-234-236v470zM512 426.667c0 128 106 234 234 234s236-106 236-234h-470z" />
-<glyph unicode="&#xe333;" glyph-name="tv" d="M896 212.667v512h-768v-512h768zM896 810.667c46 0 86-40 86-86l-2-512c0-46-38-84-84-84h-214v-86h-340v86h-214c-46 0-86 38-86 84v512c0 46 40 86 86 86h768z" />
-<glyph unicode="&#xe334;" glyph-name="watch" d="M256 426.667c0-142 114-256 256-256s256 114 256 256-114 256-256 256-256-114-256-256zM854 426.667c0-108-52-206-130-268l-42-244h-340l-42 244c-80 62-130 160-130 268s50 206 130 268l42 244h340l42-244c78-62 130-160 130-268z" />
-<glyph unicode="&#xe335;" glyph-name="device_hub" d="M726 256.667h170v-214h-214v130l-170 180-170-180v-130h-214v214h170l172 170v136c-50 18-86 64-86 120 0 70 58 128 128 128s128-58 128-128c0-56-36-102-86-120v-136z" />
-<glyph unicode="&#xe336;" glyph-name="power_input" d="M682 298.667v86h214v-86h-214zM384 298.667v86h214v-86h-214zM86 298.667v86h212v-86h-212zM86 554.667h810v-86h-810v86z" />
-<glyph unicode="&#xe337;" glyph-name="devices_other" d="M896 170.667v342h-170v-342h170zM938 596.667c22 0 44-20 44-42v-426c0-22-22-44-44-44h-256c-22 0-42 22-42 44v426c0 22 20 42 42 42h256zM470 192.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM554 426.667v-76c26-24 44-56 44-94s-18-72-44-96v-76h-170v76c-26 24-42 58-42 96s16 70 42 94v76h170zM128 682.667v-512h170v-86h-170c-46 0-86 40-86 86v512c0 46 40 86 86 86h768v-86h-768z" />
-<glyph unicode="&#xe338;" glyph-name="videogame_asset" d="M832 426.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM662 298.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM470 384.667v84h-128v128h-86v-128h-128v-84h128v-128h86v128h128zM896 682.667c46 0 86-40 86-86v-340c0-46-40-86-86-86h-768c-46 0-86 40-86 86v340c0 46 40 86 86 86h768z" />
-<glyph unicode="&#xe39e;" glyph-name="adjust" d="M640 426.667c0-70-58-128-128-128s-128 58-128 128 58 128 128 128 128-58 128-128zM512 84.667c188 0 342 154 342 342s-154 342-342 342-342-154-342-342 154-342 342-342zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426z" />
-<glyph unicode="&#xe39f;" glyph-name="assistant" d="M592 388.667l176 80-176 80-80 176-80-176-176-80 176-80 80-176zM810 852.667c46 0 86-38 86-84v-598c0-46-40-86-86-86h-170l-128-128-128 128h-170c-46 0-86 40-86 86v598c0 46 40 84 86 84h596z" />
-<glyph unicode="&#xe3a1;" glyph-name="audiotrack" d="M512 810.667h298v-128h-170v-470h-2c-10-96-92-170-190-170-106 0-192 86-192 192s86 192 192 192c22 0 44-4 64-12v396z" />
-<glyph unicode="&#xe3a2;" glyph-name="blur_circular" d="M598 384.667c24 0 42-20 42-44s-18-42-42-42-44 18-44 42 20 44 44 44zM598 234.667c12 0 20-10 20-22s-8-20-20-20-22 8-22 20 10 22 22 22zM512 84.667c188 0 342 154 342 342s-154 342-342 342-342-154-342-342 154-342 342-342zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426zM726 532.667c12 0 20-8 20-20s-8-22-20-22-22 10-22 22 10 20 22 20zM726 362.667c12 0 20-10 20-22s-8-20-20-20-22 8-22 20 10 22 22 22zM598 618.667c-12 0-22 10-22 22s10 20 22 20 20-8 20-20-8-22-20-22zM598 554.667c24 0 42-18 42-42s-18-44-42-44-44 20-44 44 20 42 44 42zM426 618.667c-12 0-20 10-20 22s8 20 20 20 22-8 22-20-10-22-22-22zM298 362.667c12 0 22-10 22-22s-10-20-22-20-20 8-20 20 8 22 20 22zM426 234.667c12 0 22-10 22-22s-10-20-22-20-20 8-20 20 8 22 20 22zM298 532.667c12 0 22-8 22-20s-10-22-22-22-20 10-20 22 8 20 20 20zM426 384.667c24 0 44-20 44-44s-20-42-44-42-42 18-42 42 18 44 42 44zM426 554.667c24 0 44-18 44-42s-20-44-44-44-42 20-42 44 18 42 42 42z" />
-<glyph unicode="&#xe3a3;" glyph-name="blur_linear" d="M554 212.667c-24 0-42 20-42 44s18 42 42 42 44-18 44-42-20-44-44-44zM554 384.667c-24 0-42 18-42 42s18 42 42 42 44-18 44-42-20-42-44-42zM554 554.667c-24 0-42 18-42 42s18 44 42 44 44-20 44-44-20-42-44-42zM726 404.667c-12 0-22 10-22 22s10 22 22 22 20-10 20-22-8-22-20-22zM726 576.667c-12 0-22 8-22 20s10 22 22 22 20-10 20-22-8-20-20-20zM128 810.667h768v-86h-768v86zM726 234.667c-12 0-22 10-22 22s10 20 22 20 20-8 20-20-8-22-20-22zM384 212.667c-24 0-42 20-42 44s18 42 42 42 42-18 42-42-18-44-42-44zM214 362.667c-36 0-64 28-64 64s28 64 64 64 64-28 64-64-28-64-64-64zM214 532.667c-36 0-64 28-64 64s28 64 64 64 64-28 64-64-28-64-64-64zM128 42.667v86h768v-86h-768zM384 554.667c-24 0-42 18-42 42s18 44 42 44 42-20 42-44-18-42-42-42zM384 384.667c-24 0-42 18-42 42s18 42 42 42 42-18 42-42-18-42-42-42zM214 192.667c-36 0-64 28-64 64s28 64 64 64 64-28 64-64-28-64-64-64z" />
-<glyph unicode="&#xe3a4;" glyph-name="blur_off" d="M128 362.667c12 0 22-10 22-22s-10-20-22-20-22 8-22 20 10 22 22 22zM256 212.667c24 0 42-18 42-42s-18-42-42-42-42 18-42 42 18 42 42 42zM426 64.667c12 0 22-10 22-22s-10-22-22-22-20 10-20 22 8 22 20 22zM128 532.667c12 0 22-8 22-20s-10-22-22-22-22 10-22 22 10 20 22 20zM256 384.667c24 0 42-20 42-44s-18-42-42-42-42 18-42 42 18 44 42 44zM896 362.667c12 0 22-10 22-22s-10-20-22-20-22 8-22 20 10 22 22 22zM426 212.667c24 0 44-18 44-42s-20-42-44-42-42 18-42 42 18 42 42 42zM106 714.667l54 54 694-694-56-54-160 162c2-4 2-8 2-12 0-24-18-42-42-42s-44 18-44 42 20 42 44 42c4 0 8 0 12-2l-120 120c-4-30-32-54-64-54-36 0-64 28-64 64 0 32 24 60 54 64l-120 120c2-4 2-8 2-12 0-24-18-44-42-44s-42 20-42 44 18 42 42 42l12-2zM598 64.667c12 0 20-10 20-22s-8-22-20-22-22 10-22 22 10 22 22 22zM768 640.667c-24 0-42 18-42 42s18 42 42 42 42-18 42-42-18-42-42-42zM768 468.667c-24 0-42 20-42 44s18 42 42 42 42-18 42-42-18-44-42-44zM768 298.667c-24 0-42 18-42 42s18 44 42 44 42-20 42-44-18-42-42-42zM426 640.667c-24 0-42 18-42 42s18 42 42 42 44-18 44-42-20-42-44-42zM896 490.667c-12 0-22 10-22 22s10 20 22 20 22-8 22-20-10-22-22-22zM426 788.667c-12 0-20 10-20 22s8 22 20 22 22-10 22-22-10-22-22-22zM598 788.667c-12 0-22 10-22 22s10 22 22 22 20-10 20-22-8-22-20-22zM588 448.667c-28 4-50 26-54 54v10c0 36 28 64 64 64s64-28 64-64-28-64-64-64h-10zM598 640.667c-24 0-44 18-44 42s20 42 44 42 42-18 42-42-18-42-42-42z" />
-<glyph unicode="&#xe3a5;" glyph-name="blur_on" d="M598 576.667c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM598 404.667c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM426 212.667c24 0 44-18 44-42s-20-42-44-42-42 18-42 42 18 42 42 42zM426 576.667c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM598 64.667c12 0 20-10 20-22s-8-22-20-22-22 10-22 22 10 22 22 22zM598 212.667c24 0 42-18 42-42s-18-42-42-42-44 18-44 42 20 42 44 42zM896 362.667c12 0 22-10 22-22s-10-20-22-20-22 8-22 20 10 22 22 22zM768 724.667c24 0 42-18 42-42s-18-42-42-42-42 18-42 42 18 42 42 42zM768 554.667c24 0 42-18 42-42s-18-44-42-44-42 20-42 44 18 42 42 42zM768 212.667c24 0 42-18 42-42s-18-42-42-42-42 18-42 42 18 42 42 42zM768 384.667c24 0 42-20 42-44s-18-42-42-42-42 18-42 42 18 44 42 44zM426 404.667c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM426 640.667c-24 0-42 18-42 42s18 42 42 42 44-18 44-42-20-42-44-42zM426 788.667c-12 0-20 10-20 22s8 22 20 22 22-10 22-22-10-22-22-22zM426 64.667c12 0 22-10 22-22s-10-22-22-22-20 10-20 22 8 22 20 22zM128 362.667c12 0 22-10 22-22s-10-20-22-20-22 8-22 20 10 22 22 22zM598 788.667c-12 0-22 10-22 22s10 22 22 22 20-10 20-22-8-22-20-22zM598 640.667c-24 0-44 18-44 42s20 42 44 42 42-18 42-42-18-42-42-42zM896 490.667c-12 0-22 10-22 22s10 20 22 20 22-8 22-20-10-22-22-22zM256 724.667c24 0 42-18 42-42s-18-42-42-42-42 18-42 42 18 42 42 42zM128 532.667c12 0 22-8 22-20s-10-22-22-22-22 10-22 22 10 20 22 20zM256 554.667c24 0 42-18 42-42s-18-44-42-44-42 20-42 44 18 42 42 42zM256 212.667c24 0 42-18 42-42s-18-42-42-42-42 18-42 42 18 42 42 42zM256 384.667c24 0 42-20 42-44s-18-42-42-42-42 18-42 42 18 44 42 44z" />
-<glyph unicode="&#xe3a6;" glyph-name="brightness_1" d="M86 426.667c0 236 190 426 426 426s426-190 426-426-190-426-426-426-426 190-426 426z" />
-<glyph unicode="&#xe3a7;" glyph-name="brightness_2" d="M426 852.667c236 0 428-190 428-426s-192-426-428-426c-78 0-150 20-212 56 128 74 212 212 212 370s-84 296-212 370c62 36 134 56 212 56z" />
-<glyph unicode="&#xe3a8;" glyph-name="brightness_3" d="M384 852.667c236 0 426-190 426-426s-190-426-426-426c-44 0-88 6-128 18 174 54 298 216 298 408s-124 354-298 408c40 12 84 18 128 18z" />
-<glyph unicode="&#xe3a9;" glyph-name="brightness_4" d="M512 170.667c142 0 256 114 256 256s-114 256-256 256c-38 0-74-10-106-24 88-40 148-128 148-232s-60-192-148-232c32-14 68-24 106-24zM854 568.667l140-142-140-142v-200h-200l-142-140-142 140h-200v200l-140 142 140 142v200h200l142 140 142-140h200v-200z" />
-<glyph unicode="&#xe3ad;" glyph-name="broken_image" d="M768 450.667l128-128v-194c0-46-40-86-86-86h-596c-46 0-86 40-86 86v280l128-128 170 172 172-172zM896 724.667v-280l-128 128-170-172-172 172-170-172-128 130v194c0 46 40 86 86 86h596c46 0 86-40 86-86z" />
-<glyph unicode="&#xe3ae;" glyph-name="brush" d="M884 740.667c16-16 16-44 0-60l-382-382-118 118 382 382c16 16 44 16 60 0zM298 340.667c70 0 128-58 128-128 0-94-76-170-170-170-64 0-130 34-170 86 36 0 84 28 84 84 0 70 58 128 128 128z" />
-<glyph unicode="&#xe3af;" glyph-name="camera" d="M420 10.667c68.709 118.625 136.494 238.172 206 356l156-270c-74-60-168-96-270-96-32 0-62 4-92 10zM104 298.667h414l-158-270c-122 46-216 146-256 270zM198 714.667c71.999-124.667 143.587-249.746 216-374h-320c-6 28-8 56-8 86 0 112 42 212 112 288zM930 512.667c6-28 8-56 8-86 0-112-42-212-112-288l-204 352-12 22h320zM920 554.667h-414l158 270c122-46 216-146 256-270zM402 490.667l-4-4-156 270c74 60 168 96 270 96 32 0 62-4 92-10z" />
-<glyph unicode="&#xe3b1;" glyph-name="camera_front" d="M298 852.667v-448c0 72 142 108 214 108s214-36 214-108v448h-428zM726 938.667c46 0 84-40 84-86v-596c0-46-38-86-84-86h-300l128-128-128-128v86h-212v84h212v86h-128c-46 0-84 40-84 86v596c0 46 38 86 84 86h428zM512 596.667c-46 0-84 40-84 86s38 86 84 86 86-40 86-86-40-86-86-86zM598 84.667h212v-84h-212v84z" />
-<glyph unicode="&#xe3b2;" glyph-name="camera_rear" d="M512 682.667c46 0 84 40 84 86s-38 84-84 84-86-38-86-84 38-86 86-86zM726 938.667c46 0 84-40 84-86v-596c0-46-38-86-84-86h-300l128-128-128-128v86h-212v84h212v86h-128c-46 0-84 40-84 86v596c0 46 38 86 84 86h428zM598 84.667h212v-84h-212v84z" />
-<glyph unicode="&#xe3b3;" glyph-name="camera_roll" d="M854 554.667v86h-86v-86h86zM854 170.667v86h-86v-86h86zM682 554.667v86h-84v-86h84zM682 170.667v86h-84v-86h84zM512 554.667v86h-86v-86h86zM512 170.667v86h-86v-86h86zM598 724.667h340v-640h-340c0-46-40-84-86-84h-342c-46 0-84 38-84 84v640c0 46 38 86 84 86h44v42c0 24 18 44 42 44h170c24 0 44-20 44-44v-42h42c46 0 86-40 86-86z" />
-<glyph unicode="&#xe3b4;" glyph-name="center_focus_strong" d="M810 128.667v170h86v-170c0-46-40-86-86-86h-170v86h170zM810 810.667c46 0 86-40 86-86v-170h-86v170h-170v86h170zM214 724.667v-170h-86v170c0 46 40 86 86 86h170v-86h-170zM214 298.667v-170h170v-86h-170c-46 0-86 40-86 86v170h86zM512 596.667c94 0 170-76 170-170s-76-170-170-170-170 76-170 170 76 170 170 170z" />
-<glyph unicode="&#xe3b5;" glyph-name="center_focus_weak" d="M512 340.667c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM512 596.667c94 0 170-76 170-170s-76-170-170-170-170 76-170 170 76 170 170 170zM810 128.667v170h86v-170c0-46-40-86-86-86h-170v86h170zM810 810.667c46 0 86-40 86-86v-170h-86v170h-170v86h170zM214 724.667v-170h-86v170c0 46 40 86 86 86h170v-86h-170zM214 298.667v-170h170v-86h-170c-46 0-86 40-86 86v170h86z" />
-<glyph unicode="&#xe3b8;" glyph-name="colorize" d="M296 128.667l344 344-82 82-344-344zM884 698.667c16-16 18-42 0-60l-134-134 82-82-60-60-60 60-382-380h-202v202l380 382-60 60 60 60 82-82 134 134c16 16 44 16 60 0z" />
-<glyph unicode="&#xe3b9;" glyph-name="compare" d="M810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-212v384l212-256v554h-212v86h212zM426 170.667v256l-212-256h212zM426 810.667v86h86v-940h-86v86h-212c-46 0-86 40-86 86v596c0 46 40 86 86 86h212z" />
-<glyph unicode="&#xe3ba;" glyph-name="control_point" d="M512 84.667c188 0 342 154 342 342s-154 342-342 342-342-154-342-342 154-342 342-342zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426zM554 640.667v-172h172v-84h-172v-172h-84v172h-172v84h172v172h84z" />
-<glyph unicode="&#xe3bb;" glyph-name="control_point_duplicate" d="M640 128.667c164 0 298 134 298 298s-134 298-298 298-298-134-298-298 134-298 298-298zM640 810.667c212 0 384-172 384-384s-172-384-384-384-384 172-384 384 172 384 384 384zM86 426.667c0-120 68-222 170-270v-92c-148 52-256 196-256 362s108 310 256 362v-92c-102-48-170-150-170-270zM682 596.667v-128h128v-84h-128v-128h-84v128h-128v84h128v128h84z" />
-<glyph unicode="&#xe3bc;" glyph-name="crop_16_9" d="M810 256.667v340h-596v-340h596zM810 682.667c46 0 86-40 86-86v-340c0-46-40-86-86-86h-596c-46 0-86 40-86 86v340c0 46 40 86 86 86h596z" />
-<glyph unicode="&#xe3bd;" glyph-name="crop_3_2" d="M810 170.667v512h-596v-512h596zM810 768.667c46 0 86-40 86-86v-512c0-46-40-86-86-86h-596c-46 0-86 40-86 86v512c0 46 40 86 86 86h596z" />
-<glyph unicode="&#xe3be;" glyph-name="crop" d="M298 212.667h684v-84h-172v-172h-84v172h-428c-46 0-84 38-84 84v428h-172v84h172v172h84v-684zM726 298.667v342h-342v84h342c46 0 84-38 84-84v-342h-84z" />
-<glyph unicode="&#xe3c0;" glyph-name="crop_7_5" d="M810 298.667v256h-596v-256h596zM810 640.667c46 0 86-40 86-86v-256c0-46-40-86-86-86h-596c-46 0-86 40-86 86v256c0 46 40 86 86 86h596z" />
-<glyph unicode="&#xe3c1;" glyph-name="crop_din" d="M810 128.667v596h-596v-596h596zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-46 0-86 40-86 86v596c0 46 40 86 86 86h596z" />
-<glyph unicode="&#xe3c2;" glyph-name="crop_free" d="M810 810.667c46 0 86-40 86-86v-170h-86v170h-170v86h170zM810 128.667v170h86v-170c0-46-40-86-86-86h-170v86h170zM214 298.667v-170h170v-86h-170c-46 0-86 40-86 86v170h86zM128 724.667c0 46 40 86 86 86h170v-86h-170v-170h-86v170z" />
-<glyph unicode="&#xe3c3;" glyph-name="crop_landscape" d="M810 212.667v428h-596v-428h596zM810 724.667c46 0 86-38 86-84v-428c0-46-40-84-86-84h-596c-46 0-86 38-86 84v428c0 46 40 84 86 84h596z" />
-<glyph unicode="&#xe3c4;" glyph-name="crop_original" d="M596 414.667l150-202h-468l116 152 84-102zM810 128.667v596h-596v-596h596zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-46 0-86 40-86 86v596c0 46 40 86 86 86h596z" />
-<glyph unicode="&#xe3c5;" glyph-name="crop_portrait" d="M726 128.667v596h-428v-596h428zM726 810.667c46 0 84-40 84-86v-596c0-46-38-86-84-86h-428c-46 0-84 40-84 86v596c0 46 38 86 84 86h428z" />
-<glyph unicode="&#xe3c6;" glyph-name="crop_square" d="M768 170.667v512h-512v-512h512zM768 768.667c46 0 86-40 86-86v-512c0-46-40-86-86-86h-512c-46 0-86 40-86 86v512c0 46 40 86 86 86h512z" />
-<glyph unicode="&#xe3c7;" glyph-name="dehaze" d="M86 704.667h852v-86h-852v86zM86 490.667h852v-86h-852v86zM86 276.667h852v-84h-852v84z" />
-<glyph unicode="&#xe3c8;" glyph-name="details" d="M272 682.667l240-426 240 426h-480zM128 768.667h768l-384-684z" />
-<glyph unicode="&#xe3ca;" glyph-name="exposure" d="M854 84.667v684l-684-684h684zM214 724.667v-84h256v84h-256zM854 852.667c46 0 84-38 84-84v-684c0-46-38-84-84-84h-684c-46 0-84 38-84 84v684c0 46 38 84 84 84h684zM640 212.667h-86v86h86v86h86v-86h84v-86h-84v-84h-86v84z" />
-<glyph unicode="&#xe3cb;" glyph-name="exposure_neg_1" d="M810 170.667h-84v454l-128-44v72l200 72h12v-554zM170 468.667h342v-84h-342v84z" />
-<glyph unicode="&#xe3cc;" glyph-name="exposure_neg_2" d="M86 468.667h340v-84h-340v84zM702 724.667c103.361 0 172-46.875 172-150 0-16-2-34-8-50s-12-34-22-50c-21.913-35.061-50.22-70.22-80-100l-122-132h254v-72h-368v64l178 194c27.051 27.051 44.466 50.776 62 80 10.155 16.925 14 31.054 14 56 0 12 0 26-4 36-11.918 29.795-34.301 52-76 52-60.876 0-92-36.935-92-98h-92c0 51.336 20.69 92.69 48 120 31.385 31.385 73.692 50 136 50z" />
-<glyph unicode="&#xe3cd;" glyph-name="exposure_plus_1" d="M854 170.667h-86v454l-128-44v72l200 72h14v-554zM426 640.667v-172h172v-84h-172v-172h-84v172h-172v84h172v172h84z" />
-<glyph unicode="&#xe3ce;" glyph-name="exposure_plus_2" d="M342 640.667v-172h170v-84h-170v-172h-86v172h-170v84h170v172h86zM684 242.667h254v-72h-368v64l178 194c27.051 27.051 44.466 50.776 62 80 9.657 16.095 16 33.377 16 56 0 27.976-9.972 45.963-22 62-12.776 17.035-30.076 26-60 26-30.802 0-54.673-12.673-70-28-13.992-13.992-22-43.42-22-70h-92c0 51.336 20.69 92.69 48 120 16 16 34 30 58 38s50 12 80 12c28 0 50-4 72-10 20-8 40-16 54-30 26.805-22.976 46-61.985 46-110 0-40.444-14.717-72.348-32-100-10-16-20-34-34-50s-30-34-46-50z" />
-<glyph unicode="&#xe3cf;" glyph-name="exposure_zero" d="M598 506.667c0 51.604-2.887 85.33-22 114-8 12-18 18-28 24s-22 8-36 8-26-2-36-8-20-12-28-24c-19.070-28.606-22-62.453-22-114v-114c0-68.64 9.322-117.593 50-142 10-6 22-8 36-8 33.536 0 49.61 12.416 64 34 17.74 26.61 24 68.817 24 116v114h-2zM336 492.667c0 137.059 42.756 232 176 232 93.018 0 143.69-47.837 164-124 8-30 14-64 14-108v-88h-2c0-79.48-15.373-138.051-48-180-16-18-34-34-56-42s-46-12-72-12-50 4-72 12-40 24-56 42c-34.893 39.254-48 102.511-48 180v88z" />
-<glyph unicode="&#xe3d0;" glyph-name="filter_1" d="M896 212.667v598h-598v-598h598zM896 896.667c46 0 86-40 86-86v-598c0-46-40-84-86-84h-598c-46 0-84 38-84 84v598c0 46 38 86 84 86h598zM598 298.667v342h-86v84h170v-426h-84zM128 724.667v-682h682v-86h-682c-46 0-86 40-86 86v682h86z" />
-<glyph unicode="&#xe3d1;" glyph-name="filter_2" d="M726 384.667v-86h-256v170c0 48 38 86 84 86h86v86h-170v84h170c46 0 86-36 86-84v-86c0-48-40-86-86-86h-86v-84h172zM896 212.667v598h-598v-598h598zM896 896.667c46 0 86-40 86-86v-598c0-46-40-84-86-84h-598c-46 0-84 38-84 84v598c0 46 38 86 84 86h598zM128 724.667v-682h682v-86h-682c-46 0-86 40-86 86v682h86z" />
-<glyph unicode="&#xe3d2;" glyph-name="filter_3" d="M726 384.667c0-48-40-86-86-86h-170v86h170v84h-86v86h86v86h-170v84h170c46 0 86-36 86-84v-64c0-36-28-64-64-64 36 0 64-28 64-64v-64zM128 724.667v-682h682v-86h-682c-46 0-86 40-86 86v682h86zM896 212.667v598h-598v-598h598zM896 896.667c46 0 86-40 86-86v-598c0-46-40-84-86-84h-598c-46 0-84 38-84 84v598c0 46 38 86 84 86h598z" />
-<glyph unicode="&#xe3d3;" glyph-name="filter" d="M896 212.667v598h-598v-598h598zM896 896.667c46 0 86-40 86-86v-598c0-46-40-84-86-84h-598c-46 0-84 38-84 84v598c0 46 38 86 84 86h598zM128 724.667v-682h682v-86h-682c-46 0-86 40-86 86v682h86zM680 498.667l152-200h-470l118 150 84-100z" />
-<glyph unicode="&#xe3d4;" glyph-name="filter_4" d="M896 212.667v598h-598v-598h598zM896 896.667c46 0 86-40 86-86v-598c0-46-40-84-86-84h-598c-46 0-84 38-84 84v598c0 46 38 86 84 86h598zM640 298.667v170h-170v256h84v-170h86v170h86v-426h-86zM128 724.667v-682h682v-86h-682c-46 0-86 40-86 86v682h86z" />
-<glyph unicode="&#xe3d5;" glyph-name="filter_5" d="M726 384.667c0-48-40-86-86-86h-170v86h170v84h-170v256h256v-84h-172v-86h86c46 0 86-38 86-86v-84zM128 724.667v-682h682v-86h-682c-46 0-86 40-86 86v682h86zM896 212.667v598h-598v-598h598zM896 896.667c46 0 86-40 86-86v-598c0-46-40-84-86-84h-598c-46 0-84 38-84 84v598c0 46 38 86 84 86h598z" />
-<glyph unicode="&#xe3d6;" glyph-name="filter_6" d="M554 468.667v-84h86v84h-86zM554 298.667c-46 0-84 38-84 86v256c0 48 38 84 84 84h172v-84h-172v-86h86c46 0 86-38 86-86v-84c0-48-40-86-86-86h-86zM896 212.667v598h-598v-598h598zM896 896.667c46 0 86-40 86-86v-598c0-46-40-84-86-84h-598c-46 0-84 38-84 84v598c0 46 38 86 84 86h598zM128 724.667v-682h682v-86h-682c-46 0-86 40-86 86v682h86z" />
-<glyph unicode="&#xe3d7;" glyph-name="filter_7" d="M554 298.667h-84l170 342h-170v84h256v-84zM896 212.667v598h-598v-598h598zM896 896.667c46 0 86-40 86-86v-598c0-46-40-84-86-84h-598c-46 0-84 38-84 84v598c0 46 38 86 84 86h598zM128 724.667v-682h682v-86h-682c-46 0-86 40-86 86v682h86z" />
-<glyph unicode="&#xe3d8;" glyph-name="filter_8" d="M554 468.667v-84h86v84h-86zM554 640.667v-86h86v86h-86zM554 298.667c-46 0-84 38-84 86v64c0 36 28 64 64 64-36 0-64 28-64 64v64c0 48 38 84 84 84h86c46 0 86-36 86-84v-64c0-36-28-64-64-64 36 0 64-28 64-64v-64c0-48-40-86-86-86h-86zM896 212.667v598h-598v-598h598zM896 896.667c46 0 86-40 86-86v-598c0-46-40-84-86-84h-598c-46 0-84 38-84 84v598c0 46 38 86 84 86h598zM128 724.667v-682h682v-86h-682c-46 0-86 40-86 86v682h86z" />
-<glyph unicode="&#xe3d9;" glyph-name="filter_9" d="M640 554.667v86h-86v-86h86zM640 724.667c46 0 86-36 86-84v-256c0-48-40-86-86-86h-170v86h170v84h-86c-46 0-84 38-84 86v86c0 48 38 84 84 84h86zM896 212.667v598h-598v-598h598zM896 896.667c46 0 86-40 86-86v-598c0-46-40-84-86-84h-598c-46 0-84 38-84 84v598c0 46 38 86 84 86h598zM128 724.667v-682h682v-86h-682c-46 0-86 40-86 86v682h86z" />
-<glyph unicode="&#xe3da;" glyph-name="filter_9_plus" d="M896 554.667v256h-598v-598h598v256h-86v-84h-84v84h-86v86h86v86h84v-86h86zM896 896.667c46 0 86-40 86-86v-598c0-46-40-84-86-84h-598c-46 0-84 38-84 84v598c0 46 38 86 84 86h598zM470 554.667h42v42h-42v-42zM598 426.667c0-48-40-86-86-86h-128v86h128v42h-42c-46 0-86 38-86 86v42c0 48 40 86 86 86h42c46 0 86-38 86-86v-170zM128 724.667v-682h682v-86h-682c-46 0-86 40-86 86v682h86z" />
-<glyph unicode="&#xe3db;" glyph-name="filter_b_and_w" d="M810 128.667v596h-298v-256zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-46 0-86 40-86 86v596c0 46 40 86 86 86h596zM512 468.667l-298-340h298v340z" />
-<glyph unicode="&#xe3dc;" glyph-name="filter_center_focus" d="M512 554.667c70 0 128-58 128-128s-58-128-128-128-128 58-128 128 58 128 128 128zM810 128.667v170h86v-170c0-46-40-86-86-86h-170v86h170zM810 810.667c46 0 86-40 86-86v-170h-86v170h-170v86h170zM214 724.667v-170h-86v170c0 46 40 86 86 86h170v-86h-170zM214 298.667v-170h170v-86h-170c-46 0-86 40-86 86v170h86z" />
-<glyph unicode="&#xe3dd;" glyph-name="filter_drama" d="M810 170.667c70 0 128 58 128 128s-58 128-128 128h-64v22c0 130-104 234-234 234-76 0-144-36-188-94 108-30 188-130 188-248h-86c0 94-76 172-170 172s-170-78-170-172 76-170 170-170h554zM826 510.667c110-8 198-100 198-212 0-118-96-214-214-214h-554c-142 0-256 114-256 256 0 132 100 240 228 254 54 102 160 174 284 174 156 0 284-110 314-258z" />
-<glyph unicode="&#xe3de;" glyph-name="filter_frames" d="M768 596.667h-512v-426h512zM854 84.667v598h-192l-148 150-150-150h-194v-598h684zM854 768.667c46 0 84-40 84-86v-598c0-46-38-84-84-84h-684c-46 0-84 38-84 84v598c0 46 38 86 84 86h172l170 170 170-170h172z" />
-<glyph unicode="&#xe3e0;" glyph-name="filter_none" d="M896 212.667v598h-598v-598h598zM896 896.667c46 0 86-40 86-86v-598c0-46-40-84-86-84h-598c-46 0-84 38-84 84v598c0 46 38 86 84 86h598zM128 724.667v-682h682v-86h-682c-46 0-86 40-86 86v682h86z" />
-<glyph unicode="&#xe3e2;" glyph-name="filter_tilt_shift" d="M242 96.667l60 60c48-36 106-60 168-68v-86c-86 8-164 42-228 94zM554 88.667c62 8 120 32 166 68l62-60c-64-52-142-86-228-94v86zM782 216.667c36 48 60 104 68 166h86c-8-86-42-162-94-226zM640 426.667c0-70-58-128-128-128s-128 58-128 128 58 128 128 128 128-58 128-128zM174 384.667c8-62 32-120 68-166l-60-62c-52 64-86 142-94 228h86zM242 636.667c-36-48-60-106-68-168h-86c8 86 42 164 94 228zM850 468.667c-8 62-32 120-68 168l60 60c52-64 86-142 94-228h-86zM782 756.667l-60-60c-48 36-106 60-168 68v86c86-8 164-42 228-94zM470 764.667c-62-8-120-32-168-68l-60 60c64 52 142 86 228 94v-86z" />
-<glyph unicode="&#xe3e3;" glyph-name="filter_vintage" d="M512 256.667c94 0 170 76 170 170s-76 170-170 170-170-76-170-170 76-170 170-170zM98 188.667c0 98.433 62.724 204.242 164 238-12 4-24 12-36 18-82 48-128 132-128 220 76 44 174 48 256 0 12-6 24-14 34-22-2 14-4 26-4 40 0 94 52 178 128 222 76-44 128-128 128-222 0-14-2-26-4-40 10 8 22 16 34 22 82 48 180 44 256 0 0-88-46-172-128-220-12-6-24-14-36-18 12-4 24-12 36-18 82-48 128-132 128-220-76-44-174-48-256 0-12 6-24 14-34 22 2-14 4-26 4-40 0-94-52-178-128-222-76 44-128 128-128 222 0 14 2 26 4 40-10-8-22-16-34-22-82-48-180-44-256 0z" />
-<glyph unicode="&#xe3e4;" glyph-name="flare" d="M470-43.333v256h84v-256h-84zM240 214.667l92 92 60-60-92-92zM632 246.667l60 60 92-92-60-60zM512 554.667c70 0 128-58 128-128s-58-128-128-128-128 58-128 128 58 128 128 128zM726 468.667h256v-84h-256v84zM784 638.667l-92-92-60 60 92 92zM554 896.667v-256h-84v256h84zM392 606.667l-60-60-92 92 60 60zM298 468.667v-84h-256v84h256z" />
-<glyph unicode="&#xe3e5;" glyph-name="flash_auto" d="M718 612.667h100l-50 156zM810 852.667l138-384h-82l-30 86h-136l-30-86h-82l138 384h84zM128 852.667h426l-170-384h170l-298-512v384h-128v512z" />
-<glyph unicode="&#xe3e6;" glyph-name="flash_off" d="M726 512.667l-66-114-362 362v92h428l-172-340h172zM140 810.667l670-672-54-54-176 178-154-262v384h-128v158l-212 214z" />
-<glyph unicode="&#xe3e7;" glyph-name="flash_on" d="M298 852.667h428l-172-340h172l-300-512v384h-128v468z" />
-<glyph unicode="&#xe3e8;" glyph-name="flip" d="M810 42.667v86h86c0-46-40-86-86-86zM810 384.667v84h86v-84h-86zM640 724.667v86h86v-86h-86zM810 212.667v86h86v-86h-86zM470-43.333v940h84v-940h-84zM810 810.667c46 0 86-40 86-86h-86v86zM128 724.667c0 46 40 86 86 86h170v-86h-170v-596h170v-86h-170c-46 0-86 40-86 86v596zM810 554.667v86h86v-86h-86zM640 42.667v86h86v-86h-86z" />
-<glyph unicode="&#xe3e9;" glyph-name="gradient" d="M810 468.667v256h-596v-256h84v-84h86v-86h86v86h84v-86h86v86h86v84h84zM726 170.667v86h-86v-86h86zM554 170.667v86h-84v-86h84zM384 170.667v86h-86v-86h86zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-46 0-86 40-86 86v596c0 46 40 86 86 86h596zM298 554.667h86v-86h-86v86zM640 554.667h86v-86h-86v86zM470 554.667h84v-86h86v-84h-86v84h-84v-84h-86v84h86v86zM726 384.667v-86h84v86h-84zM298 384.667h-84v-86h84v86z" />
-<glyph unicode="&#xe3ea;" glyph-name="grain" d="M426 768.667c46 0 86-40 86-86s-40-86-86-86-84 40-84 86 38 86 84 86zM598 596.667c46 0 84-38 84-84s-38-86-84-86-86 40-86 86 40 84 86 84zM768 426.667c46 0 86-40 86-86s-40-84-86-84-86 38-86 84 40 86 86 86zM598 256.667c46 0 84-40 84-86s-38-86-84-86-86 40-86 86 40 86 86 86zM768 596.667c-46 0-86 40-86 86s40 86 86 86 86-40 86-86-40-86-86-86zM256 256.667c46 0 86-40 86-86s-40-86-86-86-86 40-86 86 40 86 86 86zM256 596.667c46 0 86-38 86-84s-40-86-86-86-86 40-86 86 40 84 86 84zM426 426.667c46 0 86-40 86-86s-40-84-86-84-84 38-84 84 38 86 84 86z" />
-<glyph unicode="&#xe3eb;" glyph-name="grid_off" d="M682 84.667h62l-62 62v-62zM598 84.667v148l-24 24h-148v-172h172zM342 340.667v148l-24 24h-148v-172h172zM342 84.667v172h-172v-172h172zM170 658.667v-62h62zM426 402.667v-62h62zM54 884.667l916-916-54-54-86 86h-660c-46 0-84 38-84 84v660l-86 86zM682 768.667v-172h172v172h-172zM342 768.667h-62l-86 84h660c46 0 84-38 84-84v-660l-84 86v62h-62l-86 84h148v172h-172v-148l-84 86v62h-62l-86 84h148v172h-172v-148l-84 86v62z" />
-<glyph unicode="&#xe3ec;" glyph-name="grid_on" d="M854 596.667v172h-172v-172h172zM854 340.667v172h-172v-172h172zM854 84.667v172h-172v-172h172zM598 596.667v172h-172v-172h172zM598 340.667v172h-172v-172h172zM598 84.667v172h-172v-172h172zM342 596.667v172h-172v-172h172zM342 340.667v172h-172v-172h172zM342 84.667v172h-172v-172h172zM854 852.667c46 0 84-38 84-84v-684c0-46-38-84-84-84h-684c-46 0-84 38-84 84v684c0 46 38 84 84 84h684z" />
-<glyph unicode="&#xe3ed;" glyph-name="hdr_off" d="M106 832.667c270.848-271.818 543.632-541.7 816-812l-48-46-324 324h-144v146l-64 64v-210h-64v106h-86v-106h-64v256h64v-86h86v86h16l-234 234zM554 490.667h-16l-64 64h80c34 0 64-30 64-64v-82l-64 64v18zM746 490.667v-42h86v42h-86zM746 298.667h-16l-48 46v210h150c34 0 64-30 64-64v-42c0-26-16-52-38-60l38-90h-64l-38 86h-48v-86z" />
-<glyph unicode="&#xe3ee;" glyph-name="hdr_on" d="M554 362.667v128h-84v-128h84zM554 554.667c34 0 64-30 64-64v-128c0-34-30-64-64-64h-148v256h148zM278 468.667v86h64v-256h-64v106h-86v-106h-64v256h64v-86h86zM832 448.667v42h-86v-42h86zM896 448.667c0-26-16-48-38-60l38-90h-64l-38 86h-48v-86h-64v256h150c34 0 64-30 64-64v-42z" />
-<glyph unicode="&#xe3f1;" glyph-name="hdr_strong" d="M214 340.667c46 0 84 40 84 86s-38 86-84 86-86-40-86-86 40-86 86-86zM214 596.667c94 0 170-76 170-170s-76-170-170-170-172 76-172 170 78 170 172 170zM726 682.667c142 0 256-114 256-256s-114-256-256-256-256 114-256 256 114 256 256 256z" />
-<glyph unicode="&#xe3f2;" glyph-name="hdr_weak" d="M726 256.667c94 0 170 76 170 170s-76 170-170 170-172-76-172-170 78-170 172-170zM726 682.667c142 0 256-114 256-256s-114-256-256-256-256 114-256 256 114 256 256 256zM214 596.667c94 0 170-76 170-170s-76-170-170-170-172 76-172 170 78 170 172 170z" />
-<glyph unicode="&#xe3f3;" glyph-name="healing" d="M710 70.667l156 156-156 154-154-156zM598 468.667c-24 0-44-18-44-42s20-42 44-42 42 18 42 42-18 42-42 42zM512 298.667c24 0 42 18 42 42s-18 44-42 44-42-20-42-44 18-42 42-42zM426 384.667c24 0 44 18 44 42s-20 42-44 42-42-18-42-42 18-42 42-42zM312 470.667l154 156-154 154-156-156zM512 554.667c-24 0-42-18-42-42s18-44 42-44 42 20 42 44-18 42-42 42zM756 426.667l170-170c16-16 16-44 0-60l-184-186c-8-8-18-12-30-12s-24 4-32 12l-168 170-170-170c-16-16-44-16-60 0l-186 186c-16 16-16 44 0 60l170 170-170 168c-16 16-16 46 0 62l186 184c8 8 20 12 30 12 12 0 22-4 30-12l170-170 168 170c16 16 46 16 62 0l184-184c16-16 16-46 0-62z" />
-<glyph unicode="&#xe3f5;" glyph-name="image_aspect_ratio" d="M854 170.667v512h-684v-512h684zM854 768.667c46 0 84-40 84-86v-512c0-46-38-86-84-86h-684c-46 0-84 40-84 86v512c0 46 38 86 84 86h684zM512 512.667v-86h-86v86h86zM342 512.667v-86h-86v86h86zM682 340.667v-84h-84v84h84zM682 512.667v-86h-84v86h84z" />
-<glyph unicode="&#xe3f6;" glyph-name="iso" d="M726 212.667h-214v64h214v-64zM810 128.667v596l-596-596h596zM234 618.667v-64h86v-86h64v86h86v64h-86v86h-64v-86h-86zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-46 0-86 40-86 86v596c0 46 40 86 86 86h596z" />
-<glyph unicode="&#xe3f8;" glyph-name="leak_add" d="M598 42.667c0 166 132 298 298 298v-84c-118 0-214-96-214-214h-84zM768 42.667c0 70 58 128 128 128v-128h-128zM426 42.667c0 258 212 470 470 470v-86c-212 0-384-172-384-384h-86zM426 810.667c0-166-132-298-298-298v84c118 0 214 96 214 214h84zM598 810.667c0-258-210-470-470-470v86c212 0 384 172 384 384h86zM256 810.667c0-70-58-128-128-128v128h128z" />
-<glyph unicode="&#xe3f9;" glyph-name="leak_remove" d="M656 444.667c70 42 152 68 240 68v-86c-64 0-124-16-178-44zM850 250.667l-68 68c34 14 74 22 114 22v-84c-16 0-32-2-46-6zM598 810.667c0-88-26-170-68-240l-62 62c28 54 44 114 44 178h86zM128 756.667l54 54 714-714-54-54-122 122c-24-34-38-76-38-122h-84c0 68 24 132 62 182l-62 60c-54-66-86-150-86-242h-86c0 116 42 222 112 304l-106 106c-82-70-188-112-304-112v86c92 0 178 32 244 86l-62 62c-50-38-114-62-182-62v84c46 0 88 14 122 38zM426 810.667c0-40-8-80-22-114l-68 68c4 14 6 30 6 46h84z" />
-<glyph unicode="&#xe3fa;" glyph-name="lens" d="M512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426z" />
-<glyph unicode="&#xe3fb;" glyph-name="looks_3" d="M640 490.667v64c0 48-38 86-84 86h-172v-86h172v-86h-86v-84h86v-86h-172v-86h172c46 0 84 38 84 86v64c0 36-28 64-64 64 36 0 64 28 64 64zM812 810.667c46 0 84-40 84-86v-596c0-46-38-86-84-86h-598c-46 0-86 40-86 86v596c0 46 40 86 86 86h598z" />
-<glyph unicode="&#xe3fc;" glyph-name="looks" d="M512 682.667c258 0 470-212 470-470h-86c0 212-172 384-384 384s-384-172-384-384h-86c0 258 212 470 470 470zM512 512.667c164 0 298-136 298-300h-84c0 118-96 214-214 214s-214-96-214-214h-84c0 164 134 300 298 300z" />
-<glyph unicode="&#xe3fd;" glyph-name="looks_4" d="M640 212.667v428h-86v-172h-84v172h-86v-256h170v-172h86zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-46 0-86 40-86 86v596c0 46 40 86 86 86h596z" />
-<glyph unicode="&#xe3fe;" glyph-name="looks_5" d="M640 554.667v86h-256v-256h170v-86h-170v-86h170c46 0 86 38 86 86v86c0 48-40 84-86 84h-84v86h170zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-46 0-86 40-86 86v596c0 46 40 86 86 86h596z" />
-<glyph unicode="&#xe3ff;" glyph-name="looks_6" d="M640 554.667v86h-170c-46 0-86-38-86-86v-256c0-48 40-86 86-86h84c46 0 86 38 86 86v86c0 48-40 84-86 84h-84v86h170zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-46 0-86 40-86 86v596c0 46 40 86 86 86h596zM470 298.667v86h84v-86h-84z" />
-<glyph unicode="&#xe400;" glyph-name="looks_one" d="M598 212.667v428h-172v-86h86v-342h86zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-46 0-86 40-86 86v596c0 46 40 86 86 86h596z" />
-<glyph unicode="&#xe401;" glyph-name="looks_two" d="M640 468.667v86c0 48-40 86-86 86h-170v-86h170v-86h-84c-46 0-86-36-86-84v-172h256v86h-170v86h84c46 0 86 36 86 84zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-46 0-86 40-86 86v596c0 46 40 86 86 86h596z" />
-<glyph unicode="&#xe402;" glyph-name="loupe" d="M512 84.667c188 0 342 154 342 342s-154 342-342 342-342-154-342-342 154-342 342-342zM512 852.667c236 0 426-190 426-426v-342c0-46-38-84-84-84h-342c-236 0-426 190-426 426s190 426 426 426zM554 640.667v-172h172v-84h-172v-172h-84v172h-172v84h172v172h84z" />
-<glyph unicode="&#xe403;" glyph-name="monochrome_photos" d="M854 128.667v512h-342v-44c120 0 214-92 214-212s-94-214-214-214v76c-76 0-136 62-136 138s60 136 136 136v-274c76 0 136 62 136 138s-60 136-136 136v76c-120 0-214-92-214-212s94-214 214-214v-42h342zM854 724.667c46 0 84-38 84-84v-512c0-46-38-86-84-86h-684c-46 0-84 40-84 86v512c0 46 38 84 84 84h138l76 86h256l76-86h138z" />
-<glyph unicode="&#xe404;" glyph-name="movie_creation" d="M768 768.667h170v-598c0-46-38-86-84-86h-684c-46 0-84 40-84 86v512c0 46 38 86 84 86h44l84-172h128l-84 172h84l86-172h128l-86 172h86l86-172h128z" />
-<glyph unicode="&#xe405;" glyph-name="music_note" d="M512 810.667h256v-170h-170v-428c0-94-78-170-172-170s-170 76-170 170 76 172 170 172c32 0 60-10 86-24v450z" />
-<glyph unicode="&#xe406;" glyph-name="nature" d="M554 250.667v-166h256v-84h-596v84h256v168c-142 24-250 146-250 294 0 166 134 300 300 300s298-134 298-300c0-154-116-278-264-296z" />
-<glyph unicode="&#xe407;" glyph-name="nature_people" d="M192 468.667c-36 0-64 28-64 64s28 64 64 64 64-28 64-64-28-64-64-64zM946 546.667c0-154-116-278-264-296v-166h128v-84h-682v212h-42v172c0 24 18 42 42 42h128c24 0 42-18 42-42v-172h-42v-128h342v168c-142 24-250 146-250 294 0 166 134 300 300 300s298-134 298-300z" />
-<glyph unicode="&#xe408;" glyph-name="navigate_before" d="M658 622.667l-196-196 196-196-60-60-256 256 256 256z" />
-<glyph unicode="&#xe409;" glyph-name="navigate_next" d="M426 682.667l256-256-256-256-60 60 196 196-196 196z" />
-<glyph unicode="&#xe40a;" glyph-name="palette" d="M746 426.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM618 596.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM406 596.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM278 426.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM512 810.667c212 0 384-154 384-342 0-118-96-212-214-212h-74c-36 0-64-28-64-64 0-16 6-30 16-42s16-28 16-44c0-36-28-64-64-64-212 0-384 172-384 384s172 384 384 384z" />
-<glyph unicode="&#xe40b;" glyph-name="panorama" d="M362 404.667l-148-192h596l-192 256-148-192zM982 170.667c0-46-40-86-86-86h-768c-46 0-86 40-86 86v512c0 46 40 86 86 86h768c46 0 86-40 86-86v-512z" />
-<glyph unicode="&#xe40d;" glyph-name="panorama_horizontal" d="M914 768.667c14 0 24-10 24-28v-628c0-18-10-28-24-28-4 0-8 2-12 4-126 46-258 70-390 70s-264-24-390-70c-4-2-8-4-12-4-14 0-24 12-24 28v628c0 18 10 28 24 28 4 0 8-2 12-4 126-46 258-70 390-70s264 24 390 70c4 2 8 4 12 4zM854 658.667c-110-34-226-48-342-48s-232 16-342 48v-464c110 32 226 48 342 48s232-16 342-48v464z" />
-<glyph unicode="&#xe40e;" glyph-name="panorama_vertical" d="M280 84.667h464c-32 110-48 226-48 342s16 232 48 342h-464c32-110 48-226 48-342s-16-232-48-342zM850 36.667c2-4 4-8 4-12 0-14-12-24-28-24h-628c-18 0-28 10-28 24 0 4 2 8 4 12 46 126 70 258 70 390s-24 264-70 390c-2 4-4 8-4 12 0 14 10 24 28 24h628c18 0 28-10 28-24 0-4-2-8-4-12-46-126-70-258-70-390s24-264 70-390z" />
-<glyph unicode="&#xe40f;" glyph-name="panorama_wide_angle" d="M512 768.667c116 0 224-12 340-32l38-6 12-38c24-88 36-178 36-266s-12-178-36-266l-12-38-38-6c-116-20-224-32-340-32s-224 12-340 32l-38 6-12 38c-24 88-36 178-36 266s12 178 36 266l12 38 38 6c116 20 224 32 340 32zM512 682.667c-104 0-202-10-312-28-20-76-30-152-30-228s10-152 30-228c110-18 208-28 312-28s202 10 312 28c20 76 30 152 30 228s-10 152-30 228c-110 18-208 28-312 28z" />
-<glyph unicode="&#xe410;" glyph-name="photo" d="M362 362.667l-148-192h596l-192 256-148-192zM896 128.667c0-46-40-86-86-86h-596c-46 0-86 40-86 86v596c0 46 40 86 86 86h596c46 0 86-40 86-86v-596z" />
-<glyph unicode="&#xe411;" glyph-name="photo_album" d="M256 128.667h512l-164 218-128-164-92 110zM256 768.667v-342l106 64 108-64v342h-214zM768 852.667c46 0 86-38 86-84v-684c0-46-40-84-86-84h-512c-46 0-86 38-86 84v684c0 46 40 84 86 84h512z" />
-<glyph unicode="&#xe412;" glyph-name="photo_camera" d="M512 212.667c118 0 214 96 214 214s-96 214-214 214-214-96-214-214 96-214 214-214zM384 852.667h256l78-84h136c46 0 84-40 84-86v-512c0-46-38-86-84-86h-684c-46 0-84 40-84 86v512c0 46 38 86 84 86h136zM376 426.667c0 76 60 136 136 136s136-60 136-136-60-136-136-136-136 60-136 136z" />
-<glyph unicode="&#xe413;" glyph-name="photo_library" d="M86 682.667h84v-598h598v-84h-598c-46 0-84 38-84 84v598zM470 426.667l-128-170h512l-172 212-126-158zM938 256.667c0-46-38-86-84-86h-512c-46 0-86 40-86 86v512c0 46 40 84 86 84h512c46 0 84-38 84-84v-512z" />
-<glyph unicode="&#xe415;" glyph-name="picture_as_pdf" d="M598 448.667v128h42v-128h-42zM170 682.667v-598h598v-84h-598c-46 0-84 38-84 84v598h84zM384 532.667v44h42v-44h-42zM874 576.667v64h-128v-256h64v84h64v64h-64v44h64zM704 448.667v128c0 36-28 64-64 64h-106v-256h106c36 0 64 28 64 64zM490 532.667v44c0 36-28 64-64 64h-106v-256h64v84h42c36 0 64 28 64 64zM854 852.667c46 0 84-38 84-84v-512c0-46-38-86-84-86h-512c-46 0-86 40-86 86v512c0 46 40 84 86 84h512z" />
-<glyph unicode="&#xe416;" glyph-name="portrait" d="M810 128.667v596h-596v-596h596zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-46 0-86 40-86 86v596c0 46 40 86 86 86h596zM704 244.667v-32h-384v32c0 64 128 96 192 96s192-32 192-96zM512 416.667c-52 0-96 44-96 96s44 96 96 96 96-44 96-96-44-96-96-96z" />
-<glyph unicode="&#xe418;" glyph-name="rotate_90_degrees_ccw" d="M826 654.667c150-150 150-392 0-542-74-76-174-112-272-112-64 0-126 16-184 48l64 62c38-18 78-26 120-26 76 0 154 30 212 88 116 116 116 306 0 422-58 58-136 88-212 88v-138l-180 180 180 182v-138c98 0 198-38 272-114zM158 388.667l156-156 156 156-156 156zM314 664.667l276-276-276-276-278 276z" />
-<glyph unicode="&#xe419;" glyph-name="rotate_left" d="M554 764.667c168-20 300-164 300-338s-132-318-300-338v86c122 20 214 126 214 252s-92 232-214 252v-166l-194 190 194 194v-132zM302 156.667l62 62c32-24 68-38 106-44v-86c-60 8-118 30-168 68zM260 384.667c6-38 20-74 42-106l-60-60c-38 50-60 106-68 166h86zM304 574.667c-22-32-38-68-44-106h-86c8 60 32 116 70 166z" />
-<glyph unicode="&#xe41a;" glyph-name="rotate_right" d="M720 278.667c24 32 38 68 44 106h86c-8-60-30-116-68-166zM554 174.667c38 6 74 20 106 44l62-62c-50-38-108-60-168-68v86zM850 468.667h-86c-6 38-20 74-44 106l62 60c38-50 60-106 68-166zM664 702.667l-194-190v166c-122-20-214-126-214-252s92-232 214-252v-86c-168 20-300 164-300 338s132 318 300 338v132z" />
-<glyph unicode="&#xe41b;" glyph-name="slideshow" d="M810 128.667v596h-596v-596h596zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-46 0-86 40-86 86v596c0 46 40 86 86 86h596zM426 596.667l214-170-214-170v340z" />
-<glyph unicode="&#xe41c;" glyph-name="straighten" d="M896 256.667v340h-86v-170h-84v170h-86v-170h-86v170h-84v-170h-86v170h-86v-170h-84v170h-86v-340h768zM896 682.667c46 0 86-40 86-86v-340c0-46-40-86-86-86h-768c-46 0-86 40-86 86v340c0 46 40 86 86 86h768z" />
-<glyph unicode="&#xe41d;" glyph-name="style" d="M250 96.667v270l148-356h-62c-46 0-86 40-86 86zM336 564.667c24 0 42 20 42 44s-18 42-42 42-42-18-42-42 18-44 42-44zM940 258.667c18-44-2-94-46-112l-314-130c-10-4-22-6-34-6-34 0-64 20-78 52l-212 512c-4 12-6 22-6 34 0 32 20 62 52 76l316 130c12 4 22 6 34 6 32 0 62-20 76-52zM108 100.667c-44 18-64 66-46 110l104 250v-384z" />
-<glyph unicode="&#xe41e;" glyph-name="switch_camera" d="M640 276.667l150 150-150 150v-108h-256v108l-150-150 150-150v108h256v-108zM854 768.667c46 0 84-40 84-86v-512c0-46-38-86-84-86h-684c-46 0-84 40-84 86v512c0 46 38 86 84 86h136l78 84h256l78-84h136z" />
-<glyph unicode="&#xe41f;" glyph-name="switch_video" d="M554 276.667l150 150-150 150v-108h-256v108l-148-150 148-150v108h256v-108zM768 532.667l170 172v-556l-170 172v-150c0-24-18-42-42-42h-598c-24 0-42 18-42 42v512c0 24 18 42 42 42h598c24 0 42-18 42-42v-150z" />
-<glyph unicode="&#xe420;" glyph-name="tag_faces" d="M512 192.667c-100 0-184 60-218 148h436c-34-88-118-148-218-148zM362 468.667c-36 0-64 28-64 64s28 64 64 64 64-28 64-64-28-64-64-64zM662 468.667c-36 0-64 28-64 64s28 64 64 64 64-28 64-64-28-64-64-64zM512 84.667c188 0 342 154 342 342s-154 342-342 342-342-154-342-342 154-342 342-342zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426z" />
-<glyph unicode="&#xe421;" glyph-name="texture" d="M396 42.667l500 500v-122l-378-378h-122zM896 128.667c0-45.948-40.071-86-86-86h-84l170 170v-84zM214 810.667h84l-170-170v84c0 46 40 86 86 86zM506 810.667h122l-500-500v122zM832 806.667c30-8 54-30 62-60l-702-700c-29.35 8.386-51.612 30.641-60 60z" />
-<glyph unicode="&#xe422;" glyph-name="timelapse" d="M512 84.667c188 0 342 154 342 342s-154 342-342 342-342-154-342-342 154-342 342-342zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426zM692 606.667c100-100 102-260 2-360s-262-100-362 0l180 180v256c66 0 130-26 180-76z" />
-<glyph unicode="&#xe423;" glyph-name="timer_10" d="M550 374.667v108c0 46.336-4.565 80.274-20 106-10.651 21.301-30.408 30-60 30-12 0-26-2-36-6-38.752-23.251-46-67.987-46-132v-106c0-26 0-48 4-66s12-30 18-42c11.183-22.366 28.34-32 60-32 30.847 0 49.232 10.465 60 32 6 12 12 24 16 42s4 40 4 66zM304 468.667c0 128.235 41.373 218 166 218 51.866 0 95.697-16.753 120-48 30.427-39.121 44-97.117 44-170v-82c0-127.815-39.287-220-164-220-124.183 0-166 92.158-166 220v82zM872 492.667c-32.637 0-60-13.357-60-46 0-29.093 15.625-31.050 38-40 10-4 24-8 38-10 22-4 38-10 56-16s32-16 44-24 20-20 26-32 10-24 10-42c0-61.841-40.186-88.062-88-104-18-6-38-8-60-8-71.904 0-126.918 28.808-148 78-6 14-10 28-10 44h82c0-42.578 34.153-60 76-60 37.394 0 66 11.786 66 46 0 27.148-17.025 33.61-38 42-25.468 10.187-69.818 18.182-96 28-16 6-28 14-40 22-22.109 14.739-38 37.152-38 72 0 55.126 40.755 89.585 84 104 18 6 36 8 58 8 81.863 0 150-38.271 150-118h-84c0 24.555-15.687 44.922-36 50-8 2-20 6-30 6zM0 608.667l202 74h12v-512h-86v410l-128-44v72z" />
-<glyph unicode="&#xe424;" glyph-name="timer_3" d="M748 492.667c-31.882 0-62-15.146-62-46 0-27.366 18.619-31.448 40-40 10-4 22-8 36-10 22-4 40-10 58-16s32-16 44-24 20-20 26-32 10-24 10-42c0-61.841-40.186-88.062-88-104-18-6-40-8-62-8-70.791 0-125.226 29.528-146 78-6 14-10 28-10 44h80c0-40.848 37.077-60 78-60 37.394 0 66 11.786 66 46 0 27.148-17.025 33.61-38 42-10 4-26 8-42 12-37.616 7.523-69.901 20.601-96 38-21.057 14.038-36 38.904-36 72 0 55.126 40.755 89.585 84 104 18 6 36 8 58 8 81.863 0 150-38.271 150-118h-84c0 26.038-16.411 44.603-38 50-8 2-18 6-28 6zM430 432.667c49.449-18.543 84-50.968 84-116 0-51.199-17.71-87.282-48-110-28.071-24.061-68.907-40-120-40-93.754 0-168 50.495-168 144h86c0-23.009 8.297-45.722 22-56 14.704-11.028 35.068-20 60-20 54.151 0 84 28.151 84 82 0 57.252-34.133 82-92 82h-52v66h50c41.016 0 70.217 16.541 82 46 4 10 4 20 4 32 0 49.775-24.914 76-76 76-37.446 0-59.461-14.922-72-40-4-8-6-18-6-30h-84c0 68.668 45.9 107.96 96 128 20 6 42 10 66 10 97.425 0 160-46.959 160-144 0-56.969-36.756-90.378-76-110z" />
-<glyph unicode="&#xe425;" glyph-name="timer" d="M512 84.667c166 0 298 134 298 300s-132 298-298 298-298-132-298-298 132-300 298-300zM812 622.667c52-66 84-148 84-238 0-212-172-384-384-384s-384 172-384 384 172 384 384 384c90 0 174-34 240-86l60 62c22-18 42-38 60-60zM470 340.667v256h84v-256h-84zM640 896.667v-86h-256v86h256z" />
-<glyph unicode="&#xe426;" glyph-name="timer_off" d="M512 84.667c54 0 106 16 150 42l-408 408c-26-44-40-96-40-150 0-166 132-300 298-300zM128 768.667l758-758-54-54-108 108c-62-40-134-64-212-64-212 0-384 172-384 384 0 78 24 152 64 212l-118 118zM470 536.667v60h84v-146zM640 896.667v-86h-256v86h256zM812 744.667l60-60-60-62c52-66 84-148 84-238 0-78-24-152-64-212l-62 62c26 44 40 96 40 150 0 166-132 298-298 298-54 0-104-14-148-40l-64 62c60 40 134 64 212 64 90 0 174-32 240-84z" />
-<glyph unicode="&#xe427;" glyph-name="tonality" d="M842 340.667c4 14 6 30 8 44h-296v-44h288zM778 212.667c10 14 22 30 30 44h-254v-44h224zM554 88.667c44 6 86 20 124 40h-124v-40zM554 512.667v-44h296c-2 14-4 30-8 44h-288zM554 640.667v-44h254c-8 14-20 30-30 44h-224zM554 764.667v-40h124c-38 20-80 34-124 40zM470 88.667v676c-168-20-300-164-300-338s132-318 300-338zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426z" />
-<glyph unicode="&#xe428;" glyph-name="transform" d="M426 596.667v86h256c46 0 86-40 86-86v-256h-86v256h-256zM938 170.667h-170v-86h86l-128-128-128 128h84v86h-340c-46 0-86 40-86 86v340h-170v86h170v86h-86l128 128 128-128h-84v-512h596v-86z" />
-<glyph unicode="&#xe429;" glyph-name="tune" d="M640 554.667v256h86v-86h170v-84h-170v-86h-86zM896 384.667h-426v84h426v-84zM298 554.667h86v-256h-86v86h-170v84h170v86zM554 42.667h-84v256h84v-86h342v-84h-342v-86zM128 724.667h426v-84h-426v84zM128 212.667h256v-84h-256v84z" />
-<glyph unicode="&#xe42a;" glyph-name="view_comfy" d="M768 724.667h170v-170h-170v170zM768 128.667v170h170v-170h-170zM554 128.667v170h172v-170h-172zM342 128.667v170h170v-170h-170zM128 128.667v170h170v-170h-170zM768 340.667v172h170v-172h-170zM554 724.667h172v-170h-172v170zM342 554.667v170h170v-170h-170zM554 340.667v172h172v-172h-172zM342 340.667v172h170v-172h-170zM128 340.667v172h170v-172h-170zM128 554.667v170h170v-170h-170z" />
-<glyph unicode="&#xe42b;" glyph-name="view_compact" d="M128 724.667h810v-256h-810v256zM426 128.667v298h512v-298h-512zM128 128.667v298h256v-298h-256z" />
-<glyph unicode="&#xe42c;" glyph-name="wb_auto" d="M440 256.667h80l-136 384h-86l-136-384h82l30 84h136zM938 640.667h78l-88-384h-74l-64 260-64-260h-76l-4 18c-56-112-170-190-304-190-188 0-342 154-342 342s154 342 342 342c108 0 204-50 266-128h32l52-270 64 270h68l64-270zM292 398.667l50 156 48-156h-98z" />
-<glyph unicode="&#xe42d;" glyph-name="wb_cloudy" d="M826 510.667c110-8 198-100 198-212 0-118-96-214-214-214h-554c-142 0-256 114-256 256 0 132 100 240 228 254 54 102 160 174 284 174 156 0 284-110 314-258z" />
-<glyph unicode="&#xe42e;" glyph-name="wb_incandescent" d="M736 164.667l60 58 76-76-60-60zM854 490.667h128v-86h-128v86zM640 668.667c76-44 128-126 128-220 0-142-114-256-256-256s-256 114-256 256c0 94 52 176 128 220v206h256v-206zM170 490.667v-86h-128v86h128zM470-19.333v126h84v-126h-84zM152 146.667l76 78 60-60-76-78z" />
-<glyph unicode="&#xe430;" glyph-name="wb_sunny" d="M152 146.667l76 78 60-60-76-78zM470-19.333v126h84v-126h-84zM512 704.667c142 0 256-114 256-256s-114-256-256-256-256 114-256 256 114 256 256 256zM854 490.667h128v-86h-128v86zM736 164.667l60 58 76-76-60-60zM872 748.667l-76-76-60 60 76 76zM554 914.667v-126h-84v126h84zM170 490.667v-86h-128v86h128zM288 732.667l-60-60-76 76 60 60z" />
-<glyph unicode="&#xe431;" glyph-name="collections_bookmark" d="M854 426.667v342h-214v-342l106 64zM854 852.667c46 0 84-38 84-84v-512c0-46-38-86-84-86h-512c-46 0-86 40-86 86v512c0 46 40 84 86 84h512zM170 682.667v-598h598v-84h-598c-46 0-84 38-84 84v598h84z" />
-<glyph unicode="&#xe432;" glyph-name="photo_size_select_actual" d="M214 212.667h596l-192 256-148-192-108 128zM896 810.667c42 0 86-44 86-86v-596c0-42-44-86-86-86h-768c-46 0-86 40-86 86v596c0 42 44 86 86 86h768z" />
-<glyph unicode="&#xe433;" glyph-name="photo_size_select_large" d="M128 128.667h426l-136 182-106-138-78 92zM42 468.667h598v-426h-512c-46 0-86 40-86 86v340zM214 810.667h84v-86h-84v86zM384 810.667h86v-86h-86v86zM128 810.667v-86h-86c0 42 44 86 86 86zM726 128.667h84v-86h-84v86zM726 810.667h84v-86h-84v86zM42 640.667h86v-86h-86v86zM896 810.667c42 0 86-44 86-86h-86v86zM896 640.667h86v-86h-86v86zM554 810.667h86v-86h-86v86zM982 128.667c0-42-44-86-86-86v86h86zM896 468.667h86v-84h-86v84zM896 298.667h86v-86h-86v86z" />
-<glyph unicode="&#xe434;" glyph-name="photo_size_select_small" d="M298 810.667v-86h-84v86h84zM470 810.667v-86h-86v86h86zM128 468.667v-84h-86v84h86zM128 810.667v-86h-86c0 42 44 86 86 86zM810 128.667v-86h-84v86h84zM810 810.667v-86h-84v86h84zM640 128.667v-86h-86v86h86zM128 640.667v-86h-86v86h86zM128 42.667c-46 0-86 40-86 86v170h428v-256h-342zM896 810.667c42 0 86-44 86-86h-86v86zM982 640.667v-86h-86v86h86zM640 810.667v-86h-86v86h86zM982 128.667c0-42-44-86-86-86v86h86zM982 468.667v-84h-86v84h86zM982 298.667v-86h-86v86h86z" />
-<glyph unicode="&#xe435;" glyph-name="vignette" d="M512 170.667c188 0 342 114 342 256s-154 256-342 256-342-114-342-256 154-256 342-256zM896 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-768c-46 0-86 40-86 86v596c0 46 40 86 86 86h768z" />
-<glyph unicode="&#xe436;" glyph-name="wb_iridescent" d="M212 86.667l-60 62 76 76 60-60zM152 748.667l60 60 76-76-60-60zM872 146.667l-60-60-76 78 60 60zM554-19.333h-84v126h84v-126zM812 808.667l60-60-76-76-60 60zM470 914.667h84v-126h-84v126zM214 320.667v256h596v-256h-596z" />
-<glyph unicode="&#xe437;" glyph-name="crop_rotate" d="M342 256.667h512v-86h-86v-86h-86v86h-340c-48 0-86 40-86 86v340h-86v86h86v86h86v-512zM682 340.667v256h-256v86h256c46 0 86-38 86-86v-256h-86zM514 938.667c268 0 488-208 510-470h-64c-16 160-114 296-254 362l-58-56-162 162c10 0 18 2 28 2zM318 22.667l58 56 162-162c-10 0-18-2-28-2-268 0-488 208-510 470h64c16-160 114-296 254-362z" />
-<glyph unicode="&#xe438;" glyph-name="linked_camera" d="M682 682.667c48 0 86-38 86-86h56c0 78-64 142-142 142v-56zM512 128.667c118 0 214 94 214 212s-96 214-214 214-214-96-214-214 96-212 214-212zM726 554.667h212v-470c0-46-38-84-84-84h-684c-46 0-84 38-84 84v512c0 46 38 86 84 86h136l78 86h256v-128c48 0 86-38 86-86zM682 796.667v56c142 0 256-114 256-256h-56c0 110-90 200-200 200zM376 340.667c0 76 60 138 136 138s136-62 136-138-60-136-136-136-136 60-136 136z" />
-<glyph unicode="&#xe439;" glyph-name="add_a_photo" d="M418 340.667c0 76 60 138 136 138s138-62 138-138-62-136-138-136-136 60-136 136zM554 128.667c118 0 214 94 214 212s-96 214-214 214-212-96-212-214 94-212 212-212zM256 512.667v128h128v128h298l78-86h136c46 0 86-40 86-86v-512c0-46-40-84-86-84h-682c-46 0-86 38-86 84v428h128zM128 768.667v128h86v-128h128v-86h-128v-128h-86v128h-128v86h128z" />
-<glyph unicode="&#xe43a;" glyph-name="movie_filter" d="M722 428.667l88 40-88 40-40 88-40-88-88-40 88-40 40-88zM480 288.667l118 52-118 54-54 118-52-118-118-54 118-52 52-118zM768 768.667h170v-598c0-46-38-86-84-86h-684c-46 0-84 40-84 86v512c0 46 38 86 84 86h44l84-128h128l-84 128h84l86-128h128l-86 128h86l86-128h128z" />
-<glyph unicode="&#xe43b;" glyph-name="photo_filter" d="M566 480.667l116-54-116-54-54-116-54 116-116 54 116 54 54 116zM726 512.667l-40 88-88 40 88 40 40 88 40-88 88-40-88-40zM812 512.667h84v-384c0-46-38-86-84-86h-598c-46 0-86 40-86 86v596c0 46 40 86 86 86h384v-86h-384v-596h598v384z" />
-<glyph unicode="&#xe43c;" glyph-name="burst_mode" d="M470 212.667h426l-136 180-108-136-76 92zM938 724.667c24 0 44-18 44-42v-512c0-24-20-42-44-42h-512c-24 0-42 18-42 42v512c0 24 18 42 42 42h512zM214 724.667h84v-596h-84v596zM42 724.667h86v-596h-86v596z" />
-<glyph unicode="&#xe52d;" glyph-name="beenhere" d="M426 256.667l384 384-60 60-324-324-152 152-60-60zM810 896.667c46 0 86-40 86-86v-552c0-30-16-54-38-70l-346-232-346 232c-22 16-38 40-38 70v552c0 46 40 86 86 86h596z" />
-<glyph unicode="&#xe52e;" glyph-name="directions" d="M598 320.667l148 148-148 150v-106h-214c-24 0-42-20-42-44v-170h84v128h172v-106zM926 456.667c16-18 16-44 0-60l-384-384c-16-16-44-16-60 0l-384 384c-16 16-16 44 0 60l384 384c16 16 44 16 60 0z" />
-<glyph unicode="&#xe52f;" glyph-name="directions_bike" d="M810 64.667c82 0 150 66 150 148s-68 150-150 150-148-68-148-150 66-148 148-148zM810 426.667c120 0 214-94 214-214s-94-212-214-212-212 92-212 212 92 214 212 214zM460 490.667l94-98v-264h-84v212l-138 120c-18 12-24 34-24 60 0 22 6 42 24 60l120 120c12 18 34 24 60 24s46-6 68-24l82-82c38-38 88-64 152-64v-86c-90 0-160 34-216 90l-34 34zM214 64.667c82 0 148 66 148 148s-66 150-148 150-150-68-150-150 68-148 150-148zM214 426.667c120 0 212-94 212-214s-92-212-212-212-214 92-214 212 94 214 214 214zM662 704.667c-46 0-86 38-86 84s40 86 86 86 84-40 84-86-38-84-84-84z" />
-<glyph unicode="&#xe530;" glyph-name="directions_bus" d="M768 468.667v214h-512v-214h512zM704 212.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM320 212.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM170 256.667v426c0 150 154 170 342 170s342-20 342-170v-426c0-38-18-72-44-96v-76c0-24-18-42-42-42h-42c-24 0-44 18-44 42v44h-340v-44c0-24-20-42-44-42h-42c-24 0-42 18-42 42v76c-26 24-44 58-44 96z" />
-<glyph unicode="&#xe531;" glyph-name="directions_car" d="M214 468.667h596l-64 192h-468zM746 256.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM278 256.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM808 682.667l88-256v-342c0-24-18-42-42-42h-44c-24 0-42 18-42 42v44h-512v-44c0-24-18-42-42-42h-44c-24 0-42 18-42 42v342l88 256c8 26 34 42 62 42h468c28 0 54-16 62-42z" />
-<glyph unicode="&#xe532;" glyph-name="directions_boat" d="M256 682.667v-170l256 84 256-84v170h-512zM168 128.667l-80 284c-9.564 28.693 7.98 47.327 28 54l54 18v198c0 46 40 86 86 86h128v128h256v-128h128c46 0 86-40 86-86v-198l54-18c20.040-6.68 37.574-25.277 28-54l-80-284h-2c-68 0-130 36-172 84-42-48-102-84-170-84s-128 36-170 84c-42-48-104-84-172-84h-2zM854 42.667h84v-86h-84c-58 0-118 14-172 42-108-56-232-56-340 0-54-28-114-42-172-42h-84v86h84c60 0 120 20 172 56 104-72 236-72 340 0 52-36 112-56 172-56z" />
-<glyph unicode="&#xe534;" glyph-name="directions_railway" d="M768 512.667v212h-512v-212h512zM512 212.667c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM170 276.667v448c0 150 154 172 342 172s342-22 342-172v-448c0-82-68-148-150-148l64-64v-22h-512v22l64 64c-82 0-150 66-150 148z" />
-<glyph unicode="&#xe535;" glyph-name="directions_transit" d="M768 468.667v214h-214v-214h214zM704 212.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM470 468.667v214h-214v-214h214zM320 212.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM512 852.667c188 0 342-20 342-170v-406c0-82-68-148-150-148l64-64v-22h-512v22l64 64c-82 0-150 66-150 148v406c0 150 154 170 342 170z" />
-<glyph unicode="&#xe536;" glyph-name="directions_walk" d="M418 558.667l-120-602h90l78 342 88-86v-256h86v320l-90 86 26 128c56-64 140-106 234-106v84c-82 0-148 44-182 104l-44 68c-18 26-42 42-72 42-12 0-22-4-34-4l-222-94v-200h86v144l76 30zM576 704.667c-46 0-86 38-86 84s40 86 86 86 86-40 86-86-40-84-86-84z" />
-<glyph unicode="&#xe539;" glyph-name="flight" d="M896 256.667l-342 106v-234l86-64v-64l-150 42-148-42v64l84 64v234l-340-106v84l340 214v234c0 36 28 64 64 64s64-28 64-64v-234l342-214v-84z" />
-<glyph unicode="&#xe53b;" glyph-name="layers" d="M512 256.667c-128.024 99.309-255.626 199.040-384 298l384 298 384-298c-128.375-98.958-255.974-198.693-384-298zM512 146.667l314 246 70-54-384-298-384 298 70 54z" />
-<glyph unicode="&#xe53c;" glyph-name="layers_clear" d="M140 896.667l798-800-54-54-160 162-212-164-384 298 70 54 314-246 150 118-60 60-90-68c-128.024 99.309-255.626 199.040-384 298l138 108-180 180zM896 554.667c-57.761-44.239-114.863-89.137-172-134l-336 336 124 96zM846 298.667l-62 62 50 38 62-60z" />
-<glyph unicode="&#xe53d;" glyph-name="local_airport" d="M896 256.667l-342 106v-234l86-64v-64l-150 42-148-42v64l84 64v234l-340-106v84l340 214v234c0 36 28 64 64 64s64-28 64-64v-234l342-214v-84z" />
-<glyph unicode="&#xe53e;" glyph-name="local_atm" d="M854 170.667v512h-684v-512h684zM854 768.667c48 0 84-38 84-86v-512c0-48-36-86-84-86h-684c-48 0-84 38-84 86v512c0 48 36 86 84 86h684zM470 212.667v44h-86v84h170v44h-128c-24 0-42 18-42 42v128c0 24 18 42 42 42h44v44h84v-44h86v-84h-170v-44h128c24 0 42-18 42-42v-128c0-24-18-42-42-42h-44v-44h-84z" />
-<glyph unicode="&#xe540;" glyph-name="local_bar" d="M318 640.667h388l76 84h-540zM896 724.667l-342-384v-212h214v-86h-512v86h214v212l-342 384v86h768v-86z" />
-<glyph unicode="&#xe541;" glyph-name="local_cafe" d="M86 42.667v86h768v-86h-768zM854 596.667v128h-86v-128h86zM854 810.667c48 0 84-38 84-86v-128c0-48-36-84-84-84h-86v-128c0-94-76-172-170-172h-256c-94 0-172 78-172 172v426h684z" />
-<glyph unicode="&#xe542;" glyph-name="local_car_wash" d="M214 384.667h596l-64 192h-468zM746 170.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM278 170.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM808 596.667l88-256v-340c0-24-18-44-42-44h-44c-24 0-42 20-42 44v42h-512v-42c0-24-18-44-42-44h-44c-24 0-42 20-42 44v340l88 256c8 26 34 44 62 44h468c28 0 54-18 62-44zM298 724.667c-36 0-64 28-64 64 0 42 64 116 64 116s64-74 64-116c0-36-28-64-64-64zM512 724.667c-36 0-64 28-64 64 0 42 64 116 64 116s64-74 64-116c0-36-28-64-64-64zM726 724.667c-36 0-64 28-64 64 0 42 64 116 64 116s64-74 64-116c0-36-28-64-64-64z" />
-<glyph unicode="&#xe543;" glyph-name="local_convenience_store" d="M682 426.667v214h-42v-86h-42v86h-44v-128h86v-86h42zM470 512.667v128h-128v-44h84v-42h-84v-128h128v42h-86v44h86zM810 640.667h128v-556h-340v172h-172v-172h-340v556h128v128h596v-128z" />
-<glyph unicode="&#xe544;" glyph-name="local_drink" d="M782 596.667l18 172h-576l18-172h540zM512 128.667c70 0 128 58 128 128 0 86-128 230-128 230s-128-144-128-230c0-70 58-128 128-128zM128 852.667h768l-86-778c-6-42-40-74-84-74h-428c-44 0-78 32-84 74z" />
-<glyph unicode="&#xe545;" glyph-name="local_florist" d="M512 704.667c-58 0-106-50-106-108s48-106 106-106 106 48 106 106-48 108-106 108zM238 500.667c0 42 26 78 62 96-36 18-62 54-62 96 0 58 50 108 108 108 22 0 42-8 60-20v8c0 58 48 108 106 108s106-50 106-108v-8c18 12 38 20 60 20 58 0 108-50 108-108 0-42-26-78-62-96 36-18 62-54 62-96 0-58-50-106-108-106-22 0-42 6-60 18v-8c0-58-48-106-106-106s-106 48-106 106v8c-18-12-38-18-60-18-58 0-108 48-108 106zM512 0.667c-212 0-384 172-384 384 212 0 384-172 384-384zM512 0.667c0 212 172 384 384 384 0-212-172-384-384-384z" />
-<glyph unicode="&#xe546;" glyph-name="local_gas_station" d="M768 512.667c24 0 42 18 42 42s-18 42-42 42-42-18-42-42 18-42 42-42zM512 512.667v212h-256v-212h256zM844 630.667c20-20 30-46 30-76v-406c0-58-48-106-106-106s-106 48-106 106v214h-64v-320h-428v682c0 46 40 86 86 86h256c46 0 86-40 86-86v-298h42c46 0 86-40 86-86v-192c0-24 18-42 42-42s42 18 42 42v308c-14-6-26-8-42-8-58 0-106 48-106 106 0 46 28 84 68 100l-90 90 46 44z" />
-<glyph unicode="&#xe548;" glyph-name="local_hospital" d="M768 340.667v172h-170v170h-172v-170h-170v-172h170v-170h172v170h170zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-46 0-86 40-86 86v596c0 46 40 86 86 86h596z" />
-<glyph unicode="&#xe549;" glyph-name="local_hotel" d="M810 640.667c94 0 172-78 172-172v-384h-86v128h-768v-128h-86v640h86v-384h342v300h340zM298 384.667c-70 0-128 58-128 128s58 128 128 128 128-58 128-128-58-128-128-128z" />
-<glyph unicode="&#xe54a;" glyph-name="local_laundry_service" d="M512 84.667c142 0 256 114 256 256s-114 256-256 256-256-114-256-256 114-256 256-256zM298 768.667c-24 0-42-20-42-44s18-42 42-42 44 18 44 42-20 44-44 44zM426 768.667c-24 0-42-20-42-44s18-42 42-42 44 18 44 42-20 44-44 44zM768 852.667c48 0 86-36 86-84v-684c0-48-38-84-86-84h-512c-48 0-86 36-86 84v684c0 48 38 84 86 84h512zM392 220.667l240 242c66-66 66-176 0-242s-174-66-240 0z" />
-<glyph unicode="&#xe54b;" glyph-name="local_library" d="M512 596.667c-70 0-128 58-128 128s58 128 128 128 128-58 128-128-58-128-128-128zM512 446.667c100 94 236 150 384 150v-468c-148 0-284-58-384-152-100 94-236 152-384 152v468c148 0 284-56 384-150z" />
-<glyph unicode="&#xe54c;" glyph-name="local_mall" d="M512 384.667c118 0 214 94 214 212h-86c0-70-58-128-128-128s-128 58-128 128h-86c0-118 96-212 214-212zM512 810.667c-70 0-128-58-128-128h256c0 70-58 128-128 128zM810 682.667c46 0 86-40 86-86v-512c0-46-40-84-86-84h-596c-46 0-86 38-86 84v512c0 46 40 86 86 86h84c0 118 96 214 214 214s214-96 214-214h84z" />
-<glyph unicode="&#xe54e;" glyph-name="local_offer" d="M234 640.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM914 444.667c16-16 24-36 24-60s-8-44-24-60l-300-300c-16-16-36-24-60-24s-44 8-60 24l-384 384c-16 16-24 36-24 60v300c0 46 38 84 84 84h300c24 0 44-8 60-24z" />
-<glyph unicode="&#xe54f;" glyph-name="local_parking" d="M564 468.667c46 0 84 40 84 86s-38 86-84 86h-138v-172h138zM554 810.667c142 0 256-114 256-256s-114-256-256-256h-128v-256h-170v768h298z" />
-<glyph unicode="&#xe550;" glyph-name="local_pharmacy" d="M682 340.667v86h-128v128h-84v-128h-128v-86h128v-128h84v128h128zM896 724.667v-84l-86-256 86-256v-86h-768v86l86 256-86 256v84h542l62 172 100-38-48-134h112z" />
-<glyph unicode="&#xe552;" glyph-name="local_pizza" d="M512 298.667c46 0 86 40 86 86s-40 84-86 84-86-38-86-84 40-86 86-86zM298 640.667c0-46 40-86 86-86s86 40 86 86-40 84-86 84-86-38-86-84zM512 852.667c152 0 290-66 384-170l-384-682-384 682c94 104 232 170 384 170z" />
-<glyph unicode="&#xe553;" glyph-name="local_play" d="M664 222.667l-46 174 140 116-180 10-66 168-66-168-182-10 142-116-46-174 152 98zM854 426.667c0-46 38-86 84-86v-170c0-46-38-86-84-86h-684c-46 0-84 40-84 86v170c48 0 84 40 84 86s-38 86-84 86v170c0 46 38 86 84 86h684c46 0 84-40 84-86v-170c-46 0-84-40-84-86z" />
-<glyph unicode="&#xe558;" glyph-name="local_shipping" d="M768 148.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM832 532.667h-106v-106h190zM256 148.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM854 596.667l128-170v-214h-86c0-70-58-128-128-128s-128 58-128 128h-256c0-70-58-128-128-128s-128 58-128 128h-86v470c0 46 40 86 86 86h598v-172h128z" />
-<glyph unicode="&#xe559;" glyph-name="local_taxi" d="M214 468.667h596l-64 192h-468zM746 256.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM278 256.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM808 682.667l88-256v-342c0-24-18-42-42-42h-44c-24 0-42 18-42 42v44h-512v-44c0-24-18-42-42-42h-44c-24 0-42 18-42 42v342l88 256c8 26 34 42 62 42h106v86h256v-86h106c28 0 54-16 62-42z" />
-<glyph unicode="&#xe55a;" glyph-name="person_pin" d="M768 256.667v38c0 86-170 132-256 132s-256-46-256-132v-38h512zM512 712.667c-64 0-116-52-116-116s52-114 116-114 116 50 116 114-52 116-116 116zM810 852.667c46 0 86-38 86-84v-598c0-46-40-86-86-86h-170l-128-128-128 128h-170c-48 0-86 40-86 86v598c0 46 38 84 86 84h596z" />
-<glyph unicode="&#xe55b;" glyph-name="map" d="M640 128.667v506l-256 90v-506zM874 810.667c12 0 22-10 22-22v-644c0-10-8-18-16-20l-240-82-256 90-228-88-6-2c-12 0-22 10-22 22v644c0 10 8 18 16 20l240 82 256-90 228 88z" />
-<glyph unicode="&#xe55c;" glyph-name="my_location" d="M512 128.667c166 0 298 132 298 298s-132 298-298 298-298-132-298-298 132-298 298-298zM894 468.667h88v-84h-88c-20-178-162-320-340-340v-88h-84v88c-178 20-320 162-340 340h-88v84h88c20 178 162 320 340 340v88h84v-88c178-20 320-162 340-340zM512 596.667c94 0 170-76 170-170s-76-170-170-170-170 76-170 170 76 170 170 170z" />
-<glyph unicode="&#xe55d;" glyph-name="navigation" d="M512 852.667l320-780-30-30-290 128-290-128-30 30z" />
-<glyph unicode="&#xe55e;" glyph-name="pin_drop" d="M214 84.667h596v-84h-596v84zM426 596.667c0-46 40-84 86-84 48 0 86 38 86 84s-40 86-86 86-86-40-86-86zM768 596.667c0-192-256-468-256-468s-256 276-256 468c0 142 114 256 256 256s256-114 256-256z" />
-<glyph unicode="&#xe560;" glyph-name="rate_review" d="M768 340.667v86h-234l-86-86h320zM256 340.667h106l294 294c8 8 8 22 0 30l-76 76c-8 8-22 8-30 0l-294-294v-106zM854 852.667c46 0 84-38 84-84v-512c0-46-38-86-84-86h-598l-170-170v768c0 46 38 84 84 84h684z" />
-<glyph unicode="&#xe561;" glyph-name="restaurant_menu" d="M634 446.667l-62-62 294-294-60-60-294 294-294-294-60 60 416 416c-30 66-8 158 60 226 82 82 198 96 260 34s48-180-34-262c-68-68-160-88-226-58zM346 368.667l-180 180c-66 66-66 174 0 240l300-298z" />
-<glyph unicode="&#xe562;" glyph-name="satellite" d="M214 170.667h596l-192 256-148-192-108 128zM214 426.667c166 0 298 134 298 300h-86c0-118-94-214-212-214v-86zM214 726.667v-130c70 0 128 60 128 130h-128zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-46 0-86 40-86 86v596c0 46 40 86 86 86h596z" />
-<glyph unicode="&#xe563;" glyph-name="store_mall_directory" d="M512 170.667v170h-256v-170h256zM896 340.667h-42v-256h-86v256h-170v-256h-428v256h-42v86l42 214h684l42-214v-86zM854 768.667v-86h-684v86h684z" />
-<glyph unicode="&#xe564;" glyph-name="terrain" d="M598 682.667l384-512h-940l256 342 192-256 68 50-120 162z" />
-<glyph unicode="&#xe565;" glyph-name="traffic" d="M512 554.667c48 0 86 40 86 86 0 48-40 84-86 84-48 0-86-36-86-84 0-46 38-86 86-86zM512 340.667c48 0 86 40 86 86s-40 86-86 86c-48 0-86-40-86-86s38-86 86-86zM512 128.667c48 0 86 38 86 84s-40 86-86 86c-48 0-86-40-86-86s38-84 86-84zM854 512.667c0-80-54-146-128-166v-48h128c0-80-54-144-128-164v-50c0-24-20-42-44-42h-340c-24 0-44 18-44 42v50c-74 20-128 84-128 164h128v48c-74 20-128 86-128 166h128v48c-74 20-128 84-128 164h128v44c0 24 20 42 44 42h340c24 0 44-18 44-42v-44h128c0-80-54-144-128-164v-48h128z" />
-<glyph unicode="&#xe566;" glyph-name="directions_run" d="M422 112.667l-298 58 16 86 210-42 68 346-78-30v-146h-84v200l222 94c12 0 22 4 34 4 30 0 54-16 72-42l42-68c34-60 102-102 184-102v-86c-94 0-178 42-234 106l-26-128 90-84v-320h-86v256l-90 84zM576 704.667c-46 0-86 40-86 86s40 84 86 84 84-38 84-84-38-86-84-86z" />
-<glyph unicode="&#xe567;" glyph-name="add_location" d="M682 512.667v84h-128v128h-84v-128h-128v-84h128v-128h84v128h128zM512 852.667c164 0 298-134 298-298 0-224-298-554-298-554s-298 330-298 554c0 164 134 298 298 298z" />
-<glyph unicode="&#xe568;" glyph-name="edit_location" d="M636 616.667c6 6 6 16 0 22l-40 40c-6 6-16 6-22 0l-30-30 62-62zM446 426.667l142 142-62 62-142-142v-62h62zM512 852.667c164 0 298-134 298-298 0-224-298-554-298-554s-298 330-298 554c0 164 134 298 298 298z" />
-<glyph unicode="&#xe569;" glyph-name="near_me" d="M896 810.667l-322-768h-42l-112 292-292 112v42z" />
-<glyph unicode="&#xe56a;" glyph-name="person_pin_circle" d="M512 340.667c72 0 134 36 170 92 0 56-114 88-170 88s-170-32-170-88c36-56 98-92 170-92zM512 768.667c-46 0-86-40-86-86 0-48 40-86 86-86s86 38 86 86c0 46-40 86-86 86zM512 852.667c164 0 298-134 298-298 0-224-298-554-298-554s-298 330-298 554c0 164 134 298 298 298z" />
-<glyph unicode="&#xe56b;" glyph-name="zoom_out_map" d="M896 298.667v-256h-256l98 98-124 122 62 62 122-124zM384 42.667h-256v256l98-98 122 124 62-62-124-122zM128 554.667v256h256l-98-98 124-122-62-62-122 124zM640 810.667h256v-256l-98 98-122-124-62 62 124 122z" />
-<glyph unicode="&#xe56c;" glyph-name="restaurant" d="M682 682.667c0 76 96 170 214 170v-852h-106v340h-108v342zM470 554.667v298h84v-298c0-90-70-164-160-170v-384h-106v384c-90 6-160 80-160 170v298h86v-298h84v298h86v-298h86z" />
-<glyph unicode="&#xe56d;" glyph-name="ev_station" d="M342 170.667l170 298h-86v214l-170-320h86v-192zM768 512.667c24 0 42 18 42 42s-18 42-42 42-42-18-42-42 18-42 42-42zM844 630.667c20-20 30-46 30-76v-406c0-58-48-106-106-106s-106 48-106 106v214h-64v-320h-428v682c0 46 40 86 86 86h256c46 0 86-40 86-86v-298h42c46 0 86-40 86-86v-192c0-24 18-42 42-42s42 18 42 42v308c-14-6-26-8-42-8-58 0-106 48-106 106 0 46 28 84 68 100l-90 90 46 44z" />
-<glyph unicode="&#xe56e;" glyph-name="streetview" d="M490 682.667c0-76 32-146 82-196l-418-418c-16 16-26 36-26 60v596c0 46 40 86 86 86h308c-20-38-32-82-32-128zM554 682.667c0 118 96 214 214 214s214-96 214-214-96-214-214-214-214 96-214 214zM536 326.667c64 48 146 78 232 78 44 0 88-8 128-22v-254c0-46-40-86-86-86h-298v234c0 20 10 38 24 50z" />
-<glyph unicode="&#xe56f;" glyph-name="subway" d="M768 260.667v294c0 112-114 128-256 128-128 0-256-16-256-128v-294c0-62 50-112 112-112l-48-48v-16h72l64 64h120l64-64h64v16l-48 48c62 0 112 50 112 112zM760 818.667c114-44 178-138 178-258v-560h-852v560c0 120 64 214 178 258 76 30 168 34 248 34s172-4 248-34zM300 554.667h426v-214h-426v214zM320 256.667c0 24 18 42 42 42s44-18 44-42-20-44-44-44-42 20-42 44zM618 256.667c0 24 20 42 44 42s42-18 42-42-18-44-42-44-44 20-44 44z" />
-<glyph unicode="&#xe570;" glyph-name="train" d="M704 212.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM554 512.667h214v170h-214v-170zM470 512.667v170h-214v-170h214zM320 212.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM512 852.667c188 0 342-20 342-170v-406c0-82-68-148-150-148l64-64v-22h-86l-84 86h-162l-84-86h-96v22l64 64c-82 0-150 66-150 148v406c0 150 172 170 342 170z" />
-<glyph unicode="&#xe571;" glyph-name="tram" d="M726 340.667v214h-428v-214h428zM512 148.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM810 216.667c0-72-38-132-110-132h4l64-64v-20h-86l-84 84h-162l-84-84h-96v20l68 68c-60 14-110 66-110 128v360c0 118 120 144 254 148l34 64h-204v64h428v-64h-140l-32-64c146-4 256-28 256-148v-360z" />
-<glyph unicode="&#xe572;" glyph-name="transfer_within_a_station" d="M246 558.667l-118-602h90l74 342 92-86v-256h86v322l-88 88 26 128c56-68 138-110 232-110v84c-78 0-148 44-186 106l-40 68c-14 26-42 40-72 40-10 0-22-2-32-6l-224-92v-200h84v142l76 32zM406 704.667c-46 0-86 38-86 84s40 86 86 86 84-40 84-86-38-84-84-84zM832 96.667v74l106-106-106-108v76h-234v64h234zM704 276.667h234v-64h-234v-74l-106 106 106 108v-76z" />
-<glyph unicode="&#xe5c3;" glyph-name="apps" d="M682 84.667v172h172v-172h-172zM682 340.667v172h172v-172h-172zM426 596.667v172h172v-172h-172zM682 768.667h172v-172h-172v172zM426 340.667v172h172v-172h-172zM170 340.667v172h172v-172h-172zM170 84.667v172h172v-172h-172zM426 84.667v172h172v-172h-172zM170 596.667v172h172v-172h-172z" />
-<glyph unicode="&#xe5c4;" glyph-name="arrow_back" d="M854 468.667v-84h-520l238-240-60-60-342 342 342 342 60-60-238-240h520z" />
-<glyph unicode="&#xe5c5;" glyph-name="arrow_drop_down" d="M298 512.667h428l-214-214z" />
-<glyph unicode="&#xe5c6;" glyph-name="arrow_drop_down_circle" d="M512 340.667l170 172h-340zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426z" />
-<glyph unicode="&#xe5c7;" glyph-name="arrow_drop_up" d="M298 340.667l214 214 214-214h-428z" />
-<glyph unicode="&#xe5c8;" glyph-name="arrow_forward" d="M512 768.667l342-342-342-342-60 60 238 240h-520v84h520l-238 240z" />
-<glyph unicode="&#xe5c9;" glyph-name="cancel" d="M726 272.667l-154 154 154 154-60 60-154-154-154 154-60-60 154-154-154-154 60-60 154 154 154-154zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426z" />
-<glyph unicode="&#xe5ca;" glyph-name="check" d="M384 248.667l452 452 60-60-512-512-238 238 60 60z" />
-<glyph unicode="&#xe5cd;" glyph-name="close" d="M810 664.667l-238-238 238-238-60-60-238 238-238-238-60 60 238 238-238 238 60 60 238-238 238 238z" />
-<glyph unicode="&#xe5ce;" glyph-name="expand_less" d="M512 596.667l256-256-60-60-196 196-196-196-60 60z" />
-<glyph unicode="&#xe5cf;" glyph-name="expand_more" d="M708 572.667l60-60-256-256-256 256 60 60 196-196z" />
-<glyph unicode="&#xe5d0;" glyph-name="fullscreen" d="M598 724.667h212v-212h-84v128h-128v84zM726 212.667v128h84v-212h-212v84h128zM214 512.667v212h212v-84h-128v-128h-84zM298 340.667v-128h128v-84h-212v212h84z" />
-<glyph unicode="&#xe5d1;" glyph-name="fullscreen_exit" d="M682 596.667h128v-84h-212v212h84v-128zM598 128.667v212h212v-84h-128v-128h-84zM342 596.667v128h84v-212h-212v84h128zM214 256.667v84h212v-212h-84v128h-128z" />
-<glyph unicode="&#xe5d2;" glyph-name="menu" d="M128 682.667h768v-86h-768v86zM128 384.667v84h768v-84h-768zM128 170.667v86h768v-86h-768z" />
-<glyph unicode="&#xe5d3;" glyph-name="more_horiz" d="M512 512.667c46 0 86-40 86-86s-40-86-86-86-86 40-86 86 40 86 86 86zM768 512.667c46 0 86-40 86-86s-40-86-86-86-86 40-86 86 40 86 86 86zM256 512.667c46 0 86-40 86-86s-40-86-86-86-86 40-86 86 40 86 86 86z" />
-<glyph unicode="&#xe5d4;" glyph-name="more_vert" d="M512 256.667c46 0 86-40 86-86s-40-86-86-86-86 40-86 86 40 86 86 86zM512 512.667c46 0 86-40 86-86s-40-86-86-86-86 40-86 86 40 86 86 86zM512 596.667c-46 0-86 40-86 86s40 86 86 86 86-40 86-86-40-86-86-86z" />
-<glyph unicode="&#xe5d5;" glyph-name="refresh" d="M754 668.667l100 100v-300h-300l138 138c-46 46-110 76-180 76-142 0-256-114-256-256s114-256 256-256c112 0 208 70 242 170h88c-38-148-170-256-330-256-188 0-340 154-340 342s152 342 340 342c94 0 180-38 242-100z" />
-<glyph unicode="&#xe5d6;" glyph-name="unfold_less" d="M708 708.667l-196-196-196 196 60 60 136-136 136 136zM316 144.667l196 196 196-196-60-60-136 136-136-136z" />
-<glyph unicode="&#xe5d7;" glyph-name="unfold_more" d="M512 162.667l136 136 60-60-196-196-196 196 60 60zM512 690.667l-136-136-60 60 196 196 196-196-60-60z" />
-<glyph unicode="&#xe5d8;" glyph-name="arrow_upward" d="M170 426.667l342 342 342-342-62-60-238 238v-520h-84v520l-240-238z" />
-<glyph unicode="&#xe5d9;" glyph-name="subdirectory_arrow_left" d="M470 554.667l60-60-154-154h392v428h86v-512h-478l154-154-60-60-256 256z" />
-<glyph unicode="&#xe5da;" glyph-name="subdirectory_arrow_right" d="M810 298.667l-256-256-60 60 154 154h-478v512h86v-428h392l-154 154 60 60z" />
-<glyph unicode="&#xe5db;" glyph-name="arrow_downward" d="M854 426.667l-342-342-342 342 62 60 238-238v520h84v-520l240 238z" />
-<glyph unicode="&#xe5dc;" glyph-name="first_page" d="M256 682.667h86v-512h-86v512zM786 230.667l-60-60-256 256 256 256 60-60-196-196z" />
-<glyph unicode="&#xe5dd;" glyph-name="last_page" d="M682 682.667h86v-512h-86v512zM238 622.667l60 60 256-256-256-256-60 60 196 196z" />
-<glyph unicode="&#xe60e;" glyph-name="adb" d="M640 554.667c24 0 42 18 42 42s-18 44-42 44-42-20-42-44 18-42 42-42zM384 554.667c24 0 42 18 42 42s-18 44-42 44-42-20-42-44 18-42 42-42zM688 752.667c74-54 122-142 122-240v-44h-596v44c0 98 48 186 122 240l-90 90 36 34 98-98c40 20 84 32 132 32s92-12 132-32l98 98 36-34zM214 256.667v170h596v-170c0-166-132-300-298-300s-298 134-298 300z" />
-<glyph unicode="&#xe610;" glyph-name="disc_full" d="M426 340.667c46 0 86 40 86 86s-40 86-86 86-84-40-84-86 38-86 84-86zM426 768.667c188 0 342-154 342-342s-154-342-342-342-340 154-340 342 152 342 340 342zM854 640.667h84v-214h-84v214zM854 256.667v84h84v-84h-84z" />
-<glyph unicode="&#xe611;" glyph-name="do_not_disturb_alt" d="M512 84.667c188 0 342 154 342 342 0 76-28 150-74 210l-478-478c60-46 134-74 210-74zM170 426.667c0-76 28-150 74-210l478 478c-60 46-134 74-210 74-188 0-342-154-342-342zM512 852.667c234 0 426-192 426-426s-192-426-426-426-426 192-426 426 192 426 426 426z" />
-<glyph unicode="&#xe614;" glyph-name="event_available" d="M810 128.667v468h-596v-468h596zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-48 0-86 40-86 86v596c0 46 38 86 86 86h42v86h86v-86h340v86h86v-86h42zM706 466.667l-254-254-136 136 46 46 90-90 208 208z" />
-<glyph unicode="&#xe615;" glyph-name="event_busy" d="M810 128.667v468h-596v-468h596zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-48 0-86 40-86 86v596c0 46 38 86 86 86h42v86h86v-86h340v86h86v-86h42zM398 212.667l-46 46 104 104-104 104 46 46 104-104 104 104 44-46-104-104 104-104-44-46-104 104z" />
-<glyph unicode="&#xe616;" glyph-name="event_note" d="M598 340.667v-84h-300v84h300zM810 128.667v468h-596v-468h596zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-48 0-86 40-86 86v596c0 46 38 86 86 86h42v86h86v-86h340v86h86v-86h42zM726 512.667v-86h-428v86h428z" />
-<glyph unicode="&#xe617;" glyph-name="folder_special" d="M766 212.667l-34 142 110 96-144 12-58 134-58-134-144-12 110-96-34-142 126 74zM854 682.667c46 0 84-40 84-86v-426c0-46-38-86-84-86h-684c-46 0-84 40-84 86v512c0 46 38 86 84 86h256l86-86h342z" />
-<glyph unicode="&#xe618;" glyph-name="mms" d="M214 340.667h596l-192 256-148-192-108 128zM854 852.667c46 0 84-38 84-84v-512c0-46-38-86-84-86h-598l-170-170v768c0 46 38 84 84 84h684z" />
-<glyph unicode="&#xe619;" glyph-name="more" d="M810 362.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM598 362.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM384 362.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM938 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-636c-30 0-56 16-72 38l-230 346 230 346c16 22 38 38 68 38h640z" />
-<glyph unicode="&#xe61a;" glyph-name="network_locked" d="M896 256.667v64c0 36-28 64-64 64s-64-28-64-64v-64h128zM938 256.667c24 0 44-20 44-44v-170c0-24-20-42-44-42h-212c-24 0-44 18-44 42v170c0 24 20 44 44 44v64c0 58 48 106 106 106s106-48 106-106v-64zM832 512.667c-106 0-192-86-192-192v-12c-26-24-42-58-42-96v-128h-556l812 812v-386c-8 0-14 2-22 2z" />
-<glyph unicode="&#xe61b;" glyph-name="phone_bluetooth_speaker" d="M854 276.667c24 0 42-18 42-42v-150c0-24-18-42-42-42-400 0-726 326-726 726 0 24 18 42 42 42h150c24 0 42-18 42-42 0-54 8-104 24-152 4-14 2-32-10-44l-94-94c62-122 162-220 282-282l94 94c12 12 30 14 44 10 48-16 98-24 152-24zM768 630.667v-80l40 40zM768 814.667v-80l40 40zM628 532.667l-30 30 118 120-118 120 30 30 98-98v162h20l122-122-92-92 92-92-122-122h-20v162z" />
-<glyph unicode="&#xe61c;" glyph-name="phone_forwarded" d="M854 276.667c24 0 42-18 42-42v-150c0-24-18-42-42-42-400 0-726 326-726 726 0 24 18 42 42 42h150c24 0 42-18 42-42 0-54 8-104 24-152 4-14 2-32-10-44l-94-94c62-122 162-220 282-282l94 94c12 12 30 14 44 10 48-16 98-24 152-24zM768 468.667v128h-170v172h170v128l214-214z" />
-<glyph unicode="&#xe61d;" glyph-name="phone_in_talk" d="M640 426.667c0 70-58 128-128 128v86c118 0 214-96 214-214h-86zM810 426.667c0 166-132 298-298 298v86c212 0 384-172 384-384h-86zM854 276.667c24 0 42-18 42-42v-150c0-24-18-42-42-42-400 0-726 326-726 726 0 24 18 42 42 42h150c24 0 42-18 42-42 0-54 8-104 24-152 4-14 2-32-10-44l-94-94c62-122 162-220 282-282l94 94c12 12 30 14 44 10 48-16 98-24 152-24z" />
-<glyph unicode="&#xe61e;" glyph-name="phone_locked" d="M820 768.667v20c0 40-34 74-74 74s-72-34-72-74v-20h146zM854 768.667c24 0 42-20 42-44v-170c0-24-18-42-42-42h-214c-24 0-42 18-42 42v170c0 24 18 44 42 44v20c0 58 48 108 106 108s108-50 108-108v-20zM854 276.667c24 0 42-18 42-42v-150c0-24-18-42-42-42-400 0-726 326-726 726 0 24 18 42 42 42h150c24 0 42-18 42-42 0-54 8-104 24-152 4-14 2-32-10-44l-94-94c62-122 162-220 282-282l94 94c12 12 30 14 44 10 48-16 98-24 152-24z" />
-<glyph unicode="&#xe61f;" glyph-name="phone_missed" d="M1012 226.667c8-8 12-18 12-30s-4-22-12-30l-106-106c-8-8-18-12-30-12s-22 4-30 12c-34 32-72 60-114 80-14 6-24 22-24 38v132c-62 20-128 30-196 30s-134-10-196-30v-132c0-18-10-34-24-40-42-20-80-46-114-78-8-8-18-12-30-12s-22 4-30 12l-106 106c-8 8-12 18-12 30s4 22 12 30c130 124 306 200 500 200s370-76 500-200zM278 704.667v-150h-64v256h256v-64h-150l192-192 256 256 42-42-298-300z" />
-<glyph unicode="&#xe620;" glyph-name="phone_paused" d="M810 810.667h86v-298h-86v298zM854 276.667c24 0 42-18 42-42v-150c0-24-18-42-42-42-400 0-726 326-726 726 0 24 18 42 42 42h150c24 0 42-18 42-42 0-54 8-104 24-152 4-14 2-32-10-44l-94-94c62-122 162-220 282-282l94 94c12 12 30 14 44 10 48-16 98-24 152-24zM726 810.667v-298h-86v298h86z" />
-<glyph unicode="&#xe624;" glyph-name="sim_card_alert" d="M554 384.667v212h-84v-212h84zM554 212.667v86h-84v-86h84zM768 852.667c46 0 86-38 86-84v-684c0-46-40-84-86-84h-512c-46 0-86 38-86 84l2 512 254 256h342z" />
-<glyph unicode="&#xe626;" glyph-name="sms_failed" d="M554 512.667v170h-84v-170h84zM554 340.667v86h-84v-86h84zM854 852.667c46 0 84-38 84-84v-512c0-46-38-86-84-86h-598l-170-170v768c0 46 38 84 84 84h684z" />
-<glyph unicode="&#xe627;" glyph-name="sync" d="M512 170.667v128l170-170-170-172v128c-188 0-342 154-342 342 0 66 20 130 54 182l62-62c-20-36-30-76-30-120 0-142 114-256 256-256zM512 768.667c188 0 342-154 342-342 0-66-20-130-54-182l-62 62c20 36 30 76 30 120 0 142-114 256-256 256v-128l-170 170 170 172v-128z" />
-<glyph unicode="&#xe628;" glyph-name="sync_disabled" d="M854 768.667l-102-102c62-62 102-146 102-240 0-66-20-128-52-180l-64 62c18 36 30 76 30 118 0 70-30 134-76 180l-94-94v256h256zM122 708.667l54 54 670-672-54-54-100 100c-30-18-62-32-96-40v88c12 4 24 10 34 16l-344 344c-18-36-30-76-30-118 0-70 30-134 76-180l94 94v-256h-256l102 102c-62 62-102 146-102 240 0 66 20 128 52 180zM426 668.667c-12-4-22-10-32-16l-62 64c30 18 60 32 94 40v-88z" />
-<glyph unicode="&#xe629;" glyph-name="sync_problem" d="M470 384.667v256h84v-256h-84zM896 768.667l-100-102c62-62 100-146 100-240 0-160-108-292-256-330v88c100 34 170 130 170 242 0 70-28 134-74 180l-96-94v256h256zM470 212.667v86h84v-86h-84zM128 426.667c0 160 108 292 256 330v-88c-100-34-170-130-170-242 0-70 28-134 74-180l96 94v-256h-256l100 102c-62 62-100 146-100 240z" />
-<glyph unicode="&#xe62a;" glyph-name="system_update" d="M682 384.667l-170-172-170 172h128v212h84v-212h128zM726 128.667v596h-428v-596h428zM726 894.667c46 0 84-38 84-84v-768c0-46-38-86-84-86h-428c-46 0-84 40-84 86v768c0 46 38 86 84 86z" />
-<glyph unicode="&#xe62b;" glyph-name="tap_and_play" d="M726 894.667c46 0 84-38 84-84v-726c0-46-38-84-84-84h-90c-4 60-18 116-40 170h130v554h-428v-256c-28 12-54 22-84 28v314c0 46 38 86 84 86zM86 426.667c260 0 468-210 468-470h-84c0 212-172 384-384 384v86zM86 84.667c70 0 128-58 128-128h-128v128zM86 256.667c166 0 298-134 298-300h-86c0 118-94 214-212 214v86z" />
-<glyph unicode="&#xe62c;" glyph-name="time_to_leave" d="M214 512.667h596l-64 192h-468zM746 298.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM278 298.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM808 724.667l88-256v-340c0-24-18-44-42-44h-44c-24 0-42 20-42 44v42h-512v-42c0-24-18-44-42-44h-44c-24 0-42 20-42 44v340l88 256c8 26 34 44 62 44h468c28 0 54-18 62-44z" />
-<glyph unicode="&#xe62d;" glyph-name="vibration" d="M682 128.667v596h-340v-596h340zM704 810.667c36 0 64-28 64-64v-640c0-36-28-64-64-64h-384c-36 0-64 28-64 64v640c0 36 28 64 64 64h384zM810 212.667v428h86v-428h-86zM938 554.667h86v-256h-86v256zM128 212.667v428h86v-428h-86zM0 298.667v256h86v-256h-86z" />
-<glyph unicode="&#xe62e;" glyph-name="voice_chat" d="M768 340.667v342l-170-136v136h-342v-342h342v138zM854 852.667c46 0 84-38 84-84v-512c0-46-38-86-84-86h-598l-170-170v768c0 46 38 84 84 84h684z" />
-<glyph unicode="&#xe62f;" glyph-name="vpn_lock" d="M426 44.667v84c-46 0-84 38-84 84v44l-206 204c-6-24-8-50-8-76 0-174 130-320 298-340zM808 426.667h86c2-14 2-28 2-42 0-236-190-428-426-428s-428 192-428 428 192 426 428 426c44 0 88-8 128-20v-108c0-46-40-86-86-86h-86v-84c0-24-18-44-42-44h-86v-84h256c24 0 44-20 44-44v-128h42c38 0 70-24 82-58 56 60 88 142 88 230 0 14 0 28-2 42zM904 768.667v20c0 40-32 74-72 74s-72-34-72-74v-20h144zM938 768.667c24 0 44-20 44-44v-170c0-24-20-42-44-42h-212c-24 0-44 18-44 42v170c0 24 20 44 44 44v20c0 58 48 108 106 108s106-50 106-108v-20z" />
-<glyph unicode="&#xe630;" glyph-name="airline_seat_flat" d="M304 422.667c-50-50-130-52-180-2s-52 130-2 180 130 52 180 2 52-130 2-180zM86 340.667h852v-84h-256v-86h-340v86h-256v84zM938 468.667v-84h-554v256h384c94 0 170-78 170-172z" />
-<glyph unicode="&#xe631;" glyph-name="airline_seat_flat_angled" d="M312 502.667c-64-30-142-4-172 60s-4 142 60 172 142 4 172-60 4-142-60-172zM64 420.667l30 80 810-292-28-80-194 68v-68h-340v192zM950 328.667l-30-80-528 190 90 242 364-132c90-32 136-130 104-220z" />
-<glyph unicode="&#xe632;" glyph-name="airline_seat_individual_suite" d="M810 640.667c94 0 172-78 172-172v-256h-940v428h86v-300h342v300h340zM298 384.667c-70 0-128 58-128 128s58 128 128 128 128-58 128-128-58-128-128-128z" />
-<glyph unicode="&#xe633;" glyph-name="airline_seat_legroom_extra" d="M974 202.667c18-32 2-72-30-88l-158-72-146 298h-298c-70 0-128 58-128 128v342h256v-256h150c32 0 62-18 76-48l144-298 48 22c32 14 70 2 86-28zM170 426.667c0-70 58-128 128-128h256v-86h-256c-118 0-212 96-212 214v384h84v-384z" />
-<glyph unicode="&#xe634;" glyph-name="airline_seat_legroom_normal" d="M874 170.667c36 0 64-28 64-64s-28-64-64-64h-192v298h-298c-70 0-128 58-128 128v342h256v-256h214c46 0 84-40 84-86v-298h64zM214 426.667c0-70 58-128 128-128h256v-86h-256c-118 0-214 96-214 214v384h86v-384z" />
-<glyph unicode="&#xe635;" glyph-name="airline_seat_legroom_reduced" d="M214 426.667c0-70 58-128 128-128h170v-86h-170c-118 0-214 96-214 214v384h86v-384zM852 118.667c8-40-22-76-62-76h-192v128l42 170h-256c-70 0-128 58-128 128v342h256v-256h214c46 0 84-40 84-86l-84-298h60c32 0 60-22 66-52z" />
-<glyph unicode="&#xe636;" glyph-name="airline_seat_recline_extra" d="M692 298.667l246-192-64-64-162 128h-292c-62 0-114 44-126 104l-58 252c-8 52 26 102 78 112h2c30.359 4.337 56.628-4.102 74-18l70-54c54-42 130-68 200-54v-92c-80-14-152 14-220 52l44-174h208zM682 128.667v-86h-300c-106 0-196 76-212 180l-84 418h84l84-404c10-62 64-108 128-108h300zM228 698.667c-38 28-46 80-20 118s80 48 118 22c38-28 48-82 22-120-28-38-82-46-120-20z" />
-<glyph unicode="&#xe637;" glyph-name="airline_seat_recline_normal" d="M854 82.667l-62-62-150 150h-216c-70 0-128 58-128 128v246c0 52 44 96 96 96h2c29.673 0 54.798-16.798 70-32l60-66c46-50 130-86 200-86v-94c-82 0-176 44-236 94v-158h148zM256 256.667c0-70 58-128 128-128h256v-86h-256c-118 0-214 96-214 214v384h86v-384zM324 708.667c-34 34-34 86 0 120s86 34 120 0 34-86 0-120-86-34-120 0z" />
-<glyph unicode="&#xe638;" glyph-name="confirmation_number" d="M554 576.667v84h-84v-84h84zM554 384.667v84h-84v-84h84zM554 192.667v84h-84v-84h84zM938 512.667c-46 0-84-40-84-86s38-86 84-86v-170c0-46-38-86-84-86h-684c-46 0-84 40-84 86v170c48 0 84 40 84 86s-38 86-84 86v170c0 48 38 86 84 86h684c46 0 84-38 84-86v-170z" />
-<glyph unicode="&#xe639;" glyph-name="live_tv" d="M384 512.667l298-172-298-170v342zM896 84.667v512h-768v-512h768zM896 682.667c46 0 86-38 86-86v-512c0-46-40-84-86-84h-768c-46 0-86 38-86 84v512c0 48 40 86 86 86h324l-140 140 30 30 170-170 170 170 30-30-140-140h324z" />
-<glyph unicode="&#xe63a;" glyph-name="ondemand_video" d="M682 468.667l-298-170v342zM896 212.667v512h-768v-512h768zM896 810.667c46 0 86-38 86-86l-2-512c0-46-38-84-84-84h-214v-86h-340v86h-214c-48 0-86 38-86 84v512c0 48 38 86 86 86h768z" />
-<glyph unicode="&#xe63b;" glyph-name="personal_video" d="M896 212.667v512h-768v-512h768zM896 810.667c46 0 86-38 86-86l-2-512c0-46-38-84-84-84h-214v-86h-340v86h-214c-48 0-86 38-86 84v512c0 48 38 86 86 86h768z" />
-<glyph unicode="&#xe63c;" glyph-name="power" d="M684 640.667c42 0 84-44 84-86v-234l-150-150v-128h-212v128l-150 150v234c0 42 42 86 84 86h2v170h84v-170h172v170h84z" />
-<glyph unicode="&#xe63d;" glyph-name="wc" d="M704 682.667c-48 0-86 38-86 86s38 84 86 84 86-36 86-84-38-86-86-86zM320 682.667c-48 0-86 38-86 86s38 84 86 84 86-36 86-84-38-86-86-86zM768 0.667h-128v256h-128l108 324c12 34 46 60 82 60h4c36 0 70-26 82-60l108-324h-128v-256zM234 0.667v320h-64v234c0 46 40 86 86 86h128c46 0 86-40 86-86v-234h-64v-320h-172z" />
-<glyph unicode="&#xe63e;" glyph-name="wifi" d="M214 384.667c166 164 432 164 596 0l-84-86c-118 118-310 118-428 0zM384 212.667c70 70 186 70 256 0l-128-128zM42 554.667c260 258 682 258 940 0l-86-86c-212 212-556 212-768 0z" />
-<glyph unicode="&#xe63f;" glyph-name="enhanced_encryption" d="M682 256.667v84h-128v128h-84v-128h-128v-84h128v-128h84v128h128zM380 682.667v-86h264v86c0 72-60 132-132 132s-132-60-132-132zM768 596.667c46 0 86-38 86-84v-428c0-46-40-84-86-84h-512c-46 0-86 38-86 84v428c0 46 40 84 86 84h42v86c0 118 96 214 214 214s214-96 214-214v-86h42z" />
-<glyph unicode="&#xe640;" glyph-name="network_check" d="M214 384.667c86 86 200 126 312 122l-56-122c-62-8-124-38-172-86zM726 298.667c-16 16-34 30-52 42l24 124c40-20 78-46 112-80zM896 468.667c-52 52-112 92-176 118l22 120c88-32 170-82 240-152zM42 554.667c160 160 380 220 586 184l-50-114c-160 20-328-34-450-156zM678 724.667c12 0 22-8 22-20l-104-550v-2c-8-38-44-68-84-68-48 0-86 38-86 86 0 14 4 30 10 42l222 496c3.146 9.438 9.124 16 20 16z" />
-<glyph unicode="&#xe641;" glyph-name="no_encryption" d="M380 682.667v-52l-78 78c12 106 100 188 210 188 118 0 214-96 214-214v-86h42c46 0 86-38 86-84v-356l-442 440h232v86c0 72-60 132-132 132s-132-60-132-132zM896 8.667l-52-52-48 48c-8-2-18-4-28-4h-512c-46 0-86 38-86 84v428c0 32 20 60 46 74l-88 86 52 52z" />
-<glyph unicode="&#xe642;" glyph-name="rv_hookup" d="M726 852.667l128-128-128-128v86h-342v86h342v84zM768 340.667v128h-170v-128h170zM470 84.667c24 0 42 20 42 44s-18 42-42 42-44-18-44-42 20-44 44-44zM854 212.667h84v-84h-340c0-70-58-128-128-128s-128 58-128 128h-86c-46 0-86 38-86 84v128h300v128h-172v-84l-128 128 128 128v-86h470c46 0 86-40 86-86v-256z" />
-<glyph unicode="&#xe643;" glyph-name="do_not_disturb_off" d="M298 384.667h148l-86 84h-62v-84zM96 842.667l832-832-56-54-118 120c-68-48-152-76-242-76-236 0-426 190-426 426 0 90 28 174 76 242l-120 118zM726 468.667h-148l-308 308c68 48 152 76 242 76 236 0 426-190 426-426 0-90-28-174-76-242l-198 200h62v84z" />
-<glyph unicode="&#xe645;" glyph-name="priority_high" d="M426 810.667h172v-512h-172v512zM426 128.667c0 48 38 84 86 84s86-36 86-84-38-86-86-86-86 38-86 86z" />
-<glyph unicode="&#xe6c4;" glyph-name="pie_chart" d="M556 382.667h382c-20-202-180-362-382-382v382zM556 852.667c202-20 362-180 382-382h-382v382zM470 852.667v-852c-216 22-384 204-384 426s168 404 384 426z" />
-<glyph unicode="&#xe6c5;" glyph-name="pie_chart_outlined" d="M554 88.667c154 20 276 142 296 296h-296v-296zM170 426.667c0-174 132-316 300-338v676c-168-20-300-164-300-338zM554 764.667v-296h296c-20 154-142 276-296 296zM512 852.667c234 0 426-192 426-426s-192-426-426-426-426 192-426 426 192 426 426 426z" />
-<glyph unicode="&#xe6dd;" glyph-name="bubble_chart" d="M444 562.667c0 114 90 206 204 206s206-92 206-206-92-204-206-204-204 90-204 204zM546 170.667c0 48 38 86 86 86s84-38 84-86-36-86-84-86-86 38-86 86zM170 324.667c0 76 62 136 138 136s136-60 136-136-60-136-136-136-138 60-138 136z" />
-<glyph unicode="&#xe6df;" glyph-name="multiline_chart" d="M938 642.667l-130-146c46-74 78-164 88-262h-86c-8 70-30 136-62 194l-172-194-170 172-256-256-64 64 320 320 170-172 122 140c-72 84-172 138-288 138-100 0-192-40-264-104l-60 60c88 78 200 128 324 128 138 0 258-60 346-158l122 136z" />
-<glyph unicode="&#xe6e1;" glyph-name="show_chart" d="M150 150.667l-64 64 320 320 170-172 302 340 60-60-362-408-170 172z" />
-<glyph unicode="&#xe7e9;" glyph-name="cake" d="M768 554.667c70 0 128-58 128-128v-66c0-46-38-84-84-84-22 0-42 8-58 24l-92 92-92-92c-32-32-86-32-118 0l-90 92-92-92c-16-16-36-24-58-24-46 0-84 38-84 84v66c0 70 58 128 128 128h214v86h84v-86h214zM708 256.667c28-28 64-44 104-44 32 0 60 10 84 26v-196c0-24-18-42-42-42h-684c-24 0-42 18-42 42v196c24-16 52-26 84-26 40 0 76 16 104 44l46 46 46-46c56-56 152-56 208 0l46 46zM512 682.667c-46 0-86 40-86 86 0 16 6 32 14 44l72 126 72-126c8-12 14-28 14-44 0-46-38-86-86-86z" />
-<glyph unicode="&#xe7ee;" glyph-name="domain" d="M768 298.667v-86h-86v86h86zM768 468.667v-84h-86v84h86zM854 128.667v426h-342v-86h86v-84h-86v-86h86v-86h-86v-84h342zM426 640.667v84h-84v-84h84zM426 468.667v86h-84v-86h84zM426 298.667v86h-84v-86h84zM426 128.667v84h-84v-84h84zM256 640.667v84h-86v-84h86zM256 468.667v86h-86v-86h86zM256 298.667v86h-86v-86h86zM256 128.667v84h-86v-84h86zM512 640.667h426v-598h-852v768h426v-170z" />
-<glyph unicode="&#xe7f0;" glyph-name="group_add" d="M554 384.667c86 0 256-42 256-128v-86h-512v86c0 86 170 128 256 128zM838 376.667c86-14 186-54 186-120v-86h-128v86c0 50-22 88-58 120zM554 468.667c-70 0-128 58-128 128s58 128 128 128 128-58 128-128-58-128-128-128zM768 468.667c-14 0-26 2-38 6 24 34 38 76 38 122s-14 88-38 122c12 4 24 6 38 6 70 0 128-58 128-128s-58-128-128-128zM342 512.667v-86h-128v-128h-86v128h-128v86h128v128h86v-128h128z" />
-<glyph unicode="&#xe7f1;" glyph-name="location_city" d="M810 298.667v86h-84v-86h84zM810 128.667v84h-84v-84h84zM554 640.667v84h-84v-84h84zM554 468.667v86h-84v-86h84zM554 298.667v86h-84v-86h84zM554 128.667v84h-84v-84h84zM298 468.667v86h-84v-86h84zM298 298.667v86h-84v-86h84zM298 128.667v84h-84v-84h84zM640 468.667h256v-426h-768v598h256v84l128 128 128-128v-256z" />
-<glyph unicode="&#xe7f3;" glyph-name="mood_bad" d="M512 340.667c100 0 184-60 218-148h-436c34 88 118 148 218 148zM362 468.667c-36 0-64 28-64 64s28 64 64 64 64-28 64-64-28-64-64-64zM662 468.667c-36 0-64 28-64 64s28 64 64 64 64-28 64-64-28-64-64-64zM512 84.667c188 0 342 154 342 342s-154 342-342 342-342-154-342-342 154-342 342-342zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426z" />
-<glyph unicode="&#xe7f4;" glyph-name="notifications" d="M768 256.667l86-86v-42h-684v42l86 86v212c0 132 70 240 192 270v30c0 36 28 64 64 64s64-28 64-64v-30c122-30 192-140 192-270v-212zM512 0.667c-48 0-86 38-86 84h172c0-46-40-84-86-84z" />
-<glyph unicode="&#xe7f5;" glyph-name="notifications_none" d="M682 212.667v256c0 106-64 192-170 192s-170-86-170-192v-256h340zM768 256.667l86-86v-42h-684v42l86 86v212c0 132 70 240 192 270v30c0 36 28 64 64 64s64-28 64-64v-30c122-30 192-140 192-270v-212zM512 0.667c-46 0-86 38-86 84h172c0-46-40-84-86-84z" />
-<glyph unicode="&#xe7f6;" glyph-name="notifications_off" d="M768 312.667l-382 402c10 4 20 10 30 14h2l12 6c6 2 12 2 18 4v30c0 36 28 64 64 64s64-28 64-64v-30c122-30 192-138 192-270v-156zM512 0.667c-48 0-86 36-86 84h172c0-48-38-84-86-84zM334 676.667c187.235-193.432 375.34-385.994 562-580l-54-54-86 86h-586v42l86 86v214c0 54 12 104 34 146l-120 118 54 56z" />
-<glyph unicode="&#xe7f7;" glyph-name="notifications_active" d="M512 0.667c-48 0-86 38-86 84h170c0-49.675-37.225-84-84-84zM768 468.667v-212l86-86v-42h-684v42l86 86v212c0 132 70 240 192 270v30c0 36 28 64 64 64s64-28 64-64v-30c122-30 192-140 192-270zM852 490.667c-6 114-64 212-150 274l60 60c102-78 170-198 176-334h-86zM324 764.667c-88-62-146-160-152-274h-86c6 136 74 256 176 334z" />
-<glyph unicode="&#xe7f8;" glyph-name="notifications_paused" d="M618 520.667v76h-212v-76h118l-118-146v-76h212v76h-118zM768 256.667l86-86v-42h-684v42l86 86v212c0 130 70 240 192 270v30c0 36 28 64 64 64s64-28 64-64v-30c122-30 192-140 192-270v-212zM512 0.667c-48 0-86 38-86 84h172c0-46-40-84-86-84z" />
-<glyph unicode="&#xe7f9;" glyph-name="pages" d="M810 810.667c46 0 86-40 86-86v-256h-214l44 172-172-44v214h256zM726 212.667l-44 172h214v-256c0-46-40-86-86-86h-256v214zM342 384.667l-44-172 172 44v-214h-256c-46 0-86 40-86 86v256h214zM128 724.667c0 46 40 86 86 86h256v-214l-172 44 44-172h-214v256z" />
-<glyph unicode="&#xe7fa;" glyph-name="party_mode" d="M512 212.667c118 0 214 96 214 214 0 14-2 28-4 42h-90c4-14 8-28 8-42 0-70-58-128-128-128h-170c40-52 100-86 170-86zM512 640.667c-118 0-214-96-214-214 0-14 2-28 4-42h90c-4 14-8 28-8 42 0 70 58 128 128 128h170c-40 52-100 86-170 86zM854 768.667c46 0 84-40 84-86v-512c0-46-38-86-84-86h-684c-46 0-84 40-84 86v512c0 46 38 86 84 86h136l78 84h256l78-84h136z" />
-<glyph unicode="&#xe7fb;" glyph-name="people" d="M682 384.667c100 0 300-50 300-150v-106h-256v106c0 64-34 112-84 148 14 2 28 2 40 2zM342 384.667c100 0 298-50 298-150v-106h-598v106c0 100 200 150 300 150zM342 468.667c-70 0-128 58-128 128s58 128 128 128 126-58 126-128-56-128-126-128zM682 468.667c-70 0-128 58-128 128s58 128 128 128 128-58 128-128-58-128-128-128z" />
-<glyph unicode="&#xe7fc;" glyph-name="people_outline" d="M704 660.667c-46 0-86-38-86-84s40-86 86-86 86 40 86 86-40 84-86 84zM704 426.667c-82 0-150 68-150 150s68 148 150 148 150-66 150-148-68-150-150-150zM320 660.667c-46 0-86-38-86-84s40-86 86-86 86 40 86 86-40 84-86 84zM320 426.667c-82 0-150 68-150 150s68 148 150 148 150-66 150-148-68-150-150-150zM918 192.667v52c0 24-110 76-214 76-46 0-90-12-128-24 14-16 22-32 22-52v-52h320zM534 192.667v52c0 24-110 76-214 76s-214-52-214-76v-52h428zM704 384.667c92 0 278-48 278-140v-116h-940v116c0 92 186 140 278 140 52 0 130-16 192-44 62 28 140 44 192 44z" />
-<glyph unicode="&#xe7fd;" glyph-name="person" d="M512 340.667c114 0 342-56 342-170v-86h-684v86c0 114 228 170 342 170zM512 426.667c-94 0-170 76-170 170s76 172 170 172 170-78 170-172-76-170-170-170z" />
-<glyph unicode="&#xe7fe;" glyph-name="person_add" d="M640 340.667c114 0 342-56 342-170v-86h-684v86c0 114 228 170 342 170zM256 512.667h128v-86h-128v-128h-86v128h-128v86h128v128h86v-128zM640 426.667c-94 0-170 76-170 170s76 172 170 172 170-78 170-172-76-170-170-170z" />
-<glyph unicode="&#xe7ff;" glyph-name="person_outline" d="M512 384.667c114 0 342-58 342-172v-128h-684v128c0 114 228 172 342 172zM512 768.667c94 0 170-78 170-172s-76-170-170-170-170 76-170 170 76 172 170 172zM512 302.667c-126 0-260-62-260-90v-46h520v46c0 28-134 90-260 90zM512 686.667c-50 0-90-40-90-90s40-88 90-88 90 38 90 88-40 90-90 90z" />
-<glyph unicode="&#xe800;" glyph-name="plus_one" d="M618 678.667l192 46v-554h-84v452l-108-22v78zM426 596.667v-170h172v-86h-172v-170h-84v170h-172v86h172v170h84z" />
-<glyph unicode="&#xe801;" glyph-name="poll" d="M726 212.667v172h-86v-172h86zM554 212.667v428h-84v-428h84zM384 212.667v300h-86v-300h86zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-46 0-86 40-86 86v596c0 46 40 86 86 86h596z" />
-<glyph unicode="&#xe80b;" glyph-name="public" d="M764 196.667c56 60 90 142 90 230 0 142-88 266-214 316v-18c0-46-40-84-86-84h-84v-86c0-24-20-42-44-42h-84v-86h256c24 0 42-18 42-42v-128h42c38 0 70-26 82-60zM470 88.667v82c-46 0-86 40-86 86v42l-204 204c-6-24-10-50-10-76 0-174 132-318 300-338zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426z" />
-<glyph unicode="&#xe80c;" glyph-name="school" d="M512 810.667l470-256v-342h-86v296l-384-210-470 256zM214 376.667l298-164 298 164v-172l-298-162-298 162v172z" />
-<glyph unicode="&#xe80d;" glyph-name="share" d="M768 252.667c68 0 124-56 124-124s-56-126-124-126-124 58-124 126c0 10 0 20 2 28l-302 176c-24-22-54-34-88-34-70 0-128 58-128 128s58 128 128 128c34 0 64-12 88-34l300 174c-2 10-4 20-4 30 0 70 58 128 128 128s128-58 128-128-58-128-128-128c-34 0-64 14-88 36l-300-176c2-10 4-20 4-30s-2-20-4-30l304-176c22 20 52 32 84 32z" />
-<glyph unicode="&#xe80e;" glyph-name="whatshot" d="M500 128.667c114 0 204 90 204 204 0 60-8 116-24 172-44-58-122-94-198-110s-120-62-120-132c0-74 62-134 138-134zM576 910.667c166-134 278-340 278-570 0-188-154-340-342-340s-342 152-342 340c0 144 52 278 138 380v-16c0-88 66-158 154-158s146 70 146 158c0 92-32 206-32 206z" />
-<glyph unicode="&#xe811;" glyph-name="sentiment_dissatisfied" d="M512 340.667c100 0 184-60 218-148h-70c-30 50-84 84-148 84s-118-34-148-84h-70c34 88 118 148 218 148zM512 84.667c188 0 342 154 342 342s-154 342-342 342-342-154-342-342 154-342 342-342zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426zM298 532.667c0 36 28 64 64 64s64-28 64-64-28-64-64-64-64 28-64 64zM598 532.667c0 36 28 64 64 64s64-28 64-64-28-64-64-64-64 28-64 64z" />
-<glyph unicode="&#xe812;" glyph-name="sentiment_neutral" d="M512 84.667c188 0 342 154 342 342s-154 342-342 342-342-154-342-342 154-342 342-342zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426zM298 532.667c0 36 28 64 64 64s64-28 64-64-28-64-64-64-64 28-64 64zM598 532.667c0 36 28 64 64 64s64-28 64-64-28-64-64-64-64 28-64 64zM384 340.667h256v-64h-256v64z" />
-<glyph unicode="&#xe813;" glyph-name="sentiment_satisfied" d="M512 256.667c64 0 118 34 148 84h70c-34-88-118-148-218-148s-184 60-218 148h70c30-50 84-84 148-84zM512 84.667c188 0 342 154 342 342s-154 342-342 342-342-154-342-342 154-342 342-342zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426zM298 532.667c0 36 28 64 64 64s64-28 64-64-28-64-64-64-64 28-64 64zM598 532.667c0 36 28 64 64 64s64-28 64-64-28-64-64-64-64 28-64 64z" />
-<glyph unicode="&#xe814;" glyph-name="sentiment_very_dissatisfied" d="M512 340.667c100 0 184-60 218-148h-436c34 88 118 148 218 148zM334 426.667l-46 46 46 44-46 46 46 44 44-44 46 44 46-44-46-46 46-44-46-46-46 46zM690 606.667l46-44-46-46 46-44-46-46-44 46-46-46-46 46 46 44-46 46 46 44 46-44zM512 84.667c188 0 342 154 342 342s-154 342-342 342-342-154-342-342 154-342 342-342zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426z" />
-<glyph unicode="&#xe815;" glyph-name="sentiment_very_satisfied" d="M512 192.667c-100 0-184 60-218 148h436c-34-88-118-148-218-148zM378 514.667l-44-46-46 46 90 90 92-90-46-46zM554 514.667l92 90 90-90-46-46-44 46-46-46zM512 84.667c188 0 342 154 342 342s-154 342-342 342-342-154-342-342 154-342 342-342zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426z" />
-<glyph unicode="&#xe834;" glyph-name="check_box" d="M426 212.667l384 384-60 62-324-324-152 152-60-60zM810 810.667c48 0 86-40 86-86v-596c0-46-38-86-86-86h-596c-48 0-86 40-86 86v596c0 46 38 86 86 86h596z" />
-<glyph unicode="&#xe835;" glyph-name="check_box_outline_blank" d="M810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-46 0-86 40-86 86v596c0 46 40 86 86 86h596zM810 724.667h-596v-596h596v596z" />
-<glyph unicode="&#xe836;" glyph-name="radio_button_unchecked" d="M512 84.667c188 0 342 154 342 342s-154 342-342 342-342-154-342-342 154-342 342-342zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426z" />
-<glyph unicode="&#xe837;" glyph-name="radio_button_checked" d="M512 84.667c188 0 342 154 342 342s-154 342-342 342-342-154-342-342 154-342 342-342zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426zM512 640.667c118 0 214-96 214-214s-96-214-214-214-214 96-214 214 96 214 214 214z" />
-<glyph unicode="&#xe838;" glyph-name="star" d="M512 202.667l-264-160 70 300-232 202 306 26 120 282 120-282 306-26-232-202 70-300z" />
-<glyph unicode="&#xe839;" glyph-name="star_half" d="M512 280.667l160-96-42 182 142 124-188 16-72 172v-398zM938 544.667l-232-202 70-300-264 160-264-160 70 300-232 202 306 26 120 282 120-282z" />
-<glyph unicode="&#xe83a;" glyph-name="star_border" d="M512 280.667l160-96-42 182 142 124-188 16-72 172-72-172-188-16 142-124-42-182zM938 544.667l-232-202 70-300-264 160-264-160 70 300-232 202 306 26 120 282 120-282z" />
-<glyph unicode="&#xe84d;" glyph-name="d_rotation" d="M512 938.667c268 0 488-206 510-468h-64c-14 160-114 294-254 360l-58-56-162 162zM706 434.667c0 69.871-27.338 114-94 114h-40v-246h38c51.287 0 80.544 27.904 92 68 4 14 4 30 4 48v16zM612 596.667c76.364 0 121.865-38.664 144-94 8-20 10-44 10-68v-16c0-52.811-15.142-91.142-42-118-26.824-26.824-61.104-44-114-44h-98v340h100zM414 430.667c30.607-12.243 56-36.493 56-78 0-16-4-28-10-40s-12-24-22-32c-18.756-15.005-47.096-24-80-24-62.192 0-108 31.488-108 94h54c0-30.904 23.204-50 54-50 35.74 0 56 17.079 56 54 0 37.687-24.79 54-62 54h-32v44h32c34.608 0 58 16.061 58 50 0 33.049-17.68 50-52 50-28.888 0-50-17.163-50-46h-56c0 29.787 15.103 49.103 30 64 19.854 15.883 41.797 26 76 26 51.295 0 80.772-19.544 98-54 6-12 8-24 8-40 0-36.376-24.671-59.335-50-72zM320 22.667l58 56 162-162-28-2c-268 0-488 208-510 470h64c16-160 114-296 254-362z" />
-<glyph unicode="&#xe84e;" glyph-name="accessibility" d="M896 554.667h-256v-554h-86v256h-84v-256h-86v554h-256v86h768v-86zM512 852.667c46 0 86-38 86-84s-40-86-86-86-86 40-86 86 40 84 86 84z" />
-<glyph unicode="&#xe84f;" glyph-name="account_balance" d="M490 896.667l406-214v-86h-810v86zM682 512.667h128v-300h-128v300zM86 0.667v128h810v-128h-810zM426 512.667h128v-300h-128v300zM170 512.667h128v-300h-128v300z" />
-<glyph unicode="&#xe850;" glyph-name="account_balance_wallet" d="M682 362.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM512 256.667v340h426v-340h-426zM896 170.667v-42c0-46-40-86-86-86h-596c-48 0-86 40-86 86v596c0 46 38 86 86 86h596c46 0 86-40 86-86v-42h-384c-48 0-86-40-86-86v-340c0-46 38-86 86-86h384z" />
-<glyph unicode="&#xe851;" glyph-name="account_box" d="M256 212.667v-42h512v42c0 86-170 132-256 132s-256-46-256-132zM640 554.667c0 70-58 128-128 128s-128-58-128-128 58-128 128-128 128 58 128 128zM128 724.667c0 46 38 86 86 86h596c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-48 0-86 40-86 86v596z" />
-<glyph unicode="&#xe853;" glyph-name="account_circle" d="M512 118.667c106 0 200 56 256 138-2 84-172 132-256 132-86 0-254-48-256-132 56-82 150-138 256-138zM512 724.667c-70 0-128-58-128-128s58-128 128-128 128 58 128 128-58 128-128 128zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426z" />
-<glyph unicode="&#xe854;" glyph-name="add_shopping_cart" d="M306 308.667c0-6 4-10 10-10h494v-86h-512c-46 0-84 40-84 86 0 14 4 28 10 40l58 106-154 324h-86v84h140c27.003-56.33 53.665-113.001 80-170 34.063-71.271 67.603-143.063 102-214h300c54.786 99.881 110.533 198.8 164 300l74-42-164-298c-14-26-42-44-74-44h-318l-38-70zM726 170.667c46 0 84-40 84-86s-38-84-84-84-86 38-86 84 40 86 86 86zM298 170.667c46 0 86-40 86-86s-40-84-86-84-84 38-84 84 38 86 84 86zM470 554.667v128h-128v86h128v128h84v-128h128v-86h-128v-128h-84z" />
-<glyph unicode="&#xe855;" glyph-name="alarm" d="M512 84.667c166 0 298 134 298 300s-132 298-298 298-298-132-298-298 132-300 298-300zM512 768.667c212 0 384-172 384-384s-172-384-384-384-384 172-384 384 172 384 384 384zM534 596.667v-224l170-100-32-52-202 120v256h64zM336 794.667l-196-164-54 64 196 164zM938 694.667l-54-66-196 166 54 64z" />
-<glyph unicode="&#xe856;" glyph-name="alarm_add" d="M554 554.667v-128h128v-86h-128v-128h-84v128h-128v86h128v128h84zM512 84.667c166 0 298 134 298 300s-132 298-298 298-298-132-298-298 132-300 298-300zM512 768.667c212 0 384-172 384-384s-172-384-384-384-384 172-384 384 172 384 384 384zM938 694.667l-54-66-196 166 54 64zM336 794.667l-196-164-54 64 196 164z" />
-<glyph unicode="&#xe857;" glyph-name="alarm_off" d="M342 798.667l-36-30-62 60 38 30zM702 154.667l-420 420c-42-52-68-118-68-190 0-166 132-300 298-300 72 0 138 28 190 70zM124 840.667c262.552-262.114 525.354-523.98 788-786l-54-54-94 94c-68-58-156-94-252-94-212 0-384 172-384 384 0 96 36 182 94 250l-34 34-48-40-60 62 48 38-58 58zM938 694.667l-54-66-196 166 54 64zM512 682.667c-36 0-70-6-102-18l-66 64c50 24 108 40 168 40 212 0 384-172 384-384 0-60-14-118-38-168l-66 64c12 32 18 68 18 104 0 166-132 298-298 298z" />
-<glyph unicode="&#xe858;" glyph-name="alarm_on" d="M450 318.667l210 212 46-46-256-256-136 136 44 44zM512 84.667c166 0 298 134 298 300s-132 298-298 298-298-132-298-298 132-300 298-300zM512 768.667c212 0 384-172 384-384s-172-384-384-384-384 172-384 384 172 384 384 384zM336 794.667l-196-164-54 64 196 164zM938 694.667l-54-66-196 166 54 64z" />
-<glyph unicode="&#xe859;" glyph-name="android" d="M640 724.667v44h-42v-44h42zM426 724.667v44h-42v-44h42zM662 846.667c64-46 106-122 106-206h-512c0 84 40 160 104 206l-56 56c-8 8-8 22 0 30s22 8 30 0l64-64c34 18 74 28 114 28s78-10 112-28l64 64c8 8 22 8 30 0s8-22 0-30zM874 596.667c36 0 64-28 64-64v-298c0-36-28-64-64-64s-64 28-64 64v298c0 36 28 64 64 64zM150 596.667c36 0 64-28 64-64v-298c0-36-28-64-64-64s-64 28-64 64v298c0 36 28 64 64 64zM256 170.667v426h512v-426c0-24-18-42-42-42h-44v-150c0-36-28-64-64-64s-64 28-64 64v150h-84v-150c0-36-28-64-64-64s-64 28-64 64v150h-44c-24 0-42 18-42 42z" />
-<glyph unicode="&#xe85a;" glyph-name="announcement" d="M554 298.667v86h-84v-86h84zM554 468.667v256h-84v-256h84zM854 852.667c46 0 84-38 84-84v-512c0-46-38-86-84-86h-598l-170-170v768c0 46 38 84 84 84h684z" />
-<glyph unicode="&#xe85b;" glyph-name="aspect_ratio" d="M896 126.667v600h-768v-600h768zM896 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-768c-46 0-86 40-86 86v596c0 46 40 86 86 86h768zM298 554.667v-128h-84v214h212v-86h-128zM810 426.667v-214h-212v86h128v128h84z" />
-<glyph unicode="&#xe85d;" glyph-name="assignment" d="M726 554.667v86h-428v-86h428zM726 384.667v84h-428v-84h428zM598 212.667v86h-300v-86h300zM512 810.667c-24 0-42-18-42-42s18-44 42-44 42 20 42 44-18 42-42 42zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-46 0-86 40-86 86v596c0 46 40 86 86 86h178c18 50 64 86 120 86s102-36 120-86h178z" />
-<glyph unicode="&#xe85e;" glyph-name="assignment_ind" d="M768 128.667v60c0 86-170 132-256 132s-256-46-256-132v-60h512zM512 640.667c-70 0-128-58-128-128s58-128 128-128 128 58 128 128-58 128-128 128zM512 810.667c-24 0-42-18-42-42s18-44 42-44 42 20 42 44-18 42-42 42zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-46 0-86 40-86 86v596c0 46 40 86 86 86h178c18 50 64 86 120 86s102-36 120-86h178z" />
-<glyph unicode="&#xe85f;" glyph-name="assignment_late" d="M512 724.667c24 0 42 20 42 44s-18 42-42 42-42-18-42-42 18-44 42-44zM554 340.667v256h-84v-256h84zM554 170.667v86h-84v-86h84zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-46 0-86 40-86 86v596c0 46 40 86 86 86h178c18 50 64 86 120 86s102-36 120-86h178z" />
-<glyph unicode="&#xe860;" glyph-name="assignment_return" d="M682 298.667v170h-170v128l-214-212 214-214v128h170zM512 810.667c-24 0-42-18-42-42s18-44 42-44 42 20 42 44-18 42-42 42zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-46 0-86 40-86 86v596c0 46 40 86 86 86h178c18 50 64 86 120 86s102-36 120-86h178z" />
-<glyph unicode="&#xe861;" glyph-name="assignment_returned" d="M512 170.667l214 214h-128v170h-172v-170h-128zM512 810.667c-24 0-42-18-42-42s18-44 42-44 42 20 42 44-18 42-42 42zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-46 0-86 40-86 86v596c0 46 40 86 86 86h178c18 50 64 86 120 86s102-36 120-86h178z" />
-<glyph unicode="&#xe862;" glyph-name="assignment_turned_in" d="M426 212.667l342 342-60 60-282-280-110 110-60-60zM512 810.667c-24 0-42-18-42-42s18-44 42-44 42 20 42 44-18 42-42 42zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-46 0-86 40-86 86v596c0 46 40 86 86 86h178c18 50 64 86 120 86s102-36 120-86h178z" />
-<glyph unicode="&#xe863;" glyph-name="autorenew" d="M800 608.667c34-52 54-116 54-182 0-188-154-342-342-342v-128l-170 172 170 170v-128c142 0 256 114 256 256 0 44-12 84-30 120zM512 682.667c-142 0-256-114-256-256 0-44 10-84 30-120l-62-62c-34 52-54 116-54 182 0 188 154 342 342 342v128l170-172-170-170v128z" />
-<glyph unicode="&#xe868;" glyph-name="bug_report" d="M598 426.667v86h-172v-86h172zM598 256.667v84h-172v-84h172zM854 596.667v-84h-90c2-14 4-30 4-44v-42h86v-86h-86v-42c0-14-2-28-4-42h90v-86h-120c-44-76-128-128-222-128s-178 52-222 128h-120v86h90c-2 14-4 28-4 42v42h-86v86h86v42c0 14 2 30 4 44h-90v84h120c20 34 46 62 78 84l-70 70 60 60 94-92c20 4 40 6 60 6s40-2 60-6l94 92 60-60-70-70c32-22 58-50 78-84h120z" />
-<glyph unicode="&#xe869;" glyph-name="build" d="M968 128.667c18-12 18-42-4-60l-98-98c-18-18-42-18-60 0l-388 388c-98-38-212-18-294 64-86 86-108 214-56 316l188-184 128 128-184 184c102 46 230 30 316-56 82-82 102-196 64-294z" />
-<glyph unicode="&#xe86a;" glyph-name="cached" d="M256 426.667h128l-170-170-172 170h128c0 188 154 342 342 342 66 0 130-20 182-54l-62-62c-36 20-76 30-120 30-142 0-256-114-256-256zM810 596.667l172-170h-128c0-188-154-342-342-342-66 0-130 20-182 54l62 62c36-20 76-30 120-30 142 0 256 114 256 256h-128z" />
-<glyph unicode="&#xe86b;" glyph-name="change_history" d="M512 768.667l426-684h-852zM512 606.667l-272-436h544z" />
-<glyph unicode="&#xe86c;" glyph-name="check_circle" d="M426 212.667l384 384-60 62-324-324-152 152-60-60zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426z" />
-<glyph unicode="&#xe86d;" glyph-name="chrome_reader_mode" d="M896 128.667v554h-384v-554h384zM896 768.667c46 0 86-40 86-86v-554c0-46-40-86-86-86h-768c-46 0-86 40-86 86v554c0 46 40 86 86 86h768zM554 320.667h300v-64h-300v64zM554 532.667h300v-64h-300v64zM554 426.667h300v-64h-300v64z" />
-<glyph unicode="&#xe86e;" glyph-name="class" d="M256 768.667v-342l106 64 108-64v342h-214zM768 852.667c46 0 86-38 86-84v-684c0-46-40-84-86-84h-512c-46 0-86 38-86 84v684c0 46 40 84 86 84h512z" />
-<glyph unicode="&#xe86f;" glyph-name="code" d="M622 230.667l198 196-198 196 60 60 256-256-256-256zM402 230.667l-60-60-256 256 256 256 60-60-198-196z" />
-<glyph unicode="&#xe871;" glyph-name="dashboard" d="M554 810.667h342v-256h-342v256zM554 42.667v426h342v-426h-342zM128 42.667v256h342v-256h-342zM128 384.667v426h342v-426h-342z" />
-<glyph unicode="&#xe872;" glyph-name="delete" d="M810 768.667v-86h-596v86h148l44 42h212l44-42h148zM256 128.667v512h512v-512c0-46-40-86-86-86h-340c-46 0-86 40-86 86z" />
-<glyph unicode="&#xe873;" glyph-name="description" d="M554 554.667h236l-236 234v-234zM682 340.667v86h-340v-86h340zM682 170.667v86h-340v-86h340zM598 852.667l256-256v-512c0-46-40-84-86-84h-512c-46 0-86 38-86 84l2 684c0 46 38 84 84 84h342z" />
-<glyph unicode="&#xe875;" glyph-name="dns" d="M298 554.667c46 0 86 40 86 86s-40 84-86 84-84-38-84-84 38-86 84-86zM854 810.667c24 0 42-18 42-42v-256c0-24-18-44-42-44h-684c-24 0-42 20-42 44v256c0 24 18 42 42 42h684zM298 128.667c46 0 86 38 86 84s-40 86-86 86-84-40-84-86 38-84 84-84zM854 384.667c24 0 42-20 42-44v-256c0-24-18-42-42-42h-684c-24 0-42 18-42 42v256c0 24 18 44 42 44h684z" />
-<glyph unicode="&#xe876;" glyph-name="done" d="M384 246.667l452 454 60-60-512-512-238 238 58 60z" />
-<glyph unicode="&#xe877;" glyph-name="done_all" d="M18 366.667l60 60 238-238-60-60zM948 700.667l62-60-512-512-240 238 62 60 178-178zM768 640.667l-270-272-60 60 270 272z" />
-<glyph unicode="&#xe879;" glyph-name="exit_to_app" d="M810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-48 0-86 40-86 86v170h86v-170h596v596h-596v-170h-86v170c0 46 38 86 86 86h596zM430 272.667l110 112h-412v84h412l-110 112 60 60 214-214-214-214z" />
-<glyph unicode="&#xe87a;" glyph-name="explore" d="M606 332.667l162 350-350-162-162-350zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426zM512 472.667c26 0 46-20 46-46s-20-46-46-46-46 20-46 46 20 46 46 46z" />
-<glyph unicode="&#xe87b;" glyph-name="extension" d="M874 468.667c58 0 108-48 108-106s-50-106-108-106h-64v-172c0-46-38-84-84-84h-162v64c0 64-52 114-116 114s-116-50-116-114v-64h-162c-46 0-84 38-84 84v162h64c64 0 114 52 114 116s-50 116-114 116h-64v162c0 46 38 84 84 84h172v64c0 58 48 108 106 108s106-50 106-108v-64h172c46 0 84-38 84-84v-172h64z" />
-<glyph unicode="&#xe87c;" glyph-name="face" d="M512 84.667c188 0 342 154 342 342 0 34-6 66-14 96-30-8-62-10-96-10-144 0-270 70-348 180-42-102-124-186-224-230-2-12-2-24-2-36 0-188 154-342 342-342zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426zM640 436.667c30 0 54-22 54-52s-24-54-54-54-54 24-54 54 24 52 54 52zM384 436.667c30 0 54-22 54-52s-24-54-54-54-54 24-54 54 24 52 54 52z" />
-<glyph unicode="&#xe87d;" glyph-name="favorite" d="M512 28.667l-62 56c-220 200-364 330-364 492 0 132 102 234 234 234 74 0 146-36 192-90 46 54 118 90 192 90 132 0 234-102 234-234 0-162-144-294-364-494z" />
-<glyph unicode="&#xe87e;" glyph-name="favorite_border" d="M516 146.667c204 184 338 306 338 430 0 86-64 148-150 148-66 0-130-42-152-100h-80c-22 58-86 100-152 100-86 0-150-62-150-148 0-124 134-246 338-430l4-4zM704 810.667c132 0 234-102 234-234 0-162-144-292-364-492l-62-56-62 54c-220 200-364 332-364 494 0 132 102 234 234 234 74 0 146-36 192-90 46 54 118 90 192 90z" />
-<glyph unicode="&#xe880;" glyph-name="find_in_page" d="M384 384.667c0 70 58 128 128 128s128-58 128-128-58-128-128-128-128 58-128 128zM854 102.667l-164 164c22 34 36 74 36 118 0 118-96 212-214 212s-214-94-214-212 96-214 214-214c44 0 84 14 118 36l188-190c-14-10-30-16-50-16h-512c-46 0-86 38-86 84l2 684c0 46 38 84 84 84h342l256-256v-494z" />
-<glyph unicode="&#xe881;" glyph-name="find_replace" d="M710 292.667l206-208-62-62-208 206c-50-36-110-58-176-58-82 0-158 34-212 88l-88-88v256h256l-108-108c38-38 94-62 152-62 104 0 188 72 208 170h86c-6-50-26-96-54-134zM470 682.667c-104 0-190-72-210-170h-86c20 144 146 256 296 256 82 0 156-34 210-88l88 88v-256h-256l108 108c-38 38-92 62-150 62z" />
-<glyph unicode="&#xe882;" glyph-name="flip_to_back" d="M640 212.667v86h86v-86h-86zM640 724.667v86h86v-86h-86zM214 640.667v-512h512v-86h-512c-48 0-86 40-86 86v512h86zM810 212.667v86h86c0-46-40-86-86-86zM810 554.667v86h86v-86h-86zM810 384.667v84h86v-84h-86zM384 212.667c-48 0-86 40-86 86h86v-86zM554 810.667v-86h-84v86h84zM810 810.667c46 0 86-40 86-86h-86v86zM554 298.667v-86h-84v86h84zM384 810.667v-86h-86c0 46 38 86 86 86zM384 468.667v-84h-86v84h86zM384 640.667v-86h-86v86h86z" />
-<glyph unicode="&#xe883;" glyph-name="flip_to_front" d="M298 42.667v86h86v-86h-86zM470 42.667v86h84v-86h-84zM810 298.667v426h-426v-426h426zM810 810.667c46 0 86-40 86-86v-426c0-46-40-86-86-86h-426c-48 0-86 40-86 86v426c0 46 38 86 86 86h426zM640 42.667v86h86v-86h-86zM128 554.667v86h86v-86h-86zM214 42.667c-48 0-86 40-86 86h86v-86zM128 212.667v86h86v-86h-86zM128 384.667v84h86v-84h-86z" />
-<glyph unicode="&#xe884;" glyph-name="get_app" d="M214 170.667h596v-86h-596v86zM810 554.667l-298-298-298 298h170v256h256v-256h170z" />
-<glyph unicode="&#xe886;" glyph-name="group_work" d="M682 192.667c58 0 108 48 108 106s-50 106-108 106-106-48-106-106 48-106 106-106zM406 596.667c0-58 48-106 106-106s106 48 106 106-48 108-106 108-106-50-106-108zM342 192.667c58 0 106 48 106 106s-48 106-106 106-108-48-108-106 50-106 108-106zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426z" />
-<glyph unicode="&#xe887;" glyph-name="help" d="M642 458.667c24 24 40 58 40 96 0 94-76 170-170 170s-170-76-170-170h84c0 46 40 86 86 86s86-40 86-86c0-24-10-44-26-60l-52-54c-30-32-50-74-50-120v-22h84c0 64 20 88 50 120zM554 128.667v84h-84v-84h84zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426z" />
-<glyph unicode="&#xe888;" glyph-name="highlight_off" d="M512 84.667c188 0 342 154 342 342s-154 342-342 342-342-154-342-342 154-342 342-342zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426zM622 596.667l60-60-110-110 110-110-60-60-110 110-110-110-60 60 110 110-110 110 60 60 110-110z" />
-<glyph unicode="&#xe88a;" glyph-name="home" d="M426 84.667h-212v342h-128l426 384 426-384h-128v-342h-212v256h-172v-256z" />
-<glyph unicode="&#xe88b;" glyph-name="hourglass_empty" d="M512 448.667l170 170v150h-340v-150zM682 234.667l-170 170-170-170v-150h340v150zM256 852.667h512v-256l-170-170 170-170v-256h-512v256l170 170-170 170v256z" />
-<glyph unicode="&#xe88c;" glyph-name="hourglass_full" d="M256 852.667h512v-256l-170-170 170-170v-256h-512v256l170 170-170 170v256z" />
-<glyph unicode="&#xe88e;" glyph-name="info" d="M554 554.667v86h-84v-86h84zM554 212.667v256h-84v-256h84zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426z" />
-<glyph unicode="&#xe88f;" glyph-name="info_outline" d="M470 554.667v86h84v-86h-84zM512 84.667c188 0 342 154 342 342s-154 342-342 342-342-154-342-342 154-342 342-342zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426zM470 212.667v256h84v-256h-84z" />
-<glyph unicode="&#xe890;" glyph-name="input" d="M470 256.667v128h-428v84h428v128l170-170zM896 810.667c46 0 86-38 86-86v-598c0-46-40-84-86-84h-768c-46 0-86 38-86 84v172h86v-172h768v600h-768v-172h-86v170c0 46 40 86 86 86h768z" />
-<glyph unicode="&#xe891;" glyph-name="invert_colors" d="M512 102.667v618l-180-180c-48-48-76-114-76-182 0-137.583 118.4-256 256-256zM754 600.667c134-134 134-348 0-482-66-66-154-100-242-100s-176 34-242 100c-134 134-134 348 0 482l242 242z" />
-<glyph unicode="&#xe892;" glyph-name="label" d="M752 688.667l186-262-186-262c-16-22-42-36-70-36h-468c-46 0-86 38-86 84v428c0 46 40 84 86 84h468c28 0 54-14 70-36z" />
-<glyph unicode="&#xe893;" glyph-name="label_outline" d="M682 212.667l152 214-152 214h-468v-428h468zM752 688.667l186-262-186-262c-16-22-42-36-70-36h-468c-46 0-86 38-86 84v428c0 46 40 84 86 84h468c28 0 54-14 70-36z" />
-<glyph unicode="&#xe894;" glyph-name="language" d="M698 340.667h144c6 28 12 56 12 86s-6 58-12 86h-144c4-28 6-56 6-86s-2-58-6-86zM622 104.667c78 26 146 82 186 152h-126c-14-54-34-104-60-152zM612 340.667c4 28 6 56 6 86s-2 58-6 86h-200c-4-28-6-56-6-86s2-58 6-86h200zM512 86.667c36 52 64 108 82 170h-164c18-62 46-118 82-170zM342 596.667c14 54 34 104 60 152-78-26-146-82-186-152h126zM216 256.667c40-70 108-126 186-152-26 48-46 98-60 152h-126zM182 340.667h144c-4 28-6 56-6 86s2 58 6 86h-144c-6-28-12-56-12-86s6-58 12-86zM512 766.667c-36-52-64-108-82-170h164c-18 62-46 118-82 170zM808 596.667c-40 70-108 126-186 152 26-48 46-98 60-152h126zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426z" />
-<glyph unicode="&#xe896;" glyph-name="list" d="M298 640.667h598v-86h-598v86zM298 212.667v86h598v-86h-598zM298 384.667v84h598v-84h-598zM128 554.667v86h86v-86h-86zM128 212.667v86h86v-86h-86zM128 384.667v84h86v-84h-86z" />
-<glyph unicode="&#xe897;" glyph-name="lock" d="M644 596.667v86c0 72-60 132-132 132s-132-60-132-132v-86h264zM512 212.667c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM768 596.667c46 0 86-38 86-84v-428c0-46-40-84-86-84h-512c-46 0-86 38-86 84v428c0 46 40 84 86 84h42v86c0 118 96 214 214 214s214-96 214-214v-86h42z" />
-<glyph unicode="&#xe898;" glyph-name="lock_open" d="M768 84.667v428h-512v-428h512zM768 596.667c46 0 86-38 86-84v-428c0-46-40-84-86-84h-512c-46 0-86 38-86 84v428c0 46 40 84 86 84h388v86c0 72-60 132-132 132s-132-60-132-132h-82c0 118 96 214 214 214s214-96 214-214v-86h42zM512 212.667c-46 0-86 40-86 86s40 86 86 86 86-40 86-86-40-86-86-86z" />
-<glyph unicode="&#xe899;" glyph-name="lock_outline" d="M768 84.667v428h-512v-428h512zM380 682.667v-86h264v86c0 72-60 132-132 132s-132-60-132-132zM768 596.667c46 0 86-38 86-84v-428c0-46-40-84-86-84h-512c-46 0-86 38-86 84v428c0 46 40 84 86 84h42v86c0 118 96 214 214 214s214-96 214-214v-86h42zM512 212.667c-46 0-86 40-86 86s40 86 86 86 86-40 86-86-40-86-86-86z" />
-<glyph unicode="&#xe89a;" glyph-name="loyalty" d="M736 286.667c20 20 32 46 32 76 0 58-48 106-106 106-30 0-56-10-76-30l-32-32-30 32c-20 20-46 30-76 30-58 0-106-48-106-106 0-30 10-56 30-76l182-182zM234 640.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM914 444.667c16-16 24-36 24-60s-8-44-24-60l-300-300c-16-16-36-24-60-24s-44 8-60 24l-384 384c-16 16-24 36-24 60v300c0 46 38 84 84 84h300c24 0 44-8 60-24z" />
-<glyph unicode="&#xe89b;" glyph-name="markunread_mailbox" d="M854 682.667c46 0 84-40 84-86v-512c0-46-38-84-84-84h-684c-46 0-84 38-84 84v512c0 46 38 86 84 86h86v256h342v-170h-256v-342h84v256h428z" />
-<glyph unicode="&#xe89c;" glyph-name="note_add" d="M554 554.667h236l-236 234v-234zM682 256.667v84h-128v128h-84v-128h-128v-84h128v-128h84v128h128zM598 852.667l256-256v-512c0-46-40-84-86-84h-512c-46 0-86 38-86 84l2 684c0 46 38 84 84 84h342z" />
-<glyph unicode="&#xe89d;" glyph-name="open_in_browser" d="M512 512.667l170-172h-128v-256h-84v256h-128zM810 768.667c48 0 86-40 86-86v-512c0-46-40-86-86-86h-170v86h170v426h-596v-426h170v-86h-170c-48 0-86 40-86 86v512c0 46 38 86 86 86h596z" />
-<glyph unicode="&#xe89e;" glyph-name="open_in_new" d="M598 810.667h298v-298h-86v152l-418-418-60 60 418 418h-152v86zM810 128.667v298h86v-298c0-46-40-86-86-86h-596c-48 0-86 40-86 86v596c0 46 38 86 86 86h298v-86h-298v-596h596z" />
-<glyph unicode="&#xe89f;" glyph-name="open_with" d="M598 298.667v-128h128l-214-214-214 214h128v128h172zM982 426.667l-214-214v128h-128v172h128v128zM384 512.667v-172h-128v-128l-214 214 214 214v-128h128zM426 554.667v128h-128l214 214 214-214h-128v-128h-172z" />
-<glyph unicode="&#xe8a0;" glyph-name="pageview" d="M716 162.667l60 60-124 124c18 30 30 64 30 102 0 106-86 192-192 192s-192-86-192-192 86-192 192-192c38 0 72 12 102 30zM854 768.667c46 0 84-40 84-86v-512c0-46-38-86-84-86h-684c-46 0-84 40-84 86v512c0 46 38 86 84 86h684zM490 554.667c58 0 108-48 108-106s-50-108-108-108-106 50-106 108 48 106 106 106z" />
-<glyph unicode="&#xe8a1;" glyph-name="payment" d="M854 596.667v86h-684v-86h684zM854 170.667v256h-684v-256h684zM854 768.667c48 0 84-38 84-86v-512c0-48-36-86-84-86h-684c-48 0-84 38-84 86v512c0 48 36 86 84 86h684z" />
-<glyph unicode="&#xe8a2;" glyph-name="perm_camera_mic" d="M598 384.667v170c0 46-40 86-86 86s-86-40-86-86v-170c0-46 40-86 86-86s86 40 86 86zM854 724.667c46 0 84-38 84-84v-512c0-46-38-86-84-86h-300v90c120 20 214 126 214 252h-86c0-94-76-172-170-172s-170 78-170 172h-86c0-126 94-232 214-252v-90h-300c-46 0-84 40-84 86v512c0 46 38 84 84 84h136l78 86h256l78-86h136z" />
-<glyph unicode="&#xe8a3;" glyph-name="perm_contact_calendar" d="M768 170.667v42c0 86-170 132-256 132s-256-46-256-132v-42h512zM512 682.667c-70 0-128-58-128-128s58-128 128-128 128 58 128 128-58 128-128 128zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-48 0-86 40-86 86v596c0 46 38 86 86 86h42v86h86v-86h340v86h86v-86h42z" />
-<glyph unicode="&#xe8a4;" glyph-name="perm_data_setting" d="M810 64.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM968 106.667l46-34c4-4 4-10 2-14l-42-74c-2-4-10-8-14-6l-52 22c-10-8-24-14-36-20l-8-58c0-6-6-8-12-8h-84c-6 0-12 2-12 8l-8 58c-14 6-24 12-36 20l-52-22c-6-2-12 2-14 6l-42 74c-2 4-2 10 2 14l46 34c0 6-2 14-2 22s2 14 2 20l-46 36c-4 4-4 10-2 14l42 74c2 4 10 6 14 4l52-22c12 8 24 16 36 22l8 56c0 6 6 8 12 8h84c6 0 12-2 12-8l8-56c14-6 24-14 36-22l52 22c6 2 12 0 14-4l42-74c2-4 2-10-2-14l-46-36c2-6 2-12 2-20s-2-16-2-22zM810 448.667c-176 0-320-144-320-320 0-14 2-30 4-44h-494l854 854-2-494c-14 2-28 4-42 4z" />
-<glyph unicode="&#xe8a5;" glyph-name="perm_device_information" d="M726 128.667v596h-428v-596h428zM726 894.667c46 0 84-38 84-84v-768c0-46-38-86-84-86h-428c-46 0-84 40-84 86v768c0 46 38 86 84 86zM554 468.667v-256h-84v256h84zM554 640.667v-86h-84v86h84z" />
-<glyph unicode="&#xe8a7;" glyph-name="perm_media" d="M298 298.667h598l-150 192-106-128-150 192zM938 768.667c46 0 86-40 86-86v-426c0-46-40-86-86-86h-682c-46 0-86 40-86 86l2 512c0 46 38 84 84 84h256l86-84h340zM86 682.667v-598h768v-84h-768c-46 0-86 38-86 84v598h86z" />
-<glyph unicode="&#xe8a8;" glyph-name="perm_phone_msg" d="M512 810.667h384v-298h-256l-128-128v426zM854 276.667c24 0 42-18 42-42v-150c0-24-18-42-42-42-400 0-726 326-726 726 0 24 18 42 42 42h150c24 0 42-18 42-42 0-54 8-104 24-152 4-14 2-32-10-44l-94-94c62-120 162-220 282-282l94 94c12 12 30 14 44 10 48-16 98-24 152-24z" />
-<glyph unicode="&#xe8a9;" glyph-name="perm_scan_wifi" d="M470 596.667h84v86h-84v-86zM554 256.667v256h-84v-256h84zM512 810.667c216 0 378-80 512-182l-512-628-512 630c134 102 296 180 512 180z" />
-<glyph unicode="&#xe8aa;" glyph-name="picture_in_picture" d="M896 126.667v600h-768v-600h768zM896 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-768c-46 0-86 40-86 86v596c0 46 40 86 86 86h768zM810 640.667v-256h-340v256h340z" />
-<glyph unicode="&#xe8ab;" glyph-name="polymer" d="M810 768.667l192-342-192-342h-170l192 342-112 198-336-540h-170l-192 342 192 342h170l-192-342 112-198 336 540h170z" />
-<glyph unicode="&#xe8ac;" glyph-name="power_settings_new" d="M760 718.667c82-70 136-176 136-292 0-212-172-384-384-384s-384 172-384 384c0 116 54 222 136 292l60-60c-66-54-110-138-110-232 0-166 132-298 298-298s298 132 298 298c0 94-42 176-110 230zM554 810.667v-426h-84v426h84z" />
-<glyph unicode="&#xe8ad;" glyph-name="print" d="M768 810.667v-170h-512v170h512zM810 426.667c24 0 44 18 44 42s-20 44-44 44-42-20-42-44 18-42 42-42zM682 128.667v212h-340v-212h340zM810 596.667c70 0 128-58 128-128v-256h-170v-170h-512v170h-170v256c0 70 58 128 128 128h596z" />
-<glyph unicode="&#xe8af;" glyph-name="question_answer" d="M726 426.667c0-24-20-42-44-42h-426l-170-172v598c0 24 18 42 42 42h554c24 0 44-18 44-42v-384zM896 682.667c24 0 42-18 42-42v-640l-170 170h-470c-24 0-42 18-42 42v86h554v384h86z" />
-<glyph unicode="&#xe8b0;" glyph-name="receipt" d="M128 0.667v852l64-64 64 64 64-64 64 64 64-64 64 64 64-64 64 64 64-64 64 64 64-64 64 64v-852l-64 64-64-64-64 64-64-64-64 64-64-64-64 64-64-64-64 64-64-64-64 64zM768 554.667v86h-512v-86h512zM768 384.667v84h-512v-84h512zM768 212.667v86h-512v-86h512z" />
-<glyph unicode="&#xe8b1;" glyph-name="redeem" d="M854 340.667v256h-218l90-120-70-50c-48.076 65.258-96.637 130.029-144 196-47.366-65.967-95.923-130.744-144-196l-70 50 90 120h-218v-256h684zM854 128.667v84h-684v-84h684zM384 768.667c-24 0-42-20-42-44s18-42 42-42 42 18 42 42-18 44-42 44zM640 768.667c-24 0-42-20-42-44s18-42 42-42 42 18 42 42-18 44-42 44zM854 682.667c48 0 84-38 84-86v-468c0-48-36-86-84-86h-684c-48 0-84 38-84 86v468c0 48 36 86 84 86h94c-4 14-8 28-8 42 0 70 58 128 128 128 44 0 82-22 106-56l22-30 22 30c24 34 62 56 106 56 70 0 128-58 128-128 0-14-4-28-8-42h94z" />
-<glyph unicode="&#xe8b3;" glyph-name="restore" d="M512 596.667h64v-180l150-90-32-52-182 110v212zM554 810.667c212 0 384-172 384-384s-172-384-384-384c-106 0-200 42-270 112l60 62c54-54 128-88 210-88 166 0 300 132 300 298s-134 298-300 298-298-132-298-298h128l-172-172-4 6-166 166h128c0 212 172 384 384 384z" />
-<glyph unicode="&#xe8b4;" glyph-name="room" d="M512 448.667c58 0 106 48 106 106s-48 106-106 106-106-48-106-106 48-106 106-106zM512 852.667c166 0 298-132 298-298 0-224-298-554-298-554s-298 330-298 554c0 166 132 298 298 298z" />
-<glyph unicode="&#xe8b5;" glyph-name="schedule" d="M534 640.667v-224l192-114-32-54-224 136v256h64zM512 84.667c188 0 342 154 342 342s-154 342-342 342-342-154-342-342 154-342 342-342zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426z" />
-<glyph unicode="&#xe8b6;" glyph-name="search" d="M406 340.667c106 0 192 86 192 192s-86 192-192 192-192-86-192-192 86-192 192-192zM662 340.667l212-212-64-64-212 212v34l-12 12c-48-42-112-66-180-66-154 0-278 122-278 276s124 278 278 278 276-124 276-278c0-68-24-132-66-180l12-12h34z" />
-<glyph unicode="&#xe8b8;" glyph-name="settings" d="M512 276.667c82 0 150 68 150 150s-68 150-150 150-150-68-150-150 68-150 150-150zM830 384.667l90-70c8-6 10-18 4-28l-86-148c-6-10-16-12-26-8l-106 42c-22-16-46-32-72-42l-16-112c-2-10-10-18-20-18h-172c-10 0-18 8-20 18l-16 112c-26 10-50 24-72 42l-106-42c-10-4-20-2-26 8l-86 148c-6 10-4 22 4 28l90 70c-2 14-2 28-2 42s0 28 2 42l-90 70c-8 6-10 18-4 28l86 148c6 10 16 12 26 8l106-42c22 16 46 32 72 42l16 112c2 10 10 18 20 18h172c10 0 18-8 20-18l16-112c26-10 50-24 72-42l106 42c10 4 20 2 26-8l86-148c6-10 4-22-4-28l-90-70c2-14 2-28 2-42s0-28-2-42z" />
-<glyph unicode="&#xe8b9;" glyph-name="settings_applications" d="M736 426.667c0 10 0 20-2 30l64 48c6 4 6 14 2 20l-60 104c-4 6-12 8-18 6l-74-30c-16 12-32 22-50 30l-12 78c-2 6-6 12-14 12h-120c-8 0-12-4-14-12l-12-80c-18-8-34-16-50-28l-74 30c-6 2-14-2-18-8l-60-102c-4-6-4-16 2-20l64-48c-2-10-2-20-2-30s0-20 2-30l-64-48c-6-4-6-14-2-20l60-104c4-6 12-8 18-6l74 30c16-12 32-22 50-30l12-78c2-6 6-12 14-12h120c8 0 12 4 14 12l12 80c18 8 34 16 50 28l74-30c6-2 14 2 18 8l60 102c4 6 4 16-2 20l-64 48c2 10 2 20 2 30zM810 810.667c48 0 86-40 86-86v-596c0-46-38-86-86-86h-596c-48 0-86 40-86 86v596c0 46 38 86 86 86h596zM512 512.667c46 0 86-40 86-86s-40-86-86-86-86 40-86 86 40 86 86 86z" />
-<glyph unicode="&#xe8ba;" glyph-name="settings_backup_restore" d="M512 810.667c212 0 384-172 384-384s-172-384-384-384c-88 0-170 30-234 80l60 60c50-34 110-54 174-54 166 0 298 132 298 298s-132 298-298 298-298-132-298-298h128l-172-170-170 170h128c0 212 172 384 384 384zM598 426.667c0-46-40-86-86-86s-86 40-86 86 40 86 86 86 86-40 86-86z" />
-<glyph unicode="&#xe8bb;" glyph-name="settings_bluetooth" d="M634 328.667l-80 80v-160zM554 774.667v-160l80 80zM756 694.667l-184-182 184-184-244-244h-42v324l-196-196-60 60 238 240-238 238 60 60 196-196v324h42zM640-85.333v86h86v-86h-86zM298-85.333v86h86v-86h-86zM470-85.333v86h84v-86h-84z" />
-<glyph unicode="&#xe8bc;" glyph-name="settings_cell" d="M682 256.667v512h-340v-512h340zM682 938.667c46 0 86-40 86-86v-682c0-46-40-86-86-86h-340c-46 0-86 40-86 86v682c0 46 40 86 86 86h340zM640-85.333v86h86v-86h-86zM470-85.333v86h84v-86h-84zM298-85.333v86h86v-86h-86z" />
-<glyph unicode="&#xe8bd;" glyph-name="settings_brightness" d="M512 554.667v-256c70 0 128 58 128 128s-58 128-128 128zM342 256.667v106l-64 64 64 64v106h106l64 64 64-64h106v-106l64-64-64-64v-106h-106l-64-64-64 64h-106zM896 126.667v600h-768v-600h768zM896 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-768c-46 0-86 40-86 86v596c0 46 40 86 86 86h768z" />
-<glyph unicode="&#xe8be;" glyph-name="settings_ethernet" d="M758 704.667l232-278-232-278-66 54 186 224-186 224zM470 384.667v84h84v-84h-84zM726 468.667v-84h-86v84h86zM298 384.667v84h86v-84h-86zM332 650.667l-186-224 186-224-66-54-232 278 232 278z" />
-<glyph unicode="&#xe8bf;" glyph-name="settings_input_antenna" d="M512 896.667c258 0 470-212 470-470h-86c0 212-172 384-384 384s-384-172-384-384h-86c0 258 212 470 470 470zM554 328.667v-140l146-146-60-60-128 128-128-128-60 60 146 146v140c-38 16-64 54-64 98 0 58 48 106 106 106s106-48 106-106c0-44-26-82-64-98zM512 724.667c166 0 298-132 298-298h-84c0 118-96 214-214 214s-214-96-214-214h-84c0 166 132 298 298 298z" />
-<glyph unicode="&#xe8c1;" glyph-name="settings_input_composite" d="M726 256.667v84h256v-84c0-56-36-102-86-120v-180h-86v180c-50 18-84 64-84 120zM554 852.667v-170h86v-256h-256v256h86v170c0 24 18 44 42 44s42-20 42-44zM896 682.667h86v-256h-256v256h84v170c0 24 20 44 44 44s42-20 42-44v-170zM42 256.667v84h256v-84c0-56-34-102-84-120v-180h-86v180c-50 18-86 64-86 120zM384 256.667v84h256v-84c0-56-36-102-86-120v-180h-84v180c-50 18-86 64-86 120zM214 852.667v-170h84v-256h-256v256h86v170c0 24 18 44 42 44s44-20 44-44z" />
-<glyph unicode="&#xe8c2;" glyph-name="settings_input_hdmi" d="M342 768.667v-128h84v84h44v-84h84v84h44v-84h84v128h-340zM768 640.667h42v-256l-128-256v-128h-340v128l-128 256v256h42v128c0 46 40 84 86 84h340c46 0 86-38 86-84v-128z" />
-<glyph unicode="&#xe8c3;" glyph-name="settings_input_svideo" d="M662 298.667c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM746 512.667c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM512 42.667c212 0 384 172 384 384s-172 384-384 384-384-172-384-384 172-384 384-384zM512 896.667c258 0 470-212 470-470s-212-470-470-470-470 212-470 470 212 470 470 470zM362 298.667c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM640 660.667c0-36-28-64-64-64h-128c-36 0-64 28-64 64s28 64 64 64h128c36 0 64-28 64-64zM342 448.667c0-36-28-64-64-64s-64 28-64 64 28 64 64 64 64-28 64-64z" />
-<glyph unicode="&#xe8c4;" glyph-name="settings_overscan" d="M896 126.667v600h-768v-600h768zM896 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-768c-46 0-86 40-86 86v596c0 46 40 86 86 86h768zM598 256.667l-86-108-86 108h172zM256 512.667v-172l-106 86zM768 512.667l106-86-106-86v172zM512 704.667l86-108h-172z" />
-<glyph unicode="&#xe8c5;" glyph-name="settings_phone" d="M810 554.667h86v-86h-86v86zM854 276.667c24 0 42-18 42-42v-150c0-24-18-42-42-42-400 0-726 326-726 726 0 24 18 42 42 42h150c24 0 42-18 42-42 0-54 8-104 24-152 4-14 2-32-10-44l-94-94c62-120 162-220 282-282l94 94c12 12 30 14 44 10 48-16 98-24 152-24zM726 554.667v-86h-86v86h86zM554 554.667v-86h-84v86h84z" />
-<glyph unicode="&#xe8c6;" glyph-name="settings_power" d="M640-85.333v86h86v-86h-86zM706 748.667c88-62 148-164 148-280 0-188-154-340-342-340s-342 152-342 340c0 116 60 218 148 280l60-60c-74-46-122-128-122-220 0-142 114-256 256-256s256 114 256 256c0 92-50 174-124 218zM554 852.667v-426h-84v426h84zM470-85.333v86h84v-86h-84zM298-85.333v86h86v-86h-86z" />
-<glyph unicode="&#xe8c7;" glyph-name="settings_remote" d="M512 938.667c130 0 248-52 332-138l-60-60c-70 70-166 112-272 112s-202-42-272-112l-60 60c84 84 202 138 332 138zM300 680.667c54 54 130 88 212 88s158-34 212-88l-60-60c-38 38-94 62-152 62s-114-24-152-62zM512 298.667c46 0 86 40 86 86s-40 84-86 84-86-38-86-84 40-86 86-86zM640 554.667c24 0 42-18 42-42v-512c0-24-18-44-42-44h-256c-24 0-42 20-42 44v512c0 24 18 42 42 42h256z" />
-<glyph unicode="&#xe8c8;" glyph-name="settings_voice" d="M810 512.667c0-146-116-268-256-288v-140h-84v140c-140 20-256 142-256 288h72c0-128 108-218 226-218s226 90 226 218h72zM640-85.333v86h86v-86h-86zM470-85.333v86h84v-86h-84zM512 384.667c-70 0-128 58-128 128v256c0 70 58 128 128 128s128-58 128-128v-256c0-70-58-128-128-128zM298-85.333v86h86v-86h-86z" />
-<glyph unicode="&#xe8c9;" glyph-name="shop" d="M384 170.667l320 214-320 170v-384zM426 768.667v-86h172v86h-172zM682 682.667h256v-554c0-48-36-86-84-86h-684c-48 0-84 38-84 86v554h256v86c0 48 36 84 84 84h172c48 0 84-36 84-84v-86z" />
-<glyph unicode="&#xe8ca;" glyph-name="shop_two" d="M512 298.667l234 170-234 128v-298zM512 810.667v-86h170v86h-170zM768 724.667h214v-468c0-48-38-86-86-86h-598c-48 0-84 38-84 86v468h212v86c0 48 38 86 86 86h170c48 0 86-38 86-86v-86zM128 554.667v-470h682c0-48-36-84-84-84h-598c-48 0-86 36-86 84v470h86z" />
-<glyph unicode="&#xe8cb;" glyph-name="shopping_basket" d="M512 212.667c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM384 554.667h256l-128 188zM734 554.667h204c24 0 44-18 44-42-34.625-138.041-73.705-271.628-110-408-10-36-42-62-82-62h-556c-40 0-72 26-82 62l-108 396c-2 4-2 8-2 12 0 24 20 42 44 42h204l186 280c8 12 22 18 36 18s28-6 36-18z" />
-<glyph unicode="&#xe8cc;" glyph-name="shopping_cart" d="M726 170.667c46 0 84-40 84-86s-38-84-84-84-86 38-86 84 40 86 86 86zM42 852.667h140l40-84h632c24 0 42-20 42-44 0-8-2-14-6-20l-152-276c-14-26-42-44-74-44h-318l-38-70-2-6c0-6 4-10 10-10h494v-86h-512c-46 0-84 40-84 86 0 14 4 28 10 40l58 106-154 324h-86v84zM298 170.667c46 0 86-40 86-86s-40-84-86-84-84 38-84 84 38 86 84 86z" />
-<glyph unicode="&#xe8cd;" glyph-name="speaker_notes" d="M768 596.667v86h-342v-86h342zM768 468.667v86h-342v-86h342zM640 340.667v86h-214v-86h214zM342 596.667v86h-86v-86h86zM342 468.667v86h-86v-86h86zM342 340.667v86h-86v-86h86zM854 852.667c46 0 84-38 84-84v-512c0-46-38-86-84-86h-598l-170-170v768c0 46 38 84 84 84h684z" />
-<glyph unicode="&#xe8ce;" glyph-name="spellcheck" d="M922 444.667l60-60-406-406-216 218 60 60 156-158zM274 468.667h176l-88 236zM532 256.667l-50 128h-240l-48-128h-90l218 554h80l218-554h-88z" />
-<glyph unicode="&#xe8d0;" glyph-name="stars" d="M692 170.667l-48 206 160 138-210 18-82 192-82-194-210-16 160-138-48-206 180 108zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426z" />
-<glyph unicode="&#xe8d2;" glyph-name="subject" d="M170 724.667h684v-84h-684v84zM170 298.667v86h684v-86h-684zM854 554.667v-86h-684v86h684zM598 212.667v-84h-428v84h428z" />
-<glyph unicode="&#xe8d3;" glyph-name="supervisor_account" d="M384 384.667c28 0 64-4 102-12-88-48-102-112-102-148v-96h-298v106c0 100 198 150 298 150zM704 340.667c78 0 234-38 234-116v-96h-468v96c0 78 156 116 234 116zM384 468.667c-70 0-128 58-128 128s58 128 128 128 128-58 128-128-58-128-128-128zM704 426.667c-58 0-106 48-106 106s48 108 106 108 106-50 106-108-48-106-106-106z" />
-<glyph unicode="&#xe8d4;" glyph-name="swap_horiz" d="M896 554.667l-170-170v128h-300v84h300v128zM298 468.667v-128h300v-84h-300v-128l-170 170z" />
-<glyph unicode="&#xe8d5;" glyph-name="swap_vert" d="M384 810.667l170-170h-128v-300h-84v300h-128zM682 212.667h128l-170-170-170 170h128v300h84v-300z" />
-<glyph unicode="&#xe8d6;" glyph-name="swap_vertical_circle" d="M746 298.667h-106v170h-86v-170h-106l150-150zM278 554.667h106v-170h86v170h106l-150 150zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426z" />
-<glyph unicode="&#xe8d7;" glyph-name="system_update_alt" d="M896 788.667c46 0 86-38 86-84v-598c0-46-40-86-86-86h-768c-46 0-86 40-86 86v598c0 46 40 84 86 84h256v-84h-256v-598h768v598h-256v84h256zM512 234.667l-170 170h128v384h84v-384h128z" />
-<glyph unicode="&#xe8d8;" glyph-name="tab" d="M896 128.667v426h-342v170h-426v-596h768zM896 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-768c-46 0-86 40-86 86v596c0 46 40 86 86 86h768z" />
-<glyph unicode="&#xe8d9;" glyph-name="tab_unselected" d="M726 42.667v86h84v-86h-84zM554 42.667v86h86v-86h-86zM896 384.667v84h86v-84h-86zM896 42.667v86h86c0-46-40-86-86-86zM214 724.667v86h84v-86h-84zM214 42.667v86h84v-86h-84zM384 724.667v86h86v-86h-86zM896 212.667v86h86v-86h-86zM896 810.667c46 0 86-40 86-86v-170h-428v256h342zM128 42.667c-46 0-86 40-86 86h86v-86zM42 212.667v86h86v-86h-86zM384 42.667v86h86v-86h-86zM42 724.667c0 46 40 86 86 86v-86h-86zM42 384.667v84h86v-84h-86zM42 554.667v86h86v-86h-86z" />
-<glyph unicode="&#xe8da;" glyph-name="theaters" d="M768 554.667v86h-86v-86h86zM768 384.667v84h-86v-84h86zM768 212.667v86h-86v-86h86zM342 554.667v86h-86v-86h86zM342 384.667v84h-86v-84h86zM342 212.667v86h-86v-86h86zM768 810.667h86v-768h-86v86h-86v-86h-340v86h-86v-86h-86v768h86v-86h86v86h340v-86h86v86z" />
-<glyph unicode="&#xe8db;" glyph-name="thumb_down" d="M810 810.667h172v-512h-172v512zM640 810.667c46 0 86-40 86-86v-426c0-24-10-44-26-60l-280-282-46 46c-12 12-18 26-18 44v14l42 196h-270c-46 0-86 38-86 84l2 4h-2v82c0 12 2 22 6 32l130 300c12 30 42 52 78 52h384z" />
-<glyph unicode="&#xe8dc;" glyph-name="thumb_up" d="M982 512.667l-2-4h2v-82c0-12-2-22-6-32l-130-300c-12-30-42-52-78-52h-384c-46 0-86 40-86 86v426c0 24 10 44 26 60l280 282 46-46c12-12 18-26 18-44v-14l-42-196h270c46 0 86-38 86-84zM42 42.667v512h172v-512h-172z" />
-<glyph unicode="&#xe8dd;" glyph-name="thumbs_up_down" d="M960 512.667c36 0 64-28 64-64v-278c0-18-6-34-18-46l-212-210-34 34c-8 8-14 20-14 34 9.903 48.764 20.016 97.317 30 146h-222c-24 0-42 18-42 42v54c0 8 2 14 4 22l98 226c10 22 32 40 58 40h288zM512 682.667v-54c0-8-2-14-4-22l-98-226c-10-22-32-40-58-40h-288c-36 0-64 28-64 64v278c0 18 6 34 18 46l212 210 34-34c8-8 14-20 14-34-9.903-48.764-20.016-97.317-30-146h222c24 0 42-18 42-42z" />
-<glyph unicode="&#xe8de;" glyph-name="toc" d="M810 384.667v84h86v-84h-86zM810 640.667h86v-86h-86v86zM810 212.667v86h86v-86h-86zM128 212.667v86h598v-86h-598zM128 384.667v84h598v-84h-598zM128 554.667v86h598v-86h-598z" />
-<glyph unicode="&#xe8df;" glyph-name="today" d="M298 512.667h214v-214h-214v214zM810 128.667v468h-596v-468h596zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-48 0-86 40-86 86v596c0 46 38 86 86 86h42v86h86v-86h340v86h86v-86h42z" />
-<glyph unicode="&#xe8e0;" glyph-name="toll" d="M128 426.667c0-112 70-208 170-242v-88c-148 38-256 170-256 330s108 292 256 330v-88c-100-34-170-130-170-242zM640 170.667c142 0 256 114 256 256s-114 256-256 256-256-114-256-256 114-256 256-256zM640 768.667c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342z" />
-<glyph unicode="&#xe8e1;" glyph-name="track_changes" d="M814 728.667c78-78 124-184 124-302 0-236-190-426-426-426s-426 190-426 426 190 426 426 426h42v-352c26-14 44-42 44-74 0-46-40-86-86-86s-86 40-86 86c0 32 18 60 44 74v90c-74-20-128-84-128-164 0-94 76-170 170-170s170 76 170 170c0 46-20 88-50 120l60 60c46-46 76-110 76-180 0-142-114-256-256-256s-256 114-256 256c0 126 92 232 214 252v86c-168-20-300-164-300-338 0-188 154-342 342-342s342 154 342 342c0 94-38 180-100 242z" />
-<glyph unicode="&#xe8e2;" glyph-name="translate" d="M678 212.667h138l-70 186zM790 512.667l192-512h-86l-48 128h-202l-48-128h-86l192 512h86zM550 296.667l-34-88-132 132-214-212-60 60 218 214c-54 60-96 124-128 194h86c26-50 58-98 98-142 62 68 108 146 136 228h-478v86h300v84h84v-84h300v-86h-126c-32-100-84-196-158-278l-2-2z" />
-<glyph unicode="&#xe8e3;" glyph-name="trending_down" d="M682 170.667l98 98-208 208-170-170-316 316 60 60 256-256 170 170 268-268 98 98v-256h-256z" />
-<glyph unicode="&#xe8e4;" glyph-name="trending_flat" d="M938 426.667l-170-170v128h-640v84h640v128z" />
-<glyph unicode="&#xe8e5;" glyph-name="trending_up" d="M682 682.667h256v-256l-98 98-268-268-170 170-256-256-60 60 316 316 170-170 208 208z" />
-<glyph unicode="&#xe8e6;" glyph-name="turned_in" d="M726 810.667c46 0 84-40 84-86v-682l-298 128-298-128v682c0 46 38 86 84 86h428z" />
-<glyph unicode="&#xe8e7;" glyph-name="turned_in_not" d="M726 170.667v554h-428v-554l214 94zM726 810.667c46 0 84-40 84-86v-682l-298 128-298-128v682c0 46 38 86 84 86h428z" />
-<glyph unicode="&#xe8e8;" glyph-name="verified_user" d="M426 212.667l342 342-60 60-282-280-110 110-60-60zM512 896.667l384-172v-256c0-236-164-458-384-512-220 54-384 276-384 512v256z" />
-<glyph unicode="&#xe8e9;" glyph-name="view_agenda" d="M854 810.667c24 0 42-18 42-42v-256c0-24-18-44-42-44h-726c-24 0-42 20-42 44v256c0 24 18 42 42 42h726zM854 384.667c24 0 42-20 42-44v-256c0-24-18-42-42-42h-726c-24 0-42 18-42 42v256c0 24 18 44 42 44h726z" />
-<glyph unicode="&#xe8ea;" glyph-name="view_array" d="M342 170.667v554h384v-554h-384zM768 724.667h128v-554h-128v554zM170 170.667v554h128v-554h-128z" />
-<glyph unicode="&#xe8eb;" glyph-name="view_carousel" d="M768 682.667h170v-470h-170v470zM86 212.667v470h170v-470h-170zM298 128.667v640h428v-640h-428z" />
-<glyph unicode="&#xe8ec;" glyph-name="view_column" d="M682 724.667h214v-554h-214v554zM170 170.667v554h214v-554h-214zM426 170.667v554h214v-554h-214z" />
-<glyph unicode="&#xe8ed;" glyph-name="view_day" d="M86 810.667h810v-128h-810v128zM854 596.667c24 0 42-18 42-42v-256c0-24-18-42-42-42h-726c-24 0-42 18-42 42v256c0 24 18 42 42 42h726zM86 42.667v128h810v-128h-810z" />
-<glyph unicode="&#xe8ee;" glyph-name="view_headline" d="M170 724.667h684v-84h-684v84zM170 468.667v86h684v-86h-684zM170 128.667v84h684v-84h-684zM170 298.667v86h684v-86h-684z" />
-<glyph unicode="&#xe8ef;" glyph-name="view_list" d="M384 724.667h512v-170h-512v170zM384 128.667v170h512v-170h-512zM384 340.667v172h512v-172h-512zM170 554.667v170h172v-170h-172zM170 128.667v170h172v-170h-172zM170 340.667v172h172v-172h-172z" />
-<glyph unicode="&#xe8f0;" glyph-name="view_module" d="M682 724.667h214v-256h-214v256zM426 468.667v256h214v-256h-214zM682 170.667v256h214v-256h-214zM426 170.667v256h214v-256h-214zM170 170.667v256h214v-256h-214zM170 468.667v256h214v-256h-214z" />
-<glyph unicode="&#xe8f1;" glyph-name="view_quilt" d="M426 724.667h470v-256h-470v256zM682 170.667v256h214v-256h-214zM170 170.667v554h214v-554h-214zM426 170.667v256h214v-256h-214z" />
-<glyph unicode="&#xe8f2;" glyph-name="view_stream" d="M170 724.667h726v-256h-726v256zM170 170.667v256h726v-256h-726z" />
-<glyph unicode="&#xe8f3;" glyph-name="view_week" d="M554 724.667c24 0 44-18 44-42v-512c0-24-20-42-44-42h-128c-24 0-42 18-42 42v512c0 24 18 42 42 42h128zM854 724.667c24 0 42-18 42-42v-512c0-24-18-42-42-42h-128c-24 0-44 18-44 42v512c0 24 20 42 44 42h128zM256 724.667c24 0 42-18 42-42v-512c0-24-18-42-42-42h-128c-24 0-42 18-42 42v512c0 24 18 42 42 42h128z" />
-<glyph unicode="&#xe8f4;" glyph-name="visibility" d="M512 554.667c70 0 128-58 128-128s-58-128-128-128-128 58-128 128 58 128 128 128zM512 212.667c118 0 214 96 214 214s-96 214-214 214-214-96-214-214 96-214 214-214zM512 746.667c214 0 396-132 470-320-74-188-256-320-470-320s-396 132-470 320c74 188 256 320 470 320z" />
-<glyph unicode="&#xe8f5;" glyph-name="visibility_off" d="M506 554.667h6c70 0 128-58 128-128v-8zM322 520.667c-14-28-24-60-24-94 0-118 96-214 214-214 34 0 66 10 94 24l-66 66c-8-2-18-4-28-4-70 0-128 58-128 128 0 10 2 20 4 28zM86 756.667l54 54 756-756-54-54c-47.968 47.365-96.266 94.401-144 142-58-24-120-36-186-36-214 0-396 132-470 320 34 84 90 156 160 212-39.017 38.983-77.307 78.693-116 118zM512 640.667c-28 0-54-6-78-16l-92 92c52 20 110 30 170 30 214 0 394-132 468-320-32-80-82-148-146-202l-124 124c10 24 16 50 16 78 0 118-96 214-214 214z" />
-<glyph unicode="&#xe8f7;" glyph-name="card_membership" d="M854 512.667v256h-684v-256h684zM854 298.667v86h-684v-86h684zM854 852.667c48 0 84-36 84-84v-470c0-48-36-86-84-86h-172v-212l-170 84-170-84v212h-172c-48 0-84 38-84 86v470c0 48 36 84 84 84h684z" />
-<glyph unicode="&#xe8f8;" glyph-name="card_travel" d="M854 340.667v256h-128v-84h-86v84h-256v-84h-86v84h-128v-256h684zM854 128.667v84h-684v-84h684zM384 768.667v-86h256v86h-256zM854 682.667c48 0 84-38 84-86v-468c0-48-36-86-84-86h-684c-48 0-84 38-84 86v468c0 48 36 86 84 86h128v86c0 48 38 84 86 84h256c48 0 86-36 86-84v-86h128z" />
-<glyph unicode="&#xe8f9;" glyph-name="work" d="M598 682.667v86h-172v-86h172zM854 682.667c48 0 84-38 84-86v-468c0-48-36-86-84-86h-684c-48 0-84 38-84 86v468c0 48 36 86 84 86h172v86c0 48 36 84 84 84h172c48 0 84-36 84-84v-86h172z" />
-<glyph unicode="&#xe8fa;" glyph-name="youtube_searched_for" d="M726 340.667l212-212-62-64-214 214v32l-12 12c-48-42-112-66-180-66-52 0-100 14-142 38l64 62c24-10 50-16 78-16 106 0 192 86 192 192s-86 192-192 192-192-86-192-192h148l-176-170-164 170h106c0 150 124 278 278 278s278-124 278-278c0-70-26-132-68-180l12-12h34z" />
-<glyph unicode="&#xe8fb;" glyph-name="eject" d="M512 724.667l284-426h-568zM214 212.667h596v-84h-596v84z" />
-<glyph unicode="&#xe8fc;" glyph-name="camera_enhance" d="M512 212.667l-54 118-116 54 116 52 54 118 54-118 116-52-116-54zM512 170.667c118 0 214 96 214 214s-96 212-214 212-214-94-214-212 96-214 214-214zM384 810.667h256l78-86h136c46 0 84-38 84-84v-512c0-46-38-86-84-86h-684c-46 0-84 40-84 86v512c0 46 38 84 84 84h136z" />
-<glyph unicode="&#xe8fd;" glyph-name="help_outline" d="M512 682.667c94 0 170-76 170-170 0-106-128-118-128-214h-84c0 138 128 128 128 214 0 46-40 84-86 84s-86-38-86-84h-84c0 94 76 170 170 170zM512 84.667c188 0 342 154 342 342s-154 342-342 342-342-154-342-342 154-342 342-342zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426zM470 170.667v86h84v-86h-84z" />
-<glyph unicode="&#xe8fe;" glyph-name="reorder" d="M128 724.667h768v-84h-768v84zM128 468.667v86h768v-86h-768zM128 128.667v84h768v-84h-768zM128 298.667v86h768v-86h-768z" />
-<glyph unicode="&#xe8ff;" glyph-name="zoom_in" d="M512 512.667h-86v-86h-42v86h-86v42h86v86h42v-86h86v-42zM406 340.667c106 0 192 86 192 192s-86 192-192 192-192-86-192-192 86-192 192-192zM662 340.667l212-212-64-64-212 212v34l-12 12c-48-42-112-66-180-66-154 0-278 122-278 276s124 278 278 278 276-124 276-278c0-68-24-132-66-180l12-12h34z" />
-<glyph unicode="&#xe900;" glyph-name="goat" d="M1022 550.667c2-2 2-8 0-10l-50-64c-2-2-6-4-8-4l-30 6-14-44c-6-10-20-10-26 0l-28 60-46 10-94-224 34-272c0-6-4-8-8-8h-40c-4 0-6 2-8 6l-40 162-20 34-50-196c0-4-4-6-8-6h-42c-4 0-8 4-8 8l46 270h-270l-70-132 16-136c2-6-2-10-8-10h-40c-2 0-6 0-8 4l-56 204-68-78 12-120c2-6-2-10-8-10h-44c-4 0-8 2-8 4l-26 112 42 164v288s-46 18-46 60h548c0 0 96-2 190 66 0 0-16 44 12 72 0 0 56-40 72-50 20-12 34 10 28 28-4 12-18 56-90 84-9.158 3.053-30.421 4.736-26 18 0 4 4 6 8 6 88-12 140-84 154-116 2-4 40-30 36-76 0-6 0-10 4-14z" />
-<glyph unicode="&#xe901;" glyph-name="zoom_out" d="M298 554.667h214v-42h-214v42zM406 340.667c106 0 192 86 192 192s-86 192-192 192-192-86-192-192 86-192 192-192zM662 340.667l212-212-64-64-212 212v34l-12 12c-48-42-112-66-180-66-154 0-278 122-278 276s124 278 278 278 276-124 276-278c0-68-24-132-66-180l12-12h34z" />
-<glyph unicode="&#xe902;" glyph-name="http" d="M918 448.667v42h-86v-42h86zM918 554.667c34 0 64-30 64-64v-42c0-34-30-64-64-64h-86v-86h-64v256h150zM534 490.667v64h192v-64h-64v-192h-64v192h-64zM298 490.667v64h192v-64h-64v-192h-64v192h-64zM192 468.667v86h64v-256h-64v106h-86v-106h-64v256h64v-86h86z" />
-<glyph unicode="&#xe903;" glyph-name="event_seat" d="M726 384.667h-428v340c0 46 40 86 86 86h256c46 0 86-40 86-86v-340zM86 512.667h128v-128h-128v128zM810 512.667h128v-128h-128v128zM170 42.667v256h684v-256h-128v128h-428v-128h-128z" />
-<glyph unicode="&#xe904;" glyph-name="flight_land" d="M598 322.667c-136.472 37.528-274.090 73.91-412 110l-68 20v220l62-16 40-100 212-56v352l82-22 118-384 226-60c34-10 54-46 46-80-10-34-44-52-78-44zM106 128.667h812v-86h-812v86z" />
-<glyph unicode="&#xe905;" glyph-name="flight_takeoff" d="M942 526.667c8-34-12-68-46-78-137.558-36.442-275.002-72.998-412-110l-226-60-68-20c-37.52 63.813-74.693 127.974-112 192l62 16 84-64 212 56-176 306 82 22 294-274 228 60c34 10 70-12 78-46zM106 128.667h812v-86h-812v86z" />
-<glyph unicode="&#xe906;" glyph-name="play_for_work" d="M256 340.667h86c0-94 76-170 170-170s170 76 170 170h86c0-142-114-256-256-256s-256 114-256 256zM470 724.667h84v-238h150l-192-192-192 192h150v238z" />
-<glyph unicode="&#xe908;" glyph-name="gif" d="M810 490.667h-128v-42h86v-64h-86v-86h-64v256h192v-64zM384 554.667c26 0 42-20 42-42v-22h-148v-128h84v64h64v-86c0-22-16-42-42-42h-128c-26 0-42 20-42 42v172c0 22 16 42 42 42h128zM490 554.667h64v-256h-64v256z" />
-<glyph unicode="&#xe909;" glyph-name="indeterminate_check_box" d="M726 384.667v84h-428v-84h428zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-46 0-86 40-86 86v596c0 46 40 86 86 86h596z" />
-<glyph unicode="&#xe90a;" glyph-name="offline_pin" d="M440 340.667l286 286-60 60-226-226-82 82-60-60zM726 170.667v86h-428v-86h428zM512 852.667c234 0 426-192 426-426s-192-426-426-426-426 192-426 426 192 426 426 426z" />
-<glyph unicode="&#xe90b;" glyph-name="all_out" d="M686 254.667c90 90 90 240 0 330s-240 90-330 0-90-240 0-330 240-90 330 0zM732 630.667c116-116 116-306 0-422s-306-116-422 0-116 306 0 422 306 116 422 0zM180 590.667v170h170zM350 78.667h-170v170zM862 248.667v-170h-170zM692 760.667h170v-170z" />
-<glyph unicode="&#xe90c;" glyph-name="copyright" d="M512 84.667c188 0 342 154 342 342s-154 342-342 342-342-154-342-342 154-342 342-342zM512 852.667c236 0 426-190 426-426s-190-426-426-426-426 190-426 426 190 426 426 426zM506 548.667c-61.522 0-80-54.457-80-116v-12c0-61.538 18.508-116 80-116 37.558 0 70 22.925 70 60h76c0-39.042-21.138-68.404-44-88-25.786-22.102-55.81-36-102-36-109.169 0-164 72.147-164 180v12c0 51.712 14.52 98.881 40 128 26.398 30.169 68.684 54 124 54 44.274 0 81.256-15.256 104-38 22.005-22.005 42-55.974 42-98h-76c0 10-2 18-6 26s-8 18-14 24c-10.835 10.835-29.352 20-50 20z" />
-<glyph unicode="&#xe90d;" glyph-name="fingerprint" d="M636 0.667h-6c-68 18-112 44-158 90-60 60-92 138-92 222 0 70 58 126 130 126s132-56 132-126c0-46 38-82 88-82s90 36 90 82c0 160-140 292-310 292-122 0-232-68-282-172-16-34-24-76-24-120 0-34 2-86 28-154 9.157-27.471-30.939-36.654-40-14-20 56-32 110-32 168 0 52 10 98 30 138 56 120 182 198 320 198 194 0 352-152 352-336 0-70-60-124-132-124s-130 54-130 124c0 46-40 84-90 84s-88-38-88-84c0-72 28-140 80-192 40-40 80-62 140-78 12-2 16-14 14-26-2-10-12-16-20-16zM530 312.667c0-97.515 80.578-182 192-182 19.928 0 65.546 14.722 70-12 2-12-6-24-18-26-24-4-46-4-52-4-50 0-96 12-132 38-64 44-102 112-102 186 0 12 10 22 22 22s20-10 20-22zM416 8.667c-6 0-10 2-14 6-38 38-58 62-86 114-30 52-46 116-46 184 0 126 108 230 242 230s242-104 242-230c0-12-10-20-22-20s-22 8-22 20c0 104-88 188-198 188s-198-84-198-188c0-62 12-118 38-164 28-50 48-70 80-104 8-8 8-22 0-30-4-4-10-6-16-6zM150 524.667c-17.624 0-27.785 15.691-18 32 42 60 96 108 160 140 134 70 306 70 440 0 64-32 118-78 160-138 6-10 4-24-6-30s-24-4-30 6c-38 54-86 94-144 124-122 62-278 64-400 0-58-30-108-72-146-126-4-6-10-8-16-8zM760 748.667c-4 0-8 0-10 2-82 42-154 60-238 60s-166-20-238-60c-23.381-14.029-43.278 24.033-20 38 80 44 166 64 258 64 90 0 170-20 258-64 18.211-10.927 10.406-40-10-40z" />
-<glyph unicode="&#xe90e;" glyph-name="gavel" d="M164 534.667l240-242-120-120-242 240zM526 896.667l240-242-120-120-242 240zM224 594.667l120 120 604-604-120-120zM42 42.667h512v-86h-512v86z" />
-<glyph unicode="&#xe90f;" glyph-name="lightbulb_outline" d="M634 380.667c58 40 92 104 92 174 0 118-96 214-214 214s-214-96-214-214c0-70 34-134 92-174l36-26v-98h172v98zM512 852.667c164 0 298-134 298-298 0-102-50-190-128-244v-98c0-24-18-42-42-42h-256c-24 0-42 18-42 42v98c-78 54-128 142-128 244 0 164 134 298 298 298zM384 42.667v42h256v-42c0-24-18-42-42-42h-172c-24 0-42 18-42 42z" />
-<glyph unicode="&#xe911;" glyph-name="picture_in_picture_alt" d="M896 126.667v600h-768v-600h768zM982 128.667c0-46-40-86-86-86h-768c-46 0-86 40-86 86v598c0 46 40 84 86 84h768c46 0 86-38 86-84v-598zM810 468.667v-256h-340v256h340z" />
-<glyph unicode="&#xe912;" glyph-name="important_devices" d="M510 554.667h130l-106-76 40-124-104 78-106-78 40 124-106 76h130l42 128zM854 852.667c46 0 84-36 84-84v-214h-84v214h-768v-512h554v-86h-86v-86h86v-84h-342v84h86v86h-298c-48 0-86 40-86 86v512c0 48 38 84 86 84h768zM982 84.667v300h-214v-300h214zM982 468.667c24 0 42-18 42-42v-384c0-24-18-42-42-42h-214c-24 0-42 18-42 42v384c0 24 18 42 42 42h214z" />
-<glyph unicode="&#xe913;" glyph-name="touch_app" d="M804 260.667c22-10 38-32 38-58v-8l-32-226c-4-32-30-54-62-54h-290c-18 0-32 6-44 18l-212 212 34 34c8 8 20 14 34 14 4 0 6-2 10-2l146-30v458c0 36 28 64 64 64s64-28 64-64v-256h34c8 0 14-2 22-4zM384 458.667c-52 34-86 94-86 160 0 106 86 192 192 192s192-86 192-192c0-66-32-126-84-160v160c0 58-50 106-108 106s-106-48-106-106v-160z" />
-<glyph unicode="&#xe914;" glyph-name="accessible" d="M548 170.667h88c-20-98-106-170-210-170-118 0-212 94-212 212 0 104 72 190 170 210v-88c-50-18-86-66-86-122 0-70 58-128 128-128 56 0 104 36 122 86zM426 550.667c0 59.978 66.716 113.020 128 78h2v-2c10-4 18-10 26-18l56-62c42-46 106-78 172-78v-84c-74 0-156 36-212 82v-146h128c46 0 84-40 84-86v-234h-84v212h-214c-46 0-86 40-86 86v252zM426 768.667c0 48 38 84 86 84s86-36 86-84-38-86-86-86-86 38-86 86z" />
-<glyph unicode="&#xe915;" glyph-name="compare_arrows" d="M640 384.667l-170 170 170 170v-128h298v-84h-298v-128zM384 340.667v128l170-170-170-170v128h-298v84h298z" />
-<glyph unicode="&#xe916;" glyph-name="date_range" d="M810 84.667v470h-596v-470h596zM810 768.667c46 0 86-40 86-86v-598c0-46-40-84-86-84h-596c-48 0-86 38-86 84v598c0 46 38 86 86 86h42v84h86v-84h340v84h86v-84h42zM726 468.667v-84h-86v84h86zM554 468.667v-84h-84v84h84zM384 468.667v-84h-86v84h86z" />
-<glyph unicode="&#xe917;" glyph-name="donut_large" d="M554 130.667c128 18 238 126 256 254h128c-20-214-170-364-384-384v130zM810 468.667c-18 128-128 236-256 254v130c214-20 364-170 384-384h-128zM470 722.667c-128-20-256-146-256-296s128-276 256-296v-130c-214 22-384 204-384 426s170 404 384 426v-130z" />
-<glyph unicode="&#xe918;" glyph-name="donut_small" d="M554 304.667c42 12 66 44 80 80h304c-20-202-170-364-384-384v304zM634 468.667c-14 36-38 68-80 80v304c214-20 364-182 384-384h-304zM470 548.667c-42-18-86-66-86-122s44-104 86-122v-304c-214 22-384 204-384 426s170 404 384 426v-304z" />
-<glyph unicode="&#xe919;" glyph-name="line_style" d="M128 768.667h768v-172h-768v172zM554 426.667v86h342v-86h-342zM128 426.667v86h342v-86h-342zM810 84.667v86h86v-86h-86zM640 84.667v86h86v-86h-86zM470 84.667v86h84v-86h-84zM298 84.667v86h86v-86h-86zM128 84.667v86h86v-86h-86zM682 256.667v84h214v-84h-214zM406 256.667v84h212v-84h-212zM128 256.667v84h214v-84h-214z" />
-<glyph unicode="&#xe91a;" glyph-name="line_weight" d="M128 768.667h768v-172h-768v172zM128 384.667v128h768v-128h-768zM128 84.667v44h768v-44h-768zM128 212.667v86h768v-86h-768z" />
-<glyph unicode="&#xe91b;" glyph-name="motorcycle" d="M810 212.667c70 0 128 58 128 128s-58 128-128 128-128-58-128-128 58-128 128-128zM334 298.667h-120v86h120c-18 50-66 84-120 84-70 0-128-58-128-128s58-128 128-128c54 0 102 36 120 86zM830 552.667c110-8 194-98 194-212 0-120-94-212-214-212s-212 92-212 212c0 26 4 52 12 76l-118-118h-70c-20-98-104-170-208-170-120 0-214 92-214 212s94 214 214 214h494l-86 86h-152v84h188z" />
-<glyph unicode="&#xe91c;" glyph-name="opacity" d="M256 340.667h512c0 86-28 138-76 186l-180 188-180-186c-48-48-76-102-76-188zM754 596.667c66-66 100-154 100-240s-34-176-100-242-154-100-242-100-176 34-242 100-100 156-100 242 34 174 100 240l242 242z" />
-<glyph unicode="&#xe91d;" glyph-name="pets" d="M740 304.667c56-56 126-116 112-204-12-44-44-88-100-100-32-6-130 18-236 18h-8c-106 0-204-24-236-18-56 12-88 56-100 100-12 86 56 148 112 204 38 44 68 80 106 124 20 24 44 46 74 56 4 2 10 4 14 4 12 2 22 2 34 2s24 0 34-2c4 0 10-2 14-4 30-10 54-32 74-56 38-44 68-80 106-124zM726 532.667c0 58 48 108 106 108s106-50 106-108-48-106-106-106-106 48-106 106zM534 704.667c0 58 48 106 106 106s106-48 106-106-48-108-106-108-106 50-106 108zM278 704.667c0 58 48 106 106 106s106-48 106-106-48-108-106-108-106 50-106 108zM86 532.667c0 58 48 108 106 108s106-50 106-108-48-106-106-106-106 48-106 106z" />
-<glyph unicode="&#xe91e;" glyph-name="pregnant_woman" d="M682 384.667v-172h-128v-212h-128v212h-84v300c0 70 58 128 128 128s128-58 128-128c50-20 84-70 84-128zM384 768.667c0 48 38 84 86 84s84-36 84-84-36-86-84-86-86 38-86 86z" />
-<glyph unicode="&#xe91f;" glyph-name="record_voice_over" d="M856 852.667c166-172 166-430 0-596l-70 68c118 136 118 332 0 460zM716 710.667c86-94 86-224 0-310l-72 72c36 50 36 116 0 166zM384 298.667c114 0 342-56 342-170v-86h-684v86c0 114 228 170 342 170zM214 554.667c0 94 76 170 170 170s170-76 170-170-76-170-170-170-170 76-170 170z" />
-<glyph unicode="&#xe920;" glyph-name="rounded_corner" d="M896 596.667v-212h-86v212c0 70-58 128-128 128h-212v86h212c118 0 214-96 214-214zM128 42.667v86h86v-86h-86zM298 42.667v86h86v-86h-86zM470 42.667v86h84v-86h-84zM298 724.667v86h86v-86h-86zM128 724.667v86h86v-86h-86zM128 554.667v86h86v-86h-86zM128 212.667v86h86v-86h-86zM128 384.667v84h86v-84h-86zM810 212.667v86h86v-86h-86zM810 128.667h86v-86h-86v86z" />
-<glyph unicode="&#xe921;" glyph-name="rowing" d="M896 42.667l-128-128-128 128v64l-302 302c-14-2-28-2-40-2v92c70-2 154 36 200 86l60 66c15.214 15.214 40.308 32 70 32h2c52 0 96-44 96-96v-246c0-36-16-68-40-92l-152 152v98c-26-22-62-44-98-60l268-268h64zM640 896.667c46 0 86-40 86-86s-40-86-86-86-86 40-86 86 40 86 86 86zM362 320.667l108-108h-86l-150-148-64 64z" />
-<glyph unicode="&#xe922;" glyph-name="timeline" d="M982 596.667c0-46-40-84-86-84-8 0-16 0-22 2l-152-152c2-6 4-14 4-22 0-46-40-84-86-84s-86 38-86 84c0 8 2 16 4 22l-110 110c-6-2-14-4-22-4s-16 2-22 4l-194-194c2-6 4-14 4-22 0-46-40-86-86-86s-86 40-86 86 40 84 86 84c8 0 16 0 22-2l194 194c-2 6-2 14-2 22 0 46 38 86 84 86s86-40 86-86c0-8 0-16-2-22l108-108c6 2 14 2 22 2s16 0 22-2l152 150c-2 6-4 14-4 22 0 46 40 86 86 86s86-40 86-86z" />
-<glyph unicode="&#xe923;" glyph-name="update" d="M534 596.667v-180l148-90-30-52-182 110v212h64zM896 506.667h-290l118 120c-116 116-306 120-422 4s-116-300 0-416 306-116 422 0c58 58 86 124 86 208h86c0-84-36-194-112-268-150-148-394-148-544 0s-150 388 0 536 390 148 540 0l116 120v-304z" />
-<glyph unicode="&#xe924;" glyph-name="watch_later" d="M692 246.667l34 56-192 116v222h-64v-256zM512 852.667c234 0 426-192 426-426s-192-426-426-426-426 192-426 426 192 426 426 426z" />
-<glyph unicode="&#xe925;" glyph-name="pan_tool" d="M982 704.667v-620c0-94-78-170-172-170h-310c-46 0-90 18-122 50l-336 342s54 52 56 52c10 8 22 12 34 12 10 0 18-2 26-6 2 0 184-104 184-104v508c0 36 28 64 64 64s64-28 64-64v-300h42v406c0 36 28 64 64 64s64-28 64-64v-406h42v364c0 36 28 64 64 64s64-28 64-64v-364h44v236c0 36 28 64 64 64s64-28 64-64z" />
-<glyph unicode="&#xe926;" glyph-name="euro_symbol" d="M640 148.667c70 0 132 26 180 68l76-76c-68-62-158-98-256-98-168 0-310 108-362 256h-150v86h130c-2 14-2 28-2 42s0 28 2 42h-130v86h150c52 148 194 256 362 256 98 0 188-36 256-98l-76-76c-48 42-112 68-180 68-106 0-200-62-246-150h246v-86h-274c-2-14-4-28-4-42s2-28 4-42h274v-86h-246c46-88 138-150 246-150z" />
-<glyph unicode="&#xe927;" glyph-name="g_translate" d="M896 84.667v556c0 24-18 42-42 42h-376l50-172h82v44h46v-44h154v-44h-54c-14-54-44-106-82-150l116-114-30-32-116 114-38-38 34-118-86-86h300c24 0 42 18 42 42zM596 420.667c10-20 26-46 48-72 52 62 66 118 66 118h-170l14-46h42zM564 388.667l26-94 24 22c-20 22-36 46-50 72zM474 486.667c0 9.841-0.281 22.561-4 30h-168v-66h94c-6-26-32-64-90-64-56 0-102 48-102 104s46 104 102 104c32 0 52-14 64-26l4-2 52 50-4 2c-32 30-72 46-116 46-96 0-174-78-174-174s78-174 174-174c98 0 168 70 168 170zM854 724.667c46 0 84-38 84-84v-556c0-46-38-84-84-84h-342l-42 128h-300c-46 0-84 38-84 84v556c0 46 38 84 84 84h256l38-128h390z" />
-<glyph unicode="&#xe928;" glyph-name="remove_shopping_cart" d="M298 170.667c46 0 86-40 86-86s-40-84-86-84-84 38-84 84 38 86 84 86zM664 384.667l-384 384h574c24 0 42-20 42-44 0-8-2-14-6-20l-152-276c-14-26-42-44-74-44zM316 298.667h216l-86 86h-100l-38-70-2-6c0-6 4-10 10-10zM970-31.333l-54-54-122 122c-16-22-40-36-68-36-46 0-86 38-86 84 0 28 14 54 36 70l-60 58h-318c-46 0-84 40-84 86 0 14 4 28 10 40l58 106-94 198-188 188 54 54z" />
-<glyph unicode="&#xe929;" glyph-name="restore_page" d="M512 170.667c118 0 214 96 214 214s-96 212-214 212c-76 0-142-40-180-98l-54 56v-170h170l-68 68c24 48 74 80 132 80 82 0 150-66 150-148s-68-150-150-150c-50 0-96 26-122 64h-74c32-76 108-128 196-128zM598 852.667l256-256v-512c0-46-40-84-86-84h-512c-46 0-86 38-86 84l2 684c0 46 38 84 84 84h342z" />
-<glyph unicode="&#xe92a;" glyph-name="speaker_notes_off" d="M854 852.667c46 0 84-38 84-84v-512c0-46-36-84-82-86l-298 298h210v86h-296l-42 42h338v86h-342v-82l-252 252h680zM256 468.667h86l-86 86v-86zM342 340.667v86h-86v-86h86zM54 864.667l884-884-54-54-244 244h-384l-170-170v724l-86 86z" />
-<glyph unicode="&#xe92b;" glyph-name="delete_forever" d="M662 768.667h148v-86h-596v86h148l44 42h212zM360 432.667l92-92-90-90 60-60 90 90 90-90 60 60-90 90 90 92-60 60-90-92-90 92zM256 128.667v512h512v-512c0-46-40-86-86-86h-340c-46 0-86 40-86 86z" />
-<glyph unicode="&#xeb3b;" glyph-name="ac_unit" d="M938 468.667v-84h-178l138-138-60-62-198 200h-86v-86l200-198-62-60-138 138v-178h-84v178l-138-138-62 60 200 198v86h-86l-198-200-60 62 138 138h-178v84h178l-138 138 60 62 198-200h86v86l-200 198 62 60 138-138v178h84v-178l138 138 62-60-200-198v-86h86l198 200 60-62-138-138h178z" />
-<glyph unicode="&#xeb3c;" glyph-name="airport_shuttle" d="M640 468.667h214l-172 172h-42v-172zM746 192.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM554 468.667v172h-170v-172h170zM256 192.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM128 468.667h170v172h-170v-172zM726 724.667l256-256v-212h-108c0-70-58-128-128-128s-128 58-128 128h-234c0-70-58-128-128-128s-128 58-128 128h-86v384c0 48 40 84 86 84h598z" />
-<glyph unicode="&#xeb3d;" glyph-name="all_inclusive" d="M794 656.667c128 0 230-104 230-230s-102-230-230-230c-62 0-120 24-164 68l-54 48 64 56 50-42c30-30 66-44 104-44 80 0 144 64 144 144s-64 144-144 144c-38 0-74-14-102-42-60.266-53.067-120.945-105.722-180-160l-120-106c-42-42-100-66-162-66-128 0-230 104-230 230s102 230 230 230c62 0 120-24 164-68l54-48-66-56-48 42c-30 30-66 44-104 44-80 0-144-64-144-144s64-144 144-144c38 0 74 14 102 42 60.266 53.067 120.945 105.722 180 160l120 106c42 42 100 66 162 66z" />
-<glyph unicode="&#xeb3e;" glyph-name="beach_access" d="M744 562.667c-133.701 133.701-319.17 177.803-486.874 122.374 127.568 14.55 291.962-51.462 424.874-184.374l-244-244c-132.912 132.912-198.924 297.306-184.374 424.874-55.43-167.705-11.327-353.174 122.374-486.874l-122-122c-167.908 167.908-168 441.7-0.275 609.724 0.259 2.212 0.333 2.291 2.551 2.551 168.024 167.725 441.816 167.633 609.724-0.275zM560 316.667l62 62 274-276-62-60z" />
-<glyph unicode="&#xeb3f;" glyph-name="business_center" d="M598 640.667v84h-172v-84h172zM854 640.667c46 0 84-40 84-86v-128c0-46-38-86-84-86h-256v86h-172v-86h-256c-48 0-84 38-84 86v128c0 46 38 86 84 86h170v84l86 86h170l86-86v-84h172zM426 256.667h172v42h298v-170c0-48-38-86-86-86h-596c-48 0-86 38-86 86v170h298v-42z" />
-<glyph unicode="&#xeb40;" glyph-name="casino" d="M704 554.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM704 170.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM512 362.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM320 554.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM320 170.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM810 810.667c46 0 86-40 86-86v-596c0-46-40-86-86-86h-596c-46 0-86 40-86 86v596c0 46 40 86 86 86h596z" />
-<glyph unicode="&#xeb41;" glyph-name="child_care" d="M320 340.667h384c-32-76-106-128-192-128s-160 52-192 128zM512 128.667c136.004 0 250.464 89.626 286 214 4 0 8-2 12-2 46 0 86 40 86 86s-40 86-86 86c-4 0-8-2-12-2-35.529 124.35-149.994 214-286 214-136.004 0-250.464-89.626-286-214-4 0-8 2-12 2-46 0-86-40-86-86s40-86 86-86c4 0 8 2 12 2 35.529-124.35 149.994-214 286-214zM978 398.667c-10-64-56-118-118-136-56.536-118.211-189.668-220-348-220-157.767 0-291.044 100.097-346 220-62 18-110 72-120 136-2 8-4 18-4 28s2 20 4 28c10 64 58 118 120 136 22 48 52 90 92 124 68 60 156 96 254 96 160.584 0 290.218-98.294 346-220 62-18 110-72 120-136 2-8 4-18 4-28s-2-20-4-28zM352 490.667c0 30 24 54 54 54s52-24 52-54-22-54-52-54-54 24-54 54zM566 490.667c0 30 22 54 52 54s54-24 54-54-24-54-54-54-52 24-52 54z" />
-<glyph unicode="&#xeb42;" glyph-name="child_friendly" d="M726 84.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM342 84.667c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM824 260.667c30-28 50-68 50-112 0-82-66-148-148-148-76 0-138 56-148 128h-90c-10-72-70-128-146-128-82 0-150 66-150 148 0 56 32 106 78 132-10 14-90 188-90 188h-94v86h148l40-86h622c0-78-28-150-72-208zM554 852.667c188 0 342-152 342-340h-342v340z" />
-<glyph unicode="&#xeb43;" glyph-name="fitness_center" d="M878 304.667l60-62-90-90 60-62-60-60-62 60-90-90-62 60-60-60-62 60 152 152-366 366-152-152-60 62 60 60-60 62 90 90-60 62 60 60 62-60 90 90 62-60 60 60 62-60-152-152 366-366 152 152 60-62z" />
-<glyph unicode="&#xeb44;" glyph-name="free_breakfast" d="M170 128.667h684v-86h-684v86zM854 596.667v128h-86v-128h86zM854 810.667c48 0 84-38 84-86v-128c0-46-36-84-84-84h-86v-128c0-94-76-172-170-172h-256c-94 0-172 78-172 172v426h684z" />
-<glyph unicode="&#xeb45;" glyph-name="golf_course" d="M726 686.667l-256-132v-386c122-6 212-42 212-84 0-46-114-84-256-84s-256 38-256 84c0 32 52 60 128 74v-74h86v768zM768 106.667c0 36 28 64 64 64s64-28 64-64-28-64-64-64-64 28-64 64z" />
-<glyph unicode="&#xeb46;" glyph-name="hot_tub" d="M626 688.667c44-42 62-100 54-158l-2-18h-82l6 24c6.113 34.638-6.812 70.812-32 96-44 44-64 102-56 160l2 18h82l-4-26c-6-34 4-68 28-94zM796 688.667c44-42 64-100 56-158l-4-18h-80l4 24c6 34-4 68-28 94l-4 2c-44 44-64 102-56 160l4 18h80l-4-26c-6-34 4-68 28-94zM810 84.667v256h-84v-256h84zM640 84.667v256h-86v-256h86zM470 84.667v256h-86v-256h86zM298 84.667v256h-84v-256h84zM476 426.667h462v-342c0-46-38-84-84-84h-684c-46 0-84 38-84 84v342h128v32c0 52 44 96 96 96 30.769 0 56.308-16.308 72-32l58-66c10-12 22-20 36-30zM214 682.667c0 48 36 86 84 86s86-38 86-86-38-86-86-86-84 38-84 86z" />
-<glyph unicode="&#xeb47;" glyph-name="kitchen" d="M342 426.667h84v-214h-84v214zM342 724.667h84v-128h-84v128zM768 554.667v214h-512v-214h512zM768 84.667v386h-512v-386h512zM768 852.667c46 0 86-36 86-84v-684c0-46-40-84-86-84h-512c-46 0-86 38-86 84v684c0 48 40 84 86 84h512z" />
-<glyph unicode="&#xeb48;" glyph-name="pool" d="M598 704.667c0 58 48 106 106 106s106-48 106-106-48-108-106-108-106 50-106 108zM370 426.667c-24 0-34 6-50 16-8 6-18 10-32 16l138 138-42 44c-48 48-92 64-170 64v106c106 0 168-20 234-86l274-272c-6-4-12-8-18-10-16-10-26-16-50-16s-32 6-48 16c-20 12-46 26-94 26s-74-14-94-26c-16-10-24-16-48-16zM938 234.667c-48 0-72 16-92 28-16 10-26 14-50 14s-32-4-48-14c-20-12-46-28-94-28s-72 16-92 28c-16 10-26 14-50 14s-32-4-48-14c-20-12-46-28-94-28s-72 16-92 28c-16 10-26 14-50 14s-32-4-48-14c-20-12-46-28-94-28v86c24 0 32 4 48 14 20 12 46 28 94 28s72-16 92-28c16-10 26-14 50-14s32 4 48 14c20 12 46 28 94 28s72-16 92-28c16-10 26-14 50-14s32 4 48 14c20 12 46 28 94 28s72-16 92-28c16-10 26-14 50-14v-86zM938 42.667c-48 0-72 16-92 28-16 10-26 14-50 14s-32-4-48-14c-20-12-46-28-94-28s-72 16-92 28c-16 10-26 14-50 14s-32-4-48-14c-20-12-46-28-94-28s-74 16-94 28c-16 10-24 14-48 14s-34-4-50-14c-20-12-44-28-92-28v86c24 0 32 4 48 14 20 12 46 28 94 28s72-16 92-28c16-10 26-14 50-14s32 4 48 14c20 12 46 28 94 28s74-16 94-28c16-10 24-14 48-14s34 4 50 14c20 12 44 28 92 28s74-16 94-28c16-10 24-14 48-14v-86z" />
-<glyph unicode="&#xeb49;" glyph-name="room_service" d="M590 606.667c166-34 294-176 306-350h-768c12 174 140 316 306 350-4 10-8 22-8 34 0 46 40 84 86 84s86-38 86-84c0-12-4-24-8-34zM86 212.667h852v-84h-852v84z" />
-<glyph unicode="&#xeb4a;" glyph-name="smoke_free" d="M726 258.667l-126 126h126v-126zM618 566.667c-78 0-142 66-142 144s64 142 142 142v-64c-44 0-78-30-78-74s34-86 78-86h66c80 0 148-58 148-134v-68h-64v54c0 56-40 86-84 86h-66zM804 730.667c80-38 134-120 134-216v-88h-64v88c0 96-74 174-170 174v64c44 0 78 36 78 80h64c0-40-16-76-42-102zM768 384.667h64v-128h-64v128zM874 384.667h64v-128h-64v128zM86 682.667l52 54 726-726-54-54-298 300h-426v128h298z" />
-<glyph unicode="&#xeb4b;" glyph-name="smoking_rooms" d="M684 502.667c80 0 148-56 148-134v-70h-64v56c0 56-40 86-84 86h-66c-78 0-142 66-142 144s64 142 142 142v-64c-44 0-78-30-78-74s34-86 78-86h66zM804 608.667c80-38 134-120 134-214v-96h-64v96c0 96-74 172-170 172v64c44 0 78 36 78 80s-34 78-78 78v64c78 0 142-64 142-142 0-40-16-76-42-102zM768 256.667h64v-128h-64v128zM874 256.667h64v-128h-64v128zM86 256.667h640v-128h-640v128z" />
-<glyph unicode="&#xeb4c;" glyph-name="spa" d="M660 528.667c-54-30-104-68-148-114-44 46-94 84-148 114 10 118 58 232 150 324 90-90 138-204 146-324zM86 512.667c190.34 0 343.492-108.446 426-234 82.593 125.685 235.712 234 426 234 0-226-142-418-342-490-28-10-54-16-84-22-30 4-58 12-84 22-200 72-342 264-342 490z" />
-</font></defs></svg> \ No newline at end of file
diff --git a/docs/font/fonts/icomoon.ttf b/docs/font/fonts/icomoon.ttf
deleted file mode 100755
index 14ca086..0000000
--- a/docs/font/fonts/icomoon.ttf
+++ /dev/null
Binary files differ
diff --git a/docs/font/fonts/icomoon.woff b/docs/font/fonts/icomoon.woff
deleted file mode 100755
index 9118d62..0000000
--- a/docs/font/fonts/icomoon.woff
+++ /dev/null
Binary files differ
diff --git a/docs/font/selection.json b/docs/font/selection.json
deleted file mode 100755
index 6d7d869..0000000
--- a/docs/font/selection.json
+++ /dev/null
@@ -1,22006 +0,0 @@
-{
- "IcoMoonType": "selection",
- "icons": [
- {
- "icon": {
- "paths": [
- "M512 0c268 0 488 206 510 468h-64c-14-160-114-294-254-360l-58 56-162-162zM706 504c0-69.871-27.338-114-94-114h-40v246h38c51.287 0 80.544-27.904 92-68 4-14 4-30 4-48v-16zM612 342c76.364 0 121.865 38.664 144 94 8 20 10 44 10 68v16c0 52.811-15.142 91.142-42 118-26.824 26.824-61.104 44-114 44h-98v-340h100zM414 508c30.607 12.243 56 36.493 56 78 0 16-4 28-10 40s-12 24-22 32c-18.756 15.005-47.096 24-80 24-62.192 0-108-31.488-108-94h54c0 30.904 23.204 50 54 50 35.74 0 56-17.079 56-54 0-37.687-24.79-54-62-54h-32v-44h32c34.608 0 58-16.061 58-50 0-33.049-17.68-50-52-50-28.888 0-50 17.163-50 46h-56c0-29.787 15.103-49.103 30-64 19.854-15.883 41.797-26 76-26 51.295 0 80.772 19.544 98 54 6 12 8 24 8 40 0 36.376-24.671 59.335-50 72zM320 916l58-56 162 162-28 2c-268 0-488-208-510-470h64c16 160 114 296 254 362z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "3d_rotation"
- ],
- "defaultCode": 59469,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 4,
- "ligatures": "3d_rotation",
- "id": 0,
- "prevSize": 24,
- "name": "d_rotation",
- "code": 59469
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 0
- },
- {
- "icon": {
- "paths": [
- "M938 470v84h-178l138 138-60 62-198-200h-86v86l200 198-62 60-138-138v178h-84v-178l-138 138-62-60 200-198v-86h-86l-198 200-60-62 138-138h-178v-84h178l-138-138 60-62 198 200h86v-86l-200-198 62-60 138 138v-178h84v178l138-138 62 60-200 198v86h86l198-200 60 62-138 138h178z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "ac_unit"
- ],
- "defaultCode": 60219,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 5,
- "ligatures": "ac_unit",
- "id": 1,
- "prevSize": 24,
- "name": "ac_unit",
- "code": 60219
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 1
- },
- {
- "icon": {
- "paths": [
- "M512 854c166 0 298-134 298-300s-132-298-298-298-298 132-298 298 132 300 298 300zM512 170c212 0 384 172 384 384s-172 384-384 384-384-172-384-384 172-384 384-384zM534 342v224l170 100-32 52-202-120v-256h64zM336 144l-196 164-54-64 196-164zM938 244l-54 66-196-166 54-64z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "alarm"
- ],
- "defaultCode": 59477,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 6,
- "ligatures": "access_alarm, alarm",
- "id": 2,
- "prevSize": 24,
- "name": "alarm",
- "code": 59477
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 2
- },
- {
- "icon": {
- "paths": [
- "M512 854c166 0 298-134 298-300s-132-298-298-298-298 132-298 298 132 300 298 300zM512 170c214 0 384 170 384 384s-170 384-384 384-384-170-384-384 170-384 384-384zM534 342v226l170 102-34 52-200-124v-256h64zM338 146l-198 162-54-64 196-162zM938 244l-54 64-198-168 56-64z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "access_alarms"
- ],
- "defaultCode": 57745,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 7,
- "ligatures": "access_alarms",
- "id": 3,
- "prevSize": 24,
- "name": "access_alarms",
- "code": 57745
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 3
- },
- {
- "icon": {
- "paths": [
- "M534 298v224l192 114-32 54-224-136v-256h64zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "schedule"
- ],
- "defaultCode": 59573,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 8,
- "ligatures": "access_time, query_builder, schedule",
- "id": 4,
- "prevSize": 24,
- "name": "schedule",
- "code": 59573
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 4
- },
- {
- "icon": {
- "paths": [
- "M896 384h-256v554h-86v-256h-84v256h-86v-554h-256v-86h768v86zM512 86c46 0 86 38 86 84s-40 86-86 86-86-40-86-86 40-84 86-84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "accessibility"
- ],
- "defaultCode": 59470,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 9,
- "ligatures": "accessibility",
- "id": 5,
- "prevSize": 24,
- "name": "accessibility",
- "code": 59470
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 5
- },
- {
- "icon": {
- "paths": [
- "M548 768h88c-20 98-106 170-210 170-118 0-212-94-212-212 0-104 72-190 170-210v88c-50 18-86 66-86 122 0 70 58 128 128 128 56 0 104-36 122-86zM426 388c0-59.978 66.716-113.020 128-78h2v2c10 4 18 10 26 18l56 62c42 46 106 78 172 78v84c-74 0-156-36-212-82v146h128c46 0 84 40 84 86v234h-84v-212h-214c-46 0-86-40-86-86v-252zM426 170c0-48 38-84 86-84s86 36 86 84-38 86-86 86-86-38-86-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "accessible"
- ],
- "defaultCode": 59668,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 10,
- "ligatures": "accessible",
- "id": 6,
- "prevSize": 24,
- "name": "accessible",
- "code": 59668
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 6
- },
- {
- "icon": {
- "paths": [
- "M490 42l406 214v86h-810v-86zM682 426h128v300h-128v-300zM86 938v-128h810v128h-810zM426 426h128v300h-128v-300zM170 426h128v300h-128v-300z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "account_balance"
- ],
- "defaultCode": 59471,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 11,
- "ligatures": "account_balance",
- "id": 7,
- "prevSize": 24,
- "name": "account_balance",
- "code": 59471
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 7
- },
- {
- "icon": {
- "paths": [
- "M682 576c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM512 682v-340h426v340h-426zM896 768v42c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h596c46 0 86 40 86 86v42h-384c-48 0-86 40-86 86v340c0 46 38 86 86 86h384z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "account_balance_wallet"
- ],
- "defaultCode": 59472,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 12,
- "ligatures": "account_balance_wallet",
- "id": 8,
- "prevSize": 24,
- "name": "account_balance_wallet",
- "code": 59472
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 8
- },
- {
- "icon": {
- "paths": [
- "M256 726v42h512v-42c0-86-170-132-256-132s-256 46-256 132zM640 384c0-70-58-128-128-128s-128 58-128 128 58 128 128 128 128-58 128-128zM128 214c0-46 38-86 86-86h596c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "account_box"
- ],
- "defaultCode": 59473,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 13,
- "ligatures": "account_box",
- "id": 9,
- "prevSize": 24,
- "name": "account_box",
- "code": 59473
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 9
- },
- {
- "icon": {
- "paths": [
- "M512 820c106 0 200-56 256-138-2-84-172-132-256-132-86 0-254 48-256 132 56 82 150 138 256 138zM512 214c-70 0-128 58-128 128s58 128 128 128 128-58 128-128-58-128-128-128zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "account_circle"
- ],
- "defaultCode": 59475,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 14,
- "ligatures": "account_circle",
- "id": 10,
- "prevSize": 24,
- "name": "account_circle",
- "code": 59475
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 10
- },
- {
- "icon": {
- "paths": [
- "M640 384c24 0 42-18 42-42s-18-44-42-44-42 20-42 44 18 42 42 42zM384 384c24 0 42-18 42-42s-18-44-42-44-42 20-42 44 18 42 42 42zM688 186c74 54 122 142 122 240v44h-596v-44c0-98 48-186 122-240l-90-90 36-34 98 98c40-20 84-32 132-32s92 12 132 32l98-98 36 34zM214 682v-170h596v170c0 166-132 300-298 300s-298-134-298-300z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "adb"
- ],
- "defaultCode": 58894,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 15,
- "ligatures": "adb",
- "id": 11,
- "prevSize": 24,
- "name": "adb",
- "code": 58894
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 11
- },
- {
- "icon": {
- "paths": [
- "M810 554h-256v256h-84v-256h-256v-84h256v-256h84v256h256v84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "add"
- ],
- "defaultCode": 57669,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 16,
- "ligatures": "add",
- "id": 12,
- "prevSize": 24,
- "name": "add",
- "code": 57669
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 12
- },
- {
- "icon": {
- "paths": [
- "M418 598c0-76 60-138 136-138s138 62 138 138-62 136-138 136-136-60-136-136zM554 810c118 0 214-94 214-212s-96-214-214-214-212 96-212 214 94 212 212 212zM256 426v-128h128v-128h298l78 86h136c46 0 86 40 86 86v512c0 46-40 84-86 84h-682c-46 0-86-38-86-84v-428h128zM128 170v-128h86v128h128v86h-128v128h-86v-128h-128v-86h128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "add_a_photo"
- ],
- "defaultCode": 58425,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 17,
- "ligatures": "add_a_photo",
- "id": 13,
- "prevSize": 24,
- "name": "add_a_photo",
- "code": 58425
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 13
- },
- {
- "icon": {
- "paths": [
- "M554 384v128h128v86h-128v128h-84v-128h-128v-86h128v-128h84zM512 854c166 0 298-134 298-300s-132-298-298-298-298 132-298 298 132 300 298 300zM512 170c212 0 384 172 384 384s-172 384-384 384-384-172-384-384 172-384 384-384zM938 244l-54 66-196-166 54-64zM336 144l-196 164-54-64 196-164z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "alarm_add"
- ],
- "defaultCode": 59478,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 18,
- "ligatures": "add_alarm, alarm_add",
- "id": 14,
- "prevSize": 24,
- "name": "alarm_add",
- "code": 59478
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 14
- },
- {
- "icon": {
- "paths": [
- "M682 556v-86h-128v-128h-84v128h-128v86h128v128h84v-128h128zM806 718l90 90v46h-768v-46l90-90v-248c0-138 96-256 226-286v-30c0-38 30-68 68-68s68 30 68 68v30c130 30 226 148 226 286v248zM428 896h168c0 46-38 86-84 86s-84-40-84-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "add_alert"
- ],
- "defaultCode": 57347,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 19,
- "ligatures": "add_alert",
- "id": 15,
- "prevSize": 24,
- "name": "add_alert",
- "code": 57347
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 15
- },
- {
- "icon": {
- "paths": [
- "M726 554v-84h-172v-172h-84v172h-172v84h172v172h84v-172h172zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "add_box"
- ],
- "defaultCode": 57670,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 20,
- "ligatures": "add_box",
- "id": 16,
- "prevSize": 24,
- "name": "add_box",
- "code": 57670
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 16
- },
- {
- "icon": {
- "paths": [
- "M726 554v-84h-172v-172h-84v172h-172v84h172v172h84v-172h172zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "add_circle"
- ],
- "defaultCode": 57671,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 21,
- "ligatures": "add_circle",
- "id": 17,
- "prevSize": 24,
- "name": "add_circle",
- "code": 57671
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 17
- },
- {
- "icon": {
- "paths": [
- "M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM554 298v172h172v84h-172v172h-84v-172h-172v-84h172v-172h84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "control_point"
- ],
- "defaultCode": 58298,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 22,
- "ligatures": "add_circle_outline, control_point",
- "id": 18,
- "prevSize": 24,
- "name": "control_point",
- "code": 58298
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 18
- },
- {
- "icon": {
- "paths": [
- "M682 426v-84h-128v-128h-84v128h-128v84h128v128h84v-128h128zM512 86c164 0 298 134 298 298 0 224-298 554-298 554s-298-330-298-554c0-164 134-298 298-298z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "add_location"
- ],
- "defaultCode": 58727,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 23,
- "ligatures": "add_location",
- "id": 19,
- "prevSize": 24,
- "name": "add_location",
- "code": 58727
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 19
- },
- {
- "icon": {
- "paths": [
- "M306 630c0 6 4 10 10 10h494v86h-512c-46 0-84-40-84-86 0-14 4-28 10-40l58-106-154-324h-86v-84h140c27.003 56.33 53.665 113.001 80 170 34.063 71.271 67.603 143.063 102 214h300c54.786-99.881 110.533-198.8 164-300l74 42-164 298c-14 26-42 44-74 44h-318l-38 70zM726 768c46 0 84 40 84 86s-38 84-84 84-86-38-86-84 40-86 86-86zM298 768c46 0 86 40 86 86s-40 84-86 84-84-38-84-84 38-86 84-86zM470 384v-128h-128v-86h128v-128h84v128h128v86h-128v128h-84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "add_shopping_cart"
- ],
- "defaultCode": 59476,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 24,
- "ligatures": "add_shopping_cart",
- "id": 20,
- "prevSize": 24,
- "name": "add_shopping_cart",
- "code": 59476
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 20
- },
- {
- "icon": {
- "paths": [
- "M810 470v-86h-170v-170h-86v170h-170v86h170v170h86v-170h170zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-512c-46 0-86-40-86-86v-512c0-46 40-84 86-84h512zM170 256v598h598v84h-598c-46 0-84-38-84-84v-598h84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "queue"
- ],
- "defaultCode": 57404,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 25,
- "ligatures": "add_to_photos, library_add, queue",
- "id": 21,
- "prevSize": 24,
- "name": "queue",
- "code": 57404
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 21
- },
- {
- "icon": {
- "paths": [
- "M682 426v86h-128v128h-84v-128h-128v-86h128v-128h84v128h128zM896 726v-512h-768v512h768zM896 128c46 0 86 38 86 86l-2 512c0 46-38 84-84 84h-214v86h-340v-86h-214c-48 0-86-38-86-84v-512c0-48 38-86 86-86h768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "add_to_queue"
- ],
- "defaultCode": 57436,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 26,
- "ligatures": "add_to_queue",
- "id": 22,
- "prevSize": 24,
- "name": "add_to_queue",
- "code": 57436
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 22
- },
- {
- "icon": {
- "paths": [
- "M640 512c0 70-58 128-128 128s-128-58-128-128 58-128 128-128 128 58 128 128zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "adjust"
- ],
- "defaultCode": 58270,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 27,
- "ligatures": "adjust",
- "id": 23,
- "prevSize": 24,
- "name": "adjust",
- "code": 58270
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 23
- },
- {
- "icon": {
- "paths": [
- "M304 516c-50 50-130 52-180 2s-52-130-2-180 130-52 180-2 52 130 2 180zM86 598h852v84h-256v86h-340v-86h-256v-84zM938 470v84h-554v-256h384c94 0 170 78 170 172z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "airline_seat_flat"
- ],
- "defaultCode": 58928,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 28,
- "ligatures": "airline_seat_flat",
- "id": 24,
- "prevSize": 24,
- "name": "airline_seat_flat",
- "code": 58928
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 24
- },
- {
- "icon": {
- "paths": [
- "M312 436c-64 30-142 4-172-60s-4-142 60-172 142-4 172 60 4 142-60 172zM64 518l30-80 810 292-28 80-194-68v68h-340v-192zM950 610l-30 80-528-190 90-242 364 132c90 32 136 130 104 220z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "airline_seat_flat_angled"
- ],
- "defaultCode": 58929,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 29,
- "ligatures": "airline_seat_flat_angled",
- "id": 25,
- "prevSize": 24,
- "name": "airline_seat_flat_angled",
- "code": 58929
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 25
- },
- {
- "icon": {
- "paths": [
- "M810 298c94 0 172 78 172 172v256h-940v-428h86v300h342v-300h340zM298 554c-70 0-128-58-128-128s58-128 128-128 128 58 128 128-58 128-128 128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "airline_seat_individual_suite"
- ],
- "defaultCode": 58930,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 30,
- "ligatures": "airline_seat_individual_suite",
- "id": 26,
- "prevSize": 24,
- "name": "airline_seat_individual_suite",
- "code": 58930
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 26
- },
- {
- "icon": {
- "paths": [
- "M974 736c18 32 2 72-30 88l-158 72-146-298h-298c-70 0-128-58-128-128v-342h256v256h150c32 0 62 18 76 48l144 298 48-22c32-14 70-2 86 28zM170 512c0 70 58 128 128 128h256v86h-256c-118 0-212-96-212-214v-384h84v384z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "airline_seat_legroom_extra"
- ],
- "defaultCode": 58931,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 31,
- "ligatures": "airline_seat_legroom_extra",
- "id": 27,
- "prevSize": 24,
- "name": "airline_seat_legroom_extra",
- "code": 58931
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 27
- },
- {
- "icon": {
- "paths": [
- "M874 768c36 0 64 28 64 64s-28 64-64 64h-192v-298h-298c-70 0-128-58-128-128v-342h256v256h214c46 0 84 40 84 86v298h64zM214 512c0 70 58 128 128 128h256v86h-256c-118 0-214-96-214-214v-384h86v384z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "airline_seat_legroom_normal"
- ],
- "defaultCode": 58932,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 32,
- "ligatures": "airline_seat_legroom_normal",
- "id": 28,
- "prevSize": 24,
- "name": "airline_seat_legroom_normal",
- "code": 58932
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 28
- },
- {
- "icon": {
- "paths": [
- "M214 512c0 70 58 128 128 128h170v86h-170c-118 0-214-96-214-214v-384h86v384zM852 820c8 40-22 76-62 76h-192v-128l42-170h-256c-70 0-128-58-128-128v-342h256v256h214c46 0 84 40 84 86l-84 298h60c32 0 60 22 66 52z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "airline_seat_legroom_reduced"
- ],
- "defaultCode": 58933,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 33,
- "ligatures": "airline_seat_legroom_reduced",
- "id": 29,
- "prevSize": 24,
- "name": "airline_seat_legroom_reduced",
- "code": 58933
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 29
- },
- {
- "icon": {
- "paths": [
- "M692 640l246 192-64 64-162-128h-292c-62 0-114-44-126-104l-58-252c-8-52 26-102 78-112h2c30.359-4.337 56.628 4.102 74 18l70 54c54 42 130 68 200 54v92c-80 14-152-14-220-52l44 174h208zM682 810v86h-300c-106 0-196-76-212-180l-84-418h84l84 404c10 62 64 108 128 108h300zM228 240c-38-28-46-80-20-118s80-48 118-22c38 28 48 82 22 120-28 38-82 46-120 20z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "airline_seat_recline_extra"
- ],
- "defaultCode": 58934,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 34,
- "ligatures": "airline_seat_recline_extra",
- "id": 30,
- "prevSize": 24,
- "name": "airline_seat_recline_extra",
- "code": 58934
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 30
- },
- {
- "icon": {
- "paths": [
- "M854 856l-62 62-150-150h-216c-70 0-128-58-128-128v-246c0-52 44-96 96-96h2c29.673 0 54.798 16.798 70 32l60 66c46 50 130 86 200 86v94c-82 0-176-44-236-94v158h148zM256 682c0 70 58 128 128 128h256v86h-256c-118 0-214-96-214-214v-384h86v384zM324 230c-34-34-34-86 0-120s86-34 120 0 34 86 0 120-86 34-120 0z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "airline_seat_recline_normal"
- ],
- "defaultCode": 58935,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 35,
- "ligatures": "airline_seat_recline_normal",
- "id": 31,
- "prevSize": 24,
- "name": "airline_seat_recline_normal",
- "code": 58935
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 31
- },
- {
- "icon": {
- "paths": [
- "M896 682l-342-106v234l86 64v64l-150-42-148 42v-64l84-64v-234l-340 106v-84l340-214v-234c0-36 28-64 64-64s64 28 64 64v234l342 214v84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "flight"
- ],
- "defaultCode": 58681,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 36,
- "ligatures": "airplanemode_active, flight",
- "id": 32,
- "prevSize": 24,
- "name": "flight",
- "code": 58681
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 32
- },
- {
- "icon": {
- "paths": [
- "M128 224l54-54 672 672-54 54-246-244v158l86 64v64l-150-42-148 42v-64l84-64v-234l-340 106v-84l254-160zM554 384l342 214v84l-136-42-334-334v-156c0-36 28-64 64-64s64 28 64 64v234z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "airplanemode_inactive"
- ],
- "defaultCode": 57748,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 37,
- "ligatures": "airplanemode_inactive",
- "id": 33,
- "prevSize": 24,
- "name": "airplanemode_inactive",
- "code": 57748
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 33
- },
- {
- "icon": {
- "paths": [
- "M896 128c46 0 86 40 86 86v512c0 46-40 84-86 84h-170v-84h170v-512h-768v512h170v84h-170c-46 0-86-38-86-84v-512c0-46 40-86 86-86h768zM256 938l256-256 256 256h-512z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "airplay"
- ],
- "defaultCode": 57429,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 38,
- "ligatures": "airplay",
- "id": 34,
- "prevSize": 24,
- "name": "airplay",
- "code": 57429
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 34
- },
- {
- "icon": {
- "paths": [
- "M640 470h214l-172-172h-42v172zM746 746c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM554 470v-172h-170v172h170zM256 746c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM128 470h170v-172h-170v172zM726 214l256 256v212h-108c0 70-58 128-128 128s-128-58-128-128h-234c0 70-58 128-128 128s-128-58-128-128h-86v-384c0-48 40-84 86-84h598z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "airport_shuttle"
- ],
- "defaultCode": 60220,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 39,
- "ligatures": "airport_shuttle",
- "id": 35,
- "prevSize": 24,
- "name": "airport_shuttle",
- "code": 60220
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 35
- },
- {
- "icon": {
- "paths": [
- "M342 140l-36 30-62-60 38-30zM702 784l-420-420c-42 52-68 118-68 190 0 166 132 300 298 300 72 0 138-28 190-70zM124 98c262.552 262.114 525.354 523.98 788 786l-54 54-94-94c-68 58-156 94-252 94-212 0-384-172-384-384 0-96 36-182 94-250l-34-34-48 40-60-62 48-38-58-58zM938 244l-54 66-196-166 54-64zM512 256c-36 0-70 6-102 18l-66-64c50-24 108-40 168-40 212 0 384 172 384 384 0 60-14 118-38 168l-66-64c12-32 18-68 18-104 0-166-132-298-298-298z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "alarm_off"
- ],
- "defaultCode": 59479,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 40,
- "ligatures": "alarm_off",
- "id": 36,
- "prevSize": 24,
- "name": "alarm_off",
- "code": 59479
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 36
- },
- {
- "icon": {
- "paths": [
- "M450 620l210-212 46 46-256 256-136-136 44-44zM512 854c166 0 298-134 298-300s-132-298-298-298-298 132-298 298 132 300 298 300zM512 170c212 0 384 172 384 384s-172 384-384 384-384-172-384-384 172-384 384-384zM336 144l-196 164-54-64 196-164zM938 244l-54 66-196-166 54-64z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "alarm_on"
- ],
- "defaultCode": 59480,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 41,
- "ligatures": "alarm_on",
- "id": 37,
- "prevSize": 24,
- "name": "alarm_on",
- "code": 59480
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 37
- },
- {
- "icon": {
- "paths": [
- "M512 470c24 0 42 18 42 42s-18 42-42 42-42-18-42-42 18-42 42-42zM512 704c106 0 192-86 192-192s-86-192-192-192-192 86-192 192 86 192 192 192zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "album"
- ],
- "defaultCode": 57369,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 42,
- "ligatures": "album",
- "id": 38,
- "prevSize": 24,
- "name": "album",
- "code": 57369
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 38
- },
- {
- "icon": {
- "paths": [
- "M794 282c128 0 230 104 230 230s-102 230-230 230c-62 0-120-24-164-68l-54-48 64-56 50 42c30 30 66 44 104 44 80 0 144-64 144-144s-64-144-144-144c-38 0-74 14-102 42-60.266 53.067-120.945 105.722-180 160l-120 106c-42 42-100 66-162 66-128 0-230-104-230-230s102-230 230-230c62 0 120 24 164 68l54 48-66 56-48-42c-30-30-66-44-104-44-80 0-144 64-144 144s64 144 144 144c38 0 74-14 102-42 60.266-53.067 120.945-105.722 180-160l120-106c42-42 100-66 162-66z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "all_inclusive"
- ],
- "defaultCode": 60221,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 43,
- "ligatures": "all_inclusive",
- "id": 39,
- "prevSize": 24,
- "name": "all_inclusive",
- "code": 60221
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 39
- },
- {
- "icon": {
- "paths": [
- "M686 684c90-90 90-240 0-330s-240-90-330 0-90 240 0 330 240 90 330 0zM732 308c116 116 116 306 0 422s-306 116-422 0-116-306 0-422 306-116 422 0zM180 348v-170h170zM350 860h-170v-170zM862 690v170h-170zM692 178h170v170z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "all_out"
- ],
- "defaultCode": 59659,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 44,
- "ligatures": "all_out",
- "id": 40,
- "prevSize": 24,
- "name": "all_out",
- "code": 59659
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 40
- },
- {
- "icon": {
- "paths": [
- "M640 214v-44h-42v44h42zM426 214v-44h-42v44h42zM662 92c64 46 106 122 106 206h-512c0-84 40-160 104-206l-56-56c-8-8-8-22 0-30s22-8 30 0l64 64c34-18 74-28 114-28s78 10 112 28l64-64c8-8 22-8 30 0s8 22 0 30zM874 342c36 0 64 28 64 64v298c0 36-28 64-64 64s-64-28-64-64v-298c0-36 28-64 64-64zM150 342c36 0 64 28 64 64v298c0 36-28 64-64 64s-64-28-64-64v-298c0-36 28-64 64-64zM256 768v-426h512v426c0 24-18 42-42 42h-44v150c0 36-28 64-64 64s-64-28-64-64v-150h-84v150c0 36-28 64-64 64s-64-28-64-64v-150h-44c-24 0-42-18-42-42z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "android"
- ],
- "defaultCode": 59481,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 45,
- "ligatures": "android",
- "id": 41,
- "prevSize": 24,
- "name": "android",
- "code": 59481
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 41
- },
- {
- "icon": {
- "paths": [
- "M554 640v-86h-84v86h84zM554 470v-256h-84v256h84zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "announcement"
- ],
- "defaultCode": 59482,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 46,
- "ligatures": "announcement",
- "id": 42,
- "prevSize": 24,
- "name": "announcement",
- "code": 59482
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 42
- },
- {
- "icon": {
- "paths": [
- "M682 854v-172h172v172h-172zM682 598v-172h172v172h-172zM426 342v-172h172v172h-172zM682 170h172v172h-172v-172zM426 598v-172h172v172h-172zM170 598v-172h172v172h-172zM170 854v-172h172v172h-172zM426 854v-172h172v172h-172zM170 342v-172h172v172h-172z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "apps"
- ],
- "defaultCode": 58819,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 47,
- "ligatures": "apps",
- "id": 43,
- "prevSize": 24,
- "name": "apps",
- "code": 58819
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 43
- },
- {
- "icon": {
- "paths": [
- "M218 214h588l-40-44h-512zM512 746l234-234h-148v-86h-172v86h-148zM876 224c12 14 20 34 20 54v532c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-532c0-20 8-40 20-54l58-72c12-14 30-24 50-24h512c20 0 38 10 50 24z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "archive"
- ],
- "defaultCode": 57673,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 48,
- "ligatures": "archive",
- "id": 44,
- "prevSize": 24,
- "name": "archive",
- "code": 57673
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 44
- },
- {
- "icon": {
- "paths": [
- "M854 470v84h-520l238 240-60 60-342-342 342-342 60 60-238 240h520z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "arrow_back"
- ],
- "defaultCode": 58820,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 49,
- "ligatures": "arrow_back",
- "id": 45,
- "prevSize": 24,
- "name": "arrow_back",
- "code": 58820
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 45
- },
- {
- "icon": {
- "paths": [
- "M854 512l-342 342-342-342 62-60 238 238v-520h84v520l240-238z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "arrow_downward"
- ],
- "defaultCode": 58843,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 50,
- "ligatures": "arrow_downward",
- "id": 46,
- "prevSize": 24,
- "name": "arrow_downward",
- "code": 58843
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 46
- },
- {
- "icon": {
- "paths": [
- "M298 426h428l-214 214z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "arrow_drop_down"
- ],
- "defaultCode": 58821,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 51,
- "ligatures": "arrow_drop_down",
- "id": 47,
- "prevSize": 24,
- "name": "arrow_drop_down",
- "code": 58821
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 47
- },
- {
- "icon": {
- "paths": [
- "M512 598l170-172h-340zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "arrow_drop_down_circle"
- ],
- "defaultCode": 58822,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 52,
- "ligatures": "arrow_drop_down_circle",
- "id": 48,
- "prevSize": 24,
- "name": "arrow_drop_down_circle",
- "code": 58822
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 48
- },
- {
- "icon": {
- "paths": [
- "M298 598l214-214 214 214h-428z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "arrow_drop_up"
- ],
- "defaultCode": 58823,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 53,
- "ligatures": "arrow_drop_up",
- "id": 49,
- "prevSize": 24,
- "name": "arrow_drop_up",
- "code": 58823
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 49
- },
- {
- "icon": {
- "paths": [
- "M512 170l342 342-342 342-60-60 238-240h-520v-84h520l-238-240z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "arrow_forward"
- ],
- "defaultCode": 58824,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 54,
- "ligatures": "arrow_forward",
- "id": 50,
- "prevSize": 24,
- "name": "arrow_forward",
- "code": 58824
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 50
- },
- {
- "icon": {
- "paths": [
- "M170 512l342-342 342 342-62 60-238-238v520h-84v-520l-240 238z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "arrow_upward"
- ],
- "defaultCode": 58840,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 55,
- "ligatures": "arrow_upward",
- "id": 51,
- "prevSize": 24,
- "name": "arrow_upward",
- "code": 58840
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 51
- },
- {
- "icon": {
- "paths": [
- "M448 640l-96-128-74 96-54-64-74 96h298zM512 384v256c0 46-40 86-86 86h-256c-46 0-84-40-84-86v-256c0-46 38-86 84-86h256c46 0 86 40 86 86zM598 726v-86h340v86h-340zM938 298v86h-340v-86h340zM938 554h-340v-84h340v84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "art_track"
- ],
- "defaultCode": 57440,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 56,
- "ligatures": "art_track",
- "id": 52,
- "prevSize": 24,
- "name": "art_track",
- "code": 57440
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 52
- },
- {
- "icon": {
- "paths": [
- "M896 812v-600h-768v600h768zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768zM298 384v128h-84v-214h212v86h-128zM810 512v214h-212v-86h128v-128h84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "aspect_ratio"
- ],
- "defaultCode": 59483,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 57,
- "ligatures": "aspect_ratio",
- "id": 53,
- "prevSize": 24,
- "name": "aspect_ratio",
- "code": 59483
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 53
- },
- {
- "icon": {
- "paths": [
- "M726 726v-172h-86v172h86zM554 726v-428h-84v428h84zM384 726v-300h-86v300h86zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "poll"
- ],
- "defaultCode": 59393,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 58,
- "ligatures": "assessment, insert_chart, poll",
- "id": 54,
- "prevSize": 24,
- "name": "poll",
- "code": 59393
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 54
- },
- {
- "icon": {
- "paths": [
- "M726 384v-86h-428v86h428zM726 554v-84h-428v84h428zM598 726v-86h-300v86h300zM512 128c-24 0-42 18-42 42s18 44 42 44 42-20 42-44-18-42-42-42zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h178c18-50 64-86 120-86s102 36 120 86h178z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "assignment"
- ],
- "defaultCode": 59485,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 59,
- "ligatures": "assignment",
- "id": 55,
- "prevSize": 24,
- "name": "assignment",
- "code": 59485
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 55
- },
- {
- "icon": {
- "paths": [
- "M768 810v-60c0-86-170-132-256-132s-256 46-256 132v60h512zM512 298c-70 0-128 58-128 128s58 128 128 128 128-58 128-128-58-128-128-128zM512 128c-24 0-42 18-42 42s18 44 42 44 42-20 42-44-18-42-42-42zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h178c18-50 64-86 120-86s102 36 120 86h178z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "assignment_ind"
- ],
- "defaultCode": 59486,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 60,
- "ligatures": "assignment_ind",
- "id": 56,
- "prevSize": 24,
- "name": "assignment_ind",
- "code": 59486
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 56
- },
- {
- "icon": {
- "paths": [
- "M512 214c24 0 42-20 42-44s-18-42-42-42-42 18-42 42 18 44 42 44zM554 598v-256h-84v256h84zM554 768v-86h-84v86h84zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h178c18-50 64-86 120-86s102 36 120 86h178z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "assignment_late"
- ],
- "defaultCode": 59487,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 61,
- "ligatures": "assignment_late",
- "id": 57,
- "prevSize": 24,
- "name": "assignment_late",
- "code": 59487
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 57
- },
- {
- "icon": {
- "paths": [
- "M682 640v-170h-170v-128l-214 212 214 214v-128h170zM512 128c-24 0-42 18-42 42s18 44 42 44 42-20 42-44-18-42-42-42zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h178c18-50 64-86 120-86s102 36 120 86h178z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "assignment_return"
- ],
- "defaultCode": 59488,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 62,
- "ligatures": "assignment_return",
- "id": 58,
- "prevSize": 24,
- "name": "assignment_return",
- "code": 59488
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 58
- },
- {
- "icon": {
- "paths": [
- "M512 768l214-214h-128v-170h-172v170h-128zM512 128c-24 0-42 18-42 42s18 44 42 44 42-20 42-44-18-42-42-42zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h178c18-50 64-86 120-86s102 36 120 86h178z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "assignment_returned"
- ],
- "defaultCode": 59489,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 63,
- "ligatures": "assignment_returned",
- "id": 59,
- "prevSize": 24,
- "name": "assignment_returned",
- "code": 59489
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 59
- },
- {
- "icon": {
- "paths": [
- "M426 726l342-342-60-60-282 280-110-110-60 60zM512 128c-24 0-42 18-42 42s18 44 42 44 42-20 42-44-18-42-42-42zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h178c18-50 64-86 120-86s102 36 120 86h178z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "assignment_turned_in"
- ],
- "defaultCode": 59490,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 64,
- "ligatures": "assignment_turned_in",
- "id": 60,
- "prevSize": 24,
- "name": "assignment_turned_in",
- "code": 59490
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 60
- },
- {
- "icon": {
- "paths": [
- "M592 550l176-80-176-80-80-176-80 176-176 80 176 80 80 176zM810 86c46 0 86 38 86 84v598c0 46-40 86-86 86h-170l-128 128-128-128h-170c-46 0-86-40-86-86v-598c0-46 40-84 86-84h596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "assistant"
- ],
- "defaultCode": 58271,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 65,
- "ligatures": "assistant",
- "id": 61,
- "prevSize": 24,
- "name": "assistant",
- "code": 58271
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 61
- },
- {
- "icon": {
- "paths": [
- "M614 256h240v426h-300l-16-84h-240v298h-84v-726h384z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "flag"
- ],
- "defaultCode": 57683,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 66,
- "ligatures": "assistant_photo, flag",
- "id": 62,
- "prevSize": 24,
- "name": "flag",
- "code": 57683
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 62
- },
- {
- "icon": {
- "paths": [
- "M704 256h64v490c0 130-104 236-234 236s-236-106-236-236v-532c0-94 78-172 172-172s170 78 170 172v448c0 58-48 106-106 106s-108-48-108-106v-406h64v406c0 24 20 42 44 42s42-18 42-42v-448c0-58-48-108-106-108s-108 50-108 108v532c0 94 78 172 172 172s170-78 170-172v-490z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "attach_file"
- ],
- "defaultCode": 57894,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 67,
- "ligatures": "attach_file",
- "id": 63,
- "prevSize": 24,
- "name": "attach_file",
- "code": 57894
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 63
- },
- {
- "icon": {
- "paths": [
- "M504 466c96 26 200 64 200 186 0 88-66 136-150 152v92h-128v-92c-82-18-150-70-156-164h94c4 50 38 90 126 90 94 0 116-46 116-76 0-40-22-78-128-104-120-28-200-78-200-176 0-82 66-136 148-154v-92h128v94c90 22 136 88 138 162h-94c-2-54-32-90-108-90-72 0-114 34-114 80 0 40 32 66 128 92z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "attach_money"
- ],
- "defaultCode": 57895,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 68,
- "ligatures": "attach_money",
- "id": 64,
- "prevSize": 24,
- "name": "attach_money",
- "code": 57895
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 64
- },
- {
- "icon": {
- "paths": [
- "M86 534c0-130 104-236 234-236h448c94 0 170 78 170 172s-76 170-170 170h-362c-58 0-108-48-108-106s50-108 108-108h320v86h-324c-24 0-24 42 0 42h366c46 0 86-38 86-84s-40-86-86-86h-448c-82 0-150 68-150 150s68 148 150 148h406v86h-406c-130 0-234-104-234-234z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "attachment"
- ],
- "defaultCode": 58044,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 69,
- "ligatures": "attachment",
- "id": 65,
- "prevSize": 24,
- "name": "attachment",
- "code": 58044
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 65
- },
- {
- "icon": {
- "paths": [
- "M512 128h298v128h-170v470h-2c-10 96-92 170-190 170-106 0-192-86-192-192s86-192 192-192c22 0 44 4 64 12v-396z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "audiotrack"
- ],
- "defaultCode": 58273,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 70,
- "ligatures": "audiotrack",
- "id": 66,
- "prevSize": 24,
- "name": "audiotrack",
- "code": 58273
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 66
- },
- {
- "icon": {
- "paths": [
- "M800 330c34 52 54 116 54 182 0 188-154 342-342 342v128l-170-172 170-170v128c142 0 256-114 256-256 0-44-12-84-30-120zM512 256c-142 0-256 114-256 256 0 44 10 84 30 120l-62 62c-34-52-54-116-54-182 0-188 154-342 342-342v-128l170 172-170 170v-128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "autorenew"
- ],
- "defaultCode": 59491,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 71,
- "ligatures": "autorenew",
- "id": 67,
- "prevSize": 24,
- "name": "autorenew",
- "code": 59491
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 67
- },
- {
- "icon": {
- "paths": [
- "M256 512c0-24 18-42 42-42s44 18 44 42-20 42-44 42-42-18-42-42zM768 512c0 24-18 42-42 42s-44-18-44-42 20-42 44-42 42 18 42 42zM470 128h42c212 0 384 172 384 384s-172 384-384 384-384-172-384-384c0-126 60-236 154-306v-2l290 290-60 60-232-230c-42 52-66 116-66 188 0 166 132 298 298 298s298-132 298-298c0-150-112-276-256-296v82h-84v-170zM470 726c0-24 18-44 42-44s42 20 42 44-18 42-42 42-42-18-42-42z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "av_timer"
- ],
- "defaultCode": 57371,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 72,
- "ligatures": "av_timer",
- "id": 68,
- "prevSize": 24,
- "name": "av_timer",
- "code": 57371
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 68
- },
- {
- "icon": {
- "paths": [
- "M810 666l-152-154 152-154-60-60-152 154-154-154-60 60 154 154-154 154 60 60 154-154 152 154zM938 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-640c-30 0-52-16-68-38l-230-346 230-346c16-22 38-38 68-38h640z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "backspace"
- ],
- "defaultCode": 57674,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 73,
- "ligatures": "backspace",
- "id": 69,
- "prevSize": 24,
- "name": "backspace",
- "code": 57674
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 69
- },
- {
- "icon": {
- "paths": [
- "M598 554h128l-214-212-214 212h128v172h172v-172zM826 428c110 8 198 100 198 212 0 118-96 214-214 214h-554c-142 0-256-114-256-256 0-132 100-240 228-254 54-102 160-174 284-174 156 0 284 110 314 258z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "cloud_upload"
- ],
- "defaultCode": 58051,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 74,
- "ligatures": "backup, cloud_upload",
- "id": 70,
- "prevSize": 24,
- "name": "cloud_upload",
- "code": 58051
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 70
- },
- {
- "icon": {
- "paths": [
- "M554 598v-214h-84v214h84zM554 768v-86h-84v86h84zM668 170c32 0 58 26 58 58v654c0 32-26 56-58 56h-312c-32 0-58-24-58-56v-654c0-32 26-58 58-58h70v-84h172v84h70z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "battery_alert"
- ],
- "defaultCode": 57756,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 75,
- "ligatures": "battery_alert",
- "id": 71,
- "prevSize": 24,
- "name": "battery_alert",
- "code": 57756
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 71
- },
- {
- "icon": {
- "paths": [
- "M470 854l170-320h-86v-236l-170 320h86v236zM668 170c32 0 58 26 58 58v654c0 32-26 56-58 56h-312c-32 0-58-24-58-56v-654c0-32 26-58 58-58h70v-84h172v84h70z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "battery_charging_full"
- ],
- "defaultCode": 57763,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 76,
- "ligatures": "battery_charging_full",
- "id": 72,
- "prevSize": 24,
- "name": "battery_charging_full",
- "code": 57763
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 72
- },
- {
- "icon": {
- "paths": [
- "M668 170c32 0 58 26 58 58v654c0 32-26 56-58 56h-312c-32 0-58-24-58-56v-654c0-32 26-58 58-58h70v-84h172v84h70z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "battery_std"
- ],
- "defaultCode": 57765,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 77,
- "ligatures": "battery_full, battery_std",
- "id": 73,
- "prevSize": 24,
- "name": "battery_std",
- "code": 57765
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 73
- },
- {
- "icon": {
- "paths": [
- "M610 542c18-18 30-44 30-72 0-70-58-128-128-128s-128 58-128 128h64c0-36 28-64 64-64s64 28 64 64c0 18-6 32-18 44l-40 40c-20 20-40 50-40 86h68c0-20 16-48 36-68 12-12 28-30 28-30zM552 766v-82h-80v82h80zM668 170c32 0 58 26 58 58v654c0 32-26 56-58 56h-312c-32 0-58-24-58-56v-654c0-32 26-58 58-58h70v-84h172v84h70z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "battery_unknown"
- ],
- "defaultCode": 57766,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 78,
- "ligatures": "battery_unknown",
- "id": 74,
- "prevSize": 24,
- "name": "battery_unknown",
- "code": 57766
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 74
- },
- {
- "icon": {
- "paths": [
- "M744 376c-133.701-133.701-319.17-177.803-486.874-122.374 127.568-14.55 291.962 51.462 424.874 184.374l-244 244c-132.912-132.912-198.924-297.306-184.374-424.874-55.43 167.705-11.327 353.174 122.374 486.874l-122 122c-167.908-167.908-168-441.7-0.275-609.724 0.259-2.212 0.333-2.291 2.551-2.551 168.024-167.725 441.816-167.633 609.724 0.275zM560 622l62-62 274 276-62 60z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "beach_access"
- ],
- "defaultCode": 60222,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 79,
- "ligatures": "beach_access",
- "id": 75,
- "prevSize": 24,
- "name": "beach_access",
- "code": 60222
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 75
- },
- {
- "icon": {
- "paths": [
- "M426 682l384-384-60-60-324 324-152-152-60 60zM810 42c46 0 86 40 86 86v552c0 30-16 54-38 70l-346 232-346-232c-22-16-38-40-38-70v-552c0-46 40-86 86-86h596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "beenhere"
- ],
- "defaultCode": 58669,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 80,
- "ligatures": "beenhere",
- "id": 76,
- "prevSize": 24,
- "name": "beenhere",
- "code": 58669
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 76
- },
- {
- "icon": {
- "paths": [
- "M512 854c188 0 342-154 342-342 0-78-26-152-72-210l-480 480c58 46 132 72 210 72zM170 512c0 78 26 152 72 210l480-480c-58-46-132-72-210-72-188 0-342 154-342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "block"
- ],
- "defaultCode": 57675,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 81,
- "ligatures": "block",
- "id": 77,
- "prevSize": 24,
- "name": "block",
- "code": 57675
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 77
- },
- {
- "icon": {
- "paths": [
- "M634 696l-80-82v162zM554 248v162l80-82zM756 328l-184 184 184 184-244 242h-42v-324l-196 196-60-60 238-238-238-238 60-60 196 196v-324h42z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "bluetooth"
- ],
- "defaultCode": 57767,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 82,
- "ligatures": "bluetooth",
- "id": 78,
- "prevSize": 24,
- "name": "bluetooth",
- "code": 57767
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 78
- },
- {
- "icon": {
- "paths": [
- "M550 696l-80-82v162zM470 248v162l80-82zM670 328l-184 184 184 184-244 242h-42v-324l-196 196-60-60 238-238-238-238 60-60 196 196v-324h42zM834 286c40 64 62 142 62 222 0 84-24 160-66 226l-50-50c26-52 42-110 42-172s-16-120-42-172zM608 512l98-98c12 30 20 64 20 98s-8 70-20 100z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "bluetooth_searching"
- ],
- "defaultCode": 57770,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 83,
- "ligatures": "bluetooth_audio, bluetooth_searching",
- "id": 79,
- "prevSize": 24,
- "name": "bluetooth_searching",
- "code": 57770
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 79
- },
- {
- "icon": {
- "paths": [
- "M810 426l86 86-86 86-84-86zM634 696l-80-82v162zM554 248v162l80-82zM756 328l-184 184 184 184-244 242h-42v-324l-196 196-60-60 238-238-238-238 60-60 196 196v-324h42zM298 512l-84 86-86-86 86-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "bluetooth_connected"
- ],
- "defaultCode": 57768,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 84,
- "ligatures": "bluetooth_connected",
- "id": 80,
- "prevSize": 24,
- "name": "bluetooth_connected",
- "code": 57768
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 80
- },
- {
- "icon": {
- "paths": [
- "M554 776l80-80-80-82v162zM230 170l624 624-60 60-98-98-184 182h-42v-324l-196 196-60-60 238-238-282-282zM554 248v138l-84-86v-214h42l244 242-130 130-60-60 68-70z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "bluetooth_disabled"
- ],
- "defaultCode": 57769,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 85,
- "ligatures": "bluetooth_disabled",
- "id": 81,
- "prevSize": 24,
- "name": "bluetooth_disabled",
- "code": 57769
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 81
- },
- {
- "icon": {
- "paths": [
- "M598 554c24 0 42 20 42 44s-18 42-42 42-44-18-44-42 20-44 44-44zM598 704c12 0 20 10 20 22s-8 20-20 20-22-8-22-20 10-22 22-22zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM726 406c12 0 20 8 20 20s-8 22-20 22-22-10-22-22 10-20 22-20zM726 576c12 0 20 10 20 22s-8 20-20 20-22-8-22-20 10-22 22-22zM598 320c-12 0-22-10-22-22s10-20 22-20 20 8 20 20-8 22-20 22zM598 384c24 0 42 18 42 42s-18 44-42 44-44-20-44-44 20-42 44-42zM426 320c-12 0-20-10-20-22s8-20 20-20 22 8 22 20-10 22-22 22zM298 576c12 0 22 10 22 22s-10 20-22 20-20-8-20-20 8-22 20-22zM426 704c12 0 22 10 22 22s-10 20-22 20-20-8-20-20 8-22 20-22zM298 406c12 0 22 8 22 20s-10 22-22 22-20-10-20-22 8-20 20-20zM426 554c24 0 44 20 44 44s-20 42-44 42-42-18-42-42 18-44 42-44zM426 384c24 0 44 18 44 42s-20 44-44 44-42-20-42-44 18-42 42-42z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "blur_circular"
- ],
- "defaultCode": 58274,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 86,
- "ligatures": "blur_circular",
- "id": 82,
- "prevSize": 24,
- "name": "blur_circular",
- "code": 58274
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 82
- },
- {
- "icon": {
- "paths": [
- "M554 726c-24 0-42-20-42-44s18-42 42-42 44 18 44 42-20 44-44 44zM554 554c-24 0-42-18-42-42s18-42 42-42 44 18 44 42-20 42-44 42zM554 384c-24 0-42-18-42-42s18-44 42-44 44 20 44 44-20 42-44 42zM726 534c-12 0-22-10-22-22s10-22 22-22 20 10 20 22-8 22-20 22zM726 362c-12 0-22-8-22-20s10-22 22-22 20 10 20 22-8 20-20 20zM128 128h768v86h-768v-86zM726 704c-12 0-22-10-22-22s10-20 22-20 20 8 20 20-8 22-20 22zM384 726c-24 0-42-20-42-44s18-42 42-42 42 18 42 42-18 44-42 44zM214 576c-36 0-64-28-64-64s28-64 64-64 64 28 64 64-28 64-64 64zM214 406c-36 0-64-28-64-64s28-64 64-64 64 28 64 64-28 64-64 64zM128 896v-86h768v86h-768zM384 384c-24 0-42-18-42-42s18-44 42-44 42 20 42 44-18 42-42 42zM384 554c-24 0-42-18-42-42s18-42 42-42 42 18 42 42-18 42-42 42zM214 746c-36 0-64-28-64-64s28-64 64-64 64 28 64 64-28 64-64 64z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "blur_linear"
- ],
- "defaultCode": 58275,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 87,
- "ligatures": "blur_linear",
- "id": 83,
- "prevSize": 24,
- "name": "blur_linear",
- "code": 58275
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 83
- },
- {
- "icon": {
- "paths": [
- "M128 576c12 0 22 10 22 22s-10 20-22 20-22-8-22-20 10-22 22-22zM256 726c24 0 42 18 42 42s-18 42-42 42-42-18-42-42 18-42 42-42zM426 874c12 0 22 10 22 22s-10 22-22 22-20-10-20-22 8-22 20-22zM128 406c12 0 22 8 22 20s-10 22-22 22-22-10-22-22 10-20 22-20zM256 554c24 0 42 20 42 44s-18 42-42 42-42-18-42-42 18-44 42-44zM896 576c12 0 22 10 22 22s-10 20-22 20-22-8-22-20 10-22 22-22zM426 726c24 0 44 18 44 42s-20 42-44 42-42-18-42-42 18-42 42-42zM106 224l54-54 694 694-56 54-160-162c2 4 2 8 2 12 0 24-18 42-42 42s-44-18-44-42 20-42 44-42c4 0 8 0 12 2l-120-120c-4 30-32 54-64 54-36 0-64-28-64-64 0-32 24-60 54-64l-120-120c2 4 2 8 2 12 0 24-18 44-42 44s-42-20-42-44 18-42 42-42l12 2zM598 874c12 0 20 10 20 22s-8 22-20 22-22-10-22-22 10-22 22-22zM768 298c-24 0-42-18-42-42s18-42 42-42 42 18 42 42-18 42-42 42zM768 470c-24 0-42-20-42-44s18-42 42-42 42 18 42 42-18 44-42 44zM768 640c-24 0-42-18-42-42s18-44 42-44 42 20 42 44-18 42-42 42zM426 298c-24 0-42-18-42-42s18-42 42-42 44 18 44 42-20 42-44 42zM896 448c-12 0-22-10-22-22s10-20 22-20 22 8 22 20-10 22-22 22zM426 150c-12 0-20-10-20-22s8-22 20-22 22 10 22 22-10 22-22 22zM598 150c-12 0-22-10-22-22s10-22 22-22 20 10 20 22-8 22-20 22zM588 490c-28-4-50-26-54-54v-10c0-36 28-64 64-64s64 28 64 64-28 64-64 64h-10zM598 298c-24 0-44-18-44-42s20-42 44-42 42 18 42 42-18 42-42 42z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "blur_off"
- ],
- "defaultCode": 58276,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 88,
- "ligatures": "blur_off",
- "id": 84,
- "prevSize": 24,
- "name": "blur_off",
- "code": 58276
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 84
- },
- {
- "icon": {
- "paths": [
- "M598 362c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM598 534c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM426 726c24 0 44 18 44 42s-20 42-44 42-42-18-42-42 18-42 42-42zM426 362c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM598 874c12 0 20 10 20 22s-8 22-20 22-22-10-22-22 10-22 22-22zM598 726c24 0 42 18 42 42s-18 42-42 42-44-18-44-42 20-42 44-42zM896 576c12 0 22 10 22 22s-10 20-22 20-22-8-22-20 10-22 22-22zM768 214c24 0 42 18 42 42s-18 42-42 42-42-18-42-42 18-42 42-42zM768 384c24 0 42 18 42 42s-18 44-42 44-42-20-42-44 18-42 42-42zM768 726c24 0 42 18 42 42s-18 42-42 42-42-18-42-42 18-42 42-42zM768 554c24 0 42 20 42 44s-18 42-42 42-42-18-42-42 18-44 42-44zM426 534c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM426 298c-24 0-42-18-42-42s18-42 42-42 44 18 44 42-20 42-44 42zM426 150c-12 0-20-10-20-22s8-22 20-22 22 10 22 22-10 22-22 22zM426 874c12 0 22 10 22 22s-10 22-22 22-20-10-20-22 8-22 20-22zM128 576c12 0 22 10 22 22s-10 20-22 20-22-8-22-20 10-22 22-22zM598 150c-12 0-22-10-22-22s10-22 22-22 20 10 20 22-8 22-20 22zM598 298c-24 0-44-18-44-42s20-42 44-42 42 18 42 42-18 42-42 42zM896 448c-12 0-22-10-22-22s10-20 22-20 22 8 22 20-10 22-22 22zM256 214c24 0 42 18 42 42s-18 42-42 42-42-18-42-42 18-42 42-42zM128 406c12 0 22 8 22 20s-10 22-22 22-22-10-22-22 10-20 22-20zM256 384c24 0 42 18 42 42s-18 44-42 44-42-20-42-44 18-42 42-42zM256 726c24 0 42 18 42 42s-18 42-42 42-42-18-42-42 18-42 42-42zM256 554c24 0 42 20 42 44s-18 42-42 42-42-18-42-42 18-44 42-44z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "blur_on"
- ],
- "defaultCode": 58277,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 89,
- "ligatures": "blur_on",
- "id": 85,
- "prevSize": 24,
- "name": "blur_on",
- "code": 58277
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 85
- },
- {
- "icon": {
- "paths": [
- "M256 170v342l106-64 108 64v-342h-214zM768 86c46 0 86 38 86 84v684c0 46-40 84-86 84h-512c-46 0-86-38-86-84v-684c0-46 40-84 86-84h512z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "class"
- ],
- "defaultCode": 59502,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 90,
- "ligatures": "book, class",
- "id": 86,
- "prevSize": 24,
- "name": "class",
- "code": 59502
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 86
- },
- {
- "icon": {
- "paths": [
- "M726 128c46 0 84 40 84 86v682l-298-128-298 128v-682c0-46 38-86 84-86h428z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "turned_in"
- ],
- "defaultCode": 59622,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 91,
- "ligatures": "bookmark, turned_in",
- "id": 87,
- "prevSize": 24,
- "name": "turned_in",
- "code": 59622
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 87
- },
- {
- "icon": {
- "paths": [
- "M726 768v-554h-428v554l214-94zM726 128c46 0 84 40 84 86v682l-298-128-298 128v-682c0-46 38-86 84-86h428z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "turned_in_not"
- ],
- "defaultCode": 59623,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 92,
- "ligatures": "bookmark_border, turned_in_not",
- "id": 88,
- "prevSize": 24,
- "name": "turned_in_not",
- "code": 59623
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 88
- },
- {
- "icon": {
- "paths": [
- "M810 470v-256h-256v256h256zM810 810v-256h-256v256h256zM470 470v-256h-256v256h256zM470 810v-256h-256v256h256zM128 128h768v768h-768v-768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "border_all"
- ],
- "defaultCode": 57896,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 93,
- "ligatures": "border_all",
- "id": 89,
- "prevSize": 24,
- "name": "border_all",
- "code": 57896
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 89
- },
- {
- "icon": {
- "paths": [
- "M214 640v86h-86v-86h86zM128 896v-86h768v86h-768zM214 470v84h-86v-84h86zM810 384v-86h86v86h-86zM810 128h86v86h-86v-86zM214 298v86h-86v-86h86zM810 726v-86h86v86h-86zM810 554v-84h86v84h-86zM726 128v86h-86v-86h86zM554 128v86h-84v-86h84zM726 470v84h-86v-84h86zM554 298v86h-84v-86h84zM214 128v86h-86v-86h86zM554 470v84h-84v-84h84zM384 128v86h-86v-86h86zM554 640v86h-84v-86h84zM384 470v84h-86v-84h86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "border_bottom"
- ],
- "defaultCode": 57897,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 94,
- "ligatures": "border_bottom",
- "id": 90,
- "prevSize": 24,
- "name": "border_bottom",
- "code": 57897
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 90
- },
- {
- "icon": {
- "paths": [
- "M640 214v-86h86v86h-86zM640 554v-84h86v84h-86zM640 896v-86h86v86h-86zM470 214v-86h84v86h-84zM810 128h86v86h-86v-86zM470 384v-86h84v86h-84zM810 384v-86h86v86h-86zM810 896v-86h86v86h-86zM810 554v-84h86v84h-86zM810 726v-86h86v86h-86zM470 554v-84h84v84h-84zM128 214v-86h86v86h-86zM128 384v-86h86v86h-86zM128 554v-84h86v84h-86zM128 726v-86h86v86h-86zM128 896v-86h86v86h-86zM470 896v-86h84v86h-84zM470 726v-86h84v86h-84zM298 896v-86h86v86h-86zM298 554v-84h86v84h-86zM298 214v-86h86v86h-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "border_clear"
- ],
- "defaultCode": 57898,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 95,
- "ligatures": "border_clear",
- "id": 91,
- "prevSize": 24,
- "name": "border_clear",
- "code": 57898
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 91
- },
- {
- "icon": {
- "paths": [
- "M0 854h1024v170h-1024v-170zM884 172l-84 84-160-160 84-84c16-16 44-16 60 0l100 100c16 16 16 44 0 60zM758 298l-428 428h-160v-160l428-428z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "border_color"
- ],
- "defaultCode": 57899,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 96,
- "ligatures": "border_color",
- "id": 92,
- "prevSize": 24,
- "name": "border_color",
- "code": 57899
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 92
- },
- {
- "icon": {
- "paths": [
- "M810 896v-86h86v86h-86zM640 896v-86h86v86h-86zM470 726v-86h84v86h-84zM810 384v-86h86v86h-86zM810 128h86v86h-86v-86zM128 554v-84h768v84h-768zM470 896v-86h84v86h-84zM810 726v-86h86v86h-86zM554 128v86h-84v-86h84zM554 298v86h-84v-86h84zM726 128v86h-86v-86h86zM384 128v86h-86v-86h86zM214 128v86h-86v-86h86zM298 896v-86h86v86h-86zM128 726v-86h86v86h-86zM214 298v86h-86v-86h86zM128 896v-86h86v86h-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "border_horizontal"
- ],
- "defaultCode": 57900,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 97,
- "ligatures": "border_horizontal",
- "id": 93,
- "prevSize": 24,
- "name": "border_horizontal",
- "code": 57900
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 93
- },
- {
- "icon": {
- "paths": [
- "M810 726v-86h86v86h-86zM810 896v-86h86v86h-86zM554 128v342h342v84h-342v342h-84v-342h-342v-84h342v-342h84zM640 896v-86h86v86h-86zM810 128h86v86h-86v-86zM810 384v-86h86v86h-86zM726 128v86h-86v-86h86zM214 128v86h-86v-86h86zM384 128v86h-86v-86h86zM128 726v-86h86v86h-86zM214 298v86h-86v-86h86zM298 896v-86h86v86h-86zM128 896v-86h86v86h-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "border_inner"
- ],
- "defaultCode": 57901,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 98,
- "ligatures": "border_inner",
- "id": 94,
- "prevSize": 24,
- "name": "border_inner",
- "code": 57901
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 94
- },
- {
- "icon": {
- "paths": [
- "M640 214v-86h86v86h-86zM640 554v-84h86v84h-86zM810 896v-86h86v86h-86zM810 554v-84h86v84h-86zM810 128h86v86h-86v-86zM810 726v-86h86v86h-86zM640 896v-86h86v86h-86zM810 384v-86h86v86h-86zM128 896v-768h86v768h-86zM298 554v-84h86v84h-86zM298 214v-86h86v86h-86zM298 896v-86h86v86h-86zM470 554v-84h84v84h-84zM470 384v-86h84v86h-84zM470 214v-86h84v86h-84zM470 726v-86h84v86h-84zM470 896v-86h84v86h-84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "border_left"
- ],
- "defaultCode": 57902,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 99,
- "ligatures": "border_left",
- "id": 95,
- "prevSize": 24,
- "name": "border_left",
- "code": 57902
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 95
- },
- {
- "icon": {
- "paths": [
- "M384 470v84h-86v-84h86zM554 640v86h-84v-86h84zM810 810v-596h-596v596h596zM128 128h768v768h-768v-768zM726 470v84h-86v-84h86zM554 470v84h-84v-84h84zM554 298v86h-84v-86h84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "border_outer"
- ],
- "defaultCode": 57903,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 100,
- "ligatures": "border_outer",
- "id": 96,
- "prevSize": 24,
- "name": "border_outer",
- "code": 57903
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 96
- },
- {
- "icon": {
- "paths": [
- "M470 384v-86h84v86h-84zM470 214v-86h84v86h-84zM470 554v-84h84v84h-84zM640 214v-86h86v86h-86zM640 896v-86h86v86h-86zM810 128h86v768h-86v-768zM640 554v-84h86v84h-86zM470 726v-86h84v86h-84zM128 384v-86h86v86h-86zM128 726v-86h86v86h-86zM128 554v-84h86v84h-86zM470 896v-86h84v86h-84zM128 896v-86h86v86h-86zM298 554v-84h86v84h-86zM298 214v-86h86v86h-86zM128 214v-86h86v86h-86zM298 896v-86h86v86h-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "border_right"
- ],
- "defaultCode": 57904,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 101,
- "ligatures": "border_right",
- "id": 97,
- "prevSize": 24,
- "name": "border_right",
- "code": 57904
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 97
- },
- {
- "icon": {
- "paths": [
- "M810 384v-86h86v86h-86zM128 128h768v86h-682v682h-86v-768zM810 554v-84h86v84h-86zM810 726v-86h86v86h-86zM470 896v-86h84v86h-84zM298 896v-86h86v86h-86zM810 896v-86h86v86h-86zM640 896v-86h86v86h-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "border_style"
- ],
- "defaultCode": 57905,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 102,
- "ligatures": "border_style",
- "id": 98,
- "prevSize": 24,
- "name": "border_style",
- "code": 57905
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 98
- },
- {
- "icon": {
- "paths": [
- "M640 554v-84h86v84h-86zM810 896v-86h86v86h-86zM470 384v-86h84v86h-84zM640 896v-86h86v86h-86zM810 726v-86h86v86h-86zM128 128h768v86h-768v-86zM810 554v-84h86v84h-86zM810 384v-86h86v86h-86zM470 726v-86h84v86h-84zM128 384v-86h86v86h-86zM128 554v-84h86v84h-86zM128 896v-86h86v86h-86zM128 726v-86h86v86h-86zM470 896v-86h84v86h-84zM470 554v-84h84v84h-84zM298 554v-84h86v84h-86zM298 896v-86h86v86h-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "border_top"
- ],
- "defaultCode": 57906,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 103,
- "ligatures": "border_top",
- "id": 99,
- "prevSize": 24,
- "name": "border_top",
- "code": 57906
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 99
- },
- {
- "icon": {
- "paths": [
- "M640 554v-84h86v84h-86zM640 896v-86h86v86h-86zM640 214v-86h86v86h-86zM810 384v-86h86v86h-86zM810 128h86v86h-86v-86zM810 554v-84h86v84h-86zM810 896v-86h86v86h-86zM470 896v-768h84v768h-84zM810 726v-86h86v86h-86zM298 214v-86h86v86h-86zM128 726v-86h86v86h-86zM128 896v-86h86v86h-86zM128 554v-84h86v84h-86zM298 554v-84h86v84h-86zM298 896v-86h86v86h-86zM128 214v-86h86v86h-86zM128 384v-86h86v86h-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "border_vertical"
- ],
- "defaultCode": 57907,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 104,
- "ligatures": "border_vertical",
- "id": 100,
- "prevSize": 24,
- "name": "border_vertical",
- "code": 57907
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 100
- },
- {
- "icon": {
- "paths": [
- "M896 810v-256h-384v256h384zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "branding_watermark"
- ],
- "defaultCode": 57451,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 105,
- "ligatures": "branding_watermark",
- "id": 101,
- "prevSize": 24,
- "name": "branding_watermark",
- "code": 57451
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 101
- },
- {
- "icon": {
- "paths": [
- "M86 512c0-236 190-426 426-426s426 190 426 426-190 426-426 426-426-190-426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "brightness_1"
- ],
- "defaultCode": 58278,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 106,
- "ligatures": "brightness_1",
- "id": 102,
- "prevSize": 24,
- "name": "brightness_1",
- "code": 58278
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 102
- },
- {
- "icon": {
- "paths": [
- "M426 86c236 0 428 190 428 426s-192 426-428 426c-78 0-150-20-212-56 128-74 212-212 212-370s-84-296-212-370c62-36 134-56 212-56z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "brightness_2"
- ],
- "defaultCode": 58279,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 107,
- "ligatures": "brightness_2",
- "id": 103,
- "prevSize": 24,
- "name": "brightness_2",
- "code": 58279
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 103
- },
- {
- "icon": {
- "paths": [
- "M384 86c236 0 426 190 426 426s-190 426-426 426c-44 0-88-6-128-18 174-54 298-216 298-408s-124-354-298-408c40-12 84-18 128-18z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "brightness_3"
- ],
- "defaultCode": 58280,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 108,
- "ligatures": "brightness_3",
- "id": 104,
- "prevSize": 24,
- "name": "brightness_3",
- "code": 58280
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 104
- },
- {
- "icon": {
- "paths": [
- "M512 768c142 0 256-114 256-256s-114-256-256-256c-38 0-74 10-106 24 88 40 148 128 148 232s-60 192-148 232c32 14 68 24 106 24zM854 370l140 142-140 142v200h-200l-142 140-142-140h-200v-200l-140-142 140-142v-200h200l142-140 142 140h200v200z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "brightness_4"
- ],
- "defaultCode": 58281,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 109,
- "ligatures": "brightness_4",
- "id": 105,
- "prevSize": 24,
- "name": "brightness_4",
- "code": 58281
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 105
- },
- {
- "icon": {
- "paths": [
- "M512 768c142 0 256-114 256-256s-114-256-256-256-256 114-256 256 114 256 256 256zM854 654v200h-200l-142 140-142-140h-200v-200l-140-142 140-142v-200h200l142-140 142 140h200v200l140 142z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "brightness_low"
- ],
- "defaultCode": 57773,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 110,
- "ligatures": "brightness_5, brightness_low",
- "id": 106,
- "prevSize": 24,
- "name": "brightness_low",
- "code": 57773
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 106
- },
- {
- "icon": {
- "paths": [
- "M512 768c142 0 256-114 256-256s-114-256-256-256v512zM854 654v200h-200l-142 140-142-140h-200v-200l-140-142 140-142v-200h200l142-140 142 140h200v200l140 142z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "brightness_medium"
- ],
- "defaultCode": 57774,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 111,
- "ligatures": "brightness_6, brightness_medium",
- "id": 107,
- "prevSize": 24,
- "name": "brightness_medium",
- "code": 57774
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 107
- },
- {
- "icon": {
- "paths": [
- "M512 342c94 0 170 76 170 170s-76 170-170 170-170-76-170-170 76-170 170-170zM512 768c142 0 256-114 256-256s-114-256-256-256-256 114-256 256 114 256 256 256zM854 370l140 142-140 142v200h-200l-142 140-142-140h-200v-200l-140-142 140-142v-200h200l142-140 142 140h200v200z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "brightness_high"
- ],
- "defaultCode": 57772,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 112,
- "ligatures": "brightness_7, brightness_high",
- "id": 108,
- "prevSize": 24,
- "name": "brightness_high",
- "code": 57772
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 108
- },
- {
- "icon": {
- "paths": [
- "M610 682h82l-138-384h-84l-138 384h82l30-84h136zM854 370l140 142-140 142v200h-200l-142 140-142-140h-200v-200l-140-142 140-142v-200h200l142-140 142 140h200v200zM462 540l50-156 50 156h-100z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "brightness_auto"
- ],
- "defaultCode": 57771,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 113,
- "ligatures": "brightness_auto",
- "id": 109,
- "prevSize": 24,
- "name": "brightness_auto",
- "code": 57771
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 109
- },
- {
- "icon": {
- "paths": [
- "M768 488l128 128v194c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-280l128 128 170-172 172 172zM896 214v280l-128-128-170 172-172-172-170 172-128-130v-194c0-46 40-86 86-86h596c46 0 86 40 86 86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "broken_image"
- ],
- "defaultCode": 58285,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 114,
- "ligatures": "broken_image",
- "id": 110,
- "prevSize": 24,
- "name": "broken_image",
- "code": 58285
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 110
- },
- {
- "icon": {
- "paths": [
- "M884 198c16 16 16 44 0 60l-382 382-118-118 382-382c16-16 44-16 60 0zM298 598c70 0 128 58 128 128 0 94-76 170-170 170-64 0-130-34-170-86 36 0 84-28 84-84 0-70 58-128 128-128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "brush"
- ],
- "defaultCode": 58286,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 115,
- "ligatures": "brush",
- "id": 111,
- "prevSize": 24,
- "name": "brush",
- "code": 58286
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 111
- },
- {
- "icon": {
- "paths": [
- "M444 376c0-114 90-206 204-206s206 92 206 206-92 204-206 204-204-90-204-204zM546 768c0-48 38-86 86-86s84 38 84 86-36 86-84 86-86-38-86-86zM170 614c0-76 62-136 138-136s136 60 136 136-60 136-136 136-138-60-138-136z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "bubble_chart"
- ],
- "defaultCode": 59101,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 116,
- "ligatures": "bubble_chart",
- "id": 112,
- "prevSize": 24,
- "name": "bubble_chart",
- "code": 59101
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 112
- },
- {
- "icon": {
- "paths": [
- "M598 512v-86h-172v86h172zM598 682v-84h-172v84h172zM854 342v84h-90c2 14 4 30 4 44v42h86v86h-86v42c0 14-2 28-4 42h90v86h-120c-44 76-128 128-222 128s-178-52-222-128h-120v-86h90c-2-14-4-28-4-42v-42h-86v-86h86v-42c0-14 2-30 4-44h-90v-84h120c20-34 46-62 78-84l-70-70 60-60 94 92c20-4 40-6 60-6s40 2 60 6l94-92 60 60-70 70c32 22 58 50 78 84h120z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "bug_report"
- ],
- "defaultCode": 59496,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 117,
- "ligatures": "bug_report",
- "id": 113,
- "prevSize": 24,
- "name": "bug_report",
- "code": 59496
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 113
- },
- {
- "icon": {
- "paths": [
- "M968 810c18 12 18 42-4 60l-98 98c-18 18-42 18-60 0l-388-388c-98 38-212 18-294-64-86-86-108-214-56-316l188 184 128-128-184-184c102-46 230-30 316 56 82 82 102 196 64 294z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "build"
- ],
- "defaultCode": 59497,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 118,
- "ligatures": "build",
- "id": 114,
- "prevSize": 24,
- "name": "build",
- "code": 59497
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 114
- },
- {
- "icon": {
- "paths": [
- "M470 726h426l-136-180-108 136-76-92zM938 214c24 0 44 18 44 42v512c0 24-20 42-44 42h-512c-24 0-42-18-42-42v-512c0-24 18-42 42-42h512zM214 214h84v596h-84v-596zM42 214h86v596h-86v-596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "burst_mode"
- ],
- "defaultCode": 58428,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 119,
- "ligatures": "burst_mode",
- "id": 115,
- "prevSize": 24,
- "name": "burst_mode",
- "code": 58428
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 115
- },
- {
- "icon": {
- "paths": [
- "M768 640v86h-86v-86h86zM768 470v84h-86v-84h86zM854 810v-426h-342v86h86v84h-86v86h86v86h-86v84h342zM426 298v-84h-84v84h84zM426 470v-86h-84v86h84zM426 640v-86h-84v86h84zM426 810v-84h-84v84h84zM256 298v-84h-86v84h86zM256 470v-86h-86v86h86zM256 640v-86h-86v86h86zM256 810v-84h-86v84h86zM512 298h426v598h-852v-768h426v170z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "domain"
- ],
- "defaultCode": 59374,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 120,
- "ligatures": "business, domain",
- "id": 116,
- "prevSize": 24,
- "name": "domain",
- "code": 59374
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 116
- },
- {
- "icon": {
- "paths": [
- "M598 298v-84h-172v84h172zM854 298c46 0 84 40 84 86v128c0 46-38 86-84 86h-256v-86h-172v86h-256c-48 0-84-38-84-86v-128c0-46 38-86 84-86h170v-84l86-86h170l86 86v84h172zM426 682h172v-42h298v170c0 48-38 86-86 86h-596c-48 0-86-38-86-86v-170h298v42z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "business_center"
- ],
- "defaultCode": 60223,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 121,
- "ligatures": "business_center",
- "id": 117,
- "prevSize": 24,
- "name": "business_center",
- "code": 60223
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 117
- },
- {
- "icon": {
- "paths": [
- "M256 512h128l-170 170-172-170h128c0-188 154-342 342-342 66 0 130 20 182 54l-62 62c-36-20-76-30-120-30-142 0-256 114-256 256zM810 342l172 170h-128c0 188-154 342-342 342-66 0-130-20-182-54l62-62c36 20 76 30 120 30 142 0 256-114 256-256h-128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "cached"
- ],
- "defaultCode": 59498,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 122,
- "ligatures": "cached",
- "id": 118,
- "prevSize": 24,
- "name": "cached",
- "code": 59498
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 118
- },
- {
- "icon": {
- "paths": [
- "M768 384c70 0 128 58 128 128v66c0 46-38 84-84 84-22 0-42-8-58-24l-92-92-92 92c-32 32-86 32-118 0l-90-92-92 92c-16 16-36 24-58 24-46 0-84-38-84-84v-66c0-70 58-128 128-128h214v-86h84v86h214zM708 682c28 28 64 44 104 44 32 0 60-10 84-26v196c0 24-18 42-42 42h-684c-24 0-42-18-42-42v-196c24 16 52 26 84 26 40 0 76-16 104-44l46-46 46 46c56 56 152 56 208 0l46-46zM512 256c-46 0-86-40-86-86 0-16 6-32 14-44l72-126 72 126c8 12 14 28 14 44 0 46-38 86-86 86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "cake"
- ],
- "defaultCode": 59369,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 123,
- "ligatures": "cake",
- "id": 119,
- "prevSize": 24,
- "name": "cake",
- "code": 59369
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 119
- },
- {
- "icon": {
- "paths": [
- "M282 460c62 120 162 220 282 282l94-94c12-12 30-16 44-10 48 16 100 24 152 24 24 0 42 18 42 42v150c0 24-18 42-42 42-400 0-726-326-726-726 0-24 18-42 42-42h150c24 0 42 18 42 42 0 54 8 104 24 152 4 14 2 32-10 44z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "phone"
- ],
- "defaultCode": 57549,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 124,
- "ligatures": "call, local_phone, phone",
- "id": 120,
- "prevSize": 24,
- "name": "phone",
- "code": 57549
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 120
- },
- {
- "icon": {
- "paths": [
- "M512 384c-68 0-134 10-196 30v132c0 16-10 34-24 40-42 20-80 46-114 78-8 8-18 12-30 12s-22-4-30-12l-106-106c-8-8-12-18-12-30s4-22 12-30c130-124 306-200 500-200s370 76 500 200c8 8 12 18 12 30s-4 22-12 30l-106 106c-8 8-18 12-30 12s-22-4-30-12c-34-32-72-58-114-78-14-6-24-20-24-38v-132c-62-20-128-32-196-32z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "call_end"
- ],
- "defaultCode": 57521,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 125,
- "ligatures": "call_end",
- "id": 121,
- "prevSize": 24,
- "name": "call_end",
- "code": 57521
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 121
- },
- {
- "icon": {
- "paths": [
- "M384 214h426v426h-84v-282l-496 496-60-60 496-496h-282v-84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "call_made"
- ],
- "defaultCode": 57522,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 126,
- "ligatures": "call_made",
- "id": 122,
- "prevSize": 24,
- "name": "call_made",
- "code": 57522
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 122
- },
- {
- "icon": {
- "paths": [
- "M320 342l192-192 192 192h-150v272l-256 256-60-60 232-230v-238h-150zM726 870l-146-144 60-60 146 144z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "merge_type"
- ],
- "defaultCode": 57938,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 127,
- "ligatures": "call_merge, merge_type",
- "id": 123,
- "prevSize": 24,
- "name": "merge_type",
- "code": 57938
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 123
- },
- {
- "icon": {
- "paths": [
- "M836 298l60 60-384 384-298-298v196h-86v-342h342v86h-196l238 238z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "call_missed"
- ],
- "defaultCode": 57524,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 128,
- "ligatures": "call_missed",
- "id": 124,
- "prevSize": 24,
- "name": "call_missed",
- "code": 57524
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 124
- },
- {
- "icon": {
- "paths": [
- "M128 358l60-60 324 324 238-238h-196v-86h342v342h-86v-196l-298 298z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "call_missed_outgoing"
- ],
- "defaultCode": 57572,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 129,
- "ligatures": "call_missed_outgoing",
- "id": 125,
- "prevSize": 24,
- "name": "call_missed_outgoing",
- "code": 57572
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 125
- },
- {
- "icon": {
- "paths": [
- "M854 230l-496 496h282v84h-426v-426h84v282l496-496z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "call_received"
- ],
- "defaultCode": 57525,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 130,
- "ligatures": "call_received",
- "id": 126,
- "prevSize": 24,
- "name": "call_received",
- "code": 57525
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 126
- },
- {
- "icon": {
- "paths": [
- "M426 170l-98 98 226 226v360h-84v-324l-202-202-98 98v-256h256zM598 170h256v256l-98-98-124 124-60-60 124-124z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "call_split"
- ],
- "defaultCode": 57526,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 131,
- "ligatures": "call_split",
- "id": 127,
- "prevSize": 24,
- "name": "call_split",
- "code": 57526
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 127
- },
- {
- "icon": {
- "paths": [
- "M896 810v-128h-768v128h768zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "call_to_action"
- ],
- "defaultCode": 57452,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 132,
- "ligatures": "call_to_action",
- "id": 128,
- "prevSize": 24,
- "name": "call_to_action",
- "code": 57452
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 128
- },
- {
- "icon": {
- "paths": [
- "M420 928c68.709-118.625 136.494-238.172 206-356l156 270c-74 60-168 96-270 96-32 0-62-4-92-10zM104 640h414l-158 270c-122-46-216-146-256-270zM198 224c71.999 124.667 143.587 249.746 216 374h-320c-6-28-8-56-8-86 0-112 42-212 112-288zM930 426c6 28 8 56 8 86 0 112-42 212-112 288l-204-352-12-22h320zM920 384h-414l158-270c122 46 216 146 256 270zM402 448l-4 4-156-270c74-60 168-96 270-96 32 0 62 4 92 10z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "camera"
- ],
- "defaultCode": 58287,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 133,
- "ligatures": "camera",
- "id": 129,
- "prevSize": 24,
- "name": "camera",
- "code": 58287
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 129
- },
- {
- "icon": {
- "paths": [
- "M512 726c118 0 214-96 214-214s-96-214-214-214-214 96-214 214 96 214 214 214zM384 86h256l78 84h136c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h136zM376 512c0-76 60-136 136-136s136 60 136 136-60 136-136 136-136-60-136-136z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "photo_camera"
- ],
- "defaultCode": 58386,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 134,
- "ligatures": "camera_alt, local_see, photo_camera",
- "id": 130,
- "prevSize": 24,
- "name": "photo_camera",
- "code": 58386
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 130
- },
- {
- "icon": {
- "paths": [
- "M512 726l-54-118-116-54 116-52 54-118 54 118 116 52-116 54zM512 768c118 0 214-96 214-214s-96-212-214-212-214 94-214 212 96 214 214 214zM384 128h256l78 86h136c46 0 84 38 84 84v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-84 84-84h136z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "camera_enhance"
- ],
- "defaultCode": 59644,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 135,
- "ligatures": "camera_enhance",
- "id": 131,
- "prevSize": 24,
- "name": "camera_enhance",
- "code": 59644
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 131
- },
- {
- "icon": {
- "paths": [
- "M298 86v448c0-72 142-108 214-108s214 36 214 108v-448h-428zM726 0c46 0 84 40 84 86v596c0 46-38 86-84 86h-300l128 128-128 128v-86h-212v-84h212v-86h-128c-46 0-84-40-84-86v-596c0-46 38-86 84-86h428zM512 342c-46 0-84-40-84-86s38-86 84-86 86 40 86 86-40 86-86 86zM598 854h212v84h-212v-84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "camera_front"
- ],
- "defaultCode": 58289,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 136,
- "ligatures": "camera_front",
- "id": 132,
- "prevSize": 24,
- "name": "camera_front",
- "code": 58289
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 132
- },
- {
- "icon": {
- "paths": [
- "M512 256c46 0 84-40 84-86s-38-84-84-84-86 38-86 84 38 86 86 86zM726 0c46 0 84 40 84 86v596c0 46-38 86-84 86h-300l128 128-128 128v-86h-212v-84h212v-86h-128c-46 0-84-40-84-86v-596c0-46 38-86 84-86h428zM598 854h212v84h-212v-84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "camera_rear"
- ],
- "defaultCode": 58290,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 137,
- "ligatures": "camera_rear",
- "id": 133,
- "prevSize": 24,
- "name": "camera_rear",
- "code": 58290
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 133
- },
- {
- "icon": {
- "paths": [
- "M854 384v-86h-86v86h86zM854 768v-86h-86v86h86zM682 384v-86h-84v86h84zM682 768v-86h-84v86h84zM512 384v-86h-86v86h86zM512 768v-86h-86v86h86zM598 214h340v640h-340c0 46-40 84-86 84h-342c-46 0-84-38-84-84v-640c0-46 38-86 84-86h44v-42c0-24 18-44 42-44h170c24 0 44 20 44 44v42h42c46 0 86 40 86 86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "camera_roll"
- ],
- "defaultCode": 58291,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 138,
- "ligatures": "camera_roll",
- "id": 134,
- "prevSize": 24,
- "name": "camera_roll",
- "code": 58291
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 134
- },
- {
- "icon": {
- "paths": [
- "M726 666l-154-154 154-154-60-60-154 154-154-154-60 60 154 154-154 154 60 60 154-154 154 154zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "cancel"
- ],
- "defaultCode": 58825,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 139,
- "ligatures": "cancel",
- "id": 135,
- "prevSize": 24,
- "name": "cancel",
- "code": 58825
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 135
- },
- {
- "icon": {
- "paths": [
- "M854 598v-256h-218l90 120-70 50c-48.076-65.258-96.637-130.029-144-196-47.366 65.967-95.923 130.744-144 196l-70-50 90-120h-218v256h684zM854 810v-84h-684v84h684zM384 170c-24 0-42 20-42 44s18 42 42 42 42-18 42-42-18-44-42-44zM640 170c-24 0-42 20-42 44s18 42 42 42 42-18 42-42-18-44-42-44zM854 256c48 0 84 38 84 86v468c0 48-36 86-84 86h-684c-48 0-84-38-84-86v-468c0-48 36-86 84-86h94c-4-14-8-28-8-42 0-70 58-128 128-128 44 0 82 22 106 56l22 30 22-30c24-34 62-56 106-56 70 0 128 58 128 128 0 14-4 28-8 42h94z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "redeem"
- ],
- "defaultCode": 59569,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 140,
- "ligatures": "card_giftcard, redeem",
- "id": 136,
- "prevSize": 24,
- "name": "redeem",
- "code": 59569
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 136
- },
- {
- "icon": {
- "paths": [
- "M854 426v-256h-684v256h684zM854 640v-86h-684v86h684zM854 86c48 0 84 36 84 84v470c0 48-36 86-84 86h-172v212l-170-84-170 84v-212h-172c-48 0-84-38-84-86v-470c0-48 36-84 84-84h684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "card_membership"
- ],
- "defaultCode": 59639,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 141,
- "ligatures": "card_membership",
- "id": 137,
- "prevSize": 24,
- "name": "card_membership",
- "code": 59639
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 137
- },
- {
- "icon": {
- "paths": [
- "M854 598v-256h-128v84h-86v-84h-256v84h-86v-84h-128v256h684zM854 810v-84h-684v84h684zM384 170v86h256v-86h-256zM854 256c48 0 84 38 84 86v468c0 48-36 86-84 86h-684c-48 0-84-38-84-86v-468c0-48 36-86 84-86h128v-86c0-48 38-84 86-84h256c48 0 86 36 86 84v86h128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "card_travel"
- ],
- "defaultCode": 59640,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 142,
- "ligatures": "card_travel",
- "id": 138,
- "prevSize": 24,
- "name": "card_travel",
- "code": 59640
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 138
- },
- {
- "icon": {
- "paths": [
- "M704 384c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM704 768c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM512 576c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM320 384c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM320 768c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "casino"
- ],
- "defaultCode": 60224,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 143,
- "ligatures": "casino",
- "id": 139,
- "prevSize": 24,
- "name": "casino",
- "code": 60224
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 139
- },
- {
- "icon": {
- "paths": [
- "M42 426c258 0 470 210 470 470h-86c0-212-172-384-384-384v-86zM42 598c166 0 300 132 300 298h-86c0-118-96-214-214-214v-84zM42 768c70 0 128 58 128 128h-128v-128zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-298v-86h298v-596h-768v128h-86v-128c0-46 40-86 86-86h768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "cast"
- ],
- "defaultCode": 58119,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 144,
- "ligatures": "cast",
- "id": 140,
- "prevSize": 24,
- "name": "cast",
- "code": 58119
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 140
- },
- {
- "icon": {
- "paths": [
- "M896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-298v-86h298v-596h-768v128h-86v-128c0-46 40-86 86-86h768zM42 426c258 0 470 210 470 470h-86c0-212-172-384-384-384v-86zM810 298v428h-240c-54-168-188-304-356-358v-70h596zM42 598c166 0 300 132 300 298h-86c0-118-96-214-214-214v-84zM42 768c70 0 128 58 128 128h-128v-128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "cast_connected"
- ],
- "defaultCode": 58120,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 145,
- "ligatures": "cast_connected",
- "id": 141,
- "prevSize": 24,
- "name": "cast_connected",
- "code": 58120
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 141
- },
- {
- "icon": {
- "paths": [
- "M810 810v-170h86v170c0 46-40 86-86 86h-170v-86h170zM810 128c46 0 86 40 86 86v170h-86v-170h-170v-86h170zM214 214v170h-86v-170c0-46 40-86 86-86h170v86h-170zM214 640v170h170v86h-170c-46 0-86-40-86-86v-170h86zM512 342c94 0 170 76 170 170s-76 170-170 170-170-76-170-170 76-170 170-170z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "center_focus_strong"
- ],
- "defaultCode": 58292,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 146,
- "ligatures": "center_focus_strong",
- "id": 142,
- "prevSize": 24,
- "name": "center_focus_strong",
- "code": 58292
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 142
- },
- {
- "icon": {
- "paths": [
- "M512 598c46 0 86-40 86-86s-40-86-86-86-86 40-86 86 40 86 86 86zM512 342c94 0 170 76 170 170s-76 170-170 170-170-76-170-170 76-170 170-170zM810 810v-170h86v170c0 46-40 86-86 86h-170v-86h170zM810 128c46 0 86 40 86 86v170h-86v-170h-170v-86h170zM214 214v170h-86v-170c0-46 40-86 86-86h170v86h-170zM214 640v170h170v86h-170c-46 0-86-40-86-86v-170h86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "center_focus_weak"
- ],
- "defaultCode": 58293,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 147,
- "ligatures": "center_focus_weak",
- "id": 143,
- "prevSize": 24,
- "name": "center_focus_weak",
- "code": 58293
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 143
- },
- {
- "icon": {
- "paths": [
- "M512 170l426 684h-852zM512 332l-272 436h544z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "change_history"
- ],
- "defaultCode": 59499,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 148,
- "ligatures": "change_history",
- "id": 144,
- "prevSize": 24,
- "name": "change_history",
- "code": 59499
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 144
- },
- {
- "icon": {
- "paths": [
- "M768 342v-86h-512v86h512zM598 598v-86h-342v86h342zM256 384v86h512v-86h-512zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "chat"
- ],
- "defaultCode": 57527,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 149,
- "ligatures": "chat",
- "id": 145,
- "prevSize": 24,
- "name": "chat",
- "code": 57527
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 145
- },
- {
- "icon": {
- "paths": [
- "M854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "chat_bubble"
- ],
- "defaultCode": 57546,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 150,
- "ligatures": "chat_bubble",
- "id": 146,
- "prevSize": 24,
- "name": "chat_bubble",
- "code": 57546
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 146
- },
- {
- "icon": {
- "paths": [
- "M854 682v-512h-684v598l86-86h598zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "chat_bubble_outline"
- ],
- "defaultCode": 57547,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 151,
- "ligatures": "chat_bubble_outline",
- "id": 147,
- "prevSize": 24,
- "name": "chat_bubble_outline",
- "code": 57547
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 147
- },
- {
- "icon": {
- "paths": [
- "M384 690l452-452 60 60-512 512-238-238 60-60z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "check"
- ],
- "defaultCode": 58826,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 152,
- "ligatures": "check",
- "id": 148,
- "prevSize": 24,
- "name": "check",
- "code": 58826
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 148
- },
- {
- "icon": {
- "paths": [
- "M426 726l384-384-60-62-324 324-152-152-60 60zM810 128c48 0 86 40 86 86v596c0 46-38 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "check_box"
- ],
- "defaultCode": 59444,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 153,
- "ligatures": "check_box",
- "id": 149,
- "prevSize": 24,
- "name": "check_box",
- "code": 59444
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 149
- },
- {
- "icon": {
- "paths": [
- "M810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596zM810 214h-596v596h596v-596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "check_box_outline_blank"
- ],
- "defaultCode": 59445,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 154,
- "ligatures": "check_box_outline_blank",
- "id": 150,
- "prevSize": 24,
- "name": "check_box_outline_blank",
- "code": 59445
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 150
- },
- {
- "icon": {
- "paths": [
- "M426 726l384-384-60-62-324 324-152-152-60 60zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "check_circle"
- ],
- "defaultCode": 59500,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 155,
- "ligatures": "check_circle",
- "id": 151,
- "prevSize": 24,
- "name": "check_circle",
- "code": 59500
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 151
- },
- {
- "icon": {
- "paths": [
- "M658 316l-196 196 196 196-60 60-256-256 256-256z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "navigate_before"
- ],
- "defaultCode": 58376,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 156,
- "ligatures": "chevron_left, navigate_before",
- "id": 152,
- "prevSize": 24,
- "name": "navigate_before",
- "code": 58376
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 152
- },
- {
- "icon": {
- "paths": [
- "M426 256l256 256-256 256-60-60 196-196-196-196z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "navigate_next"
- ],
- "defaultCode": 58377,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 157,
- "ligatures": "chevron_right, navigate_next",
- "id": 153,
- "prevSize": 24,
- "name": "navigate_next",
- "code": 58377
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 153
- },
- {
- "icon": {
- "paths": [
- "M320 598h384c-32 76-106 128-192 128s-160-52-192-128zM512 810c136.004 0 250.464-89.626 286-214 4 0 8 2 12 2 46 0 86-40 86-86s-40-86-86-86c-4 0-8 2-12 2-35.529-124.35-149.994-214-286-214-136.004 0-250.464 89.626-286 214-4 0-8-2-12-2-46 0-86 40-86 86s40 86 86 86c4 0 8-2 12-2 35.529 124.35 149.994 214 286 214zM978 540c-10 64-56 118-118 136-56.536 118.211-189.668 220-348 220-157.767 0-291.044-100.097-346-220-62-18-110-72-120-136-2-8-4-18-4-28s2-20 4-28c10-64 58-118 120-136 22-48 52-90 92-124 68-60 156-96 254-96 160.584 0 290.218 98.294 346 220 62 18 110 72 120 136 2 8 4 18 4 28s-2 20-4 28zM352 448c0-30 24-54 54-54s52 24 52 54-22 54-52 54-54-24-54-54zM566 448c0-30 22-54 52-54s54 24 54 54-24 54-54 54-52-24-52-54z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "child_care"
- ],
- "defaultCode": 60225,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 158,
- "ligatures": "child_care",
- "id": 154,
- "prevSize": 24,
- "name": "child_care",
- "code": 60225
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 154
- },
- {
- "icon": {
- "paths": [
- "M726 854c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM342 854c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM824 678c30 28 50 68 50 112 0 82-66 148-148 148-76 0-138-56-148-128h-90c-10 72-70 128-146 128-82 0-150-66-150-148 0-56 32-106 78-132-10-14-90-188-90-188h-94v-86h148l40 86h622c0 78-28 150-72 208zM554 86c188 0 342 152 342 340h-342v-340z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "child_friendly"
- ],
- "defaultCode": 60226,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 159,
- "ligatures": "child_friendly",
- "id": 155,
- "prevSize": 24,
- "name": "child_friendly",
- "code": 60226
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 155
- },
- {
- "icon": {
- "paths": [
- "M896 810v-554h-384v554h384zM896 170c46 0 86 40 86 86v554c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-554c0-46 40-86 86-86h768zM554 618h300v64h-300v-64zM554 406h300v64h-300v-64zM554 512h300v64h-300v-64z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "chrome_reader_mode"
- ],
- "defaultCode": 59501,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 160,
- "ligatures": "chrome_reader_mode",
- "id": 156,
- "prevSize": 24,
- "name": "chrome_reader_mode",
- "code": 59501
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 156
- },
- {
- "icon": {
- "paths": [
- "M810 274l-238 238 238 238-60 60-238-238-238 238-60-60 238-238-238-238 60-60 238 238 238-238z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "close"
- ],
- "defaultCode": 58829,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 161,
- "ligatures": "clear, close",
- "id": 157,
- "prevSize": 24,
- "name": "close",
- "code": 58829
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 157
- },
- {
- "icon": {
- "paths": [
- "M298 298h598v86h-598v-86zM128 726v-86h598v86h-598zM214 554v-84h596v84h-596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "clear_all"
- ],
- "defaultCode": 57528,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 162,
- "ligatures": "clear_all",
- "id": 158,
- "prevSize": 24,
- "name": "clear_all",
- "code": 57528
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 158
- },
- {
- "icon": {
- "paths": [
- "M768 470v-44c0-24-18-42-42-42h-128c-24 0-44 18-44 42v172c0 24 20 42 44 42h128c24 0 42-18 42-42v-44h-64v22h-86v-128h86v22h64zM470 470v-44c0-24-20-42-44-42h-128c-24 0-42 18-42 42v172c0 24 18 42 42 42h128c24 0 44-18 44-42v-44h-64v22h-86v-128h86v22h64zM810 170c46 0 86 40 86 86v512c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-512c0-46 38-86 86-86h596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "closed_caption"
- ],
- "defaultCode": 57372,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 163,
- "ligatures": "closed_caption",
- "id": 159,
- "prevSize": 24,
- "name": "closed_caption",
- "code": 57372
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 159
- },
- {
- "icon": {
- "paths": [
- "M826 428c110 8 198 100 198 212 0 118-96 214-214 214h-554c-142 0-256-114-256-256 0-132 100-240 228-254 54-102 160-174 284-174 156 0 284 110 314 258z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "wb_cloudy"
- ],
- "defaultCode": 58413,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 164,
- "ligatures": "cloud, wb_cloudy",
- "id": 160,
- "prevSize": 24,
- "name": "wb_cloudy",
- "code": 58413
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 160
- },
- {
- "icon": {
- "paths": [
- "M704 682c58 0 106-48 106-106s-48-106-106-106h-22c0-94-76-172-170-172-80 0-146 56-164 130l-6-2c-70 0-128 58-128 128s58 128 128 128h362zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "cloud_circle"
- ],
- "defaultCode": 58046,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 165,
- "ligatures": "cloud_circle",
- "id": 161,
- "prevSize": 24,
- "name": "cloud_circle",
- "code": 58046
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 161
- },
- {
- "icon": {
- "paths": [
- "M426 726l282-282-60-60-222 220-88-88-60 60zM826 428c110 8 198 100 198 212 0 118-96 214-214 214h-554c-142 0-256-114-256-256 0-132 100-240 228-254 54-102 160-174 284-174 156 0 284 110 314 258z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "cloud_done"
- ],
- "defaultCode": 58047,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 166,
- "ligatures": "cloud_done",
- "id": 162,
- "prevSize": 24,
- "name": "cloud_done",
- "code": 58047
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 162
- },
- {
- "icon": {
- "paths": [
- "M726 554h-128v-170h-172v170h-128l214 214zM826 428c110 8 198 100 198 212 0 118-96 214-214 214h-554c-142 0-256-114-256-256 0-132 100-240 228-254 54-102 160-174 284-174 156 0 284 110 314 258z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "cloud_download"
- ],
- "defaultCode": 58048,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 167,
- "ligatures": "cloud_download",
- "id": 163,
- "prevSize": 24,
- "name": "cloud_download",
- "code": 58048
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 163
- },
- {
- "icon": {
- "paths": [
- "M330 426h-74c-94 0-170 78-170 172s76 170 170 170h416zM128 224l54-54 714 714-54 54-86-84h-500c-142 0-256-114-256-256 0-138 110-250 246-256zM826 428c110 8 198 100 198 212 0 72-36 136-90 174l-62-62c40-22 66-64 66-112 0-70-58-128-128-128h-64v-22c0-130-104-234-234-234-40 0-76 8-108 26l-64-62c50-32 108-50 172-50 156 0 284 110 314 258z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "cloud_off"
- ],
- "defaultCode": 58049,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 168,
- "ligatures": "cloud_off",
- "id": 164,
- "prevSize": 24,
- "name": "cloud_off",
- "code": 58049
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 164
- },
- {
- "icon": {
- "paths": [
- "M810 768c70 0 128-58 128-128s-58-128-128-128h-64v-22c0-130-104-234-234-234-108 0-198 72-226 170h-30c-94 0-170 78-170 172s76 170 170 170h554zM826 428c110 8 198 100 198 212 0 118-96 214-214 214h-554c-142 0-256-114-256-256 0-132 100-240 228-254 54-102 160-174 284-174 156 0 284 110 314 258z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "cloud_queue"
- ],
- "defaultCode": 58050,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 169,
- "ligatures": "cloud_queue",
- "id": 165,
- "prevSize": 24,
- "name": "cloud_queue",
- "code": 58050
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 165
- },
- {
- "icon": {
- "paths": [
- "M622 708l198-196-198-196 60-60 256 256-256 256zM402 708l-60 60-256-256 256-256 60 60-198 196z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "code"
- ],
- "defaultCode": 59503,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 170,
- "ligatures": "code",
- "id": 166,
- "prevSize": 24,
- "name": "code",
- "code": 59503
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 166
- },
- {
- "icon": {
- "paths": [
- "M86 256h84v598h598v84h-598c-46 0-84-38-84-84v-598zM470 512l-128 170h512l-172-212-126 158zM938 682c0 46-38 86-84 86h-512c-46 0-86-40-86-86v-512c0-46 40-84 86-84h512c46 0 84 38 84 84v512z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "photo_library"
- ],
- "defaultCode": 58387,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 171,
- "ligatures": "collections, photo_library",
- "id": 167,
- "prevSize": 24,
- "name": "photo_library",
- "code": 58387
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 167
- },
- {
- "icon": {
- "paths": [
- "M854 512v-342h-214v342l106-64zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-512c-46 0-86-40-86-86v-512c0-46 40-84 86-84h512zM170 256v598h598v84h-598c-46 0-84-38-84-84v-598h84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "collections_bookmark"
- ],
- "defaultCode": 58417,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 172,
- "ligatures": "collections_bookmark",
- "id": 168,
- "prevSize": 24,
- "name": "collections_bookmark",
- "code": 58417
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 168
- },
- {
- "icon": {
- "paths": [
- "M746 512c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM618 342c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM406 342c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM278 512c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM512 128c212 0 384 154 384 342 0 118-96 212-214 212h-74c-36 0-64 28-64 64 0 16 6 30 16 42s16 28 16 44c0 36-28 64-64 64-212 0-384-172-384-384s172-384 384-384z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "palette"
- ],
- "defaultCode": 58378,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 173,
- "ligatures": "color_lens, palette",
- "id": 169,
- "prevSize": 24,
- "name": "palette",
- "code": 58378
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 169
- },
- {
- "icon": {
- "paths": [
- "M296 810l344-344-82-82-344 344zM884 240c16 16 18 42 0 60l-134 134 82 82-60 60-60-60-382 380h-202v-202l380-382-60-60 60-60 82 82 134-134c16-16 44-16 60 0z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "colorize"
- ],
- "defaultCode": 58296,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 174,
- "ligatures": "colorize",
- "id": 170,
- "prevSize": 24,
- "name": "colorize",
- "code": 58296
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 170
- },
- {
- "icon": {
- "paths": [
- "M768 342v-86h-512v86h512zM768 470v-86h-512v86h512zM768 598v-86h-512v86h512zM938 170v768l-170-170h-598c-46 0-84-40-84-86v-512c0-46 38-84 84-84h684c46 0 84 38 84 84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "comment"
- ],
- "defaultCode": 57529,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 175,
- "ligatures": "comment",
- "id": 171,
- "prevSize": 24,
- "name": "comment",
- "code": 57529
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 171
- },
- {
- "icon": {
- "paths": [
- "M810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-212v-384l212 256v-554h-212v-86h212zM426 768v-256l-212 256h212zM426 128v-86h86v940h-86v-86h-212c-46 0-86-40-86-86v-596c0-46 40-86 86-86h212z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "compare"
- ],
- "defaultCode": 58297,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 176,
- "ligatures": "compare",
- "id": 172,
- "prevSize": 24,
- "name": "compare",
- "code": 58297
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 172
- },
- {
- "icon": {
- "paths": [
- "M640 554l-170-170 170-170v128h298v84h-298v128zM384 598v-128l170 170-170 170v-128h-298v-84h298z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "compare_arrows"
- ],
- "defaultCode": 59669,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 177,
- "ligatures": "compare_arrows",
- "id": 173,
- "prevSize": 24,
- "name": "compare_arrows",
- "code": 59669
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 173
- },
- {
- "icon": {
- "paths": [
- "M170 256v426h684v-426h-684zM854 768h170v86h-1024v-86h170c-46 0-84-40-84-86v-426c0-46 38-86 84-86h684c46 0 84 40 84 86v426c0 46-38 86-84 86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "laptop"
- ],
- "defaultCode": 58142,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 178,
- "ligatures": "computer, laptop",
- "id": 174,
- "prevSize": 24,
- "name": "laptop",
- "code": 58142
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 174
- },
- {
- "icon": {
- "paths": [
- "M554 362v-84h-84v84h84zM554 554v-84h-84v84h84zM554 746v-84h-84v84h84zM938 426c-46 0-84 40-84 86s38 86 84 86v170c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-170c48 0 84-40 84-86s-38-86-84-86v-170c0-48 38-86 84-86h684c46 0 84 38 84 86v170z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "confirmation_number"
- ],
- "defaultCode": 58936,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 179,
- "ligatures": "confirmation_number",
- "id": 175,
- "prevSize": 24,
- "name": "confirmation_number",
- "code": 58936
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 175
- },
- {
- "icon": {
- "paths": [
- "M938 512v-256h-340v256h340zM598 768v-42c0-86-170-132-256-132s-256 46-256 132v42h512zM342 256c-70 0-128 58-128 128s58 128 128 128 128-58 128-128-58-128-128-128zM938 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-852c-46 0-86-40-86-86v-596c0-46 40-86 86-86h852zM896 342l-128 84-128-84v-44l128 86 128-86v44z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "contact_mail"
- ],
- "defaultCode": 57552,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 180,
- "ligatures": "contact_mail",
- "id": 176,
- "prevSize": 24,
- "name": "contact_mail",
- "code": 57552
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 176
- },
- {
- "icon": {
- "paths": [
- "M762 598c-10-26-16-56-16-86s6-60 16-86h70l64-84-84-86c-56 42-98 100-118 170-8 28-12 56-12 86s4 58 12 86c20 68 62 128 118 170l84-86-64-84h-70zM598 768v-42c0-86-170-132-256-132s-256 46-256 132v42h512zM342 256c-70 0-128 58-128 128s58 128 128 128 128-58 128-128-58-128-128-128zM938 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-852c-46 0-86-40-86-86v-596c0-46 40-86 86-86h852z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "contact_phone"
- ],
- "defaultCode": 57551,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 181,
- "ligatures": "contact_phone",
- "id": 177,
- "prevSize": 24,
- "name": "contact_phone",
- "code": 57551
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 177
- },
- {
- "icon": {
- "paths": [
- "M726 726v-64c0-72-142-108-214-108s-214 36-214 108v64h428zM512 288c-52 0-96 44-96 96s44 96 96 96 96-44 96-96-44-96-96-96zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h684zM170 1024v-86h684v86h-684zM854 0v86h-684v-86h684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "contacts"
- ],
- "defaultCode": 57530,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 182,
- "ligatures": "contacts",
- "id": 178,
- "prevSize": 24,
- "name": "contacts",
- "code": 57530
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 178
- },
- {
- "icon": {
- "paths": [
- "M810 896v-598h-468v598h468zM810 214c46 0 86 38 86 84v598c0 46-40 86-86 86h-468c-46 0-86-40-86-86v-598c0-46 40-84 86-84h468zM682 42v86h-512v598h-84v-598c0-46 38-86 84-86h512z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "content_copy"
- ],
- "defaultCode": 57677,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 183,
- "ligatures": "content_copy",
- "id": 179,
- "prevSize": 24,
- "name": "content_copy",
- "code": 57677
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 179
- },
- {
- "icon": {
- "paths": [
- "M810 128h128v42l-298 300-86-86zM512 534c12 0 22-10 22-22s-10-22-22-22-22 10-22 22 10 22 22 22zM256 854c46 0 86-38 86-86s-40-86-86-86-86 38-86 86 40 86 86 86zM256 342c46 0 86-38 86-86s-40-86-86-86-86 38-86 86 40 86 86 86zM412 326l526 528v42h-128l-298-298-100 100c10 22 14 44 14 70 0 94-76 170-170 170s-170-76-170-170 76-170 170-170c26 0 48 4 70 14l100-100-100-100c-22 10-44 14-70 14-94 0-170-76-170-170s76-170 170-170 170 76 170 170c0 26-4 48-14 70z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "content_cut"
- ],
- "defaultCode": 57678,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 184,
- "ligatures": "content_cut",
- "id": 180,
- "prevSize": 24,
- "name": "content_cut",
- "code": 57678
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 180
- },
- {
- "icon": {
- "paths": [
- "M810 854v-684h-84v128h-428v-128h-84v684h596zM512 86c-24 0-42 18-42 42s18 42 42 42 42-18 42-42-18-42-42-42zM810 86c46 0 86 38 86 84v684c0 46-40 84-86 84h-596c-46 0-86-38-86-84v-684c0-46 40-84 86-84h178c18-50 64-86 120-86s102 36 120 86h178z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "content_paste"
- ],
- "defaultCode": 57679,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 185,
- "ligatures": "content_paste",
- "id": 181,
- "prevSize": 24,
- "name": "content_paste",
- "code": 57679
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 181
- },
- {
- "icon": {
- "paths": [
- "M640 810c164 0 298-134 298-298s-134-298-298-298-298 134-298 298 134 298 298 298zM640 128c212 0 384 172 384 384s-172 384-384 384-384-172-384-384 172-384 384-384zM86 512c0 120 68 222 170 270v92c-148-52-256-196-256-362s108-310 256-362v92c-102 48-170 150-170 270zM682 342v128h128v84h-128v128h-84v-128h-128v-84h128v-128h84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "control_point_duplicate"
- ],
- "defaultCode": 58299,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 186,
- "ligatures": "control_point_duplicate",
- "id": 182,
- "prevSize": 24,
- "name": "control_point_duplicate",
- "code": 58299
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 182
- },
- {
- "icon": {
- "paths": [
- "M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM506 390c-61.522 0-80 54.457-80 116v12c0 61.538 18.508 116 80 116 37.558 0 70-22.925 70-60h76c0 39.042-21.138 68.404-44 88-25.786 22.102-55.81 36-102 36-109.169 0-164-72.147-164-180v-12c0-51.712 14.52-98.881 40-128 26.398-30.169 68.684-54 124-54 44.274 0 81.256 15.256 104 38 22.005 22.005 42 55.974 42 98h-76c0-10-2-18-6-26s-8-18-14-24c-10.835-10.835-29.352-20-50-20z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "copyright"
- ],
- "defaultCode": 59660,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 187,
- "ligatures": "copyright",
- "id": 183,
- "prevSize": 24,
- "name": "copyright",
- "code": 59660
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 183
- },
- {
- "icon": {
- "paths": [
- "M884 300l-78 78-160-160 78-78c16-16 44-16 60 0l100 100c16 16 16 44 0 60zM128 736l472-472 160 160-472 472h-160v-160z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "mode_edit"
- ],
- "defaultCode": 57940,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 188,
- "ligatures": "create, edit, mode_edit",
- "id": 184,
- "prevSize": 24,
- "name": "mode_edit",
- "code": 57940
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 184
- },
- {
- "icon": {
- "paths": [
- "M810 598v-86h-128v-128h-84v128h-128v86h128v128h84v-128h128zM854 256c48 0 84 38 84 86v426c0 48-36 86-84 86h-684c-48 0-84-38-84-86v-512c0-48 36-86 84-86h256l86 86h342z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "create_new_folder"
- ],
- "defaultCode": 58060,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 189,
- "ligatures": "create_new_folder",
- "id": 185,
- "prevSize": 24,
- "name": "create_new_folder",
- "code": 58060
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 185
- },
- {
- "icon": {
- "paths": [
- "M854 342v-86h-684v86h684zM854 768v-256h-684v256h684zM854 170c48 0 84 38 84 86v512c0 48-36 86-84 86h-684c-48 0-84-38-84-86v-512c0-48 36-86 84-86h684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "payment"
- ],
- "defaultCode": 59553,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 190,
- "ligatures": "credit_card, payment",
- "id": 186,
- "prevSize": 24,
- "name": "payment",
- "code": 59553
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 186
- },
- {
- "icon": {
- "paths": [
- "M298 726h684v84h-172v172h-84v-172h-428c-46 0-84-38-84-84v-428h-172v-84h172v-172h84v684zM726 640v-342h-342v-84h342c46 0 84 38 84 84v342h-84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "crop"
- ],
- "defaultCode": 58302,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 191,
- "ligatures": "crop",
- "id": 187,
- "prevSize": 24,
- "name": "crop",
- "code": 58302
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 187
- },
- {
- "icon": {
- "paths": [
- "M810 682v-340h-596v340h596zM810 256c46 0 86 40 86 86v340c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-340c0-46 40-86 86-86h596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "crop_16_9"
- ],
- "defaultCode": 58300,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 192,
- "ligatures": "crop_16_9",
- "id": 188,
- "prevSize": 24,
- "name": "crop_16_9",
- "code": 58300
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 188
- },
- {
- "icon": {
- "paths": [
- "M810 768v-512h-596v512h596zM810 170c46 0 86 40 86 86v512c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-512c0-46 40-86 86-86h596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "crop_3_2"
- ],
- "defaultCode": 58301,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 193,
- "ligatures": "crop_3_2",
- "id": 189,
- "prevSize": 24,
- "name": "crop_3_2",
- "code": 58301
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 189
- },
- {
- "icon": {
- "paths": [
- "M810 726v-428h-596v428h596zM810 214c46 0 86 38 86 84v428c0 46-40 84-86 84h-596c-46 0-86-38-86-84v-428c0-46 40-84 86-84h596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "crop_landscape"
- ],
- "defaultCode": 58307,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 194,
- "ligatures": "crop_5_4, crop_landscape",
- "id": 190,
- "prevSize": 24,
- "name": "crop_landscape",
- "code": 58307
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 190
- },
- {
- "icon": {
- "paths": [
- "M810 640v-256h-596v256h596zM810 298c46 0 86 40 86 86v256c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-256c0-46 40-86 86-86h596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "crop_7_5"
- ],
- "defaultCode": 58304,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 195,
- "ligatures": "crop_7_5",
- "id": 191,
- "prevSize": 24,
- "name": "crop_7_5",
- "code": 58304
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 191
- },
- {
- "icon": {
- "paths": [
- "M810 810v-596h-596v596h596zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "crop_din"
- ],
- "defaultCode": 58305,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 196,
- "ligatures": "crop_din",
- "id": 192,
- "prevSize": 24,
- "name": "crop_din",
- "code": 58305
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 192
- },
- {
- "icon": {
- "paths": [
- "M810 128c46 0 86 40 86 86v170h-86v-170h-170v-86h170zM810 810v-170h86v170c0 46-40 86-86 86h-170v-86h170zM214 640v170h170v86h-170c-46 0-86-40-86-86v-170h86zM128 214c0-46 40-86 86-86h170v86h-170v170h-86v-170z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "crop_free"
- ],
- "defaultCode": 58306,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 197,
- "ligatures": "crop_free",
- "id": 193,
- "prevSize": 24,
- "name": "crop_free",
- "code": 58306
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 193
- },
- {
- "icon": {
- "paths": [
- "M596 524l150 202h-468l116-152 84 102zM810 810v-596h-596v596h596zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "crop_original"
- ],
- "defaultCode": 58308,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 198,
- "ligatures": "crop_original",
- "id": 194,
- "prevSize": 24,
- "name": "crop_original",
- "code": 58308
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 194
- },
- {
- "icon": {
- "paths": [
- "M726 810v-596h-428v596h428zM726 128c46 0 84 40 84 86v596c0 46-38 86-84 86h-428c-46 0-84-40-84-86v-596c0-46 38-86 84-86h428z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "crop_portrait"
- ],
- "defaultCode": 58309,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 199,
- "ligatures": "crop_portrait",
- "id": 195,
- "prevSize": 24,
- "name": "crop_portrait",
- "code": 58309
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 195
- },
- {
- "icon": {
- "paths": [
- "M342 682h512v86h-86v86h-86v-86h-340c-48 0-86-40-86-86v-340h-86v-86h86v-86h86v512zM682 598v-256h-256v-86h256c46 0 86 38 86 86v256h-86zM514 0c268 0 488 208 510 470h-64c-16-160-114-296-254-362l-58 56-162-162c10 0 18-2 28-2zM318 916l58-56 162 162c-10 0-18 2-28 2-268 0-488-208-510-470h64c16 160 114 296 254 362z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "crop_rotate"
- ],
- "defaultCode": 58423,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 200,
- "ligatures": "crop_rotate",
- "id": 196,
- "prevSize": 24,
- "name": "crop_rotate",
- "code": 58423
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 196
- },
- {
- "icon": {
- "paths": [
- "M768 768v-512h-512v512h512zM768 170c46 0 86 40 86 86v512c0 46-40 86-86 86h-512c-46 0-86-40-86-86v-512c0-46 40-86 86-86h512z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "crop_square"
- ],
- "defaultCode": 58310,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 201,
- "ligatures": "crop_square",
- "id": 197,
- "prevSize": 24,
- "name": "crop_square",
- "code": 58310
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 197
- },
- {
- "icon": {
- "paths": [
- "M554 128h342v256h-342v-256zM554 896v-426h342v426h-342zM128 896v-256h342v256h-342zM128 554v-426h342v426h-342z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "dashboard"
- ],
- "defaultCode": 59505,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 202,
- "ligatures": "dashboard",
- "id": 198,
- "prevSize": 24,
- "name": "dashboard",
- "code": 59505
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 198
- },
- {
- "icon": {
- "paths": [
- "M512 810c94 0 178-44 232-112l112 66c-78 106-202 174-344 174-236 0-426-190-426-426 0-222 168-402 384-424v128c-144 20-256 146-256 296 0 166 132 298 298 298zM554 88c216 22 384 202 384 424 0 62-12 122-36 174l-112-66c12-34 20-70 20-108 0-150-112-276-256-296v-128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "data_usage"
- ],
- "defaultCode": 57775,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 203,
- "ligatures": "data_usage",
- "id": 199,
- "prevSize": 24,
- "name": "data_usage",
- "code": 57775
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 199
- },
- {
- "icon": {
- "paths": [
- "M810 854v-470h-596v470h596zM810 170c46 0 86 40 86 86v598c0 46-40 84-86 84h-596c-48 0-86-38-86-84v-598c0-46 38-86 86-86h42v-84h86v84h340v-84h86v84h42zM726 470v84h-86v-84h86zM554 470v84h-84v-84h84zM384 470v84h-86v-84h86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "date_range"
- ],
- "defaultCode": 59670,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 204,
- "ligatures": "date_range",
- "id": 200,
- "prevSize": 24,
- "name": "date_range",
- "code": 59670
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 200
- },
- {
- "icon": {
- "paths": [
- "M86 234h852v86h-852v-86zM86 448h852v86h-852v-86zM86 662h852v84h-852v-84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "dehaze"
- ],
- "defaultCode": 58311,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 205,
- "ligatures": "dehaze",
- "id": 201,
- "prevSize": 24,
- "name": "dehaze",
- "code": 58311
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 201
- },
- {
- "icon": {
- "paths": [
- "M810 170v86h-596v-86h148l44-42h212l44 42h148zM256 810v-512h512v512c0 46-40 86-86 86h-340c-46 0-86-40-86-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "delete"
- ],
- "defaultCode": 59506,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 206,
- "ligatures": "delete",
- "id": 202,
- "prevSize": 24,
- "name": "delete",
- "code": 59506
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 202
- },
- {
- "icon": {
- "paths": [
- "M662 170h148v86h-596v-86h148l44-42h212zM360 506l92 92-90 90 60 60 90-90 90 90 60-60-90-90 90-92-60-60-90 92-90-92zM256 810v-512h512v512c0 46-40 86-86 86h-340c-46 0-86-40-86-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "delete_forever"
- ],
- "defaultCode": 59691,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 207,
- "ligatures": "delete_forever",
- "id": 203,
- "prevSize": 24,
- "name": "delete_forever",
- "code": 59691
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 203
- },
- {
- "icon": {
- "paths": [
- "M598 214v84h-512v-84h128l42-44h170l44 44h128zM128 768v-426h426v426c0 46-38 86-84 86h-256c-46 0-86-40-86-86zM640 512h256v86h-256v-86zM640 342h298v84h-298v-84zM640 682h170v86h-170v-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "delete_sweep"
- ],
- "defaultCode": 57708,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 208,
- "ligatures": "delete_sweep",
- "id": 204,
- "prevSize": 24,
- "name": "delete_sweep",
- "code": 57708
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 204
- },
- {
- "icon": {
- "paths": [
- "M554 384h236l-236-234v234zM682 598v-86h-340v86h340zM682 768v-86h-340v86h340zM598 86l256 256v512c0 46-40 84-86 84h-512c-46 0-86-38-86-84l2-684c0-46 38-84 84-84h342z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "description"
- ],
- "defaultCode": 59507,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 209,
- "ligatures": "description",
- "id": 205,
- "prevSize": 24,
- "name": "description",
- "code": 59507
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 205
- },
- {
- "icon": {
- "paths": [
- "M896 598v-428h-768v428h768zM896 86c46 0 86 38 86 84v512c0 46-40 86-86 86h-298l84 128v42h-340v-42l84-128h-298c-46 0-86-40-86-86v-512c0-46 40-84 86-84h768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "desktop_mac"
- ],
- "defaultCode": 58123,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 210,
- "ligatures": "desktop_mac",
- "id": 206,
- "prevSize": 24,
- "name": "desktop_mac",
- "code": 58123
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 206
- },
- {
- "icon": {
- "paths": [
- "M896 682v-512h-768v512h768zM896 86c46 0 86 38 86 84v512c0 46-40 86-86 86h-298v86h84v84h-340v-84h84v-86h-298c-46 0-86-40-86-86v-512c0-46 40-84 86-84h768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "desktop_windows"
- ],
- "defaultCode": 58124,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 211,
- "ligatures": "desktop_windows",
- "id": 207,
- "prevSize": 24,
- "name": "desktop_windows",
- "code": 58124
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 207
- },
- {
- "icon": {
- "paths": [
- "M272 256l240 426 240-426h-480zM128 170h768l-384 684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "details"
- ],
- "defaultCode": 58312,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 212,
- "ligatures": "details",
- "id": 208,
- "prevSize": 24,
- "name": "details",
- "code": 58312
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 208
- },
- {
- "icon": {
- "paths": [
- "M512 470h170v256h-170v-256zM256 298h214v214h-214v-214zM512 298h170v128h-170v-128zM256 554h214v172h-214v-172zM768 810v-596h-598v596h598zM938 384h-84v86h84v84h-84v86h84v86h-84v84c0 46-40 86-86 86h-598c-46 0-84-40-84-86v-596c0-46 38-86 84-86h598c46 0 86 40 86 86v84h84v86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "developer_board"
- ],
- "defaultCode": 58125,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 213,
- "ligatures": "developer_board",
- "id": 209,
- "prevSize": 24,
- "name": "developer_board",
- "code": 58125
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 209
- },
- {
- "icon": {
- "paths": [
- "M726 810v-84h84v170c0 46-38 86-84 86h-428c-46 0-84-40-84-86v-170h84v84h428zM426 648l-60 60-196-196 196-196 60 60-134 136zM658 708l-60-60 134-136-134-136 60-60 196 196zM298 214v84h-84v-170c0-46 38-86 84-86l428 2c46 0 84 38 84 84v170h-84v-84h-428z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "developer_mode"
- ],
- "defaultCode": 57776,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 214,
- "ligatures": "developer_mode",
- "id": 210,
- "prevSize": 24,
- "name": "developer_mode",
- "code": 57776
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 210
- },
- {
- "icon": {
- "paths": [
- "M726 682h170v214h-214v-130l-170-180-170 180v130h-214v-214h170l172-170v-136c-50-18-86-64-86-120 0-70 58-128 128-128s128 58 128 128c0 56-36 102-86 120v136z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "device_hub"
- ],
- "defaultCode": 58165,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 215,
- "ligatures": "device_hub",
- "id": 211,
- "prevSize": 24,
- "name": "device_hub",
- "code": 58165
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 211
- },
- {
- "icon": {
- "paths": [
- "M938 726v-300h-170v300h170zM982 342c24 0 42 18 42 42v426c0 24-18 44-42 44h-256c-24 0-44-20-44-44v-426c0-24 20-42 44-42h256zM170 256v470h428v128h-598v-128h86v-470c0-46 38-86 84-86h768v86h-768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "phonelink"
- ],
- "defaultCode": 58150,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 216,
- "ligatures": "devices, phonelink",
- "id": 212,
- "prevSize": 24,
- "name": "phonelink",
- "code": 58150
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 212
- },
- {
- "icon": {
- "paths": [
- "M896 768v-342h-170v342h170zM938 342c22 0 44 20 44 42v426c0 22-22 44-44 44h-256c-22 0-42-22-42-44v-426c0-22 20-42 42-42h256zM470 746c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM554 512v76c26 24 44 56 44 94s-18 72-44 96v76h-170v-76c-26-24-42-58-42-96s16-70 42-94v-76h170zM128 256v512h170v86h-170c-46 0-86-40-86-86v-512c0-46 40-86 86-86h768v86h-768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "devices_other"
- ],
- "defaultCode": 58167,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 217,
- "ligatures": "devices_other",
- "id": 213,
- "prevSize": 24,
- "name": "devices_other",
- "code": 58167
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 213
- },
- {
- "icon": {
- "paths": [
- "M854 662c24 0 42 18 42 42v150c0 24-18 42-42 42-400 0-726-326-726-726 0-24 18-42 42-42h150c24 0 42 18 42 42 0 54 8 104 24 152 4 14 2 32-10 44l-94 94c62 122 162 220 282 282l94-94c12-12 30-14 44-10 48 16 98 24 152 24zM854 214v-44h-44v44h44zM768 128h128v128h-86v86h-42v-214zM640 214v128h-128v-44h86v-42h-86v-128h128v42h-86v44h86zM726 128v214h-44v-214h44z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "dialer_sip"
- ],
- "defaultCode": 57531,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 218,
- "ligatures": "dialer_sip",
- "id": 214,
- "prevSize": 24,
- "name": "dialer_sip",
- "code": 57531
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 214
- },
- {
- "icon": {
- "paths": [
- "M512 42c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM512 298c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM768 298c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM768 554c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM512 554c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM768 214c-46 0-86-40-86-86s40-86 86-86 86 40 86 86-40 86-86 86zM256 554c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM256 298c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM256 42c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM512 810c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "dialpad"
- ],
- "defaultCode": 57532,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 219,
- "ligatures": "dialpad",
- "id": 215,
- "prevSize": 24,
- "name": "dialpad",
- "code": 57532
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 215
- },
- {
- "icon": {
- "paths": [
- "M598 618l148-148-148-150v106h-214c-24 0-42 20-42 44v170h84v-128h172v106zM926 482c16 18 16 44 0 60l-384 384c-16 16-44 16-60 0l-384-384c-16-16-16-44 0-60l384-384c16-16 44-16 60 0z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "directions"
- ],
- "defaultCode": 58670,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 220,
- "ligatures": "directions",
- "id": 216,
- "prevSize": 24,
- "name": "directions",
- "code": 58670
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 216
- },
- {
- "icon": {
- "paths": [
- "M810 874c82 0 150-66 150-148s-68-150-150-150-148 68-148 150 66 148 148 148zM810 512c120 0 214 94 214 214s-94 212-214 212-212-92-212-212 92-214 212-214zM460 448l94 98v264h-84v-212l-138-120c-18-12-24-34-24-60 0-22 6-42 24-60l120-120c12-18 34-24 60-24s46 6 68 24l82 82c38 38 88 64 152 64v86c-90 0-160-34-216-90l-34-34zM214 874c82 0 148-66 148-148s-66-150-148-150-150 68-150 150 68 148 150 148zM214 512c120 0 212 94 212 214s-92 212-212 212-214-92-214-212 94-214 214-214zM662 234c-46 0-86-38-86-84s40-86 86-86 84 40 84 86-38 84-84 84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "directions_bike"
- ],
- "defaultCode": 58671,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 221,
- "ligatures": "directions_bike",
- "id": 217,
- "prevSize": 24,
- "name": "directions_bike",
- "code": 58671
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 217
- },
- {
- "icon": {
- "paths": [
- "M256 256v170l256-84 256 84v-170h-512zM168 810l-80-284c-9.564-28.693 7.98-47.327 28-54l54-18v-198c0-46 40-86 86-86h128v-128h256v128h128c46 0 86 40 86 86v198l54 18c20.040 6.68 37.574 25.277 28 54l-80 284h-2c-68 0-130-36-172-84-42 48-102 84-170 84s-128-36-170-84c-42 48-104 84-172 84h-2zM854 896h84v86h-84c-58 0-118-14-172-42-108 56-232 56-340 0-54 28-114 42-172 42h-84v-86h84c60 0 120-20 172-56 104 72 236 72 340 0 52 36 112 56 172 56z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "directions_boat"
- ],
- "defaultCode": 58674,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 222,
- "ligatures": "directions_boat",
- "id": 218,
- "prevSize": 24,
- "name": "directions_boat",
- "code": 58674
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 218
- },
- {
- "icon": {
- "paths": [
- "M768 470v-214h-512v214h512zM704 726c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM320 726c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM170 682v-426c0-150 154-170 342-170s342 20 342 170v426c0 38-18 72-44 96v76c0 24-18 42-42 42h-42c-24 0-44-18-44-42v-44h-340v44c0 24-20 42-44 42h-42c-24 0-42-18-42-42v-76c-26-24-44-58-44-96z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "directions_bus"
- ],
- "defaultCode": 58672,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 223,
- "ligatures": "directions_bus",
- "id": 219,
- "prevSize": 24,
- "name": "directions_bus",
- "code": 58672
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 219
- },
- {
- "icon": {
- "paths": [
- "M214 470h596l-64-192h-468zM746 682c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM278 682c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM808 256l88 256v342c0 24-18 42-42 42h-44c-24 0-42-18-42-42v-44h-512v44c0 24-18 42-42 42h-44c-24 0-42-18-42-42v-342l88-256c8-26 34-42 62-42h468c28 0 54 16 62 42z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "directions_car"
- ],
- "defaultCode": 58673,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 224,
- "ligatures": "directions_car",
- "id": 220,
- "prevSize": 24,
- "name": "directions_car",
- "code": 58673
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 220
- },
- {
- "icon": {
- "paths": [
- "M768 426v-212h-512v212h512zM512 726c46 0 86-40 86-86s-40-86-86-86-86 40-86 86 40 86 86 86zM170 662v-448c0-150 154-172 342-172s342 22 342 172v448c0 82-68 148-150 148l64 64v22h-512v-22l64-64c-82 0-150-66-150-148z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "directions_railway"
- ],
- "defaultCode": 58676,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 225,
- "ligatures": "directions_railway",
- "id": 221,
- "prevSize": 24,
- "name": "directions_railway",
- "code": 58676
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 221
- },
- {
- "icon": {
- "paths": [
- "M422 826l-298-58 16-86 210 42 68-346-78 30v146h-84v-200l222-94c12 0 22-4 34-4 30 0 54 16 72 42l42 68c34 60 102 102 184 102v86c-94 0-178-42-234-106l-26 128 90 84v320h-86v-256l-90-84zM576 234c-46 0-86-40-86-86s40-84 86-84 84 38 84 84-38 86-84 86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "directions_run"
- ],
- "defaultCode": 58726,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 226,
- "ligatures": "directions_run",
- "id": 222,
- "prevSize": 24,
- "name": "directions_run",
- "code": 58726
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 222
- },
- {
- "icon": {
- "paths": [
- "M768 470v-214h-214v214h214zM704 726c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM470 470v-214h-214v214h214zM320 726c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM512 86c188 0 342 20 342 170v406c0 82-68 148-150 148l64 64v22h-512v-22l64-64c-82 0-150-66-150-148v-406c0-150 154-170 342-170z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "directions_transit"
- ],
- "defaultCode": 58677,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 227,
- "ligatures": "directions_subway, directions_transit",
- "id": 223,
- "prevSize": 24,
- "name": "directions_transit",
- "code": 58677
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 223
- },
- {
- "icon": {
- "paths": [
- "M418 380l-120 602h90l78-342 88 86v256h86v-320l-90-86 26-128c56 64 140 106 234 106v-84c-82 0-148-44-182-104l-44-68c-18-26-42-42-72-42-12 0-22 4-34 4l-222 94v200h86v-144l76-30zM576 234c-46 0-86-38-86-84s40-86 86-86 86 40 86 86-40 84-86 84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "directions_walk"
- ],
- "defaultCode": 58678,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 228,
- "ligatures": "directions_walk",
- "id": 224,
- "prevSize": 24,
- "name": "directions_walk",
- "code": 58678
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 224
- },
- {
- "icon": {
- "paths": [
- "M426 598c46 0 86-40 86-86s-40-86-86-86-84 40-84 86 38 86 84 86zM426 170c188 0 342 154 342 342s-154 342-342 342-340-154-340-342 152-342 340-342zM854 298h84v214h-84v-214zM854 682v-84h84v84h-84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "disc_full"
- ],
- "defaultCode": 58896,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 229,
- "ligatures": "disc_full",
- "id": 225,
- "prevSize": 24,
- "name": "disc_full",
- "code": 58896
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 225
- },
- {
- "icon": {
- "paths": [
- "M298 384c46 0 86-40 86-86s-40-84-86-84-84 38-84 84 38 86 84 86zM854 128c24 0 42 18 42 42v256c0 24-18 44-42 44h-684c-24 0-42-20-42-44v-256c0-24 18-42 42-42h684zM298 810c46 0 86-38 86-84s-40-86-86-86-84 40-84 86 38 84 84 84zM854 554c24 0 42 20 42 44v256c0 24-18 42-42 42h-684c-24 0-42-18-42-42v-256c0-24 18-44 42-44h684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "dns"
- ],
- "defaultCode": 59509,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 230,
- "ligatures": "dns",
- "id": 226,
- "prevSize": 24,
- "name": "dns",
- "code": 59509
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 226
- },
- {
- "icon": {
- "paths": [
- "M782 722c46-58 72-132 72-210 0-188-154-342-342-342-78 0-152 26-210 72zM512 854c78 0 152-26 210-72l-480-480c-46 58-72 132-72 210 0 188 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "not_interested"
- ],
- "defaultCode": 57395,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 231,
- "ligatures": "do_not_disturb, not_interested",
- "id": 227,
- "prevSize": 24,
- "name": "not_interested",
- "code": 57395
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 227
- },
- {
- "icon": {
- "paths": [
- "M512 854c188 0 342-154 342-342 0-76-28-150-74-210l-478 478c60 46 134 74 210 74zM170 512c0 76 28 150 74 210l478-478c-60-46-134-74-210-74-188 0-342 154-342 342zM512 86c234 0 426 192 426 426s-192 426-426 426-426-192-426-426 192-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "do_not_disturb_alt"
- ],
- "defaultCode": 58897,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 232,
- "ligatures": "do_not_disturb_alt",
- "id": 228,
- "prevSize": 24,
- "name": "do_not_disturb_alt",
- "code": 58897
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 228
- },
- {
- "icon": {
- "paths": [
- "M298 554h148l-86-84h-62v84zM96 96l832 832-56 54-118-120c-68 48-152 76-242 76-236 0-426-190-426-426 0-90 28-174 76-242l-120-118zM726 470h-148l-308-308c68-48 152-76 242-76 236 0 426 190 426 426 0 90-28 174-76 242l-198-200h62v-84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "do_not_disturb_off"
- ],
- "defaultCode": 58947,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 233,
- "ligatures": "do_not_disturb_off",
- "id": 229,
- "prevSize": 24,
- "name": "do_not_disturb_off",
- "code": 58947
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 229
- },
- {
- "icon": {
- "paths": [
- "M726 554v-84h-428v84h428zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "remove_circle"
- ],
- "defaultCode": 57692,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 234,
- "ligatures": "do_not_disturb_on, remove_circle",
- "id": 230,
- "prevSize": 24,
- "name": "remove_circle",
- "code": 57692
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 230
- },
- {
- "icon": {
- "paths": [
- "M682 640v-426h-340v426h340zM682 44c46 0 86 38 86 84v598c0 46-40 84-86 84h-340c-46 0-86-38-86-84v-598c0-46 40-86 86-86zM342 982v-86h340v86h-340z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "dock"
- ],
- "defaultCode": 58126,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 235,
- "ligatures": "dock",
- "id": 231,
- "prevSize": 24,
- "name": "dock",
- "code": 58126
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 231
- },
- {
- "icon": {
- "paths": [
- "M384 692l452-454 60 60-512 512-238-238 58-60z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "done"
- ],
- "defaultCode": 59510,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 236,
- "ligatures": "done",
- "id": 232,
- "prevSize": 24,
- "name": "done",
- "code": 59510
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 232
- },
- {
- "icon": {
- "paths": [
- "M18 572l60-60 238 238-60 60zM948 238l62 60-512 512-240-238 62-60 178 178zM768 298l-270 272-60-60 270-272z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "done_all"
- ],
- "defaultCode": 59511,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 237,
- "ligatures": "done_all",
- "id": 233,
- "prevSize": 24,
- "name": "done_all",
- "code": 59511
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 233
- },
- {
- "icon": {
- "paths": [
- "M554 808c128-18 238-126 256-254h128c-20 214-170 364-384 384v-130zM810 470c-18-128-128-236-256-254v-130c214 20 364 170 384 384h-128zM470 216c-128 20-256 146-256 296s128 276 256 296v130c-214-22-384-204-384-426s170-404 384-426v130z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "donut_large"
- ],
- "defaultCode": 59671,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 238,
- "ligatures": "donut_large",
- "id": 234,
- "prevSize": 24,
- "name": "donut_large",
- "code": 59671
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 234
- },
- {
- "icon": {
- "paths": [
- "M554 634c42-12 66-44 80-80h304c-20 202-170 364-384 384v-304zM634 470c-14-36-38-68-80-80v-304c214 20 364 182 384 384h-304zM470 390c-42 18-86 66-86 122s44 104 86 122v304c-214-22-384-204-384-426s170-404 384-426v304z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "donut_small"
- ],
- "defaultCode": 59672,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 239,
- "ligatures": "donut_small",
- "id": 235,
- "prevSize": 24,
- "name": "donut_small",
- "code": 59672
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 235
- },
- {
- "icon": {
- "paths": [
- "M512 554l352-220-352-206-352 206zM938 342v426c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-426c0-30 16-60 40-74l386-226 386 226c24 14 40 44 40 74z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "drafts"
- ],
- "defaultCode": 57681,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 240,
- "ligatures": "drafts",
- "id": 236,
- "prevSize": 24,
- "name": "drafts",
- "code": 57681
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 236
- },
- {
- "icon": {
- "paths": [
- "M170 640v-86h684v86h-684zM854 384v86h-684v-86h684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "drag_handle"
- ],
- "defaultCode": 57949,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 241,
- "ligatures": "drag_handle",
- "id": 237,
- "prevSize": 24,
- "name": "drag_handle",
- "code": 57949
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 237
- },
- {
- "icon": {
- "paths": [
- "M214 426h596l-64-192h-468zM746 640c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM278 640c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM808 214l88 256v340c0 24-18 44-42 44h-44c-24 0-42-20-42-44v-42h-512v42c0 24-18 44-42 44h-44c-24 0-42-20-42-44v-340l88-256c8-26 34-44 62-44h468c28 0 54 18 62 44z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "time_to_leave"
- ],
- "defaultCode": 58924,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 242,
- "ligatures": "drive_eta, time_to_leave",
- "id": 238,
- "prevSize": 24,
- "name": "time_to_leave",
- "code": 58924
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 238
- },
- {
- "icon": {
- "paths": [
- "M298 512v86h-84v-86h84zM298 342v84h-84v-84h84zM810 512v86h-468v-86h468zM810 342v84h-468v-84h468zM896 726v-512h-768v512h768zM896 128c46 0 86 40 86 86l-2 512c0 46-38 84-84 84h-214v86h-340v-86h-214c-46 0-86-38-86-84v-512c0-46 40-86 86-86h768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "dvr"
- ],
- "defaultCode": 57778,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 243,
- "ligatures": "dvr",
- "id": 239,
- "prevSize": 24,
- "name": "dvr",
- "code": 57778
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 239
- },
- {
- "icon": {
- "paths": [
- "M636 322c6-6 6-16 0-22l-40-40c-6-6-16-6-22 0l-30 30 62 62zM446 512l142-142-62-62-142 142v62h62zM512 86c164 0 298 134 298 298 0 224-298 554-298 554s-298-330-298-554c0-164 134-298 298-298z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "edit_location"
- ],
- "defaultCode": 58728,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 244,
- "ligatures": "edit_location",
- "id": 240,
- "prevSize": 24,
- "name": "edit_location",
- "code": 58728
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 240
- },
- {
- "icon": {
- "paths": [
- "M512 214l284 426h-568zM214 726h596v84h-596v-84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "eject"
- ],
- "defaultCode": 59643,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 245,
- "ligatures": "eject",
- "id": 241,
- "prevSize": 24,
- "name": "eject",
- "code": 59643
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 241
- },
- {
- "icon": {
- "paths": [
- "M854 342v-86l-342 214-342-214v86l342 212zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "markunread"
- ],
- "defaultCode": 57689,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 246,
- "ligatures": "email, local_post_office, mail, markunread",
- "id": 242,
- "prevSize": 24,
- "name": "markunread",
- "code": 57689
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 242
- },
- {
- "icon": {
- "paths": [
- "M682 682v-84h-128v-128h-84v128h-128v84h128v128h84v-128h128zM380 256v86h264v-86c0-72-60-132-132-132s-132 60-132 132zM768 342c46 0 86 38 86 84v428c0 46-40 84-86 84h-512c-46 0-86-38-86-84v-428c0-46 40-84 86-84h42v-86c0-118 96-214 214-214s214 96 214 214v86h42z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "enhanced_encryption"
- ],
- "defaultCode": 58943,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 247,
- "ligatures": "enhanced_encryption",
- "id": 243,
- "prevSize": 24,
- "name": "enhanced_encryption",
- "code": 58943
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 243
- },
- {
- "icon": {
- "paths": [
- "M682 384h172v470h-172v-470zM170 854v-342h172v342h-172zM426 854v-684h172v684h-172z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "equalizer"
- ],
- "defaultCode": 57373,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 248,
- "ligatures": "equalizer",
- "id": 244,
- "prevSize": 24,
- "name": "equalizer",
- "code": 57373
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 244
- },
- {
- "icon": {
- "paths": [
- "M554 554v-256h-84v256h84zM554 726v-86h-84v86h84zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "error"
- ],
- "defaultCode": 57344,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 249,
- "ligatures": "error",
- "id": 245,
- "prevSize": 24,
- "name": "error",
- "code": 57344
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 245
- },
- {
- "icon": {
- "paths": [
- "M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM470 298h84v256h-84v-256zM470 640h84v86h-84v-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "error_outline"
- ],
- "defaultCode": 57345,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 250,
- "ligatures": "error_outline",
- "id": 246,
- "prevSize": 24,
- "name": "error_outline",
- "code": 57345
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 246
- },
- {
- "icon": {
- "paths": [
- "M640 790c70 0 132-26 180-68l76 76c-68 62-158 98-256 98-168 0-310-108-362-256h-150v-86h130c-2-14-2-28-2-42s0-28 2-42h-130v-86h150c52-148 194-256 362-256 98 0 188 36 256 98l-76 76c-48-42-112-68-180-68-106 0-200 62-246 150h246v86h-274c-2 14-4 28-4 42s2 28 4 42h274v86h-246c46 88 138 150 246 150z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "euro_symbol"
- ],
- "defaultCode": 59686,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 251,
- "ligatures": "euro_symbol",
- "id": 247,
- "prevSize": 24,
- "name": "euro_symbol",
- "code": 59686
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 247
- },
- {
- "icon": {
- "paths": [
- "M342 768l170-298h-86v-214l-170 320h86v192zM768 426c24 0 42-18 42-42s-18-42-42-42-42 18-42 42 18 42 42 42zM844 308c20 20 30 46 30 76v406c0 58-48 106-106 106s-106-48-106-106v-214h-64v320h-428v-682c0-46 40-86 86-86h256c46 0 86 40 86 86v298h42c46 0 86 40 86 86v192c0 24 18 42 42 42s42-18 42-42v-308c-14 6-26 8-42 8-58 0-106-48-106-106 0-46 28-84 68-100l-90-90 46-44z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "ev_station"
- ],
- "defaultCode": 58733,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 252,
- "ligatures": "ev_station",
- "id": 248,
- "prevSize": 24,
- "name": "ev_station",
- "code": 58733
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 248
- },
- {
- "icon": {
- "paths": [
- "M810 810v-468h-596v468h596zM682 42h86v86h42c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h42v-86h86v86h340v-86zM726 512v214h-214v-214h214z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "insert_invitation"
- ],
- "defaultCode": 57935,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 253,
- "ligatures": "event, insert_invitation",
- "id": 249,
- "prevSize": 24,
- "name": "insert_invitation",
- "code": 57935
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 249
- },
- {
- "icon": {
- "paths": [
- "M810 810v-468h-596v468h596zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h42v-86h86v86h340v-86h86v86h42zM706 472l-254 254-136-136 46-46 90 90 208-208z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "event_available"
- ],
- "defaultCode": 58900,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 254,
- "ligatures": "event_available",
- "id": 250,
- "prevSize": 24,
- "name": "event_available",
- "code": 58900
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 250
- },
- {
- "icon": {
- "paths": [
- "M810 810v-468h-596v468h596zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h42v-86h86v86h340v-86h86v86h42zM398 726l-46-46 104-104-104-104 46-46 104 104 104-104 44 46-104 104 104 104-44 46-104-104z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "event_busy"
- ],
- "defaultCode": 58901,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 255,
- "ligatures": "event_busy",
- "id": 251,
- "prevSize": 24,
- "name": "event_busy",
- "code": 58901
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 251
- },
- {
- "icon": {
- "paths": [
- "M598 598v84h-300v-84h300zM810 810v-468h-596v468h596zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h42v-86h86v86h340v-86h86v86h42zM726 426v86h-428v-86h428z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "event_note"
- ],
- "defaultCode": 58902,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 256,
- "ligatures": "event_note",
- "id": 252,
- "prevSize": 24,
- "name": "event_note",
- "code": 58902
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 252
- },
- {
- "icon": {
- "paths": [
- "M726 554h-428v-340c0-46 40-86 86-86h256c46 0 86 40 86 86v340zM86 426h128v128h-128v-128zM810 426h128v128h-128v-128zM170 896v-256h684v256h-128v-128h-428v128h-128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "event_seat"
- ],
- "defaultCode": 59651,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 257,
- "ligatures": "event_seat",
- "id": 253,
- "prevSize": 24,
- "name": "event_seat",
- "code": 59651
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 253
- },
- {
- "icon": {
- "paths": [
- "M810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-170h86v170h596v-596h-596v170h-86v-170c0-46 38-86 86-86h596zM430 666l110-112h-412v-84h412l-110-112 60-60 214 214-214 214z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "exit_to_app"
- ],
- "defaultCode": 59513,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 258,
- "ligatures": "exit_to_app",
- "id": 254,
- "prevSize": 24,
- "name": "exit_to_app",
- "code": 59513
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 254
- },
- {
- "icon": {
- "paths": [
- "M512 342l256 256-60 60-196-196-196 196-60-60z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "expand_less"
- ],
- "defaultCode": 58830,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 259,
- "ligatures": "expand_less",
- "id": 255,
- "prevSize": 24,
- "name": "expand_less",
- "code": 58830
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 255
- },
- {
- "icon": {
- "paths": [
- "M708 366l60 60-256 256-256-256 60-60 196 196z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "expand_more"
- ],
- "defaultCode": 58831,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 260,
- "ligatures": "expand_more",
- "id": 256,
- "prevSize": 24,
- "name": "expand_more",
- "code": 58831
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 256
- },
- {
- "icon": {
- "paths": [
- "M640 384v-86h-256v428h256v-86h-170v-86h170v-84h-170v-86h170zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "explicit"
- ],
- "defaultCode": 57374,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 261,
- "ligatures": "explicit",
- "id": 257,
- "prevSize": 24,
- "name": "explicit",
- "code": 57374
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 257
- },
- {
- "icon": {
- "paths": [
- "M606 606l162-350-350 162-162 350zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM512 466c26 0 46 20 46 46s-20 46-46 46-46-20-46-46 20-46 46-46z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "explore"
- ],
- "defaultCode": 59514,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 262,
- "ligatures": "explore",
- "id": 258,
- "prevSize": 24,
- "name": "explore",
- "code": 59514
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 258
- },
- {
- "icon": {
- "paths": [
- "M854 854v-684l-684 684h684zM214 214v84h256v-84h-256zM854 86c46 0 84 38 84 84v684c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-684c0-46 38-84 84-84h684zM640 726h-86v-86h86v-86h86v86h84v86h-84v84h-86v-84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "exposure"
- ],
- "defaultCode": 58314,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 263,
- "ligatures": "exposure",
- "id": 259,
- "prevSize": 24,
- "name": "exposure",
- "code": 58314
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 259
- },
- {
- "icon": {
- "paths": [
- "M810 768h-84v-454l-128 44v-72l200-72h12v554zM170 470h342v84h-342v-84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "exposure_neg_1"
- ],
- "defaultCode": 58315,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 264,
- "ligatures": "exposure_neg_1",
- "id": 260,
- "prevSize": 24,
- "name": "exposure_neg_1",
- "code": 58315
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 260
- },
- {
- "icon": {
- "paths": [
- "M86 470h340v84h-340v-84zM702 214c103.361 0 172 46.875 172 150 0 16-2 34-8 50s-12 34-22 50c-21.913 35.061-50.22 70.22-80 100l-122 132h254v72h-368v-64l178-194c27.051-27.051 44.466-50.776 62-80 10.155-16.925 14-31.054 14-56 0-12 0-26-4-36-11.918-29.795-34.301-52-76-52-60.876 0-92 36.935-92 98h-92c0-51.336 20.69-92.69 48-120 31.385-31.385 73.692-50 136-50z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "exposure_neg_2"
- ],
- "defaultCode": 58316,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 265,
- "ligatures": "exposure_neg_2",
- "id": 261,
- "prevSize": 24,
- "name": "exposure_neg_2",
- "code": 58316
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 261
- },
- {
- "icon": {
- "paths": [
- "M854 768h-86v-454l-128 44v-72l200-72h14v554zM426 298v172h172v84h-172v172h-84v-172h-172v-84h172v-172h84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "exposure_plus_1"
- ],
- "defaultCode": 58317,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 266,
- "ligatures": "exposure_plus_1",
- "id": 262,
- "prevSize": 24,
- "name": "exposure_plus_1",
- "code": 58317
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 262
- },
- {
- "icon": {
- "paths": [
- "M342 298v172h170v84h-170v172h-86v-172h-170v-84h170v-172h86zM684 696h254v72h-368v-64l178-194c27.051-27.051 44.466-50.776 62-80 9.657-16.095 16-33.377 16-56 0-27.976-9.972-45.963-22-62-12.776-17.035-30.076-26-60-26-30.802 0-54.673 12.673-70 28-13.992 13.992-22 43.42-22 70h-92c0-51.336 20.69-92.69 48-120 16-16 34-30 58-38s50-12 80-12c28 0 50 4 72 10 20 8 40 16 54 30 26.805 22.976 46 61.985 46 110 0 40.444-14.717 72.348-32 100-10 16-20 34-34 50s-30 34-46 50z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "exposure_plus_2"
- ],
- "defaultCode": 58318,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 267,
- "ligatures": "exposure_plus_2",
- "id": 263,
- "prevSize": 24,
- "name": "exposure_plus_2",
- "code": 58318
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 263
- },
- {
- "icon": {
- "paths": [
- "M598 432c0-51.604-2.887-85.33-22-114-8-12-18-18-28-24s-22-8-36-8-26 2-36 8-20 12-28 24c-19.070 28.606-22 62.453-22 114v114c0 68.64 9.322 117.593 50 142 10 6 22 8 36 8 33.536 0 49.61-12.416 64-34 17.74-26.61 24-68.817 24-116v-114h-2zM336 446c0-137.059 42.756-232 176-232 93.018 0 143.69 47.837 164 124 8 30 14 64 14 108v88h-2c0 79.48-15.373 138.051-48 180-16 18-34 34-56 42s-46 12-72 12-50-4-72-12-40-24-56-42c-34.893-39.254-48-102.511-48-180v-88z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "exposure_zero"
- ],
- "defaultCode": 58319,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 268,
- "ligatures": "exposure_zero",
- "id": 264,
- "prevSize": 24,
- "name": "exposure_zero",
- "code": 58319
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 264
- },
- {
- "icon": {
- "paths": [
- "M874 470c58 0 108 48 108 106s-50 106-108 106h-64v172c0 46-38 84-84 84h-162v-64c0-64-52-114-116-114s-116 50-116 114v64h-162c-46 0-84-38-84-84v-162h64c64 0 114-52 114-116s-50-116-114-116h-64v-162c0-46 38-84 84-84h172v-64c0-58 48-108 106-108s106 50 106 108v64h172c46 0 84 38 84 84v172h64z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "extension"
- ],
- "defaultCode": 59515,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 269,
- "ligatures": "extension",
- "id": 265,
- "prevSize": 24,
- "name": "extension",
- "code": 59515
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 265
- },
- {
- "icon": {
- "paths": [
- "M512 854c188 0 342-154 342-342 0-34-6-66-14-96-30 8-62 10-96 10-144 0-270-70-348-180-42 102-124 186-224 230-2 12-2 24-2 36 0 188 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM640 502c30 0 54 22 54 52s-24 54-54 54-54-24-54-54 24-52 54-52zM384 502c30 0 54 22 54 52s-24 54-54 54-54-24-54-54 24-52 54-52z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "face"
- ],
- "defaultCode": 59516,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 270,
- "ligatures": "face",
- "id": 266,
- "prevSize": 24,
- "name": "face",
- "code": 59516
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 266
- },
- {
- "icon": {
- "paths": [
- "M554 256l364 256-364 256v-512zM170 768v-512l364 256z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "fast_forward"
- ],
- "defaultCode": 57375,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 271,
- "ligatures": "fast_forward",
- "id": 267,
- "prevSize": 24,
- "name": "fast_forward",
- "code": 57375
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 267
- },
- {
- "icon": {
- "paths": [
- "M490 512l364-256v512zM470 768l-364-256 364-256v512z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "fast_rewind"
- ],
- "defaultCode": 57376,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 272,
- "ligatures": "fast_rewind",
- "id": 268,
- "prevSize": 24,
- "name": "fast_rewind",
- "code": 57376
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 268
- },
- {
- "icon": {
- "paths": [
- "M512 910l-62-56c-220-200-364-330-364-492 0-132 102-234 234-234 74 0 146 36 192 90 46-54 118-90 192-90 132 0 234 102 234 234 0 162-144 294-364 494z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "favorite"
- ],
- "defaultCode": 59517,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 273,
- "ligatures": "favorite",
- "id": 269,
- "prevSize": 24,
- "name": "favorite",
- "code": 59517
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 269
- },
- {
- "icon": {
- "paths": [
- "M516 792c204-184 338-306 338-430 0-86-64-148-150-148-66 0-130 42-152 100h-80c-22-58-86-100-152-100-86 0-150 62-150 148 0 124 134 246 338 430l4 4zM704 128c132 0 234 102 234 234 0 162-144 292-364 492l-62 56-62-54c-220-200-364-332-364-494 0-132 102-234 234-234 74 0 146 36 192 90 46-54 118-90 192-90z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "favorite_border"
- ],
- "defaultCode": 59518,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 274,
- "ligatures": "favorite_border",
- "id": 270,
- "prevSize": 24,
- "name": "favorite_border",
- "code": 59518
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 270
- },
- {
- "icon": {
- "paths": [
- "M512 298v-84h-384v84h384zM512 470v-86h-384v86h384zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "featured_play_list"
- ],
- "defaultCode": 57453,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 275,
- "ligatures": "featured_play_list",
- "id": 271,
- "prevSize": 24,
- "name": "featured_play_list",
- "code": 57453
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 271
- },
- {
- "icon": {
- "paths": [
- "M512 512v-298h-384v298h384zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "featured_video"
- ],
- "defaultCode": 57454,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 276,
- "ligatures": "featured_video",
- "id": 272,
- "prevSize": 24,
- "name": "featured_video",
- "code": 57454
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 272
- },
- {
- "icon": {
- "paths": [
- "M554 426v-170h-84v170h84zM554 598v-86h-84v86h84zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "sms_failed"
- ],
- "defaultCode": 58918,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 277,
- "ligatures": "feedback, sms_failed",
- "id": 273,
- "prevSize": 24,
- "name": "sms_failed",
- "code": 58918
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 273
- },
- {
- "icon": {
- "paths": [
- "M896 490v-42c0-36-28-64-64-64h-150v256h64v-86h50l36 86h64l-38-90c22-10 38-34 38-60zM538 640l76-256h-64l-44 146-42-146h-64l74 256h64zM342 576v-128c0-36-28-64-64-64h-150v256h150c36 0 64-28 64-64zM896 128c48 0 86 38 86 86v596c0 46-38 86-86 86h-768c-48 0-86-40-86-86v-596c0-48 38-86 86-86h768zM192 448h86v128h-86v-128zM746 448h86v42h-86v-42z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "fiber_dvr"
- ],
- "defaultCode": 57437,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 278,
- "ligatures": "fiber_dvr",
- "id": 274,
- "prevSize": 24,
- "name": "fiber_dvr",
- "code": 57437
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 274
- },
- {
- "icon": {
- "paths": [
- "M170 512c0-188 154-342 342-342s342 154 342 342-154 342-342 342-342-154-342-342z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "fiber_manual_record"
- ],
- "defaultCode": 57441,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 279,
- "ligatures": "fiber_manual_record",
- "id": 275,
- "prevSize": 24,
- "name": "fiber_manual_record",
- "code": 57441
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 275
- },
- {
- "icon": {
- "paths": [
- "M874 598v-214h-52v192h-48v-150h-54v150h-48v-192h-54v214c0 24 20 42 44 42h170c24 0 42-18 42-42zM576 438v-54h-170v256h170v-54h-106v-46h106v-54h-106v-48h106zM362 640v-256h-52v150l-108-150h-52v256h52v-150l110 150h50zM854 170c48 0 84 38 84 86v512c0 48-36 86-84 86h-684c-48 0-84-38-84-86v-512c0-48 36-86 84-86h684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "fiber_new"
- ],
- "defaultCode": 57438,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 280,
- "ligatures": "fiber_new",
- "id": 276,
- "prevSize": 24,
- "name": "fiber_new",
- "code": 57438
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 276
- },
- {
- "icon": {
- "paths": [
- "M854 640v-256h-54v150l-106-150h-54v256h54v-150l108 150h52zM534 640v-256h-64v256h64zM384 490v-42c0-36-28-64-64-64h-150v256h64v-86h86c36 0 64-28 64-64zM854 170c48 0 84 38 84 86v512c0 48-36 86-84 86h-684c-48 0-84-38-84-86v-512c0-48 36-86 84-86h684zM234 448h86v42h-86v-42z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "fiber_pin"
- ],
- "defaultCode": 57450,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 281,
- "ligatures": "fiber_pin",
- "id": 277,
- "prevSize": 24,
- "name": "fiber_pin",
- "code": 57450
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 277
- },
- {
- "icon": {
- "paths": [
- "M726 182c148 38 256 170 256 330s-108 292-256 330v-88c100-34 170-130 170-242s-70-208-170-242v-88zM42 512c0-188 154-342 342-342s342 154 342 342-154 342-342 342-342-154-342-342z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "fiber_smart_record"
- ],
- "defaultCode": 57442,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 282,
- "ligatures": "fiber_smart_record",
- "id": 278,
- "prevSize": 24,
- "name": "fiber_smart_record",
- "code": 57442
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 278
- },
- {
- "icon": {
- "paths": [
- "M214 768h596v86h-596v-86zM810 384l-298 298-298-298h170v-256h256v256h170z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "get_app"
- ],
- "defaultCode": 59524,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 283,
- "ligatures": "file_download, get_app",
- "id": 279,
- "prevSize": 24,
- "name": "get_app",
- "code": 59524
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 279
- },
- {
- "icon": {
- "paths": [
- "M214 768h596v86h-596v-86zM384 682v-256h-170l298-298 298 298h-170v256h-256z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "file_upload"
- ],
- "defaultCode": 58054,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 284,
- "ligatures": "file_upload",
- "id": 280,
- "prevSize": 24,
- "name": "file_upload",
- "code": 58054
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 280
- },
- {
- "icon": {
- "paths": [
- "M896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86zM680 440l152 200h-470l118-150 84 100z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "filter"
- ],
- "defaultCode": 58323,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 285,
- "ligatures": "filter",
- "id": 281,
- "prevSize": 24,
- "name": "filter",
- "code": 58323
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 281
- },
- {
- "icon": {
- "paths": [
- "M896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598zM598 640v-342h-86v-84h170v426h-84zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "filter_1"
- ],
- "defaultCode": 58320,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 286,
- "ligatures": "filter_1",
- "id": 282,
- "prevSize": 24,
- "name": "filter_1",
- "code": 58320
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 282
- },
- {
- "icon": {
- "paths": [
- "M726 554v86h-256v-170c0-48 38-86 84-86h86v-86h-170v-84h170c46 0 86 36 86 84v86c0 48-40 86-86 86h-86v84h172zM896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "filter_2"
- ],
- "defaultCode": 58321,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 287,
- "ligatures": "filter_2",
- "id": 283,
- "prevSize": 24,
- "name": "filter_2",
- "code": 58321
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 283
- },
- {
- "icon": {
- "paths": [
- "M726 554c0 48-40 86-86 86h-170v-86h170v-84h-86v-86h86v-86h-170v-84h170c46 0 86 36 86 84v64c0 36-28 64-64 64 36 0 64 28 64 64v64zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86zM896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "filter_3"
- ],
- "defaultCode": 58322,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 288,
- "ligatures": "filter_3",
- "id": 284,
- "prevSize": 24,
- "name": "filter_3",
- "code": 58322
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 284
- },
- {
- "icon": {
- "paths": [
- "M896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598zM640 640v-170h-170v-256h84v170h86v-170h86v426h-86zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "filter_4"
- ],
- "defaultCode": 58324,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 289,
- "ligatures": "filter_4",
- "id": 285,
- "prevSize": 24,
- "name": "filter_4",
- "code": 58324
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 285
- },
- {
- "icon": {
- "paths": [
- "M726 554c0 48-40 86-86 86h-170v-86h170v-84h-170v-256h256v84h-172v86h86c46 0 86 38 86 86v84zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86zM896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "filter_5"
- ],
- "defaultCode": 58325,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 290,
- "ligatures": "filter_5",
- "id": 286,
- "prevSize": 24,
- "name": "filter_5",
- "code": 58325
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 286
- },
- {
- "icon": {
- "paths": [
- "M554 470v84h86v-84h-86zM554 640c-46 0-84-38-84-86v-256c0-48 38-84 84-84h172v84h-172v86h86c46 0 86 38 86 86v84c0 48-40 86-86 86h-86zM896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "filter_6"
- ],
- "defaultCode": 58326,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 291,
- "ligatures": "filter_6",
- "id": 287,
- "prevSize": 24,
- "name": "filter_6",
- "code": 58326
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 287
- },
- {
- "icon": {
- "paths": [
- "M554 640h-84l170-342h-170v-84h256v84zM896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "filter_7"
- ],
- "defaultCode": 58327,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 292,
- "ligatures": "filter_7",
- "id": 288,
- "prevSize": 24,
- "name": "filter_7",
- "code": 58327
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 288
- },
- {
- "icon": {
- "paths": [
- "M554 470v84h86v-84h-86zM554 298v86h86v-86h-86zM554 640c-46 0-84-38-84-86v-64c0-36 28-64 64-64-36 0-64-28-64-64v-64c0-48 38-84 84-84h86c46 0 86 36 86 84v64c0 36-28 64-64 64 36 0 64 28 64 64v64c0 48-40 86-86 86h-86zM896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "filter_8"
- ],
- "defaultCode": 58328,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 293,
- "ligatures": "filter_8",
- "id": 289,
- "prevSize": 24,
- "name": "filter_8",
- "code": 58328
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 289
- },
- {
- "icon": {
- "paths": [
- "M640 384v-86h-86v86h86zM640 214c46 0 86 36 86 84v256c0 48-40 86-86 86h-170v-86h170v-84h-86c-46 0-84-38-84-86v-86c0-48 38-84 84-84h86zM896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "filter_9"
- ],
- "defaultCode": 58329,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 294,
- "ligatures": "filter_9",
- "id": 290,
- "prevSize": 24,
- "name": "filter_9",
- "code": 58329
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 290
- },
- {
- "icon": {
- "paths": [
- "M896 384v-256h-598v598h598v-256h-86v84h-84v-84h-86v-86h86v-86h84v86h86zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598zM470 384h42v-42h-42v42zM598 512c0 48-40 86-86 86h-128v-86h128v-42h-42c-46 0-86-38-86-86v-42c0-48 40-86 86-86h42c46 0 86 38 86 86v170zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "filter_9_plus"
- ],
- "defaultCode": 58330,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 295,
- "ligatures": "filter_9_plus",
- "id": 291,
- "prevSize": 24,
- "name": "filter_9_plus",
- "code": 58330
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 291
- },
- {
- "icon": {
- "paths": [
- "M810 810v-596h-298v256zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596zM512 470l-298 340h298v-340z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "filter_b_and_w"
- ],
- "defaultCode": 58331,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 296,
- "ligatures": "filter_b_and_w",
- "id": 292,
- "prevSize": 24,
- "name": "filter_b_and_w",
- "code": 58331
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 292
- },
- {
- "icon": {
- "paths": [
- "M512 384c70 0 128 58 128 128s-58 128-128 128-128-58-128-128 58-128 128-128zM810 810v-170h86v170c0 46-40 86-86 86h-170v-86h170zM810 128c46 0 86 40 86 86v170h-86v-170h-170v-86h170zM214 214v170h-86v-170c0-46 40-86 86-86h170v86h-170zM214 640v170h170v86h-170c-46 0-86-40-86-86v-170h86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "filter_center_focus"
- ],
- "defaultCode": 58332,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 297,
- "ligatures": "filter_center_focus",
- "id": 293,
- "prevSize": 24,
- "name": "filter_center_focus",
- "code": 58332
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 293
- },
- {
- "icon": {
- "paths": [
- "M810 768c70 0 128-58 128-128s-58-128-128-128h-64v-22c0-130-104-234-234-234-76 0-144 36-188 94 108 30 188 130 188 248h-86c0-94-76-172-170-172s-170 78-170 172 76 170 170 170h554zM826 428c110 8 198 100 198 212 0 118-96 214-214 214h-554c-142 0-256-114-256-256 0-132 100-240 228-254 54-102 160-174 284-174 156 0 284 110 314 258z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "filter_drama"
- ],
- "defaultCode": 58333,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 298,
- "ligatures": "filter_drama",
- "id": 294,
- "prevSize": 24,
- "name": "filter_drama",
- "code": 58333
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 294
- },
- {
- "icon": {
- "paths": [
- "M768 342h-512v426h512zM854 854v-598h-192l-148-150-150 150h-194v598h684zM854 170c46 0 84 40 84 86v598c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-598c0-46 38-86 84-86h172l170-170 170 170h172z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "filter_frames"
- ],
- "defaultCode": 58334,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 299,
- "ligatures": "filter_frames",
- "id": 295,
- "prevSize": 24,
- "name": "filter_frames",
- "code": 58334
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 295
- },
- {
- "icon": {
- "paths": [
- "M598 256l384 512h-940l256-342 192 256 68-50-120-162z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "terrain"
- ],
- "defaultCode": 58724,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 300,
- "ligatures": "filter_hdr, landscape, terrain",
- "id": 296,
- "prevSize": 24,
- "name": "terrain",
- "code": 58724
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 296
- },
- {
- "icon": {
- "paths": [
- "M256 554v-84h512v84h-512zM128 256h768v86h-768v-86zM426 768v-86h172v86h-172z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "filter_list"
- ],
- "defaultCode": 57682,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 301,
- "ligatures": "filter_list",
- "id": 297,
- "prevSize": 24,
- "name": "filter_list",
- "code": 57682
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 297
- },
- {
- "icon": {
- "paths": [
- "M896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "filter_none"
- ],
- "defaultCode": 58336,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 302,
- "ligatures": "filter_none",
- "id": 298,
- "prevSize": 24,
- "name": "filter_none",
- "code": 58336
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 298
- },
- {
- "icon": {
- "paths": [
- "M242 842l60-60c48 36 106 60 168 68v86c-86-8-164-42-228-94zM554 850c62-8 120-32 166-68l62 60c-64 52-142 86-228 94v-86zM782 722c36-48 60-104 68-166h86c-8 86-42 162-94 226zM640 512c0 70-58 128-128 128s-128-58-128-128 58-128 128-128 128 58 128 128zM174 554c8 62 32 120 68 166l-60 62c-52-64-86-142-94-228h86zM242 302c-36 48-60 106-68 168h-86c8-86 42-164 94-228zM850 470c-8-62-32-120-68-168l60-60c52 64 86 142 94 228h-86zM782 182l-60 60c-48-36-106-60-168-68v-86c86 8 164 42 228 94zM470 174c-62 8-120 32-168 68l-60-60c64-52 142-86 228-94v86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "filter_tilt_shift"
- ],
- "defaultCode": 58338,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 303,
- "ligatures": "filter_tilt_shift",
- "id": 299,
- "prevSize": 24,
- "name": "filter_tilt_shift",
- "code": 58338
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 299
- },
- {
- "icon": {
- "paths": [
- "M512 682c94 0 170-76 170-170s-76-170-170-170-170 76-170 170 76 170 170 170zM98 750c0-98.433 62.724-204.242 164-238-12-4-24-12-36-18-82-48-128-132-128-220 76-44 174-48 256 0 12 6 24 14 34 22-2-14-4-26-4-40 0-94 52-178 128-222 76 44 128 128 128 222 0 14-2 26-4 40 10-8 22-16 34-22 82-48 180-44 256 0 0 88-46 172-128 220-12 6-24 14-36 18 12 4 24 12 36 18 82 48 128 132 128 220-76 44-174 48-256 0-12-6-24-14-34-22 2 14 4 26 4 40 0 94-52 178-128 222-76-44-128-128-128-222 0-14 2-26 4-40-10 8-22 16-34 22-82 48-180 44-256 0z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "filter_vintage"
- ],
- "defaultCode": 58339,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 304,
- "ligatures": "filter_vintage",
- "id": 300,
- "prevSize": 24,
- "name": "filter_vintage",
- "code": 58339
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 300
- },
- {
- "icon": {
- "paths": [
- "M384 554c0-70 58-128 128-128s128 58 128 128-58 128-128 128-128-58-128-128zM854 836l-164-164c22-34 36-74 36-118 0-118-96-212-214-212s-214 94-214 212 96 214 214 214c44 0 84-14 118-36l188 190c-14 10-30 16-50 16h-512c-46 0-86-38-86-84l2-684c0-46 38-84 84-84h342l256 256v494z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "find_in_page"
- ],
- "defaultCode": 59520,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 305,
- "ligatures": "find_in_page",
- "id": 301,
- "prevSize": 24,
- "name": "find_in_page",
- "code": 59520
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 301
- },
- {
- "icon": {
- "paths": [
- "M710 646l206 208-62 62-208-206c-50 36-110 58-176 58-82 0-158-34-212-88l-88 88v-256h256l-108 108c38 38 94 62 152 62 104 0 188-72 208-170h86c-6 50-26 96-54 134zM470 256c-104 0-190 72-210 170h-86c20-144 146-256 296-256 82 0 156 34 210 88l88-88v256h-256l108-108c-38-38-92-62-150-62z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "find_replace"
- ],
- "defaultCode": 59521,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 306,
- "ligatures": "find_replace",
- "id": 302,
- "prevSize": 24,
- "name": "find_replace",
- "code": 59521
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 302
- },
- {
- "icon": {
- "paths": [
- "M636 938h-6c-68-18-112-44-158-90-60-60-92-138-92-222 0-70 58-126 130-126s132 56 132 126c0 46 38 82 88 82s90-36 90-82c0-160-140-292-310-292-122 0-232 68-282 172-16 34-24 76-24 120 0 34 2 86 28 154 9.157 27.471-30.939 36.654-40 14-20-56-32-110-32-168 0-52 10-98 30-138 56-120 182-198 320-198 194 0 352 152 352 336 0 70-60 124-132 124s-130-54-130-124c0-46-40-84-90-84s-88 38-88 84c0 72 28 140 80 192 40 40 80 62 140 78 12 2 16 14 14 26-2 10-12 16-20 16zM530 626c0 97.515 80.578 182 192 182 19.928 0 65.546-14.722 70 12 2 12-6 24-18 26-24 4-46 4-52 4-50 0-96-12-132-38-64-44-102-112-102-186 0-12 10-22 22-22s20 10 20 22zM416 930c-6 0-10-2-14-6-38-38-58-62-86-114-30-52-46-116-46-184 0-126 108-230 242-230s242 104 242 230c0 12-10 20-22 20s-22-8-22-20c0-104-88-188-198-188s-198 84-198 188c0 62 12 118 38 164 28 50 48 70 80 104 8 8 8 22 0 30-4 4-10 6-16 6zM150 414c-17.624 0-27.785-15.691-18-32 42-60 96-108 160-140 134-70 306-70 440 0 64 32 118 78 160 138 6 10 4 24-6 30s-24 4-30-6c-38-54-86-94-144-124-122-62-278-64-400 0-58 30-108 72-146 126-4 6-10 8-16 8zM760 190c-4 0-8 0-10-2-82-42-154-60-238-60s-166 20-238 60c-23.381 14.029-43.278-24.033-20-38 80-44 166-64 258-64 90 0 170 20 258 64 18.211 10.927 10.406 40-10 40z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "fingerprint"
- ],
- "defaultCode": 59661,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 307,
- "ligatures": "fingerprint",
- "id": 303,
- "prevSize": 24,
- "name": "fingerprint",
- "code": 59661
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 303
- },
- {
- "icon": {
- "paths": [
- "M256 256h86v512h-86v-512zM786 708l-60 60-256-256 256-256 60 60-196 196z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "first_page"
- ],
- "defaultCode": 58844,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 308,
- "ligatures": "first_page",
- "id": 304,
- "prevSize": 24,
- "name": "first_page",
- "code": 58844
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 304
- },
- {
- "icon": {
- "paths": [
- "M878 634l60 62-90 90 60 62-60 60-62-60-90 90-62-60-60 60-62-60 152-152-366-366-152 152-60-62 60-60-60-62 90-90-60-62 60-60 62 60 90-90 62 60 60-60 62 60-152 152 366 366 152-152 60 62z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "fitness_center"
- ],
- "defaultCode": 60227,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 309,
- "ligatures": "fitness_center",
- "id": 305,
- "prevSize": 24,
- "name": "fitness_center",
- "code": 60227
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 305
- },
- {
- "icon": {
- "paths": [
- "M470 982v-256h84v256h-84zM240 724l92-92 60 60-92 92zM632 692l60-60 92 92-60 60zM512 384c70 0 128 58 128 128s-58 128-128 128-128-58-128-128 58-128 128-128zM726 470h256v84h-256v-84zM784 300l-92 92-60-60 92-92zM554 42v256h-84v-256h84zM392 332l-60 60-92-92 60-60zM298 470v84h-256v-84h256z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "flare"
- ],
- "defaultCode": 58340,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 310,
- "ligatures": "flare",
- "id": 306,
- "prevSize": 24,
- "name": "flare",
- "code": 58340
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 306
- },
- {
- "icon": {
- "paths": [
- "M718 326h100l-50-156zM810 86l138 384h-82l-30-86h-136l-30 86h-82l138-384h84zM128 86h426l-170 384h170l-298 512v-384h-128v-512z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "flash_auto"
- ],
- "defaultCode": 58341,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 311,
- "ligatures": "flash_auto",
- "id": 307,
- "prevSize": 24,
- "name": "flash_auto",
- "code": 58341
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 307
- },
- {
- "icon": {
- "paths": [
- "M726 426l-66 114-362-362v-92h428l-172 340h172zM140 128l670 672-54 54-176-178-154 262v-384h-128v-158l-212-214z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "flash_off"
- ],
- "defaultCode": 58342,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 312,
- "ligatures": "flash_off",
- "id": 308,
- "prevSize": 24,
- "name": "flash_off",
- "code": 58342
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 308
- },
- {
- "icon": {
- "paths": [
- "M298 86h428l-172 340h172l-300 512v-384h-128v-468z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "flash_on"
- ],
- "defaultCode": 58343,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 313,
- "ligatures": "flash_on",
- "id": 309,
- "prevSize": 24,
- "name": "flash_on",
- "code": 58343
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 309
- },
- {
- "icon": {
- "paths": [
- "M598 616c-136.472-37.528-274.090-73.91-412-110l-68-20v-220l62 16 40 100 212 56v-352l82 22 118 384 226 60c34 10 54 46 46 80-10 34-44 52-78 44zM106 810h812v86h-812v-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "flight_land"
- ],
- "defaultCode": 59652,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 314,
- "ligatures": "flight_land",
- "id": 310,
- "prevSize": 24,
- "name": "flight_land",
- "code": 59652
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 310
- },
- {
- "icon": {
- "paths": [
- "M942 412c8 34-12 68-46 78-137.558 36.442-275.002 72.998-412 110l-226 60-68 20c-37.52-63.813-74.693-127.974-112-192l62-16 84 64 212-56-176-306 82-22 294 274 228-60c34-10 70 12 78 46zM106 810h812v86h-812v-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "flight_takeoff"
- ],
- "defaultCode": 59653,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 315,
- "ligatures": "flight_takeoff",
- "id": 311,
- "prevSize": 24,
- "name": "flight_takeoff",
- "code": 59653
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 311
- },
- {
- "icon": {
- "paths": [
- "M810 896v-86h86c0 46-40 86-86 86zM810 554v-84h86v84h-86zM640 214v-86h86v86h-86zM810 726v-86h86v86h-86zM470 982v-940h84v940h-84zM810 128c46 0 86 40 86 86h-86v-86zM128 214c0-46 40-86 86-86h170v86h-170v596h170v86h-170c-46 0-86-40-86-86v-596zM810 384v-86h86v86h-86zM640 896v-86h86v86h-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "flip"
- ],
- "defaultCode": 58344,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 316,
- "ligatures": "flip",
- "id": 312,
- "prevSize": 24,
- "name": "flip",
- "code": 58344
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 312
- },
- {
- "icon": {
- "paths": [
- "M640 726v-86h86v86h-86zM640 214v-86h86v86h-86zM214 298v512h512v86h-512c-48 0-86-40-86-86v-512h86zM810 726v-86h86c0 46-40 86-86 86zM810 384v-86h86v86h-86zM810 554v-84h86v84h-86zM384 726c-48 0-86-40-86-86h86v86zM554 128v86h-84v-86h84zM810 128c46 0 86 40 86 86h-86v-86zM554 640v86h-84v-86h84zM384 128v86h-86c0-46 38-86 86-86zM384 470v84h-86v-84h86zM384 298v86h-86v-86h86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "flip_to_back"
- ],
- "defaultCode": 59522,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 317,
- "ligatures": "flip_to_back",
- "id": 313,
- "prevSize": 24,
- "name": "flip_to_back",
- "code": 59522
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 313
- },
- {
- "icon": {
- "paths": [
- "M298 896v-86h86v86h-86zM470 896v-86h84v86h-84zM810 640v-426h-426v426h426zM810 128c46 0 86 40 86 86v426c0 46-40 86-86 86h-426c-48 0-86-40-86-86v-426c0-46 38-86 86-86h426zM640 896v-86h86v86h-86zM128 384v-86h86v86h-86zM214 896c-48 0-86-40-86-86h86v86zM128 726v-86h86v86h-86zM128 554v-84h86v84h-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "flip_to_front"
- ],
- "defaultCode": 59523,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 318,
- "ligatures": "flip_to_front",
- "id": 314,
- "prevSize": 24,
- "name": "flip_to_front",
- "code": 59523
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 314
- },
- {
- "icon": {
- "paths": [
- "M426 170l86 86h342c46 0 84 40 84 86v426c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h256z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "folder"
- ],
- "defaultCode": 58055,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 319,
- "ligatures": "folder",
- "id": 315,
- "prevSize": 24,
- "name": "folder",
- "code": 58055
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 315
- },
- {
- "icon": {
- "paths": [
- "M854 768v-426h-684v426h684zM854 256c46 0 84 40 84 86v426c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h256l86 86h342z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "folder_open"
- ],
- "defaultCode": 58056,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 320,
- "ligatures": "folder_open",
- "id": 316,
- "prevSize": 24,
- "name": "folder_open",
- "code": 58056
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 316
- },
- {
- "icon": {
- "paths": [
- "M810 726v-44c0-56-114-84-170-84s-170 28-170 84v44h340zM640 384c-46 0-86 40-86 86s40 84 86 84 86-38 86-84-40-86-86-86zM854 256c46 0 84 40 84 86v426c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h256l86 86h342z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "folder_shared"
- ],
- "defaultCode": 58057,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 321,
- "ligatures": "folder_shared",
- "id": 317,
- "prevSize": 24,
- "name": "folder_shared",
- "code": 58057
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 317
- },
- {
- "icon": {
- "paths": [
- "M766 726l-34-142 110-96-144-12-58-134-58 134-144 12 110 96-34 142 126-74zM854 256c46 0 84 40 84 86v426c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h256l86 86h342z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "folder_special"
- ],
- "defaultCode": 58903,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 322,
- "ligatures": "folder_special",
- "id": 318,
- "prevSize": 24,
- "name": "folder_special",
- "code": 58903
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 318
- },
- {
- "icon": {
- "paths": [
- "M680 790h90l-218-556h-80l-218 556h90l48-128h240zM854 86c46 0 84 38 84 84v684c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-684c0-46 38-84 84-84h684zM424 576l88-236 88 236h-176z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "font_download"
- ],
- "defaultCode": 57703,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 323,
- "ligatures": "font_download",
- "id": 319,
- "prevSize": 24,
- "name": "font_download",
- "code": 57703
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 319
- },
- {
- "icon": {
- "paths": [
- "M128 128h768v86h-768v-86zM298 298h428v86h-428v-86zM128 554v-84h768v84h-768zM128 896v-86h768v86h-768zM298 640h428v86h-428v-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "format_align_center"
- ],
- "defaultCode": 57908,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 324,
- "ligatures": "format_align_center",
- "id": 320,
- "prevSize": 24,
- "name": "format_align_center",
- "code": 57908
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 320
- },
- {
- "icon": {
- "paths": [
- "M128 128h768v86h-768v-86zM128 384v-86h768v86h-768zM128 554v-84h768v84h-768zM128 726v-86h768v86h-768zM128 896v-86h768v86h-768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "format_align_justify"
- ],
- "defaultCode": 57909,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 325,
- "ligatures": "format_align_justify",
- "id": 321,
- "prevSize": 24,
- "name": "format_align_justify",
- "code": 57909
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 321
- },
- {
- "icon": {
- "paths": [
- "M128 128h768v86h-768v-86zM128 896v-86h768v86h-768zM128 554v-84h768v84h-768zM640 298v86h-512v-86h512zM640 640v86h-512v-86h512z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "format_align_left"
- ],
- "defaultCode": 57910,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 326,
- "ligatures": "format_align_left",
- "id": 322,
- "prevSize": 24,
- "name": "format_align_left",
- "code": 57910
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 322
- },
- {
- "icon": {
- "paths": [
- "M128 128h768v86h-768v-86zM384 384v-86h512v86h-512zM128 554v-84h768v84h-768zM384 726v-86h512v86h-512zM128 896v-86h768v86h-768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "format_align_right"
- ],
- "defaultCode": 57911,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 327,
- "ligatures": "format_align_right",
- "id": 323,
- "prevSize": 24,
- "name": "format_align_right",
- "code": 57911
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 323
- },
- {
- "icon": {
- "paths": [
- "M576 662c36 0 64-28 64-64s-28-64-64-64h-150v128h150zM426 278v128h128c36 0 64-28 64-64s-28-64-64-64h-128zM666 460c56 26 92 82 92 146 0 90-68 162-158 162h-302v-598h268c96 0 170 76 170 172 0 44-28 90-70 118z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "format_bold"
- ],
- "defaultCode": 57912,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 328,
- "ligatures": "format_bold",
- "id": 324,
- "prevSize": 24,
- "name": "format_bold",
- "code": 57912
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 324
- },
- {
- "icon": {
- "paths": [
- "M256 214h598v128h-248l-68 160-90-88 30-72h-102l-120-120v-8zM140 214l12 10 616 618-54 54-242-242-66 156h-128l104-246-296-296z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "format_clear"
- ],
- "defaultCode": 57913,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 329,
- "ligatures": "format_clear",
- "id": 325,
- "prevSize": 24,
- "name": "format_clear",
- "code": 57913
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 325
- },
- {
- "icon": {
- "paths": [
- "M0 854h1024v170h-1024v-170zM810 490c0 0 86 94 86 150 0 46-40 86-86 86s-84-40-84-86c0-56 84-150 84-150zM222 426h410l-206-204zM706 382c26 26 26 66 0 90l-234 234c-12 12-30 20-46 20s-32-8-44-20l-236-234c-26-24-26-64 0-90l220-220-102-102 62-60z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "format_color_fill"
- ],
- "defaultCode": 57914,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 330,
- "ligatures": "format_color_fill",
- "id": 326,
- "prevSize": 24,
- "name": "format_color_fill",
- "code": 57914
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 326
- },
- {
- "icon": {
- "paths": [
- "M224 224l624 624-54 54-114-112c-46 40-104 64-168 64-142 0-256-114-256-256 0-52 24-114 56-176l-142-142zM768 598c0 20-2 38-6 56l-366-368c60-86 116-150 116-150s256 292 256 462z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "format_color_reset"
- ],
- "defaultCode": 57915,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 331,
- "ligatures": "format_color_reset",
- "id": 327,
- "prevSize": 24,
- "name": "format_color_reset",
- "code": 57915
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 327
- },
- {
- "icon": {
- "paths": [
- "M410 512h204l-102-270zM470 128h84l234 598h-96l-46-128h-268l-48 128h-96zM0 854h1024v170h-1024v-170z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "format_color_text"
- ],
- "defaultCode": 57916,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 332,
- "ligatures": "format_color_text",
- "id": 328,
- "prevSize": 24,
- "name": "format_color_text",
- "code": 57916
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 328
- },
- {
- "icon": {
- "paths": [
- "M470 554v-84h426v84h-426zM470 384v-86h426v86h-426zM128 128h768v86h-768v-86zM128 896v-86h768v86h-768zM128 512l170-170v340zM470 726v-86h426v86h-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "format_indent_decrease"
- ],
- "defaultCode": 57917,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 333,
- "ligatures": "format_indent_decrease",
- "id": 329,
- "prevSize": 24,
- "name": "format_indent_decrease",
- "code": 57917
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 329
- },
- {
- "icon": {
- "paths": [
- "M470 554v-84h426v84h-426zM470 384v-86h426v86h-426zM128 128h768v86h-768v-86zM470 726v-86h426v86h-426zM128 342l170 170-170 170v-340zM128 896v-86h768v86h-768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "format_indent_increase"
- ],
- "defaultCode": 57918,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 334,
- "ligatures": "format_indent_increase",
- "id": 330,
- "prevSize": 24,
- "name": "format_indent_increase",
- "code": 57918
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 330
- },
- {
- "icon": {
- "paths": [
- "M426 170h342v128h-120l-144 342h94v128h-342v-128h120l144-342h-94v-128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "format_italic"
- ],
- "defaultCode": 57919,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 335,
- "ligatures": "format_italic",
- "id": 331,
- "prevSize": 24,
- "name": "format_italic",
- "code": 57919
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 331
- },
- {
- "icon": {
- "paths": [
- "M426 554v-84h512v84h-512zM426 810v-84h512v84h-512zM426 214h512v84h-512v-84zM256 298v428h106l-148 148-150-148h106v-428h-106l150-148 148 148h-106z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "format_line_spacing"
- ],
- "defaultCode": 57920,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 336,
- "ligatures": "format_line_spacing",
- "id": 332,
- "prevSize": 24,
- "name": "format_line_spacing",
- "code": 57920
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 332
- },
- {
- "icon": {
- "paths": [
- "M298 214h598v84h-598v-84zM298 554v-84h598v84h-598zM298 810v-84h598v84h-598zM170 704c36 0 64 30 64 64s-30 64-64 64-64-30-64-64 28-64 64-64zM170 192c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM170 448c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "format_list_bulleted"
- ],
- "defaultCode": 57921,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 337,
- "ligatures": "format_list_bulleted",
- "id": 333,
- "prevSize": 24,
- "name": "format_list_bulleted",
- "code": 57921
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 333
- },
- {
- "icon": {
- "paths": [
- "M298 554v-84h598v84h-598zM298 810v-84h598v84h-598zM298 214h598v84h-598v-84zM86 470v-44h128v40l-78 88h78v44h-128v-40l76-88h-76zM128 342v-128h-42v-44h84v172h-42zM86 726v-44h128v172h-128v-44h84v-20h-42v-44h42v-20h-84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "format_list_numbered"
- ],
- "defaultCode": 57922,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 338,
- "ligatures": "format_list_numbered",
- "id": 334,
- "prevSize": 24,
- "name": "format_list_numbered",
- "code": 57922
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 334
- },
- {
- "icon": {
- "paths": [
- "M768 170h128v342h-342v384c0 24-18 42-42 42h-86c-24 0-42-18-42-42v-470h426v-170h-42v42c0 24-18 44-42 44h-512c-24 0-44-20-44-44v-170c0-24 20-42 44-42h512c24 0 42 18 42 42v42z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "format_paint"
- ],
- "defaultCode": 57923,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 339,
- "ligatures": "format_paint",
- "id": 335,
- "prevSize": 24,
- "name": "format_paint",
- "code": 57923
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 335
- },
- {
- "icon": {
- "paths": [
- "M598 726l84-172h-128v-256h256v256l-84 172h-128zM256 726l86-172h-128v-256h256v256l-86 172h-128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "format_quote"
- ],
- "defaultCode": 57924,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 340,
- "ligatures": "format_quote",
- "id": 336,
- "prevSize": 24,
- "name": "format_quote",
- "code": 57924
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 336
- },
- {
- "icon": {
- "paths": [
- "M456 544h112l-56-164zM586 598h-150l-30 84h-70l146-384h60l144 384h-68zM810 214h86v-86h-86v86zM896 896v-86h-86v86h86zM726 810v-84h84v-428h-84v-84h-428v84h-84v428h84v84h428zM214 896v-86h-86v86h86zM128 128v86h86v-86h-86zM982 298h-86v428h86v256h-256v-86h-428v86h-256v-256h86v-428h-86v-256h256v86h428v-86h256v256z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "format_shapes"
- ],
- "defaultCode": 57950,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 341,
- "ligatures": "format_shapes",
- "id": 337,
- "prevSize": 24,
- "name": "format_shapes",
- "code": 57950
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 337
- },
- {
- "icon": {
- "paths": [
- "M128 512v-128h384v128h-128v298h-128v-298h-128zM384 170h554v128h-212v512h-128v-512h-214v-128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "format_size"
- ],
- "defaultCode": 57925,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 342,
- "ligatures": "format_size",
- "id": 338,
- "prevSize": 24,
- "name": "format_size",
- "code": 57925
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 338
- },
- {
- "icon": {
- "paths": [
- "M128 598v-86h768v86h-768zM214 170h596v128h-212v128h-172v-128h-212v-128zM426 810v-128h172v128h-172z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "format_strikethrough"
- ],
- "defaultCode": 57926,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 343,
- "ligatures": "format_strikethrough",
- "id": 339,
- "prevSize": 24,
- "name": "format_strikethrough",
- "code": 57926
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 339
- },
- {
- "icon": {
- "paths": [
- "M896 768l-170 170v-128h-512v-84h512v-128zM384 426c-94 0-170-76-170-170s76-170 170-170h342v84h-86v470h-86v-470h-84v470h-86v-214z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "format_textdirection_l_to_r"
- ],
- "defaultCode": 57927,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 344,
- "ligatures": "format_textdirection_l_to_r",
- "id": 340,
- "prevSize": 24,
- "name": "format_textdirection_l_to_r",
- "code": 57927
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 340
- },
- {
- "icon": {
- "paths": [
- "M342 726h512v84h-512v128l-172-170 172-170v128zM426 426c-94 0-170-76-170-170s76-170 170-170h342v84h-86v470h-84v-470h-86v470h-86v-214z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "format_textdirection_r_to_l"
- ],
- "defaultCode": 57928,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 345,
- "ligatures": "format_textdirection_r_to_l",
- "id": 341,
- "prevSize": 24,
- "name": "format_textdirection_r_to_l",
- "code": 57928
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 341
- },
- {
- "icon": {
- "paths": [
- "M214 810h596v86h-596v-86zM512 726c-142 0-256-114-256-256v-342h106v342c0 82 68 148 150 148s150-66 150-148v-342h106v342c0 142-114 256-256 256z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "format_underlined"
- ],
- "defaultCode": 57929,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 346,
- "ligatures": "format_underlined",
- "id": 342,
- "prevSize": 24,
- "name": "format_underlined",
- "code": 57929
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 342
- },
- {
- "icon": {
- "paths": [
- "M726 512c0 24-20 42-44 42h-426l-170 172v-598c0-24 18-42 42-42h554c24 0 44 18 44 42v384zM896 256c24 0 42 18 42 42v640l-170-170h-470c-24 0-42-18-42-42v-86h554v-384h86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "question_answer"
- ],
- "defaultCode": 59567,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 347,
- "ligatures": "forum, question_answer",
- "id": 343,
- "prevSize": 24,
- "name": "question_answer",
- "code": 59567
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 343
- },
- {
- "icon": {
- "paths": [
- "M512 342v-172l342 342-342 342v-172h-342v-340h342z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "forward"
- ],
- "defaultCode": 57684,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 348,
- "ligatures": "forward",
- "id": 344,
- "prevSize": 24,
- "name": "forward",
- "code": 57684
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 344
- },
- {
- "icon": {
- "paths": [
- "M564 648c0 6.531 12.65 14 20 14 4 0 10 0 14-4l8-10s4-8 4-12v-86c0 0-4-8-4-12 0-5.505-16.424-14-22-14-4 0-8 2-12 6l-8 8s-6 8-6 12v86s6 8 6 12zM644 606c0 12 0 26-4 34l-12 26s-14 12-22 12-18 4-26 4-18 0-26-4-12-8-20-12c-13.488-6.744-18-39.492-18-60v-30c0-12 0-26 4-34l14-26s12-12 20-12 18-4 26-4 18 0 26 4 14 8 22 12 8 14 12 26 4 22 4 34v30zM466 682h-40v-140l-42 12v-30l76-24h6v182zM170 554c0-188 154-340 342-340v-172l214 214-214 214v-172c-140 0-256 116-256 256s116 256 256 256 256-116 256-256h86c0 188-154 342-342 342s-342-154-342-342z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "forward_10"
- ],
- "defaultCode": 57430,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 349,
- "ligatures": "forward_10",
- "id": 345,
- "prevSize": 24,
- "name": "forward_10",
- "code": 57430
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 345
- },
- {
- "icon": {
- "paths": [
- "M170 554c0-188 154-340 342-340v-172l214 214-214 214v-172c-140 0-256 116-256 256s116 256 256 256 256-116 256-256h86c0 188-154 342-342 342s-342-154-342-342zM568 648c0 6.531 12.65 14 20 14 4 0 10 0 14-4l8-10s4-8 4-12v-86c0 0-4-8-4-12 0-5.505-16.424-14-22-14-4 0-8 2-12 6l-8 8s-4 8-4 12v86s4 8 4 12zM652 606c0 12 0 26-4 34l-12 26s-14 12-22 12-18 4-26 4c-20.252 0-32.299-9.149-46-16-8-4-8-14-12-26s-6-22-6-34v-30c0-12 2-26 6-34l12-26s14-12 22-12 16-4 24-4 18 0 26 4 14 8 22 12 8 14 12 26 4 22 4 34v30zM426 576c16.239 0 30-9.918 30-26v-8s-4-4-4-8-4-4-8-4h-22s-4 4-8 4-4 4-4 8v8h-44c0-19.788 17.639-46 36-46 4 0 16-4 20-4 17.345 0 35.264 5.632 48 12 10.13 5.065 16 24.218 16 38v14s-4 8-4 12-4 8-8 8-10 6-14 10c8 4 18 8 22 16s8 18 8 26 0 18-4 22-8 12-12 16-14 8-22 8-18 4-26 4-16 0-20-4-14-4-22-8c-11.162-5.581-18-27.017-18-42h36v8s4 4 4 8 4 4 8 4h22s4-4 8-4 4-4 4-8v-22s-4-4-4-8-4-4-8-4h-26v-30h16z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "forward_30"
- ],
- "defaultCode": 57431,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 350,
- "ligatures": "forward_30",
- "id": 346,
- "prevSize": 24,
- "name": "forward_30",
- "code": 57431
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 346
- },
- {
- "icon": {
- "paths": [
- "M500 580c-3.584 1.434-14 4.805-14 8 0 4-4 6-4 6h-26l10-94h102v30h-74l-4 38s4 0 4-4 6-2 6-6 4 0 8 0h8c8 0 18 2 22 6s12 8 16 12c8.873 8.873 18 27.257 18 46 0 8 0 18-4 22s-6 14-14 22c-11.246 11.246-26.59 16-46 16-8 0-18 0-22-4s-12-4-20-8c-11.191-5.596-18-22.554-18-38h34c0 14.809 10.59 20 26 20 4 0 8 0 12-4l10-8s4-8 4-12v-26l-4-8-10-10s-8-4-12-4h-8zM170 554c0-188 154-340 342-340v-172l214 214-214 214v-172c-140 0-256 116-256 256s116 256 256 256 256-116 256-256h86c0 188-154 342-342 342s-342-154-342-342z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "forward_5"
- ],
- "defaultCode": 57432,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 351,
- "ligatures": "forward_5",
- "id": 347,
- "prevSize": 24,
- "name": "forward_5",
- "code": 57432
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 347
- },
- {
- "icon": {
- "paths": [
- "M170 810h684v86h-684v-86zM854 342v-128h-86v128h86zM854 128c48 0 84 38 84 86v128c0 46-36 84-84 84h-86v128c0 94-76 172-170 172h-256c-94 0-172-78-172-172v-426h684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "free_breakfast"
- ],
- "defaultCode": 60228,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 352,
- "ligatures": "free_breakfast",
- "id": 348,
- "prevSize": 24,
- "name": "free_breakfast",
- "code": 60228
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 348
- },
- {
- "icon": {
- "paths": [
- "M598 214h212v212h-84v-128h-128v-84zM726 726v-128h84v212h-212v-84h128zM214 426v-212h212v84h-128v128h-84zM298 598v128h128v84h-212v-212h84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "fullscreen"
- ],
- "defaultCode": 58832,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 353,
- "ligatures": "fullscreen",
- "id": 349,
- "prevSize": 24,
- "name": "fullscreen",
- "code": 58832
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 349
- },
- {
- "icon": {
- "paths": [
- "M682 342h128v84h-212v-212h84v128zM598 810v-212h212v84h-128v128h-84zM342 342v-128h84v212h-212v-84h128zM214 682v-84h212v212h-84v-128h-128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "fullscreen_exit"
- ],
- "defaultCode": 58833,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 354,
- "ligatures": "fullscreen_exit",
- "id": 350,
- "prevSize": 24,
- "name": "fullscreen_exit",
- "code": 58833
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 350
- },
- {
- "icon": {
- "paths": [
- "M768 170v128h-298l212 214-212 214h298v128h-512v-86l278-256-278-256v-86h512z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "functions"
- ],
- "defaultCode": 57930,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 355,
- "ligatures": "functions",
- "id": 351,
- "prevSize": 24,
- "name": "functions",
- "code": 57930
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 351
- },
- {
- "icon": {
- "paths": [
- "M896 854v-556c0-24-18-42-42-42h-376l50 172h82v-44h46v44h154v44h-54c-14 54-44 106-82 150l116 114-30 32-116-114-38 38 34 118-86 86h300c24 0 42-18 42-42zM596 518c10 20 26 46 48 72 52-62 66-118 66-118h-170l14 46h42zM564 550l26 94 24-22c-20-22-36-46-50-72zM474 452c0-9.841-0.281-22.561-4-30h-168v66h94c-6 26-32 64-90 64-56 0-102-48-102-104s46-104 102-104c32 0 52 14 64 26l4 2 52-50-4-2c-32-30-72-46-116-46-96 0-174 78-174 174s78 174 174 174c98 0 168-70 168-170zM854 214c46 0 84 38 84 84v556c0 46-38 84-84 84h-342l-42-128h-300c-46 0-84-38-84-84v-556c0-46 38-84 84-84h256l38 128h390z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "g_translate"
- ],
- "defaultCode": 59687,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 356,
- "ligatures": "g_translate",
- "id": 352,
- "prevSize": 24,
- "name": "g_translate",
- "code": 59687
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 352
- },
- {
- "icon": {
- "paths": [
- "M704 384h234v256h-234l-128-128zM384 704l128-128 128 128v234h-256v-234zM320 384l128 128-128 128h-234v-256h234zM640 320l-128 128-128-128v-234h256v234z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "games"
- ],
- "defaultCode": 57377,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 357,
- "ligatures": "gamepad, games",
- "id": 353,
- "prevSize": 24,
- "name": "games",
- "code": 57377
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 353
- },
- {
- "icon": {
- "paths": [
- "M164 404l240 242-120 120-242-240zM526 42l240 242-120 120-242-240zM224 344l120-120 604 604-120 120zM42 896h512v86h-512v-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "gavel"
- ],
- "defaultCode": 59662,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 358,
- "ligatures": "gavel",
- "id": 354,
- "prevSize": 24,
- "name": "gavel",
- "code": 59662
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 354
- },
- {
- "icon": {
- "paths": [
- "M592 792c30 0 80-36 92-150-92 24-124 92-124 118 0 20 18 32 32 32zM196 294l-74-72c10-12 20-24 36-40 10-10 60-54 116-54 38 0 108 30 108 122 0 58-22 92-56 140-20 28-64 104-78 150-16 46-6 82 14 82 18 0 38-24 48-36 10-10 74-84 98-116 32-40 114-120 210-120 126 0 166 108 172 178h106v106h-104c-18 204-132 262-202 262-76 0-136-60-136-132s68-202 230-230c-4-34-6-76-76-76-54 0-122 82-174 146-48 58-84 104-130 118-99.552 31.437-170-56.487-170-146 0-104 112-252 122-270 12-20 34-56 12-64-14-6-42 22-72 52z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "gesture"
- ],
- "defaultCode": 57685,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 359,
- "ligatures": "gesture",
- "id": 355,
- "prevSize": 24,
- "name": "gesture",
- "code": 57685
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 355
- },
- {
- "icon": {
- "paths": [
- "M810 448h-128v42h86v64h-86v86h-64v-256h192v64zM384 384c26 0 42 20 42 42v22h-148v128h84v-64h64v86c0 22-16 42-42 42h-128c-26 0-42-20-42-42v-172c0-22 16-42 42-42h128zM490 384h64v256h-64v-256z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "gif"
- ],
- "defaultCode": 59656,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 360,
- "ligatures": "gif",
- "id": 356,
- "prevSize": 24,
- "name": "gif",
- "code": 59656
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 356
- },
- {
- "icon": {
- "paths": [
- "M1022 388c2 2 2 8 0 10l-50 64c-2 2-6 4-8 4l-30-6-14 44c-6 10-20 10-26 0l-28-60-46-10-94 224 34 272c0 6-4 8-8 8h-40c-4 0-6-2-8-6l-40-162-20-34-50 196c0 4-4 6-8 6h-42c-4 0-8-4-8-8l46-270h-270l-70 132 16 136c2 6-2 10-8 10h-40c-2 0-6 0-8-4l-56-204-68 78 12 120c2 6-2 10-8 10h-44c-4 0-8-2-8-4l-26-112 42-164v-288s-46-18-46-60h548c0 0 96 2 190-66 0 0-16-44 12-72 0 0 56 40 72 50 20 12 34-10 28-28-4-12-18-56-90-84-9.158-3.053-30.421-4.736-26-18 0-4 4-6 8-6 88 12 140 84 154 116 2 4 40 30 36 76 0 6 0 10 4 14z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "goat"
- ],
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 361,
- "ligatures": "goat",
- "id": 357,
- "prevSize": 24,
- "name": "goat",
- "code": 59648
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 357
- },
- {
- "icon": {
- "paths": [
- "M726 252l-256 132v386c122 6 212 42 212 84 0 46-114 84-256 84s-256-38-256-84c0-32 52-60 128-74v74h86v-768zM768 832c0-36 28-64 64-64s64 28 64 64-28 64-64 64-64-28-64-64z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "golf_course"
- ],
- "defaultCode": 60229,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 362,
- "ligatures": "golf_course",
- "id": 358,
- "prevSize": 24,
- "name": "golf_course",
- "code": 60229
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 358
- },
- {
- "icon": {
- "paths": [
- "M512 810c166 0 298-132 298-298s-132-298-298-298-298 132-298 298 132 298 298 298zM894 470h88v84h-88c-20 178-162 320-340 340v88h-84v-88c-178-20-320-162-340-340h-88v-84h88c20-178 162-320 340-340v-88h84v88c178 20 320 162 340 340zM512 342c94 0 170 76 170 170s-76 170-170 170-170-76-170-170 76-170 170-170z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "my_location"
- ],
- "defaultCode": 58716,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 363,
- "ligatures": "gps_fixed, my_location",
- "id": 359,
- "prevSize": 24,
- "name": "my_location",
- "code": 58716
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 359
- },
- {
- "icon": {
- "paths": [
- "M512 810c166 0 298-132 298-298s-132-298-298-298-298 132-298 298 132 298 298 298zM894 470h88v84h-88c-20 178-162 320-340 340v88h-84v-88c-178-20-320-162-340-340h-88v-84h88c20-178 162-320 340-340v-88h84v88c178 20 320 162 340 340z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "location_searching"
- ],
- "defaultCode": 57783,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 364,
- "ligatures": "gps_not_fixed, location_searching",
- "id": 360,
- "prevSize": 24,
- "name": "location_searching",
- "code": 57783
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 360
- },
- {
- "icon": {
- "paths": [
- "M694 748l-418-418c-38 50-62 114-62 182 0 166 132 298 298 298 68 0 132-24 182-62zM128 182l54-54 714 714-54 54-88-88c-56 46-124 78-200 86v88h-84v-88c-178-20-320-162-340-340h-88v-84h88c8-76 40-144 86-200zM894 470h88v84h-88c-6 48-20 96-42 136l-64-64c14-34 22-74 22-114 0-166-132-298-298-298-40 0-80 8-114 22l-64-64c42-22 88-36 136-42v-88h84v88c178 20 320 162 340 340z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "location_disabled"
- ],
- "defaultCode": 57782,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 365,
- "ligatures": "gps_off, location_disabled",
- "id": 361,
- "prevSize": 24,
- "name": "location_disabled",
- "code": 57782
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 361
- },
- {
- "icon": {
- "paths": [
- "M512 736l-264 160 70-300-232-202 306-26 120-282 120 282 306 26-232 202 70 300z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "star"
- ],
- "defaultCode": 59448,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 366,
- "ligatures": "grade, star",
- "id": 362,
- "prevSize": 24,
- "name": "star",
- "code": 59448
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 362
- },
- {
- "icon": {
- "paths": [
- "M810 470v-256h-596v256h84v84h86v86h86v-86h84v86h86v-86h86v-84h84zM726 768v-86h-86v86h86zM554 768v-86h-84v86h84zM384 768v-86h-86v86h86zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596zM298 384h86v86h-86v-86zM640 384h86v86h-86v-86zM470 384h84v86h86v84h-86v-84h-84v84h-86v-84h86v-86zM726 554v86h84v-86h-84zM298 554h-84v86h84v-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "gradient"
- ],
- "defaultCode": 58345,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 367,
- "ligatures": "gradient",
- "id": 363,
- "prevSize": 24,
- "name": "gradient",
- "code": 58345
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 363
- },
- {
- "icon": {
- "paths": [
- "M426 170c46 0 86 40 86 86s-40 86-86 86-84-40-84-86 38-86 84-86zM598 342c46 0 84 38 84 84s-38 86-84 86-86-40-86-86 40-84 86-84zM768 512c46 0 86 40 86 86s-40 84-86 84-86-38-86-84 40-86 86-86zM598 682c46 0 84 40 84 86s-38 86-84 86-86-40-86-86 40-86 86-86zM768 342c-46 0-86-40-86-86s40-86 86-86 86 40 86 86-40 86-86 86zM256 682c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM256 342c46 0 86 38 86 84s-40 86-86 86-86-40-86-86 40-84 86-84zM426 512c46 0 86 40 86 86s-40 84-86 84-84-38-84-84 38-86 84-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "grain"
- ],
- "defaultCode": 58346,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 368,
- "ligatures": "grain",
- "id": 364,
- "prevSize": 24,
- "name": "grain",
- "code": 58346
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 364
- },
- {
- "icon": {
- "paths": [
- "M810 426h86v172h-86v-172zM640 768v-512h86v512h-86zM128 598v-172h86v172h-86zM470 938v-852h84v852h-84zM298 768v-512h86v512h-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "graphic_eq"
- ],
- "defaultCode": 57784,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 369,
- "ligatures": "graphic_eq",
- "id": 365,
- "prevSize": 24,
- "name": "graphic_eq",
- "code": 57784
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 365
- },
- {
- "icon": {
- "paths": [
- "M682 854h62l-62-62v62zM598 854v-148l-24-24h-148v172h172zM342 598v-148l-24-24h-148v172h172zM342 854v-172h-172v172h172zM170 280v62h62zM426 536v62h62zM54 54l916 916-54 54-86-86h-660c-46 0-84-38-84-84v-660l-86-86zM682 170v172h172v-172h-172zM342 170h-62l-86-84h660c46 0 84 38 84 84v660l-84-86v-62h-62l-86-84h148v-172h-172v148l-84-86v-62h-62l-86-84h148v-172h-172v148l-84-86v-62z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "grid_off"
- ],
- "defaultCode": 58347,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 370,
- "ligatures": "grid_off",
- "id": 366,
- "prevSize": 24,
- "name": "grid_off",
- "code": 58347
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 366
- },
- {
- "icon": {
- "paths": [
- "M854 342v-172h-172v172h172zM854 598v-172h-172v172h172zM854 854v-172h-172v172h172zM598 342v-172h-172v172h172zM598 598v-172h-172v172h172zM598 854v-172h-172v172h172zM342 342v-172h-172v172h172zM342 598v-172h-172v172h172zM342 854v-172h-172v172h172zM854 86c46 0 84 38 84 84v684c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-684c0-46 38-84 84-84h684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "grid_on"
- ],
- "defaultCode": 58348,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 371,
- "ligatures": "grid_on",
- "id": 367,
- "prevSize": 24,
- "name": "grid_on",
- "code": 58348
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 367
- },
- {
- "icon": {
- "paths": [
- "M682 554c100 0 300 50 300 150v106h-256v-106c0-64-34-112-84-148 14-2 28-2 40-2zM342 554c100 0 298 50 298 150v106h-598v-106c0-100 200-150 300-150zM342 470c-70 0-128-58-128-128s58-128 128-128 126 58 126 128-56 128-126 128zM682 470c-70 0-128-58-128-128s58-128 128-128 128 58 128 128-58 128-128 128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "people"
- ],
- "defaultCode": 59387,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 372,
- "ligatures": "group, people",
- "id": 368,
- "prevSize": 24,
- "name": "people",
- "code": 59387
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 368
- },
- {
- "icon": {
- "paths": [
- "M554 554c86 0 256 42 256 128v86h-512v-86c0-86 170-128 256-128zM838 562c86 14 186 54 186 120v86h-128v-86c0-50-22-88-58-120zM554 470c-70 0-128-58-128-128s58-128 128-128 128 58 128 128-58 128-128 128zM768 470c-14 0-26-2-38-6 24-34 38-76 38-122s-14-88-38-122c12-4 24-6 38-6 70 0 128 58 128 128s-58 128-128 128zM342 426v86h-128v128h-86v-128h-128v-86h128v-128h86v128h128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "group_add"
- ],
- "defaultCode": 59376,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 373,
- "ligatures": "group_add",
- "id": 369,
- "prevSize": 24,
- "name": "group_add",
- "code": 59376
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 369
- },
- {
- "icon": {
- "paths": [
- "M682 746c58 0 108-48 108-106s-50-106-108-106-106 48-106 106 48 106 106 106zM406 342c0 58 48 106 106 106s106-48 106-106-48-108-106-108-106 50-106 108zM342 746c58 0 106-48 106-106s-48-106-106-106-108 48-108 106 50 106 108 106zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "group_work"
- ],
- "defaultCode": 59526,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 374,
- "ligatures": "group_work",
- "id": 370,
- "prevSize": 24,
- "name": "group_work",
- "code": 59526
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 370
- },
- {
- "icon": {
- "paths": [
- "M618 576v-128h86v128h-86zM554 384v256h172c24 0 42-18 42-42v-172c0-24-18-42-42-42h-172zM470 640v-256h-64v106h-86v-106h-64v256h64v-86h86v86h64zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "hd"
- ],
- "defaultCode": 57426,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 375,
- "ligatures": "hd",
- "id": 371,
- "prevSize": 24,
- "name": "hd",
- "code": 57426
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 371
- },
- {
- "icon": {
- "paths": [
- "M106 106c270.848 271.818 543.632 541.7 816 812l-48 46-324-324h-144v-146l-64-64v210h-64v-106h-86v106h-64v-256h64v86h86v-86h16l-234-234zM554 448h-16l-64-64h80c34 0 64 30 64 64v82l-64-64v-18zM746 448v42h86v-42h-86zM746 640h-16l-48-46v-210h150c34 0 64 30 64 64v42c0 26-16 52-38 60l38 90h-64l-38-86h-48v86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "hdr_off"
- ],
- "defaultCode": 58349,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 376,
- "ligatures": "hdr_off",
- "id": 372,
- "prevSize": 24,
- "name": "hdr_off",
- "code": 58349
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 372
- },
- {
- "icon": {
- "paths": [
- "M554 576v-128h-84v128h84zM554 384c34 0 64 30 64 64v128c0 34-30 64-64 64h-148v-256h148zM278 470v-86h64v256h-64v-106h-86v106h-64v-256h64v86h86zM832 490v-42h-86v42h86zM896 490c0 26-16 48-38 60l38 90h-64l-38-86h-48v86h-64v-256h150c34 0 64 30 64 64v42z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "hdr_on"
- ],
- "defaultCode": 58350,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 377,
- "ligatures": "hdr_on",
- "id": 373,
- "prevSize": 24,
- "name": "hdr_on",
- "code": 58350
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 373
- },
- {
- "icon": {
- "paths": [
- "M214 598c46 0 84-40 84-86s-38-86-84-86-86 40-86 86 40 86 86 86zM214 342c94 0 170 76 170 170s-76 170-170 170-172-76-172-170 78-170 172-170zM726 256c142 0 256 114 256 256s-114 256-256 256-256-114-256-256 114-256 256-256z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "hdr_strong"
- ],
- "defaultCode": 58353,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 378,
- "ligatures": "hdr_strong",
- "id": 374,
- "prevSize": 24,
- "name": "hdr_strong",
- "code": 58353
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 374
- },
- {
- "icon": {
- "paths": [
- "M726 682c94 0 170-76 170-170s-76-170-170-170-172 76-172 170 78 170 172 170zM726 256c142 0 256 114 256 256s-114 256-256 256-256-114-256-256 114-256 256-256zM214 342c94 0 170 76 170 170s-76 170-170 170-172-76-172-170 78-170 172-170z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "hdr_weak"
- ],
- "defaultCode": 58354,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 379,
- "ligatures": "hdr_weak",
- "id": 375,
- "prevSize": 24,
- "name": "hdr_weak",
- "code": 58354
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 375
- },
- {
- "icon": {
- "paths": [
- "M512 42c212 0 384 172 384 384v300c0 70-58 128-128 128h-128v-342h170v-86c0-166-132-298-298-298s-298 132-298 298v86h170v342h-128c-70 0-128-58-128-128v-300c0-212 172-384 384-384z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "headset"
- ],
- "defaultCode": 58128,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 380,
- "ligatures": "headset",
- "id": 376,
- "prevSize": 24,
- "name": "headset",
- "code": 58128
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 376
- },
- {
- "icon": {
- "paths": [
- "M512 42c212 0 384 172 384 384v428c0 70-58 128-128 128h-256v-86h298v-42h-170v-342h170v-86c0-166-132-298-298-298s-298 132-298 298v86h170v342h-128c-70 0-128-58-128-128v-300c0-212 172-384 384-384z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "headset_mic"
- ],
- "defaultCode": 58129,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 381,
- "ligatures": "headset_mic",
- "id": 377,
- "prevSize": 24,
- "name": "headset_mic",
- "code": 58129
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 377
- },
- {
- "icon": {
- "paths": [
- "M710 868l156-156-156-154-154 156zM598 470c-24 0-44 18-44 42s20 42 44 42 42-18 42-42-18-42-42-42zM512 640c24 0 42-18 42-42s-18-44-42-44-42 20-42 44 18 42 42 42zM426 554c24 0 44-18 44-42s-20-42-44-42-42 18-42 42 18 42 42 42zM312 468l154-156-154-154-156 156zM512 384c-24 0-42 18-42 42s18 44 42 44 42-20 42-44-18-42-42-42zM756 512l170 170c16 16 16 44 0 60l-184 186c-8 8-18 12-30 12s-24-4-32-12l-168-170-170 170c-16 16-44 16-60 0l-186-186c-16-16-16-44 0-60l170-170-170-168c-16-16-16-46 0-62l186-184c8-8 20-12 30-12 12 0 22 4 30 12l170 170 168-170c16-16 46-16 62 0l184 184c16 16 16 46 0 62z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "healing"
- ],
- "defaultCode": 58355,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 382,
- "ligatures": "healing",
- "id": 378,
- "prevSize": 24,
- "name": "healing",
- "code": 58355
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 378
- },
- {
- "icon": {
- "paths": [
- "M490 384c0-58 50-106 108-106s106 48 106 106-48 106-106 106-108-48-108-106zM326 112c-70 70-112 166-112 272s42 202 112 272l-60 60c-84-84-138-202-138-332s54-248 138-332zM726 854c46 0 84-40 84-86h86c0 94-76 170-170 170-24 0-48-4-70-14-58-30-92-74-118-152-14-42-38-62-72-88-38-28-84-64-122-134-30-54-46-112-46-166 0-168 132-298 300-298s298 130 298 298h-86c0-120-92-214-212-214s-214 94-214 214c0 40 12 86 34 126 30 56 66 82 100 108 40 30 80 62 102 128 22 64 42 84 72 100 8 4 22 8 34 8z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "hearing"
- ],
- "defaultCode": 57379,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 383,
- "ligatures": "hearing",
- "id": 379,
- "prevSize": 24,
- "name": "hearing",
- "code": 57379
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 379
- },
- {
- "icon": {
- "paths": [
- "M642 480c24-24 40-58 40-96 0-94-76-170-170-170s-170 76-170 170h84c0-46 40-86 86-86s86 40 86 86c0 24-10 44-26 60l-52 54c-30 32-50 74-50 120v22h84c0-64 20-88 50-120zM554 810v-84h-84v84h84zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "help"
- ],
- "defaultCode": 59527,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 384,
- "ligatures": "help",
- "id": 380,
- "prevSize": 24,
- "name": "help",
- "code": 59527
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 380
- },
- {
- "icon": {
- "paths": [
- "M512 256c94 0 170 76 170 170 0 106-128 118-128 214h-84c0-138 128-128 128-214 0-46-40-84-86-84s-86 38-86 84h-84c0-94 76-170 170-170zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM470 768v-86h84v86h-84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "help_outline"
- ],
- "defaultCode": 59645,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 385,
- "ligatures": "help_outline",
- "id": 381,
- "prevSize": 24,
- "name": "help_outline",
- "code": 59645
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 381
- },
- {
- "icon": {
- "paths": [
- "M618 576v-128h86v128h-86zM768 598v-172c0-24-18-42-42-42h-128c-24 0-44 18-44 42v172c0 24 20 42 44 42h32v64h64v-64h32c24 0 42-18 42-42zM470 640v-256h-64v106h-86v-106h-64v256h64v-86h86v86h64zM810 170c46 0 86 40 86 86v512c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-512c0-46 38-86 86-86h596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "high_quality"
- ],
- "defaultCode": 57380,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 386,
- "ligatures": "high_quality",
- "id": 382,
- "prevSize": 24,
- "name": "high_quality",
- "code": 57380
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 382
- },
- {
- "icon": {
- "paths": [
- "M724 280l90-90 60 60-90 92zM150 250l60-60 90 90-60 62zM470 86h84v128h-84v-128zM256 598v-214h512v214l-128 128v212h-256v-212z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "highlight"
- ],
- "defaultCode": 57951,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 387,
- "ligatures": "highlight",
- "id": 383,
- "prevSize": 24,
- "name": "highlight",
- "code": 57951
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 383
- },
- {
- "icon": {
- "paths": [
- "M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM622 342l60 60-110 110 110 110-60 60-110-110-110 110-60-60 110-110-110-110 60-60 110 110z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "highlight_off"
- ],
- "defaultCode": 59528,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 388,
- "ligatures": "highlight_off",
- "id": 384,
- "prevSize": 24,
- "name": "highlight_off",
- "code": 59528
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 384
- },
- {
- "icon": {
- "paths": [
- "M512 342h64v180l150 90-32 52-182-110v-212zM554 128c212 0 384 172 384 384s-172 384-384 384c-106 0-200-42-270-112l60-62c54 54 128 88 210 88 166 0 300-132 300-298s-134-298-300-298-298 132-298 298h128l-172 172-4-6-166-166h128c0-212 172-384 384-384z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "restore"
- ],
- "defaultCode": 59571,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 389,
- "ligatures": "history, restore",
- "id": 385,
- "prevSize": 24,
- "name": "restore",
- "code": 59571
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 385
- },
- {
- "icon": {
- "paths": [
- "M426 854h-212v-342h-128l426-384 426 384h-128v342h-212v-256h-172v256z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "home"
- ],
- "defaultCode": 59530,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 390,
- "ligatures": "home",
- "id": 386,
- "prevSize": 24,
- "name": "home",
- "code": 59530
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 386
- },
- {
- "icon": {
- "paths": [
- "M626 250c44 42 62 100 54 158l-2 18h-82l6-24c6.113-34.638-6.812-70.812-32-96-44-44-64-102-56-160l2-18h82l-4 26c-6 34 4 68 28 94zM796 250c44 42 64 100 56 158l-4 18h-80l4-24c6-34-4-68-28-94l-4-2c-44-44-64-102-56-160l4-18h80l-4 26c-6 34 4 68 28 94zM810 854v-256h-84v256h84zM640 854v-256h-86v256h86zM470 854v-256h-86v256h86zM298 854v-256h-84v256h84zM476 512h462v342c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-342h128v-32c0-52 44-96 96-96 30.769 0 56.308 16.308 72 32l58 66c10 12 22 20 36 30zM214 256c0-48 36-86 84-86s86 38 86 86-38 86-86 86-84-38-84-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "hot_tub"
- ],
- "defaultCode": 60230,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 391,
- "ligatures": "hot_tub",
- "id": 387,
- "prevSize": 24,
- "name": "hot_tub",
- "code": 60230
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 387
- },
- {
- "icon": {
- "paths": [
- "M810 298c94 0 172 78 172 172v384h-86v-128h-768v128h-86v-640h86v384h342v-300h340zM298 554c-70 0-128-58-128-128s58-128 128-128 128 58 128 128-58 128-128 128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "local_hotel"
- ],
- "defaultCode": 58697,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 392,
- "ligatures": "hotel, local_hotel",
- "id": 388,
- "prevSize": 24,
- "name": "local_hotel",
- "code": 58697
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 388
- },
- {
- "icon": {
- "paths": [
- "M512 490l170-170v-150h-340v150zM682 704l-170-170-170 170v150h340v-150zM256 86h512v256l-170 170 170 170v256h-512v-256l170-170-170-170v-256z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "hourglass_empty"
- ],
- "defaultCode": 59531,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 393,
- "ligatures": "hourglass_empty",
- "id": 389,
- "prevSize": 24,
- "name": "hourglass_empty",
- "code": 59531
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 389
- },
- {
- "icon": {
- "paths": [
- "M256 86h512v256l-170 170 170 170v256h-512v-256l170-170-170-170v-256z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "hourglass_full"
- ],
- "defaultCode": 59532,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 394,
- "ligatures": "hourglass_full",
- "id": 390,
- "prevSize": 24,
- "name": "hourglass_full",
- "code": 59532
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 390
- },
- {
- "icon": {
- "paths": [
- "M918 490v-42h-86v42h86zM918 384c34 0 64 30 64 64v42c0 34-30 64-64 64h-86v86h-64v-256h150zM534 448v-64h192v64h-64v192h-64v-192h-64zM298 448v-64h192v64h-64v192h-64v-192h-64zM192 470v-86h64v256h-64v-106h-86v106h-64v-256h64v86h86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "http"
- ],
- "defaultCode": 59650,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 395,
- "ligatures": "http",
- "id": 391,
- "prevSize": 24,
- "name": "http",
- "code": 59650
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 391
- },
- {
- "icon": {
- "paths": [
- "M644 342v-86c0-72-60-132-132-132s-132 60-132 132v86h264zM512 726c46 0 86-40 86-86s-40-86-86-86-86 40-86 86 40 86 86 86zM768 342c46 0 86 38 86 84v428c0 46-40 84-86 84h-512c-46 0-86-38-86-84v-428c0-46 40-84 86-84h42v-86c0-118 96-214 214-214s214 96 214 214v86h42z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "lock"
- ],
- "defaultCode": 59543,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 396,
- "ligatures": "https, lock",
- "id": 392,
- "prevSize": 24,
- "name": "lock",
- "code": 59543
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 392
- },
- {
- "icon": {
- "paths": [
- "M362 576l-148 192h596l-192-256-148 192zM896 810c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596c46 0 86 40 86 86v596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "photo"
- ],
- "defaultCode": 58384,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 397,
- "ligatures": "image, insert_photo, photo",
- "id": 393,
- "prevSize": 24,
- "name": "photo",
- "code": 58384
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 393
- },
- {
- "icon": {
- "paths": [
- "M854 768v-512h-684v512h684zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h684zM512 426v86h-86v-86h86zM342 426v86h-86v-86h86zM682 598v84h-84v-84h84zM682 426v86h-84v-86h84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "image_aspect_ratio"
- ],
- "defaultCode": 58357,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 398,
- "ligatures": "image_aspect_ratio",
- "id": 394,
- "prevSize": 24,
- "name": "image_aspect_ratio",
- "code": 58357
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 394
- },
- {
- "icon": {
- "paths": [
- "M896 790v-492c-46-14-98-20-150-20-72 0-176 28-234 64v490c58-36 162-64 234-64 52 0 104 8 150 22zM746 192c88.409 0 181.498 22.075 236 64v622c0 10-12 22-22 22-4 0-6 0-10-2-60-32-134-44-204-44-72 0-176 28-234 64-62-46-150-64-234-64-62 0-146 18-204 46-4 0-6 2-10 2-10 0-22-10-22-20v-626c62-46 152-64 236-64s172 18 234 64c62-46 150-64 234-64z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "import_contacts"
- ],
- "defaultCode": 57568,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 399,
- "ligatures": "import_contacts",
- "id": 395,
- "prevSize": 24,
- "name": "import_contacts",
- "code": 57568
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 395
- },
- {
- "icon": {
- "paths": [
- "M682 726h128l-170 170-170-170h128v-300h84v300zM384 128l170 170h-128v300h-84v-300h-128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "import_export"
- ],
- "defaultCode": 57539,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 400,
- "ligatures": "import_export",
- "id": 396,
- "prevSize": 24,
- "name": "import_export",
- "code": 57539
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 396
- },
- {
- "icon": {
- "paths": [
- "M510 384h130l-106 76 40 124-104-78-106 78 40-124-106-76h130l42-128zM854 86c46 0 84 36 84 84v214h-84v-214h-768v512h554v86h-86v86h86v84h-342v-84h86v-86h-298c-48 0-86-40-86-86v-512c0-48 38-84 86-84h768zM982 854v-300h-214v300h214zM982 470c24 0 42 18 42 42v384c0 24-18 42-42 42h-214c-24 0-42-18-42-42v-384c0-24 18-42 42-42h214z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "important_devices"
- ],
- "defaultCode": 59666,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 401,
- "ligatures": "important_devices",
- "id": 397,
- "prevSize": 24,
- "name": "important_devices",
- "code": 59666
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 397
- },
- {
- "icon": {
- "paths": [
- "M810 640v-426h-598v426h172c0 70 58 128 128 128s128-58 128-128h170zM810 128c46 0 86 38 86 86v596c0 46-40 86-86 86h-598c-48 0-84-40-84-86v-596c0-48 36-86 84-86h598z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "inbox"
- ],
- "defaultCode": 57686,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 402,
- "ligatures": "inbox",
- "id": 398,
- "prevSize": 24,
- "name": "inbox",
- "code": 57686
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 398
- },
- {
- "icon": {
- "paths": [
- "M726 554v-84h-428v84h428zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "indeterminate_check_box"
- ],
- "defaultCode": 59657,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 403,
- "ligatures": "indeterminate_check_box",
- "id": 399,
- "prevSize": 24,
- "name": "indeterminate_check_box",
- "code": 59657
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 399
- },
- {
- "icon": {
- "paths": [
- "M554 384v-86h-84v86h84zM554 726v-256h-84v256h84zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "info"
- ],
- "defaultCode": 59534,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 404,
- "ligatures": "info",
- "id": 400,
- "prevSize": 24,
- "name": "info",
- "code": 59534
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 400
- },
- {
- "icon": {
- "paths": [
- "M470 384v-86h84v86h-84zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM470 726v-256h84v256h-84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "info_outline"
- ],
- "defaultCode": 59535,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 405,
- "ligatures": "info_outline",
- "id": 401,
- "prevSize": 24,
- "name": "info_outline",
- "code": 59535
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 401
- },
- {
- "icon": {
- "paths": [
- "M470 682v-128h-428v-84h428v-128l170 170zM896 128c46 0 86 38 86 86v598c0 46-40 84-86 84h-768c-46 0-86-38-86-84v-172h86v172h768v-600h-768v172h-86v-170c0-46 40-86 86-86h768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "input"
- ],
- "defaultCode": 59536,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 406,
- "ligatures": "input",
- "id": 402,
- "prevSize": 24,
- "name": "input",
- "code": 59536
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 402
- },
- {
- "icon": {
- "paths": [
- "M768 342v-86h-512v86h512zM768 470v-86h-512v86h512zM768 598v-86h-512v86h512zM854 86c46 0 84 38 84 84v768l-170-170h-598c-46 0-84-40-84-86v-512c0-46 38-84 84-84h684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "insert_comment"
- ],
- "defaultCode": 57932,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 407,
- "ligatures": "insert_comment",
- "id": 403,
- "prevSize": 24,
- "name": "insert_comment",
- "code": 57932
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 403
- },
- {
- "icon": {
- "paths": [
- "M554 384h236l-236-234v234zM256 86h342l256 256v512c0 46-40 84-86 84h-512c-46 0-86-38-86-84l2-684c0-46 38-84 84-84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "insert_drive_file"
- ],
- "defaultCode": 57933,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 408,
- "ligatures": "insert_drive_file",
- "id": 404,
- "prevSize": 24,
- "name": "insert_drive_file",
- "code": 57933
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 404
- },
- {
- "icon": {
- "paths": [
- "M512 746c-100 0-184-60-218-148h436c-34 88-118 148-218 148zM362 470c-36 0-64-28-64-64s28-64 64-64 64 28 64 64-28 64-64 64zM662 470c-36 0-64-28-64-64s28-64 64-64 64 28 64 64-28 64-64 64zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "tag_faces"
- ],
- "defaultCode": 58400,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 409,
- "ligatures": "insert_emoticon, mood, tag_faces",
- "id": 405,
- "prevSize": 24,
- "name": "tag_faces",
- "code": 58400
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 405
- },
- {
- "icon": {
- "paths": [
- "M726 298c118 0 212 96 212 214s-94 214-212 214h-172v-82h172c72 0 132-60 132-132s-60-132-132-132h-172v-82h172zM342 554v-84h340v84h-340zM166 512c0 72 60 132 132 132h172v82h-172c-118 0-212-96-212-214s94-214 212-214h172v82h-172c-72 0-132 60-132 132z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "link"
- ],
- "defaultCode": 57687,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 410,
- "ligatures": "insert_link, link",
- "id": 406,
- "prevSize": 24,
- "name": "link",
- "code": 57687
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 406
- },
- {
- "icon": {
- "paths": [
- "M512 836v-618l-180 180c-48 48-76 114-76 182 0 137.583 118.4 256 256 256zM754 338c134 134 134 348 0 482-66 66-154 100-242 100s-176-34-242-100c-134-134-134-348 0-482l242-242z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "invert_colors"
- ],
- "defaultCode": 59537,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 411,
- "ligatures": "invert_colors",
- "id": 407,
- "prevSize": 24,
- "name": "invert_colors",
- "code": 59537
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 407
- },
- {
- "icon": {
- "paths": [
- "M512 218l-98 96-60-60 158-158 242 242c104 104 126 258 68 384l-310-308v-196zM512 836v-206l-204-204c-34 44-52 98-52 154 0 137.583 118.4 256 256 256zM882 890l14 16-54 54-116-116c-62 50-138 76-214 76-88 0-176-34-242-100-124-126-132-322-24-456l-118-118 54-54c232.99 232.99 464.706 467.32 700 698z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "invert_colors_off"
- ],
- "defaultCode": 57540,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 412,
- "ligatures": "invert_colors_off",
- "id": 408,
- "prevSize": 24,
- "name": "invert_colors_off",
- "code": 57540
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 408
- },
- {
- "icon": {
- "paths": [
- "M726 726h-214v-64h214v64zM810 810v-596l-596 596h596zM234 320v64h86v86h64v-86h86v-64h-86v-86h-64v86h-86zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "iso"
- ],
- "defaultCode": 58358,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 413,
- "ligatures": "iso",
- "id": 409,
- "prevSize": 24,
- "name": "iso",
- "code": 58358
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 409
- },
- {
- "icon": {
- "paths": [
- "M810 426v-84h-84v84h84zM810 554v-84h-84v84h84zM682 426v-84h-84v84h84zM682 554v-84h-84v84h84zM682 726v-86h-340v86h340zM298 426v-84h-84v84h84zM298 554v-84h-84v84h84zM342 470v84h84v-84h-84zM342 342v84h84v-84h-84zM470 470v84h84v-84h-84zM470 342v84h84v-84h-84zM854 214c46 0 84 38 84 84v428c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-428c0-46 38-84 84-84h684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "keyboard"
- ],
- "defaultCode": 58130,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 414,
- "ligatures": "keyboard",
- "id": 410,
- "prevSize": 24,
- "name": "keyboard",
- "code": 58130
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 410
- },
- {
- "icon": {
- "paths": [
- "M316 334l196 196 196-196 60 60-256 256-256-256z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "keyboard_arrow_down"
- ],
- "defaultCode": 58131,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 415,
- "ligatures": "keyboard_arrow_down",
- "id": 411,
- "prevSize": 24,
- "name": "keyboard_arrow_down",
- "code": 58131
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 411
- },
- {
- "icon": {
- "paths": [
- "M658 686l-60 60-256-256 256-256 60 60-196 196z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "keyboard_arrow_left"
- ],
- "defaultCode": 58132,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 416,
- "ligatures": "keyboard_arrow_left",
- "id": 412,
- "prevSize": 24,
- "name": "keyboard_arrow_left",
- "code": 58132
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 412
- },
- {
- "icon": {
- "paths": [
- "M366 698l196-196-196-196 60-60 256 256-256 256z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "keyboard_arrow_right"
- ],
- "defaultCode": 58133,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 417,
- "ligatures": "keyboard_arrow_right",
- "id": 413,
- "prevSize": 24,
- "name": "keyboard_arrow_right",
- "code": 58133
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 413
- },
- {
- "icon": {
- "paths": [
- "M316 658l-60-60 256-256 256 256-60 60-196-196z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "keyboard_arrow_up"
- ],
- "defaultCode": 58134,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 418,
- "ligatures": "keyboard_arrow_up",
- "id": 414,
- "prevSize": 24,
- "name": "keyboard_arrow_up",
- "code": 58134
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 414
- },
- {
- "icon": {
- "paths": [
- "M896 470v84h-604l152 154-60 60-256-256 256-256 60 60-152 154h604z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "keyboard_backspace"
- ],
- "defaultCode": 58135,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 419,
- "ligatures": "keyboard_backspace",
- "id": 415,
- "prevSize": 24,
- "name": "keyboard_backspace",
- "code": 58135
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 415
- },
- {
- "icon": {
- "paths": [
- "M256 768v-86h512v86h-512zM512 358l-196 196-60-60 256-256 256 256-60 60z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "keyboard_capslock"
- ],
- "defaultCode": 58136,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 420,
- "ligatures": "keyboard_capslock",
- "id": 416,
- "prevSize": 24,
- "name": "keyboard_capslock",
- "code": 58136
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 416
- },
- {
- "icon": {
- "paths": [
- "M512 982l-170-172h340zM810 342v-86h-84v86h84zM810 470v-86h-84v86h84zM682 342v-86h-84v86h84zM682 470v-86h-84v86h84zM682 640v-86h-340v86h340zM298 342v-86h-84v86h84zM298 470v-86h-84v86h84zM342 384v86h84v-86h-84zM342 256v86h84v-86h-84zM470 384v86h84v-86h-84zM470 256v86h84v-86h-84zM854 128c46 0 84 40 84 86v426c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-426c0-46 38-86 84-86h684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "keyboard_hide"
- ],
- "defaultCode": 58138,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 421,
- "ligatures": "keyboard_hide",
- "id": 417,
- "prevSize": 24,
- "name": "keyboard_hide",
- "code": 58138
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 417
- },
- {
- "icon": {
- "paths": [
- "M810 298h86v256h-648l154 154-60 60-256-256 256-256 60 60-154 154h562v-172z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "keyboard_return"
- ],
- "defaultCode": 58139,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 422,
- "ligatures": "keyboard_return",
- "id": 418,
- "prevSize": 24,
- "name": "keyboard_return",
- "code": 58139
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 418
- },
- {
- "icon": {
- "paths": [
- "M854 256h84v512h-84v-512zM494 316l60-60 256 256-256 256-60-60 154-154h-606v-84h606z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "keyboard_tab"
- ],
- "defaultCode": 58140,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 423,
- "ligatures": "keyboard_tab",
- "id": 419,
- "prevSize": 24,
- "name": "keyboard_tab",
- "code": 58140
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 419
- },
- {
- "icon": {
- "paths": [
- "M738 512h72c0 146-116 266-256 286v140h-84v-140c-140-20-256-140-256-286h72c0 128 108 218 226 218s226-90 226-218zM512 640c-70 0-128-58-128-128v-256c0-70 58-128 128-128s128 58 128 128v256c0 70-58 128-128 128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "keyboard_voice"
- ],
- "defaultCode": 58141,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 424,
- "ligatures": "keyboard_voice",
- "id": 420,
- "prevSize": 24,
- "name": "keyboard_voice",
- "code": 58141
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 420
- },
- {
- "icon": {
- "paths": [
- "M342 512h84v214h-84v-214zM342 214h84v128h-84v-128zM768 384v-214h-512v214h512zM768 854v-386h-512v386h512zM768 86c46 0 86 36 86 84v684c0 46-40 84-86 84h-512c-46 0-86-38-86-84v-684c0-48 40-84 86-84h512z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "kitchen"
- ],
- "defaultCode": 60231,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 425,
- "ligatures": "kitchen",
- "id": 421,
- "prevSize": 24,
- "name": "kitchen",
- "code": 60231
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 421
- },
- {
- "icon": {
- "paths": [
- "M752 250l186 262-186 262c-16 22-42 36-70 36h-468c-46 0-86-38-86-84v-428c0-46 40-84 86-84h468c28 0 54 14 70 36z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "label"
- ],
- "defaultCode": 59538,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 426,
- "ligatures": "label",
- "id": 422,
- "prevSize": 24,
- "name": "label",
- "code": 59538
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 422
- },
- {
- "icon": {
- "paths": [
- "M682 726l152-214-152-214h-468v428h468zM752 250l186 262-186 262c-16 22-42 36-70 36h-468c-46 0-86-38-86-84v-428c0-46 40-84 86-84h468c28 0 54 14 70 36z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "label_outline"
- ],
- "defaultCode": 59539,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 427,
- "ligatures": "label_outline",
- "id": 423,
- "prevSize": 24,
- "name": "label_outline",
- "code": 59539
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 423
- },
- {
- "icon": {
- "paths": [
- "M698 598h144c6-28 12-56 12-86s-6-58-12-86h-144c4 28 6 56 6 86s-2 58-6 86zM622 834c78-26 146-82 186-152h-126c-14 54-34 104-60 152zM612 598c4-28 6-56 6-86s-2-58-6-86h-200c-4 28-6 56-6 86s2 58 6 86h200zM512 852c36-52 64-108 82-170h-164c18 62 46 118 82 170zM342 342c14-54 34-104 60-152-78 26-146 82-186 152h126zM216 682c40 70 108 126 186 152-26-48-46-98-60-152h-126zM182 598h144c-4-28-6-56-6-86s2-58 6-86h-144c-6 28-12 56-12 86s6 58 12 86zM512 172c-36 52-64 108-82 170h164c-18-62-46-118-82-170zM808 342c-40-70-108-126-186-152 26 48 46 98 60 152h126zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "language"
- ],
- "defaultCode": 59540,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 428,
- "ligatures": "language",
- "id": 424,
- "prevSize": 24,
- "name": "language",
- "code": 59540
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 424
- },
- {
- "icon": {
- "paths": [
- "M854 640v-426h-684v426h684zM598 768v-42h-172v42h172zM938 768h86v86h-1024v-86h86v-640h852v640z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "laptop_chromebook"
- ],
- "defaultCode": 58143,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 429,
- "ligatures": "laptop_chromebook",
- "id": 425,
- "prevSize": 24,
- "name": "laptop_chromebook",
- "code": 58143
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 425
- },
- {
- "icon": {
- "paths": [
- "M512 810c24 0 42-18 42-42s-18-42-42-42-42 18-42 42 18 42 42 42zM170 214v468h684v-468h-684zM854 768h170c0 46-40 86-86 86h-852c-46 0-86-40-86-86h170c-46 0-84-40-84-86v-468c0-46 38-86 84-86h684c46 0 84 40 84 86v468c0 46-38 86-84 86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "laptop_mac"
- ],
- "defaultCode": 58144,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 430,
- "ligatures": "laptop_mac",
- "id": 426,
- "prevSize": 24,
- "name": "laptop_mac",
- "code": 58144
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 426
- },
- {
- "icon": {
- "paths": [
- "M170 214v426h684v-426h-684zM854 768h170v86h-1024v-86h170v-42c-46 0-84-40-84-86v-426c0-46 38-86 84-86h684c46 0 84 40 84 86v426c0 46-38 86-84 86v42z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "laptop_windows"
- ],
- "defaultCode": 58145,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 431,
- "ligatures": "laptop_windows",
- "id": 427,
- "prevSize": 24,
- "name": "laptop_windows",
- "code": 58145
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 427
- },
- {
- "icon": {
- "paths": [
- "M682 256h86v512h-86v-512zM238 316l60-60 256 256-256 256-60-60 196-196z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "last_page"
- ],
- "defaultCode": 58845,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 432,
- "ligatures": "last_page",
- "id": 428,
- "prevSize": 24,
- "name": "last_page",
- "code": 58845
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 428
- },
- {
- "icon": {
- "paths": [
- "M598 128h298v298h-86v-152l-418 418-60-60 418-418h-152v-86zM810 810v-298h86v298c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h298v86h-298v596h596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "open_in_new"
- ],
- "defaultCode": 59550,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 433,
- "ligatures": "launch, open_in_new",
- "id": 429,
- "prevSize": 24,
- "name": "open_in_new",
- "code": 59550
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 429
- },
- {
- "icon": {
- "paths": [
- "M512 682c-128.024-99.309-255.626-199.040-384-298l384-298 384 298c-128.375 98.958-255.974 198.693-384 298zM512 792l314-246 70 54-384 298-384-298 70-54z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "layers"
- ],
- "defaultCode": 58683,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 434,
- "ligatures": "layers",
- "id": 430,
- "prevSize": 24,
- "name": "layers",
- "code": 58683
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 430
- },
- {
- "icon": {
- "paths": [
- "M140 42l798 800-54 54-160-162-212 164-384-298 70-54 314 246 150-118-60-60-90 68c-128.024-99.309-255.626-199.040-384-298l138-108-180-180zM896 384c-57.761 44.239-114.863 89.137-172 134l-336-336 124-96zM846 640l-62-62 50-38 62 60z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "layers_clear"
- ],
- "defaultCode": 58684,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 435,
- "ligatures": "layers_clear",
- "id": 431,
- "prevSize": 24,
- "name": "layers_clear",
- "code": 58684
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 431
- },
- {
- "icon": {
- "paths": [
- "M598 896c0-166 132-298 298-298v84c-118 0-214 96-214 214h-84zM768 896c0-70 58-128 128-128v128h-128zM426 896c0-258 212-470 470-470v86c-212 0-384 172-384 384h-86zM426 128c0 166-132 298-298 298v-84c118 0 214-96 214-214h84zM598 128c0 258-210 470-470 470v-86c212 0 384-172 384-384h86zM256 128c0 70-58 128-128 128v-128h128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "leak_add"
- ],
- "defaultCode": 58360,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 436,
- "ligatures": "leak_add",
- "id": 432,
- "prevSize": 24,
- "name": "leak_add",
- "code": 58360
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 432
- },
- {
- "icon": {
- "paths": [
- "M656 494c70-42 152-68 240-68v86c-64 0-124 16-178 44zM850 688l-68-68c34-14 74-22 114-22v84c-16 0-32 2-46 6zM598 128c0 88-26 170-68 240l-62-62c28-54 44-114 44-178h86zM128 182l54-54 714 714-54 54-122-122c-24 34-38 76-38 122h-84c0-68 24-132 62-182l-62-60c-54 66-86 150-86 242h-86c0-116 42-222 112-304l-106-106c-82 70-188 112-304 112v-86c92 0 178-32 244-86l-62-62c-50 38-114 62-182 62v-84c46 0 88-14 122-38zM426 128c0 40-8 80-22 114l-68-68c4-14 6-30 6-46h84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "leak_remove"
- ],
- "defaultCode": 58361,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 437,
- "ligatures": "leak_remove",
- "id": 433,
- "prevSize": 24,
- "name": "leak_remove",
- "code": 58361
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 433
- },
- {
- "icon": {
- "paths": [
- "M512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "lens"
- ],
- "defaultCode": 58362,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 438,
- "ligatures": "lens",
- "id": 434,
- "prevSize": 24,
- "name": "lens",
- "code": 58362
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 434
- },
- {
- "icon": {
- "paths": [
- "M810 298v-84h-426v84h426zM640 640v-86h-256v86h256zM810 470v-86h-426v86h426zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-512c-46 0-86-40-86-86v-512c0-46 40-84 86-84h512zM170 256v598h598v84h-598c-46 0-84-38-84-84v-598h84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "library_books"
- ],
- "defaultCode": 57391,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 439,
- "ligatures": "library_books",
- "id": 435,
- "prevSize": 24,
- "name": "library_books",
- "code": 57391
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 435
- },
- {
- "icon": {
- "paths": [
- "M170 256v598h598v84h-598c-46 0-84-38-84-84v-598h84zM768 298v-84h-170v234c-18-14-40-22-64-22-58 0-108 50-108 108s50 106 108 106 106-48 106-106v-236h128zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-512c-46 0-86-40-86-86v-512c0-46 40-84 86-84h512z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "library_music"
- ],
- "defaultCode": 57392,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 440,
- "ligatures": "library_music",
- "id": 436,
- "prevSize": 24,
- "name": "library_music",
- "code": 57392
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 436
- },
- {
- "icon": {
- "paths": [
- "M634 558c58-40 92-104 92-174 0-118-96-214-214-214s-214 96-214 214c0 70 34 134 92 174l36 26v98h172v-98zM512 86c164 0 298 134 298 298 0 102-50 190-128 244v98c0 24-18 42-42 42h-256c-24 0-42-18-42-42v-98c-78-54-128-142-128-244 0-164 134-298 298-298zM384 896v-42h256v42c0 24-18 42-42 42h-172c-24 0-42-18-42-42z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "lightbulb_outline"
- ],
- "defaultCode": 59663,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 441,
- "ligatures": "lightbulb_outline",
- "id": 437,
- "prevSize": 24,
- "name": "lightbulb_outline",
- "code": 59663
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 437
- },
- {
- "icon": {
- "paths": [
- "M128 170h768v172h-768v-172zM554 512v-86h342v86h-342zM128 512v-86h342v86h-342zM810 854v-86h86v86h-86zM640 854v-86h86v86h-86zM470 854v-86h84v86h-84zM298 854v-86h86v86h-86zM128 854v-86h86v86h-86zM682 682v-84h214v84h-214zM406 682v-84h212v84h-212zM128 682v-84h214v84h-214z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "line_style"
- ],
- "defaultCode": 59673,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 442,
- "ligatures": "line_style",
- "id": 438,
- "prevSize": 24,
- "name": "line_style",
- "code": 59673
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 438
- },
- {
- "icon": {
- "paths": [
- "M128 170h768v172h-768v-172zM128 554v-128h768v128h-768zM128 854v-44h768v44h-768zM128 726v-86h768v86h-768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "line_weight"
- ],
- "defaultCode": 59674,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 443,
- "ligatures": "line_weight",
- "id": 439,
- "prevSize": 24,
- "name": "line_weight",
- "code": 59674
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 439
- },
- {
- "icon": {
- "paths": [
- "M832 406c58 0 106 48 106 106s-48 106-106 106c-44 0-82-26-98-64h-124c-16 38-54 64-98 64s-82-26-98-64h-124c-16 38-54 64-98 64-58 0-106-48-106-106s48-106 106-106c44 0 82 26 98 64h124c16-38 54-64 98-64s82 26 98 64h124c16-38 54-64 98-64z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "linear_scale"
- ],
- "defaultCode": 57952,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 444,
- "ligatures": "linear_scale",
- "id": 440,
- "prevSize": 24,
- "name": "linear_scale",
- "code": 57952
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 440
- },
- {
- "icon": {
- "paths": [
- "M682 256c48 0 86 38 86 86h56c0-78-64-142-142-142v56zM512 810c118 0 214-94 214-212s-96-214-214-214-214 96-214 214 96 212 214 212zM726 384h212v470c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-512c0-46 38-86 84-86h136l78-86h256v128c48 0 86 38 86 86zM682 142v-56c142 0 256 114 256 256h-56c0-110-90-200-200-200zM376 598c0-76 60-138 136-138s136 62 136 138-60 136-136 136-136-60-136-136z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "linked_camera"
- ],
- "defaultCode": 58424,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 445,
- "ligatures": "linked_camera",
- "id": 441,
- "prevSize": 24,
- "name": "linked_camera",
- "code": 58424
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 441
- },
- {
- "icon": {
- "paths": [
- "M298 298h598v86h-598v-86zM298 726v-86h598v86h-598zM298 554v-84h598v84h-598zM128 384v-86h86v86h-86zM128 726v-86h86v86h-86zM128 554v-84h86v84h-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "list"
- ],
- "defaultCode": 59542,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 446,
- "ligatures": "list",
- "id": 442,
- "prevSize": 24,
- "name": "list",
- "code": 59542
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 442
- },
- {
- "icon": {
- "paths": [
- "M642 438c24-24 40-58 40-96 0-94-76-172-170-172s-170 78-170 172h84c0-46 40-86 86-86s86 40 86 86c0 24-10 44-26 60l-52 54c-30 32-50 74-50 120v22h84c0-64 20-90 50-122zM554 768v-86h-84v86h84zM810 86c46 0 86 38 86 84v598c0 46-40 86-86 86h-170l-128 128-128-128h-170c-48 0-86-40-86-86v-598c0-46 38-84 86-84h596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "live_help"
- ],
- "defaultCode": 57542,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 447,
- "ligatures": "live_help",
- "id": 443,
- "prevSize": 24,
- "name": "live_help",
- "code": 57542
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 443
- },
- {
- "icon": {
- "paths": [
- "M384 426l298 172-298 170v-342zM896 854v-512h-768v512h768zM896 256c46 0 86 38 86 86v512c0 46-40 84-86 84h-768c-46 0-86-38-86-84v-512c0-48 40-86 86-86h324l-140-140 30-30 170 170 170-170 30 30-140 140h324z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "live_tv"
- ],
- "defaultCode": 58937,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 448,
- "ligatures": "live_tv",
- "id": 444,
- "prevSize": 24,
- "name": "live_tv",
- "code": 58937
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 444
- },
- {
- "icon": {
- "paths": [
- "M664 716l-46-174 140-116-180-10-66-168-66 168-182 10 142 116-46 174 152-98zM854 512c0 46 38 86 84 86v170c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-170c48 0 84-40 84-86s-38-86-84-86v-170c0-46 38-86 84-86h684c46 0 84 40 84 86v170c-46 0-84 40-84 86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "local_play"
- ],
- "defaultCode": 58707,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 449,
- "ligatures": "local_activity, local_play",
- "id": 445,
- "prevSize": 24,
- "name": "local_play",
- "code": 58707
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 445
- },
- {
- "icon": {
- "paths": [
- "M896 682l-342-106v234l86 64v64l-150-42-148 42v-64l84-64v-234l-340 106v-84l340-214v-234c0-36 28-64 64-64s64 28 64 64v234l342 214v84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "local_airport"
- ],
- "defaultCode": 58685,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 450,
- "ligatures": "local_airport",
- "id": 446,
- "prevSize": 24,
- "name": "local_airport",
- "code": 58685
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 446
- },
- {
- "icon": {
- "paths": [
- "M854 768v-512h-684v512h684zM854 170c48 0 84 38 84 86v512c0 48-36 86-84 86h-684c-48 0-84-38-84-86v-512c0-48 36-86 84-86h684zM470 726v-44h-86v-84h170v-44h-128c-24 0-42-18-42-42v-128c0-24 18-42 42-42h44v-44h84v44h86v84h-170v44h128c24 0 42 18 42 42v128c0 24-18 42-42 42h-44v44h-84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "local_atm"
- ],
- "defaultCode": 58686,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 451,
- "ligatures": "local_atm",
- "id": 447,
- "prevSize": 24,
- "name": "local_atm",
- "code": 58686
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 447
- },
- {
- "icon": {
- "paths": [
- "M318 298h388l76-84h-540zM896 214l-342 384v212h214v86h-512v-86h214v-212l-342-384v-86h768v86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "local_bar"
- ],
- "defaultCode": 58688,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 452,
- "ligatures": "local_bar",
- "id": 448,
- "prevSize": 24,
- "name": "local_bar",
- "code": 58688
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 448
- },
- {
- "icon": {
- "paths": [
- "M86 896v-86h768v86h-768zM854 342v-128h-86v128h86zM854 128c48 0 84 38 84 86v128c0 48-36 84-84 84h-86v128c0 94-76 172-170 172h-256c-94 0-172-78-172-172v-426h684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "local_cafe"
- ],
- "defaultCode": 58689,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 453,
- "ligatures": "local_cafe",
- "id": 449,
- "prevSize": 24,
- "name": "local_cafe",
- "code": 58689
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 449
- },
- {
- "icon": {
- "paths": [
- "M214 554h596l-64-192h-468zM746 768c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM278 768c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM808 342l88 256v340c0 24-18 44-42 44h-44c-24 0-42-20-42-44v-42h-512v42c0 24-18 44-42 44h-44c-24 0-42-20-42-44v-340l88-256c8-26 34-44 62-44h468c28 0 54 18 62 44zM298 214c-36 0-64-28-64-64 0-42 64-116 64-116s64 74 64 116c0 36-28 64-64 64zM512 214c-36 0-64-28-64-64 0-42 64-116 64-116s64 74 64 116c0 36-28 64-64 64zM726 214c-36 0-64-28-64-64 0-42 64-116 64-116s64 74 64 116c0 36-28 64-64 64z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "local_car_wash"
- ],
- "defaultCode": 58690,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 454,
- "ligatures": "local_car_wash",
- "id": 450,
- "prevSize": 24,
- "name": "local_car_wash",
- "code": 58690
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 450
- },
- {
- "icon": {
- "paths": [
- "M682 512v-214h-42v86h-42v-86h-44v128h86v86h42zM470 426v-128h-128v44h84v42h-84v128h128v-42h-86v-44h86zM810 298h128v556h-340v-172h-172v172h-340v-556h128v-128h596v128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "local_convenience_store"
- ],
- "defaultCode": 58691,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 455,
- "ligatures": "local_convenience_store",
- "id": 451,
- "prevSize": 24,
- "name": "local_convenience_store",
- "code": 58691
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 451
- },
- {
- "icon": {
- "paths": [
- "M634 492l-62 62 294 294-60 60-294-294-294 294-60-60 416-416c-30-66-8-158 60-226 82-82 198-96 260-34s48 180-34 262c-68 68-160 88-226 58zM346 570l-180-180c-66-66-66-174 0-240l300 298z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "restaurant_menu"
- ],
- "defaultCode": 58721,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 456,
- "ligatures": "local_dining, restaurant_menu",
- "id": 452,
- "prevSize": 24,
- "name": "restaurant_menu",
- "code": 58721
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 452
- },
- {
- "icon": {
- "paths": [
- "M782 342l18-172h-576l18 172h540zM512 810c70 0 128-58 128-128 0-86-128-230-128-230s-128 144-128 230c0 70 58 128 128 128zM128 86h768l-86 778c-6 42-40 74-84 74h-428c-44 0-78-32-84-74z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "local_drink"
- ],
- "defaultCode": 58692,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 457,
- "ligatures": "local_drink",
- "id": 453,
- "prevSize": 24,
- "name": "local_drink",
- "code": 58692
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 453
- },
- {
- "icon": {
- "paths": [
- "M512 234c-58 0-106 50-106 108s48 106 106 106 106-48 106-106-48-108-106-108zM238 438c0-42 26-78 62-96-36-18-62-54-62-96 0-58 50-108 108-108 22 0 42 8 60 20v-8c0-58 48-108 106-108s106 50 106 108v8c18-12 38-20 60-20 58 0 108 50 108 108 0 42-26 78-62 96 36 18 62 54 62 96 0 58-50 106-108 106-22 0-42-6-60-18v8c0 58-48 106-106 106s-106-48-106-106v-8c-18 12-38 18-60 18-58 0-108-48-108-106zM512 938c-212 0-384-172-384-384 212 0 384 172 384 384zM512 938c0-212 172-384 384-384 0 212-172 384-384 384z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "local_florist"
- ],
- "defaultCode": 58693,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 458,
- "ligatures": "local_florist",
- "id": 454,
- "prevSize": 24,
- "name": "local_florist",
- "code": 58693
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 454
- },
- {
- "icon": {
- "paths": [
- "M768 426c24 0 42-18 42-42s-18-42-42-42-42 18-42 42 18 42 42 42zM512 426v-212h-256v212h256zM844 308c20 20 30 46 30 76v406c0 58-48 106-106 106s-106-48-106-106v-214h-64v320h-428v-682c0-46 40-86 86-86h256c46 0 86 40 86 86v298h42c46 0 86 40 86 86v192c0 24 18 42 42 42s42-18 42-42v-308c-14 6-26 8-42 8-58 0-106-48-106-106 0-46 28-84 68-100l-90-90 46-44z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "local_gas_station"
- ],
- "defaultCode": 58694,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 459,
- "ligatures": "local_gas_station",
- "id": 455,
- "prevSize": 24,
- "name": "local_gas_station",
- "code": 58694
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 455
- },
- {
- "icon": {
- "paths": [
- "M726 768c46 0 84 40 84 86s-38 84-84 84-86-38-86-84 40-86 86-86zM42 86h140l40 84h632c24 0 42 20 42 44 0 8-2 14-6 20l-152 276c-14 26-42 44-74 44h-318l-38 70-2 6c0 6 4 10 10 10h494v86h-512c-46 0-84-40-84-86 0-14 4-28 10-40l58-106-154-324h-86v-84zM298 768c46 0 86 40 86 86s-40 84-86 84-84-38-84-84 38-86 84-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "shopping_cart"
- ],
- "defaultCode": 59596,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 460,
- "ligatures": "local_grocery_store, shopping_cart",
- "id": 456,
- "prevSize": 24,
- "name": "shopping_cart",
- "code": 59596
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 456
- },
- {
- "icon": {
- "paths": [
- "M768 598v-172h-170v-170h-172v170h-170v172h170v170h172v-170h170zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "local_hospital"
- ],
- "defaultCode": 58696,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 461,
- "ligatures": "local_hospital",
- "id": 457,
- "prevSize": 24,
- "name": "local_hospital",
- "code": 58696
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 457
- },
- {
- "icon": {
- "paths": [
- "M512 854c142 0 256-114 256-256s-114-256-256-256-256 114-256 256 114 256 256 256zM298 170c-24 0-42 20-42 44s18 42 42 42 44-18 44-42-20-44-44-44zM426 170c-24 0-42 20-42 44s18 42 42 42 44-18 44-42-20-44-44-44zM768 86c48 0 86 36 86 84v684c0 48-38 84-86 84h-512c-48 0-86-36-86-84v-684c0-48 38-84 86-84h512zM392 718l240-242c66 66 66 176 0 242s-174 66-240 0z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "local_laundry_service"
- ],
- "defaultCode": 58698,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 462,
- "ligatures": "local_laundry_service",
- "id": 458,
- "prevSize": 24,
- "name": "local_laundry_service",
- "code": 58698
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 458
- },
- {
- "icon": {
- "paths": [
- "M512 342c-70 0-128-58-128-128s58-128 128-128 128 58 128 128-58 128-128 128zM512 492c100-94 236-150 384-150v468c-148 0-284 58-384 152-100-94-236-152-384-152v-468c148 0 284 56 384 150z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "local_library"
- ],
- "defaultCode": 58699,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 463,
- "ligatures": "local_library",
- "id": 459,
- "prevSize": 24,
- "name": "local_library",
- "code": 58699
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 459
- },
- {
- "icon": {
- "paths": [
- "M512 554c118 0 214-94 214-212h-86c0 70-58 128-128 128s-128-58-128-128h-86c0 118 96 212 214 212zM512 128c-70 0-128 58-128 128h256c0-70-58-128-128-128zM810 256c46 0 86 40 86 86v512c0 46-40 84-86 84h-596c-46 0-86-38-86-84v-512c0-46 40-86 86-86h84c0-118 96-214 214-214s214 96 214 214h84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "local_mall"
- ],
- "defaultCode": 58700,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 464,
- "ligatures": "local_mall",
- "id": 460,
- "prevSize": 24,
- "name": "local_mall",
- "code": 58700
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 460
- },
- {
- "icon": {
- "paths": [
- "M768 384v-86h-86v86h86zM768 554v-84h-86v84h86zM768 726v-86h-86v86h86zM342 384v-86h-86v86h86zM342 554v-84h-86v84h86zM342 726v-86h-86v86h86zM768 128h86v768h-86v-86h-86v86h-340v-86h-86v86h-86v-768h86v86h86v-86h340v86h86v-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "theaters"
- ],
- "defaultCode": 59610,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 465,
- "ligatures": "local_movies, theaters",
- "id": 461,
- "prevSize": 24,
- "name": "theaters",
- "code": 59610
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 461
- },
- {
- "icon": {
- "paths": [
- "M234 298c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM914 494c16 16 24 36 24 60s-8 44-24 60l-300 300c-16 16-36 24-60 24s-44-8-60-24l-384-384c-16-16-24-36-24-60v-300c0-46 38-84 84-84h300c24 0 44 8 60 24z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "local_offer"
- ],
- "defaultCode": 58702,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 466,
- "ligatures": "local_offer",
- "id": 462,
- "prevSize": 24,
- "name": "local_offer",
- "code": 58702
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 462
- },
- {
- "icon": {
- "paths": [
- "M564 470c46 0 84-40 84-86s-38-86-84-86h-138v172h138zM554 128c142 0 256 114 256 256s-114 256-256 256h-128v256h-170v-768h298z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "local_parking"
- ],
- "defaultCode": 58703,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 467,
- "ligatures": "local_parking",
- "id": 463,
- "prevSize": 24,
- "name": "local_parking",
- "code": 58703
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 463
- },
- {
- "icon": {
- "paths": [
- "M682 598v-86h-128v-128h-84v128h-128v86h128v128h84v-128h128zM896 214v84l-86 256 86 256v86h-768v-86l86-256-86-256v-84h542l62-172 100 38-48 134h112z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "local_pharmacy"
- ],
- "defaultCode": 58704,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 468,
- "ligatures": "local_pharmacy",
- "id": 464,
- "prevSize": 24,
- "name": "local_pharmacy",
- "code": 58704
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 464
- },
- {
- "icon": {
- "paths": [
- "M512 640c46 0 86-40 86-86s-40-84-86-84-86 38-86 84 40 86 86 86zM298 298c0 46 40 86 86 86s86-40 86-86-40-84-86-84-86 38-86 84zM512 86c152 0 290 66 384 170l-384 682-384-682c94-104 232-170 384-170z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "local_pizza"
- ],
- "defaultCode": 58706,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 469,
- "ligatures": "local_pizza",
- "id": 465,
- "prevSize": 24,
- "name": "local_pizza",
- "code": 58706
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 465
- },
- {
- "icon": {
- "paths": [
- "M768 128v170h-512v-170h512zM810 512c24 0 44-18 44-42s-20-44-44-44-42 20-42 44 18 42 42 42zM682 810v-212h-340v212h340zM810 342c70 0 128 58 128 128v256h-170v170h-512v-170h-170v-256c0-70 58-128 128-128h596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "print"
- ],
- "defaultCode": 59565,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 470,
- "ligatures": "local_printshop, print",
- "id": 466,
- "prevSize": 24,
- "name": "print",
- "code": 59565
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 466
- },
- {
- "icon": {
- "paths": [
- "M768 790c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM832 406h-106v106h190zM256 790c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM854 342l128 170v214h-86c0 70-58 128-128 128s-128-58-128-128h-256c0 70-58 128-128 128s-128-58-128-128h-86v-470c0-46 40-86 86-86h598v172h128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "local_shipping"
- ],
- "defaultCode": 58712,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 471,
- "ligatures": "local_shipping",
- "id": 467,
- "prevSize": 24,
- "name": "local_shipping",
- "code": 58712
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 467
- },
- {
- "icon": {
- "paths": [
- "M214 470h596l-64-192h-468zM746 682c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM278 682c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM808 256l88 256v342c0 24-18 42-42 42h-44c-24 0-42-18-42-42v-44h-512v44c0 24-18 42-42 42h-44c-24 0-42-18-42-42v-342l88-256c8-26 34-42 62-42h106v-86h256v86h106c28 0 54 16 62 42z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "local_taxi"
- ],
- "defaultCode": 58713,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 472,
- "ligatures": "local_taxi",
- "id": 468,
- "prevSize": 24,
- "name": "local_taxi",
- "code": 58713
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 468
- },
- {
- "icon": {
- "paths": [
- "M810 640v-86h-84v86h84zM810 810v-84h-84v84h84zM554 298v-84h-84v84h84zM554 470v-86h-84v86h84zM554 640v-86h-84v86h84zM554 810v-84h-84v84h84zM298 470v-86h-84v86h84zM298 640v-86h-84v86h84zM298 810v-84h-84v84h84zM640 470h256v426h-768v-598h256v-84l128-128 128 128v256z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "location_city"
- ],
- "defaultCode": 59377,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 473,
- "ligatures": "location_city",
- "id": 469,
- "prevSize": 24,
- "name": "location_city",
- "code": 59377
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 469
- },
- {
- "icon": {
- "paths": [
- "M500 490c118.353 116.98 236.568 234.098 354 352l-54 54-144-142c-72 106-144 184-144 184s-298-330-298-554c0-22 4-44 8-66l-136-136 54-54 356 356zM512 278c-32 0-58 14-78 36l-138-136c54-56 132-92 216-92 166 0 298 132 298 298 0 72-30 154-72 234l-154-156c22-20 34-46 34-78 0-58-48-106-106-106z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "location_off"
- ],
- "defaultCode": 57543,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 474,
- "ligatures": "location_off",
- "id": 470,
- "prevSize": 24,
- "name": "location_off",
- "code": 57543
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 470
- },
- {
- "icon": {
- "paths": [
- "M512 490c58 0 106-48 106-106s-48-106-106-106-106 48-106 106 48 106 106 106zM512 86c166 0 298 132 298 298 0 224-298 554-298 554s-298-330-298-554c0-166 132-298 298-298z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "room"
- ],
- "defaultCode": 59572,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 475,
- "ligatures": "location_on, place, room",
- "id": 471,
- "prevSize": 24,
- "name": "room",
- "code": 59572
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 471
- },
- {
- "icon": {
- "paths": [
- "M768 854v-428h-512v428h512zM768 342c46 0 86 38 86 84v428c0 46-40 84-86 84h-512c-46 0-86-38-86-84v-428c0-46 40-84 86-84h388v-86c0-72-60-132-132-132s-132 60-132 132h-82c0-118 96-214 214-214s214 96 214 214v86h42zM512 726c-46 0-86-40-86-86s40-86 86-86 86 40 86 86-40 86-86 86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "lock_open"
- ],
- "defaultCode": 59544,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 476,
- "ligatures": "lock_open",
- "id": 472,
- "prevSize": 24,
- "name": "lock_open",
- "code": 59544
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 472
- },
- {
- "icon": {
- "paths": [
- "M768 854v-428h-512v428h512zM380 256v86h264v-86c0-72-60-132-132-132s-132 60-132 132zM768 342c46 0 86 38 86 84v428c0 46-40 84-86 84h-512c-46 0-86-38-86-84v-428c0-46 40-84 86-84h42v-86c0-118 96-214 214-214s214 96 214 214v86h42zM512 726c-46 0-86-40-86-86s40-86 86-86 86 40 86 86-40 86-86 86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "lock_outline"
- ],
- "defaultCode": 59545,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 477,
- "ligatures": "lock_outline",
- "id": 473,
- "prevSize": 24,
- "name": "lock_outline",
- "code": 59545
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 473
- },
- {
- "icon": {
- "paths": [
- "M512 256c258 0 470 212 470 470h-86c0-212-172-384-384-384s-384 172-384 384h-86c0-258 212-470 470-470zM512 426c164 0 298 136 298 300h-84c0-118-96-214-214-214s-214 96-214 214h-84c0-164 134-300 298-300z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "looks"
- ],
- "defaultCode": 58364,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 478,
- "ligatures": "looks",
- "id": 474,
- "prevSize": 24,
- "name": "looks",
- "code": 58364
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 474
- },
- {
- "icon": {
- "paths": [
- "M640 448v-64c0-48-38-86-84-86h-172v86h172v86h-86v84h86v86h-172v86h172c46 0 84-38 84-86v-64c0-36-28-64-64-64 36 0 64-28 64-64zM812 128c46 0 84 40 84 86v596c0 46-38 86-84 86h-598c-46 0-86-40-86-86v-596c0-46 40-86 86-86h598z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "looks_3"
- ],
- "defaultCode": 58363,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 479,
- "ligatures": "looks_3",
- "id": 475,
- "prevSize": 24,
- "name": "looks_3",
- "code": 58363
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 475
- },
- {
- "icon": {
- "paths": [
- "M640 726v-428h-86v172h-84v-172h-86v256h170v172h86zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "looks_4"
- ],
- "defaultCode": 58365,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 480,
- "ligatures": "looks_4",
- "id": 476,
- "prevSize": 24,
- "name": "looks_4",
- "code": 58365
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 476
- },
- {
- "icon": {
- "paths": [
- "M640 384v-86h-256v256h170v86h-170v86h170c46 0 86-38 86-86v-86c0-48-40-84-86-84h-84v-86h170zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "looks_5"
- ],
- "defaultCode": 58366,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 481,
- "ligatures": "looks_5",
- "id": 477,
- "prevSize": 24,
- "name": "looks_5",
- "code": 58366
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 477
- },
- {
- "icon": {
- "paths": [
- "M640 384v-86h-170c-46 0-86 38-86 86v256c0 48 40 86 86 86h84c46 0 86-38 86-86v-86c0-48-40-84-86-84h-84v-86h170zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596zM470 640v-86h84v86h-84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "looks_6"
- ],
- "defaultCode": 58367,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 482,
- "ligatures": "looks_6",
- "id": 478,
- "prevSize": 24,
- "name": "looks_6",
- "code": 58367
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 478
- },
- {
- "icon": {
- "paths": [
- "M598 726v-428h-172v86h86v342h86zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "looks_one"
- ],
- "defaultCode": 58368,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 483,
- "ligatures": "looks_one",
- "id": 479,
- "prevSize": 24,
- "name": "looks_one",
- "code": 58368
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 479
- },
- {
- "icon": {
- "paths": [
- "M640 470v-86c0-48-40-86-86-86h-170v86h170v86h-84c-46 0-86 36-86 84v172h256v-86h-170v-86h84c46 0 86-36 86-84zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "looks_two"
- ],
- "defaultCode": 58369,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 484,
- "ligatures": "looks_two",
- "id": 480,
- "prevSize": 24,
- "name": "looks_two",
- "code": 58369
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 480
- },
- {
- "icon": {
- "paths": [
- "M512 768v-128l170 170-170 172v-128c-188 0-342-154-342-342 0-66 20-130 54-182l62 62c-20 36-30 76-30 120 0 142 114 256 256 256zM512 170c188 0 342 154 342 342 0 66-20 130-54 182l-62-62c20-36 30-76 30-120 0-142-114-256-256-256v128l-170-170 170-172v128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "sync"
- ],
- "defaultCode": 58919,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 485,
- "ligatures": "loop, sync",
- "id": 481,
- "prevSize": 24,
- "name": "sync",
- "code": 58919
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 481
- },
- {
- "icon": {
- "paths": [
- "M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426v342c0 46-38 84-84 84h-342c-236 0-426-190-426-426s190-426 426-426zM554 298v172h172v84h-172v172h-84v-172h-172v-84h172v-172h84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "loupe"
- ],
- "defaultCode": 58370,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 486,
- "ligatures": "loupe",
- "id": 482,
- "prevSize": 24,
- "name": "loupe",
- "code": 58370
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 482
- },
- {
- "icon": {
- "paths": [
- "M86 490c0-152 124-276 276-276h150v84h-150c-106 0-192 86-192 192s86 192 192 192h22v-84l128 128-128 128v-86h-22c-152 0-276-126-276-278zM598 682h340v86h-340v-86zM598 448h340v86h-340v-86zM598 214h340v84h-340v-84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "low_priority"
- ],
- "defaultCode": 57709,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 487,
- "ligatures": "low_priority",
- "id": 483,
- "prevSize": 24,
- "name": "low_priority",
- "code": 57709
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 483
- },
- {
- "icon": {
- "paths": [
- "M736 652c20-20 32-46 32-76 0-58-48-106-106-106-30 0-56 10-76 30l-32 32-30-32c-20-20-46-30-76-30-58 0-106 48-106 106 0 30 10 56 30 76l182 182zM234 298c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM914 494c16 16 24 36 24 60s-8 44-24 60l-300 300c-16 16-36 24-60 24s-44-8-60-24l-384-384c-16-16-24-36-24-60v-300c0-46 38-84 84-84h300c24 0 44 8 60 24z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "loyalty"
- ],
- "defaultCode": 59546,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 488,
- "ligatures": "loyalty",
- "id": 484,
- "prevSize": 24,
- "name": "loyalty",
- "code": 59546
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 484
- },
- {
- "icon": {
- "paths": [
- "M512 470l342-214h-684zM854 768v-426l-342 212-342-212v426h684zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "mail_outline"
- ],
- "defaultCode": 57569,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 489,
- "ligatures": "mail_outline",
- "id": 485,
- "prevSize": 24,
- "name": "mail_outline",
- "code": 57569
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 485
- },
- {
- "icon": {
- "paths": [
- "M640 810v-506l-256-90v506zM874 128c12 0 22 10 22 22v644c0 10-8 18-16 20l-240 82-256-90-228 88-6 2c-12 0-22-10-22-22v-644c0-10 8-18 16-20l240-82 256 90 228-88z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "map"
- ],
- "defaultCode": 58715,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 490,
- "ligatures": "map",
- "id": 486,
- "prevSize": 24,
- "name": "map",
- "code": 58715
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 486
- },
- {
- "icon": {
- "paths": [
- "M854 256c46 0 84 40 84 86v512c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-512c0-46 38-86 84-86h86v-256h342v170h-256v342h84v-256h428z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "markunread_mailbox"
- ],
- "defaultCode": 59547,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 491,
- "ligatures": "markunread_mailbox",
- "id": 487,
- "prevSize": 24,
- "name": "markunread_mailbox",
- "code": 59547
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 487
- },
- {
- "icon": {
- "paths": [
- "M726 726v-428h-428v428h428zM896 470h-86v84h86v86h-86v86c0 46-38 84-84 84h-86v86h-86v-86h-84v86h-86v-86h-86c-46 0-84-38-84-84v-86h-86v-86h86v-84h-86v-86h86v-86c0-46 38-84 84-84h86v-86h86v86h84v-86h86v86h86c46 0 84 38 84 84v86h86v86zM554 554v-84h-84v84h84zM640 384v256h-256v-256h256z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "memory"
- ],
- "defaultCode": 58146,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 492,
- "ligatures": "memory",
- "id": 488,
- "prevSize": 24,
- "name": "memory",
- "code": 58146
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 488
- },
- {
- "icon": {
- "paths": [
- "M128 256h768v86h-768v-86zM128 554v-84h768v84h-768zM128 768v-86h768v86h-768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "menu"
- ],
- "defaultCode": 58834,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 493,
- "ligatures": "menu",
- "id": 489,
- "prevSize": 24,
- "name": "menu",
- "code": 58834
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 489
- },
- {
- "icon": {
- "paths": [
- "M768 342v-86h-512v86h512zM768 470v-86h-512v86h512zM768 598v-86h-512v86h512zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "message"
- ],
- "defaultCode": 57545,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 494,
- "ligatures": "message",
- "id": 490,
- "prevSize": 24,
- "name": "message",
- "code": 57545
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 490
- },
- {
- "icon": {
- "paths": [
- "M738 470h72c0 146-116 266-256 286v140h-84v-140c-140-20-256-140-256-286h72c0 128 108 216 226 216s226-88 226-216zM512 598c-70 0-128-58-128-128v-256c0-70 58-128 128-128s128 58 128 128v256c0 70-58 128-128 128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "mic"
- ],
- "defaultCode": 57385,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 495,
- "ligatures": "mic",
- "id": 491,
- "prevSize": 24,
- "name": "mic",
- "code": 57385
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 491
- },
- {
- "icon": {
- "paths": [
- "M738 470h72c0 146-116 266-256 286v140h-84v-140c-140-20-256-140-256-286h72c0 128 108 216 226 216s226-88 226-216zM460 210v264c0 28 24 50 52 50s50-22 50-50l2-264c0-28-24-52-52-52s-52 24-52 52zM512 598c-70 0-128-58-128-128v-256c0-70 58-128 128-128s128 58 128 128v256c0 70-58 128-128 128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "mic_none"
- ],
- "defaultCode": 57386,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 496,
- "ligatures": "mic_none",
- "id": 492,
- "prevSize": 24,
- "name": "mic_none",
- "code": 57386
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 492
- },
- {
- "icon": {
- "paths": [
- "M182 128l714 714-54 54-178-178c-32 20-72 32-110 38v140h-84v-140c-140-20-256-140-256-286h72c0 128 108 216 226 216 34 0 68-8 98-22l-70-70c-8 2-18 4-28 4-70 0-128-58-128-128v-32l-256-256zM640 476l-256-254v-8c0-70 58-128 128-128s128 58 128 128v262zM810 470c0 50-14 98-38 140l-52-54c12-26 18-54 18-86h72z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "mic_off"
- ],
- "defaultCode": 57387,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 497,
- "ligatures": "mic_off",
- "id": 493,
- "prevSize": 24,
- "name": "mic_off",
- "code": 57387
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 493
- },
- {
- "icon": {
- "paths": [
- "M214 598h596l-192-256-148 192-108-128zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "mms"
- ],
- "defaultCode": 58904,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 498,
- "ligatures": "mms",
- "id": 494,
- "prevSize": 24,
- "name": "mms",
- "code": 58904
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 494
- },
- {
- "icon": {
- "paths": [
- "M938 170v768l-170-170h-598c-46 0-84-40-84-86v-512c0-46 38-84 84-84h684c46 0 84 38 84 84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "mode_comment"
- ],
- "defaultCode": 57939,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 499,
- "ligatures": "mode_comment",
- "id": 495,
- "prevSize": 24,
- "name": "mode_comment",
- "code": 57939
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 495
- },
- {
- "icon": {
- "paths": [
- "M572 772c74-14 134-56 134-134 0-108-94-146-180-168s-112-46-112-82c0-40 38-70 102-70 68 0 92 32 94 80h84c-2-66-42-124-122-144v-84h-114v84c-74 16-132 62-132 136 0 88 72 130 178 156 96 22 114 56 114 92 0 26-18 68-102 68-78 0-110-36-114-80h-84c4 82 68 128 140 144v84h114v-82zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "monetization_on"
- ],
- "defaultCode": 57955,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 500,
- "ligatures": "monetization_on",
- "id": 496,
- "prevSize": 24,
- "name": "monetization_on",
- "code": 57955
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 496
- },
- {
- "icon": {
- "paths": [
- "M228 174l622 624-54 54-94-96c-26 24-64 40-104 48v92h-128v-92c-82-18-152-70-158-164h94c4 50 40 90 128 90 58 0 88-20 102-40l-150-148c-100-30-166-80-166-168l-146-146zM534 294c-26 0-48 4-66 12l-62-62c20-10 42-18 64-24v-92h128v94c90 22 134 88 136 162h-94c-2-54-30-90-106-90z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "money_off"
- ],
- "defaultCode": 57948,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 501,
- "ligatures": "money_off",
- "id": 497,
- "prevSize": 24,
- "name": "money_off",
- "code": 57948
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 497
- },
- {
- "icon": {
- "paths": [
- "M854 810v-512h-342v44c120 0 214 92 214 212s-94 214-214 214v-76c-76 0-136-62-136-138s60-136 136-136v274c76 0 136-62 136-138s-60-136-136-136v-76c-120 0-214 92-214 212s94 214 214 214v42h342zM854 214c46 0 84 38 84 84v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-84 84-84h138l76-86h256l76 86h138z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "monochrome_photos"
- ],
- "defaultCode": 58371,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 502,
- "ligatures": "monochrome_photos",
- "id": 498,
- "prevSize": 24,
- "name": "monochrome_photos",
- "code": 58371
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 498
- },
- {
- "icon": {
- "paths": [
- "M512 598c100 0 184 60 218 148h-436c34-88 118-148 218-148zM362 470c-36 0-64-28-64-64s28-64 64-64 64 28 64 64-28 64-64 64zM662 470c-36 0-64-28-64-64s28-64 64-64 64 28 64 64-28 64-64 64zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "mood_bad"
- ],
- "defaultCode": 59379,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 503,
- "ligatures": "mood_bad",
- "id": 499,
- "prevSize": 24,
- "name": "mood_bad",
- "code": 59379
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 499
- },
- {
- "icon": {
- "paths": [
- "M810 576c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM598 576c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM384 576c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM938 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-636c-30 0-56-16-72-38l-230-346 230-346c16-22 38-38 68-38h640z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "more"
- ],
- "defaultCode": 58905,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 504,
- "ligatures": "more",
- "id": 500,
- "prevSize": 24,
- "name": "more",
- "code": 58905
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 500
- },
- {
- "icon": {
- "paths": [
- "M512 426c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM768 426c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM256 426c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "more_horiz"
- ],
- "defaultCode": 58835,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 505,
- "ligatures": "more_horiz",
- "id": 501,
- "prevSize": 24,
- "name": "more_horiz",
- "code": 58835
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 501
- },
- {
- "icon": {
- "paths": [
- "M512 682c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM512 426c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM512 342c-46 0-86-40-86-86s40-86 86-86 86 40 86 86-40 86-86 86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "more_vert"
- ],
- "defaultCode": 58836,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 506,
- "ligatures": "more_vert",
- "id": 502,
- "prevSize": 24,
- "name": "more_vert",
- "code": 58836
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 502
- },
- {
- "icon": {
- "paths": [
- "M810 726c70 0 128-58 128-128s-58-128-128-128-128 58-128 128 58 128 128 128zM334 640h-120v-86h120c-18-50-66-84-120-84-70 0-128 58-128 128s58 128 128 128c54 0 102-36 120-86zM830 386c110 8 194 98 194 212 0 120-94 212-214 212s-212-92-212-212c0-26 4-52 12-76l-118 118h-70c-20 98-104 170-208 170-120 0-214-92-214-212s94-214 214-214h494l-86-86h-152v-84h188z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "motorcycle"
- ],
- "defaultCode": 59675,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 507,
- "ligatures": "motorcycle",
- "id": 503,
- "prevSize": 24,
- "name": "motorcycle",
- "code": 59675
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 503
- },
- {
- "icon": {
- "paths": [
- "M470 46v338h-300c0-174 132-318 300-338zM170 640v-170h684v170c0 188-154 342-342 342s-342-154-342-342zM554 46c168 20 300 164 300 338h-300v-338z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "mouse"
- ],
- "defaultCode": 58147,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 508,
- "ligatures": "mouse",
- "id": 504,
- "prevSize": 24,
- "name": "mouse",
- "code": 58147
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 504
- },
- {
- "icon": {
- "paths": [
- "M682 426l-170 172-170-172h84v-128h172v128h84zM810 640v-426h-598v426h172c0 70 58 128 128 128s128-58 128-128h170zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-598c-48 0-84-40-84-86v-596c0-46 36-86 84-86h598z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "move_to_inbox"
- ],
- "defaultCode": 57704,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 509,
- "ligatures": "move_to_inbox",
- "id": 505,
- "prevSize": 24,
- "name": "move_to_inbox",
- "code": 57704
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 505
- },
- {
- "icon": {
- "paths": [
- "M768 170h170v598c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h44l84 172h128l-84-172h84l86 172h128l-86-172h86l86 172h128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "movie_creation"
- ],
- "defaultCode": 58372,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 510,
- "ligatures": "movie, movie_creation",
- "id": 506,
- "prevSize": 24,
- "name": "movie_creation",
- "code": 58372
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 506
- },
- {
- "icon": {
- "paths": [
- "M722 510l88-40-88-40-40-88-40 88-88 40 88 40 40 88zM480 650l118-52-118-54-54-118-52 118-118 54 118 52 52 118zM768 170h170v598c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h44l84 128h128l-84-128h84l86 128h128l-86-128h86l86 128h128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "movie_filter"
- ],
- "defaultCode": 58426,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 511,
- "ligatures": "movie_filter",
- "id": 507,
- "prevSize": 24,
- "name": "movie_filter",
- "code": 58426
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 507
- },
- {
- "icon": {
- "paths": [
- "M938 296l-130 146c46 74 78 164 88 262h-86c-8-70-30-136-62-194l-172 194-170-172-256 256-64-64 320-320 170 172 122-140c-72-84-172-138-288-138-100 0-192 40-264 104l-60-60c88-78 200-128 324-128 138 0 258 60 346 158l122-136z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "multiline_chart"
- ],
- "defaultCode": 59103,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 512,
- "ligatures": "multiline_chart",
- "id": 508,
- "prevSize": 24,
- "name": "multiline_chart",
- "code": 59103
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 508
- },
- {
- "icon": {
- "paths": [
- "M512 128h256v170h-170v428c0 94-78 170-172 170s-170-76-170-170 76-172 170-172c32 0 60 10 86 24v-450z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "music_note"
- ],
- "defaultCode": 58373,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 513,
- "ligatures": "music_note",
- "id": 509,
- "prevSize": 24,
- "name": "music_note",
- "code": 58373
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 509
- },
- {
- "icon": {
- "paths": [
- "M342 640c0-70 58-128 128-128 14 0 28 4 42 8v-264h214v86h-128v300c0 70-58 126-128 126s-128-58-128-128zM896 810v-596h-768v596h768zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "music_video"
- ],
- "defaultCode": 57443,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 514,
- "ligatures": "music_video",
- "id": 510,
- "prevSize": 24,
- "name": "music_video",
- "code": 57443
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 510
- },
- {
- "icon": {
- "paths": [
- "M554 688v166h256v84h-596v-84h256v-168c-142-24-250-146-250-294 0-166 134-300 300-300s298 134 298 300c0 154-116 278-264 296z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "nature"
- ],
- "defaultCode": 58374,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 515,
- "ligatures": "nature",
- "id": 511,
- "prevSize": 24,
- "name": "nature",
- "code": 58374
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 511
- },
- {
- "icon": {
- "paths": [
- "M192 470c-36 0-64-28-64-64s28-64 64-64 64 28 64 64-28 64-64 64zM946 392c0 154-116 278-264 296v166h128v84h-682v-212h-42v-172c0-24 18-42 42-42h128c24 0 42 18 42 42v172h-42v128h342v-168c-142-24-250-146-250-294 0-166 134-300 300-300s298 134 298 300z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "nature_people"
- ],
- "defaultCode": 58375,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 516,
- "ligatures": "nature_people",
- "id": 512,
- "prevSize": 24,
- "name": "nature_people",
- "code": 58375
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 512
- },
- {
- "icon": {
- "paths": [
- "M512 86l320 780-30 30-290-128-290 128-30-30z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "navigation"
- ],
- "defaultCode": 58717,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 517,
- "ligatures": "navigation",
- "id": 513,
- "prevSize": 24,
- "name": "navigation",
- "code": 58717
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 513
- },
- {
- "icon": {
- "paths": [
- "M896 128l-322 768h-42l-112-292-292-112v-42z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "near_me"
- ],
- "defaultCode": 58729,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 518,
- "ligatures": "near_me",
- "id": 514,
- "prevSize": 24,
- "name": "near_me",
- "code": 58729
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 514
- },
- {
- "icon": {
- "paths": [
- "M938 938h-852l852-852v852z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "network_cell"
- ],
- "defaultCode": 57785,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 519,
- "ligatures": "network_cell",
- "id": 515,
- "prevSize": 24,
- "name": "network_cell",
- "code": 57785
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 515
- },
- {
- "icon": {
- "paths": [
- "M214 554c86-86 200-126 312-122l-56 122c-62 8-124 38-172 86zM726 640c-16-16-34-30-52-42l24-124c40 20 78 46 112 80zM896 470c-52-52-112-92-176-118l22-120c88 32 170 82 240 152zM42 384c160-160 380-220 586-184l-50 114c-160-20-328 34-450 156zM678 214c12 0 22 8 22 20l-104 550v2c-8 38-44 68-84 68-48 0-86-38-86-86 0-14 4-30 10-42l222-496c3.146-9.438 9.124-16 20-16z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "network_check"
- ],
- "defaultCode": 58944,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 520,
- "ligatures": "network_check",
- "id": 516,
- "prevSize": 24,
- "name": "network_check",
- "code": 58944
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 516
- },
- {
- "icon": {
- "paths": [
- "M896 682v-64c0-36-28-64-64-64s-64 28-64 64v64h128zM938 682c24 0 44 20 44 44v170c0 24-20 42-44 42h-212c-24 0-44-18-44-42v-170c0-24 20-44 44-44v-64c0-58 48-106 106-106s106 48 106 106v64zM832 426c-106 0-192 86-192 192v12c-26 24-42 58-42 96v128h-556l812-812v386c-8 0-14-2-22-2z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "network_locked"
- ],
- "defaultCode": 58906,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 521,
- "ligatures": "network_locked",
- "id": 517,
- "prevSize": 24,
- "name": "network_locked",
- "code": 58906
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 517
- },
- {
- "icon": {
- "paths": [
- "M872.5 466.828c0.568 0.445 1.068 0.837 1.5 1.172l-362 448-362-448c0.431-0.335 0.931-0.727 1.5-1.172l-135.5-168.828c20-14 210-170 496-170s476 156 496 170z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "network_wifi"
- ],
- "defaultCode": 57786,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 522,
- "ligatures": "network_wifi",
- "id": 518,
- "prevSize": 24,
- "name": "network_wifi",
- "code": 57786
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 518
- },
- {
- "icon": {
- "paths": [
- "M554 554v-256h-84v256h84zM554 726v-86h-84v86h84zM982 512l-104 118 14 158-154 34-80 136-146-62-146 62-80-134-154-36 14-158-104-118 104-120-14-156 154-34 80-136 146 62 146-62 80 136 154 34-14 158z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "new_releases"
- ],
- "defaultCode": 57393,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 523,
- "ligatures": "new_releases",
- "id": 519,
- "prevSize": 24,
- "name": "new_releases",
- "code": 57393
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 519
- },
- {
- "icon": {
- "paths": [
- "M470 790l170-172-170-170-44 42 128 128-128 128zM426 214v84h172v-84h-172zM598 128c46.645 0 84 38.997 84 86v84h172c46 0 84 40 84 86v470c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-470c0-46 38-86 84-86h172v-84c0-46 38-86 84-86h172z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "next_week"
- ],
- "defaultCode": 57706,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 524,
- "ligatures": "next_week",
- "id": 520,
- "prevSize": 24,
- "name": "next_week",
- "code": 57706
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 520
- },
- {
- "icon": {
- "paths": [
- "M768 256v512h-512v-512h170v86h-84v340h340v-340h-128v96c26 14 44 42 44 74 0 46-40 86-86 86s-86-40-86-86c0-32 18-60 44-74v-96c0-46 38-86 84-86h214zM854 854v-684h-684v684h684zM854 86c46 0 84 38 84 84v684c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-684c0-46 38-84 84-84h684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "nfc"
- ],
- "defaultCode": 57787,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 525,
- "ligatures": "nfc",
- "id": 521,
- "prevSize": 24,
- "name": "nfc",
- "code": 57787
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 521
- },
- {
- "icon": {
- "paths": [
- "M380 256v52l-78-78c12-106 100-188 210-188 118 0 214 96 214 214v86h42c46 0 86 38 86 84v356l-442-440h232v-86c0-72-60-132-132-132s-132 60-132 132zM896 930l-52 52-48-48c-8 2-18 4-28 4h-512c-46 0-86-38-86-84v-428c0-32 20-60 46-74l-88-86 52-52z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "no_encryption"
- ],
- "defaultCode": 58945,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 526,
- "ligatures": "no_encryption",
- "id": 522,
- "prevSize": 24,
- "name": "no_encryption",
- "code": 58945
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 522
- },
- {
- "icon": {
- "paths": [
- "M156 166l746 744-56 56-80-82c-12 6-26 12-40 12h-428c-46 0-84-40-84-86v-478l-112-112zM810 214v498l-484-484 100-100h300c46 0 84 40 84 86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "signal_cellular_no_sim"
- ],
- "defaultCode": 57806,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 527,
- "ligatures": "no_sim, signal_cellular_no_sim",
- "id": 523,
- "prevSize": 24,
- "name": "signal_cellular_no_sim",
- "code": 57806
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 523
- },
- {
- "icon": {
- "paths": [
- "M640 234v236h234zM938 426v342c0 46-38 84-84 84l-684 2c-46 0-84-40-84-86v-512c0-46 38-86 84-86h512z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "note"
- ],
- "defaultCode": 57455,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 528,
- "ligatures": "note",
- "id": 524,
- "prevSize": 24,
- "name": "note",
- "code": 57455
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 524
- },
- {
- "icon": {
- "paths": [
- "M554 384h236l-236-234v234zM682 682v-84h-128v-128h-84v128h-128v84h128v128h84v-128h128zM598 86l256 256v512c0 46-40 84-86 84h-512c-46 0-86-38-86-84l2-684c0-46 38-84 84-84h342z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "note_add"
- ],
- "defaultCode": 59548,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 529,
- "ligatures": "note_add",
- "id": 525,
- "prevSize": 24,
- "name": "note_add",
- "code": 59548
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 525
- },
- {
- "icon": {
- "paths": [
- "M768 682l86 86v42h-684v-42l86-86v-212c0-132 70-240 192-270v-30c0-36 28-64 64-64s64 28 64 64v30c122 30 192 140 192 270v212zM512 938c-48 0-86-38-86-84h172c0 46-40 84-86 84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "notifications"
- ],
- "defaultCode": 59380,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 530,
- "ligatures": "notifications",
- "id": 526,
- "prevSize": 24,
- "name": "notifications",
- "code": 59380
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 526
- },
- {
- "icon": {
- "paths": [
- "M512 938c-48 0-86-38-86-84h170c0 49.675-37.225 84-84 84zM768 470v212l86 86v42h-684v-42l86-86v-212c0-132 70-240 192-270v-30c0-36 28-64 64-64s64 28 64 64v30c122 30 192 140 192 270zM852 448c-6-114-64-212-150-274l60-60c102 78 170 198 176 334h-86zM324 174c-88 62-146 160-152 274h-86c6-136 74-256 176-334z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "notifications_active"
- ],
- "defaultCode": 59383,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 531,
- "ligatures": "notifications_active",
- "id": 527,
- "prevSize": 24,
- "name": "notifications_active",
- "code": 59383
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 527
- },
- {
- "icon": {
- "paths": [
- "M682 726v-256c0-106-64-192-170-192s-170 86-170 192v256h340zM768 682l86 86v42h-684v-42l86-86v-212c0-132 70-240 192-270v-30c0-36 28-64 64-64s64 28 64 64v30c122 30 192 140 192 270v212zM512 938c-46 0-86-38-86-84h172c0 46-40 84-86 84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "notifications_none"
- ],
- "defaultCode": 59381,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 532,
- "ligatures": "notifications_none",
- "id": 528,
- "prevSize": 24,
- "name": "notifications_none",
- "code": 59381
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 528
- },
- {
- "icon": {
- "paths": [
- "M768 626l-382-402c10-4 20-10 30-14h2l12-6c6-2 12-2 18-4v-30c0-36 28-64 64-64s64 28 64 64v30c122 30 192 138 192 270v156zM512 938c-48 0-86-36-86-84h172c0 48-38 84-86 84zM334 262c187.235 193.432 375.34 385.994 562 580l-54 54-86-86h-586v-42l86-86v-214c0-54 12-104 34-146l-120-118 54-56z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "notifications_off"
- ],
- "defaultCode": 59382,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 533,
- "ligatures": "notifications_off",
- "id": 529,
- "prevSize": 24,
- "name": "notifications_off",
- "code": 59382
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 529
- },
- {
- "icon": {
- "paths": [
- "M618 418v-76h-212v76h118l-118 146v76h212v-76h-118zM768 682l86 86v42h-684v-42l86-86v-212c0-130 70-240 192-270v-30c0-36 28-64 64-64s64 28 64 64v30c122 30 192 140 192 270v212zM512 938c-48 0-86-38-86-84h172c0 46-40 84-86 84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "notifications_paused"
- ],
- "defaultCode": 59384,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 534,
- "ligatures": "notifications_paused",
- "id": 530,
- "prevSize": 24,
- "name": "notifications_paused",
- "code": 59384
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 530
- },
- {
- "icon": {
- "paths": [
- "M440 598l286-286-60-60-226 226-82-82-60 60zM726 768v-86h-428v86h428zM512 86c234 0 426 192 426 426s-192 426-426 426-426-192-426-426 192-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "offline_pin"
- ],
- "defaultCode": 59658,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 535,
- "ligatures": "offline_pin",
- "id": 531,
- "prevSize": 24,
- "name": "offline_pin",
- "code": 59658
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 531
- },
- {
- "icon": {
- "paths": [
- "M682 470l-298 170v-342zM896 726v-512h-768v512h768zM896 128c46 0 86 38 86 86l-2 512c0 46-38 84-84 84h-214v86h-340v-86h-214c-48 0-86-38-86-84v-512c0-48 38-86 86-86h768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "ondemand_video"
- ],
- "defaultCode": 58938,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 536,
- "ligatures": "ondemand_video",
- "id": 532,
- "prevSize": 24,
- "name": "ondemand_video",
- "code": 58938
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 532
- },
- {
- "icon": {
- "paths": [
- "M256 598h512c0-86-28-138-76-186l-180-188-180 186c-48 48-76 102-76 188zM754 342c66 66 100 154 100 240s-34 176-100 242-154 100-242 100-176-34-242-100-100-156-100-242 34-174 100-240l242-242z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "opacity"
- ],
- "defaultCode": 59676,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 537,
- "ligatures": "opacity",
- "id": 533,
- "prevSize": 24,
- "name": "opacity",
- "code": 59676
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 533
- },
- {
- "icon": {
- "paths": [
- "M512 426l170 172h-128v256h-84v-256h-128zM810 170c48 0 86 40 86 86v512c0 46-40 86-86 86h-170v-86h170v-426h-596v426h170v86h-170c-48 0-86-40-86-86v-512c0-46 38-86 86-86h596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "open_in_browser"
- ],
- "defaultCode": 59549,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 538,
- "ligatures": "open_in_browser",
- "id": 534,
- "prevSize": 24,
- "name": "open_in_browser",
- "code": 59549
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 534
- },
- {
- "icon": {
- "paths": [
- "M598 640v128h128l-214 214-214-214h128v-128h172zM982 512l-214 214v-128h-128v-172h128v-128zM384 426v172h-128v128l-214-214 214-214v128h128zM426 384v-128h-128l214-214 214 214h-128v128h-172z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "open_with"
- ],
- "defaultCode": 59551,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 539,
- "ligatures": "open_with",
- "id": 535,
- "prevSize": 24,
- "name": "open_with",
- "code": 59551
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 535
- },
- {
- "icon": {
- "paths": [
- "M810 128c46 0 86 40 86 86v256h-214l44-172-172 44v-214h256zM726 726l-44-172h214v256c0 46-40 86-86 86h-256v-214zM342 554l-44 172 172-44v214h-256c-46 0-86-40-86-86v-256h214zM128 214c0-46 40-86 86-86h256v214l-172-44 44 172h-214v-256z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "pages"
- ],
- "defaultCode": 59385,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 540,
- "ligatures": "pages",
- "id": 536,
- "prevSize": 24,
- "name": "pages",
- "code": 59385
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 536
- },
- {
- "icon": {
- "paths": [
- "M716 776l60-60-124-124c18-30 30-64 30-102 0-106-86-192-192-192s-192 86-192 192 86 192 192 192c38 0 72-12 102-30zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h684zM490 384c58 0 108 48 108 106s-50 108-108 108-106-50-106-108 48-106 106-106z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "pageview"
- ],
- "defaultCode": 59552,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 541,
- "ligatures": "pageview",
- "id": 537,
- "prevSize": 24,
- "name": "pageview",
- "code": 59552
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 537
- },
- {
- "icon": {
- "paths": [
- "M982 234v620c0 94-78 170-172 170h-310c-46 0-90-18-122-50l-336-342s54-52 56-52c10-8 22-12 34-12 10 0 18 2 26 6 2 0 184 104 184 104v-508c0-36 28-64 64-64s64 28 64 64v300h42v-406c0-36 28-64 64-64s64 28 64 64v406h42v-364c0-36 28-64 64-64s64 28 64 64v364h44v-236c0-36 28-64 64-64s64 28 64 64z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "pan_tool"
- ],
- "defaultCode": 59685,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 542,
- "ligatures": "pan_tool",
- "id": 538,
- "prevSize": 24,
- "name": "pan_tool",
- "code": 59685
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 538
- },
- {
- "icon": {
- "paths": [
- "M362 534l-148 192h596l-192-256-148 192zM982 768c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-512c0-46 40-86 86-86h768c46 0 86 40 86 86v512z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "panorama"
- ],
- "defaultCode": 58379,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 543,
- "ligatures": "panorama",
- "id": 539,
- "prevSize": 24,
- "name": "panorama",
- "code": 58379
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 539
- },
- {
- "icon": {
- "paths": [
- "M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "radio_button_unchecked"
- ],
- "defaultCode": 59446,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 544,
- "ligatures": "panorama_fish_eye, radio_button_unchecked",
- "id": 540,
- "prevSize": 24,
- "name": "radio_button_unchecked",
- "code": 59446
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 540
- },
- {
- "icon": {
- "paths": [
- "M914 170c14 0 24 10 24 28v628c0 18-10 28-24 28-4 0-8-2-12-4-126-46-258-70-390-70s-264 24-390 70c-4 2-8 4-12 4-14 0-24-12-24-28v-628c0-18 10-28 24-28 4 0 8 2 12 4 126 46 258 70 390 70s264-24 390-70c4-2 8-4 12-4zM854 280c-110 34-226 48-342 48s-232-16-342-48v464c110-32 226-48 342-48s232 16 342 48v-464z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "panorama_horizontal"
- ],
- "defaultCode": 58381,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 545,
- "ligatures": "panorama_horizontal",
- "id": 541,
- "prevSize": 24,
- "name": "panorama_horizontal",
- "code": 58381
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 541
- },
- {
- "icon": {
- "paths": [
- "M280 854h464c-32-110-48-226-48-342s16-232 48-342h-464c32 110 48 226 48 342s-16 232-48 342zM850 902c2 4 4 8 4 12 0 14-12 24-28 24h-628c-18 0-28-10-28-24 0-4 2-8 4-12 46-126 70-258 70-390s-24-264-70-390c-2-4-4-8-4-12 0-14 10-24 28-24h628c18 0 28 10 28 24 0 4-2 8-4 12-46 126-70 258-70 390s24 264 70 390z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "panorama_vertical"
- ],
- "defaultCode": 58382,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 546,
- "ligatures": "panorama_vertical",
- "id": 542,
- "prevSize": 24,
- "name": "panorama_vertical",
- "code": 58382
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 542
- },
- {
- "icon": {
- "paths": [
- "M512 170c116 0 224 12 340 32l38 6 12 38c24 88 36 178 36 266s-12 178-36 266l-12 38-38 6c-116 20-224 32-340 32s-224-12-340-32l-38-6-12-38c-24-88-36-178-36-266s12-178 36-266l12-38 38-6c116-20 224-32 340-32zM512 256c-104 0-202 10-312 28-20 76-30 152-30 228s10 152 30 228c110 18 208 28 312 28s202-10 312-28c20-76 30-152 30-228s-10-152-30-228c-110-18-208-28-312-28z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "panorama_wide_angle"
- ],
- "defaultCode": 58383,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 547,
- "ligatures": "panorama_wide_angle",
- "id": 543,
- "prevSize": 24,
- "name": "panorama_wide_angle",
- "code": 58383
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 543
- },
- {
- "icon": {
- "paths": [
- "M512 726c118 0 214-96 214-214 0-14-2-28-4-42h-90c4 14 8 28 8 42 0 70-58 128-128 128h-170c40 52 100 86 170 86zM512 298c-118 0-214 96-214 214 0 14 2 28 4 42h90c-4-14-8-28-8-42 0-70 58-128 128-128h170c-40-52-100-86-170-86zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h136l78-84h256l78 84h136z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "party_mode"
- ],
- "defaultCode": 59386,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 548,
- "ligatures": "party_mode",
- "id": 544,
- "prevSize": 24,
- "name": "party_mode",
- "code": 59386
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 544
- },
- {
- "icon": {
- "paths": [
- "M598 214h170v596h-170v-596zM256 810v-596h170v596h-170z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "pause"
- ],
- "defaultCode": 57396,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 549,
- "ligatures": "pause",
- "id": 545,
- "prevSize": 24,
- "name": "pause",
- "code": 57396
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 545
- },
- {
- "icon": {
- "paths": [
- "M640 682v-340h-86v340h86zM470 682v-340h-86v340h86zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "pause_circle_filled"
- ],
- "defaultCode": 57397,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 550,
- "ligatures": "pause_circle_filled",
- "id": 546,
- "prevSize": 24,
- "name": "pause_circle_filled",
- "code": 57397
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 546
- },
- {
- "icon": {
- "paths": [
- "M554 682v-340h86v340h-86zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM384 682v-340h86v340h-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "pause_circle_outline"
- ],
- "defaultCode": 57398,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 551,
- "ligatures": "pause_circle_outline",
- "id": 547,
- "prevSize": 24,
- "name": "pause_circle_outline",
- "code": 57398
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 547
- },
- {
- "icon": {
- "paths": [
- "M704 278c-46 0-86 38-86 84s40 86 86 86 86-40 86-86-40-84-86-84zM704 512c-82 0-150-68-150-150s68-148 150-148 150 66 150 148-68 150-150 150zM320 278c-46 0-86 38-86 84s40 86 86 86 86-40 86-86-40-84-86-84zM320 512c-82 0-150-68-150-150s68-148 150-148 150 66 150 148-68 150-150 150zM918 746v-52c0-24-110-76-214-76-46 0-90 12-128 24 14 16 22 32 22 52v52h320zM534 746v-52c0-24-110-76-214-76s-214 52-214 76v52h428zM704 554c92 0 278 48 278 140v116h-940v-116c0-92 186-140 278-140 52 0 130 16 192 44 62-28 140-44 192-44z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "people_outline"
- ],
- "defaultCode": 59388,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 552,
- "ligatures": "people_outline",
- "id": 548,
- "prevSize": 24,
- "name": "people_outline",
- "code": 59388
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 548
- },
- {
- "icon": {
- "paths": [
- "M598 554v-170c0-46-40-86-86-86s-86 40-86 86v170c0 46 40 86 86 86s86-40 86-86zM854 214c46 0 84 38 84 84v512c0 46-38 86-84 86h-300v-90c120-20 214-126 214-252h-86c0 94-76 172-170 172s-170-78-170-172h-86c0 126 94 232 214 252v90h-300c-46 0-84-40-84-86v-512c0-46 38-84 84-84h136l78-86h256l78 86h136z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "perm_camera_mic"
- ],
- "defaultCode": 59554,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 553,
- "ligatures": "perm_camera_mic",
- "id": 549,
- "prevSize": 24,
- "name": "perm_camera_mic",
- "code": 59554
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 549
- },
- {
- "icon": {
- "paths": [
- "M768 768v-42c0-86-170-132-256-132s-256 46-256 132v42h512zM512 256c-70 0-128 58-128 128s58 128 128 128 128-58 128-128-58-128-128-128zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h42v-86h86v86h340v-86h86v86h42z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "perm_contact_calendar"
- ],
- "defaultCode": 59555,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 554,
- "ligatures": "perm_contact_calendar",
- "id": 550,
- "prevSize": 24,
- "name": "perm_contact_calendar",
- "code": 59555
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 550
- },
- {
- "icon": {
- "paths": [
- "M810 874c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM968 832l46 34c4 4 4 10 2 14l-42 74c-2 4-10 8-14 6l-52-22c-10 8-24 14-36 20l-8 58c0 6-6 8-12 8h-84c-6 0-12-2-12-8l-8-58c-14-6-24-12-36-20l-52 22c-6 2-12-2-14-6l-42-74c-2-4-2-10 2-14l46-34c0-6-2-14-2-22s2-14 2-20l-46-36c-4-4-4-10-2-14l42-74c2-4 10-6 14-4l52 22c12-8 24-16 36-22l8-56c0-6 6-8 12-8h84c6 0 12 2 12 8l8 56c14 6 24 14 36 22l52-22c6-2 12 0 14 4l42 74c2 4 2 10-2 14l-46 36c2 6 2 12 2 20s-2 16-2 22zM810 490c-176 0-320 144-320 320 0 14 2 30 4 44h-494l854-854-2 494c-14-2-28-4-42-4z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "perm_data_setting"
- ],
- "defaultCode": 59556,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 555,
- "ligatures": "perm_data_setting",
- "id": 551,
- "prevSize": 24,
- "name": "perm_data_setting",
- "code": 59556
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 551
- },
- {
- "icon": {
- "paths": [
- "M726 810v-596h-428v596h428zM726 44c46 0 84 38 84 84v768c0 46-38 86-84 86h-428c-46 0-84-40-84-86v-768c0-46 38-86 84-86zM554 470v256h-84v-256h84zM554 298v86h-84v-86h84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "perm_device_information"
- ],
- "defaultCode": 59557,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 556,
- "ligatures": "perm_device_information",
- "id": 552,
- "prevSize": 24,
- "name": "perm_device_information",
- "code": 59557
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 552
- },
- {
- "icon": {
- "paths": [
- "M512 554c114 0 342 58 342 172v128h-684v-128c0-114 228-172 342-172zM512 170c94 0 170 78 170 172s-76 170-170 170-170-76-170-170 76-172 170-172zM512 636c-126 0-260 62-260 90v46h520v-46c0-28-134-90-260-90zM512 252c-50 0-90 40-90 90s40 88 90 88 90-38 90-88-40-90-90-90z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "person_outline"
- ],
- "defaultCode": 59391,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 557,
- "ligatures": "perm_identity, person_outline",
- "id": 553,
- "prevSize": 24,
- "name": "person_outline",
- "code": 59391
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 553
- },
- {
- "icon": {
- "paths": [
- "M298 640h598l-150-192-106 128-150-192zM938 170c46 0 86 40 86 86v426c0 46-40 86-86 86h-682c-46 0-86-40-86-86l2-512c0-46 38-84 84-84h256l86 84h340zM86 256v598h768v84h-768c-46 0-86-38-86-84v-598h86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "perm_media"
- ],
- "defaultCode": 59559,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 558,
- "ligatures": "perm_media",
- "id": 554,
- "prevSize": 24,
- "name": "perm_media",
- "code": 59559
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 554
- },
- {
- "icon": {
- "paths": [
- "M512 128h384v298h-256l-128 128v-426zM854 662c24 0 42 18 42 42v150c0 24-18 42-42 42-400 0-726-326-726-726 0-24 18-42 42-42h150c24 0 42 18 42 42 0 54 8 104 24 152 4 14 2 32-10 44l-94 94c62 120 162 220 282 282l94-94c12-12 30-14 44-10 48 16 98 24 152 24z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "perm_phone_msg"
- ],
- "defaultCode": 59560,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 559,
- "ligatures": "perm_phone_msg",
- "id": 555,
- "prevSize": 24,
- "name": "perm_phone_msg",
- "code": 59560
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 555
- },
- {
- "icon": {
- "paths": [
- "M470 342h84v-86h-84v86zM554 682v-256h-84v256h84zM512 128c216 0 378 80 512 182l-512 628-512-630c134-102 296-180 512-180z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "perm_scan_wifi"
- ],
- "defaultCode": 59561,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 560,
- "ligatures": "perm_scan_wifi",
- "id": 556,
- "prevSize": 24,
- "name": "perm_scan_wifi",
- "code": 59561
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 556
- },
- {
- "icon": {
- "paths": [
- "M512 598c114 0 342 56 342 170v86h-684v-86c0-114 228-170 342-170zM512 512c-94 0-170-76-170-170s76-172 170-172 170 78 170 172-76 170-170 170z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "person"
- ],
- "defaultCode": 59389,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 561,
- "ligatures": "person",
- "id": 557,
- "prevSize": 24,
- "name": "person",
- "code": 59389
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 557
- },
- {
- "icon": {
- "paths": [
- "M640 598c114 0 342 56 342 170v86h-684v-86c0-114 228-170 342-170zM256 426h128v86h-128v128h-86v-128h-128v-86h128v-128h86v128zM640 512c-94 0-170-76-170-170s76-172 170-172 170 78 170 172-76 170-170 170z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "person_add"
- ],
- "defaultCode": 59390,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 562,
- "ligatures": "person_add",
- "id": 558,
- "prevSize": 24,
- "name": "person_add",
- "code": 59390
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 558
- },
- {
- "icon": {
- "paths": [
- "M768 682v-38c0-86-170-132-256-132s-256 46-256 132v38h512zM512 226c-64 0-116 52-116 116s52 114 116 114 116-50 116-114-52-116-116-116zM810 86c46 0 86 38 86 84v598c0 46-40 86-86 86h-170l-128 128-128-128h-170c-48 0-86-40-86-86v-598c0-46 38-84 86-84h596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "person_pin"
- ],
- "defaultCode": 58714,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 563,
- "ligatures": "person_pin",
- "id": 559,
- "prevSize": 24,
- "name": "person_pin",
- "code": 58714
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 559
- },
- {
- "icon": {
- "paths": [
- "M512 598c72 0 134-36 170-92 0-56-114-88-170-88s-170 32-170 88c36 56 98 92 170 92zM512 170c-46 0-86 40-86 86 0 48 40 86 86 86s86-38 86-86c0-46-40-86-86-86zM512 86c164 0 298 134 298 298 0 224-298 554-298 554s-298-330-298-554c0-164 134-298 298-298z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "person_pin_circle"
- ],
- "defaultCode": 58730,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 564,
- "ligatures": "person_pin_circle",
- "id": 560,
- "prevSize": 24,
- "name": "person_pin_circle",
- "code": 58730
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 560
- },
- {
- "icon": {
- "paths": [
- "M896 726v-512h-768v512h768zM896 128c46 0 86 38 86 86l-2 512c0 46-38 84-84 84h-214v86h-340v-86h-214c-48 0-86-38-86-84v-512c0-48 38-86 86-86h768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "personal_video"
- ],
- "defaultCode": 58939,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 565,
- "ligatures": "personal_video",
- "id": 561,
- "prevSize": 24,
- "name": "personal_video",
- "code": 58939
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 561
- },
- {
- "icon": {
- "paths": [
- "M740 634c56 56 126 116 112 204-12 44-44 88-100 100-32 6-130-18-236-18h-8c-106 0-204 24-236 18-56-12-88-56-100-100-12-86 56-148 112-204 38-44 68-80 106-124 20-24 44-46 74-56 4-2 10-4 14-4 12-2 22-2 34-2s24 0 34 2c4 0 10 2 14 4 30 10 54 32 74 56 38 44 68 80 106 124zM726 406c0-58 48-108 106-108s106 50 106 108-48 106-106 106-106-48-106-106zM534 234c0-58 48-106 106-106s106 48 106 106-48 108-106 108-106-50-106-108zM278 234c0-58 48-106 106-106s106 48 106 106-48 108-106 108-106-50-106-108zM86 406c0-58 48-108 106-108s106 50 106 108-48 106-106 106-106-48-106-106z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "pets"
- ],
- "defaultCode": 59677,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 566,
- "ligatures": "pets",
- "id": 562,
- "prevSize": 24,
- "name": "pets",
- "code": 59677
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 562
- },
- {
- "icon": {
- "paths": [
- "M736 768v-598h-448v598h448zM598 896v-42h-172v42h172zM682 42c70 0 128 58 128 128v684c0 70-58 128-128 128h-340c-70 0-128-58-128-128v-684c0-70 58-128 128-128h340z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "phone_android"
- ],
- "defaultCode": 58148,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 567,
- "ligatures": "phone_android",
- "id": 563,
- "prevSize": 24,
- "name": "phone_android",
- "code": 58148
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 563
- },
- {
- "icon": {
- "paths": [
- "M854 662c24 0 42 18 42 42v150c0 24-18 42-42 42-400 0-726-326-726-726 0-24 18-42 42-42h150c24 0 42 18 42 42 0 54 8 104 24 152 4 14 2 32-10 44l-94 94c62 122 162 220 282 282l94-94c12-12 30-14 44-10 48 16 98 24 152 24zM768 308v80l40-40zM768 124v80l40-40zM628 406l-30-30 118-120-118-120 30-30 98 98v-162h20l122 122-92 92 92 92-122 122h-20v-162z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "phone_bluetooth_speaker"
- ],
- "defaultCode": 58907,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 568,
- "ligatures": "phone_bluetooth_speaker",
- "id": 564,
- "prevSize": 24,
- "name": "phone_bluetooth_speaker",
- "code": 58907
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 564
- },
- {
- "icon": {
- "paths": [
- "M854 662c24 0 42 18 42 42v150c0 24-18 42-42 42-400 0-726-326-726-726 0-24 18-42 42-42h150c24 0 42 18 42 42 0 54 8 104 24 152 4 14 2 32-10 44l-94 94c62 122 162 220 282 282l94-94c12-12 30-14 44-10 48 16 98 24 152 24zM768 470v-128h-170v-172h170v-128l214 214z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "phone_forwarded"
- ],
- "defaultCode": 58908,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 569,
- "ligatures": "phone_forwarded",
- "id": 565,
- "prevSize": 24,
- "name": "phone_forwarded",
- "code": 58908
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 565
- },
- {
- "icon": {
- "paths": [
- "M640 512c0-70-58-128-128-128v-86c118 0 214 96 214 214h-86zM810 512c0-166-132-298-298-298v-86c212 0 384 172 384 384h-86zM854 662c24 0 42 18 42 42v150c0 24-18 42-42 42-400 0-726-326-726-726 0-24 18-42 42-42h150c24 0 42 18 42 42 0 54 8 104 24 152 4 14 2 32-10 44l-94 94c62 122 162 220 282 282l94-94c12-12 30-14 44-10 48 16 98 24 152 24z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "phone_in_talk"
- ],
- "defaultCode": 58909,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 570,
- "ligatures": "phone_in_talk",
- "id": 566,
- "prevSize": 24,
- "name": "phone_in_talk",
- "code": 58909
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 566
- },
- {
- "icon": {
- "paths": [
- "M682 768v-598h-384v598h384zM490 938c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM662 42c58 0 106 50 106 108v724c0 58-48 108-106 108h-342c-58 0-106-50-106-108v-724c0-58 48-108 106-108h342z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "phone_iphone"
- ],
- "defaultCode": 58149,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 571,
- "ligatures": "phone_iphone",
- "id": 567,
- "prevSize": 24,
- "name": "phone_iphone",
- "code": 58149
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 567
- },
- {
- "icon": {
- "paths": [
- "M820 170v-20c0-40-34-74-74-74s-72 34-72 74v20h146zM854 170c24 0 42 20 42 44v170c0 24-18 42-42 42h-214c-24 0-42-18-42-42v-170c0-24 18-44 42-44v-20c0-58 48-108 106-108s108 50 108 108v20zM854 662c24 0 42 18 42 42v150c0 24-18 42-42 42-400 0-726-326-726-726 0-24 18-42 42-42h150c24 0 42 18 42 42 0 54 8 104 24 152 4 14 2 32-10 44l-94 94c62 122 162 220 282 282l94-94c12-12 30-14 44-10 48 16 98 24 152 24z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "phone_locked"
- ],
- "defaultCode": 58910,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 572,
- "ligatures": "phone_locked",
- "id": 568,
- "prevSize": 24,
- "name": "phone_locked",
- "code": 58910
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 568
- },
- {
- "icon": {
- "paths": [
- "M1012 712c8 8 12 18 12 30s-4 22-12 30l-106 106c-8 8-18 12-30 12s-22-4-30-12c-34-32-72-60-114-80-14-6-24-22-24-38v-132c-62-20-128-30-196-30s-134 10-196 30v132c0 18-10 34-24 40-42 20-80 46-114 78-8 8-18 12-30 12s-22-4-30-12l-106-106c-8-8-12-18-12-30s4-22 12-30c130-124 306-200 500-200s370 76 500 200zM278 234v150h-64v-256h256v64h-150l192 192 256-256 42 42-298 300z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "phone_missed"
- ],
- "defaultCode": 58911,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 573,
- "ligatures": "phone_missed",
- "id": 569,
- "prevSize": 24,
- "name": "phone_missed",
- "code": 58911
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 569
- },
- {
- "icon": {
- "paths": [
- "M810 128h86v298h-86v-298zM854 662c24 0 42 18 42 42v150c0 24-18 42-42 42-400 0-726-326-726-726 0-24 18-42 42-42h150c24 0 42 18 42 42 0 54 8 104 24 152 4 14 2 32-10 44l-94 94c62 122 162 220 282 282l94-94c12-12 30-14 44-10 48 16 98 24 152 24zM726 128v298h-86v-298h86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "phone_paused"
- ],
- "defaultCode": 58912,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 574,
- "ligatures": "phone_paused",
- "id": 570,
- "prevSize": 24,
- "name": "phone_paused",
- "code": 58912
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 570
- },
- {
- "icon": {
- "paths": [
- "M810 42c46 0 86 40 86 86v768c0 46-40 86-86 86h-426c-46 0-86-40-86-86v-128h86v86h426v-684h-426v86h-86v-128c0-46 40-86 86-86h426zM554 350l-170 170 170 172-42 42-170-170-172 170-42-42 170-172-170-170 42-42 172 170 170-170z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "phonelink_erase"
- ],
- "defaultCode": 57563,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 575,
- "ligatures": "phonelink_erase",
- "id": 571,
- "prevSize": 24,
- "name": "phonelink_erase",
- "code": 57563
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 571
- },
- {
- "icon": {
- "paths": [
- "M406 470v-64c0-34-30-56-64-56s-64 22-64 56v64h128zM460 470c26 0 52 24 52 54v150c0 26-26 52-56 52h-234c-26 0-52-26-52-56v-150c0-26 26-50 52-50v-64c0-60 60-108 120-108s118 48 118 108v64zM810 42c46 0 86 40 86 86v768c0 46-40 86-86 86h-426c-46 0-86-40-86-86v-128h86v86h426v-684h-426v86h-86v-128c0-46 40-86 86-86h426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "phonelink_lock"
- ],
- "defaultCode": 57564,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 576,
- "ligatures": "phonelink_lock",
- "id": 572,
- "prevSize": 24,
- "name": "phonelink_lock",
- "code": 57564
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 572
- },
- {
- "icon": {
- "paths": [
- "M982 342c24 0 42 18 42 42v426c0 24-18 44-42 44h-8l-128-128h92v-300h-170v222l-86-86v-178c0-24 20-42 44-42h256zM170 268v458h458zM82 70c276.214 276.452 551.97 553.364 828 830l-54 54-100-100h-756v-128h86v-470c0-20 8-40 20-54l-78-78zM938 256h-562l-86-86h648v86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "phonelink_off"
- ],
- "defaultCode": 58151,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 577,
- "ligatures": "phonelink_off",
- "id": 573,
- "prevSize": 24,
- "name": "phonelink_off",
- "code": 58151
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 573
- },
- {
- "icon": {
- "paths": [
- "M598 854v-684h-428v684h428zM598 42c46 0 84 40 84 86v768c0 46-38 86-84 86h-428c-46 0-84-40-84-86v-768c0-46 38-86 84-86h428zM768 418c52 56 52 132 0 184l-42-44c22-30 22-68 0-98zM858 328c106 102 106 266 0 364l-44-44c76-82 76-200 0-276z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "phonelink_ring"
- ],
- "defaultCode": 57565,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 578,
- "ligatures": "phonelink_ring",
- "id": 574,
- "prevSize": 24,
- "name": "phonelink_ring",
- "code": 57565
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 574
- },
- {
- "icon": {
- "paths": [
- "M810 42c46 0 86 40 86 86v768c0 46-40 86-86 86h-426c-46 0-86-40-86-86v-128h86v86h426v-684h-426v86h-86v-128c0-46 40-86 86-86h426zM342 598c46 0 84-40 84-86s-38-86-84-86-86 40-86 86 40 86 86 86zM504 534l46 38c4 4 8 8 4 12l-42 74c-4 4-8 4-12 4l-56-22c-12 8-26 18-38 22l-10 54c-4 4-8 10-12 10h-86c-4 0-12-6-8-10l-8-54c-12-4-26-14-38-22l-60 18c-4 4-10-2-14-6l-42-72c0-4 0-8 4-16l48-34v-44l-48-34c-4-4-8-8-4-12l42-74c4-4 10-4 14-4l54 22c12-8 28-18 40-22l8-54c4-4 8-10 12-10h86c8 0 12 6 12 10l10 54c12 4 26 14 38 22l56-18c4-4 8 2 12 6l42 72c0 4 0 8-4 12l-46 34v44z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "phonelink_setup"
- ],
- "defaultCode": 57566,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 579,
- "ligatures": "phonelink_setup",
- "id": 575,
- "prevSize": 24,
- "name": "phonelink_setup",
- "code": 57566
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 575
- },
- {
- "icon": {
- "paths": [
- "M256 810h512l-164-218-128 164-92-110zM256 170v342l106-64 108 64v-342h-214zM768 86c46 0 86 38 86 84v684c0 46-40 84-86 84h-512c-46 0-86-38-86-84v-684c0-46 40-84 86-84h512z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "photo_album"
- ],
- "defaultCode": 58385,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 580,
- "ligatures": "photo_album",
- "id": 576,
- "prevSize": 24,
- "name": "photo_album",
- "code": 58385
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 576
- },
- {
- "icon": {
- "paths": [
- "M566 458l116 54-116 54-54 116-54-116-116-54 116-54 54-116zM726 426l-40-88-88-40 88-40 40-88 40 88 88 40-88 40zM812 426h84v384c0 46-38 86-84 86h-598c-46 0-86-40-86-86v-596c0-46 40-86 86-86h384v86h-384v596h598v-384z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "photo_filter"
- ],
- "defaultCode": 58427,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 581,
- "ligatures": "photo_filter",
- "id": 577,
- "prevSize": 24,
- "name": "photo_filter",
- "code": 58427
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 577
- },
- {
- "icon": {
- "paths": [
- "M214 726h596l-192-256-148 192-108-128zM896 128c42 0 86 44 86 86v596c0 42-44 86-86 86h-768c-46 0-86-40-86-86v-596c0-42 44-86 86-86h768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "photo_size_select_actual"
- ],
- "defaultCode": 58418,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 582,
- "ligatures": "photo_size_select_actual",
- "id": 578,
- "prevSize": 24,
- "name": "photo_size_select_actual",
- "code": 58418
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 578
- },
- {
- "icon": {
- "paths": [
- "M128 810h426l-136-182-106 138-78-92zM42 470h598v426h-512c-46 0-86-40-86-86v-340zM214 128h84v86h-84v-86zM384 128h86v86h-86v-86zM128 128v86h-86c0-42 44-86 86-86zM726 810h84v86h-84v-86zM726 128h84v86h-84v-86zM42 298h86v86h-86v-86zM896 128c42 0 86 44 86 86h-86v-86zM896 298h86v86h-86v-86zM554 128h86v86h-86v-86zM982 810c0 42-44 86-86 86v-86h86zM896 470h86v84h-86v-84zM896 640h86v86h-86v-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "photo_size_select_large"
- ],
- "defaultCode": 58419,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 583,
- "ligatures": "photo_size_select_large",
- "id": 579,
- "prevSize": 24,
- "name": "photo_size_select_large",
- "code": 58419
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 579
- },
- {
- "icon": {
- "paths": [
- "M298 128v86h-84v-86h84zM470 128v86h-86v-86h86zM128 470v84h-86v-84h86zM128 128v86h-86c0-42 44-86 86-86zM810 810v86h-84v-86h84zM810 128v86h-84v-86h84zM640 810v86h-86v-86h86zM128 298v86h-86v-86h86zM128 896c-46 0-86-40-86-86v-170h428v256h-342zM896 128c42 0 86 44 86 86h-86v-86zM982 298v86h-86v-86h86zM640 128v86h-86v-86h86zM982 810c0 42-44 86-86 86v-86h86zM982 470v84h-86v-84h86zM982 640v86h-86v-86h86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "photo_size_select_small"
- ],
- "defaultCode": 58420,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 584,
- "ligatures": "photo_size_select_small",
- "id": 580,
- "prevSize": 24,
- "name": "photo_size_select_small",
- "code": 58420
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 580
- },
- {
- "icon": {
- "paths": [
- "M598 490v-128h42v128h-42zM170 256v598h598v84h-598c-46 0-84-38-84-84v-598h84zM384 406v-44h42v44h-42zM874 362v-64h-128v256h64v-84h64v-64h-64v-44h64zM704 490v-128c0-36-28-64-64-64h-106v256h106c36 0 64-28 64-64zM490 406v-44c0-36-28-64-64-64h-106v256h64v-84h42c36 0 64-28 64-64zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-512c-46 0-86-40-86-86v-512c0-46 40-84 86-84h512z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "picture_as_pdf"
- ],
- "defaultCode": 58389,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 585,
- "ligatures": "picture_as_pdf",
- "id": 581,
- "prevSize": 24,
- "name": "picture_as_pdf",
- "code": 58389
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 581
- },
- {
- "icon": {
- "paths": [
- "M896 812v-600h-768v600h768zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768zM810 298v256h-340v-256h340z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "picture_in_picture"
- ],
- "defaultCode": 59562,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 586,
- "ligatures": "picture_in_picture",
- "id": 582,
- "prevSize": 24,
- "name": "picture_in_picture",
- "code": 59562
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 582
- },
- {
- "icon": {
- "paths": [
- "M896 812v-600h-768v600h768zM982 810c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-598c0-46 40-84 86-84h768c46 0 86 38 86 84v598zM810 470v256h-340v-256h340z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "picture_in_picture_alt"
- ],
- "defaultCode": 59665,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 587,
- "ligatures": "picture_in_picture_alt",
- "id": 583,
- "prevSize": 24,
- "name": "picture_in_picture_alt",
- "code": 59665
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 583
- },
- {
- "icon": {
- "paths": [
- "M556 556h382c-20 202-180 362-382 382v-382zM556 86c202 20 362 180 382 382h-382v-382zM470 86v852c-216-22-384-204-384-426s168-404 384-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "pie_chart"
- ],
- "defaultCode": 59076,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 588,
- "ligatures": "pie_chart",
- "id": 584,
- "prevSize": 24,
- "name": "pie_chart",
- "code": 59076
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 584
- },
- {
- "icon": {
- "paths": [
- "M554 850c154-20 276-142 296-296h-296v296zM170 512c0 174 132 316 300 338v-676c-168 20-300 164-300 338zM554 174v296h296c-20-154-142-276-296-296zM512 86c234 0 426 192 426 426s-192 426-426 426-426-192-426-426 192-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "pie_chart_outlined"
- ],
- "defaultCode": 59077,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 589,
- "ligatures": "pie_chart_outlined",
- "id": 585,
- "prevSize": 24,
- "name": "pie_chart_outlined",
- "code": 59077
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 585
- },
- {
- "icon": {
- "paths": [
- "M214 854h596v84h-596v-84zM426 342c0 46 40 84 86 84 48 0 86-38 86-84s-40-86-86-86-86 40-86 86zM768 342c0 192-256 468-256 468s-256-276-256-468c0-142 114-256 256-256s256 114 256 256z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "pin_drop"
- ],
- "defaultCode": 58718,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 590,
- "ligatures": "pin_drop",
- "id": 586,
- "prevSize": 24,
- "name": "pin_drop",
- "code": 58718
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 586
- },
- {
- "icon": {
- "paths": [
- "M342 214l468 298-468 298v-596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "play_arrow"
- ],
- "defaultCode": 57399,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 591,
- "ligatures": "play_arrow",
- "id": 587,
- "prevSize": 24,
- "name": "play_arrow",
- "code": 57399
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 587
- },
- {
- "icon": {
- "paths": [
- "M426 704l256-192-256-192v384zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "play_circle_filled"
- ],
- "defaultCode": 57400,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 592,
- "ligatures": "play_circle_filled",
- "id": 588,
- "prevSize": 24,
- "name": "play_circle_filled",
- "code": 57400
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 588
- },
- {
- "icon": {
- "paths": [
- "M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM426 704v-384l256 192z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "play_circle_outline"
- ],
- "defaultCode": 57401,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 593,
- "ligatures": "play_circle_outline",
- "id": 589,
- "prevSize": 24,
- "name": "play_circle_outline",
- "code": 57401
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 589
- },
- {
- "icon": {
- "paths": [
- "M256 598h86c0 94 76 170 170 170s170-76 170-170h86c0 142-114 256-256 256s-256-114-256-256zM470 214h84v238h150l-192 192-192-192h150v-238z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "play_for_work"
- ],
- "defaultCode": 59654,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 594,
- "ligatures": "play_for_work",
- "id": 590,
- "prevSize": 24,
- "name": "play_for_work",
- "code": 59654
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 590
- },
- {
- "icon": {
- "paths": [
- "M86 682v-84h340v84h-340zM768 598h170v84h-170v172h-86v-172h-170v-84h170v-172h86v172zM598 256v86h-512v-86h512zM598 426v86h-512v-86h512z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "playlist_add"
- ],
- "defaultCode": 57403,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 595,
- "ligatures": "playlist_add",
- "id": 591,
- "prevSize": 24,
- "name": "playlist_add",
- "code": 57403
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 591
- },
- {
- "icon": {
- "paths": [
- "M918 490l64 64-298 300-194-192 64-64 130 128zM86 682v-84h340v84h-340zM598 256v86h-512v-86h512zM598 426v86h-512v-86h512z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "playlist_add_check"
- ],
- "defaultCode": 57445,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 596,
- "ligatures": "playlist_add_check",
- "id": 592,
- "prevSize": 24,
- "name": "playlist_add_check",
- "code": 57445
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 592
- },
- {
- "icon": {
- "paths": [
- "M726 554l212 128-212 128v-256zM86 640v-86h554v86h-554zM810 214v84h-724v-84h724zM810 384v86h-724v-86h724z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "playlist_play"
- ],
- "defaultCode": 57439,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 597,
- "ligatures": "playlist_play",
- "id": 593,
- "prevSize": 24,
- "name": "playlist_play",
- "code": 57439
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 593
- },
- {
- "icon": {
- "paths": [
- "M618 260l192-46v554h-84v-452l-108 22v-78zM426 342v170h172v86h-172v170h-84v-170h-172v-86h172v-170h84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "plus_one"
- ],
- "defaultCode": 59392,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 598,
- "ligatures": "plus_one",
- "id": 594,
- "prevSize": 24,
- "name": "plus_one",
- "code": 59392
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 594
- },
- {
- "icon": {
- "paths": [
- "M810 170l192 342-192 342h-170l192-342-112-198-336 540h-170l-192-342 192-342h170l-192 342 112 198 336-540h170z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "polymer"
- ],
- "defaultCode": 59563,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 599,
- "ligatures": "polymer",
- "id": 595,
- "prevSize": 24,
- "name": "polymer",
- "code": 59563
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 595
- },
- {
- "icon": {
- "paths": [
- "M598 234c0-58 48-106 106-106s106 48 106 106-48 108-106 108-106-50-106-108zM370 512c-24 0-34-6-50-16-8-6-18-10-32-16l138-138-42-44c-48-48-92-64-170-64v-106c106 0 168 20 234 86l274 272c-6 4-12 8-18 10-16 10-26 16-50 16s-32-6-48-16c-20-12-46-26-94-26s-74 14-94 26c-16 10-24 16-48 16zM938 704c-48 0-72-16-92-28-16-10-26-14-50-14s-32 4-48 14c-20 12-46 28-94 28s-72-16-92-28c-16-10-26-14-50-14s-32 4-48 14c-20 12-46 28-94 28s-72-16-92-28c-16-10-26-14-50-14s-32 4-48 14c-20 12-46 28-94 28v-86c24 0 32-4 48-14 20-12 46-28 94-28s72 16 92 28c16 10 26 14 50 14s32-4 48-14c20-12 46-28 94-28s72 16 92 28c16 10 26 14 50 14s32-4 48-14c20-12 46-28 94-28s72 16 92 28c16 10 26 14 50 14v86zM938 896c-48 0-72-16-92-28-16-10-26-14-50-14s-32 4-48 14c-20 12-46 28-94 28s-72-16-92-28c-16-10-26-14-50-14s-32 4-48 14c-20 12-46 28-94 28s-74-16-94-28c-16-10-24-14-48-14s-34 4-50 14c-20 12-44 28-92 28v-86c24 0 32-4 48-14 20-12 46-28 94-28s72 16 92 28c16 10 26 14 50 14s32-4 48-14c20-12 46-28 94-28s74 16 94 28c16 10 24 14 48 14s34-4 50-14c20-12 44-28 92-28s74 16 94 28c16 10 24 14 48 14v86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "pool"
- ],
- "defaultCode": 60232,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 600,
- "ligatures": "pool",
- "id": 596,
- "prevSize": 24,
- "name": "pool",
- "code": 60232
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 596
- },
- {
- "icon": {
- "paths": [
- "M140 106l42 44 714 714-54 54-320-322h-2l-8 2c-46 0-86-40-86-86l2-8-68-68c-12 24-18 48-18 76 0 64 34 118 84 148l-42 74c-76-44-128-128-128-222 0-52 14-98 40-138l-60-62c-40 56-66 124-66 200 0 126 68 236 170 296l-42 74c-128-74-212-212-212-370 0-98 32-190 88-262l-88-90zM512 170c-58 0-112 14-160 40l-62-62c64-40 140-62 222-62 236 0 426 190 426 426 0 82-22 158-62 222l-64-62c26-48 42-102 42-160 0-188-154-342-342-342zM750 608l-70-70c2-8 2-18 2-26 0-94-76-170-170-170-8 0-18 0-26 2l-70-70c30-12 62-18 96-18 142 0 256 114 256 256 0 34-6 66-18 96z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "portable_wifi_off"
- ],
- "defaultCode": 57550,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 601,
- "ligatures": "portable_wifi_off",
- "id": 597,
- "prevSize": 24,
- "name": "portable_wifi_off",
- "code": 57550
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 597
- },
- {
- "icon": {
- "paths": [
- "M810 810v-596h-596v596h596zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596zM704 694v32h-384v-32c0-64 128-96 192-96s192 32 192 96zM512 522c-52 0-96-44-96-96s44-96 96-96 96 44 96 96-44 96-96 96z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "portrait"
- ],
- "defaultCode": 58390,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 602,
- "ligatures": "portrait",
- "id": 598,
- "prevSize": 24,
- "name": "portrait",
- "code": 58390
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 598
- },
- {
- "icon": {
- "paths": [
- "M684 298c42 0 84 44 84 86v234l-150 150v128h-212v-128l-150-150v-234c0-42 42-86 84-86h2v-170h84v170h172v-170h84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "power"
- ],
- "defaultCode": 58940,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 603,
- "ligatures": "power",
- "id": 599,
- "prevSize": 24,
- "name": "power",
- "code": 58940
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 599
- },
- {
- "icon": {
- "paths": [
- "M682 640v-86h214v86h-214zM384 640v-86h214v86h-214zM86 640v-86h212v86h-212zM86 384h810v86h-810v-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "power_input"
- ],
- "defaultCode": 58166,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 604,
- "ligatures": "power_input",
- "id": 600,
- "prevSize": 24,
- "name": "power_input",
- "code": 58166
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 600
- },
- {
- "icon": {
- "paths": [
- "M760 220c82 70 136 176 136 292 0 212-172 384-384 384s-384-172-384-384c0-116 54-222 136-292l60 60c-66 54-110 138-110 232 0 166 132 298 298 298s298-132 298-298c0-94-42-176-110-230zM554 128v426h-84v-426h84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "power_settings_new"
- ],
- "defaultCode": 59564,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 605,
- "ligatures": "power_settings_new",
- "id": 601,
- "prevSize": 24,
- "name": "power_settings_new",
- "code": 59564
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 601
- },
- {
- "icon": {
- "paths": [
- "M682 554v172h-128v212h-128v-212h-84v-300c0-70 58-128 128-128s128 58 128 128c50 20 84 70 84 128zM384 170c0-48 38-84 86-84s84 36 84 84-36 86-84 86-86-38-86-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "pregnant_woman"
- ],
- "defaultCode": 59678,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 606,
- "ligatures": "pregnant_woman",
- "id": 602,
- "prevSize": 24,
- "name": "pregnant_woman",
- "code": 59678
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 602
- },
- {
- "icon": {
- "paths": [
- "M426 512h-84l170-170 170 170h-84v170h-172v-170zM896 812v-600h-768v600h768zM896 128c48 0 86 38 86 86v596c0 48-38 86-86 86h-768c-48 0-86-38-86-86v-596c0-48 38-86 86-86h768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "present_to_all"
- ],
- "defaultCode": 57567,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 607,
- "ligatures": "present_to_all",
- "id": 603,
- "prevSize": 24,
- "name": "present_to_all",
- "code": 57567
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 603
- },
- {
- "icon": {
- "paths": [
- "M426 128h172v512h-172v-512zM426 810c0-48 38-84 86-84s86 36 86 84-38 86-86 86-86-38-86-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "priority_high"
- ],
- "defaultCode": 58949,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 608,
- "ligatures": "priority_high",
- "id": 604,
- "prevSize": 24,
- "name": "priority_high",
- "code": 58949
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 604
- },
- {
- "icon": {
- "paths": [
- "M764 742c56-60 90-142 90-230 0-142-88-266-214-316v18c0 46-40 84-86 84h-84v86c0 24-20 42-44 42h-84v86h256c24 0 42 18 42 42v128h42c38 0 70 26 82 60zM470 850v-82c-46 0-86-40-86-86v-42l-204-204c-6 24-10 50-10 76 0 174 132 318 300 338zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "public"
- ],
- "defaultCode": 59403,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 609,
- "ligatures": "public",
- "id": 605,
- "prevSize": 24,
- "name": "public",
- "code": 59403
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 605
- },
- {
- "icon": {
- "paths": [
- "M214 598l298-300 298 300h-170v256h-256v-256h-170zM214 170h596v86h-596v-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "publish"
- ],
- "defaultCode": 57941,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 610,
- "ligatures": "publish",
- "id": 606,
- "prevSize": 24,
- "name": "publish",
- "code": 57941
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 606
- },
- {
- "icon": {
- "paths": [
- "M726 256h212v86h-128v384c0 70-58 128-128 128s-128-58-128-128 58-128 128-128c14 0 30 4 44 8v-350zM128 682v-84h342v84h-342zM640 426v86h-512v-86h512zM640 256v86h-512v-86h512z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "queue_music"
- ],
- "defaultCode": 57405,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 611,
- "ligatures": "queue_music",
- "id": 607,
- "prevSize": 24,
- "name": "queue_music",
- "code": 57405
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 607
- },
- {
- "icon": {
- "paths": [
- "M1024 768l-192 192-64-64 128-128-128-128 64-64zM554 426h128v86h-128v128h-84v-128h-128v-86h128v-128h84v128zM896 128c46 0 86 38 86 86v340h-86v-340h-768v512h640v84h-86v86h-340v-86h-214c-48 0-86-38-86-84v-512c0-48 38-86 86-86h768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "queue_play_next"
- ],
- "defaultCode": 57446,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 612,
- "ligatures": "queue_play_next",
- "id": 608,
- "prevSize": 24,
- "name": "queue_play_next",
- "code": 57446
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 608
- },
- {
- "icon": {
- "paths": [
- "M854 512v-170h-684v170h512v-86h86v86h86zM298 854c70 0 128-58 128-128s-58-128-128-128-128 58-128 128 58 128 128 128zM138 262l540-220 28 72-352 142h500c48 0 84 38 84 86v512c0 46-36 84-84 84h-684c-48 0-84-38-84-84v-512c0-36 20-68 52-80z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "radio"
- ],
- "defaultCode": 57406,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 613,
- "ligatures": "radio",
- "id": 609,
- "prevSize": 24,
- "name": "radio",
- "code": 57406
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 609
- },
- {
- "icon": {
- "paths": [
- "M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM512 298c118 0 214 96 214 214s-96 214-214 214-214-96-214-214 96-214 214-214z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "radio_button_checked"
- ],
- "defaultCode": 59447,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 614,
- "ligatures": "radio_button_checked",
- "id": 610,
- "prevSize": 24,
- "name": "radio_button_checked",
- "code": 59447
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 610
- },
- {
- "icon": {
- "paths": [
- "M768 598v-86h-234l-86 86h320zM256 598h106l294-294c8-8 8-22 0-30l-76-76c-8-8-22-8-30 0l-294 294v106zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "rate_review"
- ],
- "defaultCode": 58720,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 615,
- "ligatures": "rate_review",
- "id": 611,
- "prevSize": 24,
- "name": "rate_review",
- "code": 58720
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 611
- },
- {
- "icon": {
- "paths": [
- "M128 938v-852l64 64 64-64 64 64 64-64 64 64 64-64 64 64 64-64 64 64 64-64 64 64 64-64v852l-64-64-64 64-64-64-64 64-64-64-64 64-64-64-64 64-64-64-64 64-64-64zM768 384v-86h-512v86h512zM768 554v-84h-512v84h512zM768 726v-86h-512v86h512z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "receipt"
- ],
- "defaultCode": 59568,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 616,
- "ligatures": "receipt",
- "id": 612,
- "prevSize": 24,
- "name": "receipt",
- "code": 59568
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 612
- },
- {
- "icon": {
- "paths": [
- "M534 726v-32c0-64-128-96-192-96s-192 32-192 96v32h384zM342 330c-52 0-96 44-96 96s44 96 96 96 96-44 96-96-44-96-96-96zM598 214c24 0 42 18 42 42v512c0 24-18 42-42 42h-512c-24 0-44-18-44-42v-512c0-24 20-42 44-42h512zM726 810v-596h84v596h-84zM896 214h86v596h-86v-596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "recent_actors"
- ],
- "defaultCode": 57407,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 617,
- "ligatures": "recent_actors",
- "id": 613,
- "prevSize": 24,
- "name": "recent_actors",
- "code": 57407
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 613
- },
- {
- "icon": {
- "paths": [
- "M856 86c166 172 166 430 0 596l-70-68c118-136 118-332 0-460zM716 228c86 94 86 224 0 310l-72-72c36-50 36-116 0-166zM384 640c114 0 342 56 342 170v86h-684v-86c0-114 228-170 342-170zM214 384c0-94 76-170 170-170s170 76 170 170-76 170-170 170-170-76-170-170z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "record_voice_over"
- ],
- "defaultCode": 59679,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 618,
- "ligatures": "record_voice_over",
- "id": 614,
- "prevSize": 24,
- "name": "record_voice_over",
- "code": 59679
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 614
- },
- {
- "icon": {
- "paths": [
- "M786 452l152-154v384h-384l156-154c-60-50-136-80-220-80-152 0-280 98-324 234l-100-32c58-178 226-308 424-308 114 0 218 42 296 110z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "redo"
- ],
- "defaultCode": 57690,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 619,
- "ligatures": "redo",
- "id": 615,
- "prevSize": 24,
- "name": "redo",
- "code": 57690
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 615
- },
- {
- "icon": {
- "paths": [
- "M754 270l100-100v300h-300l138-138c-46-46-110-76-180-76-142 0-256 114-256 256s114 256 256 256c112 0 208-70 242-170h88c-38 148-170 256-330 256-188 0-340-154-340-342s152-342 340-342c94 0 180 38 242 100z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "refresh"
- ],
- "defaultCode": 58837,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 620,
- "ligatures": "refresh",
- "id": 616,
- "prevSize": 24,
- "name": "refresh",
- "code": 58837
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 616
- },
- {
- "icon": {
- "paths": [
- "M810 554h-596v-84h596v84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "remove"
- ],
- "defaultCode": 57691,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 621,
- "ligatures": "remove",
- "id": 617,
- "prevSize": 24,
- "name": "remove",
- "code": 57691
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 617
- },
- {
- "icon": {
- "paths": [
- "M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM298 470h428v84h-428v-84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "remove_circle_outline"
- ],
- "defaultCode": 57693,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 622,
- "ligatures": "remove_circle_outline",
- "id": 618,
- "prevSize": 24,
- "name": "remove_circle_outline",
- "code": 57693
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 618
- },
- {
- "icon": {
- "paths": [
- "M682 426v86h-340v-86h340zM896 726v-512h-768v512h768zM896 128c46 0 86 38 86 86l-2 512c0 46-38 84-84 84h-214v86h-340v-86h-214c-48 0-86-38-86-84v-512c0-48 38-86 86-86h768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "remove_from_queue"
- ],
- "defaultCode": 57447,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 623,
- "ligatures": "remove_from_queue",
- "id": 619,
- "prevSize": 24,
- "name": "remove_from_queue",
- "code": 57447
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 619
- },
- {
- "icon": {
- "paths": [
- "M512 384c70 0 128 58 128 128s-58 128-128 128-128-58-128-128 58-128 128-128zM512 726c118 0 214-96 214-214s-96-214-214-214-214 96-214 214 96 214 214 214zM512 192c214 0 396 132 470 320-74 188-256 320-470 320s-396-132-470-320c74-188 256-320 470-320z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "visibility"
- ],
- "defaultCode": 59636,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 624,
- "ligatures": "remove_red_eye, visibility",
- "id": 620,
- "prevSize": 24,
- "name": "visibility",
- "code": 59636
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 620
- },
- {
- "icon": {
- "paths": [
- "M298 768c46 0 86 40 86 86s-40 84-86 84-84-38-84-84 38-86 84-86zM664 554l-384-384h574c24 0 42 20 42 44 0 8-2 14-6 20l-152 276c-14 26-42 44-74 44zM316 640h216l-86-86h-100l-38 70-2 6c0 6 4 10 10 10zM970 970l-54 54-122-122c-16 22-40 36-68 36-46 0-86-38-86-84 0-28 14-54 36-70l-60-58h-318c-46 0-84-40-84-86 0-14 4-28 10-40l58-106-94-198-188-188 54-54z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "remove_shopping_cart"
- ],
- "defaultCode": 59688,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 625,
- "ligatures": "remove_shopping_cart",
- "id": 621,
- "prevSize": 24,
- "name": "remove_shopping_cart",
- "code": 59688
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 621
- },
- {
- "icon": {
- "paths": [
- "M128 214h768v84h-768v-84zM128 470v-86h768v86h-768zM128 810v-84h768v84h-768zM128 640v-86h768v86h-768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "reorder"
- ],
- "defaultCode": 59646,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 626,
- "ligatures": "reorder",
- "id": 622,
- "prevSize": 24,
- "name": "reorder",
- "code": 59646
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 622
- },
- {
- "icon": {
- "paths": [
- "M726 726v-172h84v256h-512v128l-170-170 170-170v128h428zM298 298v172h-84v-256h512v-128l170 170-170 170v-128h-428z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "repeat"
- ],
- "defaultCode": 57408,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 627,
- "ligatures": "repeat",
- "id": 623,
- "prevSize": 24,
- "name": "repeat",
- "code": 57408
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 623
- },
- {
- "icon": {
- "paths": [
- "M554 640h-64v-170h-64v-44l86-42h42v256zM726 726v-172h84v256h-512v128l-170-170 170-170v128h428zM298 298v172h-84v-256h512v-128l170 170-170 170v-128h-428z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "repeat_one"
- ],
- "defaultCode": 57409,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 628,
- "ligatures": "repeat_one",
- "id": 624,
- "prevSize": 24,
- "name": "repeat_one",
- "code": 57409
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 624
- },
- {
- "icon": {
- "paths": [
- "M512 214c188 0 342 152 342 340s-154 342-342 342-342-154-342-342h86c0 142 114 256 256 256s256-114 256-256-114-256-256-256v172l-214-214 214-214v172z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "replay"
- ],
- "defaultCode": 57410,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 629,
- "ligatures": "replay",
- "id": 625,
- "prevSize": 24,
- "name": "replay",
- "code": 57410
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 625
- },
- {
- "icon": {
- "paths": [
- "M564 648c0 6.531 12.65 14 20 14 4 0 10 0 14-4l8-10s4-8 4-12v-86c0 0-4-8-4-12 0-5.505-16.424-14-22-14-4 0-8 2-12 6l-8 8s-6 8-6 12v86s6 8 6 12zM648 606c0 12 0 26-4 34l-12 26s-14 12-22 12-18 4-26 4-18 0-26-4-12-8-20-12c-13.488-6.744-18-39.492-18-60v-30c0-12 0-26 4-34l14-26s12-12 20-12 18-4 26-4 18 0 26 4 14 8 22 12 8 14 12 26 4 22 4 34v30zM466 682h-40v-140l-42 12v-30l76-24h6v182zM512 214c188 0 342 152 342 340s-154 342-342 342-342-154-342-342h86c0 140 116 256 256 256s256-116 256-256-116-256-256-256v172l-214-214 214-214v172z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "replay_10"
- ],
- "defaultCode": 57433,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 630,
- "ligatures": "replay_10",
- "id": 626,
- "prevSize": 24,
- "name": "replay_10",
- "code": 57433
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 626
- },
- {
- "icon": {
- "paths": [
- "M572 648c0 7.531 13.843 14 22 14 4 0 8 0 12-4l8-10s4-8 4-12v-86c0-4-4-8-4-12 0-4.671-15.121-14-20-14-4 0-10 2-14 6l-8 8s-4 8-4 12v86s4 8 4 12zM652 606c0 12 0 26-4 34l-12 26s-14 12-22 12-18 4-26 4c-20.252 0-32.299-9.149-46-16-8-4-8-14-12-26s-6-22-6-34v-30c0-12 2-26 6-34l12-26s14-12 22-12 16-4 24-4 18 0 26 4 14 8 22 12 8 14 12 26 4 22 4 34v30zM426 576c16.239 0 30-9.918 30-26v-8s-4-4-4-8-4-4-8-4h-22s-4 4-8 4-4 4-4 8v8h-44c0-19.788 17.639-46 36-46 4 0 16-4 20-4 17.345 0 35.264 5.632 48 12 10.13 5.065 16 24.218 16 38v14s-4 8-4 12-4 8-8 8-10 6-14 10c8 4 18 8 22 16s8 18 8 26 0 18-4 22-8 12-12 16-14 8-22 8-18 4-26 4-16 0-20-4-14-4-22-8c-11.162-5.581-18-27.017-18-42h36v8s4 4 4 8 4 4 8 4h22s4-4 8-4 4-4 4-8v-22s-4-4-4-8-4-4-8-4h-26v-30h16zM512 214c188 0 342 152 342 340s-154 342-342 342-342-154-342-342h86c0 140 116 256 256 256s256-116 256-256-116-256-256-256v172l-214-214 214-214v172z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "replay_30"
- ],
- "defaultCode": 57434,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 631,
- "ligatures": "replay_30",
- "id": 627,
- "prevSize": 24,
- "name": "replay_30",
- "code": 57434
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 627
- },
- {
- "icon": {
- "paths": [
- "M504 580c-3.584 1.434-14 4.805-14 8 0 4-4 6-4 6h-30l10-94h102v30h-74l-4 38s4 0 4-4 6-2 6-6 4 0 8 0h8c8 0 18 2 22 6s12 8 16 12c8.873 8.873 18 27.257 18 46 0 8 0 18-4 22s-6 14-14 22-12 8-16 12-18 4-26 4-18 0-22-4-12-4-20-8c-11.191-5.596-18-22.554-18-38h34c0 14.809 10.59 20 26 20 4 0 8 0 12-4l10-8s4-8 4-12v-26l-4-8-10-10s-8-4-12-4h-8zM512 214c188 0 342 152 342 340s-154 342-342 342-342-154-342-342h86c0 140 116 256 256 256s256-116 256-256-116-256-256-256v172l-214-214 214-214v172z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "replay_5"
- ],
- "defaultCode": 57435,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 632,
- "ligatures": "replay_5",
- "id": 628,
- "prevSize": 24,
- "name": "replay_5",
- "code": 57435
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 628
- },
- {
- "icon": {
- "paths": [
- "M426 384c298 42 428 256 470 470-106-150-256-218-470-218v174l-298-298 298-298v170z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "reply"
- ],
- "defaultCode": 57694,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 633,
- "ligatures": "reply",
- "id": 629,
- "prevSize": 24,
- "name": "reply",
- "code": 57694
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 629
- },
- {
- "icon": {
- "paths": [
- "M554 384c298 42 428 256 470 470-106-150-256-218-470-218v174l-298-298 298-298v170zM298 342l-170 170 170 170v128l-298-298 298-298v128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "reply_all"
- ],
- "defaultCode": 57695,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 634,
- "ligatures": "reply_all",
- "id": 630,
- "prevSize": 24,
- "name": "reply_all",
- "code": 57695
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 630
- },
- {
- "icon": {
- "paths": [
- "M554 554v-256h-84v256h84zM512 738c30 0 56-26 56-56s-26-54-56-54-56 24-56 54 26 56 56 56zM672 128l224 224v320l-224 224h-320l-224-224v-320l224-224h320z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "report"
- ],
- "defaultCode": 57696,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 635,
- "ligatures": "report",
- "id": 631,
- "prevSize": 24,
- "name": "report",
- "code": 57696
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 631
- },
- {
- "icon": {
- "paths": [
- "M554 598v-172h-84v172h84zM554 768v-86h-84v86h84zM42 896l470-810 470 810h-940z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "warning"
- ],
- "defaultCode": 57346,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 636,
- "ligatures": "report_problem, warning",
- "id": 632,
- "prevSize": 24,
- "name": "warning",
- "code": 57346
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 632
- },
- {
- "icon": {
- "paths": [
- "M682 256c0-76 96-170 214-170v852h-106v-340h-108v-342zM470 384v-298h84v298c0 90-70 164-160 170v384h-106v-384c-90-6-160-80-160-170v-298h86v298h84v-298h86v298h86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "restaurant"
- ],
- "defaultCode": 58732,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 637,
- "ligatures": "restaurant",
- "id": 633,
- "prevSize": 24,
- "name": "restaurant",
- "code": 58732
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 633
- },
- {
- "icon": {
- "paths": [
- "M512 768c118 0 214-96 214-214s-96-212-214-212c-76 0-142 40-180 98l-54-56v170h170l-68-68c24-48 74-80 132-80 82 0 150 66 150 148s-68 150-150 150c-50 0-96-26-122-64h-74c32 76 108 128 196 128zM598 86l256 256v512c0 46-40 84-86 84h-512c-46 0-86-38-86-84l2-684c0-46 38-84 84-84h342z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "restore_page"
- ],
- "defaultCode": 59689,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 638,
- "ligatures": "restore_page",
- "id": 634,
- "prevSize": 24,
- "name": "restore_page",
- "code": 59689
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 634
- },
- {
- "icon": {
- "paths": [
- "M274 418c0 0-148-148-152-150l60-62 152 152zM554 86v212h-84v-212h84zM902 268c-4 2-152 150-152 150l-60-60 152-152zM1012 712c8 8 12 18 12 30s-4 22-12 30l-106 106c-8 8-18 12-30 12s-22-4-30-12c-34-32-72-60-114-80-14-6-24-22-24-38v-132c-62-20-128-30-196-30s-134 10-196 30v132c0 18-10 34-24 40-42 20-80 46-114 78-8 8-18 12-30 12s-22-4-30-12l-106-106c-8-8-12-18-12-30s4-22 12-30c130-124 306-200 500-200s370 76 500 200z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "ring_volume"
- ],
- "defaultCode": 57553,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 639,
- "ligatures": "ring_volume",
- "id": 635,
- "prevSize": 24,
- "name": "ring_volume",
- "code": 57553
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 635
- },
- {
- "icon": {
- "paths": [
- "M590 332c166 34 294 176 306 350h-768c12-174 140-316 306-350-4-10-8-22-8-34 0-46 40-84 86-84s86 38 86 84c0 12-4 24-8 34zM86 726h852v84h-852v-84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "room_service"
- ],
- "defaultCode": 60233,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 640,
- "ligatures": "room_service",
- "id": 636,
- "prevSize": 24,
- "name": "room_service",
- "code": 60233
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 636
- },
- {
- "icon": {
- "paths": [
- "M826 284c150 150 150 392 0 542-74 76-174 112-272 112-64 0-126-16-184-48l64-62c38 18 78 26 120 26 76 0 154-30 212-88 116-116 116-306 0-422-58-58-136-88-212-88v138l-180-180 180-182v138c98 0 198 38 272 114zM158 550l156 156 156-156-156-156zM314 274l276 276-276 276-278-276z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "rotate_90_degrees_ccw"
- ],
- "defaultCode": 58392,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 641,
- "ligatures": "rotate_90_degrees_ccw",
- "id": 637,
- "prevSize": 24,
- "name": "rotate_90_degrees_ccw",
- "code": 58392
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 637
- },
- {
- "icon": {
- "paths": [
- "M554 174c168 20 300 164 300 338s-132 318-300 338v-86c122-20 214-126 214-252s-92-232-214-252v166l-194-190 194-194v132zM302 782l62-62c32 24 68 38 106 44v86c-60-8-118-30-168-68zM260 554c6 38 20 74 42 106l-60 60c-38-50-60-106-68-166h86zM304 364c-22 32-38 68-44 106h-86c8-60 32-116 70-166z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "rotate_left"
- ],
- "defaultCode": 58393,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 642,
- "ligatures": "rotate_left",
- "id": 638,
- "prevSize": 24,
- "name": "rotate_left",
- "code": 58393
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 638
- },
- {
- "icon": {
- "paths": [
- "M720 660c24-32 38-68 44-106h86c-8 60-30 116-68 166zM554 764c38-6 74-20 106-44l62 62c-50 38-108 60-168 68v-86zM850 470h-86c-6-38-20-74-44-106l62-60c38 50 60 106 68 166zM664 236l-194 190v-166c-122 20-214 126-214 252s92 232 214 252v86c-168-20-300-164-300-338s132-318 300-338v-132z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "rotate_right"
- ],
- "defaultCode": 58394,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 643,
- "ligatures": "rotate_right",
- "id": 639,
- "prevSize": 24,
- "name": "rotate_right",
- "code": 58394
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 639
- },
- {
- "icon": {
- "paths": [
- "M896 342v212h-86v-212c0-70-58-128-128-128h-212v-86h212c118 0 214 96 214 214zM128 896v-86h86v86h-86zM298 896v-86h86v86h-86zM470 896v-86h84v86h-84zM298 214v-86h86v86h-86zM128 214v-86h86v86h-86zM128 384v-86h86v86h-86zM128 726v-86h86v86h-86zM128 554v-84h86v84h-86zM810 726v-86h86v86h-86zM810 810h86v86h-86v-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "rounded_corner"
- ],
- "defaultCode": 59680,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 644,
- "ligatures": "rounded_corner",
- "id": 640,
- "prevSize": 24,
- "name": "rounded_corner",
- "code": 59680
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 640
- },
- {
- "icon": {
- "paths": [
- "M640 768v-86h-86v86h86zM490 768v-86h-84v86h84zM342 768v-86h-86v86h86zM810 554c46 0 86 40 86 86v170c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-170c0-46 40-86 86-86h426v-170h86v170h84zM824 286l-34 34c-30-30-70-42-108-42s-76 12-106 42l-34-34c38-38 88-60 140-60s104 22 142 60zM862 252c-52-46-116-72-180-72s-126 26-178 72l-34-34c60-60 136-90 212-90s154 30 214 90z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "router"
- ],
- "defaultCode": 58152,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 645,
- "ligatures": "router",
- "id": 641,
- "prevSize": 24,
- "name": "router",
- "code": 58152
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 641
- },
- {
- "icon": {
- "paths": [
- "M896 896l-128 128-128-128v-64l-302-302c-14 2-28 2-40 2v-92c70 2 154-36 200-86l60-66c15.214-15.214 40.308-32 70-32h2c52 0 96 44 96 96v246c0 36-16 68-40 92l-152-152v-98c-26 22-62 44-98 60l268 268h64zM640 42c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM362 618l108 108h-86l-150 148-64-64z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "rowing"
- ],
- "defaultCode": 59681,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 646,
- "ligatures": "rowing",
- "id": 642,
- "prevSize": 24,
- "name": "rowing",
- "code": 59681
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 642
- },
- {
- "icon": {
- "paths": [
- "M170 430c234 0 424 190 424 424h-122c0-166-136-302-302-302v-122zM170 190c366 0 664 298 664 664h-120c0-300-244-544-544-544v-120zM170 760c0-52 42-92 94-92s92 40 92 92-40 94-92 94-94-42-94-94z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "rss_feed"
- ],
- "defaultCode": 57573,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 647,
- "ligatures": "rss_feed",
- "id": 643,
- "prevSize": 24,
- "name": "rss_feed",
- "code": 57573
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 643
- },
- {
- "icon": {
- "paths": [
- "M726 86l128 128-128 128v-86h-342v-86h342v-84zM768 598v-128h-170v128h170zM470 854c24 0 42-20 42-44s-18-42-42-42-44 18-44 42 20 44 44 44zM854 726h84v84h-340c0 70-58 128-128 128s-128-58-128-128h-86c-46 0-86-38-86-84v-128h300v-128h-172v84l-128-128 128-128v86h470c46 0 86 40 86 86v256z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "rv_hookup"
- ],
- "defaultCode": 58946,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 648,
- "ligatures": "rv_hookup",
- "id": 644,
- "prevSize": 24,
- "name": "rv_hookup",
- "code": 58946
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 644
- },
- {
- "icon": {
- "paths": [
- "M214 768h596l-192-256-148 192-108-128zM214 512c166 0 298-134 298-300h-86c0 118-94 214-212 214v86zM214 212v130c70 0 128-60 128-130h-128zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "satellite"
- ],
- "defaultCode": 58722,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 649,
- "ligatures": "satellite",
- "id": 645,
- "prevSize": 24,
- "name": "satellite",
- "code": 58722
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 645
- },
- {
- "icon": {
- "paths": [
- "M640 384v-170h-426v170h426zM512 810c70 0 128-58 128-128s-58-128-128-128-128 58-128 128 58 128 128 128zM726 128l170 170v512c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h512z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "save"
- ],
- "defaultCode": 57697,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 650,
- "ligatures": "save",
- "id": 646,
- "prevSize": 24,
- "name": "save",
- "code": 57697
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 646
- },
- {
- "icon": {
- "paths": [
- "M810 726v-86h-426v86h426zM298 726v-86h-84v86h84zM844 456c30 8 52 44 52 78v234c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-170c0-46 40-86 86-86h536l-600-218 30-80z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "scanner"
- ],
- "defaultCode": 58153,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 651,
- "ligatures": "scanner",
- "id": 647,
- "prevSize": 24,
- "name": "scanner",
- "code": 58153
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 647
- },
- {
- "icon": {
- "paths": [
- "M512 128l470 256v342h-86v-296l-384 210-470-256zM214 562l298 164 298-164v172l-298 162-298-162v-172z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "school"
- ],
- "defaultCode": 59404,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 652,
- "ligatures": "school",
- "id": 648,
- "prevSize": 24,
- "name": "school",
- "code": 59404
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 648
- },
- {
- "icon": {
- "paths": [
- "M460 426v44h104v-44c0-28-24-50-52-50s-52 22-52 50zM426 682c-24 0-42-18-42-42v-128c0-24 18-42 42-42v-44c0-46 38-84 86-84 46 0 86 36 86 84v44c24 0 42 18 42 42v128c0 24-18 42-42 42h-172zM810 726v-428h-596v428h596zM896 214c46 0 86 38 86 84v428c0 46-40 84-86 84h-768c-46 0-86-38-86-84v-428c0-46 40-84 86-84h768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "screen_lock_landscape"
- ],
- "defaultCode": 57790,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 653,
- "ligatures": "screen_lock_landscape",
- "id": 649,
- "prevSize": 24,
- "name": "screen_lock_landscape",
- "code": 57790
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 649
- },
- {
- "icon": {
- "paths": [
- "M726 810v-596h-428v596h428zM726 42c46 0 84 40 84 86v768c0 46-38 86-84 86h-428c-46 0-84-40-84-86v-768c0-46 38-86 84-86h428zM460 426v44h104v-44c0-28-24-50-52-50s-52 22-52 50zM426 682c-24 0-42-18-42-42v-128c0-24 18-42 42-42v-44c0-46 38-84 86-84 46 0 86 36 86 84v44c24 0 42 18 42 42v128c0 24-18 42-42 42h-172z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "screen_lock_portrait"
- ],
- "defaultCode": 57791,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 654,
- "ligatures": "screen_lock_portrait",
- "id": 650,
- "prevSize": 24,
- "name": "screen_lock_portrait",
- "code": 57791
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 650
- },
- {
- "icon": {
- "paths": [
- "M716 106v22h146v-22c0-40-32-72-72-72s-74 32-74 72zM682 384c-24 0-42-18-42-42v-172c0-24 18-42 42-42v-22c0-58 50-106 108-106s106 48 106 106v22c24 0 42 18 42 42v172c0 24-18 42-42 42h-214zM362 874l56-56 162 162-28 2c-268 0-488-208-510-470h64c16 160 116 296 256 362zM992 544c26 24 26 66 0 92l-272 270c-24 26-64 26-90 0l-512-512c-26-24-26-64 0-90l270-272c24-26 66-26 92 0l104 104-60 60-90-88-242 240 484 484 240-242-94-94 60-60z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "screen_lock_rotation"
- ],
- "defaultCode": 57792,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 655,
- "ligatures": "screen_lock_rotation",
- "id": 651,
- "prevSize": 24,
- "name": "screen_lock_rotation",
- "code": 57792
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 651
- },
- {
- "icon": {
- "paths": [
- "M320 916l58-56 162 162-28 2c-268 0-488-208-510-470h64c16 160 114 296 254 362zM632 904l272-272-512-512-272 272zM436 74l514 514c26 24 26 64 0 90l-272 272c-24 26-64 26-90 0l-514-514c-26-24-26-64 0-90l272-272c24-26 64-26 90 0zM704 108l-58 56-162-162 28-2c268 0 488 208 510 470h-64c-16-160-114-296-254-362z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "screen_rotation"
- ],
- "defaultCode": 57793,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 656,
- "ligatures": "screen_rotation",
- "id": 652,
- "prevSize": 24,
- "name": "screen_rotation",
- "code": 57793
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 652
- },
- {
- "icon": {
- "paths": [
- "M554 618l172-160-172-160v92c-166 24-232 136-256 250 60-80 138-116 256-116v94zM854 768h170v86h-1024v-86h170c-48 0-84-40-84-86v-426c0-48 36-86 84-86h684c46 0 84 38 84 86v426c0 46-38 86-84 86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "screen_share"
- ],
- "defaultCode": 57570,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 657,
- "ligatures": "screen_share",
- "id": 653,
- "prevSize": 24,
- "name": "screen_share",
- "code": 57570
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 653
- },
- {
- "icon": {
- "paths": [
- "M768 342v-172h-86v172h86zM640 342v-172h-86v172h86zM512 342v-172h-86v172h86zM768 86c46 0 86 38 86 84v684c0 46-40 84-86 84h-512c-46 0-86-38-86-84l2-512 254-256h342z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "sd_storage"
- ],
- "defaultCode": 57794,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 658,
- "ligatures": "sd_card, sd_storage",
- "id": 654,
- "prevSize": 24,
- "name": "sd_storage",
- "code": 57794
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 654
- },
- {
- "icon": {
- "paths": [
- "M406 598c106 0 192-86 192-192s-86-192-192-192-192 86-192 192 86 192 192 192zM662 598l212 212-64 64-212-212v-34l-12-12c-48 42-112 66-180 66-154 0-278-122-278-276s124-278 278-278 276 124 276 278c0 68-24 132-66 180l12 12h34z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "search"
- ],
- "defaultCode": 59574,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 659,
- "ligatures": "search",
- "id": 655,
- "prevSize": 24,
- "name": "search",
- "code": 59574
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 655
- },
- {
- "icon": {
- "paths": [
- "M512 42l384 172v256c0 236-164 458-384 512-220-54-384-276-384-512v-256zM512 512v382c158-50 276-206 298-382h-298zM512 512v-376l-298 132v244h298z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "security"
- ],
- "defaultCode": 58154,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 660,
- "ligatures": "security",
- "id": 656,
- "prevSize": 24,
- "name": "security",
- "code": 58154
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 656
- },
- {
- "icon": {
- "paths": [
- "M384 384v256h256v-256h-256zM298 726v-428h428v428h-428zM640 214v-86h86v86h-86zM640 896v-86h86v86h-86zM810 726v-86h86v86h-86zM810 384v-86h86v86h-86zM810 896v-86h86c0 46-40 86-86 86zM810 554v-84h86v84h-86zM470 896v-86h84v86h-84zM384 128v86h-86v-86h86zM128 726v-86h86v86h-86zM214 896c-46 0-86-40-86-86h86v86zM810 128c46 0 86 40 86 86h-86v-86zM554 128v86h-84v-86h84zM128 384v-86h86v86h-86zM298 896v-86h86v86h-86zM128 554v-84h86v84h-86zM128 214c0-46 40-86 86-86v86h-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "select_all"
- ],
- "defaultCode": 57698,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 661,
- "ligatures": "select_all",
- "id": 657,
- "prevSize": 24,
- "name": "select_all",
- "code": 57698
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 657
- },
- {
- "icon": {
- "paths": [
- "M86 896v-298l640-86-640-86v-298l896 384z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "send"
- ],
- "defaultCode": 57699,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 662,
- "ligatures": "send",
- "id": 658,
- "prevSize": 24,
- "name": "send",
- "code": 57699
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 658
- },
- {
- "icon": {
- "paths": [
- "M512 598c100 0 184 60 218 148h-70c-30-50-84-84-148-84s-118 34-148 84h-70c34-88 118-148 218-148zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM298 406c0-36 28-64 64-64s64 28 64 64-28 64-64 64-64-28-64-64zM598 406c0-36 28-64 64-64s64 28 64 64-28 64-64 64-64-28-64-64z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "sentiment_dissatisfied"
- ],
- "defaultCode": 59409,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 663,
- "ligatures": "sentiment_dissatisfied",
- "id": 659,
- "prevSize": 24,
- "name": "sentiment_dissatisfied",
- "code": 59409
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 659
- },
- {
- "icon": {
- "paths": [
- "M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM298 406c0-36 28-64 64-64s64 28 64 64-28 64-64 64-64-28-64-64zM598 406c0-36 28-64 64-64s64 28 64 64-28 64-64 64-64-28-64-64zM384 598h256v64h-256v-64z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "sentiment_neutral"
- ],
- "defaultCode": 59410,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 664,
- "ligatures": "sentiment_neutral",
- "id": 660,
- "prevSize": 24,
- "name": "sentiment_neutral",
- "code": 59410
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 660
- },
- {
- "icon": {
- "paths": [
- "M512 682c64 0 118-34 148-84h70c-34 88-118 148-218 148s-184-60-218-148h70c30 50 84 84 148 84zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM298 406c0-36 28-64 64-64s64 28 64 64-28 64-64 64-64-28-64-64zM598 406c0-36 28-64 64-64s64 28 64 64-28 64-64 64-64-28-64-64z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "sentiment_satisfied"
- ],
- "defaultCode": 59411,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 665,
- "ligatures": "sentiment_satisfied",
- "id": 661,
- "prevSize": 24,
- "name": "sentiment_satisfied",
- "code": 59411
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 661
- },
- {
- "icon": {
- "paths": [
- "M512 598c100 0 184 60 218 148h-436c34-88 118-148 218-148zM334 512l-46-46 46-44-46-46 46-44 44 44 46-44 46 44-46 46 46 44-46 46-46-46zM690 332l46 44-46 46 46 44-46 46-44-46-46 46-46-46 46-44-46-46 46-44 46 44zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "sentiment_very_dissatisfied"
- ],
- "defaultCode": 59412,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 666,
- "ligatures": "sentiment_very_dissatisfied",
- "id": 662,
- "prevSize": 24,
- "name": "sentiment_very_dissatisfied",
- "code": 59412
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 662
- },
- {
- "icon": {
- "paths": [
- "M512 746c-100 0-184-60-218-148h436c-34 88-118 148-218 148zM378 424l-44 46-46-46 90-90 92 90-46 46zM554 424l92-90 90 90-46 46-44-46-46 46zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "sentiment_very_satisfied"
- ],
- "defaultCode": 59413,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 667,
- "ligatures": "sentiment_very_satisfied",
- "id": 663,
- "prevSize": 24,
- "name": "sentiment_very_satisfied",
- "code": 59413
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 663
- },
- {
- "icon": {
- "paths": [
- "M512 662c82 0 150-68 150-150s-68-150-150-150-150 68-150 150 68 150 150 150zM830 554l90 70c8 6 10 18 4 28l-86 148c-6 10-16 12-26 8l-106-42c-22 16-46 32-72 42l-16 112c-2 10-10 18-20 18h-172c-10 0-18-8-20-18l-16-112c-26-10-50-24-72-42l-106 42c-10 4-20 2-26-8l-86-148c-6-10-4-22 4-28l90-70c-2-14-2-28-2-42s0-28 2-42l-90-70c-8-6-10-18-4-28l86-148c6-10 16-12 26-8l106 42c22-16 46-32 72-42l16-112c2-10 10-18 20-18h172c10 0 18 8 20 18l16 112c26 10 50 24 72 42l106-42c10-4 20-2 26 8l86 148c6 10 4 22-4 28l-90 70c2 14 2 28 2 42s0 28-2 42z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "settings"
- ],
- "defaultCode": 59576,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 668,
- "ligatures": "settings",
- "id": 664,
- "prevSize": 24,
- "name": "settings",
- "code": 59576
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 664
- },
- {
- "icon": {
- "paths": [
- "M736 512c0-10 0-20-2-30l64-48c6-4 6-14 2-20l-60-104c-4-6-12-8-18-6l-74 30c-16-12-32-22-50-30l-12-78c-2-6-6-12-14-12h-120c-8 0-12 4-14 12l-12 80c-18 8-34 16-50 28l-74-30c-6-2-14 2-18 8l-60 102c-4 6-4 16 2 20l64 48c-2 10-2 20-2 30s0 20 2 30l-64 48c-6 4-6 14-2 20l60 104c4 6 12 8 18 6l74-30c16 12 32 22 50 30l12 78c2 6 6 12 14 12h120c8 0 12-4 14-12l12-80c18-8 34-16 50-28l74 30c6 2 14-2 18-8l60-102c4-6 4-16-2-20l-64-48c2-10 2-20 2-30zM810 128c48 0 86 40 86 86v596c0 46-38 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h596zM512 426c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "settings_applications"
- ],
- "defaultCode": 59577,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 669,
- "ligatures": "settings_applications",
- "id": 665,
- "prevSize": 24,
- "name": "settings_applications",
- "code": 59577
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 665
- },
- {
- "icon": {
- "paths": [
- "M512 128c212 0 384 172 384 384s-172 384-384 384c-88 0-170-30-234-80l60-60c50 34 110 54 174 54 166 0 298-132 298-298s-132-298-298-298-298 132-298 298h128l-172 170-170-170h128c0-212 172-384 384-384zM598 512c0 46-40 86-86 86s-86-40-86-86 40-86 86-86 86 40 86 86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "settings_backup_restore"
- ],
- "defaultCode": 59578,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 670,
- "ligatures": "settings_backup_restore",
- "id": 666,
- "prevSize": 24,
- "name": "settings_backup_restore",
- "code": 59578
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 666
- },
- {
- "icon": {
- "paths": [
- "M634 610l-80-80v160zM554 164v160l80-80zM756 244l-184 182 184 184-244 244h-42v-324l-196 196-60-60 238-240-238-238 60-60 196 196v-324h42zM640 1024v-86h86v86h-86zM298 1024v-86h86v86h-86zM470 1024v-86h84v86h-84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "settings_bluetooth"
- ],
- "defaultCode": 59579,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 671,
- "ligatures": "settings_bluetooth",
- "id": 667,
- "prevSize": 24,
- "name": "settings_bluetooth",
- "code": 59579
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 667
- },
- {
- "icon": {
- "paths": [
- "M512 384v256c70 0 128-58 128-128s-58-128-128-128zM342 682v-106l-64-64 64-64v-106h106l64-64 64 64h106v106l64 64-64 64v106h-106l-64 64-64-64h-106zM896 812v-600h-768v600h768zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "settings_brightness"
- ],
- "defaultCode": 59581,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 672,
- "ligatures": "settings_brightness",
- "id": 668,
- "prevSize": 24,
- "name": "settings_brightness",
- "code": 59581
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 668
- },
- {
- "icon": {
- "paths": [
- "M682 682v-512h-340v512h340zM682 0c46 0 86 40 86 86v682c0 46-40 86-86 86h-340c-46 0-86-40-86-86v-682c0-46 40-86 86-86h340zM640 1024v-86h86v86h-86zM470 1024v-86h84v86h-84zM298 1024v-86h86v86h-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "settings_cell"
- ],
- "defaultCode": 59580,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 673,
- "ligatures": "settings_cell",
- "id": 669,
- "prevSize": 24,
- "name": "settings_cell",
- "code": 59580
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 669
- },
- {
- "icon": {
- "paths": [
- "M758 234l232 278-232 278-66-54 186-224-186-224zM470 554v-84h84v84h-84zM726 470v84h-86v-84h86zM298 554v-84h86v84h-86zM332 288l-186 224 186 224-66 54-232-278 232-278z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "settings_ethernet"
- ],
- "defaultCode": 59582,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 674,
- "ligatures": "settings_ethernet",
- "id": 670,
- "prevSize": 24,
- "name": "settings_ethernet",
- "code": 59582
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 670
- },
- {
- "icon": {
- "paths": [
- "M512 42c258 0 470 212 470 470h-86c0-212-172-384-384-384s-384 172-384 384h-86c0-258 212-470 470-470zM554 610v140l146 146-60 60-128-128-128 128-60-60 146-146v-140c-38-16-64-54-64-98 0-58 48-106 106-106s106 48 106 106c0 44-26 82-64 98zM512 214c166 0 298 132 298 298h-84c0-118-96-214-214-214s-214 96-214 214h-84c0-166 132-298 298-298z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "settings_input_antenna"
- ],
- "defaultCode": 59583,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 675,
- "ligatures": "settings_input_antenna",
- "id": 671,
- "prevSize": 24,
- "name": "settings_input_antenna",
- "code": 59583
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 671
- },
- {
- "icon": {
- "paths": [
- "M726 682v-84h256v84c0 56-36 102-86 120v180h-86v-180c-50-18-84-64-84-120zM554 86v170h86v256h-256v-256h86v-170c0-24 18-44 42-44s42 20 42 44zM896 256h86v256h-256v-256h84v-170c0-24 20-44 44-44s42 20 42 44v170zM42 682v-84h256v84c0 56-34 102-84 120v180h-86v-180c-50-18-86-64-86-120zM384 682v-84h256v84c0 56-36 102-86 120v180h-84v-180c-50-18-86-64-86-120zM214 86v170h84v256h-256v-256h86v-170c0-24 18-44 42-44s44 20 44 44z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "settings_input_composite"
- ],
- "defaultCode": 59585,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 676,
- "ligatures": "settings_input_component, settings_input_composite",
- "id": 672,
- "prevSize": 24,
- "name": "settings_input_composite",
- "code": 59585
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 672
- },
- {
- "icon": {
- "paths": [
- "M342 170v128h84v-84h44v84h84v-84h44v84h84v-128h-340zM768 298h42v256l-128 256v128h-340v-128l-128-256v-256h42v-128c0-46 40-84 86-84h340c46 0 86 38 86 84v128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "settings_input_hdmi"
- ],
- "defaultCode": 59586,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 677,
- "ligatures": "settings_input_hdmi",
- "id": 673,
- "prevSize": 24,
- "name": "settings_input_hdmi",
- "code": 59586
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 673
- },
- {
- "icon": {
- "paths": [
- "M662 640c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM746 426c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM512 896c212 0 384-172 384-384s-172-384-384-384-384 172-384 384 172 384 384 384zM512 42c258 0 470 212 470 470s-212 470-470 470-470-212-470-470 212-470 470-470zM362 640c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM640 278c0 36-28 64-64 64h-128c-36 0-64-28-64-64s28-64 64-64h128c36 0 64 28 64 64zM342 490c0 36-28 64-64 64s-64-28-64-64 28-64 64-64 64 28 64 64z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "settings_input_svideo"
- ],
- "defaultCode": 59587,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 678,
- "ligatures": "settings_input_svideo",
- "id": 674,
- "prevSize": 24,
- "name": "settings_input_svideo",
- "code": 59587
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 674
- },
- {
- "icon": {
- "paths": [
- "M896 812v-600h-768v600h768zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768zM598 682l-86 108-86-108h172zM256 426v172l-106-86zM768 426l106 86-106 86v-172zM512 234l86 108h-172z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "settings_overscan"
- ],
- "defaultCode": 59588,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 679,
- "ligatures": "settings_overscan",
- "id": 675,
- "prevSize": 24,
- "name": "settings_overscan",
- "code": 59588
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 675
- },
- {
- "icon": {
- "paths": [
- "M810 384h86v86h-86v-86zM854 662c24 0 42 18 42 42v150c0 24-18 42-42 42-400 0-726-326-726-726 0-24 18-42 42-42h150c24 0 42 18 42 42 0 54 8 104 24 152 4 14 2 32-10 44l-94 94c62 120 162 220 282 282l94-94c12-12 30-14 44-10 48 16 98 24 152 24zM726 384v86h-86v-86h86zM554 384v86h-84v-86h84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "settings_phone"
- ],
- "defaultCode": 59589,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 680,
- "ligatures": "settings_phone",
- "id": 676,
- "prevSize": 24,
- "name": "settings_phone",
- "code": 59589
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 676
- },
- {
- "icon": {
- "paths": [
- "M640 1024v-86h86v86h-86zM706 190c88 62 148 164 148 280 0 188-154 340-342 340s-342-152-342-340c0-116 60-218 148-280l60 60c-74 46-122 128-122 220 0 142 114 256 256 256s256-114 256-256c0-92-50-174-124-218zM554 86v426h-84v-426h84zM470 1024v-86h84v86h-84zM298 1024v-86h86v86h-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "settings_power"
- ],
- "defaultCode": 59590,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 681,
- "ligatures": "settings_power",
- "id": 677,
- "prevSize": 24,
- "name": "settings_power",
- "code": 59590
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 677
- },
- {
- "icon": {
- "paths": [
- "M512 0c130 0 248 52 332 138l-60 60c-70-70-166-112-272-112s-202 42-272 112l-60-60c84-84 202-138 332-138zM300 258c54-54 130-88 212-88s158 34 212 88l-60 60c-38-38-94-62-152-62s-114 24-152 62zM512 640c46 0 86-40 86-86s-40-84-86-84-86 38-86 84 40 86 86 86zM640 384c24 0 42 18 42 42v512c0 24-18 44-42 44h-256c-24 0-42-20-42-44v-512c0-24 18-42 42-42h256z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "settings_remote"
- ],
- "defaultCode": 59591,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 682,
- "ligatures": "settings_remote",
- "id": 678,
- "prevSize": 24,
- "name": "settings_remote",
- "code": 59591
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 678
- },
- {
- "icon": {
- "paths": [
- "M896 812v-600h-768v600h768zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768zM384 682c-70 0-128-58-128-128 0-66 50-120 114-126h8c24-50 74-86 134-86 76 0 138 56 148 128h2c58 0 106 48 106 106s-48 106-106 106h-278z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "settings_system_daydream"
- ],
- "defaultCode": 57795,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 683,
- "ligatures": "settings_system_daydream",
- "id": 679,
- "prevSize": 24,
- "name": "settings_system_daydream",
- "code": 57795
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 679
- },
- {
- "icon": {
- "paths": [
- "M810 426c0 146-116 268-256 288v140h-84v-140c-140-20-256-142-256-288h72c0 128 108 218 226 218s226-90 226-218h72zM640 1024v-86h86v86h-86zM470 1024v-86h84v86h-84zM512 554c-70 0-128-58-128-128v-256c0-70 58-128 128-128s128 58 128 128v256c0 70-58 128-128 128zM298 1024v-86h86v86h-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "settings_voice"
- ],
- "defaultCode": 59592,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 684,
- "ligatures": "settings_voice",
- "id": 680,
- "prevSize": 24,
- "name": "settings_voice",
- "code": 59592
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 680
- },
- {
- "icon": {
- "paths": [
- "M768 686c68 0 124 56 124 124s-56 126-124 126-124-58-124-126c0-10 0-20 2-28l-302-176c-24 22-54 34-88 34-70 0-128-58-128-128s58-128 128-128c34 0 64 12 88 34l300-174c-2-10-4-20-4-30 0-70 58-128 128-128s128 58 128 128-58 128-128 128c-34 0-64-14-88-36l-300 176c2 10 4 20 4 30s-2 20-4 30l304 176c22-20 52-32 84-32z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "share"
- ],
- "defaultCode": 59405,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 685,
- "ligatures": "share",
- "id": 681,
- "prevSize": 24,
- "name": "share",
- "code": 59405
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 681
- },
- {
- "icon": {
- "paths": [
- "M384 768l320-214-320-170v384zM426 170v86h172v-86h-172zM682 256h256v554c0 48-36 86-84 86h-684c-48 0-84-38-84-86v-554h256v-86c0-48 36-84 84-84h172c48 0 84 36 84 84v86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "shop"
- ],
- "defaultCode": 59593,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 686,
- "ligatures": "shop",
- "id": 682,
- "prevSize": 24,
- "name": "shop",
- "code": 59593
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 682
- },
- {
- "icon": {
- "paths": [
- "M512 640l234-170-234-128v298zM512 128v86h170v-86h-170zM768 214h214v468c0 48-38 86-86 86h-598c-48 0-84-38-84-86v-468h212v-86c0-48 38-86 86-86h170c48 0 86 38 86 86v86zM128 384v470h682c0 48-36 84-84 84h-598c-48 0-86-36-86-84v-470h86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "shop_two"
- ],
- "defaultCode": 59594,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 687,
- "ligatures": "shop_two",
- "id": 683,
- "prevSize": 24,
- "name": "shop_two",
- "code": 59594
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 683
- },
- {
- "icon": {
- "paths": [
- "M512 726c46 0 86-40 86-86s-40-86-86-86-86 40-86 86 40 86 86 86zM384 384h256l-128-188zM734 384h204c24 0 44 18 44 42-34.625 138.041-73.705 271.628-110 408-10 36-42 62-82 62h-556c-40 0-72-26-82-62l-108-396c-2-4-2-8-2-12 0-24 20-42 44-42h204l186-280c8-12 22-18 36-18s28 6 36 18z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "shopping_basket"
- ],
- "defaultCode": 59595,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 688,
- "ligatures": "shopping_basket",
- "id": 684,
- "prevSize": 24,
- "name": "shopping_basket",
- "code": 59595
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 684
- },
- {
- "icon": {
- "paths": [
- "M170 554h428v86h-428v-86zM170 384h684v86h-684v-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "short_text"
- ],
- "defaultCode": 57953,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 689,
- "ligatures": "short_text",
- "id": 685,
- "prevSize": 24,
- "name": "short_text",
- "code": 57953
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 685
- },
- {
- "icon": {
- "paths": [
- "M150 788l-64-64 320-320 170 172 302-340 60 60-362 408-170-172z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "show_chart"
- ],
- "defaultCode": 59105,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 690,
- "ligatures": "show_chart",
- "id": 686,
- "prevSize": 24,
- "name": "show_chart",
- "code": 59105
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 686
- },
- {
- "icon": {
- "paths": [
- "M632 572l134 134 88-88v236h-236l88-88-134-134zM618 170h236v236l-88-88-536 536-60-60 536-536zM452 392l-60 60-222-222 60-60z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "shuffle"
- ],
- "defaultCode": 57411,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 691,
- "ligatures": "shuffle",
- "id": 687,
- "prevSize": 24,
- "name": "shuffle",
- "code": 57411
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 687
- },
- {
- "icon": {
- "paths": [
- "M86 938l852-852v852h-852z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "signal_cellular_4_bar"
- ],
- "defaultCode": 57800,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 692,
- "ligatures": "signal_cellular_4_bar",
- "id": 688,
- "prevSize": 24,
- "name": "signal_cellular_4_bar",
- "code": 57800
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 688
- },
- {
- "icon": {
- "paths": [
- "M86 938l852-852v256h-170v596h-682zM854 938v-84h84v84h-84zM854 768v-342h84v342h-84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "signal_cellular_connected_no_internet_4_bar"
- ],
- "defaultCode": 57805,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 693,
- "ligatures": "signal_cellular_connected_no_internet_4_bar",
- "id": 689,
- "prevSize": 24,
- "name": "signal_cellular_connected_no_internet_4_bar",
- "code": 57805
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 689
- },
- {
- "icon": {
- "paths": [
- "M938 86v852h-852zM854 292l-562 562h562v-562z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "signal_cellular_null"
- ],
- "defaultCode": 57807,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 694,
- "ligatures": "signal_cellular_null",
- "id": 690,
- "prevSize": 24,
- "name": "signal_cellular_null",
- "code": 57807
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 690
- },
- {
- "icon": {
- "paths": [
- "M204 192l734 736-54 54-84-86h-758l378-378-270-272zM896 42v734l-366-366z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "signal_cellular_off"
- ],
- "defaultCode": 57808,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 695,
- "ligatures": "signal_cellular_off",
- "id": 691,
- "prevSize": 24,
- "name": "signal_cellular_off",
- "code": 57808
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 691
- },
- {
- "icon": {
- "paths": [
- "M512 916l-496-618c20-14 210-170 496-170s476 156 496 170z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "signal_wifi_4_bar"
- ],
- "defaultCode": 57816,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 696,
- "ligatures": "signal_wifi_4_bar",
- "id": 692,
- "prevSize": 24,
- "name": "signal_wifi_4_bar",
- "code": 57816
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 692
- },
- {
- "icon": {
- "paths": [
- "M662 618v112l-150 188-494-620c18-12 208-170 494-170s476 158 494 170l-88 112c-12-4-26-4-44-4-120 0-212 92-212 212zM938 682v-64c0-34-30-64-64-64s-64 30-64 64v64h128zM982 682c22 0 42 22 42 44v170c0 22-20 42-42 42h-214c-22 0-42-20-42-42v-170c0-22 20-44 42-44v-64c0-60 46-106 106-106s108 46 108 106v64z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "signal_wifi_4_bar_lock"
- ],
- "defaultCode": 57817,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 697,
- "ligatures": "signal_wifi_4_bar_lock",
- "id": 693,
- "prevSize": 24,
- "name": "signal_wifi_4_bar_lock",
- "code": 57817
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 693
- },
- {
- "icon": {
- "paths": [
- "M140 62c244.604 245.396 490.948 489.052 734 736l-54 54-142-142-166 206-496-618c10-8 64-52 156-94l-86-88zM1008 298l-232 290-442-440c54-12 114-20 178-20 286 0 476 156 496 170z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "signal_wifi_off"
- ],
- "defaultCode": 57818,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 698,
- "ligatures": "signal_wifi_off",
- "id": 694,
- "prevSize": 24,
- "name": "signal_wifi_off",
- "code": 57818
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 694
- },
- {
- "icon": {
- "paths": [
- "M726 640v-170h-86v170h86zM554 554v-84h-84v84h84zM554 810v-170h-84v170h84zM384 640v-170h-86v170h86zM726 810v-84h-86v84h86zM384 810v-84h-86v84h86zM852 170l2 684c0 46-40 84-86 84h-512c-46 0-86-38-86-84v-512l256-256h342c46 0 84 38 84 84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "sim_card"
- ],
- "defaultCode": 58155,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 699,
- "ligatures": "sim_card",
- "id": 695,
- "prevSize": 24,
- "name": "sim_card",
- "code": 58155
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 695
- },
- {
- "icon": {
- "paths": [
- "M554 554v-212h-84v212h84zM554 726v-86h-84v86h84zM768 86c46 0 86 38 86 84v684c0 46-40 84-86 84h-512c-46 0-86-38-86-84l2-512 254-256h342z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "sim_card_alert"
- ],
- "defaultCode": 58916,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 700,
- "ligatures": "sim_card_alert",
- "id": 696,
- "prevSize": 24,
- "name": "sim_card_alert",
- "code": 58916
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 696
- },
- {
- "icon": {
- "paths": [
- "M682 256h86v512h-86v-512zM256 768v-512l362 256z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "skip_next"
- ],
- "defaultCode": 57412,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 701,
- "ligatures": "skip_next",
- "id": 697,
- "prevSize": 24,
- "name": "skip_next",
- "code": 57412
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 697
- },
- {
- "icon": {
- "paths": [
- "M406 512l362-256v512zM256 256h86v512h-86v-512z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "skip_previous"
- ],
- "defaultCode": 57413,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 702,
- "ligatures": "skip_previous",
- "id": 698,
- "prevSize": 24,
- "name": "skip_previous",
- "code": 57413
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 698
- },
- {
- "icon": {
- "paths": [
- "M810 810v-596h-596v596h596zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596zM426 342l214 170-214 170v-340z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "slideshow"
- ],
- "defaultCode": 58395,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 703,
- "ligatures": "slideshow",
- "id": 699,
- "prevSize": 24,
- "name": "slideshow",
- "code": 58395
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 699
- },
- {
- "icon": {
- "paths": [
- "M938 512c0 220-168 402-382 424v-86c168-22 298-166 298-338s-130-316-298-338v-86c214 22 382 204 382 424zM242 842l60-60c48 36 106 60 168 68v86c-86-8-164-42-228-94zM174 554c8 62 32 120 68 166l-60 62c-52-64-86-142-94-228h86zM242 302c-36 48-60 106-68 168h-86c8-86 42-164 94-228zM470 174c-62 8-120 32-168 68l-60-60c64-52 142-86 228-94v86zM556 418l126 94c-85.639 63.694-170.958 127.709-256 192z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "slow_motion_video"
- ],
- "defaultCode": 57448,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 704,
- "ligatures": "slow_motion_video",
- "id": 700,
- "prevSize": 24,
- "name": "slow_motion_video",
- "code": 57448
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 700
- },
- {
- "icon": {
- "paths": [
- "M726 810v-596h-428v596h428zM726 44c46 0 84 38 84 84v768c0 46-38 86-84 86h-428c-46 0-84-40-84-86v-768c0-46 38-86 84-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "stay_primary_portrait"
- ],
- "defaultCode": 57558,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 705,
- "ligatures": "smartphone, stay_current_portrait, stay_primary_portrait",
- "id": 701,
- "prevSize": 24,
- "name": "stay_primary_portrait",
- "code": 57558
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 701
- },
- {
- "icon": {
- "paths": [
- "M726 680l-126-126h126v126zM618 372c-78 0-142-66-142-144s64-142 142-142v64c-44 0-78 30-78 74s34 86 78 86h66c80 0 148 58 148 134v68h-64v-54c0-56-40-86-84-86h-66zM804 208c80 38 134 120 134 216v88h-64v-88c0-96-74-174-170-174v-64c44 0 78-36 78-80h64c0 40-16 76-42 102zM768 554h64v128h-64v-128zM874 554h64v128h-64v-128zM86 256l52-54 726 726-54 54-298-300h-426v-128h298z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "smoke_free"
- ],
- "defaultCode": 60234,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 706,
- "ligatures": "smoke_free",
- "id": 702,
- "prevSize": 24,
- "name": "smoke_free",
- "code": 60234
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 702
- },
- {
- "icon": {
- "paths": [
- "M684 436c80 0 148 56 148 134v70h-64v-56c0-56-40-86-84-86h-66c-78 0-142-66-142-144s64-142 142-142v64c-44 0-78 30-78 74s34 86 78 86h66zM804 330c80 38 134 120 134 214v96h-64v-96c0-96-74-172-170-172v-64c44 0 78-36 78-80s-34-78-78-78v-64c78 0 142 64 142 142 0 40-16 76-42 102zM768 682h64v128h-64v-128zM874 682h64v128h-64v-128zM86 682h640v128h-640v-128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "smoking_rooms"
- ],
- "defaultCode": 60235,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 707,
- "ligatures": "smoking_rooms",
- "id": 703,
- "prevSize": 24,
- "name": "smoking_rooms",
- "code": 60235
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 703
- },
- {
- "icon": {
- "paths": [
- "M726 470v-86h-86v86h86zM554 470v-86h-84v86h84zM384 470v-86h-86v86h86zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "textsms"
- ],
- "defaultCode": 57560,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 708,
- "ligatures": "sms, textsms",
- "id": 704,
- "prevSize": 24,
- "name": "textsms",
- "code": 57560
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 704
- },
- {
- "icon": {
- "paths": [
- "M384 470v-86h256v76l-154 180h154v86h-256v-78l154-178h-154zM512 854c166 0 298-134 298-300s-132-298-298-298-298 132-298 298 132 300 298 300zM512 170c212 0 384 172 384 384s-172 384-384 384-384-172-384-384 172-384 384-384zM938 244l-54 66-196-166 54-64zM336 144l-196 164-54-64 196-164z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "snooze"
- ],
- "defaultCode": 57414,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 709,
- "ligatures": "snooze",
- "id": 705,
- "prevSize": 24,
- "name": "snooze",
- "code": 57414
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 705
- },
- {
- "icon": {
- "paths": [
- "M128 554v-84h512v84h-512zM128 256h768v86h-768v-86zM128 768v-86h256v86h-256z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "sort"
- ],
- "defaultCode": 57700,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 710,
- "ligatures": "sort",
- "id": 706,
- "prevSize": 24,
- "name": "sort",
- "code": 57700
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 706
- },
- {
- "icon": {
- "paths": [
- "M672 688h260v68h-364v-54l252-366h-250v-68h354v54zM212 582h166l-84-222zM260 268h70l192 488h-78l-40-104h-218l-40 104h-78zM438 826h198l-100 100zM638 198h-202l100-100z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "sort_by_alpha"
- ],
- "defaultCode": 57427,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 711,
- "ligatures": "sort_by_alpha",
- "id": 707,
- "prevSize": 24,
- "name": "sort_by_alpha",
- "code": 57427
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 707
- },
- {
- "icon": {
- "paths": [
- "M660 410c-54 30-104 68-148 114-44-46-94-84-148-114 10-118 58-232 150-324 90 90 138 204 146 324zM86 426c190.34 0 343.492 108.446 426 234 82.593-125.685 235.712-234 426-234 0 226-142 418-342 490-28 10-54 16-84 22-30-4-58-12-84-22-200-72-342-264-342-490z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "spa"
- ],
- "defaultCode": 60236,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 712,
- "ligatures": "spa",
- "id": 708,
- "prevSize": 24,
- "name": "spa",
- "code": 60236
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 708
- },
- {
- "icon": {
- "paths": [
- "M768 384h86v256h-684v-256h86v170h512v-170z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "space_bar"
- ],
- "defaultCode": 57942,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 713,
- "ligatures": "space_bar",
- "id": 709,
- "prevSize": 24,
- "name": "space_bar",
- "code": 57942
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 709
- },
- {
- "icon": {
- "paths": [
- "M512 512c70 0 128 58 128 128s-58 128-128 128-128-58-128-128 58-128 128-128zM512 854c118 0 214-96 214-214s-96-214-214-214-214 96-214 214 96 214 214 214zM512 170c-48 0-86 40-86 86s38 86 86 86c46 0 86-40 86-86s-40-86-86-86zM726 86c46 0 84 38 84 84v684c0 46-38 84-84 84h-428c-46 0-84-38-84-84v-684c0-46 38-84 84-84h428z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "speaker"
- ],
- "defaultCode": 58157,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 714,
- "ligatures": "speaker",
- "id": 710,
- "prevSize": 24,
- "name": "speaker",
- "code": 58157
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 710
- },
- {
- "icon": {
- "paths": [
- "M256 214v682h426v86h-426c-48 0-86-40-86-86v-682h86zM490 534c0-58 50-108 108-108s106 50 106 108-48 106-106 106-108-48-108-106zM598 704c94 0 170-76 170-170s-76-172-170-172-172 78-172 172 78 170 172 170zM598 128c-46 0-86 38-86 86s40 84 86 84 84-36 84-84-38-86-84-86zM776 42c42 0 78 36 78 78v614c0 42-36 76-78 76h-358c-42 0-76-34-76-76v-614c0-42 34-78 76-78h358z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "speaker_group"
- ],
- "defaultCode": 58158,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 715,
- "ligatures": "speaker_group",
- "id": 711,
- "prevSize": 24,
- "name": "speaker_group",
- "code": 58158
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 711
- },
- {
- "icon": {
- "paths": [
- "M768 342v-86h-342v86h342zM768 470v-86h-342v86h342zM640 598v-86h-214v86h214zM342 342v-86h-86v86h86zM342 470v-86h-86v86h86zM342 598v-86h-86v86h86zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "speaker_notes"
- ],
- "defaultCode": 59597,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 716,
- "ligatures": "speaker_notes",
- "id": 712,
- "prevSize": 24,
- "name": "speaker_notes",
- "code": 59597
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 712
- },
- {
- "icon": {
- "paths": [
- "M854 86c46 0 84 38 84 84v512c0 46-36 84-82 86l-298-298h210v-86h-296l-42-42h338v-86h-342v82l-252-252h680zM256 470h86l-86-86v86zM342 598v-86h-86v86h86zM54 74l884 884-54 54-244-244h-384l-170 170v-724l-86-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "speaker_notes_off"
- ],
- "defaultCode": 59690,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 717,
- "ligatures": "speaker_notes_off",
- "id": 713,
- "prevSize": 24,
- "name": "speaker_notes_off",
- "code": 59690
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 713
- },
- {
- "icon": {
- "paths": [
- "M640 854v-342h-256v342h256zM634 428c26 0 48 22 48 48v414c0 26-22 48-48 48h-244c-26 0-48-22-48-48v-414c0-26 22-50 48-50zM512 42c128 0 246 54 330 138l-60 60c-70-70-164-112-270-112s-200 42-270 112l-60-60c84-84 202-138 330-138zM298 302c54-54 130-88 214-88s160 34 214 88l-62 60c-38-38-92-62-152-62s-114 24-152 62z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "speaker_phone"
- ],
- "defaultCode": 57554,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 718,
- "ligatures": "speaker_phone",
- "id": 714,
- "prevSize": 24,
- "name": "speaker_phone",
- "code": 57554
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 714
- },
- {
- "icon": {
- "paths": [
- "M922 494l60 60-406 406-216-218 60-60 156 158zM274 470h176l-88-236zM532 682l-50-128h-240l-48 128h-90l218-554h80l218 554h-88z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "spellcheck"
- ],
- "defaultCode": 59598,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 719,
- "ligatures": "spellcheck",
- "id": 715,
- "prevSize": 24,
- "name": "spellcheck",
- "code": 59598
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 715
- },
- {
- "icon": {
- "paths": [
- "M512 658l160 96-42-182 142-124-188-16-72-172-72 172-188 16 142 124-42 182zM938 394l-232 202 70 300-264-160-264 160 70-300-232-202 306-26 120-282 120 282z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "star_border"
- ],
- "defaultCode": 59450,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 720,
- "ligatures": "star_border",
- "id": 716,
- "prevSize": 24,
- "name": "star_border",
- "code": 59450
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 716
- },
- {
- "icon": {
- "paths": [
- "M512 658l160 96-42-182 142-124-188-16-72-172v398zM938 394l-232 202 70 300-264-160-264 160 70-300-232-202 306-26 120-282 120 282z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "star_half"
- ],
- "defaultCode": 59449,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 721,
- "ligatures": "star_half",
- "id": 717,
- "prevSize": 24,
- "name": "star_half",
- "code": 59449
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 717
- },
- {
- "icon": {
- "paths": [
- "M692 768l-48-206 160-138-210-18-82-192-82 194-210 16 160 138-48 206 180-108zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "stars"
- ],
- "defaultCode": 59600,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 722,
- "ligatures": "stars",
- "id": 718,
- "prevSize": 24,
- "name": "stars",
- "code": 59600
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 718
- },
- {
- "icon": {
- "paths": [
- "M810 298h-596v428h596v-428zM44 298c0-46 38-84 84-84h768c46 0 86 38 86 84v428c0 46-40 84-86 84h-768c-46 0-86-38-86-84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "stay_primary_landscape"
- ],
- "defaultCode": 57557,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 723,
- "ligatures": "stay_current_landscape, stay_primary_landscape",
- "id": 719,
- "prevSize": 24,
- "name": "stay_primary_landscape",
- "code": 57557
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 719
- },
- {
- "icon": {
- "paths": [
- "M256 256h512v512h-512v-512z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "stop"
- ],
- "defaultCode": 57415,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 724,
- "ligatures": "stop",
- "id": 720,
- "prevSize": 24,
- "name": "stop",
- "code": 57415
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 720
- },
- {
- "icon": {
- "paths": [
- "M298 640c40-56 90-88 156-104l-68-68c-50 48-74 108-88 172zM102 74l842 842-54 54-116-116h-774v-86h170c-48 0-84-38-84-84v-428c0-26 10-46 28-62l-66-66zM938 684c0 32-18 60-44 74l-236-236 68-64-172-158v90c-8 2-14 2-22 4l-224-222h546c46 0 84 36 84 84v428zM906 768h118v86h-34z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "stop_screen_share"
- ],
- "defaultCode": 57571,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 725,
- "ligatures": "stop_screen_share",
- "id": 721,
- "prevSize": 24,
- "name": "stop_screen_share",
- "code": 57571
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 721
- },
- {
- "icon": {
- "paths": [
- "M170 470v84h86v-84h-86zM86 598v-172h852v172h-852zM256 298v-84h-86v84h86zM86 170h852v172h-852v-172zM170 726v84h86v-84h-86zM86 854v-172h852v172h-852z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "storage"
- ],
- "defaultCode": 57819,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 726,
- "ligatures": "storage",
- "id": 722,
- "prevSize": 24,
- "name": "storage",
- "code": 57819
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 722
- },
- {
- "icon": {
- "paths": [
- "M512 768v-170h-256v170h256zM896 598h-42v256h-86v-256h-170v256h-428v-256h-42v-86l42-214h684l42 214v86zM854 170v86h-684v-86h684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "store_mall_directory"
- ],
- "defaultCode": 58723,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 727,
- "ligatures": "store, store_mall_directory",
- "id": 723,
- "prevSize": 24,
- "name": "store_mall_directory",
- "code": 58723
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 723
- },
- {
- "icon": {
- "paths": [
- "M896 682v-340h-86v170h-84v-170h-86v170h-86v-170h-84v170h-86v-170h-86v170h-84v-170h-86v340h768zM896 256c46 0 86 40 86 86v340c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-340c0-46 40-86 86-86h768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "straighten"
- ],
- "defaultCode": 58396,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 728,
- "ligatures": "straighten",
- "id": 724,
- "prevSize": 24,
- "name": "straighten",
- "code": 58396
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 724
- },
- {
- "icon": {
- "paths": [
- "M490 256c0 76 32 146 82 196l-418 418c-16-16-26-36-26-60v-596c0-46 40-86 86-86h308c-20 38-32 82-32 128zM554 256c0-118 96-214 214-214s214 96 214 214-96 214-214 214-214-96-214-214zM536 612c64-48 146-78 232-78 44 0 88 8 128 22v254c0 46-40 86-86 86h-298v-234c0-20 10-38 24-50z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "streetview"
- ],
- "defaultCode": 58734,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 729,
- "ligatures": "streetview",
- "id": 725,
- "prevSize": 24,
- "name": "streetview",
- "code": 58734
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 725
- },
- {
- "icon": {
- "paths": [
- "M400 560c0 76.243 48.309 108 124 108 52.313 0 98-21.34 98-72 0-47.832-25.37-58.685-60-76-6-2-16-6-24-8h-410v-86h768v86h-166c2 4 6 10 8 14 8 20 14 44 14 70 0 92.509-60.376 138.965-134 160-28 8-58 12-92 12-20 0-42-2-62-6-43.831-8.766-81.207-20.905-112-44-45.673-34.254-78-79.826-78-158h126zM622 320c0-61.554-39.204-90-102-90-45.146 0-79.257 14.514-94 44-4 8-6 18-6 28 0 20 12 38 32 52 16 10 32 20 60 30h-196c-2-4-6-6-8-10-12-20-16-44-16-72 0-57.483 29.861-98.689 64-126 41.082-28.758 95.625-48 166-48 70.131 0 128.265 20.039 166 54 35.121 31.608 62 75.894 62 138h-128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "strikethrough_s"
- ],
- "defaultCode": 57943,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 730,
- "ligatures": "strikethrough_s",
- "id": 726,
- "prevSize": 24,
- "name": "strikethrough_s",
- "code": 57943
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 726
- },
- {
- "icon": {
- "paths": [
- "M250 842v-270l148 356h-62c-46 0-86-40-86-86zM336 374c24 0 42-20 42-44s-18-42-42-42-42 18-42 42 18 44 42 44zM940 680c18 44-2 94-46 112l-314 130c-10 4-22 6-34 6-34 0-64-20-78-52l-212-512c-4-12-6-22-6-34 0-32 20-62 52-76l316-130c12-4 22-6 34-6 32 0 62 20 76 52zM108 838c-44-18-64-66-46-110l104-250v384z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "style"
- ],
- "defaultCode": 58397,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 731,
- "ligatures": "style",
- "id": 727,
- "prevSize": 24,
- "name": "style",
- "code": 58397
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 727
- },
- {
- "icon": {
- "paths": [
- "M470 384l60 60-154 154h392v-428h86v512h-478l154 154-60 60-256-256z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "subdirectory_arrow_left"
- ],
- "defaultCode": 58841,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 732,
- "ligatures": "subdirectory_arrow_left",
- "id": 728,
- "prevSize": 24,
- "name": "subdirectory_arrow_left",
- "code": 58841
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 728
- },
- {
- "icon": {
- "paths": [
- "M810 640l-256 256-60-60 154-154h-478v-512h86v428h392l-154-154 60-60z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "subdirectory_arrow_right"
- ],
- "defaultCode": 58842,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 733,
- "ligatures": "subdirectory_arrow_right",
- "id": 729,
- "prevSize": 24,
- "name": "subdirectory_arrow_right",
- "code": 58842
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 729
- },
- {
- "icon": {
- "paths": [
- "M170 214h684v84h-684v-84zM170 640v-86h684v86h-684zM854 384v86h-684v-86h684zM598 726v84h-428v-84h428z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "subject"
- ],
- "defaultCode": 59602,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 734,
- "ligatures": "subject",
- "id": 730,
- "prevSize": 24,
- "name": "subject",
- "code": 59602
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 730
- },
- {
- "icon": {
- "paths": [
- "M682 682l-256-138v278zM938 512v342c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-342c0-46 38-86 84-86h684c46 0 84 40 84 86zM768 86v84h-512v-84h512zM854 342h-684v-86h684v86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "subscriptions"
- ],
- "defaultCode": 57444,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 735,
- "ligatures": "subscriptions",
- "id": 731,
- "prevSize": 24,
- "name": "subscriptions",
- "code": 57444
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 731
- },
- {
- "icon": {
- "paths": [
- "M854 598v-86h-428v86h428zM854 768v-86h-172v86h172zM598 768v-86h-428v86h428zM170 512v86h172v-86h-172zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "subtitles"
- ],
- "defaultCode": 57416,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 736,
- "ligatures": "subtitles",
- "id": 732,
- "prevSize": 24,
- "name": "subtitles",
- "code": 57416
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 732
- },
- {
- "icon": {
- "paths": [
- "M768 678v-294c0-112-114-128-256-128-128 0-256 16-256 128v294c0 62 50 112 112 112l-48 48v16h72l64-64h120l64 64h64v-16l-48-48c62 0 112-50 112-112zM760 120c114 44 178 138 178 258v560h-852v-560c0-120 64-214 178-258 76-30 168-34 248-34s172 4 248 34zM300 384h426v214h-426v-214zM320 682c0-24 18-42 42-42s44 18 44 42-20 44-44 44-42-20-42-44zM618 682c0-24 20-42 44-42s42 18 42 42-18 44-42 44-44-20-44-44z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "subway"
- ],
- "defaultCode": 58735,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 737,
- "ligatures": "subway",
- "id": 733,
- "prevSize": 24,
- "name": "subway",
- "code": 58735
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 733
- },
- {
- "icon": {
- "paths": [
- "M384 554c28 0 64 4 102 12-88 48-102 112-102 148v96h-298v-106c0-100 198-150 298-150zM704 598c78 0 234 38 234 116v96h-468v-96c0-78 156-116 234-116zM384 470c-70 0-128-58-128-128s58-128 128-128 128 58 128 128-58 128-128 128zM704 512c-58 0-106-48-106-106s48-108 106-108 106 50 106 108-48 106-106 106z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "supervisor_account"
- ],
- "defaultCode": 59603,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 738,
- "ligatures": "supervisor_account",
- "id": 734,
- "prevSize": 24,
- "name": "supervisor_account",
- "code": 59603
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 734
- },
- {
- "icon": {
- "paths": [
- "M512 426c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM754 754c66-66 100-154 100-242s-34-176-100-242l-62 62c50 50 76 114 76 180s-24 132-74 182zM512 682c94 0 170-76 170-170s-76-170-170-170-170 76-170 170 76 170 170 170zM332 692c-50-50-76-114-76-180s24-132 74-182l-60-60c-66 66-100 154-100 242s34 176 100 242zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "surround_sound"
- ],
- "defaultCode": 57417,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 739,
- "ligatures": "surround_sound",
- "id": 735,
- "prevSize": 24,
- "name": "surround_sound",
- "code": 57417
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 735
- },
- {
- "icon": {
- "paths": [
- "M768 170l170 172h-128v298c0 94-76 170-170 170s-170-76-170-170v-298c0-46-40-86-86-86s-86 40-86 86v298h128l-170 170-170-170h128v-298c0-94 76-172 170-172s170 78 170 172v298c0 46 40 86 86 86s86-40 86-86v-298h-128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "swap_calls"
- ],
- "defaultCode": 57559,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 740,
- "ligatures": "swap_calls",
- "id": 736,
- "prevSize": 24,
- "name": "swap_calls",
- "code": 57559
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 736
- },
- {
- "icon": {
- "paths": [
- "M896 384l-170 170v-128h-300v-84h300v-128zM298 470v128h300v84h-300v128l-170-170z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "swap_horiz"
- ],
- "defaultCode": 59604,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 741,
- "ligatures": "swap_horiz",
- "id": 737,
- "prevSize": 24,
- "name": "swap_horiz",
- "code": 59604
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 737
- },
- {
- "icon": {
- "paths": [
- "M384 128l170 170h-128v300h-84v-300h-128zM682 726h128l-170 170-170-170h128v-300h84v300z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "swap_vert"
- ],
- "defaultCode": 59605,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 742,
- "ligatures": "swap_vert",
- "id": 738,
- "prevSize": 24,
- "name": "swap_vert",
- "code": 59605
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 738
- },
- {
- "icon": {
- "paths": [
- "M746 640h-106v-170h-86v170h-106l150 150zM278 384h106v170h86v-170h106l-150-150zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "swap_vertical_circle"
- ],
- "defaultCode": 59606,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 743,
- "ligatures": "swap_vertical_circle",
- "id": 739,
- "prevSize": 24,
- "name": "swap_vertical_circle",
- "code": 59606
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 739
- },
- {
- "icon": {
- "paths": [
- "M640 662l150-150-150-150v108h-256v-108l-150 150 150 150v-108h256v108zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h136l78-84h256l78 84h136z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "switch_camera"
- ],
- "defaultCode": 58398,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 744,
- "ligatures": "switch_camera",
- "id": 740,
- "prevSize": 24,
- "name": "switch_camera",
- "code": 58398
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 740
- },
- {
- "icon": {
- "paths": [
- "M554 662l150-150-150-150v108h-256v-108l-148 150 148 150v-108h256v108zM768 406l170-172v556l-170-172v150c0 24-18 42-42 42h-598c-24 0-42-18-42-42v-512c0-24 18-42 42-42h598c24 0 42 18 42 42v150z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "switch_video"
- ],
- "defaultCode": 58399,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 745,
- "ligatures": "switch_video",
- "id": 741,
- "prevSize": 24,
- "name": "switch_video",
- "code": 58399
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 741
- },
- {
- "icon": {
- "paths": [
- "M854 170l-102 102c62 62 102 146 102 240 0 66-20 128-52 180l-64-62c18-36 30-76 30-118 0-70-30-134-76-180l-94 94v-256h256zM122 230l54-54 670 672-54 54-100-100c-30 18-62 32-96 40v-88c12-4 24-10 34-16l-344-344c-18 36-30 76-30 118 0 70 30 134 76 180l94-94v256h-256l102-102c-62-62-102-146-102-240 0-66 20-128 52-180zM426 270c-12 4-22 10-32 16l-62-64c30-18 60-32 94-40v88z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "sync_disabled"
- ],
- "defaultCode": 58920,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 746,
- "ligatures": "sync_disabled",
- "id": 742,
- "prevSize": 24,
- "name": "sync_disabled",
- "code": 58920
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 742
- },
- {
- "icon": {
- "paths": [
- "M470 554v-256h84v256h-84zM896 170l-100 102c62 62 100 146 100 240 0 160-108 292-256 330v-88c100-34 170-130 170-242 0-70-28-134-74-180l-96 94v-256h256zM470 726v-86h84v86h-84zM128 512c0-160 108-292 256-330v88c-100 34-170 130-170 242 0 70 28 134 74 180l96-94v256h-256l100-102c-62-62-100-146-100-240z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "sync_problem"
- ],
- "defaultCode": 58921,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 747,
- "ligatures": "sync_problem",
- "id": 743,
- "prevSize": 24,
- "name": "sync_problem",
- "code": 58921
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 743
- },
- {
- "icon": {
- "paths": [
- "M682 554l-170 172-170-172h128v-212h84v212h128zM726 810v-596h-428v596h428zM726 44c46 0 84 38 84 84v768c0 46-38 86-84 86h-428c-46 0-84-40-84-86v-768c0-46 38-86 84-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "system_update"
- ],
- "defaultCode": 58922,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 748,
- "ligatures": "system_update",
- "id": 744,
- "prevSize": 24,
- "name": "system_update",
- "code": 58922
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 744
- },
- {
- "icon": {
- "paths": [
- "M896 150c46 0 86 38 86 84v598c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-598c0-46 40-84 86-84h256v84h-256v598h768v-598h-256v-84h256zM512 704l-170-170h128v-384h84v384h128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "system_update_alt"
- ],
- "defaultCode": 59607,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 749,
- "ligatures": "system_update_alt",
- "id": 745,
- "prevSize": 24,
- "name": "system_update_alt",
- "code": 59607
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 745
- },
- {
- "icon": {
- "paths": [
- "M896 810v-426h-342v-170h-426v596h768zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "tab"
- ],
- "defaultCode": 59608,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 750,
- "ligatures": "tab",
- "id": 746,
- "prevSize": 24,
- "name": "tab",
- "code": 59608
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 746
- },
- {
- "icon": {
- "paths": [
- "M726 896v-86h84v86h-84zM554 896v-86h86v86h-86zM896 554v-84h86v84h-86zM896 896v-86h86c0 46-40 86-86 86zM214 214v-86h84v86h-84zM214 896v-86h84v86h-84zM384 214v-86h86v86h-86zM896 726v-86h86v86h-86zM896 128c46 0 86 40 86 86v170h-428v-256h342zM128 896c-46 0-86-40-86-86h86v86zM42 726v-86h86v86h-86zM384 896v-86h86v86h-86zM42 214c0-46 40-86 86-86v86h-86zM42 554v-84h86v84h-86zM42 384v-86h86v86h-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "tab_unselected"
- ],
- "defaultCode": 59609,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 751,
- "ligatures": "tab_unselected",
- "id": 747,
- "prevSize": 24,
- "name": "tab_unselected",
- "code": 59609
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 747
- },
- {
- "icon": {
- "paths": [
- "M810 768v-512h-596v512h596zM896 170c46 0 86 40 86 86l-2 512c0 46-38 86-84 86h-768c-46 0-86-40-86-86v-512c0-46 40-86 86-86h768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "tablet"
- ],
- "defaultCode": 58159,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 752,
- "ligatures": "tablet",
- "id": 748,
- "prevSize": 24,
- "name": "tablet",
- "code": 58159
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 748
- },
- {
- "icon": {
- "paths": [
- "M822 810v-682h-620v682h620zM598 938v-42h-172v42h172zM768 0c70 0 128 58 128 128v768c0 70-58 128-128 128h-512c-70 0-128-58-128-128v-768c0-70 58-128 128-128h512z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "tablet_android"
- ],
- "defaultCode": 58160,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 753,
- "ligatures": "tablet_android",
- "id": 749,
- "prevSize": 24,
- "name": "tablet_android",
- "code": 58160
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 749
- },
- {
- "icon": {
- "paths": [
- "M810 810v-682h-640v682h640zM490 982c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM790 0c58 0 106 48 106 106v812c0 58-48 106-106 106h-598c-58 0-106-48-106-106v-812c0-58 48-106 106-106h598z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "tablet_mac"
- ],
- "defaultCode": 58161,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 754,
- "ligatures": "tablet_mac",
- "id": 750,
- "prevSize": 24,
- "name": "tablet_mac",
- "code": 58161
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 750
- },
- {
- "icon": {
- "paths": [
- "M726 44c46 0 84 38 84 84v726c0 46-38 84-84 84h-90c-4-60-18-116-40-170h130v-554h-428v256c-28-12-54-22-84-28v-314c0-46 38-86 84-86zM86 512c260 0 468 210 468 470h-84c0-212-172-384-384-384v-86zM86 854c70 0 128 58 128 128h-128v-128zM86 682c166 0 298 134 298 300h-86c0-118-94-214-212-214v-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "tap_and_play"
- ],
- "defaultCode": 58923,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 755,
- "ligatures": "tap_and_play",
- "id": 751,
- "prevSize": 24,
- "name": "tap_and_play",
- "code": 58923
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 751
- },
- {
- "icon": {
- "paths": [
- "M918 384v128h-128v298h-128v-298h-128v-128h384zM106 170h556v128h-214v512h-128v-512h-214v-128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "text_fields"
- ],
- "defaultCode": 57954,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 756,
- "ligatures": "text_fields",
- "id": 752,
- "prevSize": 24,
- "name": "text_fields",
- "code": 57954
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 752
- },
- {
- "icon": {
- "paths": [
- "M512 256l-80 214h160zM406 546l-40 94h-88l202-470h64l202 470h-88l-40-94h-212zM214 726h596v84h-596v-84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "text_format"
- ],
- "defaultCode": 57701,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 757,
- "ligatures": "text_format",
- "id": 753,
- "prevSize": 24,
- "name": "text_format",
- "code": 57701
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 753
- },
- {
- "icon": {
- "paths": [
- "M396 896l500-500v122l-378 378h-122zM896 810c0 45.948-40.071 86-86 86h-84l170-170v84zM214 128h84l-170 170v-84c0-46 40-86 86-86zM506 128h122l-500 500v-122zM832 132c30 8 54 30 62 60l-702 700c-29.35-8.386-51.612-30.641-60-60z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "texture"
- ],
- "defaultCode": 58401,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 758,
- "ligatures": "texture",
- "id": 754,
- "prevSize": 24,
- "name": "texture",
- "code": 58401
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 754
- },
- {
- "icon": {
- "paths": [
- "M810 128h172v512h-172v-512zM640 128c46 0 86 40 86 86v426c0 24-10 44-26 60l-280 282-46-46c-12-12-18-26-18-44v-14l42-196h-270c-46 0-86-38-86-84l2-4h-2v-82c0-12 2-22 6-32l130-300c12-30 42-52 78-52h384z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "thumb_down"
- ],
- "defaultCode": 59611,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 759,
- "ligatures": "thumb_down",
- "id": 755,
- "prevSize": 24,
- "name": "thumb_down",
- "code": 59611
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 755
- },
- {
- "icon": {
- "paths": [
- "M982 426l-2 4h2v82c0 12-2 22-6 32l-130 300c-12 30-42 52-78 52h-384c-46 0-86-40-86-86v-426c0-24 10-44 26-60l280-282 46 46c12 12 18 26 18 44v14l-42 196h270c46 0 86 38 86 84zM42 896v-512h172v512h-172z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "thumb_up"
- ],
- "defaultCode": 59612,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 760,
- "ligatures": "thumb_up",
- "id": 756,
- "prevSize": 24,
- "name": "thumb_up",
- "code": 59612
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 756
- },
- {
- "icon": {
- "paths": [
- "M960 426c36 0 64 28 64 64v278c0 18-6 34-18 46l-212 210-34-34c-8-8-14-20-14-34 9.903-48.764 20.016-97.317 30-146h-222c-24 0-42-18-42-42v-54c0-8 2-14 4-22l98-226c10-22 32-40 58-40h288zM512 256v54c0 8-2 14-4 22l-98 226c-10 22-32 40-58 40h-288c-36 0-64-28-64-64v-278c0-18 6-34 18-46l212-210 34 34c8 8 14 20 14 34-9.903 48.764-20.016 97.317-30 146h222c24 0 42 18 42 42z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "thumbs_up_down"
- ],
- "defaultCode": 59613,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 761,
- "ligatures": "thumbs_up_down",
- "id": 757,
- "prevSize": 24,
- "name": "thumbs_up_down",
- "code": 59613
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 757
- },
- {
- "icon": {
- "paths": [
- "M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM692 332c100 100 102 260 2 360s-262 100-362 0l180-180v-256c66 0 130 26 180 76z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "timelapse"
- ],
- "defaultCode": 58402,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 762,
- "ligatures": "timelapse",
- "id": 758,
- "prevSize": 24,
- "name": "timelapse",
- "code": 58402
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 758
- },
- {
- "icon": {
- "paths": [
- "M982 342c0 46-40 84-86 84-8 0-16 0-22-2l-152 152c2 6 4 14 4 22 0 46-40 84-86 84s-86-38-86-84c0-8 2-16 4-22l-110-110c-6 2-14 4-22 4s-16-2-22-4l-194 194c2 6 4 14 4 22 0 46-40 86-86 86s-86-40-86-86 40-84 86-84c8 0 16 0 22 2l194-194c-2-6-2-14-2-22 0-46 38-86 84-86s86 40 86 86c0 8 0 16-2 22l108 108c6-2 14-2 22-2s16 0 22 2l152-150c-2-6-4-14-4-22 0-46 40-86 86-86s86 40 86 86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "timeline"
- ],
- "defaultCode": 59682,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 763,
- "ligatures": "timeline",
- "id": 759,
- "prevSize": 24,
- "name": "timeline",
- "code": 59682
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 759
- },
- {
- "icon": {
- "paths": [
- "M512 854c166 0 298-134 298-300s-132-298-298-298-298 132-298 298 132 300 298 300zM812 316c52 66 84 148 84 238 0 212-172 384-384 384s-384-172-384-384 172-384 384-384c90 0 174 34 240 86l60-62c22 18 42 38 60 60zM470 598v-256h84v256h-84zM640 42v86h-256v-86h256z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "timer"
- ],
- "defaultCode": 58405,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 764,
- "ligatures": "timer",
- "id": 760,
- "prevSize": 24,
- "name": "timer",
- "code": 58405
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 760
- },
- {
- "icon": {
- "paths": [
- "M550 564v-108c0-46.336-4.565-80.274-20-106-10.651-21.301-30.408-30-60-30-12 0-26 2-36 6-38.752 23.251-46 67.987-46 132v106c0 26 0 48 4 66s12 30 18 42c11.183 22.366 28.34 32 60 32 30.847 0 49.232-10.465 60-32 6-12 12-24 16-42s4-40 4-66zM304 470c0-128.235 41.373-218 166-218 51.866 0 95.697 16.753 120 48 30.427 39.121 44 97.117 44 170v82c0 127.815-39.287 220-164 220-124.183 0-166-92.158-166-220v-82zM872 446c-32.637 0-60 13.357-60 46 0 29.093 15.625 31.050 38 40 10 4 24 8 38 10 22 4 38 10 56 16s32 16 44 24 20 20 26 32 10 24 10 42c0 61.841-40.186 88.062-88 104-18 6-38 8-60 8-71.904 0-126.918-28.808-148-78-6-14-10-28-10-44h82c0 42.578 34.153 60 76 60 37.394 0 66-11.786 66-46 0-27.148-17.025-33.61-38-42-25.468-10.187-69.818-18.182-96-28-16-6-28-14-40-22-22.109-14.739-38-37.152-38-72 0-55.126 40.755-89.585 84-104 18-6 36-8 58-8 81.863 0 150 38.271 150 118h-84c0-24.555-15.687-44.922-36-50-8-2-20-6-30-6zM0 330l202-74h12v512h-86v-410l-128 44v-72z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "timer_10"
- ],
- "defaultCode": 58403,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 765,
- "ligatures": "timer_10",
- "id": 761,
- "prevSize": 24,
- "name": "timer_10",
- "code": 58403
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 761
- },
- {
- "icon": {
- "paths": [
- "M748 446c-31.882 0-62 15.146-62 46 0 27.366 18.619 31.448 40 40 10 4 22 8 36 10 22 4 40 10 58 16s32 16 44 24 20 20 26 32 10 24 10 42c0 61.841-40.186 88.062-88 104-18 6-40 8-62 8-70.791 0-125.226-29.528-146-78-6-14-10-28-10-44h80c0 40.848 37.077 60 78 60 37.394 0 66-11.786 66-46 0-27.148-17.025-33.61-38-42-10-4-26-8-42-12-37.616-7.523-69.901-20.601-96-38-21.057-14.038-36-38.904-36-72 0-55.126 40.755-89.585 84-104 18-6 36-8 58-8 81.863 0 150 38.271 150 118h-84c0-26.038-16.411-44.603-38-50-8-2-18-6-28-6zM430 506c49.449 18.543 84 50.968 84 116 0 51.199-17.71 87.282-48 110-28.071 24.061-68.907 40-120 40-93.754 0-168-50.495-168-144h86c0 23.009 8.297 45.722 22 56 14.704 11.028 35.068 20 60 20 54.151 0 84-28.151 84-82 0-57.252-34.133-82-92-82h-52v-66h50c41.016 0 70.217-16.541 82-46 4-10 4-20 4-32 0-49.775-24.914-76-76-76-37.446 0-59.461 14.922-72 40-4 8-6 18-6 30h-84c0-68.668 45.9-107.96 96-128 20-6 42-10 66-10 97.425 0 160 46.959 160 144 0 56.969-36.756 90.378-76 110z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "timer_3"
- ],
- "defaultCode": 58404,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 766,
- "ligatures": "timer_3",
- "id": 762,
- "prevSize": 24,
- "name": "timer_3",
- "code": 58404
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 762
- },
- {
- "icon": {
- "paths": [
- "M512 854c54 0 106-16 150-42l-408-408c-26 44-40 96-40 150 0 166 132 300 298 300zM128 170l758 758-54 54-108-108c-62 40-134 64-212 64-212 0-384-172-384-384 0-78 24-152 64-212l-118-118zM470 402v-60h84v146zM640 42v86h-256v-86h256zM812 194l60 60-60 62c52 66 84 148 84 238 0 78-24 152-64 212l-62-62c26-44 40-96 40-150 0-166-132-298-298-298-54 0-104 14-148 40l-64-62c60-40 134-64 212-64 90 0 174 32 240 84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "timer_off"
- ],
- "defaultCode": 58406,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 767,
- "ligatures": "timer_off",
- "id": 763,
- "prevSize": 24,
- "name": "timer_off",
- "code": 58406
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 763
- },
- {
- "icon": {
- "paths": [
- "M214 170h596v128h-234v512h-128v-512h-234v-128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "title"
- ],
- "defaultCode": 57956,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 768,
- "ligatures": "title",
- "id": 764,
- "prevSize": 24,
- "name": "title",
- "code": 57956
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 764
- },
- {
- "icon": {
- "paths": [
- "M810 554v-84h86v84h-86zM810 298h86v86h-86v-86zM810 726v-86h86v86h-86zM128 726v-86h598v86h-598zM128 554v-84h598v84h-598zM128 384v-86h598v86h-598z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "toc"
- ],
- "defaultCode": 59614,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 769,
- "ligatures": "toc",
- "id": 765,
- "prevSize": 24,
- "name": "toc",
- "code": 59614
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 765
- },
- {
- "icon": {
- "paths": [
- "M298 426h214v214h-214v-214zM810 810v-468h-596v468h596zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h42v-86h86v86h340v-86h86v86h42z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "today"
- ],
- "defaultCode": 59615,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 770,
- "ligatures": "today",
- "id": 766,
- "prevSize": 24,
- "name": "today",
- "code": 59615
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 766
- },
- {
- "icon": {
- "paths": [
- "M128 512c0 112 70 208 170 242v88c-148-38-256-170-256-330s108-292 256-330v88c-100 34-170 130-170 242zM640 768c142 0 256-114 256-256s-114-256-256-256-256 114-256 256 114 256 256 256zM640 170c188 0 342 154 342 342s-154 342-342 342-342-154-342-342 154-342 342-342z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "toll"
- ],
- "defaultCode": 59616,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 771,
- "ligatures": "toll",
- "id": 767,
- "prevSize": 24,
- "name": "toll",
- "code": 59616
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 767
- },
- {
- "icon": {
- "paths": [
- "M842 598c4-14 6-30 8-44h-296v44h288zM778 726c10-14 22-30 30-44h-254v44h224zM554 850c44-6 86-20 124-40h-124v40zM554 426v44h296c-2-14-4-30-8-44h-288zM554 298v44h254c-8-14-20-30-30-44h-224zM554 174v40h124c-38-20-80-34-124-40zM470 850v-676c-168 20-300 164-300 338s132 318 300 338zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "tonality"
- ],
- "defaultCode": 58407,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 772,
- "ligatures": "tonality",
- "id": 768,
- "prevSize": 24,
- "name": "tonality",
- "code": 58407
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 768
- },
- {
- "icon": {
- "paths": [
- "M804 678c22 10 38 32 38 58v8l-32 226c-4 32-30 54-62 54h-290c-18 0-32-6-44-18l-212-212 34-34c8-8 20-14 34-14 4 0 6 2 10 2l146 30v-458c0-36 28-64 64-64s64 28 64 64v256h34c8 0 14 2 22 4zM384 480c-52-34-86-94-86-160 0-106 86-192 192-192s192 86 192 192c0 66-32 126-84 160v-160c0-58-50-106-108-106s-106 48-106 106v160z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "touch_app"
- ],
- "defaultCode": 59667,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 773,
- "ligatures": "touch_app",
- "id": 769,
- "prevSize": 24,
- "name": "touch_app",
- "code": 59667
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 769
- },
- {
- "icon": {
- "paths": [
- "M512 512c0 128-106 234-234 234s-236-106-236-234h470zM512 512c-128 0-234-106-234-234s106-236 234-236v470zM512 512c128 0 234 106 234 234s-106 236-234 236v-470zM512 512c0-128 106-234 234-234s236 106 236 234h-470z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "toys"
- ],
- "defaultCode": 58162,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 774,
- "ligatures": "toys",
- "id": 770,
- "prevSize": 24,
- "name": "toys",
- "code": 58162
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 770
- },
- {
- "icon": {
- "paths": [
- "M814 210c78 78 124 184 124 302 0 236-190 426-426 426s-426-190-426-426 190-426 426-426h42v352c26 14 44 42 44 74 0 46-40 86-86 86s-86-40-86-86c0-32 18-60 44-74v-90c-74 20-128 84-128 164 0 94 76 170 170 170s170-76 170-170c0-46-20-88-50-120l60-60c46 46 76 110 76 180 0 142-114 256-256 256s-256-114-256-256c0-126 92-232 214-252v-86c-168 20-300 164-300 338 0 188 154 342 342 342s342-154 342-342c0-94-38-180-100-242z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "track_changes"
- ],
- "defaultCode": 59617,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 775,
- "ligatures": "track_changes",
- "id": 771,
- "prevSize": 24,
- "name": "track_changes",
- "code": 59617
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 771
- },
- {
- "icon": {
- "paths": [
- "M512 384c48 0 86-40 86-86 0-48-40-84-86-84-48 0-86 36-86 84 0 46 38 86 86 86zM512 598c48 0 86-40 86-86s-40-86-86-86c-48 0-86 40-86 86s38 86 86 86zM512 810c48 0 86-38 86-84s-40-86-86-86c-48 0-86 40-86 86s38 84 86 84zM854 426c0 80-54 146-128 166v48h128c0 80-54 144-128 164v50c0 24-20 42-44 42h-340c-24 0-44-18-44-42v-50c-74-20-128-84-128-164h128v-48c-74-20-128-86-128-166h128v-48c-74-20-128-84-128-164h128v-44c0-24 20-42 44-42h340c24 0 44 18 44 42v44h128c0 80-54 144-128 164v48h128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "traffic"
- ],
- "defaultCode": 58725,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 776,
- "ligatures": "traffic",
- "id": 772,
- "prevSize": 24,
- "name": "traffic",
- "code": 58725
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 772
- },
- {
- "icon": {
- "paths": [
- "M704 726c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM554 426h214v-170h-214v170zM470 426v-170h-214v170h214zM320 726c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM512 86c188 0 342 20 342 170v406c0 82-68 148-150 148l64 64v22h-86l-84-86h-162l-84 86h-96v-22l64-64c-82 0-150-66-150-148v-406c0-150 172-170 342-170z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "train"
- ],
- "defaultCode": 58736,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 777,
- "ligatures": "train",
- "id": 773,
- "prevSize": 24,
- "name": "train",
- "code": 58736
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 773
- },
- {
- "icon": {
- "paths": [
- "M726 598v-214h-428v214h428zM512 790c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM810 722c0 72-38 132-110 132h4l64 64v20h-86l-84-84h-162l-84 84h-96v-20l68-68c-60-14-110-66-110-128v-360c0-118 120-144 254-148l34-64h-204v-64h428v64h-140l-32 64c146 4 256 28 256 148v360z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "tram"
- ],
- "defaultCode": 58737,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 778,
- "ligatures": "tram",
- "id": 774,
- "prevSize": 24,
- "name": "tram",
- "code": 58737
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 774
- },
- {
- "icon": {
- "paths": [
- "M246 380l-118 602h90l74-342 92 86v256h86v-322l-88-88 26-128c56 68 138 110 232 110v-84c-78 0-148-44-186-106l-40-68c-14-26-42-40-72-40-10 0-22 2-32 6l-224 92v200h84v-142l76-32zM406 234c-46 0-86-38-86-84s40-86 86-86 84 40 84 86-38 84-84 84zM832 842v-74l106 106-106 108v-76h-234v-64h234zM704 662h234v64h-234v74l-106-106 106-108v76z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "transfer_within_a_station"
- ],
- "defaultCode": 58738,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 779,
- "ligatures": "transfer_within_a_station",
- "id": 775,
- "prevSize": 24,
- "name": "transfer_within_a_station",
- "code": 58738
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 775
- },
- {
- "icon": {
- "paths": [
- "M426 342v-86h256c46 0 86 40 86 86v256h-86v-256h-256zM938 768h-170v86h86l-128 128-128-128h84v-86h-340c-46 0-86-40-86-86v-340h-170v-86h170v-86h-86l128-128 128 128h-84v512h596v86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "transform"
- ],
- "defaultCode": 58408,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 780,
- "ligatures": "transform",
- "id": 776,
- "prevSize": 24,
- "name": "transform",
- "code": 58408
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 776
- },
- {
- "icon": {
- "paths": [
- "M678 726h138l-70-186zM790 426l192 512h-86l-48-128h-202l-48 128h-86l192-512h86zM550 642l-34 88-132-132-214 212-60-60 218-214c-54-60-96-124-128-194h86c26 50 58 98 98 142 62-68 108-146 136-228h-478v-86h300v-84h84v84h300v86h-126c-32 100-84 196-158 278l-2 2z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "translate"
- ],
- "defaultCode": 59618,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 781,
- "ligatures": "translate",
- "id": 777,
- "prevSize": 24,
- "name": "translate",
- "code": 59618
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 777
- },
- {
- "icon": {
- "paths": [
- "M682 768l98-98-208-208-170 170-316-316 60-60 256 256 170-170 268 268 98-98v256h-256z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "trending_down"
- ],
- "defaultCode": 59619,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 782,
- "ligatures": "trending_down",
- "id": 778,
- "prevSize": 24,
- "name": "trending_down",
- "code": 59619
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 778
- },
- {
- "icon": {
- "paths": [
- "M938 512l-170 170v-128h-640v-84h640v-128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "trending_flat"
- ],
- "defaultCode": 59620,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 783,
- "ligatures": "trending_flat",
- "id": 779,
- "prevSize": 24,
- "name": "trending_flat",
- "code": 59620
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 779
- },
- {
- "icon": {
- "paths": [
- "M682 256h256v256l-98-98-268 268-170-170-256 256-60-60 316-316 170 170 208-208z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "trending_up"
- ],
- "defaultCode": 59621,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 784,
- "ligatures": "trending_up",
- "id": 780,
- "prevSize": 24,
- "name": "trending_up",
- "code": 59621
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 780
- },
- {
- "icon": {
- "paths": [
- "M640 384v-256h86v86h170v84h-170v86h-86zM896 554h-426v-84h426v84zM298 384h86v256h-86v-86h-170v-84h170v-86zM554 896h-84v-256h84v86h342v84h-342v86zM128 214h426v84h-426v-84zM128 726h256v84h-256v-84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "tune"
- ],
- "defaultCode": 58409,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 785,
- "ligatures": "tune",
- "id": 781,
- "prevSize": 24,
- "name": "tune",
- "code": 58409
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 781
- },
- {
- "icon": {
- "paths": [
- "M896 726v-512h-768v512h768zM896 128c46 0 86 40 86 86l-2 512c0 46-38 84-84 84h-214v86h-340v-86h-214c-46 0-86-38-86-84v-512c0-46 40-86 86-86h768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "tv"
- ],
- "defaultCode": 58163,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 786,
- "ligatures": "tv",
- "id": 782,
- "prevSize": 24,
- "name": "tv",
- "code": 58163
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 782
- },
- {
- "icon": {
- "paths": [
- "M218 214h588l-40-44h-512zM512 406l-234 234h148v86h172v-86h148zM876 222c12 14 20 36 20 56v532c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-532c0-20 8-42 20-56l58-70c12-14 30-24 50-24h512c20 0 38 10 50 24z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "unarchive"
- ],
- "defaultCode": 57705,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 787,
- "ligatures": "unarchive",
- "id": 783,
- "prevSize": 24,
- "name": "unarchive",
- "code": 57705
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 783
- },
- {
- "icon": {
- "paths": [
- "M534 342c198 0 364 130 424 308l-100 32c-44-136-172-234-324-234-84 0-160 30-220 80l156 154h-384v-384l152 154c78-68 182-110 296-110z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "undo"
- ],
- "defaultCode": 57702,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 788,
- "ligatures": "undo",
- "id": 784,
- "prevSize": 24,
- "name": "undo",
- "code": 57702
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 784
- },
- {
- "icon": {
- "paths": [
- "M708 230l-196 196-196-196 60-60 136 136 136-136zM316 794l196-196 196 196-60 60-136-136-136 136z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "unfold_less"
- ],
- "defaultCode": 58838,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 789,
- "ligatures": "unfold_less",
- "id": 785,
- "prevSize": 24,
- "name": "unfold_less",
- "code": 58838
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 785
- },
- {
- "icon": {
- "paths": [
- "M512 776l136-136 60 60-196 196-196-196 60-60zM512 248l-136 136-60-60 196-196 196 196-60 60z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "unfold_more"
- ],
- "defaultCode": 58839,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 790,
- "ligatures": "unfold_more",
- "id": 786,
- "prevSize": 24,
- "name": "unfold_more",
- "code": 58839
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 786
- },
- {
- "icon": {
- "paths": [
- "M534 342v180l148 90-30 52-182-110v-212h64zM896 432h-290l118-120c-116-116-306-120-422-4s-116 300 0 416 306 116 422 0c58-58 86-124 86-208h86c0 84-36 194-112 268-150 148-394 148-544 0s-150-388 0-536 390-148 540 0l116-120v304z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "update"
- ],
- "defaultCode": 59683,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 791,
- "ligatures": "update",
- "id": 787,
- "prevSize": 24,
- "name": "update",
- "code": 59683
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 787
- },
- {
- "icon": {
- "paths": [
- "M640 298h170v172h-42v84c0 48-38 86-86 86h-128v130c30 16 52 48 52 84 0 52-42 94-94 94s-94-42-94-94c0-36 22-68 52-84v-130h-128c-48 0-86-38-86-86v-88c-30-16-52-46-52-82 0-52 42-94 94-94s94 42 94 94c0 36-20 66-50 82v88h128v-340h-86l128-172 128 172h-86v340h128v-84h-42v-172z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "usb"
- ],
- "defaultCode": 57824,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 792,
- "ligatures": "usb",
- "id": 788,
- "prevSize": 24,
- "name": "usb",
- "code": 57824
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 788
- },
- {
- "icon": {
- "paths": [
- "M426 726l342-342-60-60-282 280-110-110-60 60zM512 42l384 172v256c0 236-164 458-384 512-220-54-384-276-384-512v-256z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "verified_user"
- ],
- "defaultCode": 59624,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 793,
- "ligatures": "verified_user",
- "id": 789,
- "prevSize": 24,
- "name": "verified_user",
- "code": 59624
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 789
- },
- {
- "icon": {
- "paths": [
- "M170 810h684v86h-684v-86zM682 554l-170 172-170-172h128v-426h84v426h128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "vertical_align_bottom"
- ],
- "defaultCode": 57944,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 794,
- "ligatures": "vertical_align_bottom",
- "id": 790,
- "prevSize": 24,
- "name": "vertical_align_bottom",
- "code": 57944
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 790
- },
- {
- "icon": {
- "paths": [
- "M170 470h684v84h-684v-84zM682 214l-170 170-170-170h128v-172h84v172h128zM342 810l170-170 170 170h-128v172h-84v-172h-128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "vertical_align_center"
- ],
- "defaultCode": 57945,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 795,
- "ligatures": "vertical_align_center",
- "id": 791,
- "prevSize": 24,
- "name": "vertical_align_center",
- "code": 57945
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 791
- },
- {
- "icon": {
- "paths": [
- "M170 128h684v86h-684v-86zM342 470l170-172 170 172h-128v426h-84v-426h-128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "vertical_align_top"
- ],
- "defaultCode": 57946,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 796,
- "ligatures": "vertical_align_top",
- "id": 792,
- "prevSize": 24,
- "name": "vertical_align_top",
- "code": 57946
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 792
- },
- {
- "icon": {
- "paths": [
- "M682 810v-596h-340v596h340zM704 128c36 0 64 28 64 64v640c0 36-28 64-64 64h-384c-36 0-64-28-64-64v-640c0-36 28-64 64-64h384zM810 726v-428h86v428h-86zM938 384h86v256h-86v-256zM128 726v-428h86v428h-86zM0 640v-256h86v256h-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "vibration"
- ],
- "defaultCode": 58925,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 797,
- "ligatures": "vibration",
- "id": 793,
- "prevSize": 24,
- "name": "vibration",
- "code": 58925
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 793
- },
- {
- "icon": {
- "paths": [
- "M598 554v-84h-128v-128h-86v128h-128v84h128v128h86v-128h128zM726 448l170-170v468l-170-170v150c0 24-20 42-44 42h-512c-24 0-42-18-42-42v-428c0-24 18-42 42-42h512c24 0 44 18 44 42v150z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "video_call"
- ],
- "defaultCode": 57456,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 798,
- "ligatures": "video_call",
- "id": 794,
- "prevSize": 24,
- "name": "video_call",
- "code": 57456
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 794
- },
- {
- "icon": {
- "paths": [
- "M896 682v-468h-768v468h768zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "video_label"
- ],
- "defaultCode": 57457,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 799,
- "ligatures": "video_label",
- "id": 795,
- "prevSize": 24,
- "name": "video_label",
- "code": 57457
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 795
- },
- {
- "icon": {
- "paths": [
- "M512 618l256-192-256-192v384zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-512c-46 0-86-40-86-86v-512c0-46 40-84 86-84h512zM170 256v598h598v84h-598c-46 0-84-38-84-84v-598h84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "video_library"
- ],
- "defaultCode": 57418,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 800,
- "ligatures": "video_library",
- "id": 796,
- "prevSize": 24,
- "name": "video_library",
- "code": 57418
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 796
- },
- {
- "icon": {
- "paths": [
- "M726 448l170-170v468l-170-170v150c0 24-20 42-44 42h-512c-24 0-42-18-42-42v-428c0-24 18-42 42-42h512c24 0 44 18 44 42v150z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "videocam"
- ],
- "defaultCode": 57419,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 801,
- "ligatures": "videocam",
- "id": 797,
- "prevSize": 24,
- "name": "videocam",
- "code": 57419
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 797
- },
- {
- "icon": {
- "paths": [
- "M140 86l756 756-54 54-136-136c-6 4-16 8-24 8h-512c-24 0-42-18-42-42v-428c0-24 18-42 42-42h32l-116-116zM896 278v456l-478-478h264c24 0 44 18 44 42v150z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "videocam_off"
- ],
- "defaultCode": 57420,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 802,
- "ligatures": "videocam_off",
- "id": 798,
- "prevSize": 24,
- "name": "videocam_off",
- "code": 57420
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 798
- },
- {
- "icon": {
- "paths": [
- "M832 512c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM662 640c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM470 554v-84h-128v-128h-86v128h-128v84h128v128h86v-128h128zM896 256c46 0 86 40 86 86v340c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-340c0-46 40-86 86-86h768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "videogame_asset"
- ],
- "defaultCode": 58168,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 803,
- "ligatures": "videogame_asset",
- "id": 799,
- "prevSize": 24,
- "name": "videogame_asset",
- "code": 58168
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 799
- },
- {
- "icon": {
- "paths": [
- "M854 128c24 0 42 18 42 42v256c0 24-18 44-42 44h-726c-24 0-42-20-42-44v-256c0-24 18-42 42-42h726zM854 554c24 0 42 20 42 44v256c0 24-18 42-42 42h-726c-24 0-42-18-42-42v-256c0-24 18-44 42-44h726z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "view_agenda"
- ],
- "defaultCode": 59625,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 804,
- "ligatures": "view_agenda",
- "id": 800,
- "prevSize": 24,
- "name": "view_agenda",
- "code": 59625
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 800
- },
- {
- "icon": {
- "paths": [
- "M342 768v-554h384v554h-384zM768 214h128v554h-128v-554zM170 768v-554h128v554h-128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "view_array"
- ],
- "defaultCode": 59626,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 805,
- "ligatures": "view_array",
- "id": 801,
- "prevSize": 24,
- "name": "view_array",
- "code": 59626
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 801
- },
- {
- "icon": {
- "paths": [
- "M768 256h170v470h-170v-470zM86 726v-470h170v470h-170zM298 810v-640h428v640h-428z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "view_carousel"
- ],
- "defaultCode": 59627,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 806,
- "ligatures": "view_carousel",
- "id": 802,
- "prevSize": 24,
- "name": "view_carousel",
- "code": 59627
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 802
- },
- {
- "icon": {
- "paths": [
- "M682 214h214v554h-214v-554zM170 768v-554h214v554h-214zM426 768v-554h214v554h-214z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "view_column"
- ],
- "defaultCode": 59628,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 807,
- "ligatures": "view_column",
- "id": 803,
- "prevSize": 24,
- "name": "view_column",
- "code": 59628
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 803
- },
- {
- "icon": {
- "paths": [
- "M768 214h170v170h-170v-170zM768 810v-170h170v170h-170zM554 810v-170h172v170h-172zM342 810v-170h170v170h-170zM128 810v-170h170v170h-170zM768 598v-172h170v172h-170zM554 214h172v170h-172v-170zM342 384v-170h170v170h-170zM554 598v-172h172v172h-172zM342 598v-172h170v172h-170zM128 598v-172h170v172h-170zM128 384v-170h170v170h-170z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "view_comfy"
- ],
- "defaultCode": 58410,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 808,
- "ligatures": "view_comfy",
- "id": 804,
- "prevSize": 24,
- "name": "view_comfy",
- "code": 58410
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 804
- },
- {
- "icon": {
- "paths": [
- "M128 214h810v256h-810v-256zM426 810v-298h512v298h-512zM128 810v-298h256v298h-256z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "view_compact"
- ],
- "defaultCode": 58411,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 809,
- "ligatures": "view_compact",
- "id": 805,
- "prevSize": 24,
- "name": "view_compact",
- "code": 58411
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 805
- },
- {
- "icon": {
- "paths": [
- "M86 128h810v128h-810v-128zM854 342c24 0 42 18 42 42v256c0 24-18 42-42 42h-726c-24 0-42-18-42-42v-256c0-24 18-42 42-42h726zM86 896v-128h810v128h-810z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "view_day"
- ],
- "defaultCode": 59629,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 810,
- "ligatures": "view_day",
- "id": 806,
- "prevSize": 24,
- "name": "view_day",
- "code": 59629
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 806
- },
- {
- "icon": {
- "paths": [
- "M170 214h684v84h-684v-84zM170 470v-86h684v86h-684zM170 810v-84h684v84h-684zM170 640v-86h684v86h-684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "view_headline"
- ],
- "defaultCode": 59630,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 811,
- "ligatures": "view_headline",
- "id": 807,
- "prevSize": 24,
- "name": "view_headline",
- "code": 59630
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 807
- },
- {
- "icon": {
- "paths": [
- "M384 214h512v170h-512v-170zM384 810v-170h512v170h-512zM384 598v-172h512v172h-512zM170 384v-170h172v170h-172zM170 810v-170h172v170h-172zM170 598v-172h172v172h-172z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "view_list"
- ],
- "defaultCode": 59631,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 812,
- "ligatures": "view_list",
- "id": 808,
- "prevSize": 24,
- "name": "view_list",
- "code": 59631
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 808
- },
- {
- "icon": {
- "paths": [
- "M682 214h214v256h-214v-256zM426 470v-256h214v256h-214zM682 768v-256h214v256h-214zM426 768v-256h214v256h-214zM170 768v-256h214v256h-214zM170 470v-256h214v256h-214z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "view_module"
- ],
- "defaultCode": 59632,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 813,
- "ligatures": "view_module",
- "id": 809,
- "prevSize": 24,
- "name": "view_module",
- "code": 59632
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 809
- },
- {
- "icon": {
- "paths": [
- "M426 214h470v256h-470v-256zM682 768v-256h214v256h-214zM170 768v-554h214v554h-214zM426 768v-256h214v256h-214z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "view_quilt"
- ],
- "defaultCode": 59633,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 814,
- "ligatures": "view_quilt",
- "id": 810,
- "prevSize": 24,
- "name": "view_quilt",
- "code": 59633
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 810
- },
- {
- "icon": {
- "paths": [
- "M170 214h726v256h-726v-256zM170 768v-256h726v256h-726z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "view_stream"
- ],
- "defaultCode": 59634,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 815,
- "ligatures": "view_stream",
- "id": 811,
- "prevSize": 24,
- "name": "view_stream",
- "code": 59634
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 811
- },
- {
- "icon": {
- "paths": [
- "M554 214c24 0 44 18 44 42v512c0 24-20 42-44 42h-128c-24 0-42-18-42-42v-512c0-24 18-42 42-42h128zM854 214c24 0 42 18 42 42v512c0 24-18 42-42 42h-128c-24 0-44-18-44-42v-512c0-24 20-42 44-42h128zM256 214c24 0 42 18 42 42v512c0 24-18 42-42 42h-128c-24 0-42-18-42-42v-512c0-24 18-42 42-42h128z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "view_week"
- ],
- "defaultCode": 59635,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 816,
- "ligatures": "view_week",
- "id": 812,
- "prevSize": 24,
- "name": "view_week",
- "code": 59635
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 812
- },
- {
- "icon": {
- "paths": [
- "M512 768c188 0 342-114 342-256s-154-256-342-256-342 114-342 256 154 256 342 256zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "vignette"
- ],
- "defaultCode": 58421,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 817,
- "ligatures": "vignette",
- "id": 813,
- "prevSize": 24,
- "name": "vignette",
- "code": 58421
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 813
- },
- {
- "icon": {
- "paths": [
- "M506 384h6c70 0 128 58 128 128v8zM322 418c-14 28-24 60-24 94 0 118 96 214 214 214 34 0 66-10 94-24l-66-66c-8 2-18 4-28 4-70 0-128-58-128-128 0-10 2-20 4-28zM86 182l54-54 756 756-54 54c-47.968-47.365-96.266-94.401-144-142-58 24-120 36-186 36-214 0-396-132-470-320 34-84 90-156 160-212-39.017-38.983-77.307-78.693-116-118zM512 298c-28 0-54 6-78 16l-92-92c52-20 110-30 170-30 214 0 394 132 468 320-32 80-82 148-146 202l-124-124c10-24 16-50 16-78 0-118-96-214-214-214z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "visibility_off"
- ],
- "defaultCode": 59637,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 818,
- "ligatures": "visibility_off",
- "id": 814,
- "prevSize": 24,
- "name": "visibility_off",
- "code": 59637
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 814
- },
- {
- "icon": {
- "paths": [
- "M768 598v-342l-170 136v-136h-342v342h342v-138zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "voice_chat"
- ],
- "defaultCode": 58926,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 819,
- "ligatures": "voice_chat",
- "id": 815,
- "prevSize": 24,
- "name": "voice_chat",
- "code": 58926
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 815
- },
- {
- "icon": {
- "paths": [
- "M790 640c82 0 148-68 148-150s-66-148-148-148-150 66-150 148 68 150 150 150zM234 640c82 0 150-68 150-150s-68-148-150-148-148 66-148 148 66 150 148 150zM790 256c130 0 234 104 234 234s-104 236-234 236h-556c-130 0-234-106-234-236s104-234 234-234 236 104 236 234c0 56-20 110-54 150h192c-34-40-54-94-54-150 0-130 106-234 236-234z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "voicemail"
- ],
- "defaultCode": 57561,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 820,
- "ligatures": "voicemail",
- "id": 816,
- "prevSize": 24,
- "name": "voicemail",
- "code": 57561
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 816
- },
- {
- "icon": {
- "paths": [
- "M214 384h170l214-214v684l-214-214h-170v-256zM790 512c0 76-44 140-108 172v-344c64 32 108 96 108 172z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "volume_down"
- ],
- "defaultCode": 57421,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 821,
- "ligatures": "volume_down",
- "id": 817,
- "prevSize": 24,
- "name": "volume_down",
- "code": 57421
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 817
- },
- {
- "icon": {
- "paths": [
- "M298 384h172l212-214v684l-212-214h-172v-256z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "volume_mute"
- ],
- "defaultCode": 57422,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 822,
- "ligatures": "volume_mute",
- "id": 818,
- "prevSize": 24,
- "name": "volume_mute",
- "code": 57422
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 818
- },
- {
- "icon": {
- "paths": [
- "M512 170v180l-90-90zM182 128l714 714-54 54-88-88c-46 36-98 64-156 78v-88c36-10 68-28 96-50l-182-182v288l-214-214h-170v-256h202l-202-202zM810 512c0-136-88-250-212-286v-88c172 38 298 192 298 374 0 64-16 126-44 178l-64-66c14-34 22-72 22-112zM704 512c0 10 0 18-2 26l-104-104v-94c64 32 106 96 106 172z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "volume_off"
- ],
- "defaultCode": 57423,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 823,
- "ligatures": "volume_off",
- "id": 819,
- "prevSize": 24,
- "name": "volume_off",
- "code": 57423
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 819
- },
- {
- "icon": {
- "paths": [
- "M598 138c172 38 298 192 298 374s-126 336-298 374v-88c124-36 212-150 212-286s-88-250-212-286v-88zM704 512c0 76-42 140-106 172v-344c64 32 106 96 106 172zM128 384h170l214-214v684l-214-214h-170v-256z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "volume_up"
- ],
- "defaultCode": 57424,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 824,
- "ligatures": "volume_up",
- "id": 820,
- "prevSize": 24,
- "name": "volume_up",
- "code": 57424
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 820
- },
- {
- "icon": {
- "paths": [
- "M298 598c46 0 86-40 86-86s-40-86-86-86-84 40-84 86 38 86 84 86zM540 426h442v172h-86v170h-170v-170h-186c-34 100-130 170-242 170-142 0-256-114-256-256s114-256 256-256c112 0 208 70 242 170z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "vpn_key"
- ],
- "defaultCode": 57562,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 825,
- "ligatures": "vpn_key",
- "id": 821,
- "prevSize": 24,
- "name": "vpn_key",
- "code": 57562
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 821
- },
- {
- "icon": {
- "paths": [
- "M426 894v-84c-46 0-84-38-84-84v-44l-206-204c-6 24-8 50-8 76 0 174 130 320 298 340zM808 512h86c2 14 2 28 2 42 0 236-190 428-426 428s-428-192-428-428 192-426 428-426c44 0 88 8 128 20v108c0 46-40 86-86 86h-86v84c0 24-18 44-42 44h-86v84h256c24 0 44 20 44 44v128h42c38 0 70 24 82 58 56-60 88-142 88-230 0-14 0-28-2-42zM904 170v-20c0-40-32-74-72-74s-72 34-72 74v20h144zM938 170c24 0 44 20 44 44v170c0 24-20 42-44 42h-212c-24 0-44-18-44-42v-170c0-24 20-44 44-44v-20c0-58 48-108 106-108s106 50 106 108v20z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "vpn_lock"
- ],
- "defaultCode": 58927,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 826,
- "ligatures": "vpn_lock",
- "id": 822,
- "prevSize": 24,
- "name": "vpn_lock",
- "code": 58927
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 822
- },
- {
- "icon": {
- "paths": [
- "M170 554v300h300v84h-300c-46 0-84-38-84-84v-300h84zM854 854v-300h84v300c0 46-38 84-84 84h-300v-84h300zM854 86c46 0 84 38 84 84v300h-84v-300h-300v-84h300zM726 362c0 36-28 64-64 64s-64-28-64-64 28-64 64-64 64 28 64 64zM426 554l128 158 86-114 128 170h-512zM170 170v300h-84v-300c0-46 38-84 84-84h300v84h-300z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "wallpaper"
- ],
- "defaultCode": 57788,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 827,
- "ligatures": "wallpaper",
- "id": 823,
- "prevSize": 24,
- "name": "wallpaper",
- "code": 57788
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 823
- },
- {
- "icon": {
- "paths": [
- "M256 512c0 142 114 256 256 256s256-114 256-256-114-256-256-256-256 114-256 256zM854 512c0 108-52 206-130 268l-42 244h-340l-42-244c-80-62-130-160-130-268s50-206 130-268l42-244h340l42 244c78 62 130 160 130 268z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "watch"
- ],
- "defaultCode": 58164,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 828,
- "ligatures": "watch",
- "id": 824,
- "prevSize": 24,
- "name": "watch",
- "code": 58164
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 824
- },
- {
- "icon": {
- "paths": [
- "M692 692l34-56-192-116v-222h-64v256zM512 86c234 0 426 192 426 426s-192 426-426 426-426-192-426-426 192-426 426-426z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "watch_later"
- ],
- "defaultCode": 59684,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 829,
- "ligatures": "watch_later",
- "id": 825,
- "prevSize": 24,
- "name": "watch_later",
- "code": 59684
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 825
- },
- {
- "icon": {
- "paths": [
- "M440 682h80l-136-384h-86l-136 384h82l30-84h136zM938 298h78l-88 384h-74l-64-260-64 260h-76l-4-18c-56 112-170 190-304 190-188 0-342-154-342-342s154-342 342-342c108 0 204 50 266 128h32l52 270 64-270h68l64 270zM292 540l50-156 48 156h-98z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "wb_auto"
- ],
- "defaultCode": 58412,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 830,
- "ligatures": "wb_auto",
- "id": 826,
- "prevSize": 24,
- "name": "wb_auto",
- "code": 58412
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 826
- },
- {
- "icon": {
- "paths": [
- "M736 774l60-58 76 76-60 60zM854 448h128v86h-128v-86zM640 270c76 44 128 126 128 220 0 142-114 256-256 256s-256-114-256-256c0-94 52-176 128-220v-206h256v206zM170 448v86h-128v-86h128zM470 958v-126h84v126h-84zM152 792l76-78 60 60-76 78z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "wb_incandescent"
- ],
- "defaultCode": 58414,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 831,
- "ligatures": "wb_incandescent",
- "id": 827,
- "prevSize": 24,
- "name": "wb_incandescent",
- "code": 58414
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 827
- },
- {
- "icon": {
- "paths": [
- "M212 852l-60-62 76-76 60 60zM152 190l60-60 76 76-60 60zM872 792l-60 60-76-78 60-60zM554 958h-84v-126h84v126zM812 130l60 60-76 76-60-60zM470 24h84v126h-84v-126zM214 618v-256h596v256h-596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "wb_iridescent"
- ],
- "defaultCode": 58422,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 832,
- "ligatures": "wb_iridescent",
- "id": 828,
- "prevSize": 24,
- "name": "wb_iridescent",
- "code": 58422
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 828
- },
- {
- "icon": {
- "paths": [
- "M152 792l76-78 60 60-76 78zM470 958v-126h84v126h-84zM512 234c142 0 256 114 256 256s-114 256-256 256-256-114-256-256 114-256 256-256zM854 448h128v86h-128v-86zM736 774l60-58 76 76-60 60zM872 190l-76 76-60-60 76-76zM554 24v126h-84v-126h84zM170 448v86h-128v-86h128zM288 206l-60 60-76-76 60-60z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "wb_sunny"
- ],
- "defaultCode": 58416,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 833,
- "ligatures": "wb_sunny",
- "id": 829,
- "prevSize": 24,
- "name": "wb_sunny",
- "code": 58416
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 829
- },
- {
- "icon": {
- "paths": [
- "M704 256c-48 0-86-38-86-86s38-84 86-84 86 36 86 84-38 86-86 86zM320 256c-48 0-86-38-86-86s38-84 86-84 86 36 86 84-38 86-86 86zM768 938h-128v-256h-128l108-324c12-34 46-60 82-60h4c36 0 70 26 82 60l108 324h-128v256zM234 938v-320h-64v-234c0-46 40-86 86-86h128c46 0 86 40 86 86v234h-64v320h-172z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "wc"
- ],
- "defaultCode": 58941,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 834,
- "ligatures": "wc",
- "id": 830,
- "prevSize": 24,
- "name": "wc",
- "code": 58941
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 830
- },
- {
- "icon": {
- "paths": [
- "M854 768v-384h-172v384h172zM640 554v-170h-470v170h470zM640 768v-170h-470v170h470zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h684z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "web"
- ],
- "defaultCode": 57425,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 835,
- "ligatures": "web",
- "id": 831,
- "prevSize": 24,
- "name": "web",
- "code": 57425
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 831
- },
- {
- "icon": {
- "paths": [
- "M810 768v-426h-596v426h596zM810 170c48 0 86 40 86 86v512c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-512c0-46 38-86 86-86h596z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "web_asset"
- ],
- "defaultCode": 57449,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 836,
- "ligatures": "web_asset",
- "id": 832,
- "prevSize": 24,
- "name": "web_asset",
- "code": 57449
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 832
- },
- {
- "icon": {
- "paths": [
- "M768 214c46 0 86 38 86 84v92c-50 18-86 64-86 120v88h-512v-88c0-56-36-102-86-120v-92c0-46 40-84 86-84h512zM896 426c46 0 86 40 86 86v214c0 46-40 84-86 84h-768c-46 0-86-38-86-84v-214c0-46 40-86 86-86s86 40 86 86v128h596v-128c0-46 40-86 86-86z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "weekend"
- ],
- "defaultCode": 57707,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 837,
- "ligatures": "weekend",
- "id": 833,
- "prevSize": 24,
- "name": "weekend",
- "code": 57707
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 833
- },
- {
- "icon": {
- "paths": [
- "M500 810c114 0 204-90 204-204 0-60-8-116-24-172-44 58-122 94-198 110s-120 62-120 132c0 74 62 134 138 134zM576 28c166 134 278 340 278 570 0 188-154 340-342 340s-342-152-342-340c0-144 52-278 138-380v16c0 88 66 158 154 158s146-70 146-158c0-92-32-206-32-206z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "whatshot"
- ],
- "defaultCode": 59406,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 838,
- "ligatures": "whatshot",
- "id": 834,
- "prevSize": 24,
- "name": "whatshot",
- "code": 59406
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 834
- },
- {
- "icon": {
- "paths": [
- "M710 72l242 242-242 240h186v342h-342v-342h156l-240-240v156h-342v-342h342v186zM128 896v-342h342v342h-342z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "widgets"
- ],
- "defaultCode": 57789,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 839,
- "ligatures": "widgets",
- "id": 835,
- "prevSize": 24,
- "name": "widgets",
- "code": 57789
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 835
- },
- {
- "icon": {
- "paths": [
- "M214 554c166-164 432-164 596 0l-84 86c-118-118-310-118-428 0zM384 726c70-70 186-70 256 0l-128 128zM42 384c260-258 682-258 940 0l-86 86c-212-212-556-212-768 0z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "wifi"
- ],
- "defaultCode": 58942,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 840,
- "ligatures": "wifi",
- "id": 836,
- "prevSize": 24,
- "name": "wifi",
- "code": 58942
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 836
- },
- {
- "icon": {
- "paths": [
- "M938 682v-64c0-36-28-64-64-64s-64 28-64 64v64h128zM982 682c24 0 42 20 42 44v170c0 24-18 42-42 42h-214c-24 0-42-18-42-42v-170c0-24 18-44 42-44v-64c0-58 48-106 106-106s108 48 108 106v64zM874 406c-118 0-212 94-212 212v122l-150 198-512-682c142-108 320-170 512-170s370 62 512 170l-114 152c-12-2-24-2-36-2z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "wifi_lock"
- ],
- "defaultCode": 57825,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 841,
- "ligatures": "wifi_lock",
- "id": 837,
- "prevSize": 24,
- "name": "wifi_lock",
- "code": 57825
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 837
- },
- {
- "icon": {
- "paths": [
- "M512 128c236 0 426 190 426 426 0 158-84 296-212 370l-44-74c102-60 172-170 172-296 0-188-154-340-342-340s-342 152-342 340c0 126 68 236 170 296l-42 74c-128-74-212-212-212-370 0-236 190-426 426-426zM768 554c0 94-52 178-128 222l-42-74c50-30 84-84 84-148 0-94-76-170-170-170s-170 76-170 170c0 64 34 118 84 148l-42 74c-76-44-128-128-128-222 0-142 114-256 256-256s256 114 256 256zM512 470c46 0 86 38 86 84s-40 86-86 86-86-40-86-86 40-84 86-84z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "wifi_tethering"
- ],
- "defaultCode": 57826,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 842,
- "ligatures": "wifi_tethering",
- "id": 838,
- "prevSize": 24,
- "name": "wifi_tethering",
- "code": 57826
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 838
- },
- {
- "icon": {
- "paths": [
- "M598 256v-86h-172v86h172zM854 256c48 0 84 38 84 86v468c0 48-36 86-84 86h-684c-48 0-84-38-84-86v-468c0-48 36-86 84-86h172v-86c0-48 36-84 84-84h172c48 0 84 36 84 84v86h172z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "work"
- ],
- "defaultCode": 59641,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 843,
- "ligatures": "work",
- "id": 839,
- "prevSize": 24,
- "name": "work",
- "code": 59641
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 839
- },
- {
- "icon": {
- "paths": [
- "M726 470c94 0 170 76 170 170s-76 170-170 170h-86v86l-128-128 128-128v86h96c46 0 86-40 86-86s-40-86-86-86h-566v-84h556zM854 214v84h-684v-84h684zM170 810v-84h256v84h-256z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "wrap_text"
- ],
- "defaultCode": 57947,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 844,
- "ligatures": "wrap_text",
- "id": 840,
- "prevSize": 24,
- "name": "wrap_text",
- "code": 57947
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 840
- },
- {
- "icon": {
- "paths": [
- "M726 598l212 212-62 64-214-214v-32l-12-12c-48 42-112 66-180 66-52 0-100-14-142-38l64-62c24 10 50 16 78 16 106 0 192-86 192-192s-86-192-192-192-192 86-192 192h148l-176 170-164-170h106c0-150 124-278 278-278s278 124 278 278c0 70-26 132-68 180l12 12h34z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "youtube_searched_for"
- ],
- "defaultCode": 59642,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 845,
- "ligatures": "youtube_searched_for",
- "id": 841,
- "prevSize": 24,
- "name": "youtube_searched_for",
- "code": 59642
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 841
- },
- {
- "icon": {
- "paths": [
- "M512 426h-86v86h-42v-86h-86v-42h86v-86h42v86h86v42zM406 598c106 0 192-86 192-192s-86-192-192-192-192 86-192 192 86 192 192 192zM662 598l212 212-64 64-212-212v-34l-12-12c-48 42-112 66-180 66-154 0-278-122-278-276s124-278 278-278 276 124 276 278c0 68-24 132-66 180l12 12h34z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "zoom_in"
- ],
- "defaultCode": 59647,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 846,
- "ligatures": "zoom_in",
- "id": 842,
- "prevSize": 24,
- "name": "zoom_in",
- "code": 59647
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 842
- },
- {
- "icon": {
- "paths": [
- "M298 384h214v42h-214v-42zM406 598c106 0 192-86 192-192s-86-192-192-192-192 86-192 192 86 192 192 192zM662 598l212 212-64 64-212-212v-34l-12-12c-48 42-112 66-180 66-154 0-278-122-278-276s124-278 278-278 276 124 276 278c0 68-24 132-66 180l12 12h34z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "zoom_out"
- ],
- "defaultCode": 59648,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 847,
- "ligatures": "zoom_out",
- "id": 843,
- "prevSize": 24,
- "name": "zoom_out",
- "code": 59649
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 843
- },
- {
- "icon": {
- "paths": [
- "M896 640v256h-256l98-98-124-122 62-62 122 124zM384 896h-256v-256l98 98 122-124 62 62-124 122zM128 384v-256h256l-98 98 124 122-62 62-122-124zM640 128h256v256l-98-98-122 124-62-62 124-122z"
- ],
- "attrs": [],
- "isMulticolor": false,
- "tags": [
- "zoom_out_map"
- ],
- "defaultCode": 58731,
- "grid": 24
- },
- "attrs": [],
- "properties": {
- "order": 848,
- "ligatures": "zoom_out_map",
- "id": 844,
- "prevSize": 24,
- "name": "zoom_out_map",
- "code": 58731
- },
- "setIdx": 0,
- "setId": 0,
- "iconIdx": 844
- }
- ],
- "height": 1024,
- "metadata": {
- "name": "icomoon"
- },
- "preferences": {
- "showGlyphs": true,
- "showQuickUse": true,
- "showQuickUse2": true,
- "showSVGs": true,
- "fontPref": {
- "prefix": "icon-",
- "metadata": {
- "fontFamily": "icomoon"
- },
- "metrics": {
- "emSize": 1024,
- "baseline": 6.25,
- "whitespace": 50
- },
- "embed": false
- },
- "imagePref": {
- "prefix": "icon-",
- "png": true,
- "useClassSelector": true,
- "color": 4473924,
- "bgColor": 16777215,
- "classSelector": ".icon"
- },
- "historySize": 100,
- "showCodes": false
- }
-} \ No newline at end of file
diff --git a/docs/font/style.css b/docs/font/style.css
deleted file mode 100755
index 774dc21..0000000
--- a/docs/font/style.css
+++ /dev/null
@@ -1,2562 +0,0 @@
-@font-face {
- font-family: 'icomoon';
- src: url('fonts/icomoon.eot?tv4lt7');
- src: url('fonts/icomoon.eot?tv4lt7#iefix') format('embedded-opentype'),
- url('fonts/icomoon.ttf?tv4lt7') format('truetype'),
- url('fonts/icomoon.woff?tv4lt7') format('woff'),
- url('fonts/icomoon.svg?tv4lt7#icomoon') format('svg');
- font-weight: normal;
- font-style: normal;
-}
-
-[class^="icon-"], [class*=" icon-"] {
- /* use !important to prevent issues with browser extensions that change fonts */
- font-family: 'icomoon' !important;
- speak: none;
- font-style: normal;
- font-weight: normal;
- font-variant: normal;
- text-transform: none;
- line-height: 1;
-
- /* Better Font Rendering =========== */
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
-}
-
-.icon-d_rotation:before {
- content: "\e84d";
-}
-.icon-ac_unit:before {
- content: "\eb3b";
-}
-.icon-alarm:before {
- content: "\e855";
-}
-.icon-access_alarms:before {
- content: "\e191";
-}
-.icon-schedule:before {
- content: "\e8b5";
-}
-.icon-accessibility:before {
- content: "\e84e";
-}
-.icon-accessible:before {
- content: "\e914";
-}
-.icon-account_balance:before {
- content: "\e84f";
-}
-.icon-account_balance_wallet:before {
- content: "\e850";
-}
-.icon-account_box:before {
- content: "\e851";
-}
-.icon-account_circle:before {
- content: "\e853";
-}
-.icon-adb:before {
- content: "\e60e";
-}
-.icon-add:before {
- content: "\e145";
-}
-.icon-add_a_photo:before {
- content: "\e439";
-}
-.icon-alarm_add:before {
- content: "\e856";
-}
-.icon-add_alert:before {
- content: "\e003";
-}
-.icon-add_box:before {
- content: "\e146";
-}
-.icon-add_circle:before {
- content: "\e147";
-}
-.icon-control_point:before {
- content: "\e3ba";
-}
-.icon-add_location:before {
- content: "\e567";
-}
-.icon-add_shopping_cart:before {
- content: "\e854";
-}
-.icon-queue:before {
- content: "\e03c";
-}
-.icon-add_to_queue:before {
- content: "\e05c";
-}
-.icon-adjust:before {
- content: "\e39e";
-}
-.icon-airline_seat_flat:before {
- content: "\e630";
-}
-.icon-airline_seat_flat_angled:before {
- content: "\e631";
-}
-.icon-airline_seat_individual_suite:before {
- content: "\e632";
-}
-.icon-airline_seat_legroom_extra:before {
- content: "\e633";
-}
-.icon-airline_seat_legroom_normal:before {
- content: "\e634";
-}
-.icon-airline_seat_legroom_reduced:before {
- content: "\e635";
-}
-.icon-airline_seat_recline_extra:before {
- content: "\e636";
-}
-.icon-airline_seat_recline_normal:before {
- content: "\e637";
-}
-.icon-flight:before {
- content: "\e539";
-}
-.icon-airplanemode_inactive:before {
- content: "\e194";
-}
-.icon-airplay:before {
- content: "\e055";
-}
-.icon-airport_shuttle:before {
- content: "\eb3c";
-}
-.icon-alarm_off:before {
- content: "\e857";
-}
-.icon-alarm_on:before {
- content: "\e858";
-}
-.icon-album:before {
- content: "\e019";
-}
-.icon-all_inclusive:before {
- content: "\eb3d";
-}
-.icon-all_out:before {
- content: "\e90b";
-}
-.icon-android:before {
- content: "\e859";
-}
-.icon-announcement:before {
- content: "\e85a";
-}
-.icon-apps:before {
- content: "\e5c3";
-}
-.icon-archive:before {
- content: "\e149";
-}
-.icon-arrow_back:before {
- content: "\e5c4";
-}
-.icon-arrow_downward:before {
- content: "\e5db";
-}
-.icon-arrow_drop_down:before {
- content: "\e5c5";
-}
-.icon-arrow_drop_down_circle:before {
- content: "\e5c6";
-}
-.icon-arrow_drop_up:before {
- content: "\e5c7";
-}
-.icon-arrow_forward:before {
- content: "\e5c8";
-}
-.icon-arrow_upward:before {
- content: "\e5d8";
-}
-.icon-art_track:before {
- content: "\e060";
-}
-.icon-aspect_ratio:before {
- content: "\e85b";
-}
-.icon-poll:before {
- content: "\e801";
-}
-.icon-assignment:before {
- content: "\e85d";
-}
-.icon-assignment_ind:before {
- content: "\e85e";
-}
-.icon-assignment_late:before {
- content: "\e85f";
-}
-.icon-assignment_return:before {
- content: "\e860";
-}
-.icon-assignment_returned:before {
- content: "\e861";
-}
-.icon-assignment_turned_in:before {
- content: "\e862";
-}
-.icon-assistant:before {
- content: "\e39f";
-}
-.icon-flag:before {
- content: "\e153";
-}
-.icon-attach_file:before {
- content: "\e226";
-}
-.icon-attach_money:before {
- content: "\e227";
-}
-.icon-attachment:before {
- content: "\e2bc";
-}
-.icon-audiotrack:before {
- content: "\e3a1";
-}
-.icon-autorenew:before {
- content: "\e863";
-}
-.icon-av_timer:before {
- content: "\e01b";
-}
-.icon-backspace:before {
- content: "\e14a";
-}
-.icon-cloud_upload:before {
- content: "\e2c3";
-}
-.icon-battery_alert:before {
- content: "\e19c";
-}
-.icon-battery_charging_full:before {
- content: "\e1a3";
-}
-.icon-battery_std:before {
- content: "\e1a5";
-}
-.icon-battery_unknown:before {
- content: "\e1a6";
-}
-.icon-beach_access:before {
- content: "\eb3e";
-}
-.icon-beenhere:before {
- content: "\e52d";
-}
-.icon-block:before {
- content: "\e14b";
-}
-.icon-bluetooth:before {
- content: "\e1a7";
-}
-.icon-bluetooth_searching:before {
- content: "\e1aa";
-}
-.icon-bluetooth_connected:before {
- content: "\e1a8";
-}
-.icon-bluetooth_disabled:before {
- content: "\e1a9";
-}
-.icon-blur_circular:before {
- content: "\e3a2";
-}
-.icon-blur_linear:before {
- content: "\e3a3";
-}
-.icon-blur_off:before {
- content: "\e3a4";
-}
-.icon-blur_on:before {
- content: "\e3a5";
-}
-.icon-class:before {
- content: "\e86e";
-}
-.icon-turned_in:before {
- content: "\e8e6";
-}
-.icon-turned_in_not:before {
- content: "\e8e7";
-}
-.icon-border_all:before {
- content: "\e228";
-}
-.icon-border_bottom:before {
- content: "\e229";
-}
-.icon-border_clear:before {
- content: "\e22a";
-}
-.icon-border_color:before {
- content: "\e22b";
-}
-.icon-border_horizontal:before {
- content: "\e22c";
-}
-.icon-border_inner:before {
- content: "\e22d";
-}
-.icon-border_left:before {
- content: "\e22e";
-}
-.icon-border_outer:before {
- content: "\e22f";
-}
-.icon-border_right:before {
- content: "\e230";
-}
-.icon-border_style:before {
- content: "\e231";
-}
-.icon-border_top:before {
- content: "\e232";
-}
-.icon-border_vertical:before {
- content: "\e233";
-}
-.icon-branding_watermark:before {
- content: "\e06b";
-}
-.icon-brightness_1:before {
- content: "\e3a6";
-}
-.icon-brightness_2:before {
- content: "\e3a7";
-}
-.icon-brightness_3:before {
- content: "\e3a8";
-}
-.icon-brightness_4:before {
- content: "\e3a9";
-}
-.icon-brightness_low:before {
- content: "\e1ad";
-}
-.icon-brightness_medium:before {
- content: "\e1ae";
-}
-.icon-brightness_high:before {
- content: "\e1ac";
-}
-.icon-brightness_auto:before {
- content: "\e1ab";
-}
-.icon-broken_image:before {
- content: "\e3ad";
-}
-.icon-brush:before {
- content: "\e3ae";
-}
-.icon-bubble_chart:before {
- content: "\e6dd";
-}
-.icon-bug_report:before {
- content: "\e868";
-}
-.icon-build:before {
- content: "\e869";
-}
-.icon-burst_mode:before {
- content: "\e43c";
-}
-.icon-domain:before {
- content: "\e7ee";
-}
-.icon-business_center:before {
- content: "\eb3f";
-}
-.icon-cached:before {
- content: "\e86a";
-}
-.icon-cake:before {
- content: "\e7e9";
-}
-.icon-phone:before {
- content: "\e0cd";
-}
-.icon-call_end:before {
- content: "\e0b1";
-}
-.icon-call_made:before {
- content: "\e0b2";
-}
-.icon-merge_type:before {
- content: "\e252";
-}
-.icon-call_missed:before {
- content: "\e0b4";
-}
-.icon-call_missed_outgoing:before {
- content: "\e0e4";
-}
-.icon-call_received:before {
- content: "\e0b5";
-}
-.icon-call_split:before {
- content: "\e0b6";
-}
-.icon-call_to_action:before {
- content: "\e06c";
-}
-.icon-camera:before {
- content: "\e3af";
-}
-.icon-photo_camera:before {
- content: "\e412";
-}
-.icon-camera_enhance:before {
- content: "\e8fc";
-}
-.icon-camera_front:before {
- content: "\e3b1";
-}
-.icon-camera_rear:before {
- content: "\e3b2";
-}
-.icon-camera_roll:before {
- content: "\e3b3";
-}
-.icon-cancel:before {
- content: "\e5c9";
-}
-.icon-redeem:before {
- content: "\e8b1";
-}
-.icon-card_membership:before {
- content: "\e8f7";
-}
-.icon-card_travel:before {
- content: "\e8f8";
-}
-.icon-casino:before {
- content: "\eb40";
-}
-.icon-cast:before {
- content: "\e307";
-}
-.icon-cast_connected:before {
- content: "\e308";
-}
-.icon-center_focus_strong:before {
- content: "\e3b4";
-}
-.icon-center_focus_weak:before {
- content: "\e3b5";
-}
-.icon-change_history:before {
- content: "\e86b";
-}
-.icon-chat:before {
- content: "\e0b7";
-}
-.icon-chat_bubble:before {
- content: "\e0ca";
-}
-.icon-chat_bubble_outline:before {
- content: "\e0cb";
-}
-.icon-check:before {
- content: "\e5ca";
-}
-.icon-check_box:before {
- content: "\e834";
-}
-.icon-check_box_outline_blank:before {
- content: "\e835";
-}
-.icon-check_circle:before {
- content: "\e86c";
-}
-.icon-navigate_before:before {
- content: "\e408";
-}
-.icon-navigate_next:before {
- content: "\e409";
-}
-.icon-child_care:before {
- content: "\eb41";
-}
-.icon-child_friendly:before {
- content: "\eb42";
-}
-.icon-chrome_reader_mode:before {
- content: "\e86d";
-}
-.icon-close:before {
- content: "\e5cd";
-}
-.icon-clear_all:before {
- content: "\e0b8";
-}
-.icon-closed_caption:before {
- content: "\e01c";
-}
-.icon-wb_cloudy:before {
- content: "\e42d";
-}
-.icon-cloud_circle:before {
- content: "\e2be";
-}
-.icon-cloud_done:before {
- content: "\e2bf";
-}
-.icon-cloud_download:before {
- content: "\e2c0";
-}
-.icon-cloud_off:before {
- content: "\e2c1";
-}
-.icon-cloud_queue:before {
- content: "\e2c2";
-}
-.icon-code:before {
- content: "\e86f";
-}
-.icon-photo_library:before {
- content: "\e413";
-}
-.icon-collections_bookmark:before {
- content: "\e431";
-}
-.icon-palette:before {
- content: "\e40a";
-}
-.icon-colorize:before {
- content: "\e3b8";
-}
-.icon-comment:before {
- content: "\e0b9";
-}
-.icon-compare:before {
- content: "\e3b9";
-}
-.icon-compare_arrows:before {
- content: "\e915";
-}
-.icon-laptop:before {
- content: "\e31e";
-}
-.icon-confirmation_number:before {
- content: "\e638";
-}
-.icon-contact_mail:before {
- content: "\e0d0";
-}
-.icon-contact_phone:before {
- content: "\e0cf";
-}
-.icon-contacts:before {
- content: "\e0ba";
-}
-.icon-content_copy:before {
- content: "\e14d";
-}
-.icon-content_cut:before {
- content: "\e14e";
-}
-.icon-content_paste:before {
- content: "\e14f";
-}
-.icon-control_point_duplicate:before {
- content: "\e3bb";
-}
-.icon-copyright:before {
- content: "\e90c";
-}
-.icon-mode_edit:before {
- content: "\e254";
-}
-.icon-create_new_folder:before {
- content: "\e2cc";
-}
-.icon-payment:before {
- content: "\e8a1";
-}
-.icon-crop:before {
- content: "\e3be";
-}
-.icon-crop_16_9:before {
- content: "\e3bc";
-}
-.icon-crop_3_2:before {
- content: "\e3bd";
-}
-.icon-crop_landscape:before {
- content: "\e3c3";
-}
-.icon-crop_7_5:before {
- content: "\e3c0";
-}
-.icon-crop_din:before {
- content: "\e3c1";
-}
-.icon-crop_free:before {
- content: "\e3c2";
-}
-.icon-crop_original:before {
- content: "\e3c4";
-}
-.icon-crop_portrait:before {
- content: "\e3c5";
-}
-.icon-crop_rotate:before {
- content: "\e437";
-}
-.icon-crop_square:before {
- content: "\e3c6";
-}
-.icon-dashboard:before {
- content: "\e871";
-}
-.icon-data_usage:before {
- content: "\e1af";
-}
-.icon-date_range:before {
- content: "\e916";
-}
-.icon-dehaze:before {
- content: "\e3c7";
-}
-.icon-delete:before {
- content: "\e872";
-}
-.icon-delete_forever:before {
- content: "\e92b";
-}
-.icon-delete_sweep:before {
- content: "\e16c";
-}
-.icon-description:before {
- content: "\e873";
-}
-.icon-desktop_mac:before {
- content: "\e30b";
-}
-.icon-desktop_windows:before {
- content: "\e30c";
-}
-.icon-details:before {
- content: "\e3c8";
-}
-.icon-developer_board:before {
- content: "\e30d";
-}
-.icon-developer_mode:before {
- content: "\e1b0";
-}
-.icon-device_hub:before {
- content: "\e335";
-}
-.icon-phonelink:before {
- content: "\e326";
-}
-.icon-devices_other:before {
- content: "\e337";
-}
-.icon-dialer_sip:before {
- content: "\e0bb";
-}
-.icon-dialpad:before {
- content: "\e0bc";
-}
-.icon-directions:before {
- content: "\e52e";
-}
-.icon-directions_bike:before {
- content: "\e52f";
-}
-.icon-directions_boat:before {
- content: "\e532";
-}
-.icon-directions_bus:before {
- content: "\e530";
-}
-.icon-directions_car:before {
- content: "\e531";
-}
-.icon-directions_railway:before {
- content: "\e534";
-}
-.icon-directions_run:before {
- content: "\e566";
-}
-.icon-directions_transit:before {
- content: "\e535";
-}
-.icon-directions_walk:before {
- content: "\e536";
-}
-.icon-disc_full:before {
- content: "\e610";
-}
-.icon-dns:before {
- content: "\e875";
-}
-.icon-not_interested:before {
- content: "\e033";
-}
-.icon-do_not_disturb_alt:before {
- content: "\e611";
-}
-.icon-do_not_disturb_off:before {
- content: "\e643";
-}
-.icon-remove_circle:before {
- content: "\e15c";
-}
-.icon-dock:before {
- content: "\e30e";
-}
-.icon-done:before {
- content: "\e876";
-}
-.icon-done_all:before {
- content: "\e877";
-}
-.icon-donut_large:before {
- content: "\e917";
-}
-.icon-donut_small:before {
- content: "\e918";
-}
-.icon-drafts:before {
- content: "\e151";
-}
-.icon-drag_handle:before {
- content: "\e25d";
-}
-.icon-time_to_leave:before {
- content: "\e62c";
-}
-.icon-dvr:before {
- content: "\e1b2";
-}
-.icon-edit_location:before {
- content: "\e568";
-}
-.icon-eject:before {
- content: "\e8fb";
-}
-.icon-markunread:before {
- content: "\e159";
-}
-.icon-enhanced_encryption:before {
- content: "\e63f";
-}
-.icon-equalizer:before {
- content: "\e01d";
-}
-.icon-error:before {
- content: "\e000";
-}
-.icon-error_outline:before {
- content: "\e001";
-}
-.icon-euro_symbol:before {
- content: "\e926";
-}
-.icon-ev_station:before {
- content: "\e56d";
-}
-.icon-insert_invitation:before {
- content: "\e24f";
-}
-.icon-event_available:before {
- content: "\e614";
-}
-.icon-event_busy:before {
- content: "\e615";
-}
-.icon-event_note:before {
- content: "\e616";
-}
-.icon-event_seat:before {
- content: "\e903";
-}
-.icon-exit_to_app:before {
- content: "\e879";
-}
-.icon-expand_less:before {
- content: "\e5ce";
-}
-.icon-expand_more:before {
- content: "\e5cf";
-}
-.icon-explicit:before {
- content: "\e01e";
-}
-.icon-explore:before {
- content: "\e87a";
-}
-.icon-exposure:before {
- content: "\e3ca";
-}
-.icon-exposure_neg_1:before {
- content: "\e3cb";
-}
-.icon-exposure_neg_2:before {
- content: "\e3cc";
-}
-.icon-exposure_plus_1:before {
- content: "\e3cd";
-}
-.icon-exposure_plus_2:before {
- content: "\e3ce";
-}
-.icon-exposure_zero:before {
- content: "\e3cf";
-}
-.icon-extension:before {
- content: "\e87b";
-}
-.icon-face:before {
- content: "\e87c";
-}
-.icon-fast_forward:before {
- content: "\e01f";
-}
-.icon-fast_rewind:before {
- content: "\e020";
-}
-.icon-favorite:before {
- content: "\e87d";
-}
-.icon-favorite_border:before {
- content: "\e87e";
-}
-.icon-featured_play_list:before {
- content: "\e06d";
-}
-.icon-featured_video:before {
- content: "\e06e";
-}
-.icon-sms_failed:before {
- content: "\e626";
-}
-.icon-fiber_dvr:before {
- content: "\e05d";
-}
-.icon-fiber_manual_record:before {
- content: "\e061";
-}
-.icon-fiber_new:before {
- content: "\e05e";
-}
-.icon-fiber_pin:before {
- content: "\e06a";
-}
-.icon-fiber_smart_record:before {
- content: "\e062";
-}
-.icon-get_app:before {
- content: "\e884";
-}
-.icon-file_upload:before {
- content: "\e2c6";
-}
-.icon-filter:before {
- content: "\e3d3";
-}
-.icon-filter_1:before {
- content: "\e3d0";
-}
-.icon-filter_2:before {
- content: "\e3d1";
-}
-.icon-filter_3:before {
- content: "\e3d2";
-}
-.icon-filter_4:before {
- content: "\e3d4";
-}
-.icon-filter_5:before {
- content: "\e3d5";
-}
-.icon-filter_6:before {
- content: "\e3d6";
-}
-.icon-filter_7:before {
- content: "\e3d7";
-}
-.icon-filter_8:before {
- content: "\e3d8";
-}
-.icon-filter_9:before {
- content: "\e3d9";
-}
-.icon-filter_9_plus:before {
- content: "\e3da";
-}
-.icon-filter_b_and_w:before {
- content: "\e3db";
-}
-.icon-filter_center_focus:before {
- content: "\e3dc";
-}
-.icon-filter_drama:before {
- content: "\e3dd";
-}
-.icon-filter_frames:before {
- content: "\e3de";
-}
-.icon-terrain:before {
- content: "\e564";
-}
-.icon-filter_list:before {
- content: "\e152";
-}
-.icon-filter_none:before {
- content: "\e3e0";
-}
-.icon-filter_tilt_shift:before {
- content: "\e3e2";
-}
-.icon-filter_vintage:before {
- content: "\e3e3";
-}
-.icon-find_in_page:before {
- content: "\e880";
-}
-.icon-find_replace:before {
- content: "\e881";
-}
-.icon-fingerprint:before {
- content: "\e90d";
-}
-.icon-first_page:before {
- content: "\e5dc";
-}
-.icon-fitness_center:before {
- content: "\eb43";
-}
-.icon-flare:before {
- content: "\e3e4";
-}
-.icon-flash_auto:before {
- content: "\e3e5";
-}
-.icon-flash_off:before {
- content: "\e3e6";
-}
-.icon-flash_on:before {
- content: "\e3e7";
-}
-.icon-flight_land:before {
- content: "\e904";
-}
-.icon-flight_takeoff:before {
- content: "\e905";
-}
-.icon-flip:before {
- content: "\e3e8";
-}
-.icon-flip_to_back:before {
- content: "\e882";
-}
-.icon-flip_to_front:before {
- content: "\e883";
-}
-.icon-folder:before {
- content: "\e2c7";
-}
-.icon-folder_open:before {
- content: "\e2c8";
-}
-.icon-folder_shared:before {
- content: "\e2c9";
-}
-.icon-folder_special:before {
- content: "\e617";
-}
-.icon-font_download:before {
- content: "\e167";
-}
-.icon-format_align_center:before {
- content: "\e234";
-}
-.icon-format_align_justify:before {
- content: "\e235";
-}
-.icon-format_align_left:before {
- content: "\e236";
-}
-.icon-format_align_right:before {
- content: "\e237";
-}
-.icon-format_bold:before {
- content: "\e238";
-}
-.icon-format_clear:before {
- content: "\e239";
-}
-.icon-format_color_fill:before {
- content: "\e23a";
-}
-.icon-format_color_reset:before {
- content: "\e23b";
-}
-.icon-format_color_text:before {
- content: "\e23c";
-}
-.icon-format_indent_decrease:before {
- content: "\e23d";
-}
-.icon-format_indent_increase:before {
- content: "\e23e";
-}
-.icon-format_italic:before {
- content: "\e23f";
-}
-.icon-format_line_spacing:before {
- content: "\e240";
-}
-.icon-format_list_bulleted:before {
- content: "\e241";
-}
-.icon-format_list_numbered:before {
- content: "\e242";
-}
-.icon-format_paint:before {
- content: "\e243";
-}
-.icon-format_quote:before {
- content: "\e244";
-}
-.icon-format_shapes:before {
- content: "\e25e";
-}
-.icon-format_size:before {
- content: "\e245";
-}
-.icon-format_strikethrough:before {
- content: "\e246";
-}
-.icon-format_textdirection_l_to_r:before {
- content: "\e247";
-}
-.icon-format_textdirection_r_to_l:before {
- content: "\e248";
-}
-.icon-format_underlined:before {
- content: "\e249";
-}
-.icon-question_answer:before {
- content: "\e8af";
-}
-.icon-forward:before {
- content: "\e154";
-}
-.icon-forward_10:before {
- content: "\e056";
-}
-.icon-forward_30:before {
- content: "\e057";
-}
-.icon-forward_5:before {
- content: "\e058";
-}
-.icon-free_breakfast:before {
- content: "\eb44";
-}
-.icon-fullscreen:before {
- content: "\e5d0";
-}
-.icon-fullscreen_exit:before {
- content: "\e5d1";
-}
-.icon-functions:before {
- content: "\e24a";
-}
-.icon-g_translate:before {
- content: "\e927";
-}
-.icon-games:before {
- content: "\e021";
-}
-.icon-gavel:before {
- content: "\e90e";
-}
-.icon-gesture:before {
- content: "\e155";
-}
-.icon-gif:before {
- content: "\e908";
-}
-.icon-goat:before {
- content: "\e900";
-}
-.icon-golf_course:before {
- content: "\eb45";
-}
-.icon-my_location:before {
- content: "\e55c";
-}
-.icon-location_searching:before {
- content: "\e1b7";
-}
-.icon-location_disabled:before {
- content: "\e1b6";
-}
-.icon-star:before {
- content: "\e838";
-}
-.icon-gradient:before {
- content: "\e3e9";
-}
-.icon-grain:before {
- content: "\e3ea";
-}
-.icon-graphic_eq:before {
- content: "\e1b8";
-}
-.icon-grid_off:before {
- content: "\e3eb";
-}
-.icon-grid_on:before {
- content: "\e3ec";
-}
-.icon-people:before {
- content: "\e7fb";
-}
-.icon-group_add:before {
- content: "\e7f0";
-}
-.icon-group_work:before {
- content: "\e886";
-}
-.icon-hd:before {
- content: "\e052";
-}
-.icon-hdr_off:before {
- content: "\e3ed";
-}
-.icon-hdr_on:before {
- content: "\e3ee";
-}
-.icon-hdr_strong:before {
- content: "\e3f1";
-}
-.icon-hdr_weak:before {
- content: "\e3f2";
-}
-.icon-headset:before {
- content: "\e310";
-}
-.icon-headset_mic:before {
- content: "\e311";
-}
-.icon-healing:before {
- content: "\e3f3";
-}
-.icon-hearing:before {
- content: "\e023";
-}
-.icon-help:before {
- content: "\e887";
-}
-.icon-help_outline:before {
- content: "\e8fd";
-}
-.icon-high_quality:before {
- content: "\e024";
-}
-.icon-highlight:before {
- content: "\e25f";
-}
-.icon-highlight_off:before {
- content: "\e888";
-}
-.icon-restore:before {
- content: "\e8b3";
-}
-.icon-home:before {
- content: "\e88a";
-}
-.icon-hot_tub:before {
- content: "\eb46";
-}
-.icon-local_hotel:before {
- content: "\e549";
-}
-.icon-hourglass_empty:before {
- content: "\e88b";
-}
-.icon-hourglass_full:before {
- content: "\e88c";
-}
-.icon-http:before {
- content: "\e902";
-}
-.icon-lock:before {
- content: "\e897";
-}
-.icon-photo:before {
- content: "\e410";
-}
-.icon-image_aspect_ratio:before {
- content: "\e3f5";
-}
-.icon-import_contacts:before {
- content: "\e0e0";
-}
-.icon-import_export:before {
- content: "\e0c3";
-}
-.icon-important_devices:before {
- content: "\e912";
-}
-.icon-inbox:before {
- content: "\e156";
-}
-.icon-indeterminate_check_box:before {
- content: "\e909";
-}
-.icon-info:before {
- content: "\e88e";
-}
-.icon-info_outline:before {
- content: "\e88f";
-}
-.icon-input:before {
- content: "\e890";
-}
-.icon-insert_comment:before {
- content: "\e24c";
-}
-.icon-insert_drive_file:before {
- content: "\e24d";
-}
-.icon-tag_faces:before {
- content: "\e420";
-}
-.icon-link:before {
- content: "\e157";
-}
-.icon-invert_colors:before {
- content: "\e891";
-}
-.icon-invert_colors_off:before {
- content: "\e0c4";
-}
-.icon-iso:before {
- content: "\e3f6";
-}
-.icon-keyboard:before {
- content: "\e312";
-}
-.icon-keyboard_arrow_down:before {
- content: "\e313";
-}
-.icon-keyboard_arrow_left:before {
- content: "\e314";
-}
-.icon-keyboard_arrow_right:before {
- content: "\e315";
-}
-.icon-keyboard_arrow_up:before {
- content: "\e316";
-}
-.icon-keyboard_backspace:before {
- content: "\e317";
-}
-.icon-keyboard_capslock:before {
- content: "\e318";
-}
-.icon-keyboard_hide:before {
- content: "\e31a";
-}
-.icon-keyboard_return:before {
- content: "\e31b";
-}
-.icon-keyboard_tab:before {
- content: "\e31c";
-}
-.icon-keyboard_voice:before {
- content: "\e31d";
-}
-.icon-kitchen:before {
- content: "\eb47";
-}
-.icon-label:before {
- content: "\e892";
-}
-.icon-label_outline:before {
- content: "\e893";
-}
-.icon-language:before {
- content: "\e894";
-}
-.icon-laptop_chromebook:before {
- content: "\e31f";
-}
-.icon-laptop_mac:before {
- content: "\e320";
-}
-.icon-laptop_windows:before {
- content: "\e321";
-}
-.icon-last_page:before {
- content: "\e5dd";
-}
-.icon-open_in_new:before {
- content: "\e89e";
-}
-.icon-layers:before {
- content: "\e53b";
-}
-.icon-layers_clear:before {
- content: "\e53c";
-}
-.icon-leak_add:before {
- content: "\e3f8";
-}
-.icon-leak_remove:before {
- content: "\e3f9";
-}
-.icon-lens:before {
- content: "\e3fa";
-}
-.icon-library_books:before {
- content: "\e02f";
-}
-.icon-library_music:before {
- content: "\e030";
-}
-.icon-lightbulb_outline:before {
- content: "\e90f";
-}
-.icon-line_style:before {
- content: "\e919";
-}
-.icon-line_weight:before {
- content: "\e91a";
-}
-.icon-linear_scale:before {
- content: "\e260";
-}
-.icon-linked_camera:before {
- content: "\e438";
-}
-.icon-list:before {
- content: "\e896";
-}
-.icon-live_help:before {
- content: "\e0c6";
-}
-.icon-live_tv:before {
- content: "\e639";
-}
-.icon-local_play:before {
- content: "\e553";
-}
-.icon-local_airport:before {
- content: "\e53d";
-}
-.icon-local_atm:before {
- content: "\e53e";
-}
-.icon-local_bar:before {
- content: "\e540";
-}
-.icon-local_cafe:before {
- content: "\e541";
-}
-.icon-local_car_wash:before {
- content: "\e542";
-}
-.icon-local_convenience_store:before {
- content: "\e543";
-}
-.icon-restaurant_menu:before {
- content: "\e561";
-}
-.icon-local_drink:before {
- content: "\e544";
-}
-.icon-local_florist:before {
- content: "\e545";
-}
-.icon-local_gas_station:before {
- content: "\e546";
-}
-.icon-shopping_cart:before {
- content: "\e8cc";
-}
-.icon-local_hospital:before {
- content: "\e548";
-}
-.icon-local_laundry_service:before {
- content: "\e54a";
-}
-.icon-local_library:before {
- content: "\e54b";
-}
-.icon-local_mall:before {
- content: "\e54c";
-}
-.icon-theaters:before {
- content: "\e8da";
-}
-.icon-local_offer:before {
- content: "\e54e";
-}
-.icon-local_parking:before {
- content: "\e54f";
-}
-.icon-local_pharmacy:before {
- content: "\e550";
-}
-.icon-local_pizza:before {
- content: "\e552";
-}
-.icon-print:before {
- content: "\e8ad";
-}
-.icon-local_shipping:before {
- content: "\e558";
-}
-.icon-local_taxi:before {
- content: "\e559";
-}
-.icon-location_city:before {
- content: "\e7f1";
-}
-.icon-location_off:before {
- content: "\e0c7";
-}
-.icon-room:before {
- content: "\e8b4";
-}
-.icon-lock_open:before {
- content: "\e898";
-}
-.icon-lock_outline:before {
- content: "\e899";
-}
-.icon-looks:before {
- content: "\e3fc";
-}
-.icon-looks_3:before {
- content: "\e3fb";
-}
-.icon-looks_4:before {
- content: "\e3fd";
-}
-.icon-looks_5:before {
- content: "\e3fe";
-}
-.icon-looks_6:before {
- content: "\e3ff";
-}
-.icon-looks_one:before {
- content: "\e400";
-}
-.icon-looks_two:before {
- content: "\e401";
-}
-.icon-sync:before {
- content: "\e627";
-}
-.icon-loupe:before {
- content: "\e402";
-}
-.icon-low_priority:before {
- content: "\e16d";
-}
-.icon-loyalty:before {
- content: "\e89a";
-}
-.icon-mail_outline:before {
- content: "\e0e1";
-}
-.icon-map:before {
- content: "\e55b";
-}
-.icon-markunread_mailbox:before {
- content: "\e89b";
-}
-.icon-memory:before {
- content: "\e322";
-}
-.icon-menu:before {
- content: "\e5d2";
-}
-.icon-message:before {
- content: "\e0c9";
-}
-.icon-mic:before {
- content: "\e029";
-}
-.icon-mic_none:before {
- content: "\e02a";
-}
-.icon-mic_off:before {
- content: "\e02b";
-}
-.icon-mms:before {
- content: "\e618";
-}
-.icon-mode_comment:before {
- content: "\e253";
-}
-.icon-monetization_on:before {
- content: "\e263";
-}
-.icon-money_off:before {
- content: "\e25c";
-}
-.icon-monochrome_photos:before {
- content: "\e403";
-}
-.icon-mood_bad:before {
- content: "\e7f3";
-}
-.icon-more:before {
- content: "\e619";
-}
-.icon-more_horiz:before {
- content: "\e5d3";
-}
-.icon-more_vert:before {
- content: "\e5d4";
-}
-.icon-motorcycle:before {
- content: "\e91b";
-}
-.icon-mouse:before {
- content: "\e323";
-}
-.icon-move_to_inbox:before {
- content: "\e168";
-}
-.icon-movie_creation:before {
- content: "\e404";
-}
-.icon-movie_filter:before {
- content: "\e43a";
-}
-.icon-multiline_chart:before {
- content: "\e6df";
-}
-.icon-music_note:before {
- content: "\e405";
-}
-.icon-music_video:before {
- content: "\e063";
-}
-.icon-nature:before {
- content: "\e406";
-}
-.icon-nature_people:before {
- content: "\e407";
-}
-.icon-navigation:before {
- content: "\e55d";
-}
-.icon-near_me:before {
- content: "\e569";
-}
-.icon-network_cell:before {
- content: "\e1b9";
-}
-.icon-network_check:before {
- content: "\e640";
-}
-.icon-network_locked:before {
- content: "\e61a";
-}
-.icon-network_wifi:before {
- content: "\e1ba";
-}
-.icon-new_releases:before {
- content: "\e031";
-}
-.icon-next_week:before {
- content: "\e16a";
-}
-.icon-nfc:before {
- content: "\e1bb";
-}
-.icon-no_encryption:before {
- content: "\e641";
-}
-.icon-signal_cellular_no_sim:before {
- content: "\e1ce";
-}
-.icon-note:before {
- content: "\e06f";
-}
-.icon-note_add:before {
- content: "\e89c";
-}
-.icon-notifications:before {
- content: "\e7f4";
-}
-.icon-notifications_active:before {
- content: "\e7f7";
-}
-.icon-notifications_none:before {
- content: "\e7f5";
-}
-.icon-notifications_off:before {
- content: "\e7f6";
-}
-.icon-notifications_paused:before {
- content: "\e7f8";
-}
-.icon-offline_pin:before {
- content: "\e90a";
-}
-.icon-ondemand_video:before {
- content: "\e63a";
-}
-.icon-opacity:before {
- content: "\e91c";
-}
-.icon-open_in_browser:before {
- content: "\e89d";
-}
-.icon-open_with:before {
- content: "\e89f";
-}
-.icon-pages:before {
- content: "\e7f9";
-}
-.icon-pageview:before {
- content: "\e8a0";
-}
-.icon-pan_tool:before {
- content: "\e925";
-}
-.icon-panorama:before {
- content: "\e40b";
-}
-.icon-radio_button_unchecked:before {
- content: "\e836";
-}
-.icon-panorama_horizontal:before {
- content: "\e40d";
-}
-.icon-panorama_vertical:before {
- content: "\e40e";
-}
-.icon-panorama_wide_angle:before {
- content: "\e40f";
-}
-.icon-party_mode:before {
- content: "\e7fa";
-}
-.icon-pause:before {
- content: "\e034";
-}
-.icon-pause_circle_filled:before {
- content: "\e035";
-}
-.icon-pause_circle_outline:before {
- content: "\e036";
-}
-.icon-people_outline:before {
- content: "\e7fc";
-}
-.icon-perm_camera_mic:before {
- content: "\e8a2";
-}
-.icon-perm_contact_calendar:before {
- content: "\e8a3";
-}
-.icon-perm_data_setting:before {
- content: "\e8a4";
-}
-.icon-perm_device_information:before {
- content: "\e8a5";
-}
-.icon-person_outline:before {
- content: "\e7ff";
-}
-.icon-perm_media:before {
- content: "\e8a7";
-}
-.icon-perm_phone_msg:before {
- content: "\e8a8";
-}
-.icon-perm_scan_wifi:before {
- content: "\e8a9";
-}
-.icon-person:before {
- content: "\e7fd";
-}
-.icon-person_add:before {
- content: "\e7fe";
-}
-.icon-person_pin:before {
- content: "\e55a";
-}
-.icon-person_pin_circle:before {
- content: "\e56a";
-}
-.icon-personal_video:before {
- content: "\e63b";
-}
-.icon-pets:before {
- content: "\e91d";
-}
-.icon-phone_android:before {
- content: "\e324";
-}
-.icon-phone_bluetooth_speaker:before {
- content: "\e61b";
-}
-.icon-phone_forwarded:before {
- content: "\e61c";
-}
-.icon-phone_in_talk:before {
- content: "\e61d";
-}
-.icon-phone_iphone:before {
- content: "\e325";
-}
-.icon-phone_locked:before {
- content: "\e61e";
-}
-.icon-phone_missed:before {
- content: "\e61f";
-}
-.icon-phone_paused:before {
- content: "\e620";
-}
-.icon-phonelink_erase:before {
- content: "\e0db";
-}
-.icon-phonelink_lock:before {
- content: "\e0dc";
-}
-.icon-phonelink_off:before {
- content: "\e327";
-}
-.icon-phonelink_ring:before {
- content: "\e0dd";
-}
-.icon-phonelink_setup:before {
- content: "\e0de";
-}
-.icon-photo_album:before {
- content: "\e411";
-}
-.icon-photo_filter:before {
- content: "\e43b";
-}
-.icon-photo_size_select_actual:before {
- content: "\e432";
-}
-.icon-photo_size_select_large:before {
- content: "\e433";
-}
-.icon-photo_size_select_small:before {
- content: "\e434";
-}
-.icon-picture_as_pdf:before {
- content: "\e415";
-}
-.icon-picture_in_picture:before {
- content: "\e8aa";
-}
-.icon-picture_in_picture_alt:before {
- content: "\e911";
-}
-.icon-pie_chart:before {
- content: "\e6c4";
-}
-.icon-pie_chart_outlined:before {
- content: "\e6c5";
-}
-.icon-pin_drop:before {
- content: "\e55e";
-}
-.icon-play_arrow:before {
- content: "\e037";
-}
-.icon-play_circle_filled:before {
- content: "\e038";
-}
-.icon-play_circle_outline:before {
- content: "\e039";
-}
-.icon-play_for_work:before {
- content: "\e906";
-}
-.icon-playlist_add:before {
- content: "\e03b";
-}
-.icon-playlist_add_check:before {
- content: "\e065";
-}
-.icon-playlist_play:before {
- content: "\e05f";
-}
-.icon-plus_one:before {
- content: "\e800";
-}
-.icon-polymer:before {
- content: "\e8ab";
-}
-.icon-pool:before {
- content: "\eb48";
-}
-.icon-portable_wifi_off:before {
- content: "\e0ce";
-}
-.icon-portrait:before {
- content: "\e416";
-}
-.icon-power:before {
- content: "\e63c";
-}
-.icon-power_input:before {
- content: "\e336";
-}
-.icon-power_settings_new:before {
- content: "\e8ac";
-}
-.icon-pregnant_woman:before {
- content: "\e91e";
-}
-.icon-present_to_all:before {
- content: "\e0df";
-}
-.icon-priority_high:before {
- content: "\e645";
-}
-.icon-public:before {
- content: "\e80b";
-}
-.icon-publish:before {
- content: "\e255";
-}
-.icon-queue_music:before {
- content: "\e03d";
-}
-.icon-queue_play_next:before {
- content: "\e066";
-}
-.icon-radio:before {
- content: "\e03e";
-}
-.icon-radio_button_checked:before {
- content: "\e837";
-}
-.icon-rate_review:before {
- content: "\e560";
-}
-.icon-receipt:before {
- content: "\e8b0";
-}
-.icon-recent_actors:before {
- content: "\e03f";
-}
-.icon-record_voice_over:before {
- content: "\e91f";
-}
-.icon-redo:before {
- content: "\e15a";
-}
-.icon-refresh:before {
- content: "\e5d5";
-}
-.icon-remove:before {
- content: "\e15b";
-}
-.icon-remove_circle_outline:before {
- content: "\e15d";
-}
-.icon-remove_from_queue:before {
- content: "\e067";
-}
-.icon-visibility:before {
- content: "\e8f4";
-}
-.icon-remove_shopping_cart:before {
- content: "\e928";
-}
-.icon-reorder:before {
- content: "\e8fe";
-}
-.icon-repeat:before {
- content: "\e040";
-}
-.icon-repeat_one:before {
- content: "\e041";
-}
-.icon-replay:before {
- content: "\e042";
-}
-.icon-replay_10:before {
- content: "\e059";
-}
-.icon-replay_30:before {
- content: "\e05a";
-}
-.icon-replay_5:before {
- content: "\e05b";
-}
-.icon-reply:before {
- content: "\e15e";
-}
-.icon-reply_all:before {
- content: "\e15f";
-}
-.icon-report:before {
- content: "\e160";
-}
-.icon-warning:before {
- content: "\e002";
-}
-.icon-restaurant:before {
- content: "\e56c";
-}
-.icon-restore_page:before {
- content: "\e929";
-}
-.icon-ring_volume:before {
- content: "\e0d1";
-}
-.icon-room_service:before {
- content: "\eb49";
-}
-.icon-rotate_90_degrees_ccw:before {
- content: "\e418";
-}
-.icon-rotate_left:before {
- content: "\e419";
-}
-.icon-rotate_right:before {
- content: "\e41a";
-}
-.icon-rounded_corner:before {
- content: "\e920";
-}
-.icon-router:before {
- content: "\e328";
-}
-.icon-rowing:before {
- content: "\e921";
-}
-.icon-rss_feed:before {
- content: "\e0e5";
-}
-.icon-rv_hookup:before {
- content: "\e642";
-}
-.icon-satellite:before {
- content: "\e562";
-}
-.icon-save:before {
- content: "\e161";
-}
-.icon-scanner:before {
- content: "\e329";
-}
-.icon-school:before {
- content: "\e80c";
-}
-.icon-screen_lock_landscape:before {
- content: "\e1be";
-}
-.icon-screen_lock_portrait:before {
- content: "\e1bf";
-}
-.icon-screen_lock_rotation:before {
- content: "\e1c0";
-}
-.icon-screen_rotation:before {
- content: "\e1c1";
-}
-.icon-screen_share:before {
- content: "\e0e2";
-}
-.icon-sd_storage:before {
- content: "\e1c2";
-}
-.icon-search:before {
- content: "\e8b6";
-}
-.icon-security:before {
- content: "\e32a";
-}
-.icon-select_all:before {
- content: "\e162";
-}
-.icon-send:before {
- content: "\e163";
-}
-.icon-sentiment_dissatisfied:before {
- content: "\e811";
-}
-.icon-sentiment_neutral:before {
- content: "\e812";
-}
-.icon-sentiment_satisfied:before {
- content: "\e813";
-}
-.icon-sentiment_very_dissatisfied:before {
- content: "\e814";
-}
-.icon-sentiment_very_satisfied:before {
- content: "\e815";
-}
-.icon-settings:before {
- content: "\e8b8";
-}
-.icon-settings_applications:before {
- content: "\e8b9";
-}
-.icon-settings_backup_restore:before {
- content: "\e8ba";
-}
-.icon-settings_bluetooth:before {
- content: "\e8bb";
-}
-.icon-settings_brightness:before {
- content: "\e8bd";
-}
-.icon-settings_cell:before {
- content: "\e8bc";
-}
-.icon-settings_ethernet:before {
- content: "\e8be";
-}
-.icon-settings_input_antenna:before {
- content: "\e8bf";
-}
-.icon-settings_input_composite:before {
- content: "\e8c1";
-}
-.icon-settings_input_hdmi:before {
- content: "\e8c2";
-}
-.icon-settings_input_svideo:before {
- content: "\e8c3";
-}
-.icon-settings_overscan:before {
- content: "\e8c4";
-}
-.icon-settings_phone:before {
- content: "\e8c5";
-}
-.icon-settings_power:before {
- content: "\e8c6";
-}
-.icon-settings_remote:before {
- content: "\e8c7";
-}
-.icon-settings_system_daydream:before {
- content: "\e1c3";
-}
-.icon-settings_voice:before {
- content: "\e8c8";
-}
-.icon-share:before {
- content: "\e80d";
-}
-.icon-shop:before {
- content: "\e8c9";
-}
-.icon-shop_two:before {
- content: "\e8ca";
-}
-.icon-shopping_basket:before {
- content: "\e8cb";
-}
-.icon-short_text:before {
- content: "\e261";
-}
-.icon-show_chart:before {
- content: "\e6e1";
-}
-.icon-shuffle:before {
- content: "\e043";
-}
-.icon-signal_cellular_4_bar:before {
- content: "\e1c8";
-}
-.icon-signal_cellular_connected_no_internet_4_bar:before {
- content: "\e1cd";
-}
-.icon-signal_cellular_null:before {
- content: "\e1cf";
-}
-.icon-signal_cellular_off:before {
- content: "\e1d0";
-}
-.icon-signal_wifi_4_bar:before {
- content: "\e1d8";
-}
-.icon-signal_wifi_4_bar_lock:before {
- content: "\e1d9";
-}
-.icon-signal_wifi_off:before {
- content: "\e1da";
-}
-.icon-sim_card:before {
- content: "\e32b";
-}
-.icon-sim_card_alert:before {
- content: "\e624";
-}
-.icon-skip_next:before {
- content: "\e044";
-}
-.icon-skip_previous:before {
- content: "\e045";
-}
-.icon-slideshow:before {
- content: "\e41b";
-}
-.icon-slow_motion_video:before {
- content: "\e068";
-}
-.icon-stay_primary_portrait:before {
- content: "\e0d6";
-}
-.icon-smoke_free:before {
- content: "\eb4a";
-}
-.icon-smoking_rooms:before {
- content: "\eb4b";
-}
-.icon-textsms:before {
- content: "\e0d8";
-}
-.icon-snooze:before {
- content: "\e046";
-}
-.icon-sort:before {
- content: "\e164";
-}
-.icon-sort_by_alpha:before {
- content: "\e053";
-}
-.icon-spa:before {
- content: "\eb4c";
-}
-.icon-space_bar:before {
- content: "\e256";
-}
-.icon-speaker:before {
- content: "\e32d";
-}
-.icon-speaker_group:before {
- content: "\e32e";
-}
-.icon-speaker_notes:before {
- content: "\e8cd";
-}
-.icon-speaker_notes_off:before {
- content: "\e92a";
-}
-.icon-speaker_phone:before {
- content: "\e0d2";
-}
-.icon-spellcheck:before {
- content: "\e8ce";
-}
-.icon-star_border:before {
- content: "\e83a";
-}
-.icon-star_half:before {
- content: "\e839";
-}
-.icon-stars:before {
- content: "\e8d0";
-}
-.icon-stay_primary_landscape:before {
- content: "\e0d5";
-}
-.icon-stop:before {
- content: "\e047";
-}
-.icon-stop_screen_share:before {
- content: "\e0e3";
-}
-.icon-storage:before {
- content: "\e1db";
-}
-.icon-store_mall_directory:before {
- content: "\e563";
-}
-.icon-straighten:before {
- content: "\e41c";
-}
-.icon-streetview:before {
- content: "\e56e";
-}
-.icon-strikethrough_s:before {
- content: "\e257";
-}
-.icon-style:before {
- content: "\e41d";
-}
-.icon-subdirectory_arrow_left:before {
- content: "\e5d9";
-}
-.icon-subdirectory_arrow_right:before {
- content: "\e5da";
-}
-.icon-subject:before {
- content: "\e8d2";
-}
-.icon-subscriptions:before {
- content: "\e064";
-}
-.icon-subtitles:before {
- content: "\e048";
-}
-.icon-subway:before {
- content: "\e56f";
-}
-.icon-supervisor_account:before {
- content: "\e8d3";
-}
-.icon-surround_sound:before {
- content: "\e049";
-}
-.icon-swap_calls:before {
- content: "\e0d7";
-}
-.icon-swap_horiz:before {
- content: "\e8d4";
-}
-.icon-swap_vert:before {
- content: "\e8d5";
-}
-.icon-swap_vertical_circle:before {
- content: "\e8d6";
-}
-.icon-switch_camera:before {
- content: "\e41e";
-}
-.icon-switch_video:before {
- content: "\e41f";
-}
-.icon-sync_disabled:before {
- content: "\e628";
-}
-.icon-sync_problem:before {
- content: "\e629";
-}
-.icon-system_update:before {
- content: "\e62a";
-}
-.icon-system_update_alt:before {
- content: "\e8d7";
-}
-.icon-tab:before {
- content: "\e8d8";
-}
-.icon-tab_unselected:before {
- content: "\e8d9";
-}
-.icon-tablet:before {
- content: "\e32f";
-}
-.icon-tablet_android:before {
- content: "\e330";
-}
-.icon-tablet_mac:before {
- content: "\e331";
-}
-.icon-tap_and_play:before {
- content: "\e62b";
-}
-.icon-text_fields:before {
- content: "\e262";
-}
-.icon-text_format:before {
- content: "\e165";
-}
-.icon-texture:before {
- content: "\e421";
-}
-.icon-thumb_down:before {
- content: "\e8db";
-}
-.icon-thumb_up:before {
- content: "\e8dc";
-}
-.icon-thumbs_up_down:before {
- content: "\e8dd";
-}
-.icon-timelapse:before {
- content: "\e422";
-}
-.icon-timeline:before {
- content: "\e922";
-}
-.icon-timer:before {
- content: "\e425";
-}
-.icon-timer_10:before {
- content: "\e423";
-}
-.icon-timer_3:before {
- content: "\e424";
-}
-.icon-timer_off:before {
- content: "\e426";
-}
-.icon-title:before {
- content: "\e264";
-}
-.icon-toc:before {
- content: "\e8de";
-}
-.icon-today:before {
- content: "\e8df";
-}
-.icon-toll:before {
- content: "\e8e0";
-}
-.icon-tonality:before {
- content: "\e427";
-}
-.icon-touch_app:before {
- content: "\e913";
-}
-.icon-toys:before {
- content: "\e332";
-}
-.icon-track_changes:before {
- content: "\e8e1";
-}
-.icon-traffic:before {
- content: "\e565";
-}
-.icon-train:before {
- content: "\e570";
-}
-.icon-tram:before {
- content: "\e571";
-}
-.icon-transfer_within_a_station:before {
- content: "\e572";
-}
-.icon-transform:before {
- content: "\e428";
-}
-.icon-translate:before {
- content: "\e8e2";
-}
-.icon-trending_down:before {
- content: "\e8e3";
-}
-.icon-trending_flat:before {
- content: "\e8e4";
-}
-.icon-trending_up:before {
- content: "\e8e5";
-}
-.icon-tune:before {
- content: "\e429";
-}
-.icon-tv:before {
- content: "\e333";
-}
-.icon-unarchive:before {
- content: "\e169";
-}
-.icon-undo:before {
- content: "\e166";
-}
-.icon-unfold_less:before {
- content: "\e5d6";
-}
-.icon-unfold_more:before {
- content: "\e5d7";
-}
-.icon-update:before {
- content: "\e923";
-}
-.icon-usb:before {
- content: "\e1e0";
-}
-.icon-verified_user:before {
- content: "\e8e8";
-}
-.icon-vertical_align_bottom:before {
- content: "\e258";
-}
-.icon-vertical_align_center:before {
- content: "\e259";
-}
-.icon-vertical_align_top:before {
- content: "\e25a";
-}
-.icon-vibration:before {
- content: "\e62d";
-}
-.icon-video_call:before {
- content: "\e070";
-}
-.icon-video_label:before {
- content: "\e071";
-}
-.icon-video_library:before {
- content: "\e04a";
-}
-.icon-videocam:before {
- content: "\e04b";
-}
-.icon-videocam_off:before {
- content: "\e04c";
-}
-.icon-videogame_asset:before {
- content: "\e338";
-}
-.icon-view_agenda:before {
- content: "\e8e9";
-}
-.icon-view_array:before {
- content: "\e8ea";
-}
-.icon-view_carousel:before {
- content: "\e8eb";
-}
-.icon-view_column:before {
- content: "\e8ec";
-}
-.icon-view_comfy:before {
- content: "\e42a";
-}
-.icon-view_compact:before {
- content: "\e42b";
-}
-.icon-view_day:before {
- content: "\e8ed";
-}
-.icon-view_headline:before {
- content: "\e8ee";
-}
-.icon-view_list:before {
- content: "\e8ef";
-}
-.icon-view_module:before {
- content: "\e8f0";
-}
-.icon-view_quilt:before {
- content: "\e8f1";
-}
-.icon-view_stream:before {
- content: "\e8f2";
-}
-.icon-view_week:before {
- content: "\e8f3";
-}
-.icon-vignette:before {
- content: "\e435";
-}
-.icon-visibility_off:before {
- content: "\e8f5";
-}
-.icon-voice_chat:before {
- content: "\e62e";
-}
-.icon-voicemail:before {
- content: "\e0d9";
-}
-.icon-volume_down:before {
- content: "\e04d";
-}
-.icon-volume_mute:before {
- content: "\e04e";
-}
-.icon-volume_off:before {
- content: "\e04f";
-}
-.icon-volume_up:before {
- content: "\e050";
-}
-.icon-vpn_key:before {
- content: "\e0da";
-}
-.icon-vpn_lock:before {
- content: "\e62f";
-}
-.icon-wallpaper:before {
- content: "\e1bc";
-}
-.icon-watch:before {
- content: "\e334";
-}
-.icon-watch_later:before {
- content: "\e924";
-}
-.icon-wb_auto:before {
- content: "\e42c";
-}
-.icon-wb_incandescent:before {
- content: "\e42e";
-}
-.icon-wb_iridescent:before {
- content: "\e436";
-}
-.icon-wb_sunny:before {
- content: "\e430";
-}
-.icon-wc:before {
- content: "\e63d";
-}
-.icon-web:before {
- content: "\e051";
-}
-.icon-web_asset:before {
- content: "\e069";
-}
-.icon-weekend:before {
- content: "\e16b";
-}
-.icon-whatshot:before {
- content: "\e80e";
-}
-.icon-widgets:before {
- content: "\e1bd";
-}
-.icon-wifi:before {
- content: "\e63e";
-}
-.icon-wifi_lock:before {
- content: "\e1e1";
-}
-.icon-wifi_tethering:before {
- content: "\e1e2";
-}
-.icon-work:before {
- content: "\e8f9";
-}
-.icon-wrap_text:before {
- content: "\e25b";
-}
-.icon-youtube_searched_for:before {
- content: "\e8fa";
-}
-.icon-zoom_in:before {
- content: "\e8ff";
-}
-.icon-zoom_out:before {
- content: "\e901";
-}
-.icon-zoom_out_map:before {
- content: "\e56b";
-}
-
diff --git a/docs/index.html b/docs/index.html
index 1f05e3c..ee9c5ca 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -7,8 +7,8 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="author" content="https://github.com/picturepan2/" />
<title>Spectre.css - The lightweight, responsive and modern CSS framework</title>
- <link rel="stylesheet" href="css/spectre.css" />
- <link rel="stylesheet" href="css/spectre-icons.css" />
+ <link rel="stylesheet" href="dist/spectre.css" />
+ <link rel="stylesheet" href="dist/spectre-icons.css" />
<link rel="stylesheet" href="css/docs.css" />
</head>
<body>
@@ -131,27 +131,35 @@
</section>
<section class="notes">
<h5>Install manually</h5>
- <p>Download the compiled and minified <a href="https://github.com/picturepan2/spectre/tree/master/dist" target="_blank">Spectre CSS file</a> (~10KB min+gzip):</p>
- <p><a href="https://github.com/picturepan2/spectre/tree/master/dist" target="_blank" class="btn btn-primary">Download Spectre.css</a></p>
+ <p>Download the compiled and minified <a href="https://github.com/picturepan2/spectre/tree/master/docs/dist" target="_blank">Spectre CSS file</a> (~10KB min+gzip):</p>
+ <p><a href="https://github.com/picturepan2/spectre/tree/master/docs/dist" target="_blank" class="btn btn-primary">Download Spectre.css</a></p>
+ </section>
+ <section class="notes">
<h5>Install with NPM</h5>
<!-- install with npm example -->
<pre class="code"><code><span class="tag">$</span> npm install <span class="atv">spectre.css</span> --save
</code></pre>
+ </seciton>
+ <section class="notes">
<h5>Install with Yarn</h5>
<!-- install with yarn example -->
<pre class="code"><code><span class="tag">$</span> yarn add <span class="atv">spectre.css</span>
</code></pre>
+ </section>
+ <section class="notes">
<h5>Install with Bower</h5>
<!-- install with bower example -->
<pre class="code"><code><span class="tag">$</span> bower install <span class="atv">spectre.css</span> --save
</code></pre>
- <p>And include <code>spectre.css</code> in your website or Web app &lt;head&gt;. If you want the <a href="experimentals.html">Spectre Experimentals</a> components, you can add <code>spectre-exp.css</code> as well.</p>
+ </seciton>
+ <section class="notes">
+ <p>And include <code>spectre.css</code> in your website or Web app &lt;head&gt;. If you want the <a href="experimentals.html">Spectre Experimentals</a> and <a href="elements.html#icons">Spectre Icons</a>, you can add <code>spectre-exp.css</code> and <code>spectre-icons.css</code> accordingly.</p>
<!-- install manually example -->
<pre class="code"><code>&lt;<span class="tag">link</span> <span class="atn">rel</span>=<span class="atv">&quot;stylesheet&quot;</span> <span class="atn">href</span>=<span class="atv">&quot;dist/spectre.min.css&quot;</span> /&gt;
@@ -165,7 +173,7 @@
<section id="compiling" class="container">
<header class="text-center"><h3>Custom version</h3></header>
<section class="notes">
- <p>Spectre uses <a href="http://gulpjs.com/" target="_blank">Gulp</a> for compiling CSS. You can customize your version of Spectre.css by editing LESS files in <code>/src</code> directory or removing unneeded components from <code>spectre.less</code>.</p>
+ <p>Spectre uses <a href="http://gulpjs.com/" target="_blank">Gulp</a> for compiling CSS. You can customize your version of Spectre.css by editing LESS files in <code>/src</code> directory or removing unneeded components from <code>spectre.less</code>, <code>spectre-exp.less</code> and <code>spectre-icons.less</code>.</p>
<p>Then, you can build the CSS file from the command line:</p>
<ol>
<li>Navigate to the root directory of Spectre where you can find <code>package.json</code> file.</li>
@@ -178,7 +186,7 @@
<!-- file structure -->
<pre class="code"><code>spectre/
-├── dist/
+├── dist/ <span class="com">// Build folder (Git ignored)</span>
│ ├── spectre-exp.css
│ ├── spectre-exp.min.css
│ ├── spectre-icons.css
@@ -187,14 +195,22 @@
│ └── spectre.min.css
├── docs/
+│ ├── dist/ <span class="com">// Pre-built CSS folder</span>
+│ │ ├── spectre-exp.css
+│ │ ├── spectre-exp.min.css
+│ │ ├── spectre-icons.css
+│ │ ├── spectre-icons.min.css
+│ │ ├── spectre.css
+│ │ └── spectre.min.css
+| ├── css/ <span class="com">// Docs CSS file</span>
+│ │ └── docs.css
| ├── src/
-│ │ ├── docs.less
-│ │ └── ...
+│ │ └── docs.less
│ ├── ../
│ ├── index.html
│ └── ...
-├── src/
+├── src/ <span class="com">// Source LESS files</span>
│ ├── mixins.less
│ ├── variables.less
│ └── ...
diff --git a/docs/layout.html b/docs/layout.html
index c05fc1f..d1137bd 100644
--- a/docs/layout.html
+++ b/docs/layout.html
@@ -7,8 +7,8 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="author" content="https://github.com/picturepan2/" />
<title>Layout - Spectre.css</title>
- <link rel="stylesheet" href="css/spectre.css" />
- <link rel="stylesheet" href="css/spectre-icons.css" />
+ <link rel="stylesheet" href="dist/spectre.css" />
+ <link rel="stylesheet" href="dist/spectre-icons.css" />
<link rel="stylesheet" href="css/docs.css" />
</head>
<body>
diff --git a/docs/utilities.html b/docs/utilities.html
index 4128ae1..b24a934 100644
--- a/docs/utilities.html
+++ b/docs/utilities.html
@@ -7,8 +7,8 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="author" content="https://github.com/picturepan2/" />
<title>Utilities - Spectre.css </title>
- <link rel="stylesheet" href="css/spectre.css" />
- <link rel="stylesheet" href="css/spectre-icons.css" />
+ <link rel="stylesheet" href="dist/spectre.css" />
+ <link rel="stylesheet" href="dist/spectre-icons.css" />
<link rel="stylesheet" href="css/docs.css" />
</head>
<body>
diff --git a/gulpfile.js b/gulpfile.js
index f729d26..e92ae66 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -23,21 +23,27 @@ gulp.task('build', function() {
.pipe(rename({
suffix: '.min'
}))
- .pipe(gulp.dest('./dist'))
+ .pipe(gulp.dest('./dist'));
});
gulp.task('docs', function() {
- gulp.src(['./docs/src/*.less', './*.less'])
+ gulp.src('./docs/src/*.less')
+ .pipe(less({
+ plugins: [autoprefix]
+ }))
+ .pipe(csscomb())
+ .pipe(gulp.dest('./docs/css'));
+ gulp.src('./*.less')
.pipe(less({
plugins: [autoprefix]
}))
.pipe(csscomb())
- .pipe(gulp.dest('./docs/css'))
+ .pipe(gulp.dest('./docs/dist'))
.pipe(cleancss())
.pipe(rename({
suffix: '.min'
}))
- .pipe(gulp.dest('./docs/css'))
+ .pipe(gulp.dest('./docs/dist'));
});
gulp.task('default', ['build']);