Showing
12 changed files
with
50 additions
and
18 deletions
... | ... | @@ -46,16 +46,26 @@ |
46 | 46 | <mat-icon>view_compact</mat-icon> |
47 | 47 | </button> |
48 | 48 | </div> |
49 | - <tb-states-component fxFlex.lt-md | |
50 | - [statesControllerId]="isEdit ? 'default' : dashboardConfiguration.settings.stateControllerId" | |
51 | - [dashboardCtrl]="this" | |
52 | - [dashboardId]="(!embedded && dashboard.id) ? dashboard.id.id : ''" | |
53 | - [isMobile]="isMobile" | |
54 | - [state]="dashboardCtx.state" | |
55 | - [currentState]="currentState" | |
56 | - [syncStateWithQueryParam]="syncStateWithQueryParam" | |
57 | - [states]="dashboardConfiguration.states"> | |
58 | - </tb-states-component> | |
49 | + | |
50 | + <div fxFlex.lt-md fxLayout="row" | |
51 | + fxLayoutAlign.gt-sm="start center" | |
52 | + fxLayoutAlign="end center" fxLayoutGap="12px" class="db-logo-and-title" > | |
53 | + | |
54 | + <img [fxShow]="showDashboardLogo()" [src]="dashboard_logo" | |
55 | + aria-label="white_label_logo" class="whitelabel-logo-db"/> | |
56 | + | |
57 | + <tb-states-component fxFlex.lt-md | |
58 | + [statesControllerId]="isEdit ? 'default' : dashboardConfiguration.settings.stateControllerId" | |
59 | + [dashboardCtrl]="this" | |
60 | + [dashboardId]="(!embedded && dashboard.id) ? dashboard.id.id : ''" | |
61 | + [isMobile]="isMobile" | |
62 | + [state]="dashboardCtx.state" | |
63 | + [currentState]="currentState" | |
64 | + [syncStateWithQueryParam]="syncStateWithQueryParam" | |
65 | + [states]="dashboardConfiguration.states"> | |
66 | + </tb-states-component> | |
67 | + | |
68 | + </div> | |
59 | 69 | </div> |
60 | 70 | <div class="tb-dashboard-action-panel" fxFlex="1 0 auto" fxLayout="row-reverse" |
61 | 71 | fxLayoutAlign.gt-sm="start center" fxLayoutAlign="space-between center" fxLayoutGap="12px"> |
... | ... | @@ -286,4 +296,4 @@ |
286 | 296 | </mat-drawer> |
287 | 297 | </mat-drawer-container> |
288 | 298 | </section> |
289 | -</div> | |
299 | +</div> | |
\ No newline at end of file | ... | ... |
... | ... | @@ -54,6 +54,14 @@ div.tb-dashboard-page { |
54 | 54 | z-index: 13; |
55 | 55 | pointer-events: none; |
56 | 56 | |
57 | + .db-logo-and-title { | |
58 | + height: $toolbar-height; | |
59 | + .whitelabel-logo-db{ | |
60 | + height: 100%; | |
61 | + width: auto; | |
62 | + } | |
63 | + } | |
64 | + | |
57 | 65 | &.tb-dashboard-toolbar-opened { |
58 | 66 | right: 0; |
59 | 67 | // transition: right .3s cubic-bezier(.55, 0, .55, .2); |
... | ... | @@ -63,8 +71,9 @@ div.tb-dashboard-page { |
63 | 71 | right: 18px; |
64 | 72 | transition: right .3s cubic-bezier(.55, 0, .55, .2) .2s; |
65 | 73 | } |
66 | - } | |
74 | + | |
67 | 75 | |
76 | + } | |
68 | 77 | .tb-dashboard-container { |
69 | 78 | &.tb-dashboard-toolbar-opened { |
70 | 79 | &.is-fullscreen { | ... | ... |
... | ... | @@ -189,6 +189,8 @@ export class DashboardPageComponent extends PageComponent implements IDashboardC |
189 | 189 | currentDashboardScope: DashboardPageScope; |
190 | 190 | |
191 | 191 | addingLayoutCtx: DashboardPageLayoutContext; |
192 | + | |
193 | + dashboard_logo = 'assets/example_logo.png'; | |
192 | 194 | |
193 | 195 | |
194 | 196 | dashboardCtx: DashboardContext = { |
... | ... | @@ -480,6 +482,15 @@ export class DashboardPageComponent extends PageComponent implements IDashboardC |
480 | 482 | } |
481 | 483 | } |
482 | 484 | |
485 | + public showDashboardLogo(): boolean { | |
486 | + if (this.dashboard.configuration.settings && | |
487 | + isDefined(this.dashboard.configuration.settings.showDashboardLogo)) { | |
488 | + return this.dashboard.configuration.settings.showDashboardLogo; | |
489 | + } else { | |
490 | + return true; | |
491 | + } | |
492 | + } | |
493 | + | |
483 | 494 | public showRightLayoutSwitch(): boolean { |
484 | 495 | return this.isMobile && this.layouts.right.show; |
485 | 496 | } | ... | ... |
... | ... | @@ -53,6 +53,9 @@ |
53 | 53 | </tb-color-input> |
54 | 54 | </div> |
55 | 55 | <div fxLayout="row" fxLayoutAlign="start center" fxLayout.lt-md="column" fxLayoutAlign.lt-md fxLayoutGap="8px"> |
56 | + <mat-checkbox fxFlex formControlName="showDashboardLogo"> | |
57 | + {{ 'dashboard.display-dashboard-showDashboardLogo' | translate }} | |
58 | + </mat-checkbox> | |
56 | 59 | <mat-checkbox fxFlex formControlName="showDashboardsSelect"> |
57 | 60 | {{ 'dashboard.display-dashboards-selection' | translate }} |
58 | 61 | </mat-checkbox> | ... | ... |
... | ... | @@ -79,6 +79,7 @@ export class DashboardSettingsDialogComponent extends DialogComponent<DashboardS |
79 | 79 | showDashboardsSelect: [isUndefined(this.settings.showDashboardsSelect) ? true : this.settings.showDashboardsSelect, []], |
80 | 80 | showEntitiesSelect: [isUndefined(this.settings.showEntitiesSelect) ? true : this.settings.showEntitiesSelect, []], |
81 | 81 | showFilters: [isUndefined(this.settings.showFilters) ? true : this.settings.showFilters, []], |
82 | + showDashboardLogo: [isUndefined(this.settings.showDashboardLogo) ? true : this.settings.showDashboardLogo, []], | |
82 | 83 | showDashboardTimewindow: [isUndefined(this.settings.showDashboardTimewindow) ? true : this.settings.showDashboardTimewindow, []], |
83 | 84 | showDashboardExport: [isUndefined(this.settings.showDashboardExport) ? true : this.settings.showDashboardExport, []] |
84 | 85 | }); | ... | ... |
... | ... | @@ -26,10 +26,6 @@ |
26 | 26 | </button> |
27 | 27 | </mat-fab-trigger> |
28 | 28 | <mat-toolbar color="primary"> |
29 | - <div fxFlex="auto" fxLayout="row"> | |
30 | - <img [src]="white_label_logo" | |
31 | - aria-label="white_label_logo" class="whitelabel-logo-db"/> | |
32 | - </div> | |
33 | 29 | <mat-fab-actions class="mat-toolbar-tools"> |
34 | 30 | <ng-content></ng-content> |
35 | 31 | </mat-fab-actions> | ... | ... |
... | ... | @@ -4413,7 +4413,8 @@ |
4413 | 4413 | "showDashboardExport": false, |
4414 | 4414 | "toolbarAlwaysOpen": true, |
4415 | 4415 | "titleColor": "rgba(0,0,0,0.870588)", |
4416 | - "showFilters": false | |
4416 | + "showFilters": false, | |
4417 | + "showDashboardLogo": false | |
4417 | 4418 | } |
4418 | 4419 | }, |
4419 | 4420 | "name": "Api Usage" | ... | ... |
... | ... | @@ -86,6 +86,7 @@ export interface DashboardSettings { |
86 | 86 | showDashboardsSelect?: boolean; |
87 | 87 | showEntitiesSelect?: boolean; |
88 | 88 | showFilters?: boolean; |
89 | + showDashboardLogo?: boolean; | |
89 | 90 | showDashboardTimewindow?: boolean; |
90 | 91 | showDashboardExport?: boolean; |
91 | 92 | toolbarAlwaysOpen?: boolean; | ... | ... |
ui-ngx/src/assets/example_logo.png
0 → 100644
33.4 KB
... | ... | @@ -725,6 +725,7 @@ |
725 | 725 | "display-filters": "Display filters", |
726 | 726 | "display-dashboard-timewindow": "Display timewindow", |
727 | 727 | "display-dashboard-export": "Display export", |
728 | + "display-dashboard-showDashboardLogo": "Display dashboard logo", | |
728 | 729 | "import": "Import dashboard", |
729 | 730 | "export": "Export dashboard", |
730 | 731 | "export-failed-error": "Unable to export dashboard: {{error}}", | ... | ... |
ui-ngx/src/assets/white_label_logo.png
deleted
100644 → 0
36 KB
ui-ngx/src/assets/white_label_logo.svg
deleted
100644 → 0
1 | -<svg xmlns="http://www.w3.org/2000/svg" width="2500" height="2500" viewBox="0 0 192.756 192.756"><g fill-rule="evenodd" clip-rule="evenodd"><path fill="#fff" d="M0 0h192.756v192.756H0V0z"/><path d="M6.303 141.814h.986c.682 0 1.047.277 1.236.555.291.418.371.852.371 1.303 0 .453-.081.885-.371 1.305-.189.275-.554.553-1.236.553h-.986v-3.716zm-.676 4.297h1.621c.452-.014.932-.047 1.323-.297.71-.453 1.034-1.217 1.034-2.143s-.324-1.688-1.034-2.141c-.391-.25-.871-.283-1.323-.297H5.627v4.878zM13.322 144.537v-.316c0-.939-.479-1.582-1.493-1.602-1.074 0-1.573.83-1.573 1.824 0 1 .432 1.77 1.52 1.77.811 0 1.405-.387 1.506-1.156h-.675c-.074.494-.324.689-.824.689-.655 0-.898-.615-.852-1.209h2.391zm-2.391-.445c0-.555.318-1.008.852-1.008.622 0 .878.439.864 1.008h-1.716zM14.932 146.111v-4.877h-.642v4.877h.642zM16.958 146.111v-2.945h.784v-.445h-.784v-.541c-.02-.371.19-.467.554-.467.108 0 .216.014.324.021v-.533c-.155-.027-.304-.068-.459-.068-.479 0-1.04.195-1.06.938v.65h-.662v.445h.662v2.945h.641zM17.856 142.699v.48l.581-.008v2.154c0 .453.034.467.149.629a.608.608 0 0 0 .378.223c.155.027.277.035.433.035.148 0 .29-.035.438-.041v-.494a1.438 1.438 0 0 1-.337.041c-.23 0-.419-.115-.419-.357v-2.189l.784.008v-.48l-.784.021v-.926l-.642.201v.725l-.581-.022zM26.515 141.234h-.676v3.107c-.02.836-.52 1.289-1.29 1.289s-1.27-.453-1.29-1.289v-3.107h-.676v2.945c-.02 1.256.642 2.033 1.966 2.033 1.324 0 1.986-.777 1.966-2.033v-2.945zM28.415 142.721h-.628v3.391h.642v-1.844c0-.662.176-.811.27-.906.271-.27.621-.25.621-.25.541 0 .777.305.777.865v2.135h.642v-2.344c0-1.088-1.047-1.148-1.284-1.148-.337 0-.81.176-1.026.602h-.014v-.501zM32.571 146.111v-3.391h-.642v3.391h.642zm-.703-4.181h.763v-.695h-.763v.695zM35.353 146.111l1.486-3.39h-.702l-1.054 2.687-1.08-2.687h-.71l1.419 3.39h.641zM40.354 144.537v-.316c0-.939-.48-1.582-1.493-1.602-1.074 0-1.573.83-1.573 1.824 0 1 .432 1.77 1.52 1.77.811 0 1.405-.387 1.506-1.156h-.676c-.074.494-.324.689-.824.689-.655 0-.898-.615-.851-1.209h2.391zm-2.392-.445c0-.555.318-1.008.851-1.008.621 0 .878.439.865 1.008h-1.716zM41.969 144.428c0-.715.142-1.146.952-1.174.088 0 .189 0 .277.033v-.607c-.075 0-.142-.008-.224-.008-.466 0-.898.236-.993.703h-.013v-.654h-.642v3.391h.642v-1.684h.001zM43.685 143.646c0 1.322 2.06.756 2.06 1.512 0 .439-.384.588-.763.588-.392 0-.676-.223-.689-.643h-.675c-.007.785.588 1.109 1.297 1.109.695 0 1.506-.258 1.506-1.088 0-.764-.662-.83-1.236-1.021-.244-.074-.824-.1-.824-.479s.277-.541.621-.541c.372 0 .703.143.676.574h.675c.048-.77-.675-1.039-1.317-1.039-.615.001-1.331.318-1.331 1.028zM47.97 146.111v-3.391h-.642v3.391h.642zm-.702-4.181h.763v-.695h-.763v.695zM48.646 142.699v.48l.581-.008v2.154c0 .453.034.467.149.629a.614.614 0 0 0 .378.223c.156.027.277.035.433.035.148 0 .29-.035.439-.041v-.494a1.447 1.447 0 0 1-.338.041c-.23 0-.418-.115-.418-.357v-2.189l.783.008v-.48l-.783.021v-.926l-.642.201v.725l-.582-.022zM54.487 142.721h-.689l-1.08 2.674-1.06-2.674h-.717l1.412 3.377-.514 1.31h.656l1.992-4.687zM58.535 142.619c-1.114 0-1.688.742-1.688 1.797 0 1.053.574 1.797 1.688 1.797 1.115 0 1.689-.744 1.689-1.797 0-1.055-.575-1.797-1.689-1.797zm-1.013 1.797c0-.723.25-1.332 1.013-1.332.764 0 1.013.609 1.013 1.332s-.25 1.33-1.013 1.33c-.763 0-1.013-.607-1.013-1.33zM62.008 146.111v-2.945h.784v-.445h-.784v-.541c-.021-.371.189-.467.554-.467.108 0 .216.014.324.021v-.533c-.155-.027-.304-.068-.459-.068-.479 0-1.04.195-1.06.938v.65h-.662v.445h.662v2.945h.641zM66.452 146.111h.676v-4.297h1.634v-.58h-3.944v.58h1.634v4.297zM71.493 144.537v-.316c0-.939-.479-1.582-1.493-1.602-1.074 0-1.573.83-1.573 1.824 0 1 .432 1.77 1.52 1.77.811 0 1.404-.387 1.506-1.156h-.675c-.075.494-.324.689-.824.689-.655 0-.898-.615-.852-1.209h2.391zm-2.392-.445c0-.555.318-1.008.852-1.008.621 0 .878.439.864 1.008h-1.716zM74.965 143.807c-.034-.734-.574-1.188-1.29-1.188-1.074 0-1.574.83-1.574 1.824 0 1 .432 1.77 1.52 1.77.75 0 1.317-.467 1.371-1.23h-.642c-.034.486-.298.764-.723.764-.615 0-.852-.533-.852-1.33s.236-1.332.852-1.332c.459 0 .662.297.696.723h.642v-.001zM76.467 146.111v-1.742c0-.189-.04-.434.108-.785.121-.283.513-.479.77-.473.602.014.757.398.757.992v2.008h.642v-2.297c0-.607-.277-1.195-1.162-1.195-.493 0-.858.176-1.101.553h-.014v-1.938h-.642v4.877h.642zM80.583 142.721h-.628v3.391h.642v-1.844c0-.662.176-.811.271-.906.27-.27.622-.25.622-.25.54 0 .777.305.777.865v2.135h.642v-2.344c0-1.088-1.047-1.148-1.284-1.148-.337 0-.811.176-1.027.602h-.013v-.501h-.002zM85.542 142.619c-1.115 0-1.689.742-1.689 1.797 0 1.053.574 1.797 1.689 1.797 1.114 0 1.688-.744 1.688-1.797 0-1.055-.574-1.797-1.688-1.797zm-1.013 1.797c0-.723.25-1.332 1.013-1.332s1.013.609 1.013 1.332-.25 1.33-1.013 1.33-1.013-.607-1.013-1.33zM88.867 146.111v-4.877h-.642v4.877h.642zM91.548 142.619c-1.114 0-1.689.742-1.689 1.797 0 1.053.575 1.797 1.689 1.797 1.115 0 1.688-.744 1.688-1.797.001-1.055-.573-1.797-1.688-1.797zm-1.013 1.797c0-.723.25-1.332 1.013-1.332.764 0 1.013.609 1.013 1.332s-.25 1.33-1.013 1.33c-.763 0-1.013-.607-1.013-1.33zM94.63 144.334c0-.533.203-1.25.952-1.25.696 0 .952.596.952 1.25 0 .656-.256 1.25-.952 1.25-.749 0-.952-.715-.952-1.25zm1.905-1.107c0 .047-.088-.148-.102-.162-.209-.311-.574-.445-.905-.445-1.026 0-1.574.77-1.574 1.75 0 .951.412 1.682 1.445 1.682.419 0 .912-.17 1.115-.574h.02c-.02.764-.02 1.52-.932 1.52-.452 0-.764-.176-.79-.629h-.676c.007.783.526 1.096 1.256 1.096 1.243 0 1.783-.508 1.783-1.75v-2.385c0-.203.021-.406.041-.607h-.662l-.019.504zM101.393 142.721h-.69l-1.08 2.674-1.061-2.674h-.716l1.412 3.377-.514 1.31h.656l1.993-4.687zM16.059 119.076h9.547V91.294h10.788v-6.683H5.51v6.683h10.549v27.782z"/><path d="M63.698 84.611v21.338c-.144 4.393-2.435 7.16-6.921 7.16s-6.778-2.768-6.921-7.16V84.611h-9.547v21.816c.096 9.594 7.781 13.365 16.468 13.365s16.372-3.771 16.468-13.365V84.611h-9.547z" fill="#0097d5"/><path d="M93.788 88.717h6.97c4.82 0 7.396 1.958 8.734 3.915 2.053 2.959 2.625 6.015 2.625 9.212 0 3.199-.572 6.254-2.625 9.213-1.338 1.957-3.914 3.914-8.734 3.914h-6.97V88.717zm-4.773 30.359h11.456c3.197-.096 6.588-.334 9.355-2.1 5.012-3.199 7.303-8.592 7.303-15.133 0-6.54-2.291-11.934-7.303-15.131-2.768-1.767-6.158-2.005-9.355-2.101H89.015v34.465zM143.377 107.953v-2.242c0-6.635-3.389-11.17-10.549-11.314-7.59 0-11.121 5.873-11.121 12.888 0 7.066 3.055 12.508 10.74 12.508 5.727 0 9.928-2.721 10.643-8.164h-4.773c-.523 3.486-2.291 4.871-5.824 4.871-4.629 0-6.346-4.346-6.014-8.547h16.898zm-16.898-3.15c0-3.914 2.244-7.111 6.014-7.111 4.393 0 6.207 3.102 6.111 7.111h-12.125zM153.775 119.076V84.611h-4.533v34.465h4.533zM167.133 119.076V98.264h5.539v-3.15h-5.539v-3.819c-.143-2.625 1.338-3.293 3.914-3.293.764 0 1.529.096 2.293.143v-3.771c-1.1-.191-2.148-.477-3.246-.477-3.391 0-7.352 1.385-7.494 6.635v4.583h-4.678v3.15h4.678v20.812h4.533v-.001zM175.744 94.97v3.389l4.105-.049v15.229c0 3.199.238 3.295 1.051 4.439.762 1.051 1.957 1.432 2.672 1.576 1.098.189 1.957.238 3.057.238 1.049 0 2.051-.238 3.102-.287v-3.484c-.717.191-1.67.287-2.387.287-1.623 0-2.959-.812-2.959-2.531V98.311l5.537.049v-3.39l-5.537.144v-6.54l-4.535 1.432v5.108l-4.106-.144zM2.834 75.758h1.089v1.089H2.834v-1.089z"/><path d="M3.705 76.629h1.524v1.523H3.705v-1.523zM6.099 76.847h1.088v1.088H6.099v-1.088zM7.187 77.935h1.088v1.088H7.187v-1.088zM8.275 76.847h1.088v1.088H8.275v-1.088zM7.187 75.758h1.088v1.089H7.187v-1.089zM9.363 80.111h1.088v1.088H9.363v-1.088zM11.539 75.758h1.088v1.089h-1.088v-1.089zM12.627 76.847h1.087v1.088h-1.087v-1.088zM13.714 75.758h1.089v1.089h-1.089v-1.089zM14.803 76.847h1.088v1.088h-1.088v-1.088zM15.891 77.935h1.088v1.088h-1.088v-1.088zM19.154 72.495h1.089v1.088h-1.089v-1.088zM24.595 75.758h1.088v1.089h-1.088v-1.089zM36.562 77.935h1.089v1.088h-1.089v-1.088zM39.827 75.758h1.088v1.089h-1.088v-1.089zM40.915 74.671h1.087v1.087h-1.087v-1.087zM42.002 73.583h1.088v1.088h-1.088v-1.088zM44.179 73.583h1.088v1.088h-1.088v-1.088zM46.355 73.583h1.087v1.088h-1.087v-1.088zM45.267 72.495h1.087v1.088h-1.087v-1.088zM43.09 72.495h1.089v1.088H43.09v-1.088zM39.827 73.583h1.088v1.088h-1.088v-1.088zM37.651 73.583h1.087v1.088h-1.087v-1.088zM25.683 74.671h1.088v1.087h-1.088v-1.087zM12.627 74.671h1.087v1.087h-1.087v-1.087zM6.099 74.671h1.088v1.087H6.099v-1.087zM7.187 73.583h1.088v1.088H7.187v-1.088zM9.363 73.583h1.088v1.088H9.363v-1.088zM13.714 73.583h1.089v1.088h-1.089v-1.088zM24.595 73.583h1.088v1.088h-1.088v-1.088zM8.275 72.495h1.088v1.088H8.275v-1.088zM10.451 72.495h1.088v1.088h-1.088v-1.088zM12.627 72.495h1.087v1.088h-1.087v-1.088zM14.803 72.495h1.088v1.088h-1.088v-1.088zM25.683 72.495h1.088v1.088h-1.088v-1.088zM38.738 72.495h1.089v1.088h-1.089v-1.088zM40.915 72.495h1.087v1.088h-1.087v-1.088zM42.002 71.407h1.088v1.088h-1.088v-1.088zM39.827 71.407h1.088v1.088h-1.088v-1.088zM37.651 71.407h1.087v1.088h-1.087v-1.088zM26.771 71.407h1.087v1.088h-1.087v-1.088zM24.595 71.407h1.088v1.088h-1.088v-1.088zM20.243 71.407h1.088v1.088h-1.088v-1.088zM18.067 71.407h1.087v1.088h-1.087v-1.088zM13.714 71.407h1.089v1.088h-1.089v-1.088zM7.187 71.407h1.088v1.088H7.187v-1.088zM5.011 71.407h1.088v1.088H5.011v-1.088zM8.275 70.319h1.088v1.088H8.275v-1.088zM19.154 70.319h1.089v1.088h-1.089v-1.088zM25.683 70.319h1.088v1.088h-1.088v-1.088zM32.21 70.319h1.088v1.088H32.21v-1.088zM38.738 70.319h1.089v1.088h-1.089v-1.088zM40.915 70.319h1.087v1.088h-1.087v-1.088zM43.09 70.319h1.089v1.088H43.09v-1.088zM44.179 69.231h1.088v1.088h-1.088v-1.088zM42.002 69.231h1.088v1.088h-1.088v-1.088zM39.827 69.231h1.088v1.088h-1.088v-1.088zM35.474 69.231h1.088v1.088h-1.088v-1.088zM33.298 69.231h1.088v1.088h-1.088v-1.088zM22.418 69.231h1.088v1.088h-1.088v-1.088zM20.243 69.231h1.088v1.088h-1.088v-1.088zM13.714 69.231h1.089v1.088h-1.089v-1.088zM9.363 69.231h1.088v1.088H9.363v-1.088zM7.187 69.231h1.088v1.088H7.187v-1.088zM10.451 68.143h1.088v1.088h-1.088v-1.088zM14.803 68.143h1.088v1.088h-1.088v-1.088zM16.979 68.143h1.088v1.088h-1.088v-1.088zM19.154 68.143h1.089v1.088h-1.089v-1.088zM21.331 68.143h1.087v1.088h-1.087v-1.088zM25.683 68.143h1.088v1.088h-1.088v-1.088zM27.858 68.143h1.089v1.088h-1.089v-1.088zM32.21 68.143h1.088v1.088H32.21v-1.088zM34.386 68.143h1.088v1.088h-1.088v-1.088zM36.562 68.143h1.089v1.088h-1.089v-1.088zM43.09 68.143h1.089v1.088H43.09v-1.088zM45.267 68.143h1.087v1.088h-1.087v-1.088zM42.002 67.055h1.088v1.088h-1.088v-1.088zM35.474 67.055h1.088v1.088h-1.088v-1.088zM33.298 67.055h1.088v1.088h-1.088v-1.088zM28.947 67.055h1.088v1.088h-1.088v-1.088zM26.771 67.055h1.087v1.088h-1.087v-1.088zM22.418 67.055h1.088v1.088h-1.088v-1.088zM18.067 67.055h1.087v1.088h-1.087v-1.088zM13.714 67.055h1.089v1.088h-1.089v-1.088zM9.363 67.055h1.088v1.088H9.363v-1.088zM10.451 65.966h1.088v1.089h-1.088v-1.089zM14.803 65.966h1.088v1.089h-1.088v-1.089zM19.154 65.966h1.089v1.089h-1.089v-1.089zM23.507 65.966h1.088v1.089h-1.088v-1.089zM27.858 65.966h1.089v1.089h-1.089v-1.089zM32.21 65.966h1.088v1.089H32.21v-1.089zM30.035 65.966h1.088v1.089h-1.088v-1.089zM34.386 65.966h1.088v1.089h-1.088v-1.089zM36.562 65.966h1.089v1.089h-1.089v-1.089zM43.09 65.966h1.089v1.089H43.09v-1.089zM47.442 65.966h1.088v1.089h-1.088v-1.089zM42.002 64.878h1.088v1.088h-1.088v-1.088zM35.474 64.878h1.088v1.088h-1.088v-1.088zM33.298 64.878h1.088v1.088h-1.088v-1.088zM31.123 64.878h1.087v1.088h-1.087v-1.088zM28.947 64.878h1.088v1.088h-1.088v-1.088zM26.771 64.878h1.087v1.088h-1.087v-1.088zM24.595 64.878h1.088v1.088h-1.088v-1.088zM20.243 64.878h1.088v1.088h-1.088v-1.088zM15.891 64.878h1.088v1.088h-1.088v-1.088zM13.714 64.878h1.089v1.088h-1.089v-1.088zM21.331 63.791h1.087v1.087h-1.087v-1.087zM30.035 63.791h1.088v1.087h-1.088v-1.087zM32.21 63.791h1.088v1.087H32.21v-1.087zM37.651 62.703h1.087v1.087h-1.087v-1.087zM33.298 62.703h1.088v1.087h-1.088v-1.087zM31.123 62.703h1.087v1.087h-1.087v-1.087zM24.595 62.703h1.088v1.087h-1.088v-1.087zM22.418 62.703h1.088v1.087h-1.088v-1.087zM20.243 62.703h1.088v1.087h-1.088v-1.087zM23.507 61.615h1.088v1.088h-1.088v-1.088zM25.683 61.615h1.088v1.088h-1.088v-1.088zM48.53 62.703h1.089v1.087H48.53v-1.087zM53.971 58.351h1.087v1.087h-1.087v-1.087zM47.442 51.822h1.088v1.088h-1.088v-1.088zM46.355 52.91h1.087v1.088h-1.087V52.91zM45.267 53.998h1.087v1.088h-1.087v-1.088zM28.947 45.294h1.088v1.088h-1.088v-1.088zM27.858 46.382h1.089v1.088h-1.089v-1.088zM38.738 52.91h1.089v1.088h-1.089V52.91zM43.09 59.438h1.089v1.088H43.09v-1.088zM39.827 60.526h1.088v1.089h-1.088v-1.089zM37.651 58.351h1.087v1.087h-1.087v-1.087zM36.562 55.086h1.089v1.088h-1.089v-1.088zM34.386 57.262h1.088v1.089h-1.088v-1.089zM34.386 59.438h1.088v1.088h-1.088v-1.088zM27.858 57.262h1.089v1.089h-1.089v-1.089zM19.154 48.558h1.089v1.088h-1.089v-1.088zM21.331 50.734h1.087v1.088h-1.087v-1.088zM19.154 50.734h1.089v1.088h-1.089v-1.088zM20.243 53.998h1.088v1.088h-1.088v-1.088zM22.418 56.174h1.088v1.088h-1.088v-1.088zM19.154 55.086h1.089v1.088h-1.089v-1.088zM23.507 59.438h1.088v1.088h-1.088v-1.088zM24.595 60.526h1.088v1.089h-1.088v-1.089zM22.418 58.351h1.088v1.087h-1.088v-1.087zM22.418 60.526h1.088v1.089h-1.088v-1.089zM23.507 55.086h1.088v1.088h-1.088v-1.088zM34.386 61.615h1.088v1.088h-1.088v-1.088zM36.562 61.615h1.089v1.088h-1.089v-1.088zM36.562 63.791h1.089v1.087h-1.089v-1.087zM38.738 63.791h1.089v1.087h-1.089v-1.087zM19.154 63.791h1.089v1.087h-1.089v-1.087zM23.507 63.791h1.088v1.087h-1.088v-1.087z"/><path d="M4.793 73.365h1.523v1.523H4.793v-1.523z"/><path d="M5.881 72.277h1.523V73.8H5.881v-1.523zM8.057 74.453H9.58v1.524H8.057v-1.524zM9.146 71.189h1.522v1.523H9.146v-1.523z"/><path d="M10.233 70.101h1.523v1.524h-1.523v-1.524zM8.057 67.925H9.58v1.523H8.057v-1.523z"/><path d="M6.969 66.837h1.524v1.523H6.969v-1.523z"/><path d="M8.057 65.749H9.58v1.523H8.057v-1.523z"/><path d="M9.146 64.661h1.522v1.523H9.146v-1.523z"/><path d="M8.057 63.573H9.58v1.523H8.057v-1.523zM10.233 63.573h1.523v1.523h-1.523v-1.523z"/><path d="M11.321 62.485h1.523v1.523h-1.523v-1.523z"/><path d="M12.409 61.397h1.524v1.523h-1.524v-1.523z"/><path d="M11.321 60.309h1.523v1.523h-1.523v-1.523zM13.497 60.309h1.523v1.523h-1.523v-1.523zM14.585 70.101h1.523v1.524h-1.523v-1.524z"/><path d="M15.673 69.013h1.523v1.524h-1.523v-1.524zM17.849 69.013h1.524v1.524h-1.524v-1.524zM15.673 66.837h1.523v1.523h-1.523v-1.523z"/><path d="M16.761 65.749h1.523v1.523h-1.523v-1.523z"/><path d="M17.849 64.661h1.524v1.523h-1.524v-1.523z"/><path d="M16.761 63.573h1.523v1.523h-1.523v-1.523zM14.585 63.573h1.523v1.523h-1.523v-1.523z"/><path d="M15.673 62.485h1.523v1.523h-1.523v-1.523z"/><path d="M16.761 61.397h1.523v1.523h-1.523v-1.523z"/><path d="M17.849 62.485h1.524v1.523h-1.524v-1.523z"/><path d="M18.937 61.397h1.523v1.523h-1.523v-1.523z"/><path d="M17.849 60.309h1.524v1.523h-1.524v-1.523zM15.673 60.309h1.523v1.523h-1.523v-1.523z"/><path d="M14.585 59.221h1.523v1.523h-1.523v-1.523zM21.113 65.749h1.523v1.523h-1.523v-1.523z"/><path d="M22.201 64.661h1.523v1.523h-1.523v-1.523zM21.113 61.397h1.523v1.523h-1.523v-1.523z"/><path d="M20.025 60.309h1.523v1.523h-1.523v-1.523z"/><path d="M18.937 59.221h1.523v1.523h-1.523v-1.523zM21.113 59.221h1.523v1.523h-1.523v-1.523z"/><path d="M20.025 58.132h1.523v1.524h-1.523v-1.524zM13.497 58.132h1.523v1.524h-1.523v-1.524zM15.673 58.132h1.523v1.524h-1.523v-1.524z"/><path d="M18.937 57.045h1.523v1.523h-1.523v-1.523z"/><path d="M20.025 55.957h1.523v1.523h-1.523v-1.523z"/><path d="M21.113 57.045h1.523v1.523h-1.523v-1.523zM24.377 58.132H25.9v1.524h-1.523v-1.524z"/><path d="M23.29 57.045h1.522v1.523H23.29v-1.523zM21.113 54.869h1.523v1.523h-1.523v-1.523z"/><path d="M22.201 53.781h1.523v1.523h-1.523v-1.523z"/><path d="M21.113 52.692h1.523v1.524h-1.523v-1.524z"/><path d="M20.025 51.604h1.523v1.523h-1.523v-1.523zM26.553 58.132h1.524v1.524h-1.524v-1.524zM26.553 60.309h1.524v1.523h-1.524v-1.523z"/><path d="M27.641 59.221h1.523v1.523h-1.523v-1.523zM27.641 61.397h1.523v1.523h-1.523v-1.523z"/><path d="M28.729 62.485h1.523v1.523h-1.523v-1.523z"/><path d="M27.641 63.573h1.523v1.523h-1.523v-1.523zM34.169 63.573h1.523v1.523h-1.523v-1.523z"/><path d="M35.257 62.485h1.523v1.523h-1.523v-1.523zM31.993 61.397h1.523v1.523h-1.523v-1.523z"/><path d="M33.081 60.309h1.523v1.523h-1.523v-1.523z"/><path d="M31.993 59.221h1.523v1.523h-1.523v-1.523z"/><path d="M33.081 58.132h1.523v1.524h-1.523v-1.524zM35.257 60.309h1.523v1.523h-1.523v-1.523zM38.521 61.397h1.523v1.523h-1.523v-1.523z"/><path d="M37.433 60.309h1.524v1.523h-1.524v-1.523z"/><path d="M36.345 59.221h1.523v1.523h-1.523v-1.523z"/><path d="M35.257 58.132h1.523v1.524h-1.523v-1.524z"/><path d="M36.345 57.045h1.523v1.523h-1.523v-1.523z"/><path d="M37.433 55.957h1.524v1.523h-1.524v-1.523z"/><path d="M38.521 54.869h1.523v1.523h-1.523v-1.523zM41.785 60.309h1.523v1.523h-1.523v-1.523zM43.961 71.189h1.523v1.523h-1.523v-1.523z"/><path d="M45.049 70.101h1.523v1.524h-1.523v-1.524zM43.961 66.837h1.523v1.523h-1.523v-1.523zM46.137 66.837h1.524v1.523h-1.524v-1.523zM43.961 64.661h1.523v1.523h-1.523v-1.523zM46.137 62.485h1.524v1.523h-1.524v-1.523z"/><path d="M45.049 65.749h1.523v1.523h-1.523v-1.523z"/><path d="M46.137 64.661h1.524v1.523h-1.524v-1.523z"/><path d="M47.225 63.573h1.523v1.523h-1.523v-1.523zM45.049 63.573h1.523v1.523h-1.523v-1.523zM49.401 61.397h1.523v1.523h-1.523v-1.523z"/></g></svg> | |
\ No newline at end of file |