myrta-ui 17.0.5 → 17.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -47,6 +47,7 @@ import 'jodit/esm/plugins/video/video.js';
47
47
  import 'jodit/esm/plugins/search/search.js';
48
48
  import * as i3 from 'ngx-jodit';
49
49
  import { NgxJoditComponent } from 'ngx-jodit';
50
+ import JSONEditor from 'jsoneditor';
50
51
  import { startWith, distinctUntilChanged, pairwise, catchError } from 'rxjs/operators';
51
52
  import * as i3$1 from 'ngx-file-drop';
52
53
  import { NgxFileDropModule } from 'ngx-file-drop';
@@ -2331,11 +2332,11 @@ class PaginatorComponent {
2331
2332
  return item.id;
2332
2333
  }
2333
2334
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: PaginatorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2334
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.11", type: PaginatorComponent, selector: "mrx-paginator", inputs: { pageSizes: "pageSizes", currentPage: "currentPage", pageSize: "pageSize", total: "total", customClasses: "customClasses", isEmptyPaginator: "isEmptyPaginator", isPaginatorText: "isPaginatorText", paginatorText: "paginatorText", setPosition: ["position", "setPosition"], setWithPageSize: ["withPageSize", "setWithPageSize"] }, outputs: { dataStateChanged: "dataStateChanged" }, ngImport: i0, template: "<div class=\"mrx-paginator\" [class]=\"getClasses\" *ngIf=\"isEmptyPaginator || total\">\r\n <ul class=\"mrx-paginator__list\">\r\n <li\r\n class=\"mrx-paginator__previous\"\r\n [class.disabled]=\"currentPage <= 1\"\r\n (click)=\"currentPage > 1 && onChangeCurrentPage(currentPage - 1)\">\r\n <div class=\"mrx-icon icon-chevron-left icon-font-24\"></div>\r\n </li>\r\n\r\n <li *ngIf=\"getViewItems.length === 0\" class=\"mrx-paginator__item\">1</li>\r\n\r\n <li class=\"mrx-paginator__item\" *ngIf=\"currentPage > 3 && getItems > 5\" (click)=\"onChangeCurrentPage(1)\">1</li>\r\n <li class=\"mrx-paginator__item dots\" *ngIf=\"currentPage > 3 && getItems > 5\">...</li>\r\n\r\n <li\r\n class=\"mrx-paginator__item\"\r\n *ngFor=\"let item of getViewItems; trackBy: trackByFn\"\r\n (click)=\"onChangeCurrentPage(item.index)\"\r\n [class.active]=\"currentPage === item.index\"\r\n >\r\n {{item.index}}\r\n </li>\r\n\r\n <li class=\"mrx-paginator__item dots\" *ngIf=\"currentPage < getItems - 2 && getItems > 5\">...</li>\r\n <li class=\"mrx-paginator__item\" *ngIf=\"currentPage < getItems - 2 && getItems > 5\"\r\n (click)=\"onChangeCurrentPage(getItems)\">{{getItems}}</li>\r\n\r\n <li\r\n class=\"mrx-paginator__next\"\r\n [class.disabled]=\"currentPage >= getItems\"\r\n (click)=\"currentPage < getItems && onChangeCurrentPage(currentPage + 1)\">\r\n <div class=\"mrx-icon icon-chevron-right icon-font-24\"></div>\r\n </li>\r\n </ul>\r\n\r\n <ng-template #select>\r\n <mrx-input-select\r\n *ngIf=\"withPageSize\"\r\n [(ngModel)]=\"pageSize\"\r\n [items]=\"pageSizes\"\r\n [clearable]=\"false\"\r\n [searchable]=\"false\"\r\n (ngModelChange)=\"onChangePageSize($event)\"\r\n ></mrx-input-select>\r\n<!-- <ng-select-->\r\n<!-- *ngIf=\"withPageSize\"-->\r\n<!-- [(ngModel)]=\"pageSize\"-->\r\n<!-- [items]=\"pageSizes\"-->\r\n<!-- [clearable]=\"false\"-->\r\n<!-- [searchable]=\"false\"-->\r\n<!-- (change)=\"onChangePageSize($event)\"-->\r\n<!-- class=\"ml-3\"-->\r\n<!-- ></ng-select>-->\r\n </ng-template>\r\n\r\n <ng-container *ngTemplateOutlet=\"select\"></ng-container>\r\n\r\n <div *ngIf=\"isPaginatorText\" class=\"mrx-paginator__text\">\r\n \u041E\u0442\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u044B {{paginatorText}} {{getFirstNumberCurrentPage}} - {{getLastNumberCurrentPage}} \u0438\u0437 {{total}}\r\n </div>\r\n</div>\r\n\r\n\r\n", styles: [".mrx-paginator{display:flex;align-items:center;list-style:none;padding-left:0;gap:var(--spacing-4)}.mrx-paginator ul{display:flex;align-items:center;justify-content:center;list-style:none;padding:0;margin:0;gap:var(--spacing-1)}.mrx-paginator ul li{display:flex;align-items:center;justify-content:center;cursor:pointer}.mrx-paginator .mrx-paginator__item{padding-left:var(--spacing-3);padding-right:var(--spacing-3);min-width:32px;min-height:32px;border-radius:4px;font-weight:400;font-size:16px;line-height:24px;transition:.2s}.mrx-paginator .mrx-paginator__item.active{background-color:var(--brand-bg-primary-default);color:#fff}.mrx-paginator .mrx-paginator__item.dots,.mrx-paginator .mrx-paginator__item.disabled{cursor:default}.mrx-paginator .mrx-paginator__item:not(.dots,.active):hover{background-color:var(--brand-bg-tertiary-hover)}.mrx-paginator .mrx-paginator__previous,.mrx-paginator .mrx-paginator__next{min-width:24px;min-height:24px}.mrx-paginator .mrx-paginator__previous.disabled .mrx-icon,.mrx-paginator .mrx-paginator__next.disabled .mrx-icon{color:var(--neutral-icon-disabled)}.mrx-paginator__text{font-size:16px;line-height:24px;color:var(--neutral-text-primary)}.mrx-paginator.mrx-paginator.paginator-centered{justify-content:center}.mrx-paginator.mrx-paginator.paginator-left{justify-content:flex-start}.mrx-paginator.mrx-paginator.paginator-right{justify-content:flex-end}\n"], dependencies: [{ kind: "directive", type: i1$1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: InputSelectComponent, selector: "mrx-input-select", inputs: ["fields", "size", "selected", "bindValue", "bindLabel", "customClasses", "wrapperCustomClasses", "multiple", "loading", "addTag", "clearable", "items", "groupBy", "emptyValue", "virtualScroll", "trackByFn", "displayValue", "disabledFromDisplay", "maxLength", "customSearchFn", "isBottomLabel", "search", "required", "disabled", "readonly", "showEmptyFields", "placeholder", "searchable", "loadLabel", "notFoundText", "closeOnSelect", "multiCollapseCount", "invalid", "invalidMessage", "checkInvalid", "label", "labelRequiredHidden", "labelExtraClass", "tooltip", "tooltipHidden", "tooltipVisible", "maxSelectedItems"], outputs: ["changed", "modelChange", "searched"] }] });
2335
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.11", type: PaginatorComponent, selector: "mrx-paginator", inputs: { pageSizes: "pageSizes", currentPage: "currentPage", pageSize: "pageSize", total: "total", customClasses: "customClasses", isEmptyPaginator: "isEmptyPaginator", isPaginatorText: "isPaginatorText", paginatorText: "paginatorText", setPosition: ["position", "setPosition"], setWithPageSize: ["withPageSize", "setWithPageSize"] }, outputs: { dataStateChanged: "dataStateChanged" }, ngImport: i0, template: "<div class=\"mrx-paginator\" [class]=\"getClasses\" *ngIf=\"isEmptyPaginator || total\">\r\n <ul class=\"mrx-paginator__list\">\r\n <li\r\n class=\"mrx-paginator__previous\"\r\n [class.disabled]=\"currentPage <= 1\"\r\n (click)=\"currentPage > 1 && onChangeCurrentPage(currentPage - 1)\">\r\n <div class=\"mrx-icon icon-chevron-left icon-font-24\"></div>\r\n </li>\r\n\r\n <li *ngIf=\"getViewItems.length === 0\" class=\"mrx-paginator__item active\">1</li>\r\n\r\n <li class=\"mrx-paginator__item\" *ngIf=\"currentPage > 3 && getItems > 5\" (click)=\"onChangeCurrentPage(1)\">1</li>\r\n <li class=\"mrx-paginator__item dots\" *ngIf=\"currentPage > 3 && getItems > 5\">...</li>\r\n\r\n <li\r\n class=\"mrx-paginator__item\"\r\n *ngFor=\"let item of getViewItems; trackBy: trackByFn\"\r\n (click)=\"onChangeCurrentPage(item.index)\"\r\n [class.active]=\"currentPage === item.index\"\r\n >\r\n {{item.index}}\r\n </li>\r\n\r\n <li class=\"mrx-paginator__item dots\" *ngIf=\"currentPage < getItems - 2 && getItems > 5\">...</li>\r\n <li class=\"mrx-paginator__item\" *ngIf=\"currentPage < getItems - 2 && getItems > 5\"\r\n (click)=\"onChangeCurrentPage(getItems)\">{{getItems}}</li>\r\n\r\n <li\r\n class=\"mrx-paginator__next\"\r\n [class.disabled]=\"currentPage >= getItems\"\r\n (click)=\"currentPage < getItems && onChangeCurrentPage(currentPage + 1)\">\r\n <div class=\"mrx-icon icon-chevron-right icon-font-24\"></div>\r\n </li>\r\n </ul>\r\n\r\n <ng-template #select>\r\n <mrx-input-select\r\n *ngIf=\"withPageSize\"\r\n size=\"medium\"\r\n [(ngModel)]=\"pageSize\"\r\n [items]=\"pageSizes\"\r\n [clearable]=\"false\"\r\n [searchable]=\"false\"\r\n (ngModelChange)=\"onChangePageSize($event)\"\r\n ></mrx-input-select>\r\n<!-- <ng-select-->\r\n<!-- *ngIf=\"withPageSize\"-->\r\n<!-- [(ngModel)]=\"pageSize\"-->\r\n<!-- [items]=\"pageSizes\"-->\r\n<!-- [clearable]=\"false\"-->\r\n<!-- [searchable]=\"false\"-->\r\n<!-- (change)=\"onChangePageSize($event)\"-->\r\n<!-- class=\"ml-3\"-->\r\n<!-- ></ng-select>-->\r\n </ng-template>\r\n\r\n <ng-container *ngTemplateOutlet=\"select\"></ng-container>\r\n\r\n <div *ngIf=\"isPaginatorText\" class=\"mrx-paginator__text\">\r\n \u041E\u0442\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u044B {{paginatorText}} {{getFirstNumberCurrentPage}} - {{getLastNumberCurrentPage}} \u0438\u0437 {{total}}\r\n </div>\r\n</div>\r\n\r\n\r\n", styles: [":host::ng-deep .mrx-paginator{display:flex;align-items:center;list-style:none;padding-left:0;gap:var(--spacing-4)}:host::ng-deep .mrx-paginator .mrx-input-select .ng-select .ng-select-container{padding-left:var(--spacing-4)}:host::ng-deep .mrx-paginator .mrx-input-select .ng-select .ng-select-container .ng-value-container{min-width:36px;padding:0!important;min-height:auto}:host::ng-deep .mrx-paginator ul{display:flex;align-items:center;justify-content:center;list-style:none;padding:0;margin:0;gap:var(--spacing-1)}:host::ng-deep .mrx-paginator ul li{display:flex;align-items:center;justify-content:center;cursor:pointer}:host::ng-deep .mrx-paginator .mrx-paginator__item{padding-left:var(--spacing-3);padding-right:var(--spacing-3);min-width:32px;min-height:32px;border-radius:4px;font-weight:400;font-size:16px;line-height:24px;transition:.2s}:host::ng-deep .mrx-paginator .mrx-paginator__item.active{background-color:var(--brand-bg-primary-default);color:#fff}:host::ng-deep .mrx-paginator .mrx-paginator__item.dots,:host::ng-deep .mrx-paginator .mrx-paginator__item.disabled{cursor:default}:host::ng-deep .mrx-paginator .mrx-paginator__item:not(.dots,.active):hover{background-color:var(--brand-bg-tertiary-hover)}:host::ng-deep .mrx-paginator .mrx-paginator__previous,:host::ng-deep .mrx-paginator .mrx-paginator__next{min-width:24px;min-height:24px}:host::ng-deep .mrx-paginator .mrx-paginator__previous.disabled .mrx-icon,:host::ng-deep .mrx-paginator .mrx-paginator__next.disabled .mrx-icon{color:var(--neutral-icon-disabled)}:host::ng-deep .mrx-paginator__text{font-size:16px;line-height:24px;color:var(--neutral-text-primary)}.mrx-paginator.mrx-paginator.paginator-centered{justify-content:center}.mrx-paginator.mrx-paginator.paginator-left{justify-content:flex-start}.mrx-paginator.mrx-paginator.paginator-right{justify-content:flex-end}\n"], dependencies: [{ kind: "directive", type: i1$1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: InputSelectComponent, selector: "mrx-input-select", inputs: ["fields", "size", "selected", "bindValue", "bindLabel", "customClasses", "wrapperCustomClasses", "multiple", "loading", "addTag", "clearable", "items", "groupBy", "emptyValue", "virtualScroll", "trackByFn", "displayValue", "disabledFromDisplay", "maxLength", "customSearchFn", "isBottomLabel", "search", "required", "disabled", "readonly", "showEmptyFields", "placeholder", "searchable", "loadLabel", "notFoundText", "closeOnSelect", "multiCollapseCount", "invalid", "invalidMessage", "checkInvalid", "label", "labelRequiredHidden", "labelExtraClass", "tooltip", "tooltipHidden", "tooltipVisible", "maxSelectedItems"], outputs: ["changed", "modelChange", "searched"] }] });
2335
2336
  }
2336
2337
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: PaginatorComponent, decorators: [{
2337
2338
  type: Component,
2338
- args: [{ selector: 'mrx-paginator', template: "<div class=\"mrx-paginator\" [class]=\"getClasses\" *ngIf=\"isEmptyPaginator || total\">\r\n <ul class=\"mrx-paginator__list\">\r\n <li\r\n class=\"mrx-paginator__previous\"\r\n [class.disabled]=\"currentPage <= 1\"\r\n (click)=\"currentPage > 1 && onChangeCurrentPage(currentPage - 1)\">\r\n <div class=\"mrx-icon icon-chevron-left icon-font-24\"></div>\r\n </li>\r\n\r\n <li *ngIf=\"getViewItems.length === 0\" class=\"mrx-paginator__item\">1</li>\r\n\r\n <li class=\"mrx-paginator__item\" *ngIf=\"currentPage > 3 && getItems > 5\" (click)=\"onChangeCurrentPage(1)\">1</li>\r\n <li class=\"mrx-paginator__item dots\" *ngIf=\"currentPage > 3 && getItems > 5\">...</li>\r\n\r\n <li\r\n class=\"mrx-paginator__item\"\r\n *ngFor=\"let item of getViewItems; trackBy: trackByFn\"\r\n (click)=\"onChangeCurrentPage(item.index)\"\r\n [class.active]=\"currentPage === item.index\"\r\n >\r\n {{item.index}}\r\n </li>\r\n\r\n <li class=\"mrx-paginator__item dots\" *ngIf=\"currentPage < getItems - 2 && getItems > 5\">...</li>\r\n <li class=\"mrx-paginator__item\" *ngIf=\"currentPage < getItems - 2 && getItems > 5\"\r\n (click)=\"onChangeCurrentPage(getItems)\">{{getItems}}</li>\r\n\r\n <li\r\n class=\"mrx-paginator__next\"\r\n [class.disabled]=\"currentPage >= getItems\"\r\n (click)=\"currentPage < getItems && onChangeCurrentPage(currentPage + 1)\">\r\n <div class=\"mrx-icon icon-chevron-right icon-font-24\"></div>\r\n </li>\r\n </ul>\r\n\r\n <ng-template #select>\r\n <mrx-input-select\r\n *ngIf=\"withPageSize\"\r\n [(ngModel)]=\"pageSize\"\r\n [items]=\"pageSizes\"\r\n [clearable]=\"false\"\r\n [searchable]=\"false\"\r\n (ngModelChange)=\"onChangePageSize($event)\"\r\n ></mrx-input-select>\r\n<!-- <ng-select-->\r\n<!-- *ngIf=\"withPageSize\"-->\r\n<!-- [(ngModel)]=\"pageSize\"-->\r\n<!-- [items]=\"pageSizes\"-->\r\n<!-- [clearable]=\"false\"-->\r\n<!-- [searchable]=\"false\"-->\r\n<!-- (change)=\"onChangePageSize($event)\"-->\r\n<!-- class=\"ml-3\"-->\r\n<!-- ></ng-select>-->\r\n </ng-template>\r\n\r\n <ng-container *ngTemplateOutlet=\"select\"></ng-container>\r\n\r\n <div *ngIf=\"isPaginatorText\" class=\"mrx-paginator__text\">\r\n \u041E\u0442\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u044B {{paginatorText}} {{getFirstNumberCurrentPage}} - {{getLastNumberCurrentPage}} \u0438\u0437 {{total}}\r\n </div>\r\n</div>\r\n\r\n\r\n", styles: [".mrx-paginator{display:flex;align-items:center;list-style:none;padding-left:0;gap:var(--spacing-4)}.mrx-paginator ul{display:flex;align-items:center;justify-content:center;list-style:none;padding:0;margin:0;gap:var(--spacing-1)}.mrx-paginator ul li{display:flex;align-items:center;justify-content:center;cursor:pointer}.mrx-paginator .mrx-paginator__item{padding-left:var(--spacing-3);padding-right:var(--spacing-3);min-width:32px;min-height:32px;border-radius:4px;font-weight:400;font-size:16px;line-height:24px;transition:.2s}.mrx-paginator .mrx-paginator__item.active{background-color:var(--brand-bg-primary-default);color:#fff}.mrx-paginator .mrx-paginator__item.dots,.mrx-paginator .mrx-paginator__item.disabled{cursor:default}.mrx-paginator .mrx-paginator__item:not(.dots,.active):hover{background-color:var(--brand-bg-tertiary-hover)}.mrx-paginator .mrx-paginator__previous,.mrx-paginator .mrx-paginator__next{min-width:24px;min-height:24px}.mrx-paginator .mrx-paginator__previous.disabled .mrx-icon,.mrx-paginator .mrx-paginator__next.disabled .mrx-icon{color:var(--neutral-icon-disabled)}.mrx-paginator__text{font-size:16px;line-height:24px;color:var(--neutral-text-primary)}.mrx-paginator.mrx-paginator.paginator-centered{justify-content:center}.mrx-paginator.mrx-paginator.paginator-left{justify-content:flex-start}.mrx-paginator.mrx-paginator.paginator-right{justify-content:flex-end}\n"] }]
2339
+ args: [{ selector: 'mrx-paginator', template: "<div class=\"mrx-paginator\" [class]=\"getClasses\" *ngIf=\"isEmptyPaginator || total\">\r\n <ul class=\"mrx-paginator__list\">\r\n <li\r\n class=\"mrx-paginator__previous\"\r\n [class.disabled]=\"currentPage <= 1\"\r\n (click)=\"currentPage > 1 && onChangeCurrentPage(currentPage - 1)\">\r\n <div class=\"mrx-icon icon-chevron-left icon-font-24\"></div>\r\n </li>\r\n\r\n <li *ngIf=\"getViewItems.length === 0\" class=\"mrx-paginator__item active\">1</li>\r\n\r\n <li class=\"mrx-paginator__item\" *ngIf=\"currentPage > 3 && getItems > 5\" (click)=\"onChangeCurrentPage(1)\">1</li>\r\n <li class=\"mrx-paginator__item dots\" *ngIf=\"currentPage > 3 && getItems > 5\">...</li>\r\n\r\n <li\r\n class=\"mrx-paginator__item\"\r\n *ngFor=\"let item of getViewItems; trackBy: trackByFn\"\r\n (click)=\"onChangeCurrentPage(item.index)\"\r\n [class.active]=\"currentPage === item.index\"\r\n >\r\n {{item.index}}\r\n </li>\r\n\r\n <li class=\"mrx-paginator__item dots\" *ngIf=\"currentPage < getItems - 2 && getItems > 5\">...</li>\r\n <li class=\"mrx-paginator__item\" *ngIf=\"currentPage < getItems - 2 && getItems > 5\"\r\n (click)=\"onChangeCurrentPage(getItems)\">{{getItems}}</li>\r\n\r\n <li\r\n class=\"mrx-paginator__next\"\r\n [class.disabled]=\"currentPage >= getItems\"\r\n (click)=\"currentPage < getItems && onChangeCurrentPage(currentPage + 1)\">\r\n <div class=\"mrx-icon icon-chevron-right icon-font-24\"></div>\r\n </li>\r\n </ul>\r\n\r\n <ng-template #select>\r\n <mrx-input-select\r\n *ngIf=\"withPageSize\"\r\n size=\"medium\"\r\n [(ngModel)]=\"pageSize\"\r\n [items]=\"pageSizes\"\r\n [clearable]=\"false\"\r\n [searchable]=\"false\"\r\n (ngModelChange)=\"onChangePageSize($event)\"\r\n ></mrx-input-select>\r\n<!-- <ng-select-->\r\n<!-- *ngIf=\"withPageSize\"-->\r\n<!-- [(ngModel)]=\"pageSize\"-->\r\n<!-- [items]=\"pageSizes\"-->\r\n<!-- [clearable]=\"false\"-->\r\n<!-- [searchable]=\"false\"-->\r\n<!-- (change)=\"onChangePageSize($event)\"-->\r\n<!-- class=\"ml-3\"-->\r\n<!-- ></ng-select>-->\r\n </ng-template>\r\n\r\n <ng-container *ngTemplateOutlet=\"select\"></ng-container>\r\n\r\n <div *ngIf=\"isPaginatorText\" class=\"mrx-paginator__text\">\r\n \u041E\u0442\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u044B {{paginatorText}} {{getFirstNumberCurrentPage}} - {{getLastNumberCurrentPage}} \u0438\u0437 {{total}}\r\n </div>\r\n</div>\r\n\r\n\r\n", styles: [":host::ng-deep .mrx-paginator{display:flex;align-items:center;list-style:none;padding-left:0;gap:var(--spacing-4)}:host::ng-deep .mrx-paginator .mrx-input-select .ng-select .ng-select-container{padding-left:var(--spacing-4)}:host::ng-deep .mrx-paginator .mrx-input-select .ng-select .ng-select-container .ng-value-container{min-width:36px;padding:0!important;min-height:auto}:host::ng-deep .mrx-paginator ul{display:flex;align-items:center;justify-content:center;list-style:none;padding:0;margin:0;gap:var(--spacing-1)}:host::ng-deep .mrx-paginator ul li{display:flex;align-items:center;justify-content:center;cursor:pointer}:host::ng-deep .mrx-paginator .mrx-paginator__item{padding-left:var(--spacing-3);padding-right:var(--spacing-3);min-width:32px;min-height:32px;border-radius:4px;font-weight:400;font-size:16px;line-height:24px;transition:.2s}:host::ng-deep .mrx-paginator .mrx-paginator__item.active{background-color:var(--brand-bg-primary-default);color:#fff}:host::ng-deep .mrx-paginator .mrx-paginator__item.dots,:host::ng-deep .mrx-paginator .mrx-paginator__item.disabled{cursor:default}:host::ng-deep .mrx-paginator .mrx-paginator__item:not(.dots,.active):hover{background-color:var(--brand-bg-tertiary-hover)}:host::ng-deep .mrx-paginator .mrx-paginator__previous,:host::ng-deep .mrx-paginator .mrx-paginator__next{min-width:24px;min-height:24px}:host::ng-deep .mrx-paginator .mrx-paginator__previous.disabled .mrx-icon,:host::ng-deep .mrx-paginator .mrx-paginator__next.disabled .mrx-icon{color:var(--neutral-icon-disabled)}:host::ng-deep .mrx-paginator__text{font-size:16px;line-height:24px;color:var(--neutral-text-primary)}.mrx-paginator.mrx-paginator.paginator-centered{justify-content:center}.mrx-paginator.mrx-paginator.paginator-left{justify-content:flex-start}.mrx-paginator.mrx-paginator.paginator-right{justify-content:flex-end}\n"] }]
2339
2340
  }], propDecorators: { pageSizes: [{
2340
2341
  type: Input
2341
2342
  }], currentPage: [{
@@ -9712,6 +9713,375 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.11", ngImpo
9712
9713
  }]
9713
9714
  }] });
9714
9715
 
9716
+ /* eslint-disable @typescript-eslint/ban-types */
9717
+ class JsonEditorOptions {
9718
+ ace;
9719
+ ajv;
9720
+ /**
9721
+ * {function} onChange Callback method, triggered
9722
+ on change of contents.
9723
+ Does not pass the contents itself.
9724
+ See also `onChangeJSON` and
9725
+ `onChangeText`.
9726
+ */
9727
+ onChange;
9728
+ /**
9729
+ * // {function} onChangeJSON Callback method, triggered
9730
+ // in modes on change of contents,
9731
+ // passing the changed contents
9732
+ // as JSON.
9733
+ // Only applicable for modes
9734
+ // 'tree', 'view', and 'form'.
9735
+ */
9736
+ onChangeJSON;
9737
+ onNodeName;
9738
+ onCreateMenu;
9739
+ onColorPicker;
9740
+ /**
9741
+ // {function} onChangeText Callback method, triggered
9742
+ // in modes on change of contents,
9743
+ // passing the changed contents
9744
+ // as stringified JSON.
9745
+ */
9746
+ onChangeText;
9747
+ /**
9748
+ * {function} onSelectionChange Callback method,
9749
+ triggered on node selection change
9750
+ Only applicable for modes
9751
+ 'tree', 'view', and 'form'
9752
+ */
9753
+ onSelectionChange;
9754
+ /**
9755
+ * {function} onTextSelectionChange Callback method,
9756
+ triggered on text selection change
9757
+ Only applicable for modes
9758
+ */
9759
+ onTextSelectionChange;
9760
+ /**
9761
+ * // {function} onEvent Callback method, triggered
9762
+ // when an event occurs in
9763
+ // a JSON field or value.
9764
+ // Only applicable for
9765
+ // modes 'form', 'tree' and
9766
+ // 'view'
9767
+ */
9768
+ onEvent;
9769
+ /**
9770
+ * // * {function} onFocus Callback method, triggered
9771
+ // when the editor comes into focus,
9772
+ // passing an object {type, target},
9773
+ // Applicable for all modes
9774
+ */
9775
+ onFocus;
9776
+ // * {function} onBlur Callback method, triggered
9777
+ // when the editor goes out of focus,
9778
+ // passing an object {type, target},
9779
+ // Applicable for all modes
9780
+ onBlur;
9781
+ /**
9782
+ * // * {function} onClassName Callback method, triggered
9783
+ // when a Node DOM is rendered. Function returns
9784
+ // a css class name to be set on a node.
9785
+ // Only applicable for
9786
+ // modes 'form', 'tree' and
9787
+ // 'view'
9788
+ */
9789
+ onClassName;
9790
+ onEditable;
9791
+ /**
9792
+ * {function} onError Callback method, triggered
9793
+ when an error occurs
9794
+ */
9795
+ onError;
9796
+ onModeChange;
9797
+ onValidate;
9798
+ onValidationError;
9799
+ enableSort;
9800
+ enableTransform;
9801
+ escapeUnicode;
9802
+ expandAll;
9803
+ sortObjectKeys;
9804
+ history;
9805
+ mode;
9806
+ modes;
9807
+ name;
9808
+ schema;
9809
+ search;
9810
+ indentation;
9811
+ templates;
9812
+ theme;
9813
+ language;
9814
+ languages;
9815
+ /**
9816
+ * Adds main menu bar - Contains format, sort, transform, search etc. functionality. True
9817
+ * by default. Applicable in all types of mode.
9818
+ */
9819
+ mainMenuBar;
9820
+ /**
9821
+ * Adds navigation bar to the menu - the navigation bar visualize the current position on
9822
+ * the tree structure as well as allows breadcrumbs navigation.
9823
+ * True by default.
9824
+ * Only applicable when mode is 'tree', 'form' or 'view'.
9825
+ */
9826
+ navigationBar;
9827
+ /**
9828
+ * Adds status bar to the bottom of the editor - the status bar shows the cursor position
9829
+ * and a count of the selected characters.
9830
+ * True by default.
9831
+ * Only applicable when mode is 'code' or 'text'.
9832
+ */
9833
+ statusBar;
9834
+ constructor() {
9835
+ this.enableSort = true;
9836
+ this.enableTransform = true;
9837
+ this.escapeUnicode = false;
9838
+ this.expandAll = false;
9839
+ this.sortObjectKeys = false;
9840
+ this.history = true;
9841
+ this.mode = 'tree';
9842
+ this.search = true;
9843
+ this.indentation = 2;
9844
+ }
9845
+ }
9846
+
9847
+ class JsonEditorComponent {
9848
+ _data = {};
9849
+ editor;
9850
+ optionsChanged = false;
9851
+ disabled = false;
9852
+ isFocused = false;
9853
+ // SAVE STATE
9854
+ uuid = v4();
9855
+ fields = [];
9856
+ options = new JsonEditorOptions();
9857
+ debug = false;
9858
+ set data(value) {
9859
+ this._data = value;
9860
+ if (this.editor) {
9861
+ this.editor.destroy();
9862
+ this.ngOnInit();
9863
+ }
9864
+ }
9865
+ changed = new EventEmitter();
9866
+ modelChange = new EventEmitter();
9867
+ jsonChange = new EventEmitter();
9868
+ jsonEditorContainer;
9869
+ constructor() {
9870
+ }
9871
+ ngOnInit() {
9872
+ let optionsBefore = this.options;
9873
+ if (!this.optionsChanged && this.editor) {
9874
+ //TODO: check if this is needed
9875
+ optionsBefore = this.editor.options;
9876
+ }
9877
+ if (!this.options.onChangeJSON && this.jsonChange) {
9878
+ this.options.onChangeJSON = this.onChangeJSON;
9879
+ }
9880
+ if (!this.options.onChange && this.changed) {
9881
+ this.options.onChange = this.onChange;
9882
+ }
9883
+ const optionsCopy = Object.assign({}, optionsBefore);
9884
+ // expandAll is an option only supported by ang-jsoneditor and not by the the original jsoneditor.
9885
+ delete optionsCopy.expandAll;
9886
+ if (this.debug) {
9887
+ console.log(optionsCopy, this._data);
9888
+ }
9889
+ if (!this.jsonEditorContainer.nativeElement) {
9890
+ console.error(`Can't find the ElementRef reference for jsoneditor)`);
9891
+ }
9892
+ if (optionsCopy.mode === 'text' || optionsCopy.mode === 'code' ||
9893
+ (optionsCopy.modes &&
9894
+ (optionsCopy.modes.indexOf('text') !== -1 || optionsCopy.modes.indexOf('code') !== -1))) {
9895
+ optionsCopy.onChangeJSON = undefined;
9896
+ }
9897
+ this.editor = new JSONEditor(this.jsonEditorContainer.nativeElement, optionsCopy, this._data);
9898
+ if (this.options.expandAll) {
9899
+ this.editor.expandAll();
9900
+ }
9901
+ }
9902
+ ngOnDestroy() {
9903
+ }
9904
+ onChangeJSON = () => {
9905
+ if (this.editor) {
9906
+ try {
9907
+ this.jsonChange.emit(this.editor.get());
9908
+ }
9909
+ catch (error) {
9910
+ if (this.debug) {
9911
+ console.log(error);
9912
+ }
9913
+ }
9914
+ }
9915
+ };
9916
+ onChange = () => {
9917
+ if (this.editor) {
9918
+ try {
9919
+ const json = this.editor.get();
9920
+ this.updateValue(json);
9921
+ }
9922
+ catch (error) {
9923
+ if (this.debug) {
9924
+ console.log(error);
9925
+ }
9926
+ }
9927
+ }
9928
+ };
9929
+ /**
9930
+ * JSON EDITOR FUNCTIONS
9931
+ */
9932
+ collapseAll() {
9933
+ this.editor.collapseAll();
9934
+ }
9935
+ expandAll() {
9936
+ this.editor.expandAll();
9937
+ }
9938
+ focus() {
9939
+ this.editor.focus();
9940
+ }
9941
+ get() {
9942
+ return this.editor.get();
9943
+ }
9944
+ getMode() {
9945
+ return this.editor.getMode();
9946
+ }
9947
+ getName() {
9948
+ return this.editor.getName();
9949
+ }
9950
+ getText() {
9951
+ return this.editor.getText();
9952
+ }
9953
+ set(json) {
9954
+ this.editor.set(json);
9955
+ }
9956
+ setMode(mode) {
9957
+ this.editor.setMode(mode);
9958
+ }
9959
+ setName(name) {
9960
+ this.editor.setName(name);
9961
+ }
9962
+ setSelection(start, end) {
9963
+ this.editor.setSelection(start, end);
9964
+ }
9965
+ getSelection() {
9966
+ return this.editor.getSelection();
9967
+ }
9968
+ getValidateSchema() {
9969
+ //TODO: check if this is needed
9970
+ return this.editor.validateSchema;
9971
+ }
9972
+ setSchema(schema, schemaRefs) {
9973
+ this.editor.setSchema(schema, schemaRefs);
9974
+ }
9975
+ search(query) {
9976
+ //TODO: check if this is needed
9977
+ this.editor.search(query);
9978
+ }
9979
+ setOptions(newOptions) {
9980
+ if (this.editor) {
9981
+ this.editor.destroy();
9982
+ }
9983
+ this.optionsChanged = true;
9984
+ this.options = newOptions;
9985
+ this.ngOnInit();
9986
+ }
9987
+ update(json) {
9988
+ this.editor.update(json);
9989
+ }
9990
+ destroy() {
9991
+ if (this.editor) {
9992
+ this.editor.destroy();
9993
+ }
9994
+ }
9995
+ getEditor() {
9996
+ //TODO: made it any because of the missing type definition
9997
+ return this.editor;
9998
+ }
9999
+ isValidJson() {
10000
+ try {
10001
+ JSON.parse(this.getText());
10002
+ return true;
10003
+ }
10004
+ catch (e) {
10005
+ return false;
10006
+ }
10007
+ }
10008
+ writeValue(value) {
10009
+ this.data = value;
10010
+ }
10011
+ updateValue(insideValue) {
10012
+ this.changed.emit(insideValue);
10013
+ this.modelChange.emit({ value: insideValue, id: this.uuid });
10014
+ this.onChangeFn(insideValue);
10015
+ this.onTouchedFn();
10016
+ }
10017
+ registerOnChange(fn) {
10018
+ this.onChangeFn = fn;
10019
+ }
10020
+ registerOnTouched(fn) {
10021
+ this.onTouchedFn = fn;
10022
+ }
10023
+ onChangeFn = (value) => {
10024
+ };
10025
+ onTouchedFn = () => {
10026
+ };
10027
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: JsonEditorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
10028
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.11", type: JsonEditorComponent, selector: "mrx-json-editor", inputs: { fields: "fields", options: "options", debug: "debug", data: "data" }, outputs: { changed: "changed", modelChange: "modelChange", jsonChange: "jsonChange" }, providers: [
10029
+ {
10030
+ provide: NG_VALUE_ACCESSOR,
10031
+ useExisting: forwardRef(() => JsonEditorComponent),
10032
+ multi: true,
10033
+ },
10034
+ ], viewQueries: [{ propertyName: "jsonEditorContainer", first: true, predicate: ["jsonEditorContainer"], descendants: true, static: true }], ngImport: i0, template: "<div [id]=\"uuid\" #jsonEditorContainer></div>\r\n", styles: ["::ng-deep .jsoneditor,::ng-deep .jsoneditor-modal{-webkit-text-size-adjust:none;text-size-adjust:none}::ng-deep .jsoneditor input,::ng-deep .jsoneditor input:not([type]),::ng-deep .jsoneditor input[type=search],::ng-deep .jsoneditor input[type=text],::ng-deep .jsoneditor-modal input,::ng-deep .jsoneditor-modal input:not([type]),::ng-deep .jsoneditor-modal input[type=search],::ng-deep .jsoneditor-modal input[type=text]{height:auto;border:inherit;box-shadow:none;font-size:inherit;box-sizing:inherit;padding:inherit;font-family:inherit;transition:none;line-height:inherit}::ng-deep .jsoneditor input:focus,::ng-deep .jsoneditor input:not([type]):focus,::ng-deep .jsoneditor input[type=search]:focus,::ng-deep .jsoneditor input[type=text]:focus,::ng-deep .jsoneditor-modal input:focus,::ng-deep .jsoneditor-modal input:not([type]):focus,::ng-deep .jsoneditor-modal input[type=search]:focus,::ng-deep .jsoneditor-modal input[type=text]:focus{border:inherit;box-shadow:inherit}::ng-deep .jsoneditor textarea,::ng-deep .jsoneditor-modal textarea{height:inherit}::ng-deep .jsoneditor select,::ng-deep .jsoneditor-modal select{display:inherit;height:inherit}::ng-deep .jsoneditor label,::ng-deep .jsoneditor-modal label{font-size:inherit;font-weight:inherit;color:inherit}::ng-deep .jsoneditor table,::ng-deep .jsoneditor-modal table{border-collapse:collapse;width:auto}::ng-deep .jsoneditor td,::ng-deep .jsoneditor th,::ng-deep .jsoneditor-modal td,::ng-deep .jsoneditor-modal th{padding:0;display:table-cell;text-align:left;vertical-align:inherit;border-radius:inherit}::ng-deep .jsoneditor .autocomplete.dropdown{position:absolute;background:#fff;box-shadow:2px 2px 12px #8080804d;border:1px solid #d3d3d3;overflow-x:hidden;overflow-y:auto;cursor:default;margin:0;padding:5px;text-align:left;outline:0;font-family:consolas,menlo,monaco,Ubuntu Mono,source-code-pro,monospace;font-size:14px}::ng-deep .jsoneditor .autocomplete.dropdown .item{color:#1a1a1a}::ng-deep .jsoneditor .autocomplete.dropdown .item.hover{background-color:#ebebeb}::ng-deep .jsoneditor .autocomplete.hint{color:#a1a1a1;top:4px;left:4px}::ng-deep .jsoneditor-contextmenu-root{position:relative;width:0;height:0}::ng-deep .jsoneditor-contextmenu{position:absolute;box-sizing:content-box;z-index:2}::ng-deep .jsoneditor-contextmenu .jsoneditor-menu{position:relative;left:0;top:0;width:128px;height:auto;background:#fff;border:1px solid #d3d3d3;box-shadow:2px 2px 12px #8080804d;list-style:none;margin:0;padding:0}::ng-deep .jsoneditor-contextmenu .jsoneditor-menu button{position:relative;padding:0 8px 0 0;margin:0;width:128px;height:auto;border:none;cursor:pointer;color:#4d4d4d;background:0 0;font-size:14px;font-family:arial,sans-serif;box-sizing:border-box;text-align:left}::ng-deep .jsoneditor-contextmenu .jsoneditor-menu button::-moz-focus-inner{padding:0;border:0}::ng-deep .jsoneditor-contextmenu .jsoneditor-menu button.jsoneditor-default{width:96px}::ng-deep .jsoneditor-contextmenu .jsoneditor-menu button.jsoneditor-expand{float:right;width:32px;height:24px;border-left:1px solid #e5e5e5}::ng-deep .jsoneditor-contextmenu .jsoneditor-menu li{overflow:hidden}::ng-deep .jsoneditor-contextmenu .jsoneditor-menu li ul{display:none;position:relative;left:-10px;top:0;border:none;box-shadow:inset 0 0 10px #80808080;padding:0 10px;-webkit-transition:all .3s ease-out;-moz-transition:all .3s ease-out;-o-transition:all .3s ease-out;transition:all .3s ease-out}::ng-deep .jsoneditor-contextmenu .jsoneditor-menu li ul .jsoneditor-icon{margin-left:24px}::ng-deep .jsoneditor-contextmenu .jsoneditor-menu li ul li button{padding-left:24px;animation:all ease-in-out 1s}::ng-deep .jsoneditor-contextmenu .jsoneditor-menu li button .jsoneditor-expand{position:absolute;top:0;right:0;width:24px;height:24px;padding:0;margin:0 4px 0 0;background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A width=\"240\"%0A height=\"144\"%0A id=\"svg4136\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"jsoneditor-icons.svg\">%0A <title%0A id=\"title6512\">JSON Editor Icons</title>%0A <metadata%0A id=\"metadata4148\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title>JSON Editor Icons</dc:title>%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4146\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ff63ff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1026\"%0A id=\"namedview4144\"%0A showgrid=\"true\"%0A inkscape:zoom=\"4\"%0A inkscape:cx=\"13.229181\"%0A inkscape:cy=\"119.82429\"%0A inkscape:window-x=\"0\"%0A inkscape:window-y=\"0\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4136\"%0A showguides=\"false\"%0A borderlayer=\"false\"%0A inkscape:showpageshadow=\"true\"%0A showborder=\"true\">%0A <inkscape:grid%0A type=\"xygrid\"%0A id=\"grid4640\"%0A empspacing=\"24\" />%0A </sodipodi:namedview>%0A <!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"4\" />%0A <rect%0A id=\"svg_1-7\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"28.000006\"%0A style=\"fill:%23ec3f29;fill-opacity:0.94117647;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A x=\"52.000004\"%0A y=\"3.999995\"%0A width=\"16\"%0A height=\"16\"%0A id=\"rect4165\" />%0A <rect%0A id=\"rect4175\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.9999852\"%0A x=\"172.00002\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4175-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"196\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <g%0A id=\"g4299\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <g%0A id=\"g4299-3\"%0A transform=\"matrix(0.70710678,-0.70710678,0.70710678,0.70710678,19.029435,12.000001)\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1-0\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1-9\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <rect%0A id=\"svg_1-7-5\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"7.0000048\"%0A x=\"55.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A x=\"58\"%0A y=\"10.00001\"%0A width=\"6.9999909\"%0A height=\"6.9999905\"%0A id=\"rect4354\" />%0A <rect%0A id=\"svg_1-7-5-7\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"10.000005\"%0A x=\"58.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%233c80df;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647\" />%0A <g%0A id=\"g4378\">%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"10.999999\"%0A width=\"7.9999909\"%0A height=\"1.9999965\"%0A id=\"svg_1-7-5-3\" />%0A <rect%0A id=\"rect4374\"%0A height=\"1.9999946\"%0A width=\"11.999995\"%0A y=\"7.0000005\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A id=\"rect4376\"%0A height=\"1.9999995\"%0A width=\"3.9999928\"%0A y=\"14.999996\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A </g>%0A <g%0A transform=\"matrix(1,0,0,-1,-23.999995,23.999995)\"%0A id=\"g4383\">%0A <rect%0A id=\"rect4385\"%0A height=\"1.9999965\"%0A width=\"7.9999909\"%0A y=\"10.999999\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"7.0000005\"%0A width=\"11.999995\"%0A height=\"1.9999946\"%0A id=\"rect4387\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"14.999996\"%0A width=\"3.9999928\"%0A height=\"1.9999995\"%0A id=\"rect4389\" />%0A </g>%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-4\"%0A width=\"16\"%0A height=\"16\"%0A x=\"76\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 85.10447,6.0157384 -0.0156,1.4063 c 3.02669,-0.2402 0.33008,3.6507996 2.48438,4.5780996 -2.18694,1.0938 0.49191,4.9069 -2.45313,4.5781 l -0.0156,1.4219 c 5.70828,0.559 1.03264,-5.1005 4.70313,-5.2656 l 0,-1.4063 c -3.61303,-0.027 1.11893,-5.7069996 -4.70313,-5.3124996 z\"%0A id=\"path4351\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 82.78125,5.9984384 0.0156,1.4063 c -3.02668,-0.2402 -0.33007,3.6506996 -2.48437,4.5780996 2.18694,1.0938 -0.49192,4.9069 2.45312,4.5781 l 0.0156,1.4219 c -5.70827,0.559 -1.03263,-5.1004 -4.70312,-5.2656 l 0,-1.4063 c 3.61303,-0.027 -1.11894,-5.7070996 4.70312,-5.3124996 z\"%0A id=\"path4351-9\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-25\"%0A width=\"16\"%0A height=\"16\"%0A x=\"100\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 103.719,5.6719384 0,12.7187996 3.03125,0 0,-1.5313 -1.34375,0 0,-9.6249996 1.375,0 0,-1.5625 z\"%0A id=\"path2987\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 112.2185,5.6721984 0,12.7187996 -3.03125,0 0,-1.5313 1.34375,0 0,-9.6249996 -1.375,0 0,-1.5625 z\"%0A id=\"path2987-1\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-73\"%0A width=\"16\"%0A height=\"16\"%0A x=\"124\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 126.2824,17.602938 1.78957,0 1.14143,-2.8641 5.65364,0 1.14856,2.8641 1.76565,0 -4.78687,-11.1610996 -1.91903,0 z\"%0A id=\"path3780\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccc\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A d=\"m 129.72704,13.478838 4.60852,0.01 -2.30426,-5.5497996 z\"%0A id=\"path3782\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-35\"%0A width=\"16\"%0A height=\"16\"%0A x=\"148\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 156.47655,5.8917384 0,2.1797 0.46093,2.3983996 1.82813,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 152.51561,5.8906384 0,2.1797 0.46094,2.3983996 1.82812,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <rect%0A id=\"svg_1-7-2\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"64\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"svg_1-7-2-2\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"52\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"52\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4561\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"80.000008\"%0A y=\"58\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4563\" />%0A <rect%0A id=\"rect4565\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"58\"%0A x=\"85.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4567\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"64\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"64\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4569\" />%0A <circle%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4571\"%0A cx=\"110.06081\"%0A cy=\"57.939209\"%0A r=\"4.7438836\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"116.64566\"%0A y=\"-31.79752\"%0A width=\"4.229713\"%0A height=\"6.4053884\"%0A id=\"rect4563-2\"%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 125,56 138.77027,56.095 132,64 Z\"%0A id=\"path4613\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615\"%0A d=\"M 149,64 162.77027,63.905 156,56 Z\"%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"54\"%0A y=\"53\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4638\" />%0A <rect%0A id=\"svg_1-7-2-24\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-56\"%0A x=\"53\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"53\"%0A y=\"-66\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4657\" />%0A <rect%0A id=\"rect4659\"%0A height=\"0.99999291\"%0A width=\"11.999999\"%0A y=\"57\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"88.000122\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4661\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"76.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4663\" />%0A <rect%0A id=\"rect4665\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"76.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A id=\"rect4667\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"82.000122\"%0A x=\"80.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"85.000008\"%0A y=\"82.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4669\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"88.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4671\" />%0A <rect%0A id=\"rect4673\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"88.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <circle%0A r=\"4.7438836\"%0A cy=\"81.939331\"%0A cx=\"110.06081\"%0A id=\"circle4675\"%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%23d3d3d3;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\"%0A id=\"rect4677\"%0A height=\"6.4053884\"%0A width=\"4.229713\"%0A y=\"-14.826816\"%0A x=\"133.6163\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:%23d3d3d3;stroke-width:0;stroke-opacity:1\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4679\"%0A d=\"m 125,80.000005 13.77027,0.09499 L 132,87.999992 Z\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 149,88.0002 162.77027,87.9052 156,80.0002 Z\"%0A id=\"path4681\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <rect%0A id=\"rect4683\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"77.000122\"%0A x=\"54\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"77.000122\"%0A y=\"-56\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4685\" />%0A <rect%0A id=\"rect4687\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-66\"%0A x=\"77.000122\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"81.000122\"%0A width=\"11.999999\"%0A height=\"0.99999291\"%0A id=\"rect4689\" />%0A <rect%0A id=\"rect4761-1\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"101\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-0\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"105\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-7\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"109\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1\"%0A height=\"1.9999945\"%0A width=\"12\"%0A y=\"125\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"137\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"129\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4-3\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"133\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,100.0254 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,100.5991 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1452 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533865,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550756,0 6.710442,-2.4113 7.650391,-5.9414 0.939949,-3.5301 -0.618463,-7.2736 -3.710938,-9.0703 -1.159678,-0.6738 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,99.9629 c -1.270084,0.039 -2.541493,0.3887 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5402 -3.710937,9.0703 0.939949,3.5301 4.09768,5.9414 7.648437,5.9414 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4056 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,100 0,2 -2.4999996,0 L 12,107 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A id=\"path3055-0-77\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9850574,108.015 14.0298856,-0.03\"%0A id=\"path5244-5-0-5\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9849874,132.015 14.0298866,-0.03\"%0A id=\"path5244-5-0-5-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,123.9629 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,124.5366 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1453 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533864,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550757,0 6.710442,-2.4093 7.650391,-5.9394 0.939949,-3.5301 -0.618463,-7.2756 -3.710938,-9.0723 -1.159678,-0.6737 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138-12\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,123.9629 c -1.270084,0.039 -2.541493,0.3888 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5422 -3.710937,9.0723 0.939949,3.5301 4.09768,5.9394 7.648437,5.9394 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4055 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1-3\" />%0A <path%0A id=\"path6191\"%0A d=\"m 10.5,116 0,-2 -2.4999996,0 L 12,109 l 4,5 -2.5,0 0,2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,129 0,-2 -2.4999996,0 L 12,122 l 4,5 -2.5,0 0,2 -3,0 z\"%0A id=\"path6193\" />%0A <path%0A id=\"path6195\"%0A d=\"m 10.5,135 0,2 -2.4999996,0 L 12,142 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4500\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073242 -3.833708,2.213392 -3.8337072,2.213393 0,-4.426785 0,-4.426784 3.8337082,2.213392 z\"%0A inkscape:transform-center-x=\"-1.2779026\" />%0A <path%0A inkscape:transform-center-x=\"1.277902\"%0A d=\"m -31.500004,60.073242 -3.833708,2.213392 -3.833707,2.213393 0,-4.426785 0,-4.426784 3.833707,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:cx=\"-36.611614\"%0A sodipodi:sides=\"3\"%0A id=\"path4502\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"scale(-1,1)\" />%0A <path%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:sides=\"3\"%0A id=\"path4504\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"matrix(0,1,-1,0,72.0074,71.7877)\"%0A inkscape:transform-center-y=\"1.2779029\" />%0A <path%0A inkscape:transform-center-y=\"-1.2779026\"%0A transform=\"matrix(0,-1,-1,0,96,96)\"%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4506\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615-5\"%0A d=\"m 171.82574,65.174193 16.34854,0 -8.17427,-13.348454 z\"%0A style=\"fill:%23fbb917;fill-opacity:1;fill-rule:evenodd;stroke:%23fbb917;stroke-width:1.65161395;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,55 0,6 2,0 0,-6\"%0A id=\"path4300\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,62 0,2 2,0 0,-2\"%0A id=\"path4300-6\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:%23ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:0.8\"%0A d=\"M 99.994369,113.0221 102,114.98353 l 7,-6.9558 3,0.97227 2,-1 1,-2 0,-3 -3,3 -3,-3 3,-3 -3,0 -2,1 -1,2 0.99437,3.0221 z\"%0A id=\"path4268\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccccccccc\" />%0A <rect%0A id=\"rect4175-3-5\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"220\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <path%0A style=\"fill:%23ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 234,6 0,2 -5,5 0,5 -2,0 0,-5 -5,-5 0,-2\"%0A id=\"path3546\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <g%0A transform=\"matrix(1.3333328,0,0,-1.5999992,-139.9999,127.19999)\"%0A id=\"g4383-6\">%0A <rect%0A id=\"rect4385-2\"%0A height=\"1.2499905\"%0A width=\"5.9999924\"%0A y=\"12.625005\"%0A x=\"198.00002\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"15.125007\"%0A width=\"7.4999928\"%0A height=\"1.2499949\"%0A id=\"rect4387-9\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"7.6250024\"%0A width=\"2.9999909\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"10.125004\"%0A width=\"4.4999919\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-9\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 207.00001,16.375004 0,-5.625005 -2.25,0 3,-3.1250014 3,3.1250014 -2.25,0 0,5.625005 -1.5,0\"%0A id=\"path4402\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A </g>%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 164,100 0,3 -6,6 0,7 -4,0 0,-7 -6,-6 0,-3\"%0A id=\"path3546-2-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"28\"%0A x=\"4\" />%0A <path%0A sodipodi:nodetypes=\"ccccccccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4402-5-7\"%0A d=\"m 15,41 0,-7 -4,0 0,3 -5,-4 5,-4 0,3 6,0 0,9\"%0A style=\"fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\" />%0A</svg>%0A');background-position:0 -72px}::ng-deep .jsoneditor-contextmenu .jsoneditor-icon{position:absolute;top:0;left:0;width:24px;height:24px;border:none;padding:0;margin:0;background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A width=\"240\"%0A height=\"144\"%0A id=\"svg4136\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"jsoneditor-icons.svg\">%0A <title%0A id=\"title6512\">JSON Editor Icons</title>%0A <metadata%0A id=\"metadata4148\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title>JSON Editor Icons</dc:title>%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4146\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ff63ff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1026\"%0A id=\"namedview4144\"%0A showgrid=\"true\"%0A inkscape:zoom=\"4\"%0A inkscape:cx=\"13.229181\"%0A inkscape:cy=\"119.82429\"%0A inkscape:window-x=\"0\"%0A inkscape:window-y=\"0\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4136\"%0A showguides=\"false\"%0A borderlayer=\"false\"%0A inkscape:showpageshadow=\"true\"%0A showborder=\"true\">%0A <inkscape:grid%0A type=\"xygrid\"%0A id=\"grid4640\"%0A empspacing=\"24\" />%0A </sodipodi:namedview>%0A <!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"4\" />%0A <rect%0A id=\"svg_1-7\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"28.000006\"%0A style=\"fill:%23ec3f29;fill-opacity:0.94117647;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A x=\"52.000004\"%0A y=\"3.999995\"%0A width=\"16\"%0A height=\"16\"%0A id=\"rect4165\" />%0A <rect%0A id=\"rect4175\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.9999852\"%0A x=\"172.00002\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4175-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"196\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <g%0A id=\"g4299\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <g%0A id=\"g4299-3\"%0A transform=\"matrix(0.70710678,-0.70710678,0.70710678,0.70710678,19.029435,12.000001)\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1-0\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1-9\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <rect%0A id=\"svg_1-7-5\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"7.0000048\"%0A x=\"55.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A x=\"58\"%0A y=\"10.00001\"%0A width=\"6.9999909\"%0A height=\"6.9999905\"%0A id=\"rect4354\" />%0A <rect%0A id=\"svg_1-7-5-7\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"10.000005\"%0A x=\"58.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%233c80df;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647\" />%0A <g%0A id=\"g4378\">%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"10.999999\"%0A width=\"7.9999909\"%0A height=\"1.9999965\"%0A id=\"svg_1-7-5-3\" />%0A <rect%0A id=\"rect4374\"%0A height=\"1.9999946\"%0A width=\"11.999995\"%0A y=\"7.0000005\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A id=\"rect4376\"%0A height=\"1.9999995\"%0A width=\"3.9999928\"%0A y=\"14.999996\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A </g>%0A <g%0A transform=\"matrix(1,0,0,-1,-23.999995,23.999995)\"%0A id=\"g4383\">%0A <rect%0A id=\"rect4385\"%0A height=\"1.9999965\"%0A width=\"7.9999909\"%0A y=\"10.999999\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"7.0000005\"%0A width=\"11.999995\"%0A height=\"1.9999946\"%0A id=\"rect4387\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"14.999996\"%0A width=\"3.9999928\"%0A height=\"1.9999995\"%0A id=\"rect4389\" />%0A </g>%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-4\"%0A width=\"16\"%0A height=\"16\"%0A x=\"76\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 85.10447,6.0157384 -0.0156,1.4063 c 3.02669,-0.2402 0.33008,3.6507996 2.48438,4.5780996 -2.18694,1.0938 0.49191,4.9069 -2.45313,4.5781 l -0.0156,1.4219 c 5.70828,0.559 1.03264,-5.1005 4.70313,-5.2656 l 0,-1.4063 c -3.61303,-0.027 1.11893,-5.7069996 -4.70313,-5.3124996 z\"%0A id=\"path4351\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 82.78125,5.9984384 0.0156,1.4063 c -3.02668,-0.2402 -0.33007,3.6506996 -2.48437,4.5780996 2.18694,1.0938 -0.49192,4.9069 2.45312,4.5781 l 0.0156,1.4219 c -5.70827,0.559 -1.03263,-5.1004 -4.70312,-5.2656 l 0,-1.4063 c 3.61303,-0.027 -1.11894,-5.7070996 4.70312,-5.3124996 z\"%0A id=\"path4351-9\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-25\"%0A width=\"16\"%0A height=\"16\"%0A x=\"100\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 103.719,5.6719384 0,12.7187996 3.03125,0 0,-1.5313 -1.34375,0 0,-9.6249996 1.375,0 0,-1.5625 z\"%0A id=\"path2987\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 112.2185,5.6721984 0,12.7187996 -3.03125,0 0,-1.5313 1.34375,0 0,-9.6249996 -1.375,0 0,-1.5625 z\"%0A id=\"path2987-1\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-73\"%0A width=\"16\"%0A height=\"16\"%0A x=\"124\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 126.2824,17.602938 1.78957,0 1.14143,-2.8641 5.65364,0 1.14856,2.8641 1.76565,0 -4.78687,-11.1610996 -1.91903,0 z\"%0A id=\"path3780\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccc\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A d=\"m 129.72704,13.478838 4.60852,0.01 -2.30426,-5.5497996 z\"%0A id=\"path3782\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-35\"%0A width=\"16\"%0A height=\"16\"%0A x=\"148\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 156.47655,5.8917384 0,2.1797 0.46093,2.3983996 1.82813,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 152.51561,5.8906384 0,2.1797 0.46094,2.3983996 1.82812,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <rect%0A id=\"svg_1-7-2\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"64\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"svg_1-7-2-2\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"52\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"52\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4561\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"80.000008\"%0A y=\"58\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4563\" />%0A <rect%0A id=\"rect4565\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"58\"%0A x=\"85.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4567\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"64\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"64\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4569\" />%0A <circle%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4571\"%0A cx=\"110.06081\"%0A cy=\"57.939209\"%0A r=\"4.7438836\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"116.64566\"%0A y=\"-31.79752\"%0A width=\"4.229713\"%0A height=\"6.4053884\"%0A id=\"rect4563-2\"%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 125,56 138.77027,56.095 132,64 Z\"%0A id=\"path4613\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615\"%0A d=\"M 149,64 162.77027,63.905 156,56 Z\"%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"54\"%0A y=\"53\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4638\" />%0A <rect%0A id=\"svg_1-7-2-24\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-56\"%0A x=\"53\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"53\"%0A y=\"-66\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4657\" />%0A <rect%0A id=\"rect4659\"%0A height=\"0.99999291\"%0A width=\"11.999999\"%0A y=\"57\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"88.000122\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4661\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"76.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4663\" />%0A <rect%0A id=\"rect4665\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"76.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A id=\"rect4667\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"82.000122\"%0A x=\"80.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"85.000008\"%0A y=\"82.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4669\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"88.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4671\" />%0A <rect%0A id=\"rect4673\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"88.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <circle%0A r=\"4.7438836\"%0A cy=\"81.939331\"%0A cx=\"110.06081\"%0A id=\"circle4675\"%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%23d3d3d3;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\"%0A id=\"rect4677\"%0A height=\"6.4053884\"%0A width=\"4.229713\"%0A y=\"-14.826816\"%0A x=\"133.6163\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:%23d3d3d3;stroke-width:0;stroke-opacity:1\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4679\"%0A d=\"m 125,80.000005 13.77027,0.09499 L 132,87.999992 Z\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 149,88.0002 162.77027,87.9052 156,80.0002 Z\"%0A id=\"path4681\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <rect%0A id=\"rect4683\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"77.000122\"%0A x=\"54\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"77.000122\"%0A y=\"-56\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4685\" />%0A <rect%0A id=\"rect4687\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-66\"%0A x=\"77.000122\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"81.000122\"%0A width=\"11.999999\"%0A height=\"0.99999291\"%0A id=\"rect4689\" />%0A <rect%0A id=\"rect4761-1\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"101\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-0\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"105\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-7\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"109\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1\"%0A height=\"1.9999945\"%0A width=\"12\"%0A y=\"125\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"137\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"129\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4-3\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"133\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,100.0254 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,100.5991 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1452 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533865,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550756,0 6.710442,-2.4113 7.650391,-5.9414 0.939949,-3.5301 -0.618463,-7.2736 -3.710938,-9.0703 -1.159678,-0.6738 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,99.9629 c -1.270084,0.039 -2.541493,0.3887 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5402 -3.710937,9.0703 0.939949,3.5301 4.09768,5.9414 7.648437,5.9414 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4056 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,100 0,2 -2.4999996,0 L 12,107 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A id=\"path3055-0-77\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9850574,108.015 14.0298856,-0.03\"%0A id=\"path5244-5-0-5\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9849874,132.015 14.0298866,-0.03\"%0A id=\"path5244-5-0-5-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,123.9629 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,124.5366 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1453 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533864,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550757,0 6.710442,-2.4093 7.650391,-5.9394 0.939949,-3.5301 -0.618463,-7.2756 -3.710938,-9.0723 -1.159678,-0.6737 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138-12\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,123.9629 c -1.270084,0.039 -2.541493,0.3888 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5422 -3.710937,9.0723 0.939949,3.5301 4.09768,5.9394 7.648437,5.9394 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4055 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1-3\" />%0A <path%0A id=\"path6191\"%0A d=\"m 10.5,116 0,-2 -2.4999996,0 L 12,109 l 4,5 -2.5,0 0,2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,129 0,-2 -2.4999996,0 L 12,122 l 4,5 -2.5,0 0,2 -3,0 z\"%0A id=\"path6193\" />%0A <path%0A id=\"path6195\"%0A d=\"m 10.5,135 0,2 -2.4999996,0 L 12,142 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4500\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073242 -3.833708,2.213392 -3.8337072,2.213393 0,-4.426785 0,-4.426784 3.8337082,2.213392 z\"%0A inkscape:transform-center-x=\"-1.2779026\" />%0A <path%0A inkscape:transform-center-x=\"1.277902\"%0A d=\"m -31.500004,60.073242 -3.833708,2.213392 -3.833707,2.213393 0,-4.426785 0,-4.426784 3.833707,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:cx=\"-36.611614\"%0A sodipodi:sides=\"3\"%0A id=\"path4502\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"scale(-1,1)\" />%0A <path%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:sides=\"3\"%0A id=\"path4504\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"matrix(0,1,-1,0,72.0074,71.7877)\"%0A inkscape:transform-center-y=\"1.2779029\" />%0A <path%0A inkscape:transform-center-y=\"-1.2779026\"%0A transform=\"matrix(0,-1,-1,0,96,96)\"%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4506\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615-5\"%0A d=\"m 171.82574,65.174193 16.34854,0 -8.17427,-13.348454 z\"%0A style=\"fill:%23fbb917;fill-opacity:1;fill-rule:evenodd;stroke:%23fbb917;stroke-width:1.65161395;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,55 0,6 2,0 0,-6\"%0A id=\"path4300\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,62 0,2 2,0 0,-2\"%0A id=\"path4300-6\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:%23ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:0.8\"%0A d=\"M 99.994369,113.0221 102,114.98353 l 7,-6.9558 3,0.97227 2,-1 1,-2 0,-3 -3,3 -3,-3 3,-3 -3,0 -2,1 -1,2 0.99437,3.0221 z\"%0A id=\"path4268\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccccccccc\" />%0A <rect%0A id=\"rect4175-3-5\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"220\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <path%0A style=\"fill:%23ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 234,6 0,2 -5,5 0,5 -2,0 0,-5 -5,-5 0,-2\"%0A id=\"path3546\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <g%0A transform=\"matrix(1.3333328,0,0,-1.5999992,-139.9999,127.19999)\"%0A id=\"g4383-6\">%0A <rect%0A id=\"rect4385-2\"%0A height=\"1.2499905\"%0A width=\"5.9999924\"%0A y=\"12.625005\"%0A x=\"198.00002\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"15.125007\"%0A width=\"7.4999928\"%0A height=\"1.2499949\"%0A id=\"rect4387-9\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"7.6250024\"%0A width=\"2.9999909\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"10.125004\"%0A width=\"4.4999919\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-9\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 207.00001,16.375004 0,-5.625005 -2.25,0 3,-3.1250014 3,3.1250014 -2.25,0 0,5.625005 -1.5,0\"%0A id=\"path4402\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A </g>%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 164,100 0,3 -6,6 0,7 -4,0 0,-7 -6,-6 0,-3\"%0A id=\"path3546-2-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"28\"%0A x=\"4\" />%0A <path%0A sodipodi:nodetypes=\"ccccccccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4402-5-7\"%0A d=\"m 15,41 0,-7 -4,0 0,3 -5,-4 5,-4 0,3 6,0 0,9\"%0A style=\"fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\" />%0A</svg>%0A')}::ng-deep .jsoneditor-contextmenu .jsoneditor-text{padding:4px 0 4px 24px;word-wrap:break-word}::ng-deep .jsoneditor-contextmenu .jsoneditor-text.jsoneditor-right-margin{padding-right:24px}::ng-deep .jsoneditor-contextmenu .jsoneditor-separator{height:0;border-top:1px solid #e5e5e5;padding-top:5px;margin-top:5px}::ng-deep .jsoneditor-contextmenu button.jsoneditor-remove .jsoneditor-icon{background-position:-24px 0}::ng-deep .jsoneditor-contextmenu button.jsoneditor-append .jsoneditor-icon{background-position:0 0}::ng-deep .jsoneditor-contextmenu button.jsoneditor-insert .jsoneditor-icon{background-position:0 0}::ng-deep .jsoneditor-contextmenu button.jsoneditor-duplicate .jsoneditor-icon{background-position:-48px 0}::ng-deep .jsoneditor-contextmenu button.jsoneditor-sort-asc .jsoneditor-icon{background-position:-168px 0}::ng-deep .jsoneditor-contextmenu button.jsoneditor-sort-desc .jsoneditor-icon{background-position:-192px 0}::ng-deep .jsoneditor-contextmenu button.jsoneditor-transform .jsoneditor-icon{background-position:-216px 0}::ng-deep .jsoneditor-contextmenu button.jsoneditor-extract .jsoneditor-icon{background-position:0 -24px}::ng-deep .jsoneditor-contextmenu button.jsoneditor-type-string .jsoneditor-icon{background-position:-144px 0}::ng-deep .jsoneditor-contextmenu button.jsoneditor-type-auto .jsoneditor-icon{background-position:-120px 0}::ng-deep .jsoneditor-contextmenu button.jsoneditor-type-object .jsoneditor-icon{background-position:-72px 0}::ng-deep .jsoneditor-contextmenu button.jsoneditor-type-array .jsoneditor-icon{background-position:-96px 0}::ng-deep .jsoneditor-contextmenu button.jsoneditor-type-modes .jsoneditor-icon{background-image:none;width:6px}::ng-deep .jsoneditor-contextmenu li,::ng-deep .jsoneditor-contextmenu ul{box-sizing:content-box;position:relative}::ng-deep .jsoneditor-contextmenu .jsoneditor-menu button:focus,::ng-deep .jsoneditor-contextmenu .jsoneditor-menu button:hover{color:#1a1a1a;background-color:#f5f5f5;outline:0}::ng-deep .jsoneditor-contextmenu .jsoneditor-menu li button.jsoneditor-selected,::ng-deep .jsoneditor-contextmenu .jsoneditor-menu li button.jsoneditor-selected:focus,::ng-deep .jsoneditor-contextmenu .jsoneditor-menu li button.jsoneditor-selected:hover{color:#fff;background-color:#ee422e}::ng-deep .jsoneditor-contextmenu .jsoneditor-menu li ul li button:focus,::ng-deep .jsoneditor-contextmenu .jsoneditor-menu li ul li button:hover{background-color:#f5f5f5}::ng-deep .jsoneditor-modal{max-width:95%;border-radius:2px!important;padding:45px 15px 15px!important;box-shadow:2px 2px 12px #8080804d;color:#4d4d4d;line-height:1.3em}::ng-deep .jsoneditor-modal.jsoneditor-modal-transform{width:600px!important}::ng-deep .jsoneditor-modal .pico-modal-header{position:absolute;box-sizing:border-box;top:0;left:0;width:100%;padding:0 10px;height:30px;line-height:30px;font-family:arial,sans-serif;font-size:11pt;background:#3883fa;color:#fff}::ng-deep .jsoneditor-modal table{width:100%}::ng-deep .jsoneditor-modal table td{padding:3px 0}::ng-deep .jsoneditor-modal table td.jsoneditor-modal-input{text-align:right;padding-right:0;white-space:nowrap}::ng-deep .jsoneditor-modal table td.jsoneditor-modal-actions{padding-top:15px}::ng-deep .jsoneditor-modal table th{vertical-align:middle}::ng-deep .jsoneditor-modal p:first-child{margin-top:0}::ng-deep .jsoneditor-modal a{color:#3883fa}::ng-deep .jsoneditor-modal .jsoneditor-jmespath-block{margin-bottom:10px}::ng-deep .jsoneditor-modal .pico-close{background:0 0!important;font-size:24px!important;top:7px!important;right:7px!important;color:#fff}::ng-deep .jsoneditor-modal input{padding:4px}::ng-deep .jsoneditor-modal input[type=text]{cursor:inherit}::ng-deep .jsoneditor-modal input[disabled]{background:#d3d3d3;color:gray}::ng-deep .jsoneditor-modal .jsoneditor-select-wrapper{position:relative;display:inline-block}::ng-deep .jsoneditor-modal .jsoneditor-select-wrapper:after{content:\"\";width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-top:6px solid #666;position:absolute;right:8px;top:14px;pointer-events:none}::ng-deep .jsoneditor-modal select{padding:3px 24px 3px 10px;min-width:180px;max-width:350px;-webkit-appearance:none;-moz-appearance:none;appearance:none;text-indent:0;text-overflow:\"\";font-size:14px;line-height:1.5em}::ng-deep .jsoneditor-modal select::-ms-expand{display:none}::ng-deep .jsoneditor-modal .jsoneditor-button-group input{padding:4px 10px;margin:0;border-radius:0;border-left-style:none}::ng-deep .jsoneditor-modal .jsoneditor-button-group input.jsoneditor-button-first{border-top-left-radius:3px;border-bottom-left-radius:3px;border-left-style:solid}::ng-deep .jsoneditor-modal .jsoneditor-button-group input.jsoneditor-button-last{border-top-right-radius:3px;border-bottom-right-radius:3px}::ng-deep .jsoneditor-modal .jsoneditor-transform-preview{background:#f5f5f5;height:200px}::ng-deep .jsoneditor-modal .jsoneditor-transform-preview.jsoneditor-error{color:#ee422e}::ng-deep .jsoneditor-modal .jsoneditor-jmespath-wizard{line-height:1.2em;width:100%;padding:0;border-radius:3px}::ng-deep .jsoneditor-modal .jsoneditor-jmespath-label{font-weight:700;color:#1e90ff;margin-top:20px;margin-bottom:5px}::ng-deep .jsoneditor-modal .jsoneditor-jmespath-wizard-table{width:100%;border-collapse:collapse}::ng-deep .jsoneditor-modal .jsoneditor-jmespath-wizard-label{font-style:italic;margin:4px 0 2px}::ng-deep .jsoneditor-modal .jsoneditor-inline{position:relative;display:inline-block;width:100%;padding-top:2px;padding-bottom:2px}::ng-deep .jsoneditor-modal .jsoneditor-inline:not(:last-child){padding-right:2px}::ng-deep .jsoneditor-modal .jsoneditor-jmespath-filter{display:flex;flex-wrap:wrap}::ng-deep .jsoneditor-modal .jsoneditor-jmespath-filter-field{width:180px}::ng-deep .jsoneditor-modal .jsoneditor-jmespath-filter-relation{width:100px}::ng-deep .jsoneditor-modal .jsoneditor-jmespath-filter-value{min-width:180px;flex:1}::ng-deep .jsoneditor-modal .jsoneditor-jmespath-sort-field{width:170px}::ng-deep .jsoneditor-modal .jsoneditor-jmespath-sort-order{width:150px}::ng-deep .jsoneditor-modal .jsoneditor-jmespath-select-fields{width:100%}::ng-deep .jsoneditor-modal .selectr-selected{border-color:#d3d3d3;padding:4px 28px 4px 8px}::ng-deep .jsoneditor-modal .selectr-selected .selectr-tag{background-color:#3883fa;border-radius:5px}::ng-deep .jsoneditor-modal table td,::ng-deep .jsoneditor-modal table th{text-align:left;vertical-align:middle;font-weight:400;color:#4d4d4d;border-spacing:0;border-collapse:collapse}::ng-deep .jsoneditor-modal #query,::ng-deep .jsoneditor-modal input,::ng-deep .jsoneditor-modal input[type=text],::ng-deep .jsoneditor-modal input[type=text]:focus,::ng-deep .jsoneditor-modal select,::ng-deep .jsoneditor-modal textarea{background:#fff;border:1px solid #d3d3d3;color:#4d4d4d;border-radius:3px;padding:4px}::ng-deep .jsoneditor-modal #query,::ng-deep .jsoneditor-modal textarea{border-radius:unset}::ng-deep .jsoneditor-modal,::ng-deep .jsoneditor-modal #query,::ng-deep .jsoneditor-modal input,::ng-deep .jsoneditor-modal input[type=text],::ng-deep .jsoneditor-modal option,::ng-deep .jsoneditor-modal select,::ng-deep .jsoneditor-modal table td,::ng-deep .jsoneditor-modal table th,::ng-deep .jsoneditor-modal textarea{font-size:10.5pt;font-family:arial,sans-serif}::ng-deep .jsoneditor-modal #query,::ng-deep .jsoneditor-modal .jsoneditor-transform-preview{font-family:consolas,menlo,monaco,Ubuntu Mono,source-code-pro,monospace;font-size:14px;width:100%;box-sizing:border-box}::ng-deep .jsoneditor-modal input[type=button],::ng-deep .jsoneditor-modal input[type=submit]{background:#f5f5f5;padding:4px 20px}::ng-deep .jsoneditor-modal input,::ng-deep .jsoneditor-modal select{cursor:pointer}::ng-deep .jsoneditor-modal .jsoneditor-button-group.jsoneditor-button-group-value-asc input.jsoneditor-button-asc,::ng-deep .jsoneditor-modal .jsoneditor-button-group.jsoneditor-button-group-value-desc input.jsoneditor-button-desc{background:#3883fa;border-color:#3883fa;color:#fff}::ng-deep .jsoneditor{color:#1a1a1a;border:thin solid #3883fa;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;height:100%;position:relative;padding:0;line-height:100%}::ng-deep a.jsoneditor-value,::ng-deep div.jsoneditor-default,::ng-deep div.jsoneditor-field,::ng-deep div.jsoneditor-readonly,::ng-deep div.jsoneditor-value{border:1px solid transparent;min-height:16px;min-width:32px;line-height:16px;padding:2px;margin:1px;word-wrap:break-word;word-break:break-word;overflow-wrap:break-word;float:left}::ng-deep div.jsoneditor-field p,::ng-deep div.jsoneditor-value p{margin:0}::ng-deep div.jsoneditor-value.jsoneditor-empty:after{content:\"value\"}::ng-deep div.jsoneditor-value.jsoneditor-string{color:#006000}::ng-deep div.jsoneditor-value.jsoneditor-number{color:#ee422e}::ng-deep div.jsoneditor-value.jsoneditor-boolean{color:#ff8c00}::ng-deep div.jsoneditor-value.jsoneditor-null{color:#004ed0}::ng-deep div.jsoneditor-value.jsoneditor-color-value{color:#1a1a1a}::ng-deep div.jsoneditor-value.jsoneditor-invalid{color:#1a1a1a}::ng-deep div.jsoneditor-readonly{min-width:16px;color:gray}::ng-deep div.jsoneditor-empty{border-color:#d3d3d3;border-style:dashed;border-radius:2px}::ng-deep div.jsoneditor-field.jsoneditor-empty:after{content:\"field\"}::ng-deep div.jsoneditor td{vertical-align:top}::ng-deep div.jsoneditor td.jsoneditor-separator{padding:3px 0;vertical-align:top;color:gray}::ng-deep div.jsoneditor td.jsoneditor-tree{vertical-align:top}::ng-deep div.jsoneditor.busy pre.jsoneditor-preview{background:#f5f5f5;color:gray}::ng-deep div.jsoneditor.busy div.jsoneditor-busy{display:inherit}::ng-deep div.jsoneditor code.jsoneditor-preview{background:0 0}::ng-deep div.jsoneditor.jsoneditor-mode-preview pre.jsoneditor-preview{width:100%;height:100%;box-sizing:border-box;overflow:auto;padding:2px;margin:0;white-space:pre-wrap;word-break:break-all}::ng-deep div.jsoneditor-default{color:gray;padding-left:10px}::ng-deep div.jsoneditor-tree{width:100%;height:100%;position:relative;overflow:auto;background:#fff}::ng-deep div.jsoneditor-tree button.jsoneditor-button{width:24px;height:24px;padding:0;margin:0;border:none;cursor:pointer;background-color:transparent;background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A width=\"240\"%0A height=\"144\"%0A id=\"svg4136\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"jsoneditor-icons.svg\">%0A <title%0A id=\"title6512\">JSON Editor Icons</title>%0A <metadata%0A id=\"metadata4148\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title>JSON Editor Icons</dc:title>%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4146\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ff63ff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1026\"%0A id=\"namedview4144\"%0A showgrid=\"true\"%0A inkscape:zoom=\"4\"%0A inkscape:cx=\"13.229181\"%0A inkscape:cy=\"119.82429\"%0A inkscape:window-x=\"0\"%0A inkscape:window-y=\"0\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4136\"%0A showguides=\"false\"%0A borderlayer=\"false\"%0A inkscape:showpageshadow=\"true\"%0A showborder=\"true\">%0A <inkscape:grid%0A type=\"xygrid\"%0A id=\"grid4640\"%0A empspacing=\"24\" />%0A </sodipodi:namedview>%0A <!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"4\" />%0A <rect%0A id=\"svg_1-7\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"28.000006\"%0A style=\"fill:%23ec3f29;fill-opacity:0.94117647;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A x=\"52.000004\"%0A y=\"3.999995\"%0A width=\"16\"%0A height=\"16\"%0A id=\"rect4165\" />%0A <rect%0A id=\"rect4175\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.9999852\"%0A x=\"172.00002\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4175-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"196\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <g%0A id=\"g4299\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <g%0A id=\"g4299-3\"%0A transform=\"matrix(0.70710678,-0.70710678,0.70710678,0.70710678,19.029435,12.000001)\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1-0\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1-9\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <rect%0A id=\"svg_1-7-5\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"7.0000048\"%0A x=\"55.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A x=\"58\"%0A y=\"10.00001\"%0A width=\"6.9999909\"%0A height=\"6.9999905\"%0A id=\"rect4354\" />%0A <rect%0A id=\"svg_1-7-5-7\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"10.000005\"%0A x=\"58.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%233c80df;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647\" />%0A <g%0A id=\"g4378\">%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"10.999999\"%0A width=\"7.9999909\"%0A height=\"1.9999965\"%0A id=\"svg_1-7-5-3\" />%0A <rect%0A id=\"rect4374\"%0A height=\"1.9999946\"%0A width=\"11.999995\"%0A y=\"7.0000005\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A id=\"rect4376\"%0A height=\"1.9999995\"%0A width=\"3.9999928\"%0A y=\"14.999996\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A </g>%0A <g%0A transform=\"matrix(1,0,0,-1,-23.999995,23.999995)\"%0A id=\"g4383\">%0A <rect%0A id=\"rect4385\"%0A height=\"1.9999965\"%0A width=\"7.9999909\"%0A y=\"10.999999\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"7.0000005\"%0A width=\"11.999995\"%0A height=\"1.9999946\"%0A id=\"rect4387\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"14.999996\"%0A width=\"3.9999928\"%0A height=\"1.9999995\"%0A id=\"rect4389\" />%0A </g>%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-4\"%0A width=\"16\"%0A height=\"16\"%0A x=\"76\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 85.10447,6.0157384 -0.0156,1.4063 c 3.02669,-0.2402 0.33008,3.6507996 2.48438,4.5780996 -2.18694,1.0938 0.49191,4.9069 -2.45313,4.5781 l -0.0156,1.4219 c 5.70828,0.559 1.03264,-5.1005 4.70313,-5.2656 l 0,-1.4063 c -3.61303,-0.027 1.11893,-5.7069996 -4.70313,-5.3124996 z\"%0A id=\"path4351\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 82.78125,5.9984384 0.0156,1.4063 c -3.02668,-0.2402 -0.33007,3.6506996 -2.48437,4.5780996 2.18694,1.0938 -0.49192,4.9069 2.45312,4.5781 l 0.0156,1.4219 c -5.70827,0.559 -1.03263,-5.1004 -4.70312,-5.2656 l 0,-1.4063 c 3.61303,-0.027 -1.11894,-5.7070996 4.70312,-5.3124996 z\"%0A id=\"path4351-9\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-25\"%0A width=\"16\"%0A height=\"16\"%0A x=\"100\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 103.719,5.6719384 0,12.7187996 3.03125,0 0,-1.5313 -1.34375,0 0,-9.6249996 1.375,0 0,-1.5625 z\"%0A id=\"path2987\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 112.2185,5.6721984 0,12.7187996 -3.03125,0 0,-1.5313 1.34375,0 0,-9.6249996 -1.375,0 0,-1.5625 z\"%0A id=\"path2987-1\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-73\"%0A width=\"16\"%0A height=\"16\"%0A x=\"124\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 126.2824,17.602938 1.78957,0 1.14143,-2.8641 5.65364,0 1.14856,2.8641 1.76565,0 -4.78687,-11.1610996 -1.91903,0 z\"%0A id=\"path3780\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccc\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A d=\"m 129.72704,13.478838 4.60852,0.01 -2.30426,-5.5497996 z\"%0A id=\"path3782\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-35\"%0A width=\"16\"%0A height=\"16\"%0A x=\"148\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 156.47655,5.8917384 0,2.1797 0.46093,2.3983996 1.82813,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 152.51561,5.8906384 0,2.1797 0.46094,2.3983996 1.82812,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <rect%0A id=\"svg_1-7-2\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"64\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"svg_1-7-2-2\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"52\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"52\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4561\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"80.000008\"%0A y=\"58\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4563\" />%0A <rect%0A id=\"rect4565\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"58\"%0A x=\"85.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4567\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"64\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"64\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4569\" />%0A <circle%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4571\"%0A cx=\"110.06081\"%0A cy=\"57.939209\"%0A r=\"4.7438836\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"116.64566\"%0A y=\"-31.79752\"%0A width=\"4.229713\"%0A height=\"6.4053884\"%0A id=\"rect4563-2\"%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 125,56 138.77027,56.095 132,64 Z\"%0A id=\"path4613\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615\"%0A d=\"M 149,64 162.77027,63.905 156,56 Z\"%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"54\"%0A y=\"53\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4638\" />%0A <rect%0A id=\"svg_1-7-2-24\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-56\"%0A x=\"53\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"53\"%0A y=\"-66\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4657\" />%0A <rect%0A id=\"rect4659\"%0A height=\"0.99999291\"%0A width=\"11.999999\"%0A y=\"57\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"88.000122\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4661\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"76.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4663\" />%0A <rect%0A id=\"rect4665\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"76.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A id=\"rect4667\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"82.000122\"%0A x=\"80.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"85.000008\"%0A y=\"82.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4669\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"88.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4671\" />%0A <rect%0A id=\"rect4673\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"88.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <circle%0A r=\"4.7438836\"%0A cy=\"81.939331\"%0A cx=\"110.06081\"%0A id=\"circle4675\"%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%23d3d3d3;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\"%0A id=\"rect4677\"%0A height=\"6.4053884\"%0A width=\"4.229713\"%0A y=\"-14.826816\"%0A x=\"133.6163\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:%23d3d3d3;stroke-width:0;stroke-opacity:1\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4679\"%0A d=\"m 125,80.000005 13.77027,0.09499 L 132,87.999992 Z\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 149,88.0002 162.77027,87.9052 156,80.0002 Z\"%0A id=\"path4681\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <rect%0A id=\"rect4683\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"77.000122\"%0A x=\"54\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"77.000122\"%0A y=\"-56\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4685\" />%0A <rect%0A id=\"rect4687\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-66\"%0A x=\"77.000122\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"81.000122\"%0A width=\"11.999999\"%0A height=\"0.99999291\"%0A id=\"rect4689\" />%0A <rect%0A id=\"rect4761-1\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"101\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-0\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"105\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-7\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"109\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1\"%0A height=\"1.9999945\"%0A width=\"12\"%0A y=\"125\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"137\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"129\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4-3\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"133\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,100.0254 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,100.5991 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1452 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533865,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550756,0 6.710442,-2.4113 7.650391,-5.9414 0.939949,-3.5301 -0.618463,-7.2736 -3.710938,-9.0703 -1.159678,-0.6738 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,99.9629 c -1.270084,0.039 -2.541493,0.3887 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5402 -3.710937,9.0703 0.939949,3.5301 4.09768,5.9414 7.648437,5.9414 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4056 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,100 0,2 -2.4999996,0 L 12,107 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A id=\"path3055-0-77\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9850574,108.015 14.0298856,-0.03\"%0A id=\"path5244-5-0-5\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9849874,132.015 14.0298866,-0.03\"%0A id=\"path5244-5-0-5-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,123.9629 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,124.5366 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1453 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533864,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550757,0 6.710442,-2.4093 7.650391,-5.9394 0.939949,-3.5301 -0.618463,-7.2756 -3.710938,-9.0723 -1.159678,-0.6737 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138-12\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,123.9629 c -1.270084,0.039 -2.541493,0.3888 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5422 -3.710937,9.0723 0.939949,3.5301 4.09768,5.9394 7.648437,5.9394 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4055 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1-3\" />%0A <path%0A id=\"path6191\"%0A d=\"m 10.5,116 0,-2 -2.4999996,0 L 12,109 l 4,5 -2.5,0 0,2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,129 0,-2 -2.4999996,0 L 12,122 l 4,5 -2.5,0 0,2 -3,0 z\"%0A id=\"path6193\" />%0A <path%0A id=\"path6195\"%0A d=\"m 10.5,135 0,2 -2.4999996,0 L 12,142 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4500\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073242 -3.833708,2.213392 -3.8337072,2.213393 0,-4.426785 0,-4.426784 3.8337082,2.213392 z\"%0A inkscape:transform-center-x=\"-1.2779026\" />%0A <path%0A inkscape:transform-center-x=\"1.277902\"%0A d=\"m -31.500004,60.073242 -3.833708,2.213392 -3.833707,2.213393 0,-4.426785 0,-4.426784 3.833707,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:cx=\"-36.611614\"%0A sodipodi:sides=\"3\"%0A id=\"path4502\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"scale(-1,1)\" />%0A <path%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:sides=\"3\"%0A id=\"path4504\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"matrix(0,1,-1,0,72.0074,71.7877)\"%0A inkscape:transform-center-y=\"1.2779029\" />%0A <path%0A inkscape:transform-center-y=\"-1.2779026\"%0A transform=\"matrix(0,-1,-1,0,96,96)\"%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4506\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615-5\"%0A d=\"m 171.82574,65.174193 16.34854,0 -8.17427,-13.348454 z\"%0A style=\"fill:%23fbb917;fill-opacity:1;fill-rule:evenodd;stroke:%23fbb917;stroke-width:1.65161395;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,55 0,6 2,0 0,-6\"%0A id=\"path4300\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,62 0,2 2,0 0,-2\"%0A id=\"path4300-6\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:%23ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:0.8\"%0A d=\"M 99.994369,113.0221 102,114.98353 l 7,-6.9558 3,0.97227 2,-1 1,-2 0,-3 -3,3 -3,-3 3,-3 -3,0 -2,1 -1,2 0.99437,3.0221 z\"%0A id=\"path4268\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccccccccc\" />%0A <rect%0A id=\"rect4175-3-5\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"220\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <path%0A style=\"fill:%23ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 234,6 0,2 -5,5 0,5 -2,0 0,-5 -5,-5 0,-2\"%0A id=\"path3546\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <g%0A transform=\"matrix(1.3333328,0,0,-1.5999992,-139.9999,127.19999)\"%0A id=\"g4383-6\">%0A <rect%0A id=\"rect4385-2\"%0A height=\"1.2499905\"%0A width=\"5.9999924\"%0A y=\"12.625005\"%0A x=\"198.00002\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"15.125007\"%0A width=\"7.4999928\"%0A height=\"1.2499949\"%0A id=\"rect4387-9\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"7.6250024\"%0A width=\"2.9999909\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"10.125004\"%0A width=\"4.4999919\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-9\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 207.00001,16.375004 0,-5.625005 -2.25,0 3,-3.1250014 3,3.1250014 -2.25,0 0,5.625005 -1.5,0\"%0A id=\"path4402\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A </g>%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 164,100 0,3 -6,6 0,7 -4,0 0,-7 -6,-6 0,-3\"%0A id=\"path3546-2-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"28\"%0A x=\"4\" />%0A <path%0A sodipodi:nodetypes=\"ccccccccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4402-5-7\"%0A d=\"m 15,41 0,-7 -4,0 0,3 -5,-4 5,-4 0,3 6,0 0,9\"%0A style=\"fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\" />%0A</svg>%0A')}::ng-deep div.jsoneditor-tree button.jsoneditor-button:focus{background-color:#f5f5f5;outline:#e5e5e5 solid 1px}::ng-deep div.jsoneditor-tree button.jsoneditor-collapsed{background-position:0 -48px}::ng-deep div.jsoneditor-tree button.jsoneditor-expanded{background-position:0 -72px}::ng-deep div.jsoneditor-tree button.jsoneditor-contextmenu-button{background-position:-48px -72px}::ng-deep div.jsoneditor-tree button.jsoneditor-invisible{visibility:hidden;background:0 0}::ng-deep div.jsoneditor-tree button.jsoneditor-dragarea{background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A width=\"240\"%0A height=\"144\"%0A id=\"svg4136\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"jsoneditor-icons.svg\">%0A <title%0A id=\"title6512\">JSON Editor Icons</title>%0A <metadata%0A id=\"metadata4148\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title>JSON Editor Icons</dc:title>%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4146\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ff63ff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1026\"%0A id=\"namedview4144\"%0A showgrid=\"true\"%0A inkscape:zoom=\"4\"%0A inkscape:cx=\"13.229181\"%0A inkscape:cy=\"119.82429\"%0A inkscape:window-x=\"0\"%0A inkscape:window-y=\"0\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4136\"%0A showguides=\"false\"%0A borderlayer=\"false\"%0A inkscape:showpageshadow=\"true\"%0A showborder=\"true\">%0A <inkscape:grid%0A type=\"xygrid\"%0A id=\"grid4640\"%0A empspacing=\"24\" />%0A </sodipodi:namedview>%0A <!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"4\" />%0A <rect%0A id=\"svg_1-7\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"28.000006\"%0A style=\"fill:%23ec3f29;fill-opacity:0.94117647;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A x=\"52.000004\"%0A y=\"3.999995\"%0A width=\"16\"%0A height=\"16\"%0A id=\"rect4165\" />%0A <rect%0A id=\"rect4175\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.9999852\"%0A x=\"172.00002\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4175-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"196\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <g%0A id=\"g4299\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <g%0A id=\"g4299-3\"%0A transform=\"matrix(0.70710678,-0.70710678,0.70710678,0.70710678,19.029435,12.000001)\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1-0\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1-9\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <rect%0A id=\"svg_1-7-5\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"7.0000048\"%0A x=\"55.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A x=\"58\"%0A y=\"10.00001\"%0A width=\"6.9999909\"%0A height=\"6.9999905\"%0A id=\"rect4354\" />%0A <rect%0A id=\"svg_1-7-5-7\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"10.000005\"%0A x=\"58.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%233c80df;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647\" />%0A <g%0A id=\"g4378\">%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"10.999999\"%0A width=\"7.9999909\"%0A height=\"1.9999965\"%0A id=\"svg_1-7-5-3\" />%0A <rect%0A id=\"rect4374\"%0A height=\"1.9999946\"%0A width=\"11.999995\"%0A y=\"7.0000005\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A id=\"rect4376\"%0A height=\"1.9999995\"%0A width=\"3.9999928\"%0A y=\"14.999996\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A </g>%0A <g%0A transform=\"matrix(1,0,0,-1,-23.999995,23.999995)\"%0A id=\"g4383\">%0A <rect%0A id=\"rect4385\"%0A height=\"1.9999965\"%0A width=\"7.9999909\"%0A y=\"10.999999\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"7.0000005\"%0A width=\"11.999995\"%0A height=\"1.9999946\"%0A id=\"rect4387\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"14.999996\"%0A width=\"3.9999928\"%0A height=\"1.9999995\"%0A id=\"rect4389\" />%0A </g>%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-4\"%0A width=\"16\"%0A height=\"16\"%0A x=\"76\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 85.10447,6.0157384 -0.0156,1.4063 c 3.02669,-0.2402 0.33008,3.6507996 2.48438,4.5780996 -2.18694,1.0938 0.49191,4.9069 -2.45313,4.5781 l -0.0156,1.4219 c 5.70828,0.559 1.03264,-5.1005 4.70313,-5.2656 l 0,-1.4063 c -3.61303,-0.027 1.11893,-5.7069996 -4.70313,-5.3124996 z\"%0A id=\"path4351\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 82.78125,5.9984384 0.0156,1.4063 c -3.02668,-0.2402 -0.33007,3.6506996 -2.48437,4.5780996 2.18694,1.0938 -0.49192,4.9069 2.45312,4.5781 l 0.0156,1.4219 c -5.70827,0.559 -1.03263,-5.1004 -4.70312,-5.2656 l 0,-1.4063 c 3.61303,-0.027 -1.11894,-5.7070996 4.70312,-5.3124996 z\"%0A id=\"path4351-9\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-25\"%0A width=\"16\"%0A height=\"16\"%0A x=\"100\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 103.719,5.6719384 0,12.7187996 3.03125,0 0,-1.5313 -1.34375,0 0,-9.6249996 1.375,0 0,-1.5625 z\"%0A id=\"path2987\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 112.2185,5.6721984 0,12.7187996 -3.03125,0 0,-1.5313 1.34375,0 0,-9.6249996 -1.375,0 0,-1.5625 z\"%0A id=\"path2987-1\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-73\"%0A width=\"16\"%0A height=\"16\"%0A x=\"124\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 126.2824,17.602938 1.78957,0 1.14143,-2.8641 5.65364,0 1.14856,2.8641 1.76565,0 -4.78687,-11.1610996 -1.91903,0 z\"%0A id=\"path3780\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccc\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A d=\"m 129.72704,13.478838 4.60852,0.01 -2.30426,-5.5497996 z\"%0A id=\"path3782\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-35\"%0A width=\"16\"%0A height=\"16\"%0A x=\"148\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 156.47655,5.8917384 0,2.1797 0.46093,2.3983996 1.82813,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 152.51561,5.8906384 0,2.1797 0.46094,2.3983996 1.82812,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <rect%0A id=\"svg_1-7-2\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"64\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"svg_1-7-2-2\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"52\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"52\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4561\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"80.000008\"%0A y=\"58\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4563\" />%0A <rect%0A id=\"rect4565\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"58\"%0A x=\"85.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4567\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"64\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"64\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4569\" />%0A <circle%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4571\"%0A cx=\"110.06081\"%0A cy=\"57.939209\"%0A r=\"4.7438836\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"116.64566\"%0A y=\"-31.79752\"%0A width=\"4.229713\"%0A height=\"6.4053884\"%0A id=\"rect4563-2\"%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 125,56 138.77027,56.095 132,64 Z\"%0A id=\"path4613\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615\"%0A d=\"M 149,64 162.77027,63.905 156,56 Z\"%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"54\"%0A y=\"53\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4638\" />%0A <rect%0A id=\"svg_1-7-2-24\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-56\"%0A x=\"53\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"53\"%0A y=\"-66\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4657\" />%0A <rect%0A id=\"rect4659\"%0A height=\"0.99999291\"%0A width=\"11.999999\"%0A y=\"57\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"88.000122\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4661\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"76.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4663\" />%0A <rect%0A id=\"rect4665\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"76.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A id=\"rect4667\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"82.000122\"%0A x=\"80.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"85.000008\"%0A y=\"82.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4669\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"88.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4671\" />%0A <rect%0A id=\"rect4673\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"88.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <circle%0A r=\"4.7438836\"%0A cy=\"81.939331\"%0A cx=\"110.06081\"%0A id=\"circle4675\"%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%23d3d3d3;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\"%0A id=\"rect4677\"%0A height=\"6.4053884\"%0A width=\"4.229713\"%0A y=\"-14.826816\"%0A x=\"133.6163\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:%23d3d3d3;stroke-width:0;stroke-opacity:1\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4679\"%0A d=\"m 125,80.000005 13.77027,0.09499 L 132,87.999992 Z\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 149,88.0002 162.77027,87.9052 156,80.0002 Z\"%0A id=\"path4681\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <rect%0A id=\"rect4683\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"77.000122\"%0A x=\"54\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"77.000122\"%0A y=\"-56\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4685\" />%0A <rect%0A id=\"rect4687\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-66\"%0A x=\"77.000122\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"81.000122\"%0A width=\"11.999999\"%0A height=\"0.99999291\"%0A id=\"rect4689\" />%0A <rect%0A id=\"rect4761-1\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"101\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-0\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"105\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-7\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"109\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1\"%0A height=\"1.9999945\"%0A width=\"12\"%0A y=\"125\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"137\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"129\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4-3\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"133\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,100.0254 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,100.5991 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1452 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533865,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550756,0 6.710442,-2.4113 7.650391,-5.9414 0.939949,-3.5301 -0.618463,-7.2736 -3.710938,-9.0703 -1.159678,-0.6738 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,99.9629 c -1.270084,0.039 -2.541493,0.3887 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5402 -3.710937,9.0703 0.939949,3.5301 4.09768,5.9414 7.648437,5.9414 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4056 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,100 0,2 -2.4999996,0 L 12,107 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A id=\"path3055-0-77\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9850574,108.015 14.0298856,-0.03\"%0A id=\"path5244-5-0-5\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9849874,132.015 14.0298866,-0.03\"%0A id=\"path5244-5-0-5-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,123.9629 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,124.5366 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1453 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533864,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550757,0 6.710442,-2.4093 7.650391,-5.9394 0.939949,-3.5301 -0.618463,-7.2756 -3.710938,-9.0723 -1.159678,-0.6737 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138-12\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,123.9629 c -1.270084,0.039 -2.541493,0.3888 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5422 -3.710937,9.0723 0.939949,3.5301 4.09768,5.9394 7.648437,5.9394 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4055 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1-3\" />%0A <path%0A id=\"path6191\"%0A d=\"m 10.5,116 0,-2 -2.4999996,0 L 12,109 l 4,5 -2.5,0 0,2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,129 0,-2 -2.4999996,0 L 12,122 l 4,5 -2.5,0 0,2 -3,0 z\"%0A id=\"path6193\" />%0A <path%0A id=\"path6195\"%0A d=\"m 10.5,135 0,2 -2.4999996,0 L 12,142 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4500\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073242 -3.833708,2.213392 -3.8337072,2.213393 0,-4.426785 0,-4.426784 3.8337082,2.213392 z\"%0A inkscape:transform-center-x=\"-1.2779026\" />%0A <path%0A inkscape:transform-center-x=\"1.277902\"%0A d=\"m -31.500004,60.073242 -3.833708,2.213392 -3.833707,2.213393 0,-4.426785 0,-4.426784 3.833707,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:cx=\"-36.611614\"%0A sodipodi:sides=\"3\"%0A id=\"path4502\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"scale(-1,1)\" />%0A <path%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:sides=\"3\"%0A id=\"path4504\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"matrix(0,1,-1,0,72.0074,71.7877)\"%0A inkscape:transform-center-y=\"1.2779029\" />%0A <path%0A inkscape:transform-center-y=\"-1.2779026\"%0A transform=\"matrix(0,-1,-1,0,96,96)\"%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4506\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615-5\"%0A d=\"m 171.82574,65.174193 16.34854,0 -8.17427,-13.348454 z\"%0A style=\"fill:%23fbb917;fill-opacity:1;fill-rule:evenodd;stroke:%23fbb917;stroke-width:1.65161395;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,55 0,6 2,0 0,-6\"%0A id=\"path4300\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,62 0,2 2,0 0,-2\"%0A id=\"path4300-6\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:%23ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:0.8\"%0A d=\"M 99.994369,113.0221 102,114.98353 l 7,-6.9558 3,0.97227 2,-1 1,-2 0,-3 -3,3 -3,-3 3,-3 -3,0 -2,1 -1,2 0.99437,3.0221 z\"%0A id=\"path4268\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccccccccc\" />%0A <rect%0A id=\"rect4175-3-5\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"220\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <path%0A style=\"fill:%23ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 234,6 0,2 -5,5 0,5 -2,0 0,-5 -5,-5 0,-2\"%0A id=\"path3546\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <g%0A transform=\"matrix(1.3333328,0,0,-1.5999992,-139.9999,127.19999)\"%0A id=\"g4383-6\">%0A <rect%0A id=\"rect4385-2\"%0A height=\"1.2499905\"%0A width=\"5.9999924\"%0A y=\"12.625005\"%0A x=\"198.00002\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"15.125007\"%0A width=\"7.4999928\"%0A height=\"1.2499949\"%0A id=\"rect4387-9\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"7.6250024\"%0A width=\"2.9999909\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"10.125004\"%0A width=\"4.4999919\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-9\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 207.00001,16.375004 0,-5.625005 -2.25,0 3,-3.1250014 3,3.1250014 -2.25,0 0,5.625005 -1.5,0\"%0A id=\"path4402\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A </g>%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 164,100 0,3 -6,6 0,7 -4,0 0,-7 -6,-6 0,-3\"%0A id=\"path3546-2-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"28\"%0A x=\"4\" />%0A <path%0A sodipodi:nodetypes=\"ccccccccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4402-5-7\"%0A d=\"m 15,41 0,-7 -4,0 0,3 -5,-4 5,-4 0,3 6,0 0,9\"%0A style=\"fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\" />%0A</svg>%0A');background-position:-72px -72px;cursor:move}::ng-deep div.jsoneditor-tree :focus{outline:0}::ng-deep div.jsoneditor-tree div.jsoneditor-show-more{display:inline-block;padding:3px 4px;margin:2px 0;background-color:#e5e5e5;border-radius:3px;color:gray;font-family:arial,sans-serif;font-size:14px}::ng-deep div.jsoneditor-tree div.jsoneditor-show-more a{display:inline-block;color:gray}::ng-deep div.jsoneditor-tree div.jsoneditor-color{display:inline-block;width:12px;height:12px;margin:4px;border:1px solid grey;cursor:pointer}::ng-deep div.jsoneditor-tree div.jsoneditor-color.jsoneditor-color-readonly{cursor:inherit}::ng-deep div.jsoneditor-tree div.jsoneditor-date{background:#a1a1a1;color:#fff;font-family:arial,sans-serif;border-radius:3px;display:inline-block;padding:3px;margin:0 3px}::ng-deep div.jsoneditor-tree table.jsoneditor-tree{border-collapse:collapse;border-spacing:0;width:100%}::ng-deep div.jsoneditor-tree .jsoneditor-button{display:block}::ng-deep div.jsoneditor-tree .jsoneditor-button.jsoneditor-schema-error{width:24px;height:24px;padding:0;margin:0 4px 0 0;background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A width=\"240\"%0A height=\"144\"%0A id=\"svg4136\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"jsoneditor-icons.svg\">%0A <title%0A id=\"title6512\">JSON Editor Icons</title>%0A <metadata%0A id=\"metadata4148\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title>JSON Editor Icons</dc:title>%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4146\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ff63ff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1026\"%0A id=\"namedview4144\"%0A showgrid=\"true\"%0A inkscape:zoom=\"4\"%0A inkscape:cx=\"13.229181\"%0A inkscape:cy=\"119.82429\"%0A inkscape:window-x=\"0\"%0A inkscape:window-y=\"0\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4136\"%0A showguides=\"false\"%0A borderlayer=\"false\"%0A inkscape:showpageshadow=\"true\"%0A showborder=\"true\">%0A <inkscape:grid%0A type=\"xygrid\"%0A id=\"grid4640\"%0A empspacing=\"24\" />%0A </sodipodi:namedview>%0A <!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"4\" />%0A <rect%0A id=\"svg_1-7\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"28.000006\"%0A style=\"fill:%23ec3f29;fill-opacity:0.94117647;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A x=\"52.000004\"%0A y=\"3.999995\"%0A width=\"16\"%0A height=\"16\"%0A id=\"rect4165\" />%0A <rect%0A id=\"rect4175\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.9999852\"%0A x=\"172.00002\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4175-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"196\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <g%0A id=\"g4299\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <g%0A id=\"g4299-3\"%0A transform=\"matrix(0.70710678,-0.70710678,0.70710678,0.70710678,19.029435,12.000001)\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1-0\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1-9\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <rect%0A id=\"svg_1-7-5\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"7.0000048\"%0A x=\"55.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A x=\"58\"%0A y=\"10.00001\"%0A width=\"6.9999909\"%0A height=\"6.9999905\"%0A id=\"rect4354\" />%0A <rect%0A id=\"svg_1-7-5-7\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"10.000005\"%0A x=\"58.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%233c80df;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647\" />%0A <g%0A id=\"g4378\">%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"10.999999\"%0A width=\"7.9999909\"%0A height=\"1.9999965\"%0A id=\"svg_1-7-5-3\" />%0A <rect%0A id=\"rect4374\"%0A height=\"1.9999946\"%0A width=\"11.999995\"%0A y=\"7.0000005\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A id=\"rect4376\"%0A height=\"1.9999995\"%0A width=\"3.9999928\"%0A y=\"14.999996\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A </g>%0A <g%0A transform=\"matrix(1,0,0,-1,-23.999995,23.999995)\"%0A id=\"g4383\">%0A <rect%0A id=\"rect4385\"%0A height=\"1.9999965\"%0A width=\"7.9999909\"%0A y=\"10.999999\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"7.0000005\"%0A width=\"11.999995\"%0A height=\"1.9999946\"%0A id=\"rect4387\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"14.999996\"%0A width=\"3.9999928\"%0A height=\"1.9999995\"%0A id=\"rect4389\" />%0A </g>%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-4\"%0A width=\"16\"%0A height=\"16\"%0A x=\"76\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 85.10447,6.0157384 -0.0156,1.4063 c 3.02669,-0.2402 0.33008,3.6507996 2.48438,4.5780996 -2.18694,1.0938 0.49191,4.9069 -2.45313,4.5781 l -0.0156,1.4219 c 5.70828,0.559 1.03264,-5.1005 4.70313,-5.2656 l 0,-1.4063 c -3.61303,-0.027 1.11893,-5.7069996 -4.70313,-5.3124996 z\"%0A id=\"path4351\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 82.78125,5.9984384 0.0156,1.4063 c -3.02668,-0.2402 -0.33007,3.6506996 -2.48437,4.5780996 2.18694,1.0938 -0.49192,4.9069 2.45312,4.5781 l 0.0156,1.4219 c -5.70827,0.559 -1.03263,-5.1004 -4.70312,-5.2656 l 0,-1.4063 c 3.61303,-0.027 -1.11894,-5.7070996 4.70312,-5.3124996 z\"%0A id=\"path4351-9\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-25\"%0A width=\"16\"%0A height=\"16\"%0A x=\"100\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 103.719,5.6719384 0,12.7187996 3.03125,0 0,-1.5313 -1.34375,0 0,-9.6249996 1.375,0 0,-1.5625 z\"%0A id=\"path2987\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 112.2185,5.6721984 0,12.7187996 -3.03125,0 0,-1.5313 1.34375,0 0,-9.6249996 -1.375,0 0,-1.5625 z\"%0A id=\"path2987-1\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-73\"%0A width=\"16\"%0A height=\"16\"%0A x=\"124\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 126.2824,17.602938 1.78957,0 1.14143,-2.8641 5.65364,0 1.14856,2.8641 1.76565,0 -4.78687,-11.1610996 -1.91903,0 z\"%0A id=\"path3780\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccc\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A d=\"m 129.72704,13.478838 4.60852,0.01 -2.30426,-5.5497996 z\"%0A id=\"path3782\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-35\"%0A width=\"16\"%0A height=\"16\"%0A x=\"148\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 156.47655,5.8917384 0,2.1797 0.46093,2.3983996 1.82813,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 152.51561,5.8906384 0,2.1797 0.46094,2.3983996 1.82812,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <rect%0A id=\"svg_1-7-2\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"64\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"svg_1-7-2-2\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"52\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"52\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4561\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"80.000008\"%0A y=\"58\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4563\" />%0A <rect%0A id=\"rect4565\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"58\"%0A x=\"85.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4567\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"64\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"64\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4569\" />%0A <circle%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4571\"%0A cx=\"110.06081\"%0A cy=\"57.939209\"%0A r=\"4.7438836\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"116.64566\"%0A y=\"-31.79752\"%0A width=\"4.229713\"%0A height=\"6.4053884\"%0A id=\"rect4563-2\"%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 125,56 138.77027,56.095 132,64 Z\"%0A id=\"path4613\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615\"%0A d=\"M 149,64 162.77027,63.905 156,56 Z\"%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"54\"%0A y=\"53\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4638\" />%0A <rect%0A id=\"svg_1-7-2-24\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-56\"%0A x=\"53\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"53\"%0A y=\"-66\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4657\" />%0A <rect%0A id=\"rect4659\"%0A height=\"0.99999291\"%0A width=\"11.999999\"%0A y=\"57\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"88.000122\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4661\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"76.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4663\" />%0A <rect%0A id=\"rect4665\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"76.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A id=\"rect4667\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"82.000122\"%0A x=\"80.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"85.000008\"%0A y=\"82.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4669\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"88.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4671\" />%0A <rect%0A id=\"rect4673\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"88.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <circle%0A r=\"4.7438836\"%0A cy=\"81.939331\"%0A cx=\"110.06081\"%0A id=\"circle4675\"%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%23d3d3d3;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\"%0A id=\"rect4677\"%0A height=\"6.4053884\"%0A width=\"4.229713\"%0A y=\"-14.826816\"%0A x=\"133.6163\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:%23d3d3d3;stroke-width:0;stroke-opacity:1\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4679\"%0A d=\"m 125,80.000005 13.77027,0.09499 L 132,87.999992 Z\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 149,88.0002 162.77027,87.9052 156,80.0002 Z\"%0A id=\"path4681\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <rect%0A id=\"rect4683\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"77.000122\"%0A x=\"54\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"77.000122\"%0A y=\"-56\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4685\" />%0A <rect%0A id=\"rect4687\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-66\"%0A x=\"77.000122\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"81.000122\"%0A width=\"11.999999\"%0A height=\"0.99999291\"%0A id=\"rect4689\" />%0A <rect%0A id=\"rect4761-1\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"101\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-0\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"105\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-7\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"109\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1\"%0A height=\"1.9999945\"%0A width=\"12\"%0A y=\"125\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"137\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"129\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4-3\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"133\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,100.0254 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,100.5991 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1452 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533865,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550756,0 6.710442,-2.4113 7.650391,-5.9414 0.939949,-3.5301 -0.618463,-7.2736 -3.710938,-9.0703 -1.159678,-0.6738 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,99.9629 c -1.270084,0.039 -2.541493,0.3887 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5402 -3.710937,9.0703 0.939949,3.5301 4.09768,5.9414 7.648437,5.9414 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4056 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,100 0,2 -2.4999996,0 L 12,107 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A id=\"path3055-0-77\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9850574,108.015 14.0298856,-0.03\"%0A id=\"path5244-5-0-5\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9849874,132.015 14.0298866,-0.03\"%0A id=\"path5244-5-0-5-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,123.9629 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,124.5366 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1453 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533864,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550757,0 6.710442,-2.4093 7.650391,-5.9394 0.939949,-3.5301 -0.618463,-7.2756 -3.710938,-9.0723 -1.159678,-0.6737 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138-12\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,123.9629 c -1.270084,0.039 -2.541493,0.3888 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5422 -3.710937,9.0723 0.939949,3.5301 4.09768,5.9394 7.648437,5.9394 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4055 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1-3\" />%0A <path%0A id=\"path6191\"%0A d=\"m 10.5,116 0,-2 -2.4999996,0 L 12,109 l 4,5 -2.5,0 0,2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,129 0,-2 -2.4999996,0 L 12,122 l 4,5 -2.5,0 0,2 -3,0 z\"%0A id=\"path6193\" />%0A <path%0A id=\"path6195\"%0A d=\"m 10.5,135 0,2 -2.4999996,0 L 12,142 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4500\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073242 -3.833708,2.213392 -3.8337072,2.213393 0,-4.426785 0,-4.426784 3.8337082,2.213392 z\"%0A inkscape:transform-center-x=\"-1.2779026\" />%0A <path%0A inkscape:transform-center-x=\"1.277902\"%0A d=\"m -31.500004,60.073242 -3.833708,2.213392 -3.833707,2.213393 0,-4.426785 0,-4.426784 3.833707,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:cx=\"-36.611614\"%0A sodipodi:sides=\"3\"%0A id=\"path4502\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"scale(-1,1)\" />%0A <path%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:sides=\"3\"%0A id=\"path4504\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"matrix(0,1,-1,0,72.0074,71.7877)\"%0A inkscape:transform-center-y=\"1.2779029\" />%0A <path%0A inkscape:transform-center-y=\"-1.2779026\"%0A transform=\"matrix(0,-1,-1,0,96,96)\"%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4506\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615-5\"%0A d=\"m 171.82574,65.174193 16.34854,0 -8.17427,-13.348454 z\"%0A style=\"fill:%23fbb917;fill-opacity:1;fill-rule:evenodd;stroke:%23fbb917;stroke-width:1.65161395;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,55 0,6 2,0 0,-6\"%0A id=\"path4300\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,62 0,2 2,0 0,-2\"%0A id=\"path4300-6\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:%23ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:0.8\"%0A d=\"M 99.994369,113.0221 102,114.98353 l 7,-6.9558 3,0.97227 2,-1 1,-2 0,-3 -3,3 -3,-3 3,-3 -3,0 -2,1 -1,2 0.99437,3.0221 z\"%0A id=\"path4268\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccccccccc\" />%0A <rect%0A id=\"rect4175-3-5\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"220\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <path%0A style=\"fill:%23ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 234,6 0,2 -5,5 0,5 -2,0 0,-5 -5,-5 0,-2\"%0A id=\"path3546\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <g%0A transform=\"matrix(1.3333328,0,0,-1.5999992,-139.9999,127.19999)\"%0A id=\"g4383-6\">%0A <rect%0A id=\"rect4385-2\"%0A height=\"1.2499905\"%0A width=\"5.9999924\"%0A y=\"12.625005\"%0A x=\"198.00002\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"15.125007\"%0A width=\"7.4999928\"%0A height=\"1.2499949\"%0A id=\"rect4387-9\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"7.6250024\"%0A width=\"2.9999909\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"10.125004\"%0A width=\"4.4999919\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-9\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 207.00001,16.375004 0,-5.625005 -2.25,0 3,-3.1250014 3,3.1250014 -2.25,0 0,5.625005 -1.5,0\"%0A id=\"path4402\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A </g>%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 164,100 0,3 -6,6 0,7 -4,0 0,-7 -6,-6 0,-3\"%0A id=\"path3546-2-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"28\"%0A x=\"4\" />%0A <path%0A sodipodi:nodetypes=\"ccccccccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4402-5-7\"%0A d=\"m 15,41 0,-7 -4,0 0,3 -5,-4 5,-4 0,3 6,0 0,9\"%0A style=\"fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\" />%0A</svg>%0A');background-position:-168px -48px;background-color:transparent}::ng-deep div.jsoneditor-outer{position:static;width:100%;height:100%;margin:0;padding:0;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}::ng-deep div.jsoneditor-outer.has-nav-bar{margin-top:-26px;padding-top:26px}::ng-deep div.jsoneditor-outer.has-nav-bar.has-main-menu-bar{margin-top:-61px;padding-top:61px}::ng-deep div.jsoneditor-outer.has-status-bar{margin-bottom:-26px;padding-bottom:26px}::ng-deep div.jsoneditor-outer.has-main-menu-bar{margin-top:-35px;padding-top:35px}::ng-deep div.jsoneditor-busy{position:absolute;top:15%;left:0;box-sizing:border-box;width:100%;text-align:center;display:none}::ng-deep div.jsoneditor-busy span{background-color:#ffffab;border:1px solid #fe0;border-radius:3px;padding:5px 15px;box-shadow:0 0 5px #0006}::ng-deep div.jsoneditor-field.jsoneditor-empty:after,::ng-deep div.jsoneditor-value.jsoneditor-empty:after{pointer-events:none;color:#d3d3d3;font-size:8pt}::ng-deep a.jsoneditor-value.jsoneditor-url,::ng-deep div.jsoneditor-value.jsoneditor-url{color:#006000;text-decoration:underline}::ng-deep a.jsoneditor-value.jsoneditor-url{display:inline-block;padding:2px;margin:2px}::ng-deep a.jsoneditor-value.jsoneditor-url:focus,::ng-deep a.jsoneditor-value.jsoneditor-url:hover{color:#ee422e}::ng-deep div.jsoneditor-field.jsoneditor-highlight,::ng-deep div.jsoneditor-field[contenteditable=true]:focus,::ng-deep div.jsoneditor-field[contenteditable=true]:hover,::ng-deep div.jsoneditor-value.jsoneditor-highlight,::ng-deep div.jsoneditor-value[contenteditable=true]:focus,::ng-deep div.jsoneditor-value[contenteditable=true]:hover{background-color:#ffffab;border:1px solid #fe0;border-radius:2px}::ng-deep div.jsoneditor-field.jsoneditor-highlight-active,::ng-deep div.jsoneditor-field.jsoneditor-highlight-active:focus,::ng-deep div.jsoneditor-field.jsoneditor-highlight-active:hover,::ng-deep div.jsoneditor-value.jsoneditor-highlight-active,::ng-deep div.jsoneditor-value.jsoneditor-highlight-active:focus,::ng-deep div.jsoneditor-value.jsoneditor-highlight-active:hover{background-color:#fe0;border:1px solid #ffc700;border-radius:2px}::ng-deep div.jsoneditor-value.jsoneditor-array,::ng-deep div.jsoneditor-value.jsoneditor-object{min-width:16px}::ng-deep div.jsoneditor-tree button.jsoneditor-contextmenu-button.jsoneditor-selected,::ng-deep div.jsoneditor-tree button.jsoneditor-contextmenu-button:focus,::ng-deep div.jsoneditor-tree button.jsoneditor-contextmenu-button:hover,::ng-deep tr.jsoneditor-selected.jsoneditor-first button.jsoneditor-contextmenu-button{background-position:-48px -48px}::ng-deep div.jsoneditor-tree div.jsoneditor-show-more a:focus,::ng-deep div.jsoneditor-tree div.jsoneditor-show-more a:hover{color:#ee422e}::ng-deep .ace-jsoneditor,::ng-deep textarea.jsoneditor-text{min-height:150px}::ng-deep .ace-jsoneditor.ace_editor,::ng-deep textarea.jsoneditor-text.ace_editor{font-family:consolas,menlo,monaco,Ubuntu Mono,source-code-pro,monospace}::ng-deep textarea.jsoneditor-text{width:100%;height:100%;margin:0;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;outline-width:0;border:none;background-color:#fff;resize:none}::ng-deep tr.jsoneditor-highlight,::ng-deep tr.jsoneditor-selected{background-color:#d3d3d3}::ng-deep tr.jsoneditor-selected button.jsoneditor-contextmenu-button,::ng-deep tr.jsoneditor-selected button.jsoneditor-dragarea{visibility:hidden}::ng-deep tr.jsoneditor-selected.jsoneditor-first button.jsoneditor-contextmenu-button,::ng-deep tr.jsoneditor-selected.jsoneditor-first button.jsoneditor-dragarea{visibility:visible}::ng-deep div.jsoneditor-tree button.jsoneditor-dragarea:focus,::ng-deep div.jsoneditor-tree button.jsoneditor-dragarea:hover,::ng-deep tr.jsoneditor-selected.jsoneditor-first button.jsoneditor-dragarea{background-position:-72px -48px}::ng-deep div.jsoneditor td,::ng-deep div.jsoneditor th,::ng-deep div.jsoneditor tr{padding:0;margin:0}::ng-deep .jsoneditor-popover,::ng-deep .jsoneditor-schema-error,::ng-deep div.jsoneditor td,::ng-deep div.jsoneditor textarea,::ng-deep div.jsoneditor th,::ng-deep div.jsoneditor-field,::ng-deep div.jsoneditor-value,::ng-deep pre.jsoneditor-preview{font-family:consolas,menlo,monaco,Ubuntu Mono,source-code-pro,monospace;font-size:14px;color:#1a1a1a}::ng-deep .jsoneditor-schema-error{cursor:default;display:inline-block;height:24px;line-height:24px;position:relative;text-align:center;width:24px}::ng-deep .jsoneditor-popover{background-color:#4c4c4c;border-radius:3px;box-shadow:0 0 5px #0006;color:#fff;padding:7px 10px;position:absolute;cursor:auto;width:200px}::ng-deep .jsoneditor-popover.jsoneditor-above{bottom:32px;left:-98px}::ng-deep .jsoneditor-popover.jsoneditor-above:before{border-top:7px solid #4c4c4c;bottom:-7px}::ng-deep .jsoneditor-popover.jsoneditor-below{top:32px;left:-98px}::ng-deep .jsoneditor-popover.jsoneditor-below:before{border-bottom:7px solid #4c4c4c;top:-7px}::ng-deep .jsoneditor-popover.jsoneditor-left{top:-7px;right:32px}::ng-deep .jsoneditor-popover.jsoneditor-left:before{border-left:7px solid #4c4c4c;border-top:7px solid transparent;border-bottom:7px solid transparent;content:\"\";top:19px;right:-14px;left:inherit;margin-left:inherit;margin-top:-7px;position:absolute}::ng-deep .jsoneditor-popover.jsoneditor-right{top:-7px;left:32px}::ng-deep .jsoneditor-popover.jsoneditor-right:before{border-right:7px solid #4c4c4c;border-top:7px solid transparent;border-bottom:7px solid transparent;content:\"\";top:19px;left:-14px;margin-left:inherit;margin-top:-7px;position:absolute}::ng-deep .jsoneditor-popover:before{border-right:7px solid transparent;border-left:7px solid transparent;content:\"\";display:block;left:50%;margin-left:-7px;position:absolute}::ng-deep .jsoneditor-text-errors tr.jump-to-line:hover{text-decoration:underline;cursor:pointer}::ng-deep .jsoneditor-schema-error:focus .jsoneditor-popover,::ng-deep .jsoneditor-schema-error:hover .jsoneditor-popover{display:block;animation:fade-in .3s linear 1,move-up .3s linear 1}@keyframes fade-in{0%{opacity:0}to{opacity:1}}::ng-deep .jsoneditor .jsoneditor-validation-errors-container{max-height:130px;overflow-y:auto}::ng-deep .jsoneditor .jsoneditor-validation-errors{width:100%;overflow:hidden}::ng-deep .jsoneditor .jsoneditor-additional-errors{position:absolute;margin:auto;bottom:31px;left:calc(50% - 92px);color:gray;background-color:#ebebeb;padding:7px 15px;border-radius:8px}::ng-deep .jsoneditor .jsoneditor-additional-errors.visible{visibility:visible;opacity:1;transition:opacity 2s linear}::ng-deep .jsoneditor .jsoneditor-additional-errors.hidden{visibility:hidden;opacity:0;transition:visibility 0s 2s,opacity 2s linear}::ng-deep .jsoneditor .jsoneditor-text-errors{width:100%;border-collapse:collapse;border-top:1px solid #ffc700}::ng-deep .jsoneditor .jsoneditor-text-errors td{padding:3px 6px;vertical-align:middle}::ng-deep .jsoneditor .jsoneditor-text-errors td pre{margin:0;white-space:pre-wrap}::ng-deep .jsoneditor .jsoneditor-text-errors tr{background-color:#ffffab}::ng-deep .jsoneditor .jsoneditor-text-errors tr.parse-error{background-color:#ee2e2e70}::ng-deep .jsoneditor-text-errors .jsoneditor-schema-error{border:none;width:24px;height:24px;padding:0;margin:0 4px 0 0;cursor:pointer}::ng-deep .jsoneditor-text-errors tr .jsoneditor-schema-error{background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A width=\"240\"%0A height=\"144\"%0A id=\"svg4136\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"jsoneditor-icons.svg\">%0A <title%0A id=\"title6512\">JSON Editor Icons</title>%0A <metadata%0A id=\"metadata4148\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title>JSON Editor Icons</dc:title>%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4146\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ff63ff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1026\"%0A id=\"namedview4144\"%0A showgrid=\"true\"%0A inkscape:zoom=\"4\"%0A inkscape:cx=\"13.229181\"%0A inkscape:cy=\"119.82429\"%0A inkscape:window-x=\"0\"%0A inkscape:window-y=\"0\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4136\"%0A showguides=\"false\"%0A borderlayer=\"false\"%0A inkscape:showpageshadow=\"true\"%0A showborder=\"true\">%0A <inkscape:grid%0A type=\"xygrid\"%0A id=\"grid4640\"%0A empspacing=\"24\" />%0A </sodipodi:namedview>%0A <!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"4\" />%0A <rect%0A id=\"svg_1-7\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"28.000006\"%0A style=\"fill:%23ec3f29;fill-opacity:0.94117647;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A x=\"52.000004\"%0A y=\"3.999995\"%0A width=\"16\"%0A height=\"16\"%0A id=\"rect4165\" />%0A <rect%0A id=\"rect4175\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.9999852\"%0A x=\"172.00002\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4175-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"196\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <g%0A id=\"g4299\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <g%0A id=\"g4299-3\"%0A transform=\"matrix(0.70710678,-0.70710678,0.70710678,0.70710678,19.029435,12.000001)\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1-0\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1-9\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <rect%0A id=\"svg_1-7-5\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"7.0000048\"%0A x=\"55.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A x=\"58\"%0A y=\"10.00001\"%0A width=\"6.9999909\"%0A height=\"6.9999905\"%0A id=\"rect4354\" />%0A <rect%0A id=\"svg_1-7-5-7\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"10.000005\"%0A x=\"58.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%233c80df;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647\" />%0A <g%0A id=\"g4378\">%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"10.999999\"%0A width=\"7.9999909\"%0A height=\"1.9999965\"%0A id=\"svg_1-7-5-3\" />%0A <rect%0A id=\"rect4374\"%0A height=\"1.9999946\"%0A width=\"11.999995\"%0A y=\"7.0000005\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A id=\"rect4376\"%0A height=\"1.9999995\"%0A width=\"3.9999928\"%0A y=\"14.999996\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A </g>%0A <g%0A transform=\"matrix(1,0,0,-1,-23.999995,23.999995)\"%0A id=\"g4383\">%0A <rect%0A id=\"rect4385\"%0A height=\"1.9999965\"%0A width=\"7.9999909\"%0A y=\"10.999999\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"7.0000005\"%0A width=\"11.999995\"%0A height=\"1.9999946\"%0A id=\"rect4387\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"14.999996\"%0A width=\"3.9999928\"%0A height=\"1.9999995\"%0A id=\"rect4389\" />%0A </g>%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-4\"%0A width=\"16\"%0A height=\"16\"%0A x=\"76\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 85.10447,6.0157384 -0.0156,1.4063 c 3.02669,-0.2402 0.33008,3.6507996 2.48438,4.5780996 -2.18694,1.0938 0.49191,4.9069 -2.45313,4.5781 l -0.0156,1.4219 c 5.70828,0.559 1.03264,-5.1005 4.70313,-5.2656 l 0,-1.4063 c -3.61303,-0.027 1.11893,-5.7069996 -4.70313,-5.3124996 z\"%0A id=\"path4351\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 82.78125,5.9984384 0.0156,1.4063 c -3.02668,-0.2402 -0.33007,3.6506996 -2.48437,4.5780996 2.18694,1.0938 -0.49192,4.9069 2.45312,4.5781 l 0.0156,1.4219 c -5.70827,0.559 -1.03263,-5.1004 -4.70312,-5.2656 l 0,-1.4063 c 3.61303,-0.027 -1.11894,-5.7070996 4.70312,-5.3124996 z\"%0A id=\"path4351-9\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-25\"%0A width=\"16\"%0A height=\"16\"%0A x=\"100\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 103.719,5.6719384 0,12.7187996 3.03125,0 0,-1.5313 -1.34375,0 0,-9.6249996 1.375,0 0,-1.5625 z\"%0A id=\"path2987\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 112.2185,5.6721984 0,12.7187996 -3.03125,0 0,-1.5313 1.34375,0 0,-9.6249996 -1.375,0 0,-1.5625 z\"%0A id=\"path2987-1\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-73\"%0A width=\"16\"%0A height=\"16\"%0A x=\"124\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 126.2824,17.602938 1.78957,0 1.14143,-2.8641 5.65364,0 1.14856,2.8641 1.76565,0 -4.78687,-11.1610996 -1.91903,0 z\"%0A id=\"path3780\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccc\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A d=\"m 129.72704,13.478838 4.60852,0.01 -2.30426,-5.5497996 z\"%0A id=\"path3782\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-35\"%0A width=\"16\"%0A height=\"16\"%0A x=\"148\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 156.47655,5.8917384 0,2.1797 0.46093,2.3983996 1.82813,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 152.51561,5.8906384 0,2.1797 0.46094,2.3983996 1.82812,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <rect%0A id=\"svg_1-7-2\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"64\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"svg_1-7-2-2\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"52\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"52\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4561\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"80.000008\"%0A y=\"58\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4563\" />%0A <rect%0A id=\"rect4565\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"58\"%0A x=\"85.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4567\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"64\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"64\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4569\" />%0A <circle%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4571\"%0A cx=\"110.06081\"%0A cy=\"57.939209\"%0A r=\"4.7438836\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"116.64566\"%0A y=\"-31.79752\"%0A width=\"4.229713\"%0A height=\"6.4053884\"%0A id=\"rect4563-2\"%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 125,56 138.77027,56.095 132,64 Z\"%0A id=\"path4613\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615\"%0A d=\"M 149,64 162.77027,63.905 156,56 Z\"%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"54\"%0A y=\"53\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4638\" />%0A <rect%0A id=\"svg_1-7-2-24\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-56\"%0A x=\"53\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"53\"%0A y=\"-66\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4657\" />%0A <rect%0A id=\"rect4659\"%0A height=\"0.99999291\"%0A width=\"11.999999\"%0A y=\"57\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"88.000122\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4661\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"76.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4663\" />%0A <rect%0A id=\"rect4665\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"76.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A id=\"rect4667\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"82.000122\"%0A x=\"80.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"85.000008\"%0A y=\"82.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4669\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"88.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4671\" />%0A <rect%0A id=\"rect4673\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"88.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <circle%0A r=\"4.7438836\"%0A cy=\"81.939331\"%0A cx=\"110.06081\"%0A id=\"circle4675\"%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%23d3d3d3;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\"%0A id=\"rect4677\"%0A height=\"6.4053884\"%0A width=\"4.229713\"%0A y=\"-14.826816\"%0A x=\"133.6163\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:%23d3d3d3;stroke-width:0;stroke-opacity:1\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4679\"%0A d=\"m 125,80.000005 13.77027,0.09499 L 132,87.999992 Z\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 149,88.0002 162.77027,87.9052 156,80.0002 Z\"%0A id=\"path4681\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <rect%0A id=\"rect4683\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"77.000122\"%0A x=\"54\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"77.000122\"%0A y=\"-56\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4685\" />%0A <rect%0A id=\"rect4687\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-66\"%0A x=\"77.000122\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"81.000122\"%0A width=\"11.999999\"%0A height=\"0.99999291\"%0A id=\"rect4689\" />%0A <rect%0A id=\"rect4761-1\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"101\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-0\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"105\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-7\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"109\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1\"%0A height=\"1.9999945\"%0A width=\"12\"%0A y=\"125\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"137\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"129\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4-3\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"133\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,100.0254 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,100.5991 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1452 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533865,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550756,0 6.710442,-2.4113 7.650391,-5.9414 0.939949,-3.5301 -0.618463,-7.2736 -3.710938,-9.0703 -1.159678,-0.6738 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,99.9629 c -1.270084,0.039 -2.541493,0.3887 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5402 -3.710937,9.0703 0.939949,3.5301 4.09768,5.9414 7.648437,5.9414 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4056 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,100 0,2 -2.4999996,0 L 12,107 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A id=\"path3055-0-77\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9850574,108.015 14.0298856,-0.03\"%0A id=\"path5244-5-0-5\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9849874,132.015 14.0298866,-0.03\"%0A id=\"path5244-5-0-5-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,123.9629 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,124.5366 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1453 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533864,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550757,0 6.710442,-2.4093 7.650391,-5.9394 0.939949,-3.5301 -0.618463,-7.2756 -3.710938,-9.0723 -1.159678,-0.6737 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138-12\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,123.9629 c -1.270084,0.039 -2.541493,0.3888 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5422 -3.710937,9.0723 0.939949,3.5301 4.09768,5.9394 7.648437,5.9394 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4055 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1-3\" />%0A <path%0A id=\"path6191\"%0A d=\"m 10.5,116 0,-2 -2.4999996,0 L 12,109 l 4,5 -2.5,0 0,2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,129 0,-2 -2.4999996,0 L 12,122 l 4,5 -2.5,0 0,2 -3,0 z\"%0A id=\"path6193\" />%0A <path%0A id=\"path6195\"%0A d=\"m 10.5,135 0,2 -2.4999996,0 L 12,142 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4500\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073242 -3.833708,2.213392 -3.8337072,2.213393 0,-4.426785 0,-4.426784 3.8337082,2.213392 z\"%0A inkscape:transform-center-x=\"-1.2779026\" />%0A <path%0A inkscape:transform-center-x=\"1.277902\"%0A d=\"m -31.500004,60.073242 -3.833708,2.213392 -3.833707,2.213393 0,-4.426785 0,-4.426784 3.833707,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:cx=\"-36.611614\"%0A sodipodi:sides=\"3\"%0A id=\"path4502\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"scale(-1,1)\" />%0A <path%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:sides=\"3\"%0A id=\"path4504\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"matrix(0,1,-1,0,72.0074,71.7877)\"%0A inkscape:transform-center-y=\"1.2779029\" />%0A <path%0A inkscape:transform-center-y=\"-1.2779026\"%0A transform=\"matrix(0,-1,-1,0,96,96)\"%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4506\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615-5\"%0A d=\"m 171.82574,65.174193 16.34854,0 -8.17427,-13.348454 z\"%0A style=\"fill:%23fbb917;fill-opacity:1;fill-rule:evenodd;stroke:%23fbb917;stroke-width:1.65161395;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,55 0,6 2,0 0,-6\"%0A id=\"path4300\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,62 0,2 2,0 0,-2\"%0A id=\"path4300-6\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:%23ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:0.8\"%0A d=\"M 99.994369,113.0221 102,114.98353 l 7,-6.9558 3,0.97227 2,-1 1,-2 0,-3 -3,3 -3,-3 3,-3 -3,0 -2,1 -1,2 0.99437,3.0221 z\"%0A id=\"path4268\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccccccccc\" />%0A <rect%0A id=\"rect4175-3-5\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"220\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <path%0A style=\"fill:%23ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 234,6 0,2 -5,5 0,5 -2,0 0,-5 -5,-5 0,-2\"%0A id=\"path3546\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <g%0A transform=\"matrix(1.3333328,0,0,-1.5999992,-139.9999,127.19999)\"%0A id=\"g4383-6\">%0A <rect%0A id=\"rect4385-2\"%0A height=\"1.2499905\"%0A width=\"5.9999924\"%0A y=\"12.625005\"%0A x=\"198.00002\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"15.125007\"%0A width=\"7.4999928\"%0A height=\"1.2499949\"%0A id=\"rect4387-9\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"7.6250024\"%0A width=\"2.9999909\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"10.125004\"%0A width=\"4.4999919\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-9\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 207.00001,16.375004 0,-5.625005 -2.25,0 3,-3.1250014 3,3.1250014 -2.25,0 0,5.625005 -1.5,0\"%0A id=\"path4402\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A </g>%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 164,100 0,3 -6,6 0,7 -4,0 0,-7 -6,-6 0,-3\"%0A id=\"path3546-2-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"28\"%0A x=\"4\" />%0A <path%0A sodipodi:nodetypes=\"ccccccccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4402-5-7\"%0A d=\"m 15,41 0,-7 -4,0 0,3 -5,-4 5,-4 0,3 6,0 0,9\"%0A style=\"fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\" />%0A</svg>%0A');background-position:-168px -48px;background-color:transparent}::ng-deep .jsoneditor-text-errors tr.parse-error .jsoneditor-schema-error{background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A width=\"240\"%0A height=\"144\"%0A id=\"svg4136\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"jsoneditor-icons.svg\">%0A <title%0A id=\"title6512\">JSON Editor Icons</title>%0A <metadata%0A id=\"metadata4148\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title>JSON Editor Icons</dc:title>%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4146\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ff63ff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1026\"%0A id=\"namedview4144\"%0A showgrid=\"true\"%0A inkscape:zoom=\"4\"%0A inkscape:cx=\"13.229181\"%0A inkscape:cy=\"119.82429\"%0A inkscape:window-x=\"0\"%0A inkscape:window-y=\"0\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4136\"%0A showguides=\"false\"%0A borderlayer=\"false\"%0A inkscape:showpageshadow=\"true\"%0A showborder=\"true\">%0A <inkscape:grid%0A type=\"xygrid\"%0A id=\"grid4640\"%0A empspacing=\"24\" />%0A </sodipodi:namedview>%0A <!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"4\" />%0A <rect%0A id=\"svg_1-7\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"28.000006\"%0A style=\"fill:%23ec3f29;fill-opacity:0.94117647;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A x=\"52.000004\"%0A y=\"3.999995\"%0A width=\"16\"%0A height=\"16\"%0A id=\"rect4165\" />%0A <rect%0A id=\"rect4175\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.9999852\"%0A x=\"172.00002\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4175-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"196\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <g%0A id=\"g4299\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <g%0A id=\"g4299-3\"%0A transform=\"matrix(0.70710678,-0.70710678,0.70710678,0.70710678,19.029435,12.000001)\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1-0\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1-9\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <rect%0A id=\"svg_1-7-5\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"7.0000048\"%0A x=\"55.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A x=\"58\"%0A y=\"10.00001\"%0A width=\"6.9999909\"%0A height=\"6.9999905\"%0A id=\"rect4354\" />%0A <rect%0A id=\"svg_1-7-5-7\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"10.000005\"%0A x=\"58.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%233c80df;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647\" />%0A <g%0A id=\"g4378\">%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"10.999999\"%0A width=\"7.9999909\"%0A height=\"1.9999965\"%0A id=\"svg_1-7-5-3\" />%0A <rect%0A id=\"rect4374\"%0A height=\"1.9999946\"%0A width=\"11.999995\"%0A y=\"7.0000005\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A id=\"rect4376\"%0A height=\"1.9999995\"%0A width=\"3.9999928\"%0A y=\"14.999996\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A </g>%0A <g%0A transform=\"matrix(1,0,0,-1,-23.999995,23.999995)\"%0A id=\"g4383\">%0A <rect%0A id=\"rect4385\"%0A height=\"1.9999965\"%0A width=\"7.9999909\"%0A y=\"10.999999\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"7.0000005\"%0A width=\"11.999995\"%0A height=\"1.9999946\"%0A id=\"rect4387\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"14.999996\"%0A width=\"3.9999928\"%0A height=\"1.9999995\"%0A id=\"rect4389\" />%0A </g>%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-4\"%0A width=\"16\"%0A height=\"16\"%0A x=\"76\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 85.10447,6.0157384 -0.0156,1.4063 c 3.02669,-0.2402 0.33008,3.6507996 2.48438,4.5780996 -2.18694,1.0938 0.49191,4.9069 -2.45313,4.5781 l -0.0156,1.4219 c 5.70828,0.559 1.03264,-5.1005 4.70313,-5.2656 l 0,-1.4063 c -3.61303,-0.027 1.11893,-5.7069996 -4.70313,-5.3124996 z\"%0A id=\"path4351\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 82.78125,5.9984384 0.0156,1.4063 c -3.02668,-0.2402 -0.33007,3.6506996 -2.48437,4.5780996 2.18694,1.0938 -0.49192,4.9069 2.45312,4.5781 l 0.0156,1.4219 c -5.70827,0.559 -1.03263,-5.1004 -4.70312,-5.2656 l 0,-1.4063 c 3.61303,-0.027 -1.11894,-5.7070996 4.70312,-5.3124996 z\"%0A id=\"path4351-9\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-25\"%0A width=\"16\"%0A height=\"16\"%0A x=\"100\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 103.719,5.6719384 0,12.7187996 3.03125,0 0,-1.5313 -1.34375,0 0,-9.6249996 1.375,0 0,-1.5625 z\"%0A id=\"path2987\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 112.2185,5.6721984 0,12.7187996 -3.03125,0 0,-1.5313 1.34375,0 0,-9.6249996 -1.375,0 0,-1.5625 z\"%0A id=\"path2987-1\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-73\"%0A width=\"16\"%0A height=\"16\"%0A x=\"124\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 126.2824,17.602938 1.78957,0 1.14143,-2.8641 5.65364,0 1.14856,2.8641 1.76565,0 -4.78687,-11.1610996 -1.91903,0 z\"%0A id=\"path3780\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccc\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A d=\"m 129.72704,13.478838 4.60852,0.01 -2.30426,-5.5497996 z\"%0A id=\"path3782\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-35\"%0A width=\"16\"%0A height=\"16\"%0A x=\"148\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 156.47655,5.8917384 0,2.1797 0.46093,2.3983996 1.82813,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 152.51561,5.8906384 0,2.1797 0.46094,2.3983996 1.82812,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <rect%0A id=\"svg_1-7-2\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"64\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"svg_1-7-2-2\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"52\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"52\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4561\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"80.000008\"%0A y=\"58\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4563\" />%0A <rect%0A id=\"rect4565\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"58\"%0A x=\"85.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4567\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"64\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"64\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4569\" />%0A <circle%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4571\"%0A cx=\"110.06081\"%0A cy=\"57.939209\"%0A r=\"4.7438836\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"116.64566\"%0A y=\"-31.79752\"%0A width=\"4.229713\"%0A height=\"6.4053884\"%0A id=\"rect4563-2\"%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 125,56 138.77027,56.095 132,64 Z\"%0A id=\"path4613\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615\"%0A d=\"M 149,64 162.77027,63.905 156,56 Z\"%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"54\"%0A y=\"53\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4638\" />%0A <rect%0A id=\"svg_1-7-2-24\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-56\"%0A x=\"53\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"53\"%0A y=\"-66\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4657\" />%0A <rect%0A id=\"rect4659\"%0A height=\"0.99999291\"%0A width=\"11.999999\"%0A y=\"57\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"88.000122\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4661\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"76.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4663\" />%0A <rect%0A id=\"rect4665\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"76.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A id=\"rect4667\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"82.000122\"%0A x=\"80.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"85.000008\"%0A y=\"82.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4669\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"88.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4671\" />%0A <rect%0A id=\"rect4673\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"88.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <circle%0A r=\"4.7438836\"%0A cy=\"81.939331\"%0A cx=\"110.06081\"%0A id=\"circle4675\"%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%23d3d3d3;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\"%0A id=\"rect4677\"%0A height=\"6.4053884\"%0A width=\"4.229713\"%0A y=\"-14.826816\"%0A x=\"133.6163\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:%23d3d3d3;stroke-width:0;stroke-opacity:1\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4679\"%0A d=\"m 125,80.000005 13.77027,0.09499 L 132,87.999992 Z\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 149,88.0002 162.77027,87.9052 156,80.0002 Z\"%0A id=\"path4681\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <rect%0A id=\"rect4683\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"77.000122\"%0A x=\"54\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"77.000122\"%0A y=\"-56\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4685\" />%0A <rect%0A id=\"rect4687\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-66\"%0A x=\"77.000122\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"81.000122\"%0A width=\"11.999999\"%0A height=\"0.99999291\"%0A id=\"rect4689\" />%0A <rect%0A id=\"rect4761-1\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"101\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-0\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"105\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-7\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"109\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1\"%0A height=\"1.9999945\"%0A width=\"12\"%0A y=\"125\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"137\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"129\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4-3\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"133\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,100.0254 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,100.5991 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1452 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533865,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550756,0 6.710442,-2.4113 7.650391,-5.9414 0.939949,-3.5301 -0.618463,-7.2736 -3.710938,-9.0703 -1.159678,-0.6738 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,99.9629 c -1.270084,0.039 -2.541493,0.3887 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5402 -3.710937,9.0703 0.939949,3.5301 4.09768,5.9414 7.648437,5.9414 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4056 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,100 0,2 -2.4999996,0 L 12,107 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A id=\"path3055-0-77\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9850574,108.015 14.0298856,-0.03\"%0A id=\"path5244-5-0-5\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9849874,132.015 14.0298866,-0.03\"%0A id=\"path5244-5-0-5-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,123.9629 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,124.5366 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1453 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533864,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550757,0 6.710442,-2.4093 7.650391,-5.9394 0.939949,-3.5301 -0.618463,-7.2756 -3.710938,-9.0723 -1.159678,-0.6737 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138-12\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,123.9629 c -1.270084,0.039 -2.541493,0.3888 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5422 -3.710937,9.0723 0.939949,3.5301 4.09768,5.9394 7.648437,5.9394 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4055 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1-3\" />%0A <path%0A id=\"path6191\"%0A d=\"m 10.5,116 0,-2 -2.4999996,0 L 12,109 l 4,5 -2.5,0 0,2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,129 0,-2 -2.4999996,0 L 12,122 l 4,5 -2.5,0 0,2 -3,0 z\"%0A id=\"path6193\" />%0A <path%0A id=\"path6195\"%0A d=\"m 10.5,135 0,2 -2.4999996,0 L 12,142 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4500\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073242 -3.833708,2.213392 -3.8337072,2.213393 0,-4.426785 0,-4.426784 3.8337082,2.213392 z\"%0A inkscape:transform-center-x=\"-1.2779026\" />%0A <path%0A inkscape:transform-center-x=\"1.277902\"%0A d=\"m -31.500004,60.073242 -3.833708,2.213392 -3.833707,2.213393 0,-4.426785 0,-4.426784 3.833707,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:cx=\"-36.611614\"%0A sodipodi:sides=\"3\"%0A id=\"path4502\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"scale(-1,1)\" />%0A <path%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:sides=\"3\"%0A id=\"path4504\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"matrix(0,1,-1,0,72.0074,71.7877)\"%0A inkscape:transform-center-y=\"1.2779029\" />%0A <path%0A inkscape:transform-center-y=\"-1.2779026\"%0A transform=\"matrix(0,-1,-1,0,96,96)\"%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4506\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615-5\"%0A d=\"m 171.82574,65.174193 16.34854,0 -8.17427,-13.348454 z\"%0A style=\"fill:%23fbb917;fill-opacity:1;fill-rule:evenodd;stroke:%23fbb917;stroke-width:1.65161395;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,55 0,6 2,0 0,-6\"%0A id=\"path4300\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,62 0,2 2,0 0,-2\"%0A id=\"path4300-6\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:%23ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:0.8\"%0A d=\"M 99.994369,113.0221 102,114.98353 l 7,-6.9558 3,0.97227 2,-1 1,-2 0,-3 -3,3 -3,-3 3,-3 -3,0 -2,1 -1,2 0.99437,3.0221 z\"%0A id=\"path4268\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccccccccc\" />%0A <rect%0A id=\"rect4175-3-5\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"220\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <path%0A style=\"fill:%23ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 234,6 0,2 -5,5 0,5 -2,0 0,-5 -5,-5 0,-2\"%0A id=\"path3546\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <g%0A transform=\"matrix(1.3333328,0,0,-1.5999992,-139.9999,127.19999)\"%0A id=\"g4383-6\">%0A <rect%0A id=\"rect4385-2\"%0A height=\"1.2499905\"%0A width=\"5.9999924\"%0A y=\"12.625005\"%0A x=\"198.00002\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"15.125007\"%0A width=\"7.4999928\"%0A height=\"1.2499949\"%0A id=\"rect4387-9\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"7.6250024\"%0A width=\"2.9999909\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"10.125004\"%0A width=\"4.4999919\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-9\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 207.00001,16.375004 0,-5.625005 -2.25,0 3,-3.1250014 3,3.1250014 -2.25,0 0,5.625005 -1.5,0\"%0A id=\"path4402\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A </g>%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 164,100 0,3 -6,6 0,7 -4,0 0,-7 -6,-6 0,-3\"%0A id=\"path3546-2-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"28\"%0A x=\"4\" />%0A <path%0A sodipodi:nodetypes=\"ccccccccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4402-5-7\"%0A d=\"m 15,41 0,-7 -4,0 0,3 -5,-4 5,-4 0,3 6,0 0,9\"%0A style=\"fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\" />%0A</svg>%0A');background-position:-25px 0;background-color:transparent}::ng-deep .jsoneditor-anchor{cursor:pointer}::ng-deep .jsoneditor-anchor .picker_wrapper.popup.popup_bottom{top:28px;left:-10px}::ng-deep .fadein{-webkit-animation:fadein .3s;animation:fadein .3s;-moz-animation:fadein .3s;-o-animation:fadein .3s}@keyframes fadein{0%{opacity:0}to{opacity:1}}::ng-deep .jsoneditor-modal input[type=search].selectr-input{border:1px solid #d3d3d3;width:calc(100% - 4px);margin:2px;padding:4px;box-sizing:border-box}::ng-deep .jsoneditor-modal button.selectr-input-clear{right:8px}::ng-deep .jsoneditor-menu{width:100%;height:35px;padding:2px;margin:0;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;color:#fff;background-color:#3883fa;border-bottom:1px solid #3883fa}::ng-deep .jsoneditor-menu>.jsoneditor-modes>button,::ng-deep .jsoneditor-menu>button{width:26px;height:26px;margin:2px;padding:0;border-radius:2px;border:1px solid transparent;background-color:transparent;background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A width=\"240\"%0A height=\"144\"%0A id=\"svg4136\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"jsoneditor-icons.svg\">%0A <title%0A id=\"title6512\">JSON Editor Icons</title>%0A <metadata%0A id=\"metadata4148\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title>JSON Editor Icons</dc:title>%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4146\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ff63ff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1026\"%0A id=\"namedview4144\"%0A showgrid=\"true\"%0A inkscape:zoom=\"4\"%0A inkscape:cx=\"13.229181\"%0A inkscape:cy=\"119.82429\"%0A inkscape:window-x=\"0\"%0A inkscape:window-y=\"0\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4136\"%0A showguides=\"false\"%0A borderlayer=\"false\"%0A inkscape:showpageshadow=\"true\"%0A showborder=\"true\">%0A <inkscape:grid%0A type=\"xygrid\"%0A id=\"grid4640\"%0A empspacing=\"24\" />%0A </sodipodi:namedview>%0A <!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"4\" />%0A <rect%0A id=\"svg_1-7\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"28.000006\"%0A style=\"fill:%23ec3f29;fill-opacity:0.94117647;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A x=\"52.000004\"%0A y=\"3.999995\"%0A width=\"16\"%0A height=\"16\"%0A id=\"rect4165\" />%0A <rect%0A id=\"rect4175\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.9999852\"%0A x=\"172.00002\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4175-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"196\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <g%0A id=\"g4299\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <g%0A id=\"g4299-3\"%0A transform=\"matrix(0.70710678,-0.70710678,0.70710678,0.70710678,19.029435,12.000001)\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1-0\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1-9\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <rect%0A id=\"svg_1-7-5\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"7.0000048\"%0A x=\"55.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A x=\"58\"%0A y=\"10.00001\"%0A width=\"6.9999909\"%0A height=\"6.9999905\"%0A id=\"rect4354\" />%0A <rect%0A id=\"svg_1-7-5-7\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"10.000005\"%0A x=\"58.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%233c80df;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647\" />%0A <g%0A id=\"g4378\">%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"10.999999\"%0A width=\"7.9999909\"%0A height=\"1.9999965\"%0A id=\"svg_1-7-5-3\" />%0A <rect%0A id=\"rect4374\"%0A height=\"1.9999946\"%0A width=\"11.999995\"%0A y=\"7.0000005\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A id=\"rect4376\"%0A height=\"1.9999995\"%0A width=\"3.9999928\"%0A y=\"14.999996\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A </g>%0A <g%0A transform=\"matrix(1,0,0,-1,-23.999995,23.999995)\"%0A id=\"g4383\">%0A <rect%0A id=\"rect4385\"%0A height=\"1.9999965\"%0A width=\"7.9999909\"%0A y=\"10.999999\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"7.0000005\"%0A width=\"11.999995\"%0A height=\"1.9999946\"%0A id=\"rect4387\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"14.999996\"%0A width=\"3.9999928\"%0A height=\"1.9999995\"%0A id=\"rect4389\" />%0A </g>%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-4\"%0A width=\"16\"%0A height=\"16\"%0A x=\"76\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 85.10447,6.0157384 -0.0156,1.4063 c 3.02669,-0.2402 0.33008,3.6507996 2.48438,4.5780996 -2.18694,1.0938 0.49191,4.9069 -2.45313,4.5781 l -0.0156,1.4219 c 5.70828,0.559 1.03264,-5.1005 4.70313,-5.2656 l 0,-1.4063 c -3.61303,-0.027 1.11893,-5.7069996 -4.70313,-5.3124996 z\"%0A id=\"path4351\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 82.78125,5.9984384 0.0156,1.4063 c -3.02668,-0.2402 -0.33007,3.6506996 -2.48437,4.5780996 2.18694,1.0938 -0.49192,4.9069 2.45312,4.5781 l 0.0156,1.4219 c -5.70827,0.559 -1.03263,-5.1004 -4.70312,-5.2656 l 0,-1.4063 c 3.61303,-0.027 -1.11894,-5.7070996 4.70312,-5.3124996 z\"%0A id=\"path4351-9\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-25\"%0A width=\"16\"%0A height=\"16\"%0A x=\"100\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 103.719,5.6719384 0,12.7187996 3.03125,0 0,-1.5313 -1.34375,0 0,-9.6249996 1.375,0 0,-1.5625 z\"%0A id=\"path2987\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 112.2185,5.6721984 0,12.7187996 -3.03125,0 0,-1.5313 1.34375,0 0,-9.6249996 -1.375,0 0,-1.5625 z\"%0A id=\"path2987-1\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-73\"%0A width=\"16\"%0A height=\"16\"%0A x=\"124\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 126.2824,17.602938 1.78957,0 1.14143,-2.8641 5.65364,0 1.14856,2.8641 1.76565,0 -4.78687,-11.1610996 -1.91903,0 z\"%0A id=\"path3780\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccc\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A d=\"m 129.72704,13.478838 4.60852,0.01 -2.30426,-5.5497996 z\"%0A id=\"path3782\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-35\"%0A width=\"16\"%0A height=\"16\"%0A x=\"148\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 156.47655,5.8917384 0,2.1797 0.46093,2.3983996 1.82813,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 152.51561,5.8906384 0,2.1797 0.46094,2.3983996 1.82812,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <rect%0A id=\"svg_1-7-2\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"64\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"svg_1-7-2-2\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"52\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"52\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4561\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"80.000008\"%0A y=\"58\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4563\" />%0A <rect%0A id=\"rect4565\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"58\"%0A x=\"85.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4567\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"64\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"64\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4569\" />%0A <circle%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4571\"%0A cx=\"110.06081\"%0A cy=\"57.939209\"%0A r=\"4.7438836\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"116.64566\"%0A y=\"-31.79752\"%0A width=\"4.229713\"%0A height=\"6.4053884\"%0A id=\"rect4563-2\"%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 125,56 138.77027,56.095 132,64 Z\"%0A id=\"path4613\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615\"%0A d=\"M 149,64 162.77027,63.905 156,56 Z\"%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"54\"%0A y=\"53\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4638\" />%0A <rect%0A id=\"svg_1-7-2-24\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-56\"%0A x=\"53\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"53\"%0A y=\"-66\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4657\" />%0A <rect%0A id=\"rect4659\"%0A height=\"0.99999291\"%0A width=\"11.999999\"%0A y=\"57\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"88.000122\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4661\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"76.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4663\" />%0A <rect%0A id=\"rect4665\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"76.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A id=\"rect4667\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"82.000122\"%0A x=\"80.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"85.000008\"%0A y=\"82.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4669\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"88.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4671\" />%0A <rect%0A id=\"rect4673\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"88.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <circle%0A r=\"4.7438836\"%0A cy=\"81.939331\"%0A cx=\"110.06081\"%0A id=\"circle4675\"%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%23d3d3d3;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\"%0A id=\"rect4677\"%0A height=\"6.4053884\"%0A width=\"4.229713\"%0A y=\"-14.826816\"%0A x=\"133.6163\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:%23d3d3d3;stroke-width:0;stroke-opacity:1\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4679\"%0A d=\"m 125,80.000005 13.77027,0.09499 L 132,87.999992 Z\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 149,88.0002 162.77027,87.9052 156,80.0002 Z\"%0A id=\"path4681\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <rect%0A id=\"rect4683\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"77.000122\"%0A x=\"54\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"77.000122\"%0A y=\"-56\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4685\" />%0A <rect%0A id=\"rect4687\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-66\"%0A x=\"77.000122\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"81.000122\"%0A width=\"11.999999\"%0A height=\"0.99999291\"%0A id=\"rect4689\" />%0A <rect%0A id=\"rect4761-1\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"101\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-0\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"105\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-7\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"109\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1\"%0A height=\"1.9999945\"%0A width=\"12\"%0A y=\"125\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"137\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"129\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4-3\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"133\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,100.0254 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,100.5991 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1452 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533865,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550756,0 6.710442,-2.4113 7.650391,-5.9414 0.939949,-3.5301 -0.618463,-7.2736 -3.710938,-9.0703 -1.159678,-0.6738 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,99.9629 c -1.270084,0.039 -2.541493,0.3887 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5402 -3.710937,9.0703 0.939949,3.5301 4.09768,5.9414 7.648437,5.9414 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4056 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,100 0,2 -2.4999996,0 L 12,107 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A id=\"path3055-0-77\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9850574,108.015 14.0298856,-0.03\"%0A id=\"path5244-5-0-5\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9849874,132.015 14.0298866,-0.03\"%0A id=\"path5244-5-0-5-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,123.9629 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,124.5366 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1453 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533864,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550757,0 6.710442,-2.4093 7.650391,-5.9394 0.939949,-3.5301 -0.618463,-7.2756 -3.710938,-9.0723 -1.159678,-0.6737 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138-12\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,123.9629 c -1.270084,0.039 -2.541493,0.3888 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5422 -3.710937,9.0723 0.939949,3.5301 4.09768,5.9394 7.648437,5.9394 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4055 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1-3\" />%0A <path%0A id=\"path6191\"%0A d=\"m 10.5,116 0,-2 -2.4999996,0 L 12,109 l 4,5 -2.5,0 0,2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,129 0,-2 -2.4999996,0 L 12,122 l 4,5 -2.5,0 0,2 -3,0 z\"%0A id=\"path6193\" />%0A <path%0A id=\"path6195\"%0A d=\"m 10.5,135 0,2 -2.4999996,0 L 12,142 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4500\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073242 -3.833708,2.213392 -3.8337072,2.213393 0,-4.426785 0,-4.426784 3.8337082,2.213392 z\"%0A inkscape:transform-center-x=\"-1.2779026\" />%0A <path%0A inkscape:transform-center-x=\"1.277902\"%0A d=\"m -31.500004,60.073242 -3.833708,2.213392 -3.833707,2.213393 0,-4.426785 0,-4.426784 3.833707,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:cx=\"-36.611614\"%0A sodipodi:sides=\"3\"%0A id=\"path4502\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"scale(-1,1)\" />%0A <path%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:sides=\"3\"%0A id=\"path4504\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"matrix(0,1,-1,0,72.0074,71.7877)\"%0A inkscape:transform-center-y=\"1.2779029\" />%0A <path%0A inkscape:transform-center-y=\"-1.2779026\"%0A transform=\"matrix(0,-1,-1,0,96,96)\"%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4506\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615-5\"%0A d=\"m 171.82574,65.174193 16.34854,0 -8.17427,-13.348454 z\"%0A style=\"fill:%23fbb917;fill-opacity:1;fill-rule:evenodd;stroke:%23fbb917;stroke-width:1.65161395;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,55 0,6 2,0 0,-6\"%0A id=\"path4300\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,62 0,2 2,0 0,-2\"%0A id=\"path4300-6\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:%23ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:0.8\"%0A d=\"M 99.994369,113.0221 102,114.98353 l 7,-6.9558 3,0.97227 2,-1 1,-2 0,-3 -3,3 -3,-3 3,-3 -3,0 -2,1 -1,2 0.99437,3.0221 z\"%0A id=\"path4268\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccccccccc\" />%0A <rect%0A id=\"rect4175-3-5\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"220\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <path%0A style=\"fill:%23ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 234,6 0,2 -5,5 0,5 -2,0 0,-5 -5,-5 0,-2\"%0A id=\"path3546\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <g%0A transform=\"matrix(1.3333328,0,0,-1.5999992,-139.9999,127.19999)\"%0A id=\"g4383-6\">%0A <rect%0A id=\"rect4385-2\"%0A height=\"1.2499905\"%0A width=\"5.9999924\"%0A y=\"12.625005\"%0A x=\"198.00002\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"15.125007\"%0A width=\"7.4999928\"%0A height=\"1.2499949\"%0A id=\"rect4387-9\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"7.6250024\"%0A width=\"2.9999909\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"10.125004\"%0A width=\"4.4999919\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-9\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 207.00001,16.375004 0,-5.625005 -2.25,0 3,-3.1250014 3,3.1250014 -2.25,0 0,5.625005 -1.5,0\"%0A id=\"path4402\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A </g>%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 164,100 0,3 -6,6 0,7 -4,0 0,-7 -6,-6 0,-3\"%0A id=\"path3546-2-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"28\"%0A x=\"4\" />%0A <path%0A sodipodi:nodetypes=\"ccccccccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4402-5-7\"%0A d=\"m 15,41 0,-7 -4,0 0,3 -5,-4 5,-4 0,3 6,0 0,9\"%0A style=\"fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\" />%0A</svg>%0A');color:#fff;opacity:.8;font-family:arial,sans-serif;font-size:14px;float:left}::ng-deep .jsoneditor-menu>.jsoneditor-modes>button:hover,::ng-deep .jsoneditor-menu>button:hover{background-color:#fff3;border:1px solid rgba(255,255,255,.4)}::ng-deep .jsoneditor-menu>.jsoneditor-modes>button:active,::ng-deep .jsoneditor-menu>.jsoneditor-modes>button:focus,::ng-deep .jsoneditor-menu>button:active,::ng-deep .jsoneditor-menu>button:focus{background-color:#ffffff4d}::ng-deep .jsoneditor-menu>.jsoneditor-modes>button:disabled,::ng-deep .jsoneditor-menu>button:disabled{opacity:.5;background-color:transparent;border:none}::ng-deep .jsoneditor-menu>button.jsoneditor-collapse-all{background-position:0 -96px}::ng-deep .jsoneditor-menu>button.jsoneditor-expand-all{background-position:0 -120px}::ng-deep .jsoneditor-menu>button.jsoneditor-sort{background-position:-120px -96px}::ng-deep .jsoneditor-menu>button.jsoneditor-transform{background-position:-144px -96px}::ng-deep .jsoneditor.jsoneditor-mode-form>.jsoneditor-menu>button.jsoneditor-sort,::ng-deep .jsoneditor.jsoneditor-mode-form>.jsoneditor-menu>button.jsoneditor-transform,::ng-deep .jsoneditor.jsoneditor-mode-view>.jsoneditor-menu>button.jsoneditor-sort,::ng-deep .jsoneditor.jsoneditor-mode-view>.jsoneditor-menu>button.jsoneditor-transform{display:none}::ng-deep .jsoneditor-menu>button.jsoneditor-undo{background-position:-24px -96px}::ng-deep .jsoneditor-menu>button.jsoneditor-undo:disabled{background-position:-24px -120px}::ng-deep .jsoneditor-menu>button.jsoneditor-redo{background-position:-48px -96px}::ng-deep .jsoneditor-menu>button.jsoneditor-redo:disabled{background-position:-48px -120px}::ng-deep .jsoneditor-menu>button.jsoneditor-compact{background-position:-72px -96px}::ng-deep .jsoneditor-menu>button.jsoneditor-format{background-position:-72px -120px}::ng-deep .jsoneditor-menu>button.jsoneditor-repair{background-position:-96px -96px}::ng-deep .jsoneditor-menu>.jsoneditor-modes{display:inline-block;float:left}::ng-deep .jsoneditor-menu>.jsoneditor-modes>button{background-image:none;width:auto;padding-left:6px;padding-right:6px}::ng-deep .jsoneditor-menu>.jsoneditor-modes>button.jsoneditor-separator,::ng-deep .jsoneditor-menu>button.jsoneditor-separator{margin-left:10px}::ng-deep .jsoneditor-menu a{font-family:arial,sans-serif;font-size:14px;color:#fff;opacity:.8;vertical-align:middle}::ng-deep .jsoneditor-menu a:hover{opacity:1}::ng-deep .jsoneditor-menu a.jsoneditor-poweredBy{font-size:8pt;position:absolute;right:0;top:0;padding:10px}::ng-deep .jsoneditor-navigation-bar{width:100%;height:26px;line-height:26px;padding:0;margin:0;border-bottom:1px solid #d3d3d3;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;color:gray;background-color:#ebebeb;overflow:hidden;font-family:arial,sans-serif;font-size:14px}::ng-deep .jsoneditor-search{font-family:arial,sans-serif;position:absolute;right:4px;top:4px;border-collapse:collapse;border-spacing:0;display:flex}::ng-deep .jsoneditor-search input{color:#1a1a1a;width:120px;border:none;outline:0;margin:1px;line-height:20px;font-family:arial,sans-serif}::ng-deep .jsoneditor-search button{width:16px;height:24px;padding:0;margin:0;border:none;background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A width=\"240\"%0A height=\"144\"%0A id=\"svg4136\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"jsoneditor-icons.svg\">%0A <title%0A id=\"title6512\">JSON Editor Icons</title>%0A <metadata%0A id=\"metadata4148\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title>JSON Editor Icons</dc:title>%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4146\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ff63ff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1026\"%0A id=\"namedview4144\"%0A showgrid=\"true\"%0A inkscape:zoom=\"4\"%0A inkscape:cx=\"13.229181\"%0A inkscape:cy=\"119.82429\"%0A inkscape:window-x=\"0\"%0A inkscape:window-y=\"0\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4136\"%0A showguides=\"false\"%0A borderlayer=\"false\"%0A inkscape:showpageshadow=\"true\"%0A showborder=\"true\">%0A <inkscape:grid%0A type=\"xygrid\"%0A id=\"grid4640\"%0A empspacing=\"24\" />%0A </sodipodi:namedview>%0A <!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"4\" />%0A <rect%0A id=\"svg_1-7\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"28.000006\"%0A style=\"fill:%23ec3f29;fill-opacity:0.94117647;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A x=\"52.000004\"%0A y=\"3.999995\"%0A width=\"16\"%0A height=\"16\"%0A id=\"rect4165\" />%0A <rect%0A id=\"rect4175\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.9999852\"%0A x=\"172.00002\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4175-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"196\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <g%0A id=\"g4299\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <g%0A id=\"g4299-3\"%0A transform=\"matrix(0.70710678,-0.70710678,0.70710678,0.70710678,19.029435,12.000001)\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1-0\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1-9\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <rect%0A id=\"svg_1-7-5\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"7.0000048\"%0A x=\"55.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A x=\"58\"%0A y=\"10.00001\"%0A width=\"6.9999909\"%0A height=\"6.9999905\"%0A id=\"rect4354\" />%0A <rect%0A id=\"svg_1-7-5-7\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"10.000005\"%0A x=\"58.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%233c80df;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647\" />%0A <g%0A id=\"g4378\">%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"10.999999\"%0A width=\"7.9999909\"%0A height=\"1.9999965\"%0A id=\"svg_1-7-5-3\" />%0A <rect%0A id=\"rect4374\"%0A height=\"1.9999946\"%0A width=\"11.999995\"%0A y=\"7.0000005\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A id=\"rect4376\"%0A height=\"1.9999995\"%0A width=\"3.9999928\"%0A y=\"14.999996\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A </g>%0A <g%0A transform=\"matrix(1,0,0,-1,-23.999995,23.999995)\"%0A id=\"g4383\">%0A <rect%0A id=\"rect4385\"%0A height=\"1.9999965\"%0A width=\"7.9999909\"%0A y=\"10.999999\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"7.0000005\"%0A width=\"11.999995\"%0A height=\"1.9999946\"%0A id=\"rect4387\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"14.999996\"%0A width=\"3.9999928\"%0A height=\"1.9999995\"%0A id=\"rect4389\" />%0A </g>%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-4\"%0A width=\"16\"%0A height=\"16\"%0A x=\"76\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 85.10447,6.0157384 -0.0156,1.4063 c 3.02669,-0.2402 0.33008,3.6507996 2.48438,4.5780996 -2.18694,1.0938 0.49191,4.9069 -2.45313,4.5781 l -0.0156,1.4219 c 5.70828,0.559 1.03264,-5.1005 4.70313,-5.2656 l 0,-1.4063 c -3.61303,-0.027 1.11893,-5.7069996 -4.70313,-5.3124996 z\"%0A id=\"path4351\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 82.78125,5.9984384 0.0156,1.4063 c -3.02668,-0.2402 -0.33007,3.6506996 -2.48437,4.5780996 2.18694,1.0938 -0.49192,4.9069 2.45312,4.5781 l 0.0156,1.4219 c -5.70827,0.559 -1.03263,-5.1004 -4.70312,-5.2656 l 0,-1.4063 c 3.61303,-0.027 -1.11894,-5.7070996 4.70312,-5.3124996 z\"%0A id=\"path4351-9\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-25\"%0A width=\"16\"%0A height=\"16\"%0A x=\"100\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 103.719,5.6719384 0,12.7187996 3.03125,0 0,-1.5313 -1.34375,0 0,-9.6249996 1.375,0 0,-1.5625 z\"%0A id=\"path2987\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 112.2185,5.6721984 0,12.7187996 -3.03125,0 0,-1.5313 1.34375,0 0,-9.6249996 -1.375,0 0,-1.5625 z\"%0A id=\"path2987-1\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-73\"%0A width=\"16\"%0A height=\"16\"%0A x=\"124\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 126.2824,17.602938 1.78957,0 1.14143,-2.8641 5.65364,0 1.14856,2.8641 1.76565,0 -4.78687,-11.1610996 -1.91903,0 z\"%0A id=\"path3780\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccc\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A d=\"m 129.72704,13.478838 4.60852,0.01 -2.30426,-5.5497996 z\"%0A id=\"path3782\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-35\"%0A width=\"16\"%0A height=\"16\"%0A x=\"148\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 156.47655,5.8917384 0,2.1797 0.46093,2.3983996 1.82813,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 152.51561,5.8906384 0,2.1797 0.46094,2.3983996 1.82812,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <rect%0A id=\"svg_1-7-2\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"64\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"svg_1-7-2-2\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"52\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"52\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4561\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"80.000008\"%0A y=\"58\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4563\" />%0A <rect%0A id=\"rect4565\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"58\"%0A x=\"85.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4567\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"64\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"64\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4569\" />%0A <circle%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4571\"%0A cx=\"110.06081\"%0A cy=\"57.939209\"%0A r=\"4.7438836\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"116.64566\"%0A y=\"-31.79752\"%0A width=\"4.229713\"%0A height=\"6.4053884\"%0A id=\"rect4563-2\"%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 125,56 138.77027,56.095 132,64 Z\"%0A id=\"path4613\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615\"%0A d=\"M 149,64 162.77027,63.905 156,56 Z\"%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"54\"%0A y=\"53\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4638\" />%0A <rect%0A id=\"svg_1-7-2-24\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-56\"%0A x=\"53\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"53\"%0A y=\"-66\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4657\" />%0A <rect%0A id=\"rect4659\"%0A height=\"0.99999291\"%0A width=\"11.999999\"%0A y=\"57\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"88.000122\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4661\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"76.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4663\" />%0A <rect%0A id=\"rect4665\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"76.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A id=\"rect4667\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"82.000122\"%0A x=\"80.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"85.000008\"%0A y=\"82.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4669\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"88.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4671\" />%0A <rect%0A id=\"rect4673\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"88.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <circle%0A r=\"4.7438836\"%0A cy=\"81.939331\"%0A cx=\"110.06081\"%0A id=\"circle4675\"%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%23d3d3d3;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\"%0A id=\"rect4677\"%0A height=\"6.4053884\"%0A width=\"4.229713\"%0A y=\"-14.826816\"%0A x=\"133.6163\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:%23d3d3d3;stroke-width:0;stroke-opacity:1\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4679\"%0A d=\"m 125,80.000005 13.77027,0.09499 L 132,87.999992 Z\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 149,88.0002 162.77027,87.9052 156,80.0002 Z\"%0A id=\"path4681\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <rect%0A id=\"rect4683\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"77.000122\"%0A x=\"54\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"77.000122\"%0A y=\"-56\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4685\" />%0A <rect%0A id=\"rect4687\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-66\"%0A x=\"77.000122\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"81.000122\"%0A width=\"11.999999\"%0A height=\"0.99999291\"%0A id=\"rect4689\" />%0A <rect%0A id=\"rect4761-1\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"101\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-0\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"105\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-7\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"109\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1\"%0A height=\"1.9999945\"%0A width=\"12\"%0A y=\"125\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"137\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"129\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4-3\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"133\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,100.0254 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,100.5991 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1452 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533865,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550756,0 6.710442,-2.4113 7.650391,-5.9414 0.939949,-3.5301 -0.618463,-7.2736 -3.710938,-9.0703 -1.159678,-0.6738 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,99.9629 c -1.270084,0.039 -2.541493,0.3887 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5402 -3.710937,9.0703 0.939949,3.5301 4.09768,5.9414 7.648437,5.9414 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4056 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,100 0,2 -2.4999996,0 L 12,107 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A id=\"path3055-0-77\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9850574,108.015 14.0298856,-0.03\"%0A id=\"path5244-5-0-5\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9849874,132.015 14.0298866,-0.03\"%0A id=\"path5244-5-0-5-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,123.9629 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,124.5366 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1453 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533864,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550757,0 6.710442,-2.4093 7.650391,-5.9394 0.939949,-3.5301 -0.618463,-7.2756 -3.710938,-9.0723 -1.159678,-0.6737 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138-12\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,123.9629 c -1.270084,0.039 -2.541493,0.3888 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5422 -3.710937,9.0723 0.939949,3.5301 4.09768,5.9394 7.648437,5.9394 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4055 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1-3\" />%0A <path%0A id=\"path6191\"%0A d=\"m 10.5,116 0,-2 -2.4999996,0 L 12,109 l 4,5 -2.5,0 0,2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,129 0,-2 -2.4999996,0 L 12,122 l 4,5 -2.5,0 0,2 -3,0 z\"%0A id=\"path6193\" />%0A <path%0A id=\"path6195\"%0A d=\"m 10.5,135 0,2 -2.4999996,0 L 12,142 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4500\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073242 -3.833708,2.213392 -3.8337072,2.213393 0,-4.426785 0,-4.426784 3.8337082,2.213392 z\"%0A inkscape:transform-center-x=\"-1.2779026\" />%0A <path%0A inkscape:transform-center-x=\"1.277902\"%0A d=\"m -31.500004,60.073242 -3.833708,2.213392 -3.833707,2.213393 0,-4.426785 0,-4.426784 3.833707,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:cx=\"-36.611614\"%0A sodipodi:sides=\"3\"%0A id=\"path4502\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"scale(-1,1)\" />%0A <path%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:sides=\"3\"%0A id=\"path4504\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"matrix(0,1,-1,0,72.0074,71.7877)\"%0A inkscape:transform-center-y=\"1.2779029\" />%0A <path%0A inkscape:transform-center-y=\"-1.2779026\"%0A transform=\"matrix(0,-1,-1,0,96,96)\"%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4506\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615-5\"%0A d=\"m 171.82574,65.174193 16.34854,0 -8.17427,-13.348454 z\"%0A style=\"fill:%23fbb917;fill-opacity:1;fill-rule:evenodd;stroke:%23fbb917;stroke-width:1.65161395;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,55 0,6 2,0 0,-6\"%0A id=\"path4300\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,62 0,2 2,0 0,-2\"%0A id=\"path4300-6\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:%23ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:0.8\"%0A d=\"M 99.994369,113.0221 102,114.98353 l 7,-6.9558 3,0.97227 2,-1 1,-2 0,-3 -3,3 -3,-3 3,-3 -3,0 -2,1 -1,2 0.99437,3.0221 z\"%0A id=\"path4268\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccccccccc\" />%0A <rect%0A id=\"rect4175-3-5\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"220\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <path%0A style=\"fill:%23ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 234,6 0,2 -5,5 0,5 -2,0 0,-5 -5,-5 0,-2\"%0A id=\"path3546\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <g%0A transform=\"matrix(1.3333328,0,0,-1.5999992,-139.9999,127.19999)\"%0A id=\"g4383-6\">%0A <rect%0A id=\"rect4385-2\"%0A height=\"1.2499905\"%0A width=\"5.9999924\"%0A y=\"12.625005\"%0A x=\"198.00002\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"15.125007\"%0A width=\"7.4999928\"%0A height=\"1.2499949\"%0A id=\"rect4387-9\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"7.6250024\"%0A width=\"2.9999909\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"10.125004\"%0A width=\"4.4999919\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-9\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 207.00001,16.375004 0,-5.625005 -2.25,0 3,-3.1250014 3,3.1250014 -2.25,0 0,5.625005 -1.5,0\"%0A id=\"path4402\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A </g>%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 164,100 0,3 -6,6 0,7 -4,0 0,-7 -6,-6 0,-3\"%0A id=\"path3546-2-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"28\"%0A x=\"4\" />%0A <path%0A sodipodi:nodetypes=\"ccccccccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4402-5-7\"%0A d=\"m 15,41 0,-7 -4,0 0,3 -5,-4 5,-4 0,3 6,0 0,9\"%0A style=\"fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\" />%0A</svg>%0A');vertical-align:top}::ng-deep .jsoneditor-search button:hover{background-color:transparent}::ng-deep .jsoneditor-search button.jsoneditor-refresh{width:18px;background-position:-99px -73px}::ng-deep .jsoneditor-search button.jsoneditor-next{cursor:pointer;background-position:-124px -73px}::ng-deep .jsoneditor-search button.jsoneditor-next:hover{background-position:-124px -49px}::ng-deep .jsoneditor-search button.jsoneditor-previous{cursor:pointer;background-position:-148px -73px;margin-right:2px}::ng-deep .jsoneditor-search button.jsoneditor-previous:hover{background-position:-148px -49px}::ng-deep .jsoneditor-results{font-family:arial,sans-serif;color:#fff;padding-right:5px;line-height:26px}::ng-deep .jsoneditor-frame{border:1px solid transparent;background-color:#fff;padding:0 2px;margin:0}::ng-deep .jsoneditor-statusbar{line-height:26px;height:26px;color:gray;background-color:#ebebeb;border-top:1px solid #d3d3d3;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:14px}::ng-deep .jsoneditor-statusbar>.jsoneditor-curserinfo-val{margin-right:12px}::ng-deep .jsoneditor-statusbar>.jsoneditor-curserinfo-count{margin-left:4px}::ng-deep .jsoneditor-statusbar>.jsoneditor-validation-error-icon{float:right;width:24px;height:24px;padding:0;margin-top:1px;background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A width=\"240\"%0A height=\"144\"%0A id=\"svg4136\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"jsoneditor-icons.svg\">%0A <title%0A id=\"title6512\">JSON Editor Icons</title>%0A <metadata%0A id=\"metadata4148\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title>JSON Editor Icons</dc:title>%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4146\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ff63ff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1026\"%0A id=\"namedview4144\"%0A showgrid=\"true\"%0A inkscape:zoom=\"4\"%0A inkscape:cx=\"13.229181\"%0A inkscape:cy=\"119.82429\"%0A inkscape:window-x=\"0\"%0A inkscape:window-y=\"0\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4136\"%0A showguides=\"false\"%0A borderlayer=\"false\"%0A inkscape:showpageshadow=\"true\"%0A showborder=\"true\">%0A <inkscape:grid%0A type=\"xygrid\"%0A id=\"grid4640\"%0A empspacing=\"24\" />%0A </sodipodi:namedview>%0A <!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"4\" />%0A <rect%0A id=\"svg_1-7\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"28.000006\"%0A style=\"fill:%23ec3f29;fill-opacity:0.94117647;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A x=\"52.000004\"%0A y=\"3.999995\"%0A width=\"16\"%0A height=\"16\"%0A id=\"rect4165\" />%0A <rect%0A id=\"rect4175\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.9999852\"%0A x=\"172.00002\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4175-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"196\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <g%0A id=\"g4299\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <g%0A id=\"g4299-3\"%0A transform=\"matrix(0.70710678,-0.70710678,0.70710678,0.70710678,19.029435,12.000001)\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1-0\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1-9\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <rect%0A id=\"svg_1-7-5\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"7.0000048\"%0A x=\"55.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A x=\"58\"%0A y=\"10.00001\"%0A width=\"6.9999909\"%0A height=\"6.9999905\"%0A id=\"rect4354\" />%0A <rect%0A id=\"svg_1-7-5-7\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"10.000005\"%0A x=\"58.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%233c80df;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647\" />%0A <g%0A id=\"g4378\">%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"10.999999\"%0A width=\"7.9999909\"%0A height=\"1.9999965\"%0A id=\"svg_1-7-5-3\" />%0A <rect%0A id=\"rect4374\"%0A height=\"1.9999946\"%0A width=\"11.999995\"%0A y=\"7.0000005\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A id=\"rect4376\"%0A height=\"1.9999995\"%0A width=\"3.9999928\"%0A y=\"14.999996\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A </g>%0A <g%0A transform=\"matrix(1,0,0,-1,-23.999995,23.999995)\"%0A id=\"g4383\">%0A <rect%0A id=\"rect4385\"%0A height=\"1.9999965\"%0A width=\"7.9999909\"%0A y=\"10.999999\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"7.0000005\"%0A width=\"11.999995\"%0A height=\"1.9999946\"%0A id=\"rect4387\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"14.999996\"%0A width=\"3.9999928\"%0A height=\"1.9999995\"%0A id=\"rect4389\" />%0A </g>%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-4\"%0A width=\"16\"%0A height=\"16\"%0A x=\"76\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 85.10447,6.0157384 -0.0156,1.4063 c 3.02669,-0.2402 0.33008,3.6507996 2.48438,4.5780996 -2.18694,1.0938 0.49191,4.9069 -2.45313,4.5781 l -0.0156,1.4219 c 5.70828,0.559 1.03264,-5.1005 4.70313,-5.2656 l 0,-1.4063 c -3.61303,-0.027 1.11893,-5.7069996 -4.70313,-5.3124996 z\"%0A id=\"path4351\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 82.78125,5.9984384 0.0156,1.4063 c -3.02668,-0.2402 -0.33007,3.6506996 -2.48437,4.5780996 2.18694,1.0938 -0.49192,4.9069 2.45312,4.5781 l 0.0156,1.4219 c -5.70827,0.559 -1.03263,-5.1004 -4.70312,-5.2656 l 0,-1.4063 c 3.61303,-0.027 -1.11894,-5.7070996 4.70312,-5.3124996 z\"%0A id=\"path4351-9\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-25\"%0A width=\"16\"%0A height=\"16\"%0A x=\"100\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 103.719,5.6719384 0,12.7187996 3.03125,0 0,-1.5313 -1.34375,0 0,-9.6249996 1.375,0 0,-1.5625 z\"%0A id=\"path2987\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 112.2185,5.6721984 0,12.7187996 -3.03125,0 0,-1.5313 1.34375,0 0,-9.6249996 -1.375,0 0,-1.5625 z\"%0A id=\"path2987-1\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-73\"%0A width=\"16\"%0A height=\"16\"%0A x=\"124\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 126.2824,17.602938 1.78957,0 1.14143,-2.8641 5.65364,0 1.14856,2.8641 1.76565,0 -4.78687,-11.1610996 -1.91903,0 z\"%0A id=\"path3780\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccc\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A d=\"m 129.72704,13.478838 4.60852,0.01 -2.30426,-5.5497996 z\"%0A id=\"path3782\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-35\"%0A width=\"16\"%0A height=\"16\"%0A x=\"148\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 156.47655,5.8917384 0,2.1797 0.46093,2.3983996 1.82813,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 152.51561,5.8906384 0,2.1797 0.46094,2.3983996 1.82812,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <rect%0A id=\"svg_1-7-2\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"64\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"svg_1-7-2-2\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"52\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"52\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4561\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"80.000008\"%0A y=\"58\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4563\" />%0A <rect%0A id=\"rect4565\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"58\"%0A x=\"85.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4567\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"64\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"64\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4569\" />%0A <circle%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4571\"%0A cx=\"110.06081\"%0A cy=\"57.939209\"%0A r=\"4.7438836\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"116.64566\"%0A y=\"-31.79752\"%0A width=\"4.229713\"%0A height=\"6.4053884\"%0A id=\"rect4563-2\"%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 125,56 138.77027,56.095 132,64 Z\"%0A id=\"path4613\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615\"%0A d=\"M 149,64 162.77027,63.905 156,56 Z\"%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"54\"%0A y=\"53\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4638\" />%0A <rect%0A id=\"svg_1-7-2-24\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-56\"%0A x=\"53\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"53\"%0A y=\"-66\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4657\" />%0A <rect%0A id=\"rect4659\"%0A height=\"0.99999291\"%0A width=\"11.999999\"%0A y=\"57\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"88.000122\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4661\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"76.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4663\" />%0A <rect%0A id=\"rect4665\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"76.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A id=\"rect4667\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"82.000122\"%0A x=\"80.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"85.000008\"%0A y=\"82.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4669\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"88.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4671\" />%0A <rect%0A id=\"rect4673\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"88.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <circle%0A r=\"4.7438836\"%0A cy=\"81.939331\"%0A cx=\"110.06081\"%0A id=\"circle4675\"%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%23d3d3d3;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\"%0A id=\"rect4677\"%0A height=\"6.4053884\"%0A width=\"4.229713\"%0A y=\"-14.826816\"%0A x=\"133.6163\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:%23d3d3d3;stroke-width:0;stroke-opacity:1\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4679\"%0A d=\"m 125,80.000005 13.77027,0.09499 L 132,87.999992 Z\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 149,88.0002 162.77027,87.9052 156,80.0002 Z\"%0A id=\"path4681\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <rect%0A id=\"rect4683\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"77.000122\"%0A x=\"54\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"77.000122\"%0A y=\"-56\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4685\" />%0A <rect%0A id=\"rect4687\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-66\"%0A x=\"77.000122\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"81.000122\"%0A width=\"11.999999\"%0A height=\"0.99999291\"%0A id=\"rect4689\" />%0A <rect%0A id=\"rect4761-1\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"101\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-0\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"105\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-7\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"109\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1\"%0A height=\"1.9999945\"%0A width=\"12\"%0A y=\"125\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"137\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"129\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4-3\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"133\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,100.0254 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,100.5991 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1452 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533865,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550756,0 6.710442,-2.4113 7.650391,-5.9414 0.939949,-3.5301 -0.618463,-7.2736 -3.710938,-9.0703 -1.159678,-0.6738 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,99.9629 c -1.270084,0.039 -2.541493,0.3887 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5402 -3.710937,9.0703 0.939949,3.5301 4.09768,5.9414 7.648437,5.9414 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4056 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,100 0,2 -2.4999996,0 L 12,107 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A id=\"path3055-0-77\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9850574,108.015 14.0298856,-0.03\"%0A id=\"path5244-5-0-5\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9849874,132.015 14.0298866,-0.03\"%0A id=\"path5244-5-0-5-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,123.9629 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,124.5366 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1453 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533864,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550757,0 6.710442,-2.4093 7.650391,-5.9394 0.939949,-3.5301 -0.618463,-7.2756 -3.710938,-9.0723 -1.159678,-0.6737 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138-12\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,123.9629 c -1.270084,0.039 -2.541493,0.3888 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5422 -3.710937,9.0723 0.939949,3.5301 4.09768,5.9394 7.648437,5.9394 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4055 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1-3\" />%0A <path%0A id=\"path6191\"%0A d=\"m 10.5,116 0,-2 -2.4999996,0 L 12,109 l 4,5 -2.5,0 0,2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,129 0,-2 -2.4999996,0 L 12,122 l 4,5 -2.5,0 0,2 -3,0 z\"%0A id=\"path6193\" />%0A <path%0A id=\"path6195\"%0A d=\"m 10.5,135 0,2 -2.4999996,0 L 12,142 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4500\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073242 -3.833708,2.213392 -3.8337072,2.213393 0,-4.426785 0,-4.426784 3.8337082,2.213392 z\"%0A inkscape:transform-center-x=\"-1.2779026\" />%0A <path%0A inkscape:transform-center-x=\"1.277902\"%0A d=\"m -31.500004,60.073242 -3.833708,2.213392 -3.833707,2.213393 0,-4.426785 0,-4.426784 3.833707,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:cx=\"-36.611614\"%0A sodipodi:sides=\"3\"%0A id=\"path4502\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"scale(-1,1)\" />%0A <path%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:sides=\"3\"%0A id=\"path4504\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"matrix(0,1,-1,0,72.0074,71.7877)\"%0A inkscape:transform-center-y=\"1.2779029\" />%0A <path%0A inkscape:transform-center-y=\"-1.2779026\"%0A transform=\"matrix(0,-1,-1,0,96,96)\"%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4506\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615-5\"%0A d=\"m 171.82574,65.174193 16.34854,0 -8.17427,-13.348454 z\"%0A style=\"fill:%23fbb917;fill-opacity:1;fill-rule:evenodd;stroke:%23fbb917;stroke-width:1.65161395;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,55 0,6 2,0 0,-6\"%0A id=\"path4300\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,62 0,2 2,0 0,-2\"%0A id=\"path4300-6\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:%23ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:0.8\"%0A d=\"M 99.994369,113.0221 102,114.98353 l 7,-6.9558 3,0.97227 2,-1 1,-2 0,-3 -3,3 -3,-3 3,-3 -3,0 -2,1 -1,2 0.99437,3.0221 z\"%0A id=\"path4268\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccccccccc\" />%0A <rect%0A id=\"rect4175-3-5\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"220\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <path%0A style=\"fill:%23ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 234,6 0,2 -5,5 0,5 -2,0 0,-5 -5,-5 0,-2\"%0A id=\"path3546\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <g%0A transform=\"matrix(1.3333328,0,0,-1.5999992,-139.9999,127.19999)\"%0A id=\"g4383-6\">%0A <rect%0A id=\"rect4385-2\"%0A height=\"1.2499905\"%0A width=\"5.9999924\"%0A y=\"12.625005\"%0A x=\"198.00002\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"15.125007\"%0A width=\"7.4999928\"%0A height=\"1.2499949\"%0A id=\"rect4387-9\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"7.6250024\"%0A width=\"2.9999909\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"10.125004\"%0A width=\"4.4999919\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-9\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 207.00001,16.375004 0,-5.625005 -2.25,0 3,-3.1250014 3,3.1250014 -2.25,0 0,5.625005 -1.5,0\"%0A id=\"path4402\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A </g>%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 164,100 0,3 -6,6 0,7 -4,0 0,-7 -6,-6 0,-3\"%0A id=\"path3546-2-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"28\"%0A x=\"4\" />%0A <path%0A sodipodi:nodetypes=\"ccccccccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4402-5-7\"%0A d=\"m 15,41 0,-7 -4,0 0,3 -5,-4 5,-4 0,3 6,0 0,9\"%0A style=\"fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\" />%0A</svg>%0A');background-position:-168px -48px;cursor:pointer}::ng-deep .jsoneditor-statusbar>.jsoneditor-validation-error-count{float:right;margin:0 4px 0 0;cursor:pointer}::ng-deep .jsoneditor-statusbar>.jsoneditor-parse-error-icon{float:right;width:24px;height:24px;padding:0;margin:1px;background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A width=\"240\"%0A height=\"144\"%0A id=\"svg4136\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"jsoneditor-icons.svg\">%0A <title%0A id=\"title6512\">JSON Editor Icons</title>%0A <metadata%0A id=\"metadata4148\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title>JSON Editor Icons</dc:title>%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4146\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ff63ff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1026\"%0A id=\"namedview4144\"%0A showgrid=\"true\"%0A inkscape:zoom=\"4\"%0A inkscape:cx=\"13.229181\"%0A inkscape:cy=\"119.82429\"%0A inkscape:window-x=\"0\"%0A inkscape:window-y=\"0\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4136\"%0A showguides=\"false\"%0A borderlayer=\"false\"%0A inkscape:showpageshadow=\"true\"%0A showborder=\"true\">%0A <inkscape:grid%0A type=\"xygrid\"%0A id=\"grid4640\"%0A empspacing=\"24\" />%0A </sodipodi:namedview>%0A <!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"4\" />%0A <rect%0A id=\"svg_1-7\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"28.000006\"%0A style=\"fill:%23ec3f29;fill-opacity:0.94117647;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A x=\"52.000004\"%0A y=\"3.999995\"%0A width=\"16\"%0A height=\"16\"%0A id=\"rect4165\" />%0A <rect%0A id=\"rect4175\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.9999852\"%0A x=\"172.00002\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4175-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"196\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <g%0A id=\"g4299\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <g%0A id=\"g4299-3\"%0A transform=\"matrix(0.70710678,-0.70710678,0.70710678,0.70710678,19.029435,12.000001)\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1-0\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1-9\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <rect%0A id=\"svg_1-7-5\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"7.0000048\"%0A x=\"55.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A x=\"58\"%0A y=\"10.00001\"%0A width=\"6.9999909\"%0A height=\"6.9999905\"%0A id=\"rect4354\" />%0A <rect%0A id=\"svg_1-7-5-7\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"10.000005\"%0A x=\"58.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%233c80df;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647\" />%0A <g%0A id=\"g4378\">%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"10.999999\"%0A width=\"7.9999909\"%0A height=\"1.9999965\"%0A id=\"svg_1-7-5-3\" />%0A <rect%0A id=\"rect4374\"%0A height=\"1.9999946\"%0A width=\"11.999995\"%0A y=\"7.0000005\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A id=\"rect4376\"%0A height=\"1.9999995\"%0A width=\"3.9999928\"%0A y=\"14.999996\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A </g>%0A <g%0A transform=\"matrix(1,0,0,-1,-23.999995,23.999995)\"%0A id=\"g4383\">%0A <rect%0A id=\"rect4385\"%0A height=\"1.9999965\"%0A width=\"7.9999909\"%0A y=\"10.999999\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"7.0000005\"%0A width=\"11.999995\"%0A height=\"1.9999946\"%0A id=\"rect4387\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"14.999996\"%0A width=\"3.9999928\"%0A height=\"1.9999995\"%0A id=\"rect4389\" />%0A </g>%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-4\"%0A width=\"16\"%0A height=\"16\"%0A x=\"76\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 85.10447,6.0157384 -0.0156,1.4063 c 3.02669,-0.2402 0.33008,3.6507996 2.48438,4.5780996 -2.18694,1.0938 0.49191,4.9069 -2.45313,4.5781 l -0.0156,1.4219 c 5.70828,0.559 1.03264,-5.1005 4.70313,-5.2656 l 0,-1.4063 c -3.61303,-0.027 1.11893,-5.7069996 -4.70313,-5.3124996 z\"%0A id=\"path4351\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 82.78125,5.9984384 0.0156,1.4063 c -3.02668,-0.2402 -0.33007,3.6506996 -2.48437,4.5780996 2.18694,1.0938 -0.49192,4.9069 2.45312,4.5781 l 0.0156,1.4219 c -5.70827,0.559 -1.03263,-5.1004 -4.70312,-5.2656 l 0,-1.4063 c 3.61303,-0.027 -1.11894,-5.7070996 4.70312,-5.3124996 z\"%0A id=\"path4351-9\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-25\"%0A width=\"16\"%0A height=\"16\"%0A x=\"100\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 103.719,5.6719384 0,12.7187996 3.03125,0 0,-1.5313 -1.34375,0 0,-9.6249996 1.375,0 0,-1.5625 z\"%0A id=\"path2987\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 112.2185,5.6721984 0,12.7187996 -3.03125,0 0,-1.5313 1.34375,0 0,-9.6249996 -1.375,0 0,-1.5625 z\"%0A id=\"path2987-1\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-73\"%0A width=\"16\"%0A height=\"16\"%0A x=\"124\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 126.2824,17.602938 1.78957,0 1.14143,-2.8641 5.65364,0 1.14856,2.8641 1.76565,0 -4.78687,-11.1610996 -1.91903,0 z\"%0A id=\"path3780\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccc\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A d=\"m 129.72704,13.478838 4.60852,0.01 -2.30426,-5.5497996 z\"%0A id=\"path3782\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-35\"%0A width=\"16\"%0A height=\"16\"%0A x=\"148\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 156.47655,5.8917384 0,2.1797 0.46093,2.3983996 1.82813,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 152.51561,5.8906384 0,2.1797 0.46094,2.3983996 1.82812,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <rect%0A id=\"svg_1-7-2\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"64\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"svg_1-7-2-2\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"52\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"52\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4561\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"80.000008\"%0A y=\"58\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4563\" />%0A <rect%0A id=\"rect4565\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"58\"%0A x=\"85.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4567\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"64\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"64\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4569\" />%0A <circle%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4571\"%0A cx=\"110.06081\"%0A cy=\"57.939209\"%0A r=\"4.7438836\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"116.64566\"%0A y=\"-31.79752\"%0A width=\"4.229713\"%0A height=\"6.4053884\"%0A id=\"rect4563-2\"%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 125,56 138.77027,56.095 132,64 Z\"%0A id=\"path4613\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615\"%0A d=\"M 149,64 162.77027,63.905 156,56 Z\"%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"54\"%0A y=\"53\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4638\" />%0A <rect%0A id=\"svg_1-7-2-24\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-56\"%0A x=\"53\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"53\"%0A y=\"-66\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4657\" />%0A <rect%0A id=\"rect4659\"%0A height=\"0.99999291\"%0A width=\"11.999999\"%0A y=\"57\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"88.000122\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4661\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"76.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4663\" />%0A <rect%0A id=\"rect4665\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"76.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A id=\"rect4667\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"82.000122\"%0A x=\"80.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"85.000008\"%0A y=\"82.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4669\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"88.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4671\" />%0A <rect%0A id=\"rect4673\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"88.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <circle%0A r=\"4.7438836\"%0A cy=\"81.939331\"%0A cx=\"110.06081\"%0A id=\"circle4675\"%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%23d3d3d3;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\"%0A id=\"rect4677\"%0A height=\"6.4053884\"%0A width=\"4.229713\"%0A y=\"-14.826816\"%0A x=\"133.6163\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:%23d3d3d3;stroke-width:0;stroke-opacity:1\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4679\"%0A d=\"m 125,80.000005 13.77027,0.09499 L 132,87.999992 Z\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 149,88.0002 162.77027,87.9052 156,80.0002 Z\"%0A id=\"path4681\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <rect%0A id=\"rect4683\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"77.000122\"%0A x=\"54\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"77.000122\"%0A y=\"-56\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4685\" />%0A <rect%0A id=\"rect4687\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-66\"%0A x=\"77.000122\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"81.000122\"%0A width=\"11.999999\"%0A height=\"0.99999291\"%0A id=\"rect4689\" />%0A <rect%0A id=\"rect4761-1\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"101\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-0\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"105\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-7\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"109\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1\"%0A height=\"1.9999945\"%0A width=\"12\"%0A y=\"125\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"137\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"129\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4-3\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"133\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,100.0254 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,100.5991 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1452 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533865,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550756,0 6.710442,-2.4113 7.650391,-5.9414 0.939949,-3.5301 -0.618463,-7.2736 -3.710938,-9.0703 -1.159678,-0.6738 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,99.9629 c -1.270084,0.039 -2.541493,0.3887 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5402 -3.710937,9.0703 0.939949,3.5301 4.09768,5.9414 7.648437,5.9414 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4056 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,100 0,2 -2.4999996,0 L 12,107 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A id=\"path3055-0-77\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9850574,108.015 14.0298856,-0.03\"%0A id=\"path5244-5-0-5\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9849874,132.015 14.0298866,-0.03\"%0A id=\"path5244-5-0-5-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,123.9629 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,124.5366 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1453 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533864,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550757,0 6.710442,-2.4093 7.650391,-5.9394 0.939949,-3.5301 -0.618463,-7.2756 -3.710938,-9.0723 -1.159678,-0.6737 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138-12\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,123.9629 c -1.270084,0.039 -2.541493,0.3888 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5422 -3.710937,9.0723 0.939949,3.5301 4.09768,5.9394 7.648437,5.9394 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4055 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1-3\" />%0A <path%0A id=\"path6191\"%0A d=\"m 10.5,116 0,-2 -2.4999996,0 L 12,109 l 4,5 -2.5,0 0,2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,129 0,-2 -2.4999996,0 L 12,122 l 4,5 -2.5,0 0,2 -3,0 z\"%0A id=\"path6193\" />%0A <path%0A id=\"path6195\"%0A d=\"m 10.5,135 0,2 -2.4999996,0 L 12,142 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4500\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073242 -3.833708,2.213392 -3.8337072,2.213393 0,-4.426785 0,-4.426784 3.8337082,2.213392 z\"%0A inkscape:transform-center-x=\"-1.2779026\" />%0A <path%0A inkscape:transform-center-x=\"1.277902\"%0A d=\"m -31.500004,60.073242 -3.833708,2.213392 -3.833707,2.213393 0,-4.426785 0,-4.426784 3.833707,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:cx=\"-36.611614\"%0A sodipodi:sides=\"3\"%0A id=\"path4502\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"scale(-1,1)\" />%0A <path%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:sides=\"3\"%0A id=\"path4504\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"matrix(0,1,-1,0,72.0074,71.7877)\"%0A inkscape:transform-center-y=\"1.2779029\" />%0A <path%0A inkscape:transform-center-y=\"-1.2779026\"%0A transform=\"matrix(0,-1,-1,0,96,96)\"%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4506\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615-5\"%0A d=\"m 171.82574,65.174193 16.34854,0 -8.17427,-13.348454 z\"%0A style=\"fill:%23fbb917;fill-opacity:1;fill-rule:evenodd;stroke:%23fbb917;stroke-width:1.65161395;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,55 0,6 2,0 0,-6\"%0A id=\"path4300\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,62 0,2 2,0 0,-2\"%0A id=\"path4300-6\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:%23ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:0.8\"%0A d=\"M 99.994369,113.0221 102,114.98353 l 7,-6.9558 3,0.97227 2,-1 1,-2 0,-3 -3,3 -3,-3 3,-3 -3,0 -2,1 -1,2 0.99437,3.0221 z\"%0A id=\"path4268\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccccccccc\" />%0A <rect%0A id=\"rect4175-3-5\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"220\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <path%0A style=\"fill:%23ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 234,6 0,2 -5,5 0,5 -2,0 0,-5 -5,-5 0,-2\"%0A id=\"path3546\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <g%0A transform=\"matrix(1.3333328,0,0,-1.5999992,-139.9999,127.19999)\"%0A id=\"g4383-6\">%0A <rect%0A id=\"rect4385-2\"%0A height=\"1.2499905\"%0A width=\"5.9999924\"%0A y=\"12.625005\"%0A x=\"198.00002\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"15.125007\"%0A width=\"7.4999928\"%0A height=\"1.2499949\"%0A id=\"rect4387-9\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"7.6250024\"%0A width=\"2.9999909\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"10.125004\"%0A width=\"4.4999919\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-9\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 207.00001,16.375004 0,-5.625005 -2.25,0 3,-3.1250014 3,3.1250014 -2.25,0 0,5.625005 -1.5,0\"%0A id=\"path4402\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A </g>%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 164,100 0,3 -6,6 0,7 -4,0 0,-7 -6,-6 0,-3\"%0A id=\"path3546-2-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"28\"%0A x=\"4\" />%0A <path%0A sodipodi:nodetypes=\"ccccccccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4402-5-7\"%0A d=\"m 15,41 0,-7 -4,0 0,3 -5,-4 5,-4 0,3 6,0 0,9\"%0A style=\"fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\" />%0A</svg>%0A');background-position:-25px 0}::ng-deep .jsoneditor-statusbar .jsoneditor-array-info a{color:inherit}::ng-deep div.jsoneditor-statusbar>.jsoneditor-curserinfo-label,::ng-deep div.jsoneditor-statusbar>.jsoneditor-size-info{margin:0 4px}::ng-deep .jsoneditor-treepath{padding:0 5px;overflow:hidden;white-space:nowrap;outline:0}::ng-deep .jsoneditor-treepath.show-all{word-wrap:break-word;white-space:normal;position:absolute;background-color:#ebebeb;z-index:1;box-shadow:2px 2px 12px #8080804d}::ng-deep .jsoneditor-treepath.show-all span.jsoneditor-treepath-show-all-btn{display:none}::ng-deep .jsoneditor-treepath div.jsoneditor-contextmenu-root{position:absolute;left:0}::ng-deep .jsoneditor-treepath .jsoneditor-treepath-show-all-btn{position:absolute;background-color:#ebebeb;left:0;height:20px;padding:0 3px;cursor:pointer}::ng-deep .jsoneditor-treepath .jsoneditor-treepath-element{margin:1px;font-family:arial,sans-serif;font-size:14px}::ng-deep .jsoneditor-treepath .jsoneditor-treepath-seperator{margin:2px;font-size:9pt;font-family:arial,sans-serif}::ng-deep .jsoneditor-treepath span.jsoneditor-treepath-element:hover,::ng-deep .jsoneditor-treepath span.jsoneditor-treepath-seperator:hover{cursor:pointer;text-decoration:underline}::ng-deep .selectr-container{position:relative}::ng-deep .selectr-container li{list-style:none}::ng-deep .selectr-hidden{position:absolute;overflow:hidden;clip:rect(0,0,0,0);width:1px;height:1px;margin:-1px;padding:0;border:0 none}::ng-deep .selectr-visible{position:absolute;left:0;top:0;width:100%;height:100%;opacity:0;z-index:11}::ng-deep .selectr-desktop.multiple .selectr-visible{display:none}::ng-deep .selectr-desktop.multiple.native-open .selectr-visible{top:100%;min-height:200px!important;height:auto;opacity:1;display:block}::ng-deep .selectr-container.multiple.selectr-mobile .selectr-selected{z-index:0}::ng-deep .selectr-selected{position:relative;z-index:1;box-sizing:border-box;width:100%;padding:7px 28px 7px 14px;cursor:pointer;border:1px solid #999;border-radius:3px;background-color:#fff}::ng-deep .selectr-selected:before{position:absolute;top:50%;right:10px;width:0;height:0;content:\"\";-o-transform:rotate(0) translate3d(0,-50%,0);-ms-transform:rotate(0) translate3d(0,-50%,0);-moz-transform:rotate(0) translate3d(0,-50%,0);-webkit-transform:rotate(0) translate3d(0,-50%,0);transform:rotate(0) translate3d(0,-50%,0);border-width:4px 4px 0 4px;border-style:solid;border-color:#6c7a86 transparent transparent}::ng-deep .selectr-container.native-open .selectr-selected:before,::ng-deep .selectr-container.open .selectr-selected:before{border-width:0 4px 4px 4px;border-style:solid;border-color:transparent transparent #6c7a86}::ng-deep .selectr-label{display:none;overflow:hidden;width:100%;white-space:nowrap;text-overflow:ellipsis}::ng-deep .selectr-placeholder{color:#6c7a86}::ng-deep .selectr-tags{margin:0;padding:0;white-space:normal}::ng-deep .has-selected .selectr-tags{margin:0 0 -2px}::ng-deep .selectr-tag{list-style:none;position:relative;float:left;padding:2px 25px 2px 8px;margin:0 2px 2px 0;cursor:default;color:#fff;border:medium none;border-radius:10px;background:#acb7bf none repeat scroll 0 0}::ng-deep .selectr-container.multiple.has-selected .selectr-selected{padding:5px 28px 5px 5px}::ng-deep .selectr-options-container{position:absolute;z-index:10000;top:calc(100% - 1px);left:0;display:none;box-sizing:border-box;width:100%;border-width:0 1px 1px;border-style:solid;border-color:transparent #999 #999;border-radius:0 0 3px 3px;background-color:#fff}::ng-deep .selectr-container.open .selectr-options-container{display:block}::ng-deep .selectr-input-container{position:relative;display:none}::ng-deep .selectr-clear,::ng-deep .selectr-input-clear,::ng-deep .selectr-tag-remove{position:absolute;top:50%;right:22px;width:20px;height:20px;padding:0;cursor:pointer;-o-transform:translate3d(0,-50%,0);-ms-transform:translate3d(0,-50%,0);-moz-transform:translate3d(0,-50%,0);-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0);border:medium none;background-color:transparent;z-index:11}::ng-deep .selectr-clear,::ng-deep .selectr-input-clear{display:none}::ng-deep .selectr-container.has-selected .selectr-clear,::ng-deep .selectr-input-container.active .selectr-input-clear{display:block}::ng-deep .selectr-selected .selectr-tag-remove{right:2px}::ng-deep .selectr-clear:after,::ng-deep .selectr-clear:before,::ng-deep .selectr-input-clear:after,::ng-deep .selectr-input-clear:before,::ng-deep .selectr-tag-remove:after,::ng-deep .selectr-tag-remove:before{position:absolute;top:5px;left:9px;width:2px;height:10px;content:\" \";background-color:#6c7a86}::ng-deep .selectr-tag-remove:after,::ng-deep .selectr-tag-remove:before{top:4px;width:3px;height:12px;background-color:#fff}::ng-deep .selectr-clear:before,::ng-deep .selectr-input-clear:before,::ng-deep .selectr-tag-remove:before{-o-transform:rotate(45deg);-ms-transform:rotate(45deg);-moz-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg)}::ng-deep .selectr-clear:after,::ng-deep .selectr-input-clear:after,::ng-deep .selectr-tag-remove:after{-o-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}::ng-deep .selectr-input-container.active,::ng-deep .selectr-input-container.active .selectr-clear{display:block}::ng-deep .selectr-input{top:5px;left:5px;box-sizing:border-box;width:calc(100% - 30px);margin:10px 15px;padding:7px 30px 7px 9px;border:1px solid #999;border-radius:3px}::ng-deep .selectr-notice{display:none;box-sizing:border-box;width:100%;padding:8px 16px;border-top:1px solid #999;border-radius:0 0 3px 3px;background-color:#fff}::ng-deep .selectr-container.notice .selectr-notice{display:block}::ng-deep .selectr-container.notice .selectr-selected{border-radius:3px 3px 0 0}::ng-deep .selectr-options{position:relative;top:calc(100% + 2px);display:none;overflow-x:auto;overflow-y:scroll;max-height:200px;margin:0;padding:0}::ng-deep .selectr-container.notice .selectr-options-container,::ng-deep .selectr-container.open .selectr-input-container,::ng-deep .selectr-container.open .selectr-options{display:block}::ng-deep .selectr-option{position:relative;display:block;padding:5px 20px;list-style:outside none none;cursor:pointer;font-weight:400}::ng-deep .selectr-options.optgroups>.selectr-option{padding-left:25px}::ng-deep .selectr-optgroup{font-weight:700;padding:0}::ng-deep .selectr-optgroup--label{font-weight:700;margin-top:10px;padding:5px 15px}::ng-deep .selectr-match{text-decoration:underline}::ng-deep .selectr-option.selected{background-color:#ddd}::ng-deep .selectr-option.active{color:#fff;background-color:#5897fb}::ng-deep .selectr-option.disabled{opacity:.4}::ng-deep .selectr-option.excluded{display:none}::ng-deep .selectr-container.open .selectr-selected{border-color:#999 #999 transparent #999;border-radius:3px 3px 0 0}::ng-deep .selectr-container.open .selectr-selected:after{-o-transform:rotate(180deg) translate3d(0,50%,0);-ms-transform:rotate(180deg) translate3d(0,50%,0);-moz-transform:rotate(180deg) translate3d(0,50%,0);-webkit-transform:rotate(180deg) translate3d(0,50%,0);transform:rotate(180deg) translate3d(0,50%,0)}::ng-deep .selectr-disabled{opacity:.6}::ng-deep .has-selected .selectr-placeholder,::ng-deep .selectr-empty{display:none}::ng-deep .has-selected .selectr-label{display:block}::ng-deep .taggable .selectr-selected{padding:4px 28px 4px 4px}::ng-deep .taggable .selectr-selected:after{display:table;content:\" \";clear:both}::ng-deep .taggable .selectr-label{width:auto}::ng-deep .taggable .selectr-tags{float:left;display:block}::ng-deep .taggable .selectr-placeholder{display:none}::ng-deep .input-tag{float:left;min-width:90px;width:auto}::ng-deep .selectr-tag-input{border:medium none;padding:3px 10px;width:100%;font-family:inherit;font-weight:inherit;font-size:inherit}::ng-deep .selectr-input-container.loading:after{position:absolute;top:50%;right:20px;width:20px;height:20px;content:\"\";-o-transform:translate3d(0,-50%,0);-ms-transform:translate3d(0,-50%,0);-moz-transform:translate3d(0,-50%,0);-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0);-o-transform-origin:50% 0 0;-ms-transform-origin:50% 0 0;-moz-transform-origin:50% 0 0;-webkit-transform-origin:50% 0 0;transform-origin:50% 0 0;-moz-animation:.5s linear 0s normal forwards infinite running selectr-spin;-webkit-animation:.5s linear 0s normal forwards infinite running selectr-spin;animation:.5s linear 0s normal forwards infinite running selectr-spin;border-width:3px;border-style:solid;border-color:#aaa #ddd #ddd;border-radius:50%}@-webkit-keyframes selectr-spin{0%{-webkit-transform:rotate(0) translate3d(0,-50%,0);transform:rotate(0) translate3d(0,-50%,0)}to{-webkit-transform:rotate(360deg) translate3d(0,-50%,0);transform:rotate(360deg) translate3d(0,-50%,0)}}@keyframes selectr-spin{0%{-webkit-transform:rotate(0) translate3d(0,-50%,0);transform:rotate(0) translate3d(0,-50%,0)}to{-webkit-transform:rotate(360deg) translate3d(0,-50%,0);transform:rotate(360deg) translate3d(0,-50%,0)}}::ng-deep .selectr-container.open.inverted .selectr-selected{border-color:transparent #999 #999;border-radius:0 0 3px 3px}::ng-deep .selectr-container.inverted .selectr-options-container{border-width:1px 1px 0;border-color:#999 #999 transparent;border-radius:3px 3px 0 0;background-color:#fff}::ng-deep .selectr-container.inverted .selectr-options-container{top:auto;bottom:calc(100% - 1px)}::ng-deep .selectr-container ::-webkit-input-placeholder{color:#6c7a86;opacity:1}::ng-deep .selectr-container ::-moz-placeholder{color:#6c7a86;opacity:1}::ng-deep .selectr-container :-ms-input-placeholder{color:#6c7a86;opacity:1}::ng-deep .selectr-container ::placeholder{color:#6c7a86;opacity:1}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
10035
+ }
10036
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: JsonEditorComponent, decorators: [{
10037
+ type: Component,
10038
+ args: [{ selector: 'mrx-json-editor', preserveWhitespaces: false, changeDetection: ChangeDetectionStrategy.OnPush, providers: [
10039
+ {
10040
+ provide: NG_VALUE_ACCESSOR,
10041
+ useExisting: forwardRef(() => JsonEditorComponent),
10042
+ multi: true,
10043
+ },
10044
+ ], template: "<div [id]=\"uuid\" #jsonEditorContainer></div>\r\n", styles: ["::ng-deep .jsoneditor,::ng-deep .jsoneditor-modal{-webkit-text-size-adjust:none;text-size-adjust:none}::ng-deep .jsoneditor input,::ng-deep .jsoneditor input:not([type]),::ng-deep .jsoneditor input[type=search],::ng-deep .jsoneditor input[type=text],::ng-deep .jsoneditor-modal input,::ng-deep .jsoneditor-modal input:not([type]),::ng-deep .jsoneditor-modal input[type=search],::ng-deep .jsoneditor-modal input[type=text]{height:auto;border:inherit;box-shadow:none;font-size:inherit;box-sizing:inherit;padding:inherit;font-family:inherit;transition:none;line-height:inherit}::ng-deep .jsoneditor input:focus,::ng-deep .jsoneditor input:not([type]):focus,::ng-deep .jsoneditor input[type=search]:focus,::ng-deep .jsoneditor input[type=text]:focus,::ng-deep .jsoneditor-modal input:focus,::ng-deep .jsoneditor-modal input:not([type]):focus,::ng-deep .jsoneditor-modal input[type=search]:focus,::ng-deep .jsoneditor-modal input[type=text]:focus{border:inherit;box-shadow:inherit}::ng-deep .jsoneditor textarea,::ng-deep .jsoneditor-modal textarea{height:inherit}::ng-deep .jsoneditor select,::ng-deep .jsoneditor-modal select{display:inherit;height:inherit}::ng-deep .jsoneditor label,::ng-deep .jsoneditor-modal label{font-size:inherit;font-weight:inherit;color:inherit}::ng-deep .jsoneditor table,::ng-deep .jsoneditor-modal table{border-collapse:collapse;width:auto}::ng-deep .jsoneditor td,::ng-deep .jsoneditor th,::ng-deep .jsoneditor-modal td,::ng-deep .jsoneditor-modal th{padding:0;display:table-cell;text-align:left;vertical-align:inherit;border-radius:inherit}::ng-deep .jsoneditor .autocomplete.dropdown{position:absolute;background:#fff;box-shadow:2px 2px 12px #8080804d;border:1px solid #d3d3d3;overflow-x:hidden;overflow-y:auto;cursor:default;margin:0;padding:5px;text-align:left;outline:0;font-family:consolas,menlo,monaco,Ubuntu Mono,source-code-pro,monospace;font-size:14px}::ng-deep .jsoneditor .autocomplete.dropdown .item{color:#1a1a1a}::ng-deep .jsoneditor .autocomplete.dropdown .item.hover{background-color:#ebebeb}::ng-deep .jsoneditor .autocomplete.hint{color:#a1a1a1;top:4px;left:4px}::ng-deep .jsoneditor-contextmenu-root{position:relative;width:0;height:0}::ng-deep .jsoneditor-contextmenu{position:absolute;box-sizing:content-box;z-index:2}::ng-deep .jsoneditor-contextmenu .jsoneditor-menu{position:relative;left:0;top:0;width:128px;height:auto;background:#fff;border:1px solid #d3d3d3;box-shadow:2px 2px 12px #8080804d;list-style:none;margin:0;padding:0}::ng-deep .jsoneditor-contextmenu .jsoneditor-menu button{position:relative;padding:0 8px 0 0;margin:0;width:128px;height:auto;border:none;cursor:pointer;color:#4d4d4d;background:0 0;font-size:14px;font-family:arial,sans-serif;box-sizing:border-box;text-align:left}::ng-deep .jsoneditor-contextmenu .jsoneditor-menu button::-moz-focus-inner{padding:0;border:0}::ng-deep .jsoneditor-contextmenu .jsoneditor-menu button.jsoneditor-default{width:96px}::ng-deep .jsoneditor-contextmenu .jsoneditor-menu button.jsoneditor-expand{float:right;width:32px;height:24px;border-left:1px solid #e5e5e5}::ng-deep .jsoneditor-contextmenu .jsoneditor-menu li{overflow:hidden}::ng-deep .jsoneditor-contextmenu .jsoneditor-menu li ul{display:none;position:relative;left:-10px;top:0;border:none;box-shadow:inset 0 0 10px #80808080;padding:0 10px;-webkit-transition:all .3s ease-out;-moz-transition:all .3s ease-out;-o-transition:all .3s ease-out;transition:all .3s ease-out}::ng-deep .jsoneditor-contextmenu .jsoneditor-menu li ul .jsoneditor-icon{margin-left:24px}::ng-deep .jsoneditor-contextmenu .jsoneditor-menu li ul li button{padding-left:24px;animation:all ease-in-out 1s}::ng-deep .jsoneditor-contextmenu .jsoneditor-menu li button .jsoneditor-expand{position:absolute;top:0;right:0;width:24px;height:24px;padding:0;margin:0 4px 0 0;background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A width=\"240\"%0A height=\"144\"%0A id=\"svg4136\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"jsoneditor-icons.svg\">%0A <title%0A id=\"title6512\">JSON Editor Icons</title>%0A <metadata%0A id=\"metadata4148\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title>JSON Editor Icons</dc:title>%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4146\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ff63ff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1026\"%0A id=\"namedview4144\"%0A showgrid=\"true\"%0A inkscape:zoom=\"4\"%0A inkscape:cx=\"13.229181\"%0A inkscape:cy=\"119.82429\"%0A inkscape:window-x=\"0\"%0A inkscape:window-y=\"0\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4136\"%0A showguides=\"false\"%0A borderlayer=\"false\"%0A inkscape:showpageshadow=\"true\"%0A showborder=\"true\">%0A <inkscape:grid%0A type=\"xygrid\"%0A id=\"grid4640\"%0A empspacing=\"24\" />%0A </sodipodi:namedview>%0A <!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"4\" />%0A <rect%0A id=\"svg_1-7\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"28.000006\"%0A style=\"fill:%23ec3f29;fill-opacity:0.94117647;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A x=\"52.000004\"%0A y=\"3.999995\"%0A width=\"16\"%0A height=\"16\"%0A id=\"rect4165\" />%0A <rect%0A id=\"rect4175\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.9999852\"%0A x=\"172.00002\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4175-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"196\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <g%0A id=\"g4299\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <g%0A id=\"g4299-3\"%0A transform=\"matrix(0.70710678,-0.70710678,0.70710678,0.70710678,19.029435,12.000001)\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1-0\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1-9\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <rect%0A id=\"svg_1-7-5\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"7.0000048\"%0A x=\"55.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A x=\"58\"%0A y=\"10.00001\"%0A width=\"6.9999909\"%0A height=\"6.9999905\"%0A id=\"rect4354\" />%0A <rect%0A id=\"svg_1-7-5-7\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"10.000005\"%0A x=\"58.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%233c80df;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647\" />%0A <g%0A id=\"g4378\">%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"10.999999\"%0A width=\"7.9999909\"%0A height=\"1.9999965\"%0A id=\"svg_1-7-5-3\" />%0A <rect%0A id=\"rect4374\"%0A height=\"1.9999946\"%0A width=\"11.999995\"%0A y=\"7.0000005\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A id=\"rect4376\"%0A height=\"1.9999995\"%0A width=\"3.9999928\"%0A y=\"14.999996\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A </g>%0A <g%0A transform=\"matrix(1,0,0,-1,-23.999995,23.999995)\"%0A id=\"g4383\">%0A <rect%0A id=\"rect4385\"%0A height=\"1.9999965\"%0A width=\"7.9999909\"%0A y=\"10.999999\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"7.0000005\"%0A width=\"11.999995\"%0A height=\"1.9999946\"%0A id=\"rect4387\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"14.999996\"%0A width=\"3.9999928\"%0A height=\"1.9999995\"%0A id=\"rect4389\" />%0A </g>%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-4\"%0A width=\"16\"%0A height=\"16\"%0A x=\"76\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 85.10447,6.0157384 -0.0156,1.4063 c 3.02669,-0.2402 0.33008,3.6507996 2.48438,4.5780996 -2.18694,1.0938 0.49191,4.9069 -2.45313,4.5781 l -0.0156,1.4219 c 5.70828,0.559 1.03264,-5.1005 4.70313,-5.2656 l 0,-1.4063 c -3.61303,-0.027 1.11893,-5.7069996 -4.70313,-5.3124996 z\"%0A id=\"path4351\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 82.78125,5.9984384 0.0156,1.4063 c -3.02668,-0.2402 -0.33007,3.6506996 -2.48437,4.5780996 2.18694,1.0938 -0.49192,4.9069 2.45312,4.5781 l 0.0156,1.4219 c -5.70827,0.559 -1.03263,-5.1004 -4.70312,-5.2656 l 0,-1.4063 c 3.61303,-0.027 -1.11894,-5.7070996 4.70312,-5.3124996 z\"%0A id=\"path4351-9\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-25\"%0A width=\"16\"%0A height=\"16\"%0A x=\"100\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 103.719,5.6719384 0,12.7187996 3.03125,0 0,-1.5313 -1.34375,0 0,-9.6249996 1.375,0 0,-1.5625 z\"%0A id=\"path2987\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 112.2185,5.6721984 0,12.7187996 -3.03125,0 0,-1.5313 1.34375,0 0,-9.6249996 -1.375,0 0,-1.5625 z\"%0A id=\"path2987-1\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-73\"%0A width=\"16\"%0A height=\"16\"%0A x=\"124\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 126.2824,17.602938 1.78957,0 1.14143,-2.8641 5.65364,0 1.14856,2.8641 1.76565,0 -4.78687,-11.1610996 -1.91903,0 z\"%0A id=\"path3780\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccc\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A d=\"m 129.72704,13.478838 4.60852,0.01 -2.30426,-5.5497996 z\"%0A id=\"path3782\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-35\"%0A width=\"16\"%0A height=\"16\"%0A x=\"148\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 156.47655,5.8917384 0,2.1797 0.46093,2.3983996 1.82813,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 152.51561,5.8906384 0,2.1797 0.46094,2.3983996 1.82812,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <rect%0A id=\"svg_1-7-2\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"64\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"svg_1-7-2-2\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"52\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"52\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4561\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"80.000008\"%0A y=\"58\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4563\" />%0A <rect%0A id=\"rect4565\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"58\"%0A x=\"85.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4567\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"64\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"64\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4569\" />%0A <circle%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4571\"%0A cx=\"110.06081\"%0A cy=\"57.939209\"%0A r=\"4.7438836\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"116.64566\"%0A y=\"-31.79752\"%0A width=\"4.229713\"%0A height=\"6.4053884\"%0A id=\"rect4563-2\"%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 125,56 138.77027,56.095 132,64 Z\"%0A id=\"path4613\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615\"%0A d=\"M 149,64 162.77027,63.905 156,56 Z\"%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"54\"%0A y=\"53\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4638\" />%0A <rect%0A id=\"svg_1-7-2-24\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-56\"%0A x=\"53\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"53\"%0A y=\"-66\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4657\" />%0A <rect%0A id=\"rect4659\"%0A height=\"0.99999291\"%0A width=\"11.999999\"%0A y=\"57\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"88.000122\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4661\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"76.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4663\" />%0A <rect%0A id=\"rect4665\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"76.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A id=\"rect4667\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"82.000122\"%0A x=\"80.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"85.000008\"%0A y=\"82.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4669\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"88.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4671\" />%0A <rect%0A id=\"rect4673\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"88.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <circle%0A r=\"4.7438836\"%0A cy=\"81.939331\"%0A cx=\"110.06081\"%0A id=\"circle4675\"%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%23d3d3d3;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\"%0A id=\"rect4677\"%0A height=\"6.4053884\"%0A width=\"4.229713\"%0A y=\"-14.826816\"%0A x=\"133.6163\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:%23d3d3d3;stroke-width:0;stroke-opacity:1\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4679\"%0A d=\"m 125,80.000005 13.77027,0.09499 L 132,87.999992 Z\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 149,88.0002 162.77027,87.9052 156,80.0002 Z\"%0A id=\"path4681\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <rect%0A id=\"rect4683\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"77.000122\"%0A x=\"54\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"77.000122\"%0A y=\"-56\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4685\" />%0A <rect%0A id=\"rect4687\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-66\"%0A x=\"77.000122\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"81.000122\"%0A width=\"11.999999\"%0A height=\"0.99999291\"%0A id=\"rect4689\" />%0A <rect%0A id=\"rect4761-1\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"101\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-0\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"105\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-7\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"109\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1\"%0A height=\"1.9999945\"%0A width=\"12\"%0A y=\"125\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"137\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"129\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4-3\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"133\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,100.0254 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,100.5991 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1452 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533865,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550756,0 6.710442,-2.4113 7.650391,-5.9414 0.939949,-3.5301 -0.618463,-7.2736 -3.710938,-9.0703 -1.159678,-0.6738 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,99.9629 c -1.270084,0.039 -2.541493,0.3887 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5402 -3.710937,9.0703 0.939949,3.5301 4.09768,5.9414 7.648437,5.9414 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4056 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,100 0,2 -2.4999996,0 L 12,107 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A id=\"path3055-0-77\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9850574,108.015 14.0298856,-0.03\"%0A id=\"path5244-5-0-5\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9849874,132.015 14.0298866,-0.03\"%0A id=\"path5244-5-0-5-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,123.9629 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,124.5366 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1453 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533864,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550757,0 6.710442,-2.4093 7.650391,-5.9394 0.939949,-3.5301 -0.618463,-7.2756 -3.710938,-9.0723 -1.159678,-0.6737 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138-12\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,123.9629 c -1.270084,0.039 -2.541493,0.3888 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5422 -3.710937,9.0723 0.939949,3.5301 4.09768,5.9394 7.648437,5.9394 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4055 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1-3\" />%0A <path%0A id=\"path6191\"%0A d=\"m 10.5,116 0,-2 -2.4999996,0 L 12,109 l 4,5 -2.5,0 0,2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,129 0,-2 -2.4999996,0 L 12,122 l 4,5 -2.5,0 0,2 -3,0 z\"%0A id=\"path6193\" />%0A <path%0A id=\"path6195\"%0A d=\"m 10.5,135 0,2 -2.4999996,0 L 12,142 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4500\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073242 -3.833708,2.213392 -3.8337072,2.213393 0,-4.426785 0,-4.426784 3.8337082,2.213392 z\"%0A inkscape:transform-center-x=\"-1.2779026\" />%0A <path%0A inkscape:transform-center-x=\"1.277902\"%0A d=\"m -31.500004,60.073242 -3.833708,2.213392 -3.833707,2.213393 0,-4.426785 0,-4.426784 3.833707,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:cx=\"-36.611614\"%0A sodipodi:sides=\"3\"%0A id=\"path4502\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"scale(-1,1)\" />%0A <path%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:sides=\"3\"%0A id=\"path4504\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"matrix(0,1,-1,0,72.0074,71.7877)\"%0A inkscape:transform-center-y=\"1.2779029\" />%0A <path%0A inkscape:transform-center-y=\"-1.2779026\"%0A transform=\"matrix(0,-1,-1,0,96,96)\"%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4506\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615-5\"%0A d=\"m 171.82574,65.174193 16.34854,0 -8.17427,-13.348454 z\"%0A style=\"fill:%23fbb917;fill-opacity:1;fill-rule:evenodd;stroke:%23fbb917;stroke-width:1.65161395;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,55 0,6 2,0 0,-6\"%0A id=\"path4300\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,62 0,2 2,0 0,-2\"%0A id=\"path4300-6\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:%23ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:0.8\"%0A d=\"M 99.994369,113.0221 102,114.98353 l 7,-6.9558 3,0.97227 2,-1 1,-2 0,-3 -3,3 -3,-3 3,-3 -3,0 -2,1 -1,2 0.99437,3.0221 z\"%0A id=\"path4268\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccccccccc\" />%0A <rect%0A id=\"rect4175-3-5\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"220\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <path%0A style=\"fill:%23ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 234,6 0,2 -5,5 0,5 -2,0 0,-5 -5,-5 0,-2\"%0A id=\"path3546\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <g%0A transform=\"matrix(1.3333328,0,0,-1.5999992,-139.9999,127.19999)\"%0A id=\"g4383-6\">%0A <rect%0A id=\"rect4385-2\"%0A height=\"1.2499905\"%0A width=\"5.9999924\"%0A y=\"12.625005\"%0A x=\"198.00002\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"15.125007\"%0A width=\"7.4999928\"%0A height=\"1.2499949\"%0A id=\"rect4387-9\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"7.6250024\"%0A width=\"2.9999909\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"10.125004\"%0A width=\"4.4999919\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-9\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 207.00001,16.375004 0,-5.625005 -2.25,0 3,-3.1250014 3,3.1250014 -2.25,0 0,5.625005 -1.5,0\"%0A id=\"path4402\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A </g>%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 164,100 0,3 -6,6 0,7 -4,0 0,-7 -6,-6 0,-3\"%0A id=\"path3546-2-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"28\"%0A x=\"4\" />%0A <path%0A sodipodi:nodetypes=\"ccccccccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4402-5-7\"%0A d=\"m 15,41 0,-7 -4,0 0,3 -5,-4 5,-4 0,3 6,0 0,9\"%0A style=\"fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\" />%0A</svg>%0A');background-position:0 -72px}::ng-deep .jsoneditor-contextmenu .jsoneditor-icon{position:absolute;top:0;left:0;width:24px;height:24px;border:none;padding:0;margin:0;background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A width=\"240\"%0A height=\"144\"%0A id=\"svg4136\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"jsoneditor-icons.svg\">%0A <title%0A id=\"title6512\">JSON Editor Icons</title>%0A <metadata%0A id=\"metadata4148\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title>JSON Editor Icons</dc:title>%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4146\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ff63ff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1026\"%0A id=\"namedview4144\"%0A showgrid=\"true\"%0A inkscape:zoom=\"4\"%0A inkscape:cx=\"13.229181\"%0A inkscape:cy=\"119.82429\"%0A inkscape:window-x=\"0\"%0A inkscape:window-y=\"0\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4136\"%0A showguides=\"false\"%0A borderlayer=\"false\"%0A inkscape:showpageshadow=\"true\"%0A showborder=\"true\">%0A <inkscape:grid%0A type=\"xygrid\"%0A id=\"grid4640\"%0A empspacing=\"24\" />%0A </sodipodi:namedview>%0A <!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"4\" />%0A <rect%0A id=\"svg_1-7\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"28.000006\"%0A style=\"fill:%23ec3f29;fill-opacity:0.94117647;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A x=\"52.000004\"%0A y=\"3.999995\"%0A width=\"16\"%0A height=\"16\"%0A id=\"rect4165\" />%0A <rect%0A id=\"rect4175\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.9999852\"%0A x=\"172.00002\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4175-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"196\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <g%0A id=\"g4299\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <g%0A id=\"g4299-3\"%0A transform=\"matrix(0.70710678,-0.70710678,0.70710678,0.70710678,19.029435,12.000001)\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1-0\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1-9\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <rect%0A id=\"svg_1-7-5\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"7.0000048\"%0A x=\"55.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A x=\"58\"%0A y=\"10.00001\"%0A width=\"6.9999909\"%0A height=\"6.9999905\"%0A id=\"rect4354\" />%0A <rect%0A id=\"svg_1-7-5-7\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"10.000005\"%0A x=\"58.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%233c80df;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647\" />%0A <g%0A id=\"g4378\">%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"10.999999\"%0A width=\"7.9999909\"%0A height=\"1.9999965\"%0A id=\"svg_1-7-5-3\" />%0A <rect%0A id=\"rect4374\"%0A height=\"1.9999946\"%0A width=\"11.999995\"%0A y=\"7.0000005\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A id=\"rect4376\"%0A height=\"1.9999995\"%0A width=\"3.9999928\"%0A y=\"14.999996\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A </g>%0A <g%0A transform=\"matrix(1,0,0,-1,-23.999995,23.999995)\"%0A id=\"g4383\">%0A <rect%0A id=\"rect4385\"%0A height=\"1.9999965\"%0A width=\"7.9999909\"%0A y=\"10.999999\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"7.0000005\"%0A width=\"11.999995\"%0A height=\"1.9999946\"%0A id=\"rect4387\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"14.999996\"%0A width=\"3.9999928\"%0A height=\"1.9999995\"%0A id=\"rect4389\" />%0A </g>%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-4\"%0A width=\"16\"%0A height=\"16\"%0A x=\"76\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 85.10447,6.0157384 -0.0156,1.4063 c 3.02669,-0.2402 0.33008,3.6507996 2.48438,4.5780996 -2.18694,1.0938 0.49191,4.9069 -2.45313,4.5781 l -0.0156,1.4219 c 5.70828,0.559 1.03264,-5.1005 4.70313,-5.2656 l 0,-1.4063 c -3.61303,-0.027 1.11893,-5.7069996 -4.70313,-5.3124996 z\"%0A id=\"path4351\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 82.78125,5.9984384 0.0156,1.4063 c -3.02668,-0.2402 -0.33007,3.6506996 -2.48437,4.5780996 2.18694,1.0938 -0.49192,4.9069 2.45312,4.5781 l 0.0156,1.4219 c -5.70827,0.559 -1.03263,-5.1004 -4.70312,-5.2656 l 0,-1.4063 c 3.61303,-0.027 -1.11894,-5.7070996 4.70312,-5.3124996 z\"%0A id=\"path4351-9\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-25\"%0A width=\"16\"%0A height=\"16\"%0A x=\"100\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 103.719,5.6719384 0,12.7187996 3.03125,0 0,-1.5313 -1.34375,0 0,-9.6249996 1.375,0 0,-1.5625 z\"%0A id=\"path2987\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 112.2185,5.6721984 0,12.7187996 -3.03125,0 0,-1.5313 1.34375,0 0,-9.6249996 -1.375,0 0,-1.5625 z\"%0A id=\"path2987-1\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-73\"%0A width=\"16\"%0A height=\"16\"%0A x=\"124\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 126.2824,17.602938 1.78957,0 1.14143,-2.8641 5.65364,0 1.14856,2.8641 1.76565,0 -4.78687,-11.1610996 -1.91903,0 z\"%0A id=\"path3780\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccc\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A d=\"m 129.72704,13.478838 4.60852,0.01 -2.30426,-5.5497996 z\"%0A id=\"path3782\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-35\"%0A width=\"16\"%0A height=\"16\"%0A x=\"148\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 156.47655,5.8917384 0,2.1797 0.46093,2.3983996 1.82813,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 152.51561,5.8906384 0,2.1797 0.46094,2.3983996 1.82812,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <rect%0A id=\"svg_1-7-2\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"64\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"svg_1-7-2-2\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"52\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"52\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4561\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"80.000008\"%0A y=\"58\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4563\" />%0A <rect%0A id=\"rect4565\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"58\"%0A x=\"85.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4567\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"64\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"64\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4569\" />%0A <circle%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4571\"%0A cx=\"110.06081\"%0A cy=\"57.939209\"%0A r=\"4.7438836\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"116.64566\"%0A y=\"-31.79752\"%0A width=\"4.229713\"%0A height=\"6.4053884\"%0A id=\"rect4563-2\"%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 125,56 138.77027,56.095 132,64 Z\"%0A id=\"path4613\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615\"%0A d=\"M 149,64 162.77027,63.905 156,56 Z\"%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"54\"%0A y=\"53\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4638\" />%0A <rect%0A id=\"svg_1-7-2-24\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-56\"%0A x=\"53\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"53\"%0A y=\"-66\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4657\" />%0A <rect%0A id=\"rect4659\"%0A height=\"0.99999291\"%0A width=\"11.999999\"%0A y=\"57\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"88.000122\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4661\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"76.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4663\" />%0A <rect%0A id=\"rect4665\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"76.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A id=\"rect4667\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"82.000122\"%0A x=\"80.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"85.000008\"%0A y=\"82.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4669\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"88.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4671\" />%0A <rect%0A id=\"rect4673\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"88.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <circle%0A r=\"4.7438836\"%0A cy=\"81.939331\"%0A cx=\"110.06081\"%0A id=\"circle4675\"%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%23d3d3d3;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\"%0A id=\"rect4677\"%0A height=\"6.4053884\"%0A width=\"4.229713\"%0A y=\"-14.826816\"%0A x=\"133.6163\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:%23d3d3d3;stroke-width:0;stroke-opacity:1\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4679\"%0A d=\"m 125,80.000005 13.77027,0.09499 L 132,87.999992 Z\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 149,88.0002 162.77027,87.9052 156,80.0002 Z\"%0A id=\"path4681\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <rect%0A id=\"rect4683\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"77.000122\"%0A x=\"54\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"77.000122\"%0A y=\"-56\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4685\" />%0A <rect%0A id=\"rect4687\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-66\"%0A x=\"77.000122\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"81.000122\"%0A width=\"11.999999\"%0A height=\"0.99999291\"%0A id=\"rect4689\" />%0A <rect%0A id=\"rect4761-1\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"101\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-0\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"105\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-7\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"109\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1\"%0A height=\"1.9999945\"%0A width=\"12\"%0A y=\"125\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"137\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"129\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4-3\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"133\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,100.0254 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,100.5991 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1452 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533865,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550756,0 6.710442,-2.4113 7.650391,-5.9414 0.939949,-3.5301 -0.618463,-7.2736 -3.710938,-9.0703 -1.159678,-0.6738 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,99.9629 c -1.270084,0.039 -2.541493,0.3887 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5402 -3.710937,9.0703 0.939949,3.5301 4.09768,5.9414 7.648437,5.9414 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4056 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,100 0,2 -2.4999996,0 L 12,107 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A id=\"path3055-0-77\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9850574,108.015 14.0298856,-0.03\"%0A id=\"path5244-5-0-5\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9849874,132.015 14.0298866,-0.03\"%0A id=\"path5244-5-0-5-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,123.9629 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,124.5366 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1453 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533864,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550757,0 6.710442,-2.4093 7.650391,-5.9394 0.939949,-3.5301 -0.618463,-7.2756 -3.710938,-9.0723 -1.159678,-0.6737 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138-12\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,123.9629 c -1.270084,0.039 -2.541493,0.3888 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5422 -3.710937,9.0723 0.939949,3.5301 4.09768,5.9394 7.648437,5.9394 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4055 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1-3\" />%0A <path%0A id=\"path6191\"%0A d=\"m 10.5,116 0,-2 -2.4999996,0 L 12,109 l 4,5 -2.5,0 0,2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,129 0,-2 -2.4999996,0 L 12,122 l 4,5 -2.5,0 0,2 -3,0 z\"%0A id=\"path6193\" />%0A <path%0A id=\"path6195\"%0A d=\"m 10.5,135 0,2 -2.4999996,0 L 12,142 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4500\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073242 -3.833708,2.213392 -3.8337072,2.213393 0,-4.426785 0,-4.426784 3.8337082,2.213392 z\"%0A inkscape:transform-center-x=\"-1.2779026\" />%0A <path%0A inkscape:transform-center-x=\"1.277902\"%0A d=\"m -31.500004,60.073242 -3.833708,2.213392 -3.833707,2.213393 0,-4.426785 0,-4.426784 3.833707,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:cx=\"-36.611614\"%0A sodipodi:sides=\"3\"%0A id=\"path4502\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"scale(-1,1)\" />%0A <path%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:sides=\"3\"%0A id=\"path4504\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"matrix(0,1,-1,0,72.0074,71.7877)\"%0A inkscape:transform-center-y=\"1.2779029\" />%0A <path%0A inkscape:transform-center-y=\"-1.2779026\"%0A transform=\"matrix(0,-1,-1,0,96,96)\"%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4506\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615-5\"%0A d=\"m 171.82574,65.174193 16.34854,0 -8.17427,-13.348454 z\"%0A style=\"fill:%23fbb917;fill-opacity:1;fill-rule:evenodd;stroke:%23fbb917;stroke-width:1.65161395;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,55 0,6 2,0 0,-6\"%0A id=\"path4300\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,62 0,2 2,0 0,-2\"%0A id=\"path4300-6\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:%23ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:0.8\"%0A d=\"M 99.994369,113.0221 102,114.98353 l 7,-6.9558 3,0.97227 2,-1 1,-2 0,-3 -3,3 -3,-3 3,-3 -3,0 -2,1 -1,2 0.99437,3.0221 z\"%0A id=\"path4268\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccccccccc\" />%0A <rect%0A id=\"rect4175-3-5\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"220\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <path%0A style=\"fill:%23ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 234,6 0,2 -5,5 0,5 -2,0 0,-5 -5,-5 0,-2\"%0A id=\"path3546\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <g%0A transform=\"matrix(1.3333328,0,0,-1.5999992,-139.9999,127.19999)\"%0A id=\"g4383-6\">%0A <rect%0A id=\"rect4385-2\"%0A height=\"1.2499905\"%0A width=\"5.9999924\"%0A y=\"12.625005\"%0A x=\"198.00002\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"15.125007\"%0A width=\"7.4999928\"%0A height=\"1.2499949\"%0A id=\"rect4387-9\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"7.6250024\"%0A width=\"2.9999909\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"10.125004\"%0A width=\"4.4999919\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-9\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 207.00001,16.375004 0,-5.625005 -2.25,0 3,-3.1250014 3,3.1250014 -2.25,0 0,5.625005 -1.5,0\"%0A id=\"path4402\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A </g>%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 164,100 0,3 -6,6 0,7 -4,0 0,-7 -6,-6 0,-3\"%0A id=\"path3546-2-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"28\"%0A x=\"4\" />%0A <path%0A sodipodi:nodetypes=\"ccccccccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4402-5-7\"%0A d=\"m 15,41 0,-7 -4,0 0,3 -5,-4 5,-4 0,3 6,0 0,9\"%0A style=\"fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\" />%0A</svg>%0A')}::ng-deep .jsoneditor-contextmenu .jsoneditor-text{padding:4px 0 4px 24px;word-wrap:break-word}::ng-deep .jsoneditor-contextmenu .jsoneditor-text.jsoneditor-right-margin{padding-right:24px}::ng-deep .jsoneditor-contextmenu .jsoneditor-separator{height:0;border-top:1px solid #e5e5e5;padding-top:5px;margin-top:5px}::ng-deep .jsoneditor-contextmenu button.jsoneditor-remove .jsoneditor-icon{background-position:-24px 0}::ng-deep .jsoneditor-contextmenu button.jsoneditor-append .jsoneditor-icon{background-position:0 0}::ng-deep .jsoneditor-contextmenu button.jsoneditor-insert .jsoneditor-icon{background-position:0 0}::ng-deep .jsoneditor-contextmenu button.jsoneditor-duplicate .jsoneditor-icon{background-position:-48px 0}::ng-deep .jsoneditor-contextmenu button.jsoneditor-sort-asc .jsoneditor-icon{background-position:-168px 0}::ng-deep .jsoneditor-contextmenu button.jsoneditor-sort-desc .jsoneditor-icon{background-position:-192px 0}::ng-deep .jsoneditor-contextmenu button.jsoneditor-transform .jsoneditor-icon{background-position:-216px 0}::ng-deep .jsoneditor-contextmenu button.jsoneditor-extract .jsoneditor-icon{background-position:0 -24px}::ng-deep .jsoneditor-contextmenu button.jsoneditor-type-string .jsoneditor-icon{background-position:-144px 0}::ng-deep .jsoneditor-contextmenu button.jsoneditor-type-auto .jsoneditor-icon{background-position:-120px 0}::ng-deep .jsoneditor-contextmenu button.jsoneditor-type-object .jsoneditor-icon{background-position:-72px 0}::ng-deep .jsoneditor-contextmenu button.jsoneditor-type-array .jsoneditor-icon{background-position:-96px 0}::ng-deep .jsoneditor-contextmenu button.jsoneditor-type-modes .jsoneditor-icon{background-image:none;width:6px}::ng-deep .jsoneditor-contextmenu li,::ng-deep .jsoneditor-contextmenu ul{box-sizing:content-box;position:relative}::ng-deep .jsoneditor-contextmenu .jsoneditor-menu button:focus,::ng-deep .jsoneditor-contextmenu .jsoneditor-menu button:hover{color:#1a1a1a;background-color:#f5f5f5;outline:0}::ng-deep .jsoneditor-contextmenu .jsoneditor-menu li button.jsoneditor-selected,::ng-deep .jsoneditor-contextmenu .jsoneditor-menu li button.jsoneditor-selected:focus,::ng-deep .jsoneditor-contextmenu .jsoneditor-menu li button.jsoneditor-selected:hover{color:#fff;background-color:#ee422e}::ng-deep .jsoneditor-contextmenu .jsoneditor-menu li ul li button:focus,::ng-deep .jsoneditor-contextmenu .jsoneditor-menu li ul li button:hover{background-color:#f5f5f5}::ng-deep .jsoneditor-modal{max-width:95%;border-radius:2px!important;padding:45px 15px 15px!important;box-shadow:2px 2px 12px #8080804d;color:#4d4d4d;line-height:1.3em}::ng-deep .jsoneditor-modal.jsoneditor-modal-transform{width:600px!important}::ng-deep .jsoneditor-modal .pico-modal-header{position:absolute;box-sizing:border-box;top:0;left:0;width:100%;padding:0 10px;height:30px;line-height:30px;font-family:arial,sans-serif;font-size:11pt;background:#3883fa;color:#fff}::ng-deep .jsoneditor-modal table{width:100%}::ng-deep .jsoneditor-modal table td{padding:3px 0}::ng-deep .jsoneditor-modal table td.jsoneditor-modal-input{text-align:right;padding-right:0;white-space:nowrap}::ng-deep .jsoneditor-modal table td.jsoneditor-modal-actions{padding-top:15px}::ng-deep .jsoneditor-modal table th{vertical-align:middle}::ng-deep .jsoneditor-modal p:first-child{margin-top:0}::ng-deep .jsoneditor-modal a{color:#3883fa}::ng-deep .jsoneditor-modal .jsoneditor-jmespath-block{margin-bottom:10px}::ng-deep .jsoneditor-modal .pico-close{background:0 0!important;font-size:24px!important;top:7px!important;right:7px!important;color:#fff}::ng-deep .jsoneditor-modal input{padding:4px}::ng-deep .jsoneditor-modal input[type=text]{cursor:inherit}::ng-deep .jsoneditor-modal input[disabled]{background:#d3d3d3;color:gray}::ng-deep .jsoneditor-modal .jsoneditor-select-wrapper{position:relative;display:inline-block}::ng-deep .jsoneditor-modal .jsoneditor-select-wrapper:after{content:\"\";width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-top:6px solid #666;position:absolute;right:8px;top:14px;pointer-events:none}::ng-deep .jsoneditor-modal select{padding:3px 24px 3px 10px;min-width:180px;max-width:350px;-webkit-appearance:none;-moz-appearance:none;appearance:none;text-indent:0;text-overflow:\"\";font-size:14px;line-height:1.5em}::ng-deep .jsoneditor-modal select::-ms-expand{display:none}::ng-deep .jsoneditor-modal .jsoneditor-button-group input{padding:4px 10px;margin:0;border-radius:0;border-left-style:none}::ng-deep .jsoneditor-modal .jsoneditor-button-group input.jsoneditor-button-first{border-top-left-radius:3px;border-bottom-left-radius:3px;border-left-style:solid}::ng-deep .jsoneditor-modal .jsoneditor-button-group input.jsoneditor-button-last{border-top-right-radius:3px;border-bottom-right-radius:3px}::ng-deep .jsoneditor-modal .jsoneditor-transform-preview{background:#f5f5f5;height:200px}::ng-deep .jsoneditor-modal .jsoneditor-transform-preview.jsoneditor-error{color:#ee422e}::ng-deep .jsoneditor-modal .jsoneditor-jmespath-wizard{line-height:1.2em;width:100%;padding:0;border-radius:3px}::ng-deep .jsoneditor-modal .jsoneditor-jmespath-label{font-weight:700;color:#1e90ff;margin-top:20px;margin-bottom:5px}::ng-deep .jsoneditor-modal .jsoneditor-jmespath-wizard-table{width:100%;border-collapse:collapse}::ng-deep .jsoneditor-modal .jsoneditor-jmespath-wizard-label{font-style:italic;margin:4px 0 2px}::ng-deep .jsoneditor-modal .jsoneditor-inline{position:relative;display:inline-block;width:100%;padding-top:2px;padding-bottom:2px}::ng-deep .jsoneditor-modal .jsoneditor-inline:not(:last-child){padding-right:2px}::ng-deep .jsoneditor-modal .jsoneditor-jmespath-filter{display:flex;flex-wrap:wrap}::ng-deep .jsoneditor-modal .jsoneditor-jmespath-filter-field{width:180px}::ng-deep .jsoneditor-modal .jsoneditor-jmespath-filter-relation{width:100px}::ng-deep .jsoneditor-modal .jsoneditor-jmespath-filter-value{min-width:180px;flex:1}::ng-deep .jsoneditor-modal .jsoneditor-jmespath-sort-field{width:170px}::ng-deep .jsoneditor-modal .jsoneditor-jmespath-sort-order{width:150px}::ng-deep .jsoneditor-modal .jsoneditor-jmespath-select-fields{width:100%}::ng-deep .jsoneditor-modal .selectr-selected{border-color:#d3d3d3;padding:4px 28px 4px 8px}::ng-deep .jsoneditor-modal .selectr-selected .selectr-tag{background-color:#3883fa;border-radius:5px}::ng-deep .jsoneditor-modal table td,::ng-deep .jsoneditor-modal table th{text-align:left;vertical-align:middle;font-weight:400;color:#4d4d4d;border-spacing:0;border-collapse:collapse}::ng-deep .jsoneditor-modal #query,::ng-deep .jsoneditor-modal input,::ng-deep .jsoneditor-modal input[type=text],::ng-deep .jsoneditor-modal input[type=text]:focus,::ng-deep .jsoneditor-modal select,::ng-deep .jsoneditor-modal textarea{background:#fff;border:1px solid #d3d3d3;color:#4d4d4d;border-radius:3px;padding:4px}::ng-deep .jsoneditor-modal #query,::ng-deep .jsoneditor-modal textarea{border-radius:unset}::ng-deep .jsoneditor-modal,::ng-deep .jsoneditor-modal #query,::ng-deep .jsoneditor-modal input,::ng-deep .jsoneditor-modal input[type=text],::ng-deep .jsoneditor-modal option,::ng-deep .jsoneditor-modal select,::ng-deep .jsoneditor-modal table td,::ng-deep .jsoneditor-modal table th,::ng-deep .jsoneditor-modal textarea{font-size:10.5pt;font-family:arial,sans-serif}::ng-deep .jsoneditor-modal #query,::ng-deep .jsoneditor-modal .jsoneditor-transform-preview{font-family:consolas,menlo,monaco,Ubuntu Mono,source-code-pro,monospace;font-size:14px;width:100%;box-sizing:border-box}::ng-deep .jsoneditor-modal input[type=button],::ng-deep .jsoneditor-modal input[type=submit]{background:#f5f5f5;padding:4px 20px}::ng-deep .jsoneditor-modal input,::ng-deep .jsoneditor-modal select{cursor:pointer}::ng-deep .jsoneditor-modal .jsoneditor-button-group.jsoneditor-button-group-value-asc input.jsoneditor-button-asc,::ng-deep .jsoneditor-modal .jsoneditor-button-group.jsoneditor-button-group-value-desc input.jsoneditor-button-desc{background:#3883fa;border-color:#3883fa;color:#fff}::ng-deep .jsoneditor{color:#1a1a1a;border:thin solid #3883fa;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;height:100%;position:relative;padding:0;line-height:100%}::ng-deep a.jsoneditor-value,::ng-deep div.jsoneditor-default,::ng-deep div.jsoneditor-field,::ng-deep div.jsoneditor-readonly,::ng-deep div.jsoneditor-value{border:1px solid transparent;min-height:16px;min-width:32px;line-height:16px;padding:2px;margin:1px;word-wrap:break-word;word-break:break-word;overflow-wrap:break-word;float:left}::ng-deep div.jsoneditor-field p,::ng-deep div.jsoneditor-value p{margin:0}::ng-deep div.jsoneditor-value.jsoneditor-empty:after{content:\"value\"}::ng-deep div.jsoneditor-value.jsoneditor-string{color:#006000}::ng-deep div.jsoneditor-value.jsoneditor-number{color:#ee422e}::ng-deep div.jsoneditor-value.jsoneditor-boolean{color:#ff8c00}::ng-deep div.jsoneditor-value.jsoneditor-null{color:#004ed0}::ng-deep div.jsoneditor-value.jsoneditor-color-value{color:#1a1a1a}::ng-deep div.jsoneditor-value.jsoneditor-invalid{color:#1a1a1a}::ng-deep div.jsoneditor-readonly{min-width:16px;color:gray}::ng-deep div.jsoneditor-empty{border-color:#d3d3d3;border-style:dashed;border-radius:2px}::ng-deep div.jsoneditor-field.jsoneditor-empty:after{content:\"field\"}::ng-deep div.jsoneditor td{vertical-align:top}::ng-deep div.jsoneditor td.jsoneditor-separator{padding:3px 0;vertical-align:top;color:gray}::ng-deep div.jsoneditor td.jsoneditor-tree{vertical-align:top}::ng-deep div.jsoneditor.busy pre.jsoneditor-preview{background:#f5f5f5;color:gray}::ng-deep div.jsoneditor.busy div.jsoneditor-busy{display:inherit}::ng-deep div.jsoneditor code.jsoneditor-preview{background:0 0}::ng-deep div.jsoneditor.jsoneditor-mode-preview pre.jsoneditor-preview{width:100%;height:100%;box-sizing:border-box;overflow:auto;padding:2px;margin:0;white-space:pre-wrap;word-break:break-all}::ng-deep div.jsoneditor-default{color:gray;padding-left:10px}::ng-deep div.jsoneditor-tree{width:100%;height:100%;position:relative;overflow:auto;background:#fff}::ng-deep div.jsoneditor-tree button.jsoneditor-button{width:24px;height:24px;padding:0;margin:0;border:none;cursor:pointer;background-color:transparent;background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A width=\"240\"%0A height=\"144\"%0A id=\"svg4136\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"jsoneditor-icons.svg\">%0A <title%0A id=\"title6512\">JSON Editor Icons</title>%0A <metadata%0A id=\"metadata4148\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title>JSON Editor Icons</dc:title>%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4146\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ff63ff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1026\"%0A id=\"namedview4144\"%0A showgrid=\"true\"%0A inkscape:zoom=\"4\"%0A inkscape:cx=\"13.229181\"%0A inkscape:cy=\"119.82429\"%0A inkscape:window-x=\"0\"%0A inkscape:window-y=\"0\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4136\"%0A showguides=\"false\"%0A borderlayer=\"false\"%0A inkscape:showpageshadow=\"true\"%0A showborder=\"true\">%0A <inkscape:grid%0A type=\"xygrid\"%0A id=\"grid4640\"%0A empspacing=\"24\" />%0A </sodipodi:namedview>%0A <!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"4\" />%0A <rect%0A id=\"svg_1-7\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"28.000006\"%0A style=\"fill:%23ec3f29;fill-opacity:0.94117647;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A x=\"52.000004\"%0A y=\"3.999995\"%0A width=\"16\"%0A height=\"16\"%0A id=\"rect4165\" />%0A <rect%0A id=\"rect4175\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.9999852\"%0A x=\"172.00002\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4175-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"196\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <g%0A id=\"g4299\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <g%0A id=\"g4299-3\"%0A transform=\"matrix(0.70710678,-0.70710678,0.70710678,0.70710678,19.029435,12.000001)\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1-0\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1-9\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <rect%0A id=\"svg_1-7-5\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"7.0000048\"%0A x=\"55.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A x=\"58\"%0A y=\"10.00001\"%0A width=\"6.9999909\"%0A height=\"6.9999905\"%0A id=\"rect4354\" />%0A <rect%0A id=\"svg_1-7-5-7\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"10.000005\"%0A x=\"58.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%233c80df;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647\" />%0A <g%0A id=\"g4378\">%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"10.999999\"%0A width=\"7.9999909\"%0A height=\"1.9999965\"%0A id=\"svg_1-7-5-3\" />%0A <rect%0A id=\"rect4374\"%0A height=\"1.9999946\"%0A width=\"11.999995\"%0A y=\"7.0000005\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A id=\"rect4376\"%0A height=\"1.9999995\"%0A width=\"3.9999928\"%0A y=\"14.999996\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A </g>%0A <g%0A transform=\"matrix(1,0,0,-1,-23.999995,23.999995)\"%0A id=\"g4383\">%0A <rect%0A id=\"rect4385\"%0A height=\"1.9999965\"%0A width=\"7.9999909\"%0A y=\"10.999999\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"7.0000005\"%0A width=\"11.999995\"%0A height=\"1.9999946\"%0A id=\"rect4387\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"14.999996\"%0A width=\"3.9999928\"%0A height=\"1.9999995\"%0A id=\"rect4389\" />%0A </g>%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-4\"%0A width=\"16\"%0A height=\"16\"%0A x=\"76\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 85.10447,6.0157384 -0.0156,1.4063 c 3.02669,-0.2402 0.33008,3.6507996 2.48438,4.5780996 -2.18694,1.0938 0.49191,4.9069 -2.45313,4.5781 l -0.0156,1.4219 c 5.70828,0.559 1.03264,-5.1005 4.70313,-5.2656 l 0,-1.4063 c -3.61303,-0.027 1.11893,-5.7069996 -4.70313,-5.3124996 z\"%0A id=\"path4351\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 82.78125,5.9984384 0.0156,1.4063 c -3.02668,-0.2402 -0.33007,3.6506996 -2.48437,4.5780996 2.18694,1.0938 -0.49192,4.9069 2.45312,4.5781 l 0.0156,1.4219 c -5.70827,0.559 -1.03263,-5.1004 -4.70312,-5.2656 l 0,-1.4063 c 3.61303,-0.027 -1.11894,-5.7070996 4.70312,-5.3124996 z\"%0A id=\"path4351-9\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-25\"%0A width=\"16\"%0A height=\"16\"%0A x=\"100\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 103.719,5.6719384 0,12.7187996 3.03125,0 0,-1.5313 -1.34375,0 0,-9.6249996 1.375,0 0,-1.5625 z\"%0A id=\"path2987\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 112.2185,5.6721984 0,12.7187996 -3.03125,0 0,-1.5313 1.34375,0 0,-9.6249996 -1.375,0 0,-1.5625 z\"%0A id=\"path2987-1\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-73\"%0A width=\"16\"%0A height=\"16\"%0A x=\"124\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 126.2824,17.602938 1.78957,0 1.14143,-2.8641 5.65364,0 1.14856,2.8641 1.76565,0 -4.78687,-11.1610996 -1.91903,0 z\"%0A id=\"path3780\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccc\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A d=\"m 129.72704,13.478838 4.60852,0.01 -2.30426,-5.5497996 z\"%0A id=\"path3782\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-35\"%0A width=\"16\"%0A height=\"16\"%0A x=\"148\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 156.47655,5.8917384 0,2.1797 0.46093,2.3983996 1.82813,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 152.51561,5.8906384 0,2.1797 0.46094,2.3983996 1.82812,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <rect%0A id=\"svg_1-7-2\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"64\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"svg_1-7-2-2\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"52\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"52\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4561\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"80.000008\"%0A y=\"58\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4563\" />%0A <rect%0A id=\"rect4565\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"58\"%0A x=\"85.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4567\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"64\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"64\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4569\" />%0A <circle%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4571\"%0A cx=\"110.06081\"%0A cy=\"57.939209\"%0A r=\"4.7438836\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"116.64566\"%0A y=\"-31.79752\"%0A width=\"4.229713\"%0A height=\"6.4053884\"%0A id=\"rect4563-2\"%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 125,56 138.77027,56.095 132,64 Z\"%0A id=\"path4613\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615\"%0A d=\"M 149,64 162.77027,63.905 156,56 Z\"%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"54\"%0A y=\"53\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4638\" />%0A <rect%0A id=\"svg_1-7-2-24\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-56\"%0A x=\"53\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"53\"%0A y=\"-66\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4657\" />%0A <rect%0A id=\"rect4659\"%0A height=\"0.99999291\"%0A width=\"11.999999\"%0A y=\"57\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"88.000122\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4661\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"76.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4663\" />%0A <rect%0A id=\"rect4665\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"76.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A id=\"rect4667\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"82.000122\"%0A x=\"80.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"85.000008\"%0A y=\"82.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4669\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"88.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4671\" />%0A <rect%0A id=\"rect4673\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"88.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <circle%0A r=\"4.7438836\"%0A cy=\"81.939331\"%0A cx=\"110.06081\"%0A id=\"circle4675\"%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%23d3d3d3;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\"%0A id=\"rect4677\"%0A height=\"6.4053884\"%0A width=\"4.229713\"%0A y=\"-14.826816\"%0A x=\"133.6163\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:%23d3d3d3;stroke-width:0;stroke-opacity:1\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4679\"%0A d=\"m 125,80.000005 13.77027,0.09499 L 132,87.999992 Z\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 149,88.0002 162.77027,87.9052 156,80.0002 Z\"%0A id=\"path4681\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <rect%0A id=\"rect4683\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"77.000122\"%0A x=\"54\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"77.000122\"%0A y=\"-56\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4685\" />%0A <rect%0A id=\"rect4687\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-66\"%0A x=\"77.000122\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"81.000122\"%0A width=\"11.999999\"%0A height=\"0.99999291\"%0A id=\"rect4689\" />%0A <rect%0A id=\"rect4761-1\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"101\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-0\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"105\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-7\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"109\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1\"%0A height=\"1.9999945\"%0A width=\"12\"%0A y=\"125\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"137\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"129\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4-3\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"133\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,100.0254 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,100.5991 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1452 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533865,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550756,0 6.710442,-2.4113 7.650391,-5.9414 0.939949,-3.5301 -0.618463,-7.2736 -3.710938,-9.0703 -1.159678,-0.6738 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,99.9629 c -1.270084,0.039 -2.541493,0.3887 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5402 -3.710937,9.0703 0.939949,3.5301 4.09768,5.9414 7.648437,5.9414 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4056 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,100 0,2 -2.4999996,0 L 12,107 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A id=\"path3055-0-77\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9850574,108.015 14.0298856,-0.03\"%0A id=\"path5244-5-0-5\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9849874,132.015 14.0298866,-0.03\"%0A id=\"path5244-5-0-5-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,123.9629 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,124.5366 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1453 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533864,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550757,0 6.710442,-2.4093 7.650391,-5.9394 0.939949,-3.5301 -0.618463,-7.2756 -3.710938,-9.0723 -1.159678,-0.6737 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138-12\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,123.9629 c -1.270084,0.039 -2.541493,0.3888 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5422 -3.710937,9.0723 0.939949,3.5301 4.09768,5.9394 7.648437,5.9394 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4055 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1-3\" />%0A <path%0A id=\"path6191\"%0A d=\"m 10.5,116 0,-2 -2.4999996,0 L 12,109 l 4,5 -2.5,0 0,2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,129 0,-2 -2.4999996,0 L 12,122 l 4,5 -2.5,0 0,2 -3,0 z\"%0A id=\"path6193\" />%0A <path%0A id=\"path6195\"%0A d=\"m 10.5,135 0,2 -2.4999996,0 L 12,142 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4500\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073242 -3.833708,2.213392 -3.8337072,2.213393 0,-4.426785 0,-4.426784 3.8337082,2.213392 z\"%0A inkscape:transform-center-x=\"-1.2779026\" />%0A <path%0A inkscape:transform-center-x=\"1.277902\"%0A d=\"m -31.500004,60.073242 -3.833708,2.213392 -3.833707,2.213393 0,-4.426785 0,-4.426784 3.833707,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:cx=\"-36.611614\"%0A sodipodi:sides=\"3\"%0A id=\"path4502\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"scale(-1,1)\" />%0A <path%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:sides=\"3\"%0A id=\"path4504\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"matrix(0,1,-1,0,72.0074,71.7877)\"%0A inkscape:transform-center-y=\"1.2779029\" />%0A <path%0A inkscape:transform-center-y=\"-1.2779026\"%0A transform=\"matrix(0,-1,-1,0,96,96)\"%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4506\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615-5\"%0A d=\"m 171.82574,65.174193 16.34854,0 -8.17427,-13.348454 z\"%0A style=\"fill:%23fbb917;fill-opacity:1;fill-rule:evenodd;stroke:%23fbb917;stroke-width:1.65161395;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,55 0,6 2,0 0,-6\"%0A id=\"path4300\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,62 0,2 2,0 0,-2\"%0A id=\"path4300-6\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:%23ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:0.8\"%0A d=\"M 99.994369,113.0221 102,114.98353 l 7,-6.9558 3,0.97227 2,-1 1,-2 0,-3 -3,3 -3,-3 3,-3 -3,0 -2,1 -1,2 0.99437,3.0221 z\"%0A id=\"path4268\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccccccccc\" />%0A <rect%0A id=\"rect4175-3-5\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"220\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <path%0A style=\"fill:%23ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 234,6 0,2 -5,5 0,5 -2,0 0,-5 -5,-5 0,-2\"%0A id=\"path3546\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <g%0A transform=\"matrix(1.3333328,0,0,-1.5999992,-139.9999,127.19999)\"%0A id=\"g4383-6\">%0A <rect%0A id=\"rect4385-2\"%0A height=\"1.2499905\"%0A width=\"5.9999924\"%0A y=\"12.625005\"%0A x=\"198.00002\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"15.125007\"%0A width=\"7.4999928\"%0A height=\"1.2499949\"%0A id=\"rect4387-9\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"7.6250024\"%0A width=\"2.9999909\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"10.125004\"%0A width=\"4.4999919\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-9\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 207.00001,16.375004 0,-5.625005 -2.25,0 3,-3.1250014 3,3.1250014 -2.25,0 0,5.625005 -1.5,0\"%0A id=\"path4402\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A </g>%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 164,100 0,3 -6,6 0,7 -4,0 0,-7 -6,-6 0,-3\"%0A id=\"path3546-2-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"28\"%0A x=\"4\" />%0A <path%0A sodipodi:nodetypes=\"ccccccccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4402-5-7\"%0A d=\"m 15,41 0,-7 -4,0 0,3 -5,-4 5,-4 0,3 6,0 0,9\"%0A style=\"fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\" />%0A</svg>%0A')}::ng-deep div.jsoneditor-tree button.jsoneditor-button:focus{background-color:#f5f5f5;outline:#e5e5e5 solid 1px}::ng-deep div.jsoneditor-tree button.jsoneditor-collapsed{background-position:0 -48px}::ng-deep div.jsoneditor-tree button.jsoneditor-expanded{background-position:0 -72px}::ng-deep div.jsoneditor-tree button.jsoneditor-contextmenu-button{background-position:-48px -72px}::ng-deep div.jsoneditor-tree button.jsoneditor-invisible{visibility:hidden;background:0 0}::ng-deep div.jsoneditor-tree button.jsoneditor-dragarea{background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A width=\"240\"%0A height=\"144\"%0A id=\"svg4136\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"jsoneditor-icons.svg\">%0A <title%0A id=\"title6512\">JSON Editor Icons</title>%0A <metadata%0A id=\"metadata4148\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title>JSON Editor Icons</dc:title>%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4146\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ff63ff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1026\"%0A id=\"namedview4144\"%0A showgrid=\"true\"%0A inkscape:zoom=\"4\"%0A inkscape:cx=\"13.229181\"%0A inkscape:cy=\"119.82429\"%0A inkscape:window-x=\"0\"%0A inkscape:window-y=\"0\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4136\"%0A showguides=\"false\"%0A borderlayer=\"false\"%0A inkscape:showpageshadow=\"true\"%0A showborder=\"true\">%0A <inkscape:grid%0A type=\"xygrid\"%0A id=\"grid4640\"%0A empspacing=\"24\" />%0A </sodipodi:namedview>%0A <!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"4\" />%0A <rect%0A id=\"svg_1-7\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"28.000006\"%0A style=\"fill:%23ec3f29;fill-opacity:0.94117647;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A x=\"52.000004\"%0A y=\"3.999995\"%0A width=\"16\"%0A height=\"16\"%0A id=\"rect4165\" />%0A <rect%0A id=\"rect4175\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.9999852\"%0A x=\"172.00002\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4175-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"196\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <g%0A id=\"g4299\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <g%0A id=\"g4299-3\"%0A transform=\"matrix(0.70710678,-0.70710678,0.70710678,0.70710678,19.029435,12.000001)\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1-0\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1-9\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <rect%0A id=\"svg_1-7-5\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"7.0000048\"%0A x=\"55.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A x=\"58\"%0A y=\"10.00001\"%0A width=\"6.9999909\"%0A height=\"6.9999905\"%0A id=\"rect4354\" />%0A <rect%0A id=\"svg_1-7-5-7\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"10.000005\"%0A x=\"58.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%233c80df;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647\" />%0A <g%0A id=\"g4378\">%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"10.999999\"%0A width=\"7.9999909\"%0A height=\"1.9999965\"%0A id=\"svg_1-7-5-3\" />%0A <rect%0A id=\"rect4374\"%0A height=\"1.9999946\"%0A width=\"11.999995\"%0A y=\"7.0000005\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A id=\"rect4376\"%0A height=\"1.9999995\"%0A width=\"3.9999928\"%0A y=\"14.999996\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A </g>%0A <g%0A transform=\"matrix(1,0,0,-1,-23.999995,23.999995)\"%0A id=\"g4383\">%0A <rect%0A id=\"rect4385\"%0A height=\"1.9999965\"%0A width=\"7.9999909\"%0A y=\"10.999999\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"7.0000005\"%0A width=\"11.999995\"%0A height=\"1.9999946\"%0A id=\"rect4387\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"14.999996\"%0A width=\"3.9999928\"%0A height=\"1.9999995\"%0A id=\"rect4389\" />%0A </g>%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-4\"%0A width=\"16\"%0A height=\"16\"%0A x=\"76\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 85.10447,6.0157384 -0.0156,1.4063 c 3.02669,-0.2402 0.33008,3.6507996 2.48438,4.5780996 -2.18694,1.0938 0.49191,4.9069 -2.45313,4.5781 l -0.0156,1.4219 c 5.70828,0.559 1.03264,-5.1005 4.70313,-5.2656 l 0,-1.4063 c -3.61303,-0.027 1.11893,-5.7069996 -4.70313,-5.3124996 z\"%0A id=\"path4351\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 82.78125,5.9984384 0.0156,1.4063 c -3.02668,-0.2402 -0.33007,3.6506996 -2.48437,4.5780996 2.18694,1.0938 -0.49192,4.9069 2.45312,4.5781 l 0.0156,1.4219 c -5.70827,0.559 -1.03263,-5.1004 -4.70312,-5.2656 l 0,-1.4063 c 3.61303,-0.027 -1.11894,-5.7070996 4.70312,-5.3124996 z\"%0A id=\"path4351-9\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-25\"%0A width=\"16\"%0A height=\"16\"%0A x=\"100\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 103.719,5.6719384 0,12.7187996 3.03125,0 0,-1.5313 -1.34375,0 0,-9.6249996 1.375,0 0,-1.5625 z\"%0A id=\"path2987\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 112.2185,5.6721984 0,12.7187996 -3.03125,0 0,-1.5313 1.34375,0 0,-9.6249996 -1.375,0 0,-1.5625 z\"%0A id=\"path2987-1\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-73\"%0A width=\"16\"%0A height=\"16\"%0A x=\"124\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 126.2824,17.602938 1.78957,0 1.14143,-2.8641 5.65364,0 1.14856,2.8641 1.76565,0 -4.78687,-11.1610996 -1.91903,0 z\"%0A id=\"path3780\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccc\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A d=\"m 129.72704,13.478838 4.60852,0.01 -2.30426,-5.5497996 z\"%0A id=\"path3782\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-35\"%0A width=\"16\"%0A height=\"16\"%0A x=\"148\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 156.47655,5.8917384 0,2.1797 0.46093,2.3983996 1.82813,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 152.51561,5.8906384 0,2.1797 0.46094,2.3983996 1.82812,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <rect%0A id=\"svg_1-7-2\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"64\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"svg_1-7-2-2\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"52\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"52\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4561\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"80.000008\"%0A y=\"58\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4563\" />%0A <rect%0A id=\"rect4565\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"58\"%0A x=\"85.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4567\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"64\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"64\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4569\" />%0A <circle%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4571\"%0A cx=\"110.06081\"%0A cy=\"57.939209\"%0A r=\"4.7438836\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"116.64566\"%0A y=\"-31.79752\"%0A width=\"4.229713\"%0A height=\"6.4053884\"%0A id=\"rect4563-2\"%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 125,56 138.77027,56.095 132,64 Z\"%0A id=\"path4613\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615\"%0A d=\"M 149,64 162.77027,63.905 156,56 Z\"%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"54\"%0A y=\"53\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4638\" />%0A <rect%0A id=\"svg_1-7-2-24\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-56\"%0A x=\"53\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"53\"%0A y=\"-66\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4657\" />%0A <rect%0A id=\"rect4659\"%0A height=\"0.99999291\"%0A width=\"11.999999\"%0A y=\"57\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"88.000122\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4661\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"76.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4663\" />%0A <rect%0A id=\"rect4665\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"76.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A id=\"rect4667\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"82.000122\"%0A x=\"80.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"85.000008\"%0A y=\"82.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4669\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"88.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4671\" />%0A <rect%0A id=\"rect4673\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"88.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <circle%0A r=\"4.7438836\"%0A cy=\"81.939331\"%0A cx=\"110.06081\"%0A id=\"circle4675\"%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%23d3d3d3;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\"%0A id=\"rect4677\"%0A height=\"6.4053884\"%0A width=\"4.229713\"%0A y=\"-14.826816\"%0A x=\"133.6163\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:%23d3d3d3;stroke-width:0;stroke-opacity:1\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4679\"%0A d=\"m 125,80.000005 13.77027,0.09499 L 132,87.999992 Z\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 149,88.0002 162.77027,87.9052 156,80.0002 Z\"%0A id=\"path4681\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <rect%0A id=\"rect4683\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"77.000122\"%0A x=\"54\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"77.000122\"%0A y=\"-56\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4685\" />%0A <rect%0A id=\"rect4687\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-66\"%0A x=\"77.000122\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"81.000122\"%0A width=\"11.999999\"%0A height=\"0.99999291\"%0A id=\"rect4689\" />%0A <rect%0A id=\"rect4761-1\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"101\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-0\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"105\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-7\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"109\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1\"%0A height=\"1.9999945\"%0A width=\"12\"%0A y=\"125\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"137\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"129\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4-3\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"133\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,100.0254 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,100.5991 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1452 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533865,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550756,0 6.710442,-2.4113 7.650391,-5.9414 0.939949,-3.5301 -0.618463,-7.2736 -3.710938,-9.0703 -1.159678,-0.6738 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,99.9629 c -1.270084,0.039 -2.541493,0.3887 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5402 -3.710937,9.0703 0.939949,3.5301 4.09768,5.9414 7.648437,5.9414 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4056 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,100 0,2 -2.4999996,0 L 12,107 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A id=\"path3055-0-77\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9850574,108.015 14.0298856,-0.03\"%0A id=\"path5244-5-0-5\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9849874,132.015 14.0298866,-0.03\"%0A id=\"path5244-5-0-5-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,123.9629 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,124.5366 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1453 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533864,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550757,0 6.710442,-2.4093 7.650391,-5.9394 0.939949,-3.5301 -0.618463,-7.2756 -3.710938,-9.0723 -1.159678,-0.6737 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138-12\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,123.9629 c -1.270084,0.039 -2.541493,0.3888 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5422 -3.710937,9.0723 0.939949,3.5301 4.09768,5.9394 7.648437,5.9394 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4055 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1-3\" />%0A <path%0A id=\"path6191\"%0A d=\"m 10.5,116 0,-2 -2.4999996,0 L 12,109 l 4,5 -2.5,0 0,2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,129 0,-2 -2.4999996,0 L 12,122 l 4,5 -2.5,0 0,2 -3,0 z\"%0A id=\"path6193\" />%0A <path%0A id=\"path6195\"%0A d=\"m 10.5,135 0,2 -2.4999996,0 L 12,142 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4500\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073242 -3.833708,2.213392 -3.8337072,2.213393 0,-4.426785 0,-4.426784 3.8337082,2.213392 z\"%0A inkscape:transform-center-x=\"-1.2779026\" />%0A <path%0A inkscape:transform-center-x=\"1.277902\"%0A d=\"m -31.500004,60.073242 -3.833708,2.213392 -3.833707,2.213393 0,-4.426785 0,-4.426784 3.833707,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:cx=\"-36.611614\"%0A sodipodi:sides=\"3\"%0A id=\"path4502\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"scale(-1,1)\" />%0A <path%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:sides=\"3\"%0A id=\"path4504\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"matrix(0,1,-1,0,72.0074,71.7877)\"%0A inkscape:transform-center-y=\"1.2779029\" />%0A <path%0A inkscape:transform-center-y=\"-1.2779026\"%0A transform=\"matrix(0,-1,-1,0,96,96)\"%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4506\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615-5\"%0A d=\"m 171.82574,65.174193 16.34854,0 -8.17427,-13.348454 z\"%0A style=\"fill:%23fbb917;fill-opacity:1;fill-rule:evenodd;stroke:%23fbb917;stroke-width:1.65161395;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,55 0,6 2,0 0,-6\"%0A id=\"path4300\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,62 0,2 2,0 0,-2\"%0A id=\"path4300-6\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:%23ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:0.8\"%0A d=\"M 99.994369,113.0221 102,114.98353 l 7,-6.9558 3,0.97227 2,-1 1,-2 0,-3 -3,3 -3,-3 3,-3 -3,0 -2,1 -1,2 0.99437,3.0221 z\"%0A id=\"path4268\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccccccccc\" />%0A <rect%0A id=\"rect4175-3-5\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"220\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <path%0A style=\"fill:%23ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 234,6 0,2 -5,5 0,5 -2,0 0,-5 -5,-5 0,-2\"%0A id=\"path3546\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <g%0A transform=\"matrix(1.3333328,0,0,-1.5999992,-139.9999,127.19999)\"%0A id=\"g4383-6\">%0A <rect%0A id=\"rect4385-2\"%0A height=\"1.2499905\"%0A width=\"5.9999924\"%0A y=\"12.625005\"%0A x=\"198.00002\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"15.125007\"%0A width=\"7.4999928\"%0A height=\"1.2499949\"%0A id=\"rect4387-9\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"7.6250024\"%0A width=\"2.9999909\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"10.125004\"%0A width=\"4.4999919\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-9\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 207.00001,16.375004 0,-5.625005 -2.25,0 3,-3.1250014 3,3.1250014 -2.25,0 0,5.625005 -1.5,0\"%0A id=\"path4402\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A </g>%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 164,100 0,3 -6,6 0,7 -4,0 0,-7 -6,-6 0,-3\"%0A id=\"path3546-2-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"28\"%0A x=\"4\" />%0A <path%0A sodipodi:nodetypes=\"ccccccccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4402-5-7\"%0A d=\"m 15,41 0,-7 -4,0 0,3 -5,-4 5,-4 0,3 6,0 0,9\"%0A style=\"fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\" />%0A</svg>%0A');background-position:-72px -72px;cursor:move}::ng-deep div.jsoneditor-tree :focus{outline:0}::ng-deep div.jsoneditor-tree div.jsoneditor-show-more{display:inline-block;padding:3px 4px;margin:2px 0;background-color:#e5e5e5;border-radius:3px;color:gray;font-family:arial,sans-serif;font-size:14px}::ng-deep div.jsoneditor-tree div.jsoneditor-show-more a{display:inline-block;color:gray}::ng-deep div.jsoneditor-tree div.jsoneditor-color{display:inline-block;width:12px;height:12px;margin:4px;border:1px solid grey;cursor:pointer}::ng-deep div.jsoneditor-tree div.jsoneditor-color.jsoneditor-color-readonly{cursor:inherit}::ng-deep div.jsoneditor-tree div.jsoneditor-date{background:#a1a1a1;color:#fff;font-family:arial,sans-serif;border-radius:3px;display:inline-block;padding:3px;margin:0 3px}::ng-deep div.jsoneditor-tree table.jsoneditor-tree{border-collapse:collapse;border-spacing:0;width:100%}::ng-deep div.jsoneditor-tree .jsoneditor-button{display:block}::ng-deep div.jsoneditor-tree .jsoneditor-button.jsoneditor-schema-error{width:24px;height:24px;padding:0;margin:0 4px 0 0;background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A width=\"240\"%0A height=\"144\"%0A id=\"svg4136\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"jsoneditor-icons.svg\">%0A <title%0A id=\"title6512\">JSON Editor Icons</title>%0A <metadata%0A id=\"metadata4148\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title>JSON Editor Icons</dc:title>%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4146\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ff63ff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1026\"%0A id=\"namedview4144\"%0A showgrid=\"true\"%0A inkscape:zoom=\"4\"%0A inkscape:cx=\"13.229181\"%0A inkscape:cy=\"119.82429\"%0A inkscape:window-x=\"0\"%0A inkscape:window-y=\"0\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4136\"%0A showguides=\"false\"%0A borderlayer=\"false\"%0A inkscape:showpageshadow=\"true\"%0A showborder=\"true\">%0A <inkscape:grid%0A type=\"xygrid\"%0A id=\"grid4640\"%0A empspacing=\"24\" />%0A </sodipodi:namedview>%0A <!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"4\" />%0A <rect%0A id=\"svg_1-7\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"28.000006\"%0A style=\"fill:%23ec3f29;fill-opacity:0.94117647;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A x=\"52.000004\"%0A y=\"3.999995\"%0A width=\"16\"%0A height=\"16\"%0A id=\"rect4165\" />%0A <rect%0A id=\"rect4175\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.9999852\"%0A x=\"172.00002\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4175-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"196\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <g%0A id=\"g4299\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <g%0A id=\"g4299-3\"%0A transform=\"matrix(0.70710678,-0.70710678,0.70710678,0.70710678,19.029435,12.000001)\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1-0\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1-9\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <rect%0A id=\"svg_1-7-5\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"7.0000048\"%0A x=\"55.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A x=\"58\"%0A y=\"10.00001\"%0A width=\"6.9999909\"%0A height=\"6.9999905\"%0A id=\"rect4354\" />%0A <rect%0A id=\"svg_1-7-5-7\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"10.000005\"%0A x=\"58.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%233c80df;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647\" />%0A <g%0A id=\"g4378\">%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"10.999999\"%0A width=\"7.9999909\"%0A height=\"1.9999965\"%0A id=\"svg_1-7-5-3\" />%0A <rect%0A id=\"rect4374\"%0A height=\"1.9999946\"%0A width=\"11.999995\"%0A y=\"7.0000005\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A id=\"rect4376\"%0A height=\"1.9999995\"%0A width=\"3.9999928\"%0A y=\"14.999996\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A </g>%0A <g%0A transform=\"matrix(1,0,0,-1,-23.999995,23.999995)\"%0A id=\"g4383\">%0A <rect%0A id=\"rect4385\"%0A height=\"1.9999965\"%0A width=\"7.9999909\"%0A y=\"10.999999\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"7.0000005\"%0A width=\"11.999995\"%0A height=\"1.9999946\"%0A id=\"rect4387\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"14.999996\"%0A width=\"3.9999928\"%0A height=\"1.9999995\"%0A id=\"rect4389\" />%0A </g>%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-4\"%0A width=\"16\"%0A height=\"16\"%0A x=\"76\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 85.10447,6.0157384 -0.0156,1.4063 c 3.02669,-0.2402 0.33008,3.6507996 2.48438,4.5780996 -2.18694,1.0938 0.49191,4.9069 -2.45313,4.5781 l -0.0156,1.4219 c 5.70828,0.559 1.03264,-5.1005 4.70313,-5.2656 l 0,-1.4063 c -3.61303,-0.027 1.11893,-5.7069996 -4.70313,-5.3124996 z\"%0A id=\"path4351\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 82.78125,5.9984384 0.0156,1.4063 c -3.02668,-0.2402 -0.33007,3.6506996 -2.48437,4.5780996 2.18694,1.0938 -0.49192,4.9069 2.45312,4.5781 l 0.0156,1.4219 c -5.70827,0.559 -1.03263,-5.1004 -4.70312,-5.2656 l 0,-1.4063 c 3.61303,-0.027 -1.11894,-5.7070996 4.70312,-5.3124996 z\"%0A id=\"path4351-9\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-25\"%0A width=\"16\"%0A height=\"16\"%0A x=\"100\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 103.719,5.6719384 0,12.7187996 3.03125,0 0,-1.5313 -1.34375,0 0,-9.6249996 1.375,0 0,-1.5625 z\"%0A id=\"path2987\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 112.2185,5.6721984 0,12.7187996 -3.03125,0 0,-1.5313 1.34375,0 0,-9.6249996 -1.375,0 0,-1.5625 z\"%0A id=\"path2987-1\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-73\"%0A width=\"16\"%0A height=\"16\"%0A x=\"124\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 126.2824,17.602938 1.78957,0 1.14143,-2.8641 5.65364,0 1.14856,2.8641 1.76565,0 -4.78687,-11.1610996 -1.91903,0 z\"%0A id=\"path3780\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccc\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A d=\"m 129.72704,13.478838 4.60852,0.01 -2.30426,-5.5497996 z\"%0A id=\"path3782\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-35\"%0A width=\"16\"%0A height=\"16\"%0A x=\"148\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 156.47655,5.8917384 0,2.1797 0.46093,2.3983996 1.82813,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 152.51561,5.8906384 0,2.1797 0.46094,2.3983996 1.82812,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <rect%0A id=\"svg_1-7-2\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"64\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"svg_1-7-2-2\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"52\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"52\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4561\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"80.000008\"%0A y=\"58\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4563\" />%0A <rect%0A id=\"rect4565\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"58\"%0A x=\"85.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4567\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"64\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"64\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4569\" />%0A <circle%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4571\"%0A cx=\"110.06081\"%0A cy=\"57.939209\"%0A r=\"4.7438836\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"116.64566\"%0A y=\"-31.79752\"%0A width=\"4.229713\"%0A height=\"6.4053884\"%0A id=\"rect4563-2\"%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 125,56 138.77027,56.095 132,64 Z\"%0A id=\"path4613\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615\"%0A d=\"M 149,64 162.77027,63.905 156,56 Z\"%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"54\"%0A y=\"53\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4638\" />%0A <rect%0A id=\"svg_1-7-2-24\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-56\"%0A x=\"53\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"53\"%0A y=\"-66\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4657\" />%0A <rect%0A id=\"rect4659\"%0A height=\"0.99999291\"%0A width=\"11.999999\"%0A y=\"57\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"88.000122\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4661\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"76.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4663\" />%0A <rect%0A id=\"rect4665\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"76.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A id=\"rect4667\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"82.000122\"%0A x=\"80.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"85.000008\"%0A y=\"82.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4669\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"88.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4671\" />%0A <rect%0A id=\"rect4673\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"88.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <circle%0A r=\"4.7438836\"%0A cy=\"81.939331\"%0A cx=\"110.06081\"%0A id=\"circle4675\"%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%23d3d3d3;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\"%0A id=\"rect4677\"%0A height=\"6.4053884\"%0A width=\"4.229713\"%0A y=\"-14.826816\"%0A x=\"133.6163\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:%23d3d3d3;stroke-width:0;stroke-opacity:1\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4679\"%0A d=\"m 125,80.000005 13.77027,0.09499 L 132,87.999992 Z\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 149,88.0002 162.77027,87.9052 156,80.0002 Z\"%0A id=\"path4681\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <rect%0A id=\"rect4683\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"77.000122\"%0A x=\"54\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"77.000122\"%0A y=\"-56\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4685\" />%0A <rect%0A id=\"rect4687\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-66\"%0A x=\"77.000122\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"81.000122\"%0A width=\"11.999999\"%0A height=\"0.99999291\"%0A id=\"rect4689\" />%0A <rect%0A id=\"rect4761-1\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"101\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-0\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"105\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-7\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"109\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1\"%0A height=\"1.9999945\"%0A width=\"12\"%0A y=\"125\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"137\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"129\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4-3\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"133\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,100.0254 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,100.5991 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1452 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533865,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550756,0 6.710442,-2.4113 7.650391,-5.9414 0.939949,-3.5301 -0.618463,-7.2736 -3.710938,-9.0703 -1.159678,-0.6738 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,99.9629 c -1.270084,0.039 -2.541493,0.3887 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5402 -3.710937,9.0703 0.939949,3.5301 4.09768,5.9414 7.648437,5.9414 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4056 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,100 0,2 -2.4999996,0 L 12,107 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A id=\"path3055-0-77\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9850574,108.015 14.0298856,-0.03\"%0A id=\"path5244-5-0-5\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9849874,132.015 14.0298866,-0.03\"%0A id=\"path5244-5-0-5-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,123.9629 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,124.5366 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1453 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533864,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550757,0 6.710442,-2.4093 7.650391,-5.9394 0.939949,-3.5301 -0.618463,-7.2756 -3.710938,-9.0723 -1.159678,-0.6737 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138-12\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,123.9629 c -1.270084,0.039 -2.541493,0.3888 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5422 -3.710937,9.0723 0.939949,3.5301 4.09768,5.9394 7.648437,5.9394 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4055 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1-3\" />%0A <path%0A id=\"path6191\"%0A d=\"m 10.5,116 0,-2 -2.4999996,0 L 12,109 l 4,5 -2.5,0 0,2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,129 0,-2 -2.4999996,0 L 12,122 l 4,5 -2.5,0 0,2 -3,0 z\"%0A id=\"path6193\" />%0A <path%0A id=\"path6195\"%0A d=\"m 10.5,135 0,2 -2.4999996,0 L 12,142 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4500\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073242 -3.833708,2.213392 -3.8337072,2.213393 0,-4.426785 0,-4.426784 3.8337082,2.213392 z\"%0A inkscape:transform-center-x=\"-1.2779026\" />%0A <path%0A inkscape:transform-center-x=\"1.277902\"%0A d=\"m -31.500004,60.073242 -3.833708,2.213392 -3.833707,2.213393 0,-4.426785 0,-4.426784 3.833707,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:cx=\"-36.611614\"%0A sodipodi:sides=\"3\"%0A id=\"path4502\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"scale(-1,1)\" />%0A <path%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:sides=\"3\"%0A id=\"path4504\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"matrix(0,1,-1,0,72.0074,71.7877)\"%0A inkscape:transform-center-y=\"1.2779029\" />%0A <path%0A inkscape:transform-center-y=\"-1.2779026\"%0A transform=\"matrix(0,-1,-1,0,96,96)\"%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4506\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615-5\"%0A d=\"m 171.82574,65.174193 16.34854,0 -8.17427,-13.348454 z\"%0A style=\"fill:%23fbb917;fill-opacity:1;fill-rule:evenodd;stroke:%23fbb917;stroke-width:1.65161395;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,55 0,6 2,0 0,-6\"%0A id=\"path4300\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,62 0,2 2,0 0,-2\"%0A id=\"path4300-6\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:%23ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:0.8\"%0A d=\"M 99.994369,113.0221 102,114.98353 l 7,-6.9558 3,0.97227 2,-1 1,-2 0,-3 -3,3 -3,-3 3,-3 -3,0 -2,1 -1,2 0.99437,3.0221 z\"%0A id=\"path4268\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccccccccc\" />%0A <rect%0A id=\"rect4175-3-5\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"220\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <path%0A style=\"fill:%23ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 234,6 0,2 -5,5 0,5 -2,0 0,-5 -5,-5 0,-2\"%0A id=\"path3546\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <g%0A transform=\"matrix(1.3333328,0,0,-1.5999992,-139.9999,127.19999)\"%0A id=\"g4383-6\">%0A <rect%0A id=\"rect4385-2\"%0A height=\"1.2499905\"%0A width=\"5.9999924\"%0A y=\"12.625005\"%0A x=\"198.00002\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"15.125007\"%0A width=\"7.4999928\"%0A height=\"1.2499949\"%0A id=\"rect4387-9\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"7.6250024\"%0A width=\"2.9999909\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"10.125004\"%0A width=\"4.4999919\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-9\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 207.00001,16.375004 0,-5.625005 -2.25,0 3,-3.1250014 3,3.1250014 -2.25,0 0,5.625005 -1.5,0\"%0A id=\"path4402\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A </g>%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 164,100 0,3 -6,6 0,7 -4,0 0,-7 -6,-6 0,-3\"%0A id=\"path3546-2-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"28\"%0A x=\"4\" />%0A <path%0A sodipodi:nodetypes=\"ccccccccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4402-5-7\"%0A d=\"m 15,41 0,-7 -4,0 0,3 -5,-4 5,-4 0,3 6,0 0,9\"%0A style=\"fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\" />%0A</svg>%0A');background-position:-168px -48px;background-color:transparent}::ng-deep div.jsoneditor-outer{position:static;width:100%;height:100%;margin:0;padding:0;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}::ng-deep div.jsoneditor-outer.has-nav-bar{margin-top:-26px;padding-top:26px}::ng-deep div.jsoneditor-outer.has-nav-bar.has-main-menu-bar{margin-top:-61px;padding-top:61px}::ng-deep div.jsoneditor-outer.has-status-bar{margin-bottom:-26px;padding-bottom:26px}::ng-deep div.jsoneditor-outer.has-main-menu-bar{margin-top:-35px;padding-top:35px}::ng-deep div.jsoneditor-busy{position:absolute;top:15%;left:0;box-sizing:border-box;width:100%;text-align:center;display:none}::ng-deep div.jsoneditor-busy span{background-color:#ffffab;border:1px solid #fe0;border-radius:3px;padding:5px 15px;box-shadow:0 0 5px #0006}::ng-deep div.jsoneditor-field.jsoneditor-empty:after,::ng-deep div.jsoneditor-value.jsoneditor-empty:after{pointer-events:none;color:#d3d3d3;font-size:8pt}::ng-deep a.jsoneditor-value.jsoneditor-url,::ng-deep div.jsoneditor-value.jsoneditor-url{color:#006000;text-decoration:underline}::ng-deep a.jsoneditor-value.jsoneditor-url{display:inline-block;padding:2px;margin:2px}::ng-deep a.jsoneditor-value.jsoneditor-url:focus,::ng-deep a.jsoneditor-value.jsoneditor-url:hover{color:#ee422e}::ng-deep div.jsoneditor-field.jsoneditor-highlight,::ng-deep div.jsoneditor-field[contenteditable=true]:focus,::ng-deep div.jsoneditor-field[contenteditable=true]:hover,::ng-deep div.jsoneditor-value.jsoneditor-highlight,::ng-deep div.jsoneditor-value[contenteditable=true]:focus,::ng-deep div.jsoneditor-value[contenteditable=true]:hover{background-color:#ffffab;border:1px solid #fe0;border-radius:2px}::ng-deep div.jsoneditor-field.jsoneditor-highlight-active,::ng-deep div.jsoneditor-field.jsoneditor-highlight-active:focus,::ng-deep div.jsoneditor-field.jsoneditor-highlight-active:hover,::ng-deep div.jsoneditor-value.jsoneditor-highlight-active,::ng-deep div.jsoneditor-value.jsoneditor-highlight-active:focus,::ng-deep div.jsoneditor-value.jsoneditor-highlight-active:hover{background-color:#fe0;border:1px solid #ffc700;border-radius:2px}::ng-deep div.jsoneditor-value.jsoneditor-array,::ng-deep div.jsoneditor-value.jsoneditor-object{min-width:16px}::ng-deep div.jsoneditor-tree button.jsoneditor-contextmenu-button.jsoneditor-selected,::ng-deep div.jsoneditor-tree button.jsoneditor-contextmenu-button:focus,::ng-deep div.jsoneditor-tree button.jsoneditor-contextmenu-button:hover,::ng-deep tr.jsoneditor-selected.jsoneditor-first button.jsoneditor-contextmenu-button{background-position:-48px -48px}::ng-deep div.jsoneditor-tree div.jsoneditor-show-more a:focus,::ng-deep div.jsoneditor-tree div.jsoneditor-show-more a:hover{color:#ee422e}::ng-deep .ace-jsoneditor,::ng-deep textarea.jsoneditor-text{min-height:150px}::ng-deep .ace-jsoneditor.ace_editor,::ng-deep textarea.jsoneditor-text.ace_editor{font-family:consolas,menlo,monaco,Ubuntu Mono,source-code-pro,monospace}::ng-deep textarea.jsoneditor-text{width:100%;height:100%;margin:0;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;outline-width:0;border:none;background-color:#fff;resize:none}::ng-deep tr.jsoneditor-highlight,::ng-deep tr.jsoneditor-selected{background-color:#d3d3d3}::ng-deep tr.jsoneditor-selected button.jsoneditor-contextmenu-button,::ng-deep tr.jsoneditor-selected button.jsoneditor-dragarea{visibility:hidden}::ng-deep tr.jsoneditor-selected.jsoneditor-first button.jsoneditor-contextmenu-button,::ng-deep tr.jsoneditor-selected.jsoneditor-first button.jsoneditor-dragarea{visibility:visible}::ng-deep div.jsoneditor-tree button.jsoneditor-dragarea:focus,::ng-deep div.jsoneditor-tree button.jsoneditor-dragarea:hover,::ng-deep tr.jsoneditor-selected.jsoneditor-first button.jsoneditor-dragarea{background-position:-72px -48px}::ng-deep div.jsoneditor td,::ng-deep div.jsoneditor th,::ng-deep div.jsoneditor tr{padding:0;margin:0}::ng-deep .jsoneditor-popover,::ng-deep .jsoneditor-schema-error,::ng-deep div.jsoneditor td,::ng-deep div.jsoneditor textarea,::ng-deep div.jsoneditor th,::ng-deep div.jsoneditor-field,::ng-deep div.jsoneditor-value,::ng-deep pre.jsoneditor-preview{font-family:consolas,menlo,monaco,Ubuntu Mono,source-code-pro,monospace;font-size:14px;color:#1a1a1a}::ng-deep .jsoneditor-schema-error{cursor:default;display:inline-block;height:24px;line-height:24px;position:relative;text-align:center;width:24px}::ng-deep .jsoneditor-popover{background-color:#4c4c4c;border-radius:3px;box-shadow:0 0 5px #0006;color:#fff;padding:7px 10px;position:absolute;cursor:auto;width:200px}::ng-deep .jsoneditor-popover.jsoneditor-above{bottom:32px;left:-98px}::ng-deep .jsoneditor-popover.jsoneditor-above:before{border-top:7px solid #4c4c4c;bottom:-7px}::ng-deep .jsoneditor-popover.jsoneditor-below{top:32px;left:-98px}::ng-deep .jsoneditor-popover.jsoneditor-below:before{border-bottom:7px solid #4c4c4c;top:-7px}::ng-deep .jsoneditor-popover.jsoneditor-left{top:-7px;right:32px}::ng-deep .jsoneditor-popover.jsoneditor-left:before{border-left:7px solid #4c4c4c;border-top:7px solid transparent;border-bottom:7px solid transparent;content:\"\";top:19px;right:-14px;left:inherit;margin-left:inherit;margin-top:-7px;position:absolute}::ng-deep .jsoneditor-popover.jsoneditor-right{top:-7px;left:32px}::ng-deep .jsoneditor-popover.jsoneditor-right:before{border-right:7px solid #4c4c4c;border-top:7px solid transparent;border-bottom:7px solid transparent;content:\"\";top:19px;left:-14px;margin-left:inherit;margin-top:-7px;position:absolute}::ng-deep .jsoneditor-popover:before{border-right:7px solid transparent;border-left:7px solid transparent;content:\"\";display:block;left:50%;margin-left:-7px;position:absolute}::ng-deep .jsoneditor-text-errors tr.jump-to-line:hover{text-decoration:underline;cursor:pointer}::ng-deep .jsoneditor-schema-error:focus .jsoneditor-popover,::ng-deep .jsoneditor-schema-error:hover .jsoneditor-popover{display:block;animation:fade-in .3s linear 1,move-up .3s linear 1}@keyframes fade-in{0%{opacity:0}to{opacity:1}}::ng-deep .jsoneditor .jsoneditor-validation-errors-container{max-height:130px;overflow-y:auto}::ng-deep .jsoneditor .jsoneditor-validation-errors{width:100%;overflow:hidden}::ng-deep .jsoneditor .jsoneditor-additional-errors{position:absolute;margin:auto;bottom:31px;left:calc(50% - 92px);color:gray;background-color:#ebebeb;padding:7px 15px;border-radius:8px}::ng-deep .jsoneditor .jsoneditor-additional-errors.visible{visibility:visible;opacity:1;transition:opacity 2s linear}::ng-deep .jsoneditor .jsoneditor-additional-errors.hidden{visibility:hidden;opacity:0;transition:visibility 0s 2s,opacity 2s linear}::ng-deep .jsoneditor .jsoneditor-text-errors{width:100%;border-collapse:collapse;border-top:1px solid #ffc700}::ng-deep .jsoneditor .jsoneditor-text-errors td{padding:3px 6px;vertical-align:middle}::ng-deep .jsoneditor .jsoneditor-text-errors td pre{margin:0;white-space:pre-wrap}::ng-deep .jsoneditor .jsoneditor-text-errors tr{background-color:#ffffab}::ng-deep .jsoneditor .jsoneditor-text-errors tr.parse-error{background-color:#ee2e2e70}::ng-deep .jsoneditor-text-errors .jsoneditor-schema-error{border:none;width:24px;height:24px;padding:0;margin:0 4px 0 0;cursor:pointer}::ng-deep .jsoneditor-text-errors tr .jsoneditor-schema-error{background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A width=\"240\"%0A height=\"144\"%0A id=\"svg4136\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"jsoneditor-icons.svg\">%0A <title%0A id=\"title6512\">JSON Editor Icons</title>%0A <metadata%0A id=\"metadata4148\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title>JSON Editor Icons</dc:title>%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4146\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ff63ff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1026\"%0A id=\"namedview4144\"%0A showgrid=\"true\"%0A inkscape:zoom=\"4\"%0A inkscape:cx=\"13.229181\"%0A inkscape:cy=\"119.82429\"%0A inkscape:window-x=\"0\"%0A inkscape:window-y=\"0\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4136\"%0A showguides=\"false\"%0A borderlayer=\"false\"%0A inkscape:showpageshadow=\"true\"%0A showborder=\"true\">%0A <inkscape:grid%0A type=\"xygrid\"%0A id=\"grid4640\"%0A empspacing=\"24\" />%0A </sodipodi:namedview>%0A <!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"4\" />%0A <rect%0A id=\"svg_1-7\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"28.000006\"%0A style=\"fill:%23ec3f29;fill-opacity:0.94117647;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A x=\"52.000004\"%0A y=\"3.999995\"%0A width=\"16\"%0A height=\"16\"%0A id=\"rect4165\" />%0A <rect%0A id=\"rect4175\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.9999852\"%0A x=\"172.00002\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4175-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"196\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <g%0A id=\"g4299\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <g%0A id=\"g4299-3\"%0A transform=\"matrix(0.70710678,-0.70710678,0.70710678,0.70710678,19.029435,12.000001)\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1-0\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1-9\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <rect%0A id=\"svg_1-7-5\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"7.0000048\"%0A x=\"55.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A x=\"58\"%0A y=\"10.00001\"%0A width=\"6.9999909\"%0A height=\"6.9999905\"%0A id=\"rect4354\" />%0A <rect%0A id=\"svg_1-7-5-7\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"10.000005\"%0A x=\"58.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%233c80df;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647\" />%0A <g%0A id=\"g4378\">%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"10.999999\"%0A width=\"7.9999909\"%0A height=\"1.9999965\"%0A id=\"svg_1-7-5-3\" />%0A <rect%0A id=\"rect4374\"%0A height=\"1.9999946\"%0A width=\"11.999995\"%0A y=\"7.0000005\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A id=\"rect4376\"%0A height=\"1.9999995\"%0A width=\"3.9999928\"%0A y=\"14.999996\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A </g>%0A <g%0A transform=\"matrix(1,0,0,-1,-23.999995,23.999995)\"%0A id=\"g4383\">%0A <rect%0A id=\"rect4385\"%0A height=\"1.9999965\"%0A width=\"7.9999909\"%0A y=\"10.999999\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"7.0000005\"%0A width=\"11.999995\"%0A height=\"1.9999946\"%0A id=\"rect4387\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"14.999996\"%0A width=\"3.9999928\"%0A height=\"1.9999995\"%0A id=\"rect4389\" />%0A </g>%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-4\"%0A width=\"16\"%0A height=\"16\"%0A x=\"76\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 85.10447,6.0157384 -0.0156,1.4063 c 3.02669,-0.2402 0.33008,3.6507996 2.48438,4.5780996 -2.18694,1.0938 0.49191,4.9069 -2.45313,4.5781 l -0.0156,1.4219 c 5.70828,0.559 1.03264,-5.1005 4.70313,-5.2656 l 0,-1.4063 c -3.61303,-0.027 1.11893,-5.7069996 -4.70313,-5.3124996 z\"%0A id=\"path4351\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 82.78125,5.9984384 0.0156,1.4063 c -3.02668,-0.2402 -0.33007,3.6506996 -2.48437,4.5780996 2.18694,1.0938 -0.49192,4.9069 2.45312,4.5781 l 0.0156,1.4219 c -5.70827,0.559 -1.03263,-5.1004 -4.70312,-5.2656 l 0,-1.4063 c 3.61303,-0.027 -1.11894,-5.7070996 4.70312,-5.3124996 z\"%0A id=\"path4351-9\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-25\"%0A width=\"16\"%0A height=\"16\"%0A x=\"100\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 103.719,5.6719384 0,12.7187996 3.03125,0 0,-1.5313 -1.34375,0 0,-9.6249996 1.375,0 0,-1.5625 z\"%0A id=\"path2987\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 112.2185,5.6721984 0,12.7187996 -3.03125,0 0,-1.5313 1.34375,0 0,-9.6249996 -1.375,0 0,-1.5625 z\"%0A id=\"path2987-1\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-73\"%0A width=\"16\"%0A height=\"16\"%0A x=\"124\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 126.2824,17.602938 1.78957,0 1.14143,-2.8641 5.65364,0 1.14856,2.8641 1.76565,0 -4.78687,-11.1610996 -1.91903,0 z\"%0A id=\"path3780\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccc\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A d=\"m 129.72704,13.478838 4.60852,0.01 -2.30426,-5.5497996 z\"%0A id=\"path3782\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-35\"%0A width=\"16\"%0A height=\"16\"%0A x=\"148\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 156.47655,5.8917384 0,2.1797 0.46093,2.3983996 1.82813,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 152.51561,5.8906384 0,2.1797 0.46094,2.3983996 1.82812,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <rect%0A id=\"svg_1-7-2\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"64\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"svg_1-7-2-2\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"52\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"52\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4561\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"80.000008\"%0A y=\"58\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4563\" />%0A <rect%0A id=\"rect4565\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"58\"%0A x=\"85.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4567\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"64\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"64\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4569\" />%0A <circle%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4571\"%0A cx=\"110.06081\"%0A cy=\"57.939209\"%0A r=\"4.7438836\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"116.64566\"%0A y=\"-31.79752\"%0A width=\"4.229713\"%0A height=\"6.4053884\"%0A id=\"rect4563-2\"%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 125,56 138.77027,56.095 132,64 Z\"%0A id=\"path4613\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615\"%0A d=\"M 149,64 162.77027,63.905 156,56 Z\"%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"54\"%0A y=\"53\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4638\" />%0A <rect%0A id=\"svg_1-7-2-24\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-56\"%0A x=\"53\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"53\"%0A y=\"-66\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4657\" />%0A <rect%0A id=\"rect4659\"%0A height=\"0.99999291\"%0A width=\"11.999999\"%0A y=\"57\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"88.000122\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4661\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"76.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4663\" />%0A <rect%0A id=\"rect4665\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"76.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A id=\"rect4667\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"82.000122\"%0A x=\"80.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"85.000008\"%0A y=\"82.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4669\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"88.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4671\" />%0A <rect%0A id=\"rect4673\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"88.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <circle%0A r=\"4.7438836\"%0A cy=\"81.939331\"%0A cx=\"110.06081\"%0A id=\"circle4675\"%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%23d3d3d3;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\"%0A id=\"rect4677\"%0A height=\"6.4053884\"%0A width=\"4.229713\"%0A y=\"-14.826816\"%0A x=\"133.6163\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:%23d3d3d3;stroke-width:0;stroke-opacity:1\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4679\"%0A d=\"m 125,80.000005 13.77027,0.09499 L 132,87.999992 Z\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 149,88.0002 162.77027,87.9052 156,80.0002 Z\"%0A id=\"path4681\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <rect%0A id=\"rect4683\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"77.000122\"%0A x=\"54\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"77.000122\"%0A y=\"-56\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4685\" />%0A <rect%0A id=\"rect4687\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-66\"%0A x=\"77.000122\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"81.000122\"%0A width=\"11.999999\"%0A height=\"0.99999291\"%0A id=\"rect4689\" />%0A <rect%0A id=\"rect4761-1\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"101\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-0\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"105\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-7\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"109\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1\"%0A height=\"1.9999945\"%0A width=\"12\"%0A y=\"125\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"137\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"129\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4-3\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"133\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,100.0254 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,100.5991 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1452 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533865,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550756,0 6.710442,-2.4113 7.650391,-5.9414 0.939949,-3.5301 -0.618463,-7.2736 -3.710938,-9.0703 -1.159678,-0.6738 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,99.9629 c -1.270084,0.039 -2.541493,0.3887 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5402 -3.710937,9.0703 0.939949,3.5301 4.09768,5.9414 7.648437,5.9414 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4056 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,100 0,2 -2.4999996,0 L 12,107 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A id=\"path3055-0-77\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9850574,108.015 14.0298856,-0.03\"%0A id=\"path5244-5-0-5\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9849874,132.015 14.0298866,-0.03\"%0A id=\"path5244-5-0-5-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,123.9629 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,124.5366 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1453 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533864,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550757,0 6.710442,-2.4093 7.650391,-5.9394 0.939949,-3.5301 -0.618463,-7.2756 -3.710938,-9.0723 -1.159678,-0.6737 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138-12\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,123.9629 c -1.270084,0.039 -2.541493,0.3888 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5422 -3.710937,9.0723 0.939949,3.5301 4.09768,5.9394 7.648437,5.9394 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4055 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1-3\" />%0A <path%0A id=\"path6191\"%0A d=\"m 10.5,116 0,-2 -2.4999996,0 L 12,109 l 4,5 -2.5,0 0,2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,129 0,-2 -2.4999996,0 L 12,122 l 4,5 -2.5,0 0,2 -3,0 z\"%0A id=\"path6193\" />%0A <path%0A id=\"path6195\"%0A d=\"m 10.5,135 0,2 -2.4999996,0 L 12,142 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4500\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073242 -3.833708,2.213392 -3.8337072,2.213393 0,-4.426785 0,-4.426784 3.8337082,2.213392 z\"%0A inkscape:transform-center-x=\"-1.2779026\" />%0A <path%0A inkscape:transform-center-x=\"1.277902\"%0A d=\"m -31.500004,60.073242 -3.833708,2.213392 -3.833707,2.213393 0,-4.426785 0,-4.426784 3.833707,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:cx=\"-36.611614\"%0A sodipodi:sides=\"3\"%0A id=\"path4502\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"scale(-1,1)\" />%0A <path%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:sides=\"3\"%0A id=\"path4504\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"matrix(0,1,-1,0,72.0074,71.7877)\"%0A inkscape:transform-center-y=\"1.2779029\" />%0A <path%0A inkscape:transform-center-y=\"-1.2779026\"%0A transform=\"matrix(0,-1,-1,0,96,96)\"%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4506\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615-5\"%0A d=\"m 171.82574,65.174193 16.34854,0 -8.17427,-13.348454 z\"%0A style=\"fill:%23fbb917;fill-opacity:1;fill-rule:evenodd;stroke:%23fbb917;stroke-width:1.65161395;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,55 0,6 2,0 0,-6\"%0A id=\"path4300\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,62 0,2 2,0 0,-2\"%0A id=\"path4300-6\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:%23ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:0.8\"%0A d=\"M 99.994369,113.0221 102,114.98353 l 7,-6.9558 3,0.97227 2,-1 1,-2 0,-3 -3,3 -3,-3 3,-3 -3,0 -2,1 -1,2 0.99437,3.0221 z\"%0A id=\"path4268\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccccccccc\" />%0A <rect%0A id=\"rect4175-3-5\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"220\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <path%0A style=\"fill:%23ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 234,6 0,2 -5,5 0,5 -2,0 0,-5 -5,-5 0,-2\"%0A id=\"path3546\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <g%0A transform=\"matrix(1.3333328,0,0,-1.5999992,-139.9999,127.19999)\"%0A id=\"g4383-6\">%0A <rect%0A id=\"rect4385-2\"%0A height=\"1.2499905\"%0A width=\"5.9999924\"%0A y=\"12.625005\"%0A x=\"198.00002\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"15.125007\"%0A width=\"7.4999928\"%0A height=\"1.2499949\"%0A id=\"rect4387-9\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"7.6250024\"%0A width=\"2.9999909\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"10.125004\"%0A width=\"4.4999919\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-9\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 207.00001,16.375004 0,-5.625005 -2.25,0 3,-3.1250014 3,3.1250014 -2.25,0 0,5.625005 -1.5,0\"%0A id=\"path4402\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A </g>%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 164,100 0,3 -6,6 0,7 -4,0 0,-7 -6,-6 0,-3\"%0A id=\"path3546-2-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"28\"%0A x=\"4\" />%0A <path%0A sodipodi:nodetypes=\"ccccccccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4402-5-7\"%0A d=\"m 15,41 0,-7 -4,0 0,3 -5,-4 5,-4 0,3 6,0 0,9\"%0A style=\"fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\" />%0A</svg>%0A');background-position:-168px -48px;background-color:transparent}::ng-deep .jsoneditor-text-errors tr.parse-error .jsoneditor-schema-error{background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A width=\"240\"%0A height=\"144\"%0A id=\"svg4136\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"jsoneditor-icons.svg\">%0A <title%0A id=\"title6512\">JSON Editor Icons</title>%0A <metadata%0A id=\"metadata4148\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title>JSON Editor Icons</dc:title>%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4146\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ff63ff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1026\"%0A id=\"namedview4144\"%0A showgrid=\"true\"%0A inkscape:zoom=\"4\"%0A inkscape:cx=\"13.229181\"%0A inkscape:cy=\"119.82429\"%0A inkscape:window-x=\"0\"%0A inkscape:window-y=\"0\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4136\"%0A showguides=\"false\"%0A borderlayer=\"false\"%0A inkscape:showpageshadow=\"true\"%0A showborder=\"true\">%0A <inkscape:grid%0A type=\"xygrid\"%0A id=\"grid4640\"%0A empspacing=\"24\" />%0A </sodipodi:namedview>%0A <!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"4\" />%0A <rect%0A id=\"svg_1-7\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"28.000006\"%0A style=\"fill:%23ec3f29;fill-opacity:0.94117647;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A x=\"52.000004\"%0A y=\"3.999995\"%0A width=\"16\"%0A height=\"16\"%0A id=\"rect4165\" />%0A <rect%0A id=\"rect4175\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.9999852\"%0A x=\"172.00002\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4175-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"196\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <g%0A id=\"g4299\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <g%0A id=\"g4299-3\"%0A transform=\"matrix(0.70710678,-0.70710678,0.70710678,0.70710678,19.029435,12.000001)\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1-0\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1-9\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <rect%0A id=\"svg_1-7-5\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"7.0000048\"%0A x=\"55.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A x=\"58\"%0A y=\"10.00001\"%0A width=\"6.9999909\"%0A height=\"6.9999905\"%0A id=\"rect4354\" />%0A <rect%0A id=\"svg_1-7-5-7\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"10.000005\"%0A x=\"58.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%233c80df;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647\" />%0A <g%0A id=\"g4378\">%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"10.999999\"%0A width=\"7.9999909\"%0A height=\"1.9999965\"%0A id=\"svg_1-7-5-3\" />%0A <rect%0A id=\"rect4374\"%0A height=\"1.9999946\"%0A width=\"11.999995\"%0A y=\"7.0000005\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A id=\"rect4376\"%0A height=\"1.9999995\"%0A width=\"3.9999928\"%0A y=\"14.999996\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A </g>%0A <g%0A transform=\"matrix(1,0,0,-1,-23.999995,23.999995)\"%0A id=\"g4383\">%0A <rect%0A id=\"rect4385\"%0A height=\"1.9999965\"%0A width=\"7.9999909\"%0A y=\"10.999999\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"7.0000005\"%0A width=\"11.999995\"%0A height=\"1.9999946\"%0A id=\"rect4387\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"14.999996\"%0A width=\"3.9999928\"%0A height=\"1.9999995\"%0A id=\"rect4389\" />%0A </g>%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-4\"%0A width=\"16\"%0A height=\"16\"%0A x=\"76\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 85.10447,6.0157384 -0.0156,1.4063 c 3.02669,-0.2402 0.33008,3.6507996 2.48438,4.5780996 -2.18694,1.0938 0.49191,4.9069 -2.45313,4.5781 l -0.0156,1.4219 c 5.70828,0.559 1.03264,-5.1005 4.70313,-5.2656 l 0,-1.4063 c -3.61303,-0.027 1.11893,-5.7069996 -4.70313,-5.3124996 z\"%0A id=\"path4351\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 82.78125,5.9984384 0.0156,1.4063 c -3.02668,-0.2402 -0.33007,3.6506996 -2.48437,4.5780996 2.18694,1.0938 -0.49192,4.9069 2.45312,4.5781 l 0.0156,1.4219 c -5.70827,0.559 -1.03263,-5.1004 -4.70312,-5.2656 l 0,-1.4063 c 3.61303,-0.027 -1.11894,-5.7070996 4.70312,-5.3124996 z\"%0A id=\"path4351-9\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-25\"%0A width=\"16\"%0A height=\"16\"%0A x=\"100\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 103.719,5.6719384 0,12.7187996 3.03125,0 0,-1.5313 -1.34375,0 0,-9.6249996 1.375,0 0,-1.5625 z\"%0A id=\"path2987\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 112.2185,5.6721984 0,12.7187996 -3.03125,0 0,-1.5313 1.34375,0 0,-9.6249996 -1.375,0 0,-1.5625 z\"%0A id=\"path2987-1\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-73\"%0A width=\"16\"%0A height=\"16\"%0A x=\"124\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 126.2824,17.602938 1.78957,0 1.14143,-2.8641 5.65364,0 1.14856,2.8641 1.76565,0 -4.78687,-11.1610996 -1.91903,0 z\"%0A id=\"path3780\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccc\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A d=\"m 129.72704,13.478838 4.60852,0.01 -2.30426,-5.5497996 z\"%0A id=\"path3782\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-35\"%0A width=\"16\"%0A height=\"16\"%0A x=\"148\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 156.47655,5.8917384 0,2.1797 0.46093,2.3983996 1.82813,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 152.51561,5.8906384 0,2.1797 0.46094,2.3983996 1.82812,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <rect%0A id=\"svg_1-7-2\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"64\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"svg_1-7-2-2\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"52\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"52\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4561\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"80.000008\"%0A y=\"58\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4563\" />%0A <rect%0A id=\"rect4565\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"58\"%0A x=\"85.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4567\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"64\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"64\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4569\" />%0A <circle%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4571\"%0A cx=\"110.06081\"%0A cy=\"57.939209\"%0A r=\"4.7438836\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"116.64566\"%0A y=\"-31.79752\"%0A width=\"4.229713\"%0A height=\"6.4053884\"%0A id=\"rect4563-2\"%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 125,56 138.77027,56.095 132,64 Z\"%0A id=\"path4613\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615\"%0A d=\"M 149,64 162.77027,63.905 156,56 Z\"%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"54\"%0A y=\"53\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4638\" />%0A <rect%0A id=\"svg_1-7-2-24\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-56\"%0A x=\"53\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"53\"%0A y=\"-66\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4657\" />%0A <rect%0A id=\"rect4659\"%0A height=\"0.99999291\"%0A width=\"11.999999\"%0A y=\"57\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"88.000122\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4661\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"76.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4663\" />%0A <rect%0A id=\"rect4665\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"76.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A id=\"rect4667\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"82.000122\"%0A x=\"80.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"85.000008\"%0A y=\"82.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4669\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"88.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4671\" />%0A <rect%0A id=\"rect4673\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"88.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <circle%0A r=\"4.7438836\"%0A cy=\"81.939331\"%0A cx=\"110.06081\"%0A id=\"circle4675\"%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%23d3d3d3;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\"%0A id=\"rect4677\"%0A height=\"6.4053884\"%0A width=\"4.229713\"%0A y=\"-14.826816\"%0A x=\"133.6163\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:%23d3d3d3;stroke-width:0;stroke-opacity:1\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4679\"%0A d=\"m 125,80.000005 13.77027,0.09499 L 132,87.999992 Z\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 149,88.0002 162.77027,87.9052 156,80.0002 Z\"%0A id=\"path4681\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <rect%0A id=\"rect4683\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"77.000122\"%0A x=\"54\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"77.000122\"%0A y=\"-56\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4685\" />%0A <rect%0A id=\"rect4687\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-66\"%0A x=\"77.000122\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"81.000122\"%0A width=\"11.999999\"%0A height=\"0.99999291\"%0A id=\"rect4689\" />%0A <rect%0A id=\"rect4761-1\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"101\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-0\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"105\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-7\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"109\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1\"%0A height=\"1.9999945\"%0A width=\"12\"%0A y=\"125\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"137\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"129\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4-3\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"133\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,100.0254 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,100.5991 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1452 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533865,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550756,0 6.710442,-2.4113 7.650391,-5.9414 0.939949,-3.5301 -0.618463,-7.2736 -3.710938,-9.0703 -1.159678,-0.6738 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,99.9629 c -1.270084,0.039 -2.541493,0.3887 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5402 -3.710937,9.0703 0.939949,3.5301 4.09768,5.9414 7.648437,5.9414 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4056 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,100 0,2 -2.4999996,0 L 12,107 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A id=\"path3055-0-77\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9850574,108.015 14.0298856,-0.03\"%0A id=\"path5244-5-0-5\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9849874,132.015 14.0298866,-0.03\"%0A id=\"path5244-5-0-5-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,123.9629 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,124.5366 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1453 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533864,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550757,0 6.710442,-2.4093 7.650391,-5.9394 0.939949,-3.5301 -0.618463,-7.2756 -3.710938,-9.0723 -1.159678,-0.6737 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138-12\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,123.9629 c -1.270084,0.039 -2.541493,0.3888 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5422 -3.710937,9.0723 0.939949,3.5301 4.09768,5.9394 7.648437,5.9394 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4055 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1-3\" />%0A <path%0A id=\"path6191\"%0A d=\"m 10.5,116 0,-2 -2.4999996,0 L 12,109 l 4,5 -2.5,0 0,2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,129 0,-2 -2.4999996,0 L 12,122 l 4,5 -2.5,0 0,2 -3,0 z\"%0A id=\"path6193\" />%0A <path%0A id=\"path6195\"%0A d=\"m 10.5,135 0,2 -2.4999996,0 L 12,142 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4500\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073242 -3.833708,2.213392 -3.8337072,2.213393 0,-4.426785 0,-4.426784 3.8337082,2.213392 z\"%0A inkscape:transform-center-x=\"-1.2779026\" />%0A <path%0A inkscape:transform-center-x=\"1.277902\"%0A d=\"m -31.500004,60.073242 -3.833708,2.213392 -3.833707,2.213393 0,-4.426785 0,-4.426784 3.833707,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:cx=\"-36.611614\"%0A sodipodi:sides=\"3\"%0A id=\"path4502\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"scale(-1,1)\" />%0A <path%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:sides=\"3\"%0A id=\"path4504\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"matrix(0,1,-1,0,72.0074,71.7877)\"%0A inkscape:transform-center-y=\"1.2779029\" />%0A <path%0A inkscape:transform-center-y=\"-1.2779026\"%0A transform=\"matrix(0,-1,-1,0,96,96)\"%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4506\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615-5\"%0A d=\"m 171.82574,65.174193 16.34854,0 -8.17427,-13.348454 z\"%0A style=\"fill:%23fbb917;fill-opacity:1;fill-rule:evenodd;stroke:%23fbb917;stroke-width:1.65161395;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,55 0,6 2,0 0,-6\"%0A id=\"path4300\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,62 0,2 2,0 0,-2\"%0A id=\"path4300-6\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:%23ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:0.8\"%0A d=\"M 99.994369,113.0221 102,114.98353 l 7,-6.9558 3,0.97227 2,-1 1,-2 0,-3 -3,3 -3,-3 3,-3 -3,0 -2,1 -1,2 0.99437,3.0221 z\"%0A id=\"path4268\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccccccccc\" />%0A <rect%0A id=\"rect4175-3-5\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"220\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <path%0A style=\"fill:%23ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 234,6 0,2 -5,5 0,5 -2,0 0,-5 -5,-5 0,-2\"%0A id=\"path3546\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <g%0A transform=\"matrix(1.3333328,0,0,-1.5999992,-139.9999,127.19999)\"%0A id=\"g4383-6\">%0A <rect%0A id=\"rect4385-2\"%0A height=\"1.2499905\"%0A width=\"5.9999924\"%0A y=\"12.625005\"%0A x=\"198.00002\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"15.125007\"%0A width=\"7.4999928\"%0A height=\"1.2499949\"%0A id=\"rect4387-9\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"7.6250024\"%0A width=\"2.9999909\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"10.125004\"%0A width=\"4.4999919\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-9\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 207.00001,16.375004 0,-5.625005 -2.25,0 3,-3.1250014 3,3.1250014 -2.25,0 0,5.625005 -1.5,0\"%0A id=\"path4402\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A </g>%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 164,100 0,3 -6,6 0,7 -4,0 0,-7 -6,-6 0,-3\"%0A id=\"path3546-2-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"28\"%0A x=\"4\" />%0A <path%0A sodipodi:nodetypes=\"ccccccccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4402-5-7\"%0A d=\"m 15,41 0,-7 -4,0 0,3 -5,-4 5,-4 0,3 6,0 0,9\"%0A style=\"fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\" />%0A</svg>%0A');background-position:-25px 0;background-color:transparent}::ng-deep .jsoneditor-anchor{cursor:pointer}::ng-deep .jsoneditor-anchor .picker_wrapper.popup.popup_bottom{top:28px;left:-10px}::ng-deep .fadein{-webkit-animation:fadein .3s;animation:fadein .3s;-moz-animation:fadein .3s;-o-animation:fadein .3s}@keyframes fadein{0%{opacity:0}to{opacity:1}}::ng-deep .jsoneditor-modal input[type=search].selectr-input{border:1px solid #d3d3d3;width:calc(100% - 4px);margin:2px;padding:4px;box-sizing:border-box}::ng-deep .jsoneditor-modal button.selectr-input-clear{right:8px}::ng-deep .jsoneditor-menu{width:100%;height:35px;padding:2px;margin:0;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;color:#fff;background-color:#3883fa;border-bottom:1px solid #3883fa}::ng-deep .jsoneditor-menu>.jsoneditor-modes>button,::ng-deep .jsoneditor-menu>button{width:26px;height:26px;margin:2px;padding:0;border-radius:2px;border:1px solid transparent;background-color:transparent;background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A width=\"240\"%0A height=\"144\"%0A id=\"svg4136\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"jsoneditor-icons.svg\">%0A <title%0A id=\"title6512\">JSON Editor Icons</title>%0A <metadata%0A id=\"metadata4148\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title>JSON Editor Icons</dc:title>%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4146\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ff63ff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1026\"%0A id=\"namedview4144\"%0A showgrid=\"true\"%0A inkscape:zoom=\"4\"%0A inkscape:cx=\"13.229181\"%0A inkscape:cy=\"119.82429\"%0A inkscape:window-x=\"0\"%0A inkscape:window-y=\"0\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4136\"%0A showguides=\"false\"%0A borderlayer=\"false\"%0A inkscape:showpageshadow=\"true\"%0A showborder=\"true\">%0A <inkscape:grid%0A type=\"xygrid\"%0A id=\"grid4640\"%0A empspacing=\"24\" />%0A </sodipodi:namedview>%0A <!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"4\" />%0A <rect%0A id=\"svg_1-7\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"28.000006\"%0A style=\"fill:%23ec3f29;fill-opacity:0.94117647;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A x=\"52.000004\"%0A y=\"3.999995\"%0A width=\"16\"%0A height=\"16\"%0A id=\"rect4165\" />%0A <rect%0A id=\"rect4175\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.9999852\"%0A x=\"172.00002\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4175-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"196\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <g%0A id=\"g4299\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <g%0A id=\"g4299-3\"%0A transform=\"matrix(0.70710678,-0.70710678,0.70710678,0.70710678,19.029435,12.000001)\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1-0\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1-9\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <rect%0A id=\"svg_1-7-5\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"7.0000048\"%0A x=\"55.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A x=\"58\"%0A y=\"10.00001\"%0A width=\"6.9999909\"%0A height=\"6.9999905\"%0A id=\"rect4354\" />%0A <rect%0A id=\"svg_1-7-5-7\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"10.000005\"%0A x=\"58.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%233c80df;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647\" />%0A <g%0A id=\"g4378\">%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"10.999999\"%0A width=\"7.9999909\"%0A height=\"1.9999965\"%0A id=\"svg_1-7-5-3\" />%0A <rect%0A id=\"rect4374\"%0A height=\"1.9999946\"%0A width=\"11.999995\"%0A y=\"7.0000005\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A id=\"rect4376\"%0A height=\"1.9999995\"%0A width=\"3.9999928\"%0A y=\"14.999996\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A </g>%0A <g%0A transform=\"matrix(1,0,0,-1,-23.999995,23.999995)\"%0A id=\"g4383\">%0A <rect%0A id=\"rect4385\"%0A height=\"1.9999965\"%0A width=\"7.9999909\"%0A y=\"10.999999\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"7.0000005\"%0A width=\"11.999995\"%0A height=\"1.9999946\"%0A id=\"rect4387\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"14.999996\"%0A width=\"3.9999928\"%0A height=\"1.9999995\"%0A id=\"rect4389\" />%0A </g>%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-4\"%0A width=\"16\"%0A height=\"16\"%0A x=\"76\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 85.10447,6.0157384 -0.0156,1.4063 c 3.02669,-0.2402 0.33008,3.6507996 2.48438,4.5780996 -2.18694,1.0938 0.49191,4.9069 -2.45313,4.5781 l -0.0156,1.4219 c 5.70828,0.559 1.03264,-5.1005 4.70313,-5.2656 l 0,-1.4063 c -3.61303,-0.027 1.11893,-5.7069996 -4.70313,-5.3124996 z\"%0A id=\"path4351\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 82.78125,5.9984384 0.0156,1.4063 c -3.02668,-0.2402 -0.33007,3.6506996 -2.48437,4.5780996 2.18694,1.0938 -0.49192,4.9069 2.45312,4.5781 l 0.0156,1.4219 c -5.70827,0.559 -1.03263,-5.1004 -4.70312,-5.2656 l 0,-1.4063 c 3.61303,-0.027 -1.11894,-5.7070996 4.70312,-5.3124996 z\"%0A id=\"path4351-9\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-25\"%0A width=\"16\"%0A height=\"16\"%0A x=\"100\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 103.719,5.6719384 0,12.7187996 3.03125,0 0,-1.5313 -1.34375,0 0,-9.6249996 1.375,0 0,-1.5625 z\"%0A id=\"path2987\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 112.2185,5.6721984 0,12.7187996 -3.03125,0 0,-1.5313 1.34375,0 0,-9.6249996 -1.375,0 0,-1.5625 z\"%0A id=\"path2987-1\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-73\"%0A width=\"16\"%0A height=\"16\"%0A x=\"124\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 126.2824,17.602938 1.78957,0 1.14143,-2.8641 5.65364,0 1.14856,2.8641 1.76565,0 -4.78687,-11.1610996 -1.91903,0 z\"%0A id=\"path3780\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccc\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A d=\"m 129.72704,13.478838 4.60852,0.01 -2.30426,-5.5497996 z\"%0A id=\"path3782\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-35\"%0A width=\"16\"%0A height=\"16\"%0A x=\"148\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 156.47655,5.8917384 0,2.1797 0.46093,2.3983996 1.82813,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 152.51561,5.8906384 0,2.1797 0.46094,2.3983996 1.82812,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <rect%0A id=\"svg_1-7-2\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"64\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"svg_1-7-2-2\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"52\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"52\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4561\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"80.000008\"%0A y=\"58\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4563\" />%0A <rect%0A id=\"rect4565\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"58\"%0A x=\"85.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4567\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"64\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"64\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4569\" />%0A <circle%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4571\"%0A cx=\"110.06081\"%0A cy=\"57.939209\"%0A r=\"4.7438836\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"116.64566\"%0A y=\"-31.79752\"%0A width=\"4.229713\"%0A height=\"6.4053884\"%0A id=\"rect4563-2\"%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 125,56 138.77027,56.095 132,64 Z\"%0A id=\"path4613\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615\"%0A d=\"M 149,64 162.77027,63.905 156,56 Z\"%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"54\"%0A y=\"53\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4638\" />%0A <rect%0A id=\"svg_1-7-2-24\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-56\"%0A x=\"53\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"53\"%0A y=\"-66\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4657\" />%0A <rect%0A id=\"rect4659\"%0A height=\"0.99999291\"%0A width=\"11.999999\"%0A y=\"57\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"88.000122\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4661\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"76.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4663\" />%0A <rect%0A id=\"rect4665\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"76.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A id=\"rect4667\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"82.000122\"%0A x=\"80.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"85.000008\"%0A y=\"82.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4669\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"88.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4671\" />%0A <rect%0A id=\"rect4673\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"88.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <circle%0A r=\"4.7438836\"%0A cy=\"81.939331\"%0A cx=\"110.06081\"%0A id=\"circle4675\"%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%23d3d3d3;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\"%0A id=\"rect4677\"%0A height=\"6.4053884\"%0A width=\"4.229713\"%0A y=\"-14.826816\"%0A x=\"133.6163\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:%23d3d3d3;stroke-width:0;stroke-opacity:1\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4679\"%0A d=\"m 125,80.000005 13.77027,0.09499 L 132,87.999992 Z\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 149,88.0002 162.77027,87.9052 156,80.0002 Z\"%0A id=\"path4681\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <rect%0A id=\"rect4683\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"77.000122\"%0A x=\"54\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"77.000122\"%0A y=\"-56\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4685\" />%0A <rect%0A id=\"rect4687\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-66\"%0A x=\"77.000122\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"81.000122\"%0A width=\"11.999999\"%0A height=\"0.99999291\"%0A id=\"rect4689\" />%0A <rect%0A id=\"rect4761-1\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"101\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-0\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"105\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-7\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"109\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1\"%0A height=\"1.9999945\"%0A width=\"12\"%0A y=\"125\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"137\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"129\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4-3\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"133\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,100.0254 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,100.5991 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1452 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533865,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550756,0 6.710442,-2.4113 7.650391,-5.9414 0.939949,-3.5301 -0.618463,-7.2736 -3.710938,-9.0703 -1.159678,-0.6738 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,99.9629 c -1.270084,0.039 -2.541493,0.3887 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5402 -3.710937,9.0703 0.939949,3.5301 4.09768,5.9414 7.648437,5.9414 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4056 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,100 0,2 -2.4999996,0 L 12,107 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A id=\"path3055-0-77\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9850574,108.015 14.0298856,-0.03\"%0A id=\"path5244-5-0-5\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9849874,132.015 14.0298866,-0.03\"%0A id=\"path5244-5-0-5-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,123.9629 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,124.5366 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1453 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533864,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550757,0 6.710442,-2.4093 7.650391,-5.9394 0.939949,-3.5301 -0.618463,-7.2756 -3.710938,-9.0723 -1.159678,-0.6737 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138-12\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,123.9629 c -1.270084,0.039 -2.541493,0.3888 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5422 -3.710937,9.0723 0.939949,3.5301 4.09768,5.9394 7.648437,5.9394 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4055 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1-3\" />%0A <path%0A id=\"path6191\"%0A d=\"m 10.5,116 0,-2 -2.4999996,0 L 12,109 l 4,5 -2.5,0 0,2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,129 0,-2 -2.4999996,0 L 12,122 l 4,5 -2.5,0 0,2 -3,0 z\"%0A id=\"path6193\" />%0A <path%0A id=\"path6195\"%0A d=\"m 10.5,135 0,2 -2.4999996,0 L 12,142 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4500\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073242 -3.833708,2.213392 -3.8337072,2.213393 0,-4.426785 0,-4.426784 3.8337082,2.213392 z\"%0A inkscape:transform-center-x=\"-1.2779026\" />%0A <path%0A inkscape:transform-center-x=\"1.277902\"%0A d=\"m -31.500004,60.073242 -3.833708,2.213392 -3.833707,2.213393 0,-4.426785 0,-4.426784 3.833707,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:cx=\"-36.611614\"%0A sodipodi:sides=\"3\"%0A id=\"path4502\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"scale(-1,1)\" />%0A <path%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:sides=\"3\"%0A id=\"path4504\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"matrix(0,1,-1,0,72.0074,71.7877)\"%0A inkscape:transform-center-y=\"1.2779029\" />%0A <path%0A inkscape:transform-center-y=\"-1.2779026\"%0A transform=\"matrix(0,-1,-1,0,96,96)\"%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4506\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615-5\"%0A d=\"m 171.82574,65.174193 16.34854,0 -8.17427,-13.348454 z\"%0A style=\"fill:%23fbb917;fill-opacity:1;fill-rule:evenodd;stroke:%23fbb917;stroke-width:1.65161395;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,55 0,6 2,0 0,-6\"%0A id=\"path4300\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,62 0,2 2,0 0,-2\"%0A id=\"path4300-6\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:%23ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:0.8\"%0A d=\"M 99.994369,113.0221 102,114.98353 l 7,-6.9558 3,0.97227 2,-1 1,-2 0,-3 -3,3 -3,-3 3,-3 -3,0 -2,1 -1,2 0.99437,3.0221 z\"%0A id=\"path4268\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccccccccc\" />%0A <rect%0A id=\"rect4175-3-5\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"220\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <path%0A style=\"fill:%23ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 234,6 0,2 -5,5 0,5 -2,0 0,-5 -5,-5 0,-2\"%0A id=\"path3546\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <g%0A transform=\"matrix(1.3333328,0,0,-1.5999992,-139.9999,127.19999)\"%0A id=\"g4383-6\">%0A <rect%0A id=\"rect4385-2\"%0A height=\"1.2499905\"%0A width=\"5.9999924\"%0A y=\"12.625005\"%0A x=\"198.00002\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"15.125007\"%0A width=\"7.4999928\"%0A height=\"1.2499949\"%0A id=\"rect4387-9\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"7.6250024\"%0A width=\"2.9999909\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"10.125004\"%0A width=\"4.4999919\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-9\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 207.00001,16.375004 0,-5.625005 -2.25,0 3,-3.1250014 3,3.1250014 -2.25,0 0,5.625005 -1.5,0\"%0A id=\"path4402\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A </g>%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 164,100 0,3 -6,6 0,7 -4,0 0,-7 -6,-6 0,-3\"%0A id=\"path3546-2-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"28\"%0A x=\"4\" />%0A <path%0A sodipodi:nodetypes=\"ccccccccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4402-5-7\"%0A d=\"m 15,41 0,-7 -4,0 0,3 -5,-4 5,-4 0,3 6,0 0,9\"%0A style=\"fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\" />%0A</svg>%0A');color:#fff;opacity:.8;font-family:arial,sans-serif;font-size:14px;float:left}::ng-deep .jsoneditor-menu>.jsoneditor-modes>button:hover,::ng-deep .jsoneditor-menu>button:hover{background-color:#fff3;border:1px solid rgba(255,255,255,.4)}::ng-deep .jsoneditor-menu>.jsoneditor-modes>button:active,::ng-deep .jsoneditor-menu>.jsoneditor-modes>button:focus,::ng-deep .jsoneditor-menu>button:active,::ng-deep .jsoneditor-menu>button:focus{background-color:#ffffff4d}::ng-deep .jsoneditor-menu>.jsoneditor-modes>button:disabled,::ng-deep .jsoneditor-menu>button:disabled{opacity:.5;background-color:transparent;border:none}::ng-deep .jsoneditor-menu>button.jsoneditor-collapse-all{background-position:0 -96px}::ng-deep .jsoneditor-menu>button.jsoneditor-expand-all{background-position:0 -120px}::ng-deep .jsoneditor-menu>button.jsoneditor-sort{background-position:-120px -96px}::ng-deep .jsoneditor-menu>button.jsoneditor-transform{background-position:-144px -96px}::ng-deep .jsoneditor.jsoneditor-mode-form>.jsoneditor-menu>button.jsoneditor-sort,::ng-deep .jsoneditor.jsoneditor-mode-form>.jsoneditor-menu>button.jsoneditor-transform,::ng-deep .jsoneditor.jsoneditor-mode-view>.jsoneditor-menu>button.jsoneditor-sort,::ng-deep .jsoneditor.jsoneditor-mode-view>.jsoneditor-menu>button.jsoneditor-transform{display:none}::ng-deep .jsoneditor-menu>button.jsoneditor-undo{background-position:-24px -96px}::ng-deep .jsoneditor-menu>button.jsoneditor-undo:disabled{background-position:-24px -120px}::ng-deep .jsoneditor-menu>button.jsoneditor-redo{background-position:-48px -96px}::ng-deep .jsoneditor-menu>button.jsoneditor-redo:disabled{background-position:-48px -120px}::ng-deep .jsoneditor-menu>button.jsoneditor-compact{background-position:-72px -96px}::ng-deep .jsoneditor-menu>button.jsoneditor-format{background-position:-72px -120px}::ng-deep .jsoneditor-menu>button.jsoneditor-repair{background-position:-96px -96px}::ng-deep .jsoneditor-menu>.jsoneditor-modes{display:inline-block;float:left}::ng-deep .jsoneditor-menu>.jsoneditor-modes>button{background-image:none;width:auto;padding-left:6px;padding-right:6px}::ng-deep .jsoneditor-menu>.jsoneditor-modes>button.jsoneditor-separator,::ng-deep .jsoneditor-menu>button.jsoneditor-separator{margin-left:10px}::ng-deep .jsoneditor-menu a{font-family:arial,sans-serif;font-size:14px;color:#fff;opacity:.8;vertical-align:middle}::ng-deep .jsoneditor-menu a:hover{opacity:1}::ng-deep .jsoneditor-menu a.jsoneditor-poweredBy{font-size:8pt;position:absolute;right:0;top:0;padding:10px}::ng-deep .jsoneditor-navigation-bar{width:100%;height:26px;line-height:26px;padding:0;margin:0;border-bottom:1px solid #d3d3d3;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;color:gray;background-color:#ebebeb;overflow:hidden;font-family:arial,sans-serif;font-size:14px}::ng-deep .jsoneditor-search{font-family:arial,sans-serif;position:absolute;right:4px;top:4px;border-collapse:collapse;border-spacing:0;display:flex}::ng-deep .jsoneditor-search input{color:#1a1a1a;width:120px;border:none;outline:0;margin:1px;line-height:20px;font-family:arial,sans-serif}::ng-deep .jsoneditor-search button{width:16px;height:24px;padding:0;margin:0;border:none;background:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A width=\"240\"%0A height=\"144\"%0A id=\"svg4136\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"jsoneditor-icons.svg\">%0A <title%0A id=\"title6512\">JSON Editor Icons</title>%0A <metadata%0A id=\"metadata4148\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title>JSON Editor Icons</dc:title>%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4146\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ff63ff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1026\"%0A id=\"namedview4144\"%0A showgrid=\"true\"%0A inkscape:zoom=\"4\"%0A inkscape:cx=\"13.229181\"%0A inkscape:cy=\"119.82429\"%0A inkscape:window-x=\"0\"%0A inkscape:window-y=\"0\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4136\"%0A showguides=\"false\"%0A borderlayer=\"false\"%0A inkscape:showpageshadow=\"true\"%0A showborder=\"true\">%0A <inkscape:grid%0A type=\"xygrid\"%0A id=\"grid4640\"%0A empspacing=\"24\" />%0A </sodipodi:namedview>%0A <!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"4\" />%0A <rect%0A id=\"svg_1-7\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"28.000006\"%0A style=\"fill:%23ec3f29;fill-opacity:0.94117647;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A x=\"52.000004\"%0A y=\"3.999995\"%0A width=\"16\"%0A height=\"16\"%0A id=\"rect4165\" />%0A <rect%0A id=\"rect4175\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.9999852\"%0A x=\"172.00002\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4175-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"196\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <g%0A id=\"g4299\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <g%0A id=\"g4299-3\"%0A transform=\"matrix(0.70710678,-0.70710678,0.70710678,0.70710678,19.029435,12.000001)\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1-0\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1-9\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <rect%0A id=\"svg_1-7-5\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"7.0000048\"%0A x=\"55.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A x=\"58\"%0A y=\"10.00001\"%0A width=\"6.9999909\"%0A height=\"6.9999905\"%0A id=\"rect4354\" />%0A <rect%0A id=\"svg_1-7-5-7\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"10.000005\"%0A x=\"58.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%233c80df;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647\" />%0A <g%0A id=\"g4378\">%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"10.999999\"%0A width=\"7.9999909\"%0A height=\"1.9999965\"%0A id=\"svg_1-7-5-3\" />%0A <rect%0A id=\"rect4374\"%0A height=\"1.9999946\"%0A width=\"11.999995\"%0A y=\"7.0000005\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A id=\"rect4376\"%0A height=\"1.9999995\"%0A width=\"3.9999928\"%0A y=\"14.999996\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A </g>%0A <g%0A transform=\"matrix(1,0,0,-1,-23.999995,23.999995)\"%0A id=\"g4383\">%0A <rect%0A id=\"rect4385\"%0A height=\"1.9999965\"%0A width=\"7.9999909\"%0A y=\"10.999999\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"7.0000005\"%0A width=\"11.999995\"%0A height=\"1.9999946\"%0A id=\"rect4387\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"14.999996\"%0A width=\"3.9999928\"%0A height=\"1.9999995\"%0A id=\"rect4389\" />%0A </g>%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-4\"%0A width=\"16\"%0A height=\"16\"%0A x=\"76\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 85.10447,6.0157384 -0.0156,1.4063 c 3.02669,-0.2402 0.33008,3.6507996 2.48438,4.5780996 -2.18694,1.0938 0.49191,4.9069 -2.45313,4.5781 l -0.0156,1.4219 c 5.70828,0.559 1.03264,-5.1005 4.70313,-5.2656 l 0,-1.4063 c -3.61303,-0.027 1.11893,-5.7069996 -4.70313,-5.3124996 z\"%0A id=\"path4351\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 82.78125,5.9984384 0.0156,1.4063 c -3.02668,-0.2402 -0.33007,3.6506996 -2.48437,4.5780996 2.18694,1.0938 -0.49192,4.9069 2.45312,4.5781 l 0.0156,1.4219 c -5.70827,0.559 -1.03263,-5.1004 -4.70312,-5.2656 l 0,-1.4063 c 3.61303,-0.027 -1.11894,-5.7070996 4.70312,-5.3124996 z\"%0A id=\"path4351-9\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-25\"%0A width=\"16\"%0A height=\"16\"%0A x=\"100\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 103.719,5.6719384 0,12.7187996 3.03125,0 0,-1.5313 -1.34375,0 0,-9.6249996 1.375,0 0,-1.5625 z\"%0A id=\"path2987\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 112.2185,5.6721984 0,12.7187996 -3.03125,0 0,-1.5313 1.34375,0 0,-9.6249996 -1.375,0 0,-1.5625 z\"%0A id=\"path2987-1\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-73\"%0A width=\"16\"%0A height=\"16\"%0A x=\"124\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 126.2824,17.602938 1.78957,0 1.14143,-2.8641 5.65364,0 1.14856,2.8641 1.76565,0 -4.78687,-11.1610996 -1.91903,0 z\"%0A id=\"path3780\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccc\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A d=\"m 129.72704,13.478838 4.60852,0.01 -2.30426,-5.5497996 z\"%0A id=\"path3782\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-35\"%0A width=\"16\"%0A height=\"16\"%0A x=\"148\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 156.47655,5.8917384 0,2.1797 0.46093,2.3983996 1.82813,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 152.51561,5.8906384 0,2.1797 0.46094,2.3983996 1.82812,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <rect%0A id=\"svg_1-7-2\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"64\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"svg_1-7-2-2\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"52\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"52\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4561\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"80.000008\"%0A y=\"58\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4563\" />%0A <rect%0A id=\"rect4565\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"58\"%0A x=\"85.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4567\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"64\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"64\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4569\" />%0A <circle%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4571\"%0A cx=\"110.06081\"%0A cy=\"57.939209\"%0A r=\"4.7438836\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"116.64566\"%0A y=\"-31.79752\"%0A width=\"4.229713\"%0A height=\"6.4053884\"%0A id=\"rect4563-2\"%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 125,56 138.77027,56.095 132,64 Z\"%0A id=\"path4613\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615\"%0A d=\"M 149,64 162.77027,63.905 156,56 Z\"%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"54\"%0A y=\"53\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4638\" />%0A <rect%0A id=\"svg_1-7-2-24\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-56\"%0A x=\"53\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"53\"%0A y=\"-66\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4657\" />%0A <rect%0A id=\"rect4659\"%0A height=\"0.99999291\"%0A width=\"11.999999\"%0A y=\"57\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"88.000122\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4661\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"76.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4663\" />%0A <rect%0A id=\"rect4665\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"76.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A id=\"rect4667\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"82.000122\"%0A x=\"80.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"85.000008\"%0A y=\"82.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4669\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"88.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4671\" />%0A <rect%0A id=\"rect4673\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"88.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <circle%0A r=\"4.7438836\"%0A cy=\"81.939331\"%0A cx=\"110.06081\"%0A id=\"circle4675\"%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%23d3d3d3;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\"%0A id=\"rect4677\"%0A height=\"6.4053884\"%0A width=\"4.229713\"%0A y=\"-14.826816\"%0A x=\"133.6163\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:%23d3d3d3;stroke-width:0;stroke-opacity:1\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4679\"%0A d=\"m 125,80.000005 13.77027,0.09499 L 132,87.999992 Z\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 149,88.0002 162.77027,87.9052 156,80.0002 Z\"%0A id=\"path4681\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <rect%0A id=\"rect4683\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"77.000122\"%0A x=\"54\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"77.000122\"%0A y=\"-56\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4685\" />%0A <rect%0A id=\"rect4687\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-66\"%0A x=\"77.000122\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"81.000122\"%0A width=\"11.999999\"%0A height=\"0.99999291\"%0A id=\"rect4689\" />%0A <rect%0A id=\"rect4761-1\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"101\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-0\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"105\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-7\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"109\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1\"%0A height=\"1.9999945\"%0A width=\"12\"%0A y=\"125\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"137\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"129\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4-3\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"133\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,100.0254 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,100.5991 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1452 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533865,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550756,0 6.710442,-2.4113 7.650391,-5.9414 0.939949,-3.5301 -0.618463,-7.2736 -3.710938,-9.0703 -1.159678,-0.6738 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,99.9629 c -1.270084,0.039 -2.541493,0.3887 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5402 -3.710937,9.0703 0.939949,3.5301 4.09768,5.9414 7.648437,5.9414 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4056 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,100 0,2 -2.4999996,0 L 12,107 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A id=\"path3055-0-77\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9850574,108.015 14.0298856,-0.03\"%0A id=\"path5244-5-0-5\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9849874,132.015 14.0298866,-0.03\"%0A id=\"path5244-5-0-5-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,123.9629 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,124.5366 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1453 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533864,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550757,0 6.710442,-2.4093 7.650391,-5.9394 0.939949,-3.5301 -0.618463,-7.2756 -3.710938,-9.0723 -1.159678,-0.6737 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138-12\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,123.9629 c -1.270084,0.039 -2.541493,0.3888 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5422 -3.710937,9.0723 0.939949,3.5301 4.09768,5.9394 7.648437,5.9394 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4055 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1-3\" />%0A <path%0A id=\"path6191\"%0A d=\"m 10.5,116 0,-2 -2.4999996,0 L 12,109 l 4,5 -2.5,0 0,2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,129 0,-2 -2.4999996,0 L 12,122 l 4,5 -2.5,0 0,2 -3,0 z\"%0A id=\"path6193\" />%0A <path%0A id=\"path6195\"%0A d=\"m 10.5,135 0,2 -2.4999996,0 L 12,142 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4500\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073242 -3.833708,2.213392 -3.8337072,2.213393 0,-4.426785 0,-4.426784 3.8337082,2.213392 z\"%0A inkscape:transform-center-x=\"-1.2779026\" />%0A <path%0A inkscape:transform-center-x=\"1.277902\"%0A d=\"m -31.500004,60.073242 -3.833708,2.213392 -3.833707,2.213393 0,-4.426785 0,-4.426784 3.833707,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:cx=\"-36.611614\"%0A sodipodi:sides=\"3\"%0A id=\"path4502\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"scale(-1,1)\" />%0A <path%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:sides=\"3\"%0A id=\"path4504\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"matrix(0,1,-1,0,72.0074,71.7877)\"%0A inkscape:transform-center-y=\"1.2779029\" />%0A <path%0A inkscape:transform-center-y=\"-1.2779026\"%0A transform=\"matrix(0,-1,-1,0,96,96)\"%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4506\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615-5\"%0A d=\"m 171.82574,65.174193 16.34854,0 -8.17427,-13.348454 z\"%0A style=\"fill:%23fbb917;fill-opacity:1;fill-rule:evenodd;stroke:%23fbb917;stroke-width:1.65161395;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,55 0,6 2,0 0,-6\"%0A id=\"path4300\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,62 0,2 2,0 0,-2\"%0A id=\"path4300-6\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:%23ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:0.8\"%0A d=\"M 99.994369,113.0221 102,114.98353 l 7,-6.9558 3,0.97227 2,-1 1,-2 0,-3 -3,3 -3,-3 3,-3 -3,0 -2,1 -1,2 0.99437,3.0221 z\"%0A id=\"path4268\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccccccccc\" />%0A <rect%0A id=\"rect4175-3-5\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"220\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <path%0A style=\"fill:%23ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 234,6 0,2 -5,5 0,5 -2,0 0,-5 -5,-5 0,-2\"%0A id=\"path3546\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <g%0A transform=\"matrix(1.3333328,0,0,-1.5999992,-139.9999,127.19999)\"%0A id=\"g4383-6\">%0A <rect%0A id=\"rect4385-2\"%0A height=\"1.2499905\"%0A width=\"5.9999924\"%0A y=\"12.625005\"%0A x=\"198.00002\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"15.125007\"%0A width=\"7.4999928\"%0A height=\"1.2499949\"%0A id=\"rect4387-9\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"7.6250024\"%0A width=\"2.9999909\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"10.125004\"%0A width=\"4.4999919\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-9\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 207.00001,16.375004 0,-5.625005 -2.25,0 3,-3.1250014 3,3.1250014 -2.25,0 0,5.625005 -1.5,0\"%0A id=\"path4402\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A </g>%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 164,100 0,3 -6,6 0,7 -4,0 0,-7 -6,-6 0,-3\"%0A id=\"path3546-2-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"28\"%0A x=\"4\" />%0A <path%0A sodipodi:nodetypes=\"ccccccccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4402-5-7\"%0A d=\"m 15,41 0,-7 -4,0 0,3 -5,-4 5,-4 0,3 6,0 0,9\"%0A style=\"fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\" />%0A</svg>%0A');vertical-align:top}::ng-deep .jsoneditor-search button:hover{background-color:transparent}::ng-deep .jsoneditor-search button.jsoneditor-refresh{width:18px;background-position:-99px -73px}::ng-deep .jsoneditor-search button.jsoneditor-next{cursor:pointer;background-position:-124px -73px}::ng-deep .jsoneditor-search button.jsoneditor-next:hover{background-position:-124px -49px}::ng-deep .jsoneditor-search button.jsoneditor-previous{cursor:pointer;background-position:-148px -73px;margin-right:2px}::ng-deep .jsoneditor-search button.jsoneditor-previous:hover{background-position:-148px -49px}::ng-deep .jsoneditor-results{font-family:arial,sans-serif;color:#fff;padding-right:5px;line-height:26px}::ng-deep .jsoneditor-frame{border:1px solid transparent;background-color:#fff;padding:0 2px;margin:0}::ng-deep .jsoneditor-statusbar{line-height:26px;height:26px;color:gray;background-color:#ebebeb;border-top:1px solid #d3d3d3;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:14px}::ng-deep .jsoneditor-statusbar>.jsoneditor-curserinfo-val{margin-right:12px}::ng-deep .jsoneditor-statusbar>.jsoneditor-curserinfo-count{margin-left:4px}::ng-deep .jsoneditor-statusbar>.jsoneditor-validation-error-icon{float:right;width:24px;height:24px;padding:0;margin-top:1px;background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A width=\"240\"%0A height=\"144\"%0A id=\"svg4136\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"jsoneditor-icons.svg\">%0A <title%0A id=\"title6512\">JSON Editor Icons</title>%0A <metadata%0A id=\"metadata4148\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title>JSON Editor Icons</dc:title>%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4146\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ff63ff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1026\"%0A id=\"namedview4144\"%0A showgrid=\"true\"%0A inkscape:zoom=\"4\"%0A inkscape:cx=\"13.229181\"%0A inkscape:cy=\"119.82429\"%0A inkscape:window-x=\"0\"%0A inkscape:window-y=\"0\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4136\"%0A showguides=\"false\"%0A borderlayer=\"false\"%0A inkscape:showpageshadow=\"true\"%0A showborder=\"true\">%0A <inkscape:grid%0A type=\"xygrid\"%0A id=\"grid4640\"%0A empspacing=\"24\" />%0A </sodipodi:namedview>%0A <!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"4\" />%0A <rect%0A id=\"svg_1-7\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"28.000006\"%0A style=\"fill:%23ec3f29;fill-opacity:0.94117647;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A x=\"52.000004\"%0A y=\"3.999995\"%0A width=\"16\"%0A height=\"16\"%0A id=\"rect4165\" />%0A <rect%0A id=\"rect4175\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.9999852\"%0A x=\"172.00002\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4175-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"196\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <g%0A id=\"g4299\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <g%0A id=\"g4299-3\"%0A transform=\"matrix(0.70710678,-0.70710678,0.70710678,0.70710678,19.029435,12.000001)\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1-0\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1-9\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <rect%0A id=\"svg_1-7-5\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"7.0000048\"%0A x=\"55.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A x=\"58\"%0A y=\"10.00001\"%0A width=\"6.9999909\"%0A height=\"6.9999905\"%0A id=\"rect4354\" />%0A <rect%0A id=\"svg_1-7-5-7\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"10.000005\"%0A x=\"58.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%233c80df;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647\" />%0A <g%0A id=\"g4378\">%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"10.999999\"%0A width=\"7.9999909\"%0A height=\"1.9999965\"%0A id=\"svg_1-7-5-3\" />%0A <rect%0A id=\"rect4374\"%0A height=\"1.9999946\"%0A width=\"11.999995\"%0A y=\"7.0000005\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A id=\"rect4376\"%0A height=\"1.9999995\"%0A width=\"3.9999928\"%0A y=\"14.999996\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A </g>%0A <g%0A transform=\"matrix(1,0,0,-1,-23.999995,23.999995)\"%0A id=\"g4383\">%0A <rect%0A id=\"rect4385\"%0A height=\"1.9999965\"%0A width=\"7.9999909\"%0A y=\"10.999999\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"7.0000005\"%0A width=\"11.999995\"%0A height=\"1.9999946\"%0A id=\"rect4387\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"14.999996\"%0A width=\"3.9999928\"%0A height=\"1.9999995\"%0A id=\"rect4389\" />%0A </g>%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-4\"%0A width=\"16\"%0A height=\"16\"%0A x=\"76\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 85.10447,6.0157384 -0.0156,1.4063 c 3.02669,-0.2402 0.33008,3.6507996 2.48438,4.5780996 -2.18694,1.0938 0.49191,4.9069 -2.45313,4.5781 l -0.0156,1.4219 c 5.70828,0.559 1.03264,-5.1005 4.70313,-5.2656 l 0,-1.4063 c -3.61303,-0.027 1.11893,-5.7069996 -4.70313,-5.3124996 z\"%0A id=\"path4351\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 82.78125,5.9984384 0.0156,1.4063 c -3.02668,-0.2402 -0.33007,3.6506996 -2.48437,4.5780996 2.18694,1.0938 -0.49192,4.9069 2.45312,4.5781 l 0.0156,1.4219 c -5.70827,0.559 -1.03263,-5.1004 -4.70312,-5.2656 l 0,-1.4063 c 3.61303,-0.027 -1.11894,-5.7070996 4.70312,-5.3124996 z\"%0A id=\"path4351-9\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-25\"%0A width=\"16\"%0A height=\"16\"%0A x=\"100\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 103.719,5.6719384 0,12.7187996 3.03125,0 0,-1.5313 -1.34375,0 0,-9.6249996 1.375,0 0,-1.5625 z\"%0A id=\"path2987\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 112.2185,5.6721984 0,12.7187996 -3.03125,0 0,-1.5313 1.34375,0 0,-9.6249996 -1.375,0 0,-1.5625 z\"%0A id=\"path2987-1\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-73\"%0A width=\"16\"%0A height=\"16\"%0A x=\"124\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 126.2824,17.602938 1.78957,0 1.14143,-2.8641 5.65364,0 1.14856,2.8641 1.76565,0 -4.78687,-11.1610996 -1.91903,0 z\"%0A id=\"path3780\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccc\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A d=\"m 129.72704,13.478838 4.60852,0.01 -2.30426,-5.5497996 z\"%0A id=\"path3782\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-35\"%0A width=\"16\"%0A height=\"16\"%0A x=\"148\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 156.47655,5.8917384 0,2.1797 0.46093,2.3983996 1.82813,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 152.51561,5.8906384 0,2.1797 0.46094,2.3983996 1.82812,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <rect%0A id=\"svg_1-7-2\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"64\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"svg_1-7-2-2\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"52\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"52\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4561\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"80.000008\"%0A y=\"58\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4563\" />%0A <rect%0A id=\"rect4565\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"58\"%0A x=\"85.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4567\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"64\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"64\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4569\" />%0A <circle%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4571\"%0A cx=\"110.06081\"%0A cy=\"57.939209\"%0A r=\"4.7438836\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"116.64566\"%0A y=\"-31.79752\"%0A width=\"4.229713\"%0A height=\"6.4053884\"%0A id=\"rect4563-2\"%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 125,56 138.77027,56.095 132,64 Z\"%0A id=\"path4613\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615\"%0A d=\"M 149,64 162.77027,63.905 156,56 Z\"%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"54\"%0A y=\"53\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4638\" />%0A <rect%0A id=\"svg_1-7-2-24\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-56\"%0A x=\"53\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"53\"%0A y=\"-66\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4657\" />%0A <rect%0A id=\"rect4659\"%0A height=\"0.99999291\"%0A width=\"11.999999\"%0A y=\"57\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"88.000122\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4661\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"76.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4663\" />%0A <rect%0A id=\"rect4665\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"76.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A id=\"rect4667\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"82.000122\"%0A x=\"80.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"85.000008\"%0A y=\"82.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4669\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"88.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4671\" />%0A <rect%0A id=\"rect4673\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"88.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <circle%0A r=\"4.7438836\"%0A cy=\"81.939331\"%0A cx=\"110.06081\"%0A id=\"circle4675\"%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%23d3d3d3;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\"%0A id=\"rect4677\"%0A height=\"6.4053884\"%0A width=\"4.229713\"%0A y=\"-14.826816\"%0A x=\"133.6163\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:%23d3d3d3;stroke-width:0;stroke-opacity:1\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4679\"%0A d=\"m 125,80.000005 13.77027,0.09499 L 132,87.999992 Z\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 149,88.0002 162.77027,87.9052 156,80.0002 Z\"%0A id=\"path4681\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <rect%0A id=\"rect4683\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"77.000122\"%0A x=\"54\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"77.000122\"%0A y=\"-56\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4685\" />%0A <rect%0A id=\"rect4687\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-66\"%0A x=\"77.000122\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"81.000122\"%0A width=\"11.999999\"%0A height=\"0.99999291\"%0A id=\"rect4689\" />%0A <rect%0A id=\"rect4761-1\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"101\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-0\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"105\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-7\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"109\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1\"%0A height=\"1.9999945\"%0A width=\"12\"%0A y=\"125\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"137\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"129\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4-3\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"133\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,100.0254 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,100.5991 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1452 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533865,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550756,0 6.710442,-2.4113 7.650391,-5.9414 0.939949,-3.5301 -0.618463,-7.2736 -3.710938,-9.0703 -1.159678,-0.6738 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,99.9629 c -1.270084,0.039 -2.541493,0.3887 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5402 -3.710937,9.0703 0.939949,3.5301 4.09768,5.9414 7.648437,5.9414 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4056 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,100 0,2 -2.4999996,0 L 12,107 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A id=\"path3055-0-77\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9850574,108.015 14.0298856,-0.03\"%0A id=\"path5244-5-0-5\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9849874,132.015 14.0298866,-0.03\"%0A id=\"path5244-5-0-5-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,123.9629 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,124.5366 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1453 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533864,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550757,0 6.710442,-2.4093 7.650391,-5.9394 0.939949,-3.5301 -0.618463,-7.2756 -3.710938,-9.0723 -1.159678,-0.6737 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138-12\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,123.9629 c -1.270084,0.039 -2.541493,0.3888 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5422 -3.710937,9.0723 0.939949,3.5301 4.09768,5.9394 7.648437,5.9394 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4055 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1-3\" />%0A <path%0A id=\"path6191\"%0A d=\"m 10.5,116 0,-2 -2.4999996,0 L 12,109 l 4,5 -2.5,0 0,2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,129 0,-2 -2.4999996,0 L 12,122 l 4,5 -2.5,0 0,2 -3,0 z\"%0A id=\"path6193\" />%0A <path%0A id=\"path6195\"%0A d=\"m 10.5,135 0,2 -2.4999996,0 L 12,142 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4500\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073242 -3.833708,2.213392 -3.8337072,2.213393 0,-4.426785 0,-4.426784 3.8337082,2.213392 z\"%0A inkscape:transform-center-x=\"-1.2779026\" />%0A <path%0A inkscape:transform-center-x=\"1.277902\"%0A d=\"m -31.500004,60.073242 -3.833708,2.213392 -3.833707,2.213393 0,-4.426785 0,-4.426784 3.833707,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:cx=\"-36.611614\"%0A sodipodi:sides=\"3\"%0A id=\"path4502\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"scale(-1,1)\" />%0A <path%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:sides=\"3\"%0A id=\"path4504\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"matrix(0,1,-1,0,72.0074,71.7877)\"%0A inkscape:transform-center-y=\"1.2779029\" />%0A <path%0A inkscape:transform-center-y=\"-1.2779026\"%0A transform=\"matrix(0,-1,-1,0,96,96)\"%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4506\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615-5\"%0A d=\"m 171.82574,65.174193 16.34854,0 -8.17427,-13.348454 z\"%0A style=\"fill:%23fbb917;fill-opacity:1;fill-rule:evenodd;stroke:%23fbb917;stroke-width:1.65161395;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,55 0,6 2,0 0,-6\"%0A id=\"path4300\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,62 0,2 2,0 0,-2\"%0A id=\"path4300-6\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:%23ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:0.8\"%0A d=\"M 99.994369,113.0221 102,114.98353 l 7,-6.9558 3,0.97227 2,-1 1,-2 0,-3 -3,3 -3,-3 3,-3 -3,0 -2,1 -1,2 0.99437,3.0221 z\"%0A id=\"path4268\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccccccccc\" />%0A <rect%0A id=\"rect4175-3-5\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"220\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <path%0A style=\"fill:%23ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 234,6 0,2 -5,5 0,5 -2,0 0,-5 -5,-5 0,-2\"%0A id=\"path3546\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <g%0A transform=\"matrix(1.3333328,0,0,-1.5999992,-139.9999,127.19999)\"%0A id=\"g4383-6\">%0A <rect%0A id=\"rect4385-2\"%0A height=\"1.2499905\"%0A width=\"5.9999924\"%0A y=\"12.625005\"%0A x=\"198.00002\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"15.125007\"%0A width=\"7.4999928\"%0A height=\"1.2499949\"%0A id=\"rect4387-9\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"7.6250024\"%0A width=\"2.9999909\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"10.125004\"%0A width=\"4.4999919\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-9\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 207.00001,16.375004 0,-5.625005 -2.25,0 3,-3.1250014 3,3.1250014 -2.25,0 0,5.625005 -1.5,0\"%0A id=\"path4402\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A </g>%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 164,100 0,3 -6,6 0,7 -4,0 0,-7 -6,-6 0,-3\"%0A id=\"path3546-2-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"28\"%0A x=\"4\" />%0A <path%0A sodipodi:nodetypes=\"ccccccccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4402-5-7\"%0A d=\"m 15,41 0,-7 -4,0 0,3 -5,-4 5,-4 0,3 6,0 0,9\"%0A style=\"fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\" />%0A</svg>%0A');background-position:-168px -48px;cursor:pointer}::ng-deep .jsoneditor-statusbar>.jsoneditor-validation-error-count{float:right;margin:0 4px 0 0;cursor:pointer}::ng-deep .jsoneditor-statusbar>.jsoneditor-parse-error-icon{float:right;width:24px;height:24px;padding:0;margin:1px;background-image:url('data:image/svg+xml,<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>%0A<svg%0A xmlns:dc=\"http://purl.org/dc/elements/1.1/\"%0A xmlns:cc=\"http://creativecommons.org/ns%23\"%0A xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns%23\"%0A xmlns:svg=\"http://www.w3.org/2000/svg\"%0A xmlns=\"http://www.w3.org/2000/svg\"%0A xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"%0A xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"%0A width=\"240\"%0A height=\"144\"%0A id=\"svg4136\"%0A version=\"1.1\"%0A inkscape:version=\"0.91 r13725\"%0A sodipodi:docname=\"jsoneditor-icons.svg\">%0A <title%0A id=\"title6512\">JSON Editor Icons</title>%0A <metadata%0A id=\"metadata4148\">%0A <rdf:RDF>%0A <cc:Work%0A rdf:about=\"\">%0A <dc:format>image/svg+xml</dc:format>%0A <dc:type%0A rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />%0A <dc:title>JSON Editor Icons</dc:title>%0A </cc:Work>%0A </rdf:RDF>%0A </metadata>%0A <defs%0A id=\"defs4146\" />%0A <sodipodi:namedview%0A pagecolor=\"%23ff63ff\"%0A bordercolor=\"%23666666\"%0A borderopacity=\"1\"%0A objecttolerance=\"10\"%0A gridtolerance=\"10\"%0A guidetolerance=\"10\"%0A inkscape:pageopacity=\"0\"%0A inkscape:pageshadow=\"2\"%0A inkscape:window-width=\"1920\"%0A inkscape:window-height=\"1026\"%0A id=\"namedview4144\"%0A showgrid=\"true\"%0A inkscape:zoom=\"4\"%0A inkscape:cx=\"13.229181\"%0A inkscape:cy=\"119.82429\"%0A inkscape:window-x=\"0\"%0A inkscape:window-y=\"0\"%0A inkscape:window-maximized=\"1\"%0A inkscape:current-layer=\"svg4136\"%0A showguides=\"false\"%0A borderlayer=\"false\"%0A inkscape:showpageshadow=\"true\"%0A showborder=\"true\">%0A <inkscape:grid%0A type=\"xygrid\"%0A id=\"grid4640\"%0A empspacing=\"24\" />%0A </sodipodi:namedview>%0A <!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"4\" />%0A <rect%0A id=\"svg_1-7\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"28.000006\"%0A style=\"fill:%23ec3f29;fill-opacity:0.94117647;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A x=\"52.000004\"%0A y=\"3.999995\"%0A width=\"16\"%0A height=\"16\"%0A id=\"rect4165\" />%0A <rect%0A id=\"rect4175\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.9999852\"%0A x=\"172.00002\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4175-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"3.999995\"%0A x=\"196\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <g%0A id=\"g4299\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <g%0A id=\"g4299-3\"%0A transform=\"matrix(0.70710678,-0.70710678,0.70710678,0.70710678,19.029435,12.000001)\"%0A style=\"stroke:none\">%0A <rect%0A x=\"7.0000048\"%0A y=\"10.999998\"%0A width=\"9.9999924\"%0A height=\"1.9999986\"%0A id=\"svg_1-1-0\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <rect%0A x=\"11.000005\"%0A y=\"7.0000114\"%0A width=\"1.9999955\"%0A height=\"9.9999838\"%0A id=\"svg_1-1-1-9\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:0\" />%0A </g>%0A <rect%0A id=\"svg_1-7-5\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"7.0000048\"%0A x=\"55.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A x=\"58\"%0A y=\"10.00001\"%0A width=\"6.9999909\"%0A height=\"6.9999905\"%0A id=\"rect4354\" />%0A <rect%0A id=\"svg_1-7-5-7\"%0A height=\"6.9999905\"%0A width=\"6.9999909\"%0A y=\"10.000005\"%0A x=\"58.000004\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%233c80df;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647\" />%0A <g%0A id=\"g4378\">%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"10.999999\"%0A width=\"7.9999909\"%0A height=\"1.9999965\"%0A id=\"svg_1-7-5-3\" />%0A <rect%0A id=\"rect4374\"%0A height=\"1.9999946\"%0A width=\"11.999995\"%0A y=\"7.0000005\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A id=\"rect4376\"%0A height=\"1.9999995\"%0A width=\"3.9999928\"%0A y=\"14.999996\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A </g>%0A <g%0A transform=\"matrix(1,0,0,-1,-23.999995,23.999995)\"%0A id=\"g4383\">%0A <rect%0A id=\"rect4385\"%0A height=\"1.9999965\"%0A width=\"7.9999909\"%0A y=\"10.999999\"%0A x=\"198\"%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"7.0000005\"%0A width=\"11.999995\"%0A height=\"1.9999946\"%0A id=\"rect4387\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23000000;stroke-width:0\"%0A x=\"198\"%0A y=\"14.999996\"%0A width=\"3.9999928\"%0A height=\"1.9999995\"%0A id=\"rect4389\" />%0A </g>%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-4\"%0A width=\"16\"%0A height=\"16\"%0A x=\"76\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 85.10447,6.0157384 -0.0156,1.4063 c 3.02669,-0.2402 0.33008,3.6507996 2.48438,4.5780996 -2.18694,1.0938 0.49191,4.9069 -2.45313,4.5781 l -0.0156,1.4219 c 5.70828,0.559 1.03264,-5.1005 4.70313,-5.2656 l 0,-1.4063 c -3.61303,-0.027 1.11893,-5.7069996 -4.70313,-5.3124996 z\"%0A id=\"path4351\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:%23ffffff;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 82.78125,5.9984384 0.0156,1.4063 c -3.02668,-0.2402 -0.33007,3.6506996 -2.48437,4.5780996 2.18694,1.0938 -0.49192,4.9069 2.45312,4.5781 l 0.0156,1.4219 c -5.70827,0.559 -1.03263,-5.1004 -4.70312,-5.2656 l 0,-1.4063 c 3.61303,-0.027 -1.11894,-5.7070996 4.70312,-5.3124996 z\"%0A id=\"path4351-9\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-25\"%0A width=\"16\"%0A height=\"16\"%0A x=\"100\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 103.719,5.6719384 0,12.7187996 3.03125,0 0,-1.5313 -1.34375,0 0,-9.6249996 1.375,0 0,-1.5625 z\"%0A id=\"path2987\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 112.2185,5.6721984 0,12.7187996 -3.03125,0 0,-1.5313 1.34375,0 0,-9.6249996 -1.375,0 0,-1.5625 z\"%0A id=\"path2987-1\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-73\"%0A width=\"16\"%0A height=\"16\"%0A x=\"124\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 126.2824,17.602938 1.78957,0 1.14143,-2.8641 5.65364,0 1.14856,2.8641 1.76565,0 -4.78687,-11.1610996 -1.91903,0 z\"%0A id=\"path3780\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccc\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A d=\"m 129.72704,13.478838 4.60852,0.01 -2.30426,-5.5497996 z\"%0A id=\"path3782\"%0A inkscape:connector-curvature=\"0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none\"%0A id=\"rect3754-35\"%0A width=\"16\"%0A height=\"16\"%0A x=\"148\"%0A y=\"3.9999199\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 156.47655,5.8917384 0,2.1797 0.46093,2.3983996 1.82813,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:1;stroke:none\"%0A d=\"m 152.51561,5.8906384 0,2.1797 0.46094,2.3983996 1.82812,0 0.39844,-2.3983996 0,-2.1797 z\"%0A id=\"path5008-2-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccc\" />%0A <rect%0A id=\"svg_1-7-2\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"64\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"svg_1-7-2-2\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"52\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"52\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4561\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"80.000008\"%0A y=\"58\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4563\" />%0A <rect%0A id=\"rect4565\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"58\"%0A x=\"85.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4567\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"64\"%0A x=\"80.000008\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"85.000008\"%0A y=\"64\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4569\" />%0A <circle%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%234c4c4c;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4571\"%0A cx=\"110.06081\"%0A cy=\"57.939209\"%0A r=\"4.7438836\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"116.64566\"%0A y=\"-31.79752\"%0A width=\"4.229713\"%0A height=\"6.4053884\"%0A id=\"rect4563-2\"%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\" />%0A <path%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 125,56 138.77027,56.095 132,64 Z\"%0A id=\"path4613\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615\"%0A d=\"M 149,64 162.77027,63.905 156,56 Z\"%0A style=\"fill:%234c4c4c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"54\"%0A y=\"53\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4638\" />%0A <rect%0A id=\"svg_1-7-2-24\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-56\"%0A x=\"53\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\"%0A x=\"53\"%0A y=\"-66\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4657\" />%0A <rect%0A id=\"rect4659\"%0A height=\"0.99999291\"%0A width=\"11.999999\"%0A y=\"57\"%0A x=\"54\"%0A style=\"fill:%234c4c4c;fill-opacity:0.98431373;stroke:none;stroke-width:0\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"88.000122\"%0A width=\"11.999996\"%0A height=\"1.9999961\"%0A id=\"rect4661\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"76.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4663\" />%0A <rect%0A id=\"rect4665\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"76.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A id=\"rect4667\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"82.000122\"%0A x=\"80.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"85.000008\"%0A y=\"82.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4669\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"80.000008\"%0A y=\"88.000122\"%0A width=\"2.9999907\"%0A height=\"2.9999905\"%0A id=\"rect4671\" />%0A <rect%0A id=\"rect4673\"%0A height=\"2.9999905\"%0A width=\"2.9999907\"%0A y=\"88.000122\"%0A x=\"85.000008\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <circle%0A r=\"4.7438836\"%0A cy=\"81.939331\"%0A cx=\"110.06081\"%0A id=\"circle4675\"%0A style=\"opacity:1;fill:none;fill-opacity:1;stroke:%23d3d3d3;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)\"%0A id=\"rect4677\"%0A height=\"6.4053884\"%0A width=\"4.229713\"%0A y=\"-14.826816\"%0A x=\"133.6163\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:%23d3d3d3;stroke-width:0;stroke-opacity:1\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4679\"%0A d=\"m 125,80.000005 13.77027,0.09499 L 132,87.999992 Z\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"fill:%23d3d3d3;fill-opacity:1;fill-rule:evenodd;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"M 149,88.0002 162.77027,87.9052 156,80.0002 Z\"%0A id=\"path4681\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <rect%0A id=\"rect4683\"%0A height=\"1.9999961\"%0A width=\"11.999996\"%0A y=\"77.000122\"%0A x=\"54\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\" />%0A <rect%0A transform=\"matrix(0,1,-1,0,0,0)\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"77.000122\"%0A y=\"-56\"%0A width=\"12.99999\"%0A height=\"1.9999957\"%0A id=\"rect4685\" />%0A <rect%0A id=\"rect4687\"%0A height=\"1.9999957\"%0A width=\"12.99999\"%0A y=\"-66\"%0A x=\"77.000122\"%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A transform=\"matrix(0,1,-1,0,0,0)\" />%0A <rect%0A style=\"fill:%23d3d3d3;fill-opacity:1;stroke:none;stroke-width:0;stroke-opacity:1\"%0A x=\"54\"%0A y=\"81.000122\"%0A width=\"11.999999\"%0A height=\"0.99999291\"%0A id=\"rect4689\" />%0A <rect%0A id=\"rect4761-1\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"101\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-0\"%0A height=\"1.9999945\"%0A width=\"15.99999\"%0A y=\"105\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-7\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"109\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1\"%0A height=\"1.9999945\"%0A width=\"12\"%0A y=\"125\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"137\"%0A x=\"76.000008\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4\"%0A height=\"1.9999945\"%0A width=\"10\"%0A y=\"129\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <rect%0A id=\"rect4761-1-1-4-4-3\"%0A height=\"1.9999945\"%0A width=\"9\"%0A y=\"133\"%0A x=\"82\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:none;stroke-width:0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,100.0254 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,100.5991 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1452 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533865,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550756,0 6.710442,-2.4113 7.650391,-5.9414 0.939949,-3.5301 -0.618463,-7.2736 -3.710938,-9.0703 -1.159678,-0.6738 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.8;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,99.9629 c -1.270084,0.039 -2.541493,0.3887 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5402 -3.710937,9.0703 0.939949,3.5301 4.09768,5.9414 7.648437,5.9414 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4056 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,100 0,2 -2.4999996,0 L 12,107 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A id=\"path3055-0-77\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9850574,108.015 14.0298856,-0.03\"%0A id=\"path5244-5-0-5\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A style=\"opacity:0.8;fill:none;stroke:%23ffffff;stroke-width:1.96599996;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"%0A d=\"m 4.9849874,132.015 14.0298866,-0.03\"%0A id=\"path5244-5-0-5-8\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cc\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 36.398438,123.9629 c -0.423362,-0.013 -0.846847,0.01 -1.265626,0.062 -1.656562,0.2196 -3.244567,0.9739 -4.507812,2.2266 L 29,124.5366 l -2.324219,7.7129 7.826172,-1.9062 -1.804687,-1.9063 c 1.597702,-1.5308 4.048706,-1.8453 5.984375,-0.7207 1.971162,1.1453 2.881954,3.3975 2.308593,5.5508 -0.573361,2.1533 -2.533864,3.6953 -4.830078,3.6953 l 0,3.0742 c 3.550757,0 6.710442,-2.4093 7.650391,-5.9394 0.939949,-3.5301 -0.618463,-7.2756 -3.710938,-9.0723 -1.159678,-0.6737 -2.431087,-1.0231 -3.701171,-1.0625 z\"%0A id=\"path4138-12\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"color:%23000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.4;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000000;solid-opacity:1;fill:%234d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.66157866;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate\"%0A d=\"m 59.722656,123.9629 c -1.270084,0.039 -2.541493,0.3888 -3.701172,1.0625 -3.092475,1.7967 -4.650886,5.5422 -3.710937,9.0723 0.939949,3.5301 4.09768,5.9394 7.648437,5.9394 l 0,-3.0742 c -2.296214,0 -4.256717,-1.542 -4.830078,-3.6953 -0.573361,-2.1533 0.337432,-4.4055 2.308594,-5.5508 1.935731,-1.1246 4.38863,-0.8102 5.986326,0.7207 l -1.806638,1.9063 7.828128,1.9062 -2.32422,-7.7129 -1.62696,1.7168 c -1.26338,-1.2531 -2.848917,-2.0088 -4.505855,-2.2285 -0.418778,-0.055 -0.842263,-0.076 -1.265625,-0.062 z\"%0A id=\"path4138-1-3\" />%0A <path%0A id=\"path6191\"%0A d=\"m 10.5,116 0,-2 -2.4999996,0 L 12,109 l 4,5 -2.5,0 0,2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A inkscape:connector-curvature=\"0\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A d=\"m 10.5,129 0,-2 -2.4999996,0 L 12,122 l 4,5 -2.5,0 0,2 -3,0 z\"%0A id=\"path6193\" />%0A <path%0A id=\"path6195\"%0A d=\"m 10.5,135 0,2 -2.4999996,0 L 12,142 l 4,-5 -2.5,0 0,-2 -3,0 z\"%0A style=\"opacity:0.8;fill:%23ffffff;fill-opacity:1;stroke:none;stroke-width:1.96599996;stroke-miterlimit:4;stroke-dasharray:none\"%0A inkscape:connector-curvature=\"0\" />%0A <path%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4500\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073242 -3.833708,2.213392 -3.8337072,2.213393 0,-4.426785 0,-4.426784 3.8337082,2.213392 z\"%0A inkscape:transform-center-x=\"-1.2779026\" />%0A <path%0A inkscape:transform-center-x=\"1.277902\"%0A d=\"m -31.500004,60.073242 -3.833708,2.213392 -3.833707,2.213393 0,-4.426785 0,-4.426784 3.833707,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073242\"%0A sodipodi:cx=\"-36.611614\"%0A sodipodi:sides=\"3\"%0A id=\"path4502\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"scale(-1,1)\" />%0A <path%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\"%0A inkscape:randomized=\"0\"%0A inkscape:rounded=\"0\"%0A inkscape:flatsided=\"false\"%0A sodipodi:arg2=\"1.0471976\"%0A sodipodi:arg1=\"0\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:sides=\"3\"%0A id=\"path4504\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A sodipodi:type=\"star\"%0A transform=\"matrix(0,1,-1,0,72.0074,71.7877)\"%0A inkscape:transform-center-y=\"1.2779029\" />%0A <path%0A inkscape:transform-center-y=\"-1.2779026\"%0A transform=\"matrix(0,-1,-1,0,96,96)\"%0A sodipodi:type=\"star\"%0A style=\"fill:%234d4d4d;fill-opacity:0.90196078;stroke:%23d3d3d3;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none\"%0A id=\"path4506\"%0A sodipodi:sides=\"3\"%0A sodipodi:cx=\"11.55581\"%0A sodipodi:cy=\"60.073212\"%0A sodipodi:r1=\"5.1116104\"%0A sodipodi:r2=\"2.5558052\"%0A sodipodi:arg1=\"0\"%0A sodipodi:arg2=\"1.0471976\"%0A inkscape:flatsided=\"false\"%0A inkscape:rounded=\"0\"%0A inkscape:randomized=\"0\"%0A d=\"m 16.66742,60.073212 -3.833708,2.213392 -3.8337072,2.213392 0,-4.426784 0,-4.426785 3.8337082,2.213392 z\" />%0A <path%0A sodipodi:nodetypes=\"cccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4615-5\"%0A d=\"m 171.82574,65.174193 16.34854,0 -8.17427,-13.348454 z\"%0A style=\"fill:%23fbb917;fill-opacity:1;fill-rule:evenodd;stroke:%23fbb917;stroke-width:1.65161395;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,55 0,6 2,0 0,-6\"%0A id=\"path4300\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"opacity:1;fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 179,62 0,2 2,0 0,-2\"%0A id=\"path4300-6\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccc\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:%23ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:0.8\"%0A d=\"M 99.994369,113.0221 102,114.98353 l 7,-6.9558 3,0.97227 2,-1 1,-2 0,-3 -3,3 -3,-3 3,-3 -3,0 -2,1 -1,2 0.99437,3.0221 z\"%0A id=\"path4268\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"ccccccccccccccc\" />%0A <rect%0A id=\"rect4175-3-5\"%0A height=\"16\"%0A width=\"16\"%0A y=\"4\"%0A x=\"220\"%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\" />%0A <path%0A style=\"fill:%23ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 234,6 0,2 -5,5 0,5 -2,0 0,-5 -5,-5 0,-2\"%0A id=\"path3546\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <g%0A transform=\"matrix(1.3333328,0,0,-1.5999992,-139.9999,127.19999)\"%0A id=\"g4383-6\">%0A <rect%0A id=\"rect4385-2\"%0A height=\"1.2499905\"%0A width=\"5.9999924\"%0A y=\"12.625005\"%0A x=\"198.00002\"%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"15.125007\"%0A width=\"7.4999928\"%0A height=\"1.2499949\"%0A id=\"rect4387-9\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"7.6250024\"%0A width=\"2.9999909\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-0\" />%0A <rect%0A style=\"fill:%23ffffff;fill-opacity:0.8;stroke:%23000000;stroke-width:0\"%0A x=\"198.00002\"%0A y=\"10.125004\"%0A width=\"4.4999919\"%0A height=\"1.2499905\"%0A id=\"rect4389-1-9\" />%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 207.00001,16.375004 0,-5.625005 -2.25,0 3,-3.1250014 3,3.1250014 -2.25,0 0,5.625005 -1.5,0\"%0A id=\"path4402\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A </g>%0A <path%0A style=\"fill:%23ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"%0A d=\"m 164,100 0,3 -6,6 0,7 -4,0 0,-7 -6,-6 0,-3\"%0A id=\"path3546-2-2\"%0A inkscape:connector-curvature=\"0\"%0A sodipodi:nodetypes=\"cccccccc\" />%0A <rect%0A style=\"fill:%234c4c4c;fill-opacity:1;stroke:none;stroke-width:0\"%0A id=\"svg_1-3\"%0A height=\"16\"%0A width=\"16\"%0A y=\"28\"%0A x=\"4\" />%0A <path%0A sodipodi:nodetypes=\"ccccccccc\"%0A inkscape:connector-curvature=\"0\"%0A id=\"path4402-5-7\"%0A d=\"m 15,41 0,-7 -4,0 0,3 -5,-4 5,-4 0,3 6,0 0,9\"%0A style=\"fill:%23ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.68465352px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\" />%0A</svg>%0A');background-position:-25px 0}::ng-deep .jsoneditor-statusbar .jsoneditor-array-info a{color:inherit}::ng-deep div.jsoneditor-statusbar>.jsoneditor-curserinfo-label,::ng-deep div.jsoneditor-statusbar>.jsoneditor-size-info{margin:0 4px}::ng-deep .jsoneditor-treepath{padding:0 5px;overflow:hidden;white-space:nowrap;outline:0}::ng-deep .jsoneditor-treepath.show-all{word-wrap:break-word;white-space:normal;position:absolute;background-color:#ebebeb;z-index:1;box-shadow:2px 2px 12px #8080804d}::ng-deep .jsoneditor-treepath.show-all span.jsoneditor-treepath-show-all-btn{display:none}::ng-deep .jsoneditor-treepath div.jsoneditor-contextmenu-root{position:absolute;left:0}::ng-deep .jsoneditor-treepath .jsoneditor-treepath-show-all-btn{position:absolute;background-color:#ebebeb;left:0;height:20px;padding:0 3px;cursor:pointer}::ng-deep .jsoneditor-treepath .jsoneditor-treepath-element{margin:1px;font-family:arial,sans-serif;font-size:14px}::ng-deep .jsoneditor-treepath .jsoneditor-treepath-seperator{margin:2px;font-size:9pt;font-family:arial,sans-serif}::ng-deep .jsoneditor-treepath span.jsoneditor-treepath-element:hover,::ng-deep .jsoneditor-treepath span.jsoneditor-treepath-seperator:hover{cursor:pointer;text-decoration:underline}::ng-deep .selectr-container{position:relative}::ng-deep .selectr-container li{list-style:none}::ng-deep .selectr-hidden{position:absolute;overflow:hidden;clip:rect(0,0,0,0);width:1px;height:1px;margin:-1px;padding:0;border:0 none}::ng-deep .selectr-visible{position:absolute;left:0;top:0;width:100%;height:100%;opacity:0;z-index:11}::ng-deep .selectr-desktop.multiple .selectr-visible{display:none}::ng-deep .selectr-desktop.multiple.native-open .selectr-visible{top:100%;min-height:200px!important;height:auto;opacity:1;display:block}::ng-deep .selectr-container.multiple.selectr-mobile .selectr-selected{z-index:0}::ng-deep .selectr-selected{position:relative;z-index:1;box-sizing:border-box;width:100%;padding:7px 28px 7px 14px;cursor:pointer;border:1px solid #999;border-radius:3px;background-color:#fff}::ng-deep .selectr-selected:before{position:absolute;top:50%;right:10px;width:0;height:0;content:\"\";-o-transform:rotate(0) translate3d(0,-50%,0);-ms-transform:rotate(0) translate3d(0,-50%,0);-moz-transform:rotate(0) translate3d(0,-50%,0);-webkit-transform:rotate(0) translate3d(0,-50%,0);transform:rotate(0) translate3d(0,-50%,0);border-width:4px 4px 0 4px;border-style:solid;border-color:#6c7a86 transparent transparent}::ng-deep .selectr-container.native-open .selectr-selected:before,::ng-deep .selectr-container.open .selectr-selected:before{border-width:0 4px 4px 4px;border-style:solid;border-color:transparent transparent #6c7a86}::ng-deep .selectr-label{display:none;overflow:hidden;width:100%;white-space:nowrap;text-overflow:ellipsis}::ng-deep .selectr-placeholder{color:#6c7a86}::ng-deep .selectr-tags{margin:0;padding:0;white-space:normal}::ng-deep .has-selected .selectr-tags{margin:0 0 -2px}::ng-deep .selectr-tag{list-style:none;position:relative;float:left;padding:2px 25px 2px 8px;margin:0 2px 2px 0;cursor:default;color:#fff;border:medium none;border-radius:10px;background:#acb7bf none repeat scroll 0 0}::ng-deep .selectr-container.multiple.has-selected .selectr-selected{padding:5px 28px 5px 5px}::ng-deep .selectr-options-container{position:absolute;z-index:10000;top:calc(100% - 1px);left:0;display:none;box-sizing:border-box;width:100%;border-width:0 1px 1px;border-style:solid;border-color:transparent #999 #999;border-radius:0 0 3px 3px;background-color:#fff}::ng-deep .selectr-container.open .selectr-options-container{display:block}::ng-deep .selectr-input-container{position:relative;display:none}::ng-deep .selectr-clear,::ng-deep .selectr-input-clear,::ng-deep .selectr-tag-remove{position:absolute;top:50%;right:22px;width:20px;height:20px;padding:0;cursor:pointer;-o-transform:translate3d(0,-50%,0);-ms-transform:translate3d(0,-50%,0);-moz-transform:translate3d(0,-50%,0);-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0);border:medium none;background-color:transparent;z-index:11}::ng-deep .selectr-clear,::ng-deep .selectr-input-clear{display:none}::ng-deep .selectr-container.has-selected .selectr-clear,::ng-deep .selectr-input-container.active .selectr-input-clear{display:block}::ng-deep .selectr-selected .selectr-tag-remove{right:2px}::ng-deep .selectr-clear:after,::ng-deep .selectr-clear:before,::ng-deep .selectr-input-clear:after,::ng-deep .selectr-input-clear:before,::ng-deep .selectr-tag-remove:after,::ng-deep .selectr-tag-remove:before{position:absolute;top:5px;left:9px;width:2px;height:10px;content:\" \";background-color:#6c7a86}::ng-deep .selectr-tag-remove:after,::ng-deep .selectr-tag-remove:before{top:4px;width:3px;height:12px;background-color:#fff}::ng-deep .selectr-clear:before,::ng-deep .selectr-input-clear:before,::ng-deep .selectr-tag-remove:before{-o-transform:rotate(45deg);-ms-transform:rotate(45deg);-moz-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg)}::ng-deep .selectr-clear:after,::ng-deep .selectr-input-clear:after,::ng-deep .selectr-tag-remove:after{-o-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}::ng-deep .selectr-input-container.active,::ng-deep .selectr-input-container.active .selectr-clear{display:block}::ng-deep .selectr-input{top:5px;left:5px;box-sizing:border-box;width:calc(100% - 30px);margin:10px 15px;padding:7px 30px 7px 9px;border:1px solid #999;border-radius:3px}::ng-deep .selectr-notice{display:none;box-sizing:border-box;width:100%;padding:8px 16px;border-top:1px solid #999;border-radius:0 0 3px 3px;background-color:#fff}::ng-deep .selectr-container.notice .selectr-notice{display:block}::ng-deep .selectr-container.notice .selectr-selected{border-radius:3px 3px 0 0}::ng-deep .selectr-options{position:relative;top:calc(100% + 2px);display:none;overflow-x:auto;overflow-y:scroll;max-height:200px;margin:0;padding:0}::ng-deep .selectr-container.notice .selectr-options-container,::ng-deep .selectr-container.open .selectr-input-container,::ng-deep .selectr-container.open .selectr-options{display:block}::ng-deep .selectr-option{position:relative;display:block;padding:5px 20px;list-style:outside none none;cursor:pointer;font-weight:400}::ng-deep .selectr-options.optgroups>.selectr-option{padding-left:25px}::ng-deep .selectr-optgroup{font-weight:700;padding:0}::ng-deep .selectr-optgroup--label{font-weight:700;margin-top:10px;padding:5px 15px}::ng-deep .selectr-match{text-decoration:underline}::ng-deep .selectr-option.selected{background-color:#ddd}::ng-deep .selectr-option.active{color:#fff;background-color:#5897fb}::ng-deep .selectr-option.disabled{opacity:.4}::ng-deep .selectr-option.excluded{display:none}::ng-deep .selectr-container.open .selectr-selected{border-color:#999 #999 transparent #999;border-radius:3px 3px 0 0}::ng-deep .selectr-container.open .selectr-selected:after{-o-transform:rotate(180deg) translate3d(0,50%,0);-ms-transform:rotate(180deg) translate3d(0,50%,0);-moz-transform:rotate(180deg) translate3d(0,50%,0);-webkit-transform:rotate(180deg) translate3d(0,50%,0);transform:rotate(180deg) translate3d(0,50%,0)}::ng-deep .selectr-disabled{opacity:.6}::ng-deep .has-selected .selectr-placeholder,::ng-deep .selectr-empty{display:none}::ng-deep .has-selected .selectr-label{display:block}::ng-deep .taggable .selectr-selected{padding:4px 28px 4px 4px}::ng-deep .taggable .selectr-selected:after{display:table;content:\" \";clear:both}::ng-deep .taggable .selectr-label{width:auto}::ng-deep .taggable .selectr-tags{float:left;display:block}::ng-deep .taggable .selectr-placeholder{display:none}::ng-deep .input-tag{float:left;min-width:90px;width:auto}::ng-deep .selectr-tag-input{border:medium none;padding:3px 10px;width:100%;font-family:inherit;font-weight:inherit;font-size:inherit}::ng-deep .selectr-input-container.loading:after{position:absolute;top:50%;right:20px;width:20px;height:20px;content:\"\";-o-transform:translate3d(0,-50%,0);-ms-transform:translate3d(0,-50%,0);-moz-transform:translate3d(0,-50%,0);-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0);-o-transform-origin:50% 0 0;-ms-transform-origin:50% 0 0;-moz-transform-origin:50% 0 0;-webkit-transform-origin:50% 0 0;transform-origin:50% 0 0;-moz-animation:.5s linear 0s normal forwards infinite running selectr-spin;-webkit-animation:.5s linear 0s normal forwards infinite running selectr-spin;animation:.5s linear 0s normal forwards infinite running selectr-spin;border-width:3px;border-style:solid;border-color:#aaa #ddd #ddd;border-radius:50%}@-webkit-keyframes selectr-spin{0%{-webkit-transform:rotate(0) translate3d(0,-50%,0);transform:rotate(0) translate3d(0,-50%,0)}to{-webkit-transform:rotate(360deg) translate3d(0,-50%,0);transform:rotate(360deg) translate3d(0,-50%,0)}}@keyframes selectr-spin{0%{-webkit-transform:rotate(0) translate3d(0,-50%,0);transform:rotate(0) translate3d(0,-50%,0)}to{-webkit-transform:rotate(360deg) translate3d(0,-50%,0);transform:rotate(360deg) translate3d(0,-50%,0)}}::ng-deep .selectr-container.open.inverted .selectr-selected{border-color:transparent #999 #999;border-radius:0 0 3px 3px}::ng-deep .selectr-container.inverted .selectr-options-container{border-width:1px 1px 0;border-color:#999 #999 transparent;border-radius:3px 3px 0 0;background-color:#fff}::ng-deep .selectr-container.inverted .selectr-options-container{top:auto;bottom:calc(100% - 1px)}::ng-deep .selectr-container ::-webkit-input-placeholder{color:#6c7a86;opacity:1}::ng-deep .selectr-container ::-moz-placeholder{color:#6c7a86;opacity:1}::ng-deep .selectr-container :-ms-input-placeholder{color:#6c7a86;opacity:1}::ng-deep .selectr-container ::placeholder{color:#6c7a86;opacity:1}\n"] }]
10045
+ }], ctorParameters: () => [], propDecorators: { fields: [{
10046
+ type: Input
10047
+ }], options: [{
10048
+ type: Input
10049
+ }], debug: [{
10050
+ type: Input
10051
+ }], data: [{
10052
+ type: Input,
10053
+ args: ['data']
10054
+ }], changed: [{
10055
+ type: Output
10056
+ }], modelChange: [{
10057
+ type: Output
10058
+ }], jsonChange: [{
10059
+ type: Output
10060
+ }], jsonEditorContainer: [{
10061
+ type: ViewChild,
10062
+ args: ['jsonEditorContainer', { static: true }]
10063
+ }] } });
10064
+
10065
+ class JsonEditorModule {
10066
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: JsonEditorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
10067
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.11", ngImport: i0, type: JsonEditorModule, declarations: [JsonEditorComponent], imports: [CommonModule], exports: [JsonEditorComponent] });
10068
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: JsonEditorModule, imports: [CommonModule] });
10069
+ }
10070
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.11", ngImport: i0, type: JsonEditorModule, decorators: [{
10071
+ type: NgModule,
10072
+ args: [{
10073
+ declarations: [
10074
+ JsonEditorComponent
10075
+ ],
10076
+ imports: [
10077
+ CommonModule
10078
+ ],
10079
+ exports: [
10080
+ JsonEditorComponent
10081
+ ]
10082
+ }]
10083
+ }] });
10084
+
9715
10085
  var RatingSizesEnum;
9716
10086
  (function (RatingSizesEnum) {
9717
10087
  RatingSizesEnum["small"] = "mrx-rating-sm";
@@ -10718,7 +11088,6 @@ class InputFileComponent {
10718
11088
  percentage: 0,
10719
11089
  file: file
10720
11090
  };
10721
- console.log(data);
10722
11091
  if (!this.checkForUpload(data)) {
10723
11092
  return;
10724
11093
  }
@@ -16127,5 +16496,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.11", ngImpo
16127
16496
  * Generated bundle index. Do not edit.
16128
16497
  */
16129
16498
 
16130
- export { AlertColorClasses, AlertComponent, AlertIconClasses, AlertModule, BadgeColorClassesEnum, BadgeComponent, BadgeGroupComponent, BadgeSizeEnum, BadgeTagTypeClassesEnum, BadgeTargetTypesEnum, BadgeTypeEnum, BadgesModule, BreadcrumbsComponent, BreadcrumbsModule, BreadcrumbsTypeEnum, ButtonColorsEnum, ButtonComponent, ButtonIconPositionEnum, ButtonModule, ButtonSizesEnum, ButtonTypesEnum, CdkTooltipDirective, CdkTooltipModule, CharsLeftComponent, CharsLeftModule, CheckboxComponent, CheckboxGroupComponent, CheckboxGroupModule, CheckboxModule, ColumnComponent, ContentWrapperComponent, ContentWrapperModule, ContentWrapperTypeEnum, ControlsItemComponent, ControlsVisibilityEnum, ControlsWrapperComponent, ControlsWrapperModule, CountryISO$1 as CountryISO, CurrencyModule, CurrencyPipe, DateFormatModule, DateFormatPipe, DateTimeFormatPipe, DefaultPagerSettings, DropdownComponent, DropdownModule, EditorComponent, EditorModule, ErrorMessageComponent, ErrorMessageModule, FileUploadService, GalleryComponent, GalleryModule, HideAfterClickDirective, HintErrorMessageComponent, HintErrorMessageModule, IconButtonComponent, IconButtonModule, IconButtonSizeEnum, IconButtonStateEnum, IconButtonTypeEnum, InputDateSizesEnum$2 as InputDateSizesEnum, InputDateTimeComponent, InputDateTimeModule, InputDatepickerComponent, InputDatepickerModule, InputFileComponent, InputFileImageComponent, InputFileImageModule, InputFileImageTypeEnum, InputFileModule, InputNumberComponent, InputNumberModule, InputNumberSizesEnum, InputOptComponent, InputOptModule, InputPasswordComponent, InputPasswordModule, InputPasswordSizesEnum, InputPhoneComponent, InputPhoneModule, InputSearchComponent, InputSearchModule, InputSearchSizesEnum, InputSelectComponent, InputSelectModule, InputSelectSizeEnum, InputTelComponent, InputTelModule, InputTextComponent, InputTextIconColorEnum, InputTextModule, InputTextSizesEnum, InputTextareaComponent, InputTextareaModule, InputTextareaSizesEnum, InputTimepickerComponent, InputTimepickerModule, LabelComponent, LabelModule, LinkComponent, LinkModule, LinkSizesEnum, LinkTargetTypesEnum, LinkTypesEnum, LoaderColorEnum, LoaderComponent, LoaderModule, LoaderSizesEnum, MODAL_CONFIG, MODAL_DATA, ModalAlignButtonsEnum, ModalColorEnum, ModalComponent, ModalModule, ModalRef, ModalService, ModalServiceComponent, ModalServiceModule, ModalSizesEnum, MrxAutoSaveActionsEnum, MrxAutosaveService, MrxFormValidator, NgxOtpBehavior, PagesNavComponent, PagesNavEnum, PagesNavModule, PaginatorComponent, PaginatorModule, PaginatorPositionCss, PdfViewerComponent, PdfViewerComponentModule, PhoneFormatModule, PhoneFormatPipe, PreviewEnum, ProgressClasses, ProgressComponent, ProgressModule, RadioComponent, RadioGroupComponent, RadioGroupModule, RadioModule, RadioTypesEnum, RatingComponent, RatingModule, RatingSizesEnum, RatingValueSizesEnum, RatingWrapperSizesEnum, SafeModule, SafePipe, SaveStateComponent, SaveStateModule, SaveStoreModule, StepperClasses, StepperComponent, StepperModule, SwitchComponent, SwitchModule, SwitchSizeEnum, SwitchTypeEnum, TabComponent, TableComponent, TableModule, TableTypeEnum, TabsClasses, TabsGroupComponent, TabsModule, TabsTypesClasses, Timezone$1 as Timezone, ToasterPosition, ToasterService, ToasterServiceModule, ToasterType, Tooltip, TooltipComponent, TooltipModule, TooltipService, TooltipTextPositionEnum, TooltipTriggerComponent, TooltipTriggerEnum, TruncateDirective, TruncateDirectiveModule, TruncateModule, TruncatePipe, TruncateTextComponent, TruncateTextModule, ValidationMethodsEnum, ValidationOptionsEnum, ValidationTypesEnum, WarningMessageComponent, WarningMessageModule, WidgetWrapperComponent, WidgetWrapperModule, autosaveAddId, autosaveError, autosaveErrorFor, autosaveStart, autosaveStartFor, autosaveStop, autosaveStopFor, autosaveSuccess, autosaveSuccessFor, convertBase64ToFile, dateTimeFormat, defaultConfig, defaultCustomConfig, formatBytes, formattingDateRange, formattingIsoToString, getBase64FromUrl, getHashCode, innerListToList, sHashCode, selectFields, selectMrxAutoSaveState, sliceDate, toBytes, toDate, toNumberFormat, wordForm };
16499
+ export { AlertColorClasses, AlertComponent, AlertIconClasses, AlertModule, BadgeColorClassesEnum, BadgeComponent, BadgeGroupComponent, BadgeSizeEnum, BadgeTagTypeClassesEnum, BadgeTargetTypesEnum, BadgeTypeEnum, BadgesModule, BreadcrumbsComponent, BreadcrumbsModule, BreadcrumbsTypeEnum, ButtonColorsEnum, ButtonComponent, ButtonIconPositionEnum, ButtonModule, ButtonSizesEnum, ButtonTypesEnum, CdkTooltipDirective, CdkTooltipModule, CharsLeftComponent, CharsLeftModule, CheckboxComponent, CheckboxGroupComponent, CheckboxGroupModule, CheckboxModule, ColumnComponent, ContentWrapperComponent, ContentWrapperModule, ContentWrapperTypeEnum, ControlsItemComponent, ControlsVisibilityEnum, ControlsWrapperComponent, ControlsWrapperModule, CountryISO$1 as CountryISO, CurrencyModule, CurrencyPipe, DateFormatModule, DateFormatPipe, DateTimeFormatPipe, DefaultPagerSettings, DropdownComponent, DropdownModule, EditorComponent, EditorModule, ErrorMessageComponent, ErrorMessageModule, FileUploadService, GalleryComponent, GalleryModule, HideAfterClickDirective, HintErrorMessageComponent, HintErrorMessageModule, IconButtonComponent, IconButtonModule, IconButtonSizeEnum, IconButtonStateEnum, IconButtonTypeEnum, InputDateSizesEnum$2 as InputDateSizesEnum, InputDateTimeComponent, InputDateTimeModule, InputDatepickerComponent, InputDatepickerModule, InputFileComponent, InputFileImageComponent, InputFileImageModule, InputFileImageTypeEnum, InputFileModule, InputNumberComponent, InputNumberModule, InputNumberSizesEnum, InputOptComponent, InputOptModule, InputPasswordComponent, InputPasswordModule, InputPasswordSizesEnum, InputPhoneComponent, InputPhoneModule, InputSearchComponent, InputSearchModule, InputSearchSizesEnum, InputSelectComponent, InputSelectModule, InputSelectSizeEnum, InputTelComponent, InputTelModule, InputTextComponent, InputTextIconColorEnum, InputTextModule, InputTextSizesEnum, InputTextareaComponent, InputTextareaModule, InputTextareaSizesEnum, InputTimepickerComponent, InputTimepickerModule, JsonEditorComponent, JsonEditorModule, JsonEditorOptions, LabelComponent, LabelModule, LinkComponent, LinkModule, LinkSizesEnum, LinkTargetTypesEnum, LinkTypesEnum, LoaderColorEnum, LoaderComponent, LoaderModule, LoaderSizesEnum, MODAL_CONFIG, MODAL_DATA, ModalAlignButtonsEnum, ModalColorEnum, ModalComponent, ModalModule, ModalRef, ModalService, ModalServiceComponent, ModalServiceModule, ModalSizesEnum, MrxAutoSaveActionsEnum, MrxAutosaveService, MrxFormValidator, NgxOtpBehavior, PagesNavComponent, PagesNavEnum, PagesNavModule, PaginatorComponent, PaginatorModule, PaginatorPositionCss, PdfViewerComponent, PdfViewerComponentModule, PhoneFormatModule, PhoneFormatPipe, PreviewEnum, ProgressClasses, ProgressComponent, ProgressModule, RadioComponent, RadioGroupComponent, RadioGroupModule, RadioModule, RadioTypesEnum, RatingComponent, RatingModule, RatingSizesEnum, RatingValueSizesEnum, RatingWrapperSizesEnum, SafeModule, SafePipe, SaveStateComponent, SaveStateModule, SaveStoreModule, StepperClasses, StepperComponent, StepperModule, SwitchComponent, SwitchModule, SwitchSizeEnum, SwitchTypeEnum, TabComponent, TableComponent, TableModule, TableTypeEnum, TabsClasses, TabsGroupComponent, TabsModule, TabsTypesClasses, Timezone$1 as Timezone, ToasterPosition, ToasterService, ToasterServiceModule, ToasterType, Tooltip, TooltipComponent, TooltipModule, TooltipService, TooltipTextPositionEnum, TooltipTriggerComponent, TooltipTriggerEnum, TruncateDirective, TruncateDirectiveModule, TruncateModule, TruncatePipe, TruncateTextComponent, TruncateTextModule, ValidationMethodsEnum, ValidationOptionsEnum, ValidationTypesEnum, WarningMessageComponent, WarningMessageModule, WidgetWrapperComponent, WidgetWrapperModule, autosaveAddId, autosaveError, autosaveErrorFor, autosaveStart, autosaveStartFor, autosaveStop, autosaveStopFor, autosaveSuccess, autosaveSuccessFor, convertBase64ToFile, dateTimeFormat, defaultConfig, defaultCustomConfig, formatBytes, formattingDateRange, formattingIsoToString, getBase64FromUrl, getHashCode, innerListToList, sHashCode, selectFields, selectMrxAutoSaveState, sliceDate, toBytes, toDate, toNumberFormat, wordForm };
16131
16500
  //# sourceMappingURL=myrta-ui.mjs.map