fabrikantencore 2.4.3 → 2.4.4
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.
- package/.editorconfig +16 -0
- package/.vscode/extensions.json +4 -0
- package/.vscode/launch.json +20 -0
- package/.vscode/tasks.json +42 -0
- package/angular.json +112 -0
- package/karma.conf.js +44 -0
- package/ng-package.json +6 -0
- package/package.json +46 -56
- package/public_api.ts +13 -0
- package/src/app/app-routing.module.ts +10 -0
- package/src/app/app.component.html +1 -0
- package/src/app/app.component.scss +8 -0
- package/src/app/app.component.spec.ts +35 -0
- package/src/app/app.component.ts +39 -0
- package/src/app/app.module.ts +22 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-categories/beheer-categories.component.html +52 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-categories/beheer-categories.component.scss +11 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-categories/beheer-categories.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-categories/beheer-categories.component.ts +58 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-connect-category-dialog/beheer-connect-category-dialog.component.html +46 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-connect-category-dialog/beheer-connect-category-dialog.component.scss +0 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-connect-category-dialog/beheer-connect-category-dialog.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-connect-category-dialog/beheer-connect-category-dialog.component.ts +79 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-deeplink/beheer-deeplink.component.html +33 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-deeplink/beheer-deeplink.component.scss +15 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-deeplink/beheer-deeplink.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-deeplink/beheer-deeplink.component.ts +42 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-display-ebo/beheer-display-ebo.component.html +11 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-display-ebo/beheer-display-ebo.component.scss +8 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-display-ebo/beheer-display-ebo.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-display-ebo/beheer-display-ebo.component.ts +33 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-ebo-koppel/beheer-ebo-koppel/beheer-ebo-koppel.component.html +73 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-ebo-koppel/beheer-ebo-koppel/beheer-ebo-koppel.component.scss +41 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-ebo-koppel/beheer-ebo-koppel/beheer-ebo-koppel.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-ebo-koppel/beheer-ebo-koppel/beheer-ebo-koppel.component.ts +147 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-filter/beheer-filter.component.html +72 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-filter/beheer-filter.component.scss +111 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-filter/beheer-filter.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-filter/beheer-filter.component.ts +249 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-filters/beheer-filters.component.html +54 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-filters/beheer-filters.component.scss +123 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-filters/beheer-filters.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-filters/beheer-filters.component.ts +139 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-import-sets/beheer-import-sets-dialog/beheer-import-sets-dialog.component.html +12 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-import-sets/beheer-import-sets-dialog/beheer-import-sets-dialog.component.scss +0 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-import-sets/beheer-import-sets-dialog/beheer-import-sets-dialog.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-import-sets/beheer-import-sets-dialog/beheer-import-sets-dialog.component.ts +55 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-import-sets/beheer-import-sets-ebo/beheer-import-sets-ebo.component.html +33 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-import-sets/beheer-import-sets-ebo/beheer-import-sets-ebo.component.scss +60 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-import-sets/beheer-import-sets-ebo/beheer-import-sets-ebo.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-import-sets/beheer-import-sets-ebo/beheer-import-sets-ebo.component.ts +99 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-import-sets/beheer-import-sets-ebo/beheer-import-sets-opbouw.component.html +20 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-import-sets/beheer-import-sets-ebo/beheer-import-sets-opbouw.component.scss +38 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-import-sets/beheer-import-sets-ebo/beheer-import-sets-opbouw.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-import-sets/beheer-import-sets-ebo/beheer-import-sets-opbouw.component.ts +0 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-import-sets/beheer-import-sets-eigenschap/beheer-import-sets-eigenschap.component.html +8 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-import-sets/beheer-import-sets-eigenschap/beheer-import-sets-eigenschap.component.scss +31 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-import-sets/beheer-import-sets-eigenschap/beheer-import-sets-eigenschap.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-import-sets/beheer-import-sets-eigenschap/beheer-import-sets-eigenschap.component.ts +33 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-import-sets/beheer-import-sets.component.html +92 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-import-sets/beheer-import-sets.component.scss +50 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-import-sets/beheer-import-sets.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-import-sets/beheer-import-sets.component.ts +73 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-inlog/beheer-inlog.component.html +42 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-inlog/beheer-inlog.component.scss +44 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-inlog/beheer-inlog.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-inlog/beheer-inlog.component.ts +43 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-main/beheer-main.component.css +0 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-main/beheer-main.component.html +1 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-main/beheer-main.component.spec.ts +25 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-main/beheer-main.component.ts +17 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-nav/beheer-nav.component.html +44 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-nav/beheer-nav.component.scss +34 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-nav/beheer-nav.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-nav/beheer-nav.component.ts +51 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-bcbproduct/beheer-products-bcbproduct.component.html +42 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-bcbproduct/beheer-products-bcbproduct.component.scss +41 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-bcbproduct/beheer-products-bcbproduct.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-bcbproduct/beheer-products-bcbproduct.component.ts +51 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-connect-rangeinput/beheer-products-connect-rangeinput.component.html +44 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-connect-rangeinput/beheer-products-connect-rangeinput.component.scss +7 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-connect-rangeinput/beheer-products-connect-rangeinput.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-connect-rangeinput/beheer-products-connect-rangeinput.component.ts +114 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-ebo/beheer-products-ebo.component.html +54 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-ebo/beheer-products-ebo.component.scss +52 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-ebo/beheer-products-ebo.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-ebo/beheer-products-ebo.component.ts +193 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-ebo/beheer-products-opbouw.component.html +16 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-ebo/beheer-products-opbouw.component.scss +51 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-ebo/beheer-products-opbouw.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-ebo/beheer-products-opbouw.component.ts +0 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-eigenschap/beheer-products-eigenschap.component.html +84 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-eigenschap/beheer-products-eigenschap.component.scss +51 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-eigenschap/beheer-products-eigenschap.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-eigenschap/beheer-products-eigenschap.component.ts +224 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-eigenschap-bereik/beheer-products-eigenschap-bereik.component.html +5 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-eigenschap-bereik/beheer-products-eigenschap-bereik.component.scss +7 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-eigenschap-bereik/beheer-products-eigenschap-bereik.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-eigenschap-bereik/beheer-products-eigenschap-bereik.component.ts +18 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-koppel-filteroption-dailog/beheer-products-koppel-filteroption-dailog.component.html +97 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-koppel-filteroption-dailog/beheer-products-koppel-filteroption-dailog.component.scss +11 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-koppel-filteroption-dailog/beheer-products-koppel-filteroption-dailog.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-koppel-filteroption-dailog/beheer-products-koppel-filteroption-dailog.component.ts +185 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-product/beheer-products-product.component.html +26 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-product/beheer-products-product.component.scss +15 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-product/beheer-products-product.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-product/beheer-products-product.component.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products.component.html +96 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products.component.scss +89 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products.component.ts +175 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-rangeinput/beheer-rangeinput.component.html +24 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-rangeinput/beheer-rangeinput.component.scss +67 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-rangeinput/beheer-rangeinput.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-rangeinput/beheer-rangeinput.component.ts +88 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-searchproducts/beheer-searchproducts-koppel-dialog/beheer-searchproducts-koppel-dialog.component.html +45 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-searchproducts/beheer-searchproducts-koppel-dialog/beheer-searchproducts-koppel-dialog.component.scss +14 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-searchproducts/beheer-searchproducts-koppel-dialog/beheer-searchproducts-koppel-dialog.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-searchproducts/beheer-searchproducts-koppel-dialog/beheer-searchproducts-koppel-dialog.component.ts +89 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-searchproducts/beheer-searchproducts.component.html +119 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-searchproducts/beheer-searchproducts.component.scss +69 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-searchproducts/beheer-searchproducts.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-searchproducts/beheer-searchproducts.component.ts +346 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-select-filter-dialog/beheer-select-filter-dialog.component.html +57 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-select-filter-dialog/beheer-select-filter-dialog.component.scss +11 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-select-filter-dialog/beheer-select-filter-dialog.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-select-filter-dialog/beheer-select-filter-dialog.component.ts +104 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-select-filteroption-dialog/beheer-select-filteroption-dialog.component.html +49 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-select-filteroption-dialog/beheer-select-filteroption-dialog.component.scss +3 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-select-filteroption-dialog/beheer-select-filteroption-dialog.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-select-filteroption-dialog/beheer-select-filteroption-dialog.component.ts +86 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-settings/beheer-settings-boolean/beheer-settings-boolean.component.html +26 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-settings/beheer-settings-boolean/beheer-settings-boolean.component.scss +8 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-settings/beheer-settings-boolean/beheer-settings-boolean.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-settings/beheer-settings-boolean/beheer-settings-boolean.component.ts +42 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-settings/beheer-settings-options/beheer-settings-options.component.html +38 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-settings/beheer-settings-options/beheer-settings-options.component.scss +30 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-settings/beheer-settings-options/beheer-settings-options.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-settings/beheer-settings-options/beheer-settings-options.component.ts +19 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-settings/beheer-settings-string/beheer-settings-string.component.html +40 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-settings/beheer-settings-string/beheer-settings-string.component.scss +30 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-settings/beheer-settings-string/beheer-settings-string.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-settings/beheer-settings-string/beheer-settings-string.component.ts +19 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-settings/beheer-settings.component.html +50 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-settings/beheer-settings.component.scss +34 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-settings/beheer-settings.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-settings/beheer-settings.component.ts +17 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-translate/beheer-translate.component.html +142 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-translate/beheer-translate.component.scss +15 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-translate/beheer-translate.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-translate/beheer-translate.component.ts +120 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-users/beheer-users.component.html +1 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-users/beheer-users.component.scss +0 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-users/beheer-users.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/beheer/components/beheer-users/beheer-users.component.ts +15 -0
- package/src/app/modules/fabrikantencore/components/fab-actionmenu/fab-actionmenu.component.html +343 -0
- package/src/app/modules/fabrikantencore/components/fab-actionmenu/fab-actionmenu.component.scss +29 -0
- package/src/app/modules/fabrikantencore/components/fab-actionmenu/fab-actionmenu.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-actionmenu/fab-actionmenu.component.ts +154 -0
- package/src/app/modules/fabrikantencore/components/fab-bcb-product/fab-bcb-product.component.html +1 -0
- package/src/app/modules/fabrikantencore/components/fab-bcb-product/fab-bcb-product.component.scss +0 -0
- package/src/app/modules/fabrikantencore/components/fab-bcb-product/fab-bcb-product.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-bcb-product/fab-bcb-product.component.ts +15 -0
- package/src/app/modules/fabrikantencore/components/fab-breadcrumb/fab-breadcrumb.component.html +64 -0
- package/src/app/modules/fabrikantencore/components/fab-breadcrumb/fab-breadcrumb.component.scss +99 -0
- package/src/app/modules/fabrikantencore/components/fab-breadcrumb/fab-breadcrumb.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-breadcrumb/fab-breadcrumb.component.ts +82 -0
- package/src/app/modules/fabrikantencore/components/fab-button/fab-button.component.html +5 -0
- package/src/app/modules/fabrikantencore/components/fab-button/fab-button.component.scss +89 -0
- package/src/app/modules/fabrikantencore/components/fab-button/fab-button.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-button/fab-button.component.ts +20 -0
- package/src/app/modules/fabrikantencore/components/fab-categories/fab-categories.component.html +10 -0
- package/src/app/modules/fabrikantencore/components/fab-categories/fab-categories.component.scss +16 -0
- package/src/app/modules/fabrikantencore/components/fab-categories/fab-categories.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-categories/fab-categories.component.ts +29 -0
- package/src/app/modules/fabrikantencore/components/fab-category-navigator/fab-category-navigator.component.html +6 -0
- package/src/app/modules/fabrikantencore/components/fab-category-navigator/fab-category-navigator.component.scss +3 -0
- package/src/app/modules/fabrikantencore/components/fab-category-navigator/fab-category-navigator.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-category-navigator/fab-category-navigator.component.ts +70 -0
- package/src/app/modules/fabrikantencore/components/fab-category-tile/fab-category-tile.component.html +16 -0
- package/src/app/modules/fabrikantencore/components/fab-category-tile/fab-category-tile.component.scss +38 -0
- package/src/app/modules/fabrikantencore/components/fab-category-tile/fab-category-tile.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-category-tile/fab-category-tile.component.ts +46 -0
- package/src/app/modules/fabrikantencore/components/fab-category-tile/no-photo.png +0 -0
- package/src/app/modules/fabrikantencore/components/fab-filter/fab-filter.component.html +41 -0
- package/src/app/modules/fabrikantencore/components/fab-filter/fab-filter.component.scss +88 -0
- package/src/app/modules/fabrikantencore/components/fab-filter/fab-filter.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-filter/fab-filter.component.ts +139 -0
- package/src/app/modules/fabrikantencore/components/fab-filter-colour/fab-filter-colour-dialog/fab-filter-colour-dialog.component.html +1973 -0
- package/src/app/modules/fabrikantencore/components/fab-filter-colour/fab-filter-colour-dialog/fab-filter-colour-dialog.component.scss +30 -0
- package/src/app/modules/fabrikantencore/components/fab-filter-colour/fab-filter-colour-dialog/fab-filter-colour-dialog.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-filter-colour/fab-filter-colour-dialog/fab-filter-colour-dialog.component.ts +316 -0
- package/src/app/modules/fabrikantencore/components/fab-filter-colour/fab-filter-colour.component.html +10 -0
- package/src/app/modules/fabrikantencore/components/fab-filter-colour/fab-filter-colour.component.scss +11 -0
- package/src/app/modules/fabrikantencore/components/fab-filter-colour/fab-filter-colour.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-filter-colour/fab-filter-colour.component.ts +56 -0
- package/src/app/modules/fabrikantencore/components/fab-filter-colour-label/fab-filter-colour-label.component.html +20 -0
- package/src/app/modules/fabrikantencore/components/fab-filter-colour-label/fab-filter-colour-label.component.scss +11 -0
- package/src/app/modules/fabrikantencore/components/fab-filter-colour-label/fab-filter-colour-label.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-filter-colour-label/fab-filter-colour-label.component.ts +56 -0
- package/src/app/modules/fabrikantencore/components/fab-filter-fold/fab-filter-fold.component.html +66 -0
- package/src/app/modules/fabrikantencore/components/fab-filter-fold/fab-filter-fold.component.scss +68 -0
- package/src/app/modules/fabrikantencore/components/fab-filter-fold/fab-filter-fold.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-filter-fold/fab-filter-fold.component.ts +89 -0
- package/src/app/modules/fabrikantencore/components/fab-filter-label/fab-filter-label.component.html +75 -0
- package/src/app/modules/fabrikantencore/components/fab-filter-label/fab-filter-label.component.scss +106 -0
- package/src/app/modules/fabrikantencore/components/fab-filter-label/fab-filter-label.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-filter-label/fab-filter-label.component.ts +140 -0
- package/src/app/modules/fabrikantencore/components/fab-filters/fab-filters.component.html +23 -0
- package/src/app/modules/fabrikantencore/components/fab-filters/fab-filters.component.scss +44 -0
- package/src/app/modules/fabrikantencore/components/fab-filters/fab-filters.component.spec.ts +25 -0
- package/src/app/modules/fabrikantencore/components/fab-filters/fab-filters.component.ts +40 -0
- package/src/app/modules/fabrikantencore/components/fab-filters-input/fab-filters-input.component.html +35 -0
- package/src/app/modules/fabrikantencore/components/fab-filters-input/fab-filters-input.component.scss +25 -0
- package/src/app/modules/fabrikantencore/components/fab-filters-input/fab-filters-input.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-filters-input/fab-filters-input.component.ts +50 -0
- package/src/app/modules/fabrikantencore/components/fab-filters-overview/fab-filters-overview.component.html +4 -0
- package/src/app/modules/fabrikantencore/components/fab-filters-overview/fab-filters-overview.component.scss +0 -0
- package/src/app/modules/fabrikantencore/components/fab-filters-overview/fab-filters-overview.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-filters-overview/fab-filters-overview.component.ts +32 -0
- package/src/app/modules/fabrikantencore/components/fab-flag/fab-flag.component.html +1 -0
- package/src/app/modules/fabrikantencore/components/fab-flag/fab-flag.component.scss +2143 -0
- package/src/app/modules/fabrikantencore/components/fab-flag/fab-flag.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-flag/fab-flag.component.ts +17 -0
- package/src/app/modules/fabrikantencore/components/fab-header/fab-header.component.html +11 -0
- package/src/app/modules/fabrikantencore/components/fab-header/fab-header.component.scss +24 -0
- package/src/app/modules/fabrikantencore/components/fab-header/fab-header.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-header/fab-header.component.ts +58 -0
- package/src/app/modules/fabrikantencore/components/fab-iframe/fab-iframe.component.html +15 -0
- package/src/app/modules/fabrikantencore/components/fab-iframe/fab-iframe.component.scss +16 -0
- package/src/app/modules/fabrikantencore/components/fab-iframe/fab-iframe.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-iframe/fab-iframe.component.ts +25 -0
- package/src/app/modules/fabrikantencore/components/fab-input/fab-input.component.html +32 -0
- package/src/app/modules/fabrikantencore/components/fab-input/fab-input.component.scss +0 -0
- package/src/app/modules/fabrikantencore/components/fab-input/fab-input.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-input/fab-input.component.ts +21 -0
- package/src/app/modules/fabrikantencore/components/fab-language-select/fab-language-select.component.html +5 -0
- package/src/app/modules/fabrikantencore/components/fab-language-select/fab-language-select.component.scss +8 -0
- package/src/app/modules/fabrikantencore/components/fab-language-select/fab-language-select.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-language-select/fab-language-select.component.ts +20 -0
- package/src/app/modules/fabrikantencore/components/fab-loader/fab-loader.component.html +3 -0
- package/src/app/modules/fabrikantencore/components/fab-loader/fab-loader.component.scss +7 -0
- package/src/app/modules/fabrikantencore/components/fab-loader/fab-loader.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-loader/fab-loader.component.ts +15 -0
- package/src/app/modules/fabrikantencore/components/fab-multiselect/fab-multiselect.component.html +9 -0
- package/src/app/modules/fabrikantencore/components/fab-multiselect/fab-multiselect.component.scss +5 -0
- package/src/app/modules/fabrikantencore/components/fab-multiselect/fab-multiselect.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-multiselect/fab-multiselect.component.ts +43 -0
- package/src/app/modules/fabrikantencore/components/fab-multiselect-fold/fab-multiselect-fold.component.html +21 -0
- package/src/app/modules/fabrikantencore/components/fab-multiselect-fold/fab-multiselect-fold.component.scss +61 -0
- package/src/app/modules/fabrikantencore/components/fab-multiselect-fold/fab-multiselect-fold.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-multiselect-fold/fab-multiselect-fold.component.ts +34 -0
- package/src/app/modules/fabrikantencore/components/fab-product/fab-product-bestek/fab-product-bestek.component.html +21 -0
- package/src/app/modules/fabrikantencore/components/fab-product/fab-product-bestek/fab-product-bestek.component.scss +65 -0
- package/src/app/modules/fabrikantencore/components/fab-product/fab-product-bestek/fab-product-bestek.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-product/fab-product-bestek/fab-product-bestek.component.ts +50 -0
- package/src/app/modules/fabrikantencore/components/fab-product/fab-product-info/fab-product-info-photo/fab-product-info-photo.component.html +15 -0
- package/src/app/modules/fabrikantencore/components/fab-product/fab-product-info/fab-product-info-photo/fab-product-info-photo.component.scss +28 -0
- package/src/app/modules/fabrikantencore/components/fab-product/fab-product-info/fab-product-info-photo/fab-product-info-photo.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-product/fab-product-info/fab-product-info-photo/fab-product-info-photo.component.ts +27 -0
- package/src/app/modules/fabrikantencore/components/fab-product/fab-product-info/fab-product-info-photo-dialog/fab-product-info-photo-dialog.component.html +15 -0
- package/src/app/modules/fabrikantencore/components/fab-product/fab-product-info/fab-product-info-photo-dialog/fab-product-info-photo-dialog.component.scss +20 -0
- package/src/app/modules/fabrikantencore/components/fab-product/fab-product-info/fab-product-info-photo-dialog/fab-product-info-photo-dialog.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-product/fab-product-info/fab-product-info-photo-dialog/fab-product-info-photo-dialog.component.ts +17 -0
- package/src/app/modules/fabrikantencore/components/fab-product/fab-product-info/fab-product-info.component.html +17 -0
- package/src/app/modules/fabrikantencore/components/fab-product/fab-product-info/fab-product-info.component.scss +13 -0
- package/src/app/modules/fabrikantencore/components/fab-product/fab-product-info/fab-product-info.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-product/fab-product-info/fab-product-info.component.ts +40 -0
- package/src/app/modules/fabrikantencore/components/fab-product/fab-product.component.html +77 -0
- package/src/app/modules/fabrikantencore/components/fab-product/fab-product.component.scss +70 -0
- package/src/app/modules/fabrikantencore/components/fab-product/fab-product.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-product/fab-product.component.ts +103 -0
- package/src/app/modules/fabrikantencore/components/fab-product/fab-toebehoren/fab-toebehoren.component.html +33 -0
- package/src/app/modules/fabrikantencore/components/fab-product/fab-toebehoren/fab-toebehoren.component.scss +64 -0
- package/src/app/modules/fabrikantencore/components/fab-product/fab-toebehoren/fab-toebehoren.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-product/fab-toebehoren/fab-toebehoren.component.ts +101 -0
- package/src/app/modules/fabrikantencore/components/fab-product-select/fab-product-select.component.html +43 -0
- package/src/app/modules/fabrikantencore/components/fab-product-select/fab-product-select.component.scss +63 -0
- package/src/app/modules/fabrikantencore/components/fab-product-select/fab-product-select.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-product-select/fab-product-select.component.ts +63 -0
- package/src/app/modules/fabrikantencore/components/fab-product-tile/fab-product-tile.component.html +10 -0
- package/src/app/modules/fabrikantencore/components/fab-product-tile/fab-product-tile.component.scss +34 -0
- package/src/app/modules/fabrikantencore/components/fab-product-tile/fab-product-tile.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-product-tile/fab-product-tile.component.ts +50 -0
- package/src/app/modules/fabrikantencore/components/fab-range-input/fab-range-input.component.html +13 -0
- package/src/app/modules/fabrikantencore/components/fab-range-input/fab-range-input.component.scss +3 -0
- package/src/app/modules/fabrikantencore/components/fab-range-input/fab-range-input.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-range-input/fab-range-input.component.ts +99 -0
- package/src/app/modules/fabrikantencore/components/fab-range-input-fold/fab-range-input-fold.component.html +24 -0
- package/src/app/modules/fabrikantencore/components/fab-range-input-fold/fab-range-input-fold.component.scss +59 -0
- package/src/app/modules/fabrikantencore/components/fab-range-input-fold/fab-range-input-fold.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-range-input-fold/fab-range-input-fold.component.ts +32 -0
- package/src/app/modules/fabrikantencore/components/fab-select-bcbproduct/fab-select-bcbproduct.component.html +10 -0
- package/src/app/modules/fabrikantencore/components/fab-select-bcbproduct/fab-select-bcbproduct.component.scss +13 -0
- package/src/app/modules/fabrikantencore/components/fab-select-bcbproduct/fab-select-bcbproduct.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-select-bcbproduct/fab-select-bcbproduct.component.ts +17 -0
- package/src/app/modules/fabrikantencore/components/fab-start/fab-start.component.html +7 -0
- package/src/app/modules/fabrikantencore/components/fab-start/fab-start.component.scss +24 -0
- package/src/app/modules/fabrikantencore/components/fab-start/fab-start.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-start/fab-start.component.ts +25 -0
- package/src/app/modules/fabrikantencore/components/fab-svg-viewer/fab-svg-viewer.component.html +23 -0
- package/src/app/modules/fabrikantencore/components/fab-svg-viewer/fab-svg-viewer.component.scss +92 -0
- package/src/app/modules/fabrikantencore/components/fab-svg-viewer/fab-svg-viewer.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-svg-viewer/fab-svg-viewer.component.ts +76 -0
- package/src/app/modules/fabrikantencore/components/fab-texture/fab-texture.component.html +35 -0
- package/src/app/modules/fabrikantencore/components/fab-texture/fab-texture.component.scss +74 -0
- package/src/app/modules/fabrikantencore/components/fab-texture/fab-texture.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-texture/fab-texture.component.ts +33 -0
- package/src/app/modules/fabrikantencore/components/fab-webgl-viewer/fab-webgl-viewer.component.html +24 -0
- package/src/app/modules/fabrikantencore/components/fab-webgl-viewer/fab-webgl-viewer.component.scss +74 -0
- package/src/app/modules/fabrikantencore/components/fab-webgl-viewer/fab-webgl-viewer.component.spec.ts +23 -0
- package/src/app/modules/fabrikantencore/components/fab-webgl-viewer/fab-webgl-viewer.component.ts +103 -0
- package/src/app/modules/fabrikantencore/fabrikantencore.module.spec.ts +13 -0
- package/src/app/modules/fabrikantencore/fabrikantencore.module.ts +317 -0
- package/src/app/modules/fabrikantencore/helpers/auth.guard.ts +28 -0
- package/src/app/modules/fabrikantencore/helpers/basic-auth.interceptor.ts +24 -0
- package/src/app/modules/fabrikantencore/helpers/error.interceptor.ts +24 -0
- package/src/app/modules/fabrikantencore/services/authentication.service.ts +55 -0
- package/src/app/modules/fabrikantencore/services/bestek.service.ts +109 -0
- package/src/app/modules/fabrikantencore/services/fabrikanten.service.ts +1306 -0
- package/src/app/modules/fabrikantencore/services/importsets.service.ts +164 -0
- package/src/app/modules/fabrikantencore/services/mobile.service.ts +57 -0
- package/src/app/modules/fabrikantencore/services/navigate.service.ts +40 -0
- package/src/app/modules/fabrikantencore/services/photo.service.ts +121 -0
- package/src/app/modules/fabrikantencore/services/products.service.ts +281 -0
- package/src/app/modules/fabrikantencore/services/projectsetting.service.ts +97 -0
- package/src/app/modules/fabrikantencore/services/statistics.service.ts +96 -0
- package/src/app/modules/fabrikantencore/services/svg.service.ts +88 -0
- package/src/app/modules/fabrikantencore/services/texture.service.ts +33 -0
- package/src/app/modules/fabrikantencore/services/toebehoren.service.ts +65 -0
- package/src/app/modules/fabrikantencore/services/translate.service.ts +399 -0
- package/src/app/modules/fabrikantencore/services/webgl.service.ts +80 -0
- package/src/app/modules/fabrikantencore/swagger/SwaggerClient.ts +12529 -0
- package/src/assets/.gitkeep +0 -0
- package/src/assets/bouwconnect-achtergrond.png +0 -0
- package/src/assets/flags/1x1/ac.svg +76 -0
- package/src/assets/flags/1x1/ad.svg +148 -0
- package/src/assets/flags/1x1/ae.svg +6 -0
- package/src/assets/flags/1x1/af.svg +81 -0
- package/src/assets/flags/1x1/ag.svg +14 -0
- package/src/assets/flags/1x1/ai.svg +758 -0
- package/src/assets/flags/1x1/al.svg +5 -0
- package/src/assets/flags/1x1/am.svg +5 -0
- package/src/assets/flags/1x1/ao.svg +13 -0
- package/src/assets/flags/1x1/aq.svg +5 -0
- package/src/assets/flags/1x1/ar.svg +32 -0
- package/src/assets/flags/1x1/as.svg +73 -0
- package/src/assets/flags/1x1/at.svg +6 -0
- package/src/assets/flags/1x1/au.svg +8 -0
- package/src/assets/flags/1x1/aw.svg +186 -0
- package/src/assets/flags/1x1/ax.svg +18 -0
- package/src/assets/flags/1x1/az.svg +8 -0
- package/src/assets/flags/1x1/ba.svg +12 -0
- package/src/assets/flags/1x1/bb.svg +6 -0
- package/src/assets/flags/1x1/bd.svg +4 -0
- package/src/assets/flags/1x1/be.svg +7 -0
- package/src/assets/flags/1x1/bf.svg +7 -0
- package/src/assets/flags/1x1/bg.svg +7 -0
- package/src/assets/flags/1x1/bh.svg +4 -0
- package/src/assets/flags/1x1/bi.svg +15 -0
- package/src/assets/flags/1x1/bj.svg +14 -0
- package/src/assets/flags/1x1/bl.svg +7 -0
- package/src/assets/flags/1x1/bm.svg +97 -0
- package/src/assets/flags/1x1/bn.svg +36 -0
- package/src/assets/flags/1x1/bo.svg +678 -0
- package/src/assets/flags/1x1/bq.svg +5 -0
- package/src/assets/flags/1x1/br.svg +45 -0
- package/src/assets/flags/1x1/bs.svg +13 -0
- package/src/assets/flags/1x1/bt.svg +89 -0
- package/src/assets/flags/1x1/bv.svg +13 -0
- package/src/assets/flags/1x1/bw.svg +7 -0
- package/src/assets/flags/1x1/by.svg +22 -0
- package/src/assets/flags/1x1/bz.svg +145 -0
- package/src/assets/flags/1x1/ca.svg +4 -0
- package/src/assets/flags/1x1/cc.svg +19 -0
- package/src/assets/flags/1x1/cd.svg +12 -0
- package/src/assets/flags/1x1/cefta.svg +13 -0
- package/src/assets/flags/1x1/cf.svg +15 -0
- package/src/assets/flags/1x1/cg.svg +12 -0
- package/src/assets/flags/1x1/ch.svg +9 -0
- package/src/assets/flags/1x1/ci.svg +7 -0
- package/src/assets/flags/1x1/ck.svg +9 -0
- package/src/assets/flags/1x1/cl.svg +13 -0
- package/src/assets/flags/1x1/cm.svg +15 -0
- package/src/assets/flags/1x1/cn.svg +11 -0
- package/src/assets/flags/1x1/co.svg +7 -0
- package/src/assets/flags/1x1/cp.svg +7 -0
- package/src/assets/flags/1x1/cr.svg +7 -0
- package/src/assets/flags/1x1/cu.svg +13 -0
- package/src/assets/flags/1x1/cv.svg +13 -0
- package/src/assets/flags/1x1/cw.svg +14 -0
- package/src/assets/flags/1x1/cx.svg +15 -0
- package/src/assets/flags/1x1/cy.svg +6 -0
- package/src/assets/flags/1x1/cz.svg +5 -0
- package/src/assets/flags/1x1/de.svg +5 -0
- package/src/assets/flags/1x1/dg.svg +129 -0
- package/src/assets/flags/1x1/dj.svg +13 -0
- package/src/assets/flags/1x1/dk.svg +5 -0
- package/src/assets/flags/1x1/dm.svg +152 -0
- package/src/assets/flags/1x1/do.svg +6745 -0
- package/src/assets/flags/1x1/dz.svg +5 -0
- package/src/assets/flags/1x1/ea.svg +547 -0
- package/src/assets/flags/1x1/ec.svg +138 -0
- package/src/assets/flags/1x1/ee.svg +7 -0
- package/src/assets/flags/1x1/eg.svg +38 -0
- package/src/assets/flags/1x1/eh.svg +11 -0
- package/src/assets/flags/1x1/er.svg +13 -0
- package/src/assets/flags/1x1/es-ct.svg +4 -0
- package/src/assets/flags/1x1/es-ga.svg +187 -0
- package/src/assets/flags/1x1/es.svg +547 -0
- package/src/assets/flags/1x1/et.svg +14 -0
- package/src/assets/flags/1x1/eu.svg +28 -0
- package/src/assets/flags/1x1/fi.svg +5 -0
- package/src/assets/flags/1x1/fj.svg +123 -0
- package/src/assets/flags/1x1/fk.svg +89 -0
- package/src/assets/flags/1x1/fm.svg +11 -0
- package/src/assets/flags/1x1/fo.svg +12 -0
- package/src/assets/flags/1x1/fr.svg +7 -0
- package/src/assets/flags/1x1/ga.svg +7 -0
- package/src/assets/flags/1x1/gb-eng.svg +5 -0
- package/src/assets/flags/1x1/gb-nir.svg +131 -0
- package/src/assets/flags/1x1/gb-sct.svg +4 -0
- package/src/assets/flags/1x1/gb-wls.svg +9 -0
- package/src/assets/flags/1x1/gb.svg +7 -0
- package/src/assets/flags/1x1/gd.svg +27 -0
- package/src/assets/flags/1x1/ge.svg +6 -0
- package/src/assets/flags/1x1/gf.svg +7 -0
- package/src/assets/flags/1x1/gg.svg +9 -0
- package/src/assets/flags/1x1/gh.svg +6 -0
- package/src/assets/flags/1x1/gi.svg +32 -0
- package/src/assets/flags/1x1/gl.svg +4 -0
- package/src/assets/flags/1x1/gm.svg +9 -0
- package/src/assets/flags/1x1/gn.svg +7 -0
- package/src/assets/flags/1x1/gp.svg +7 -0
- package/src/assets/flags/1x1/gq.svg +23 -0
- package/src/assets/flags/1x1/gr.svg +16 -0
- package/src/assets/flags/1x1/gs.svg +132 -0
- package/src/assets/flags/1x1/gt.svg +220 -0
- package/src/assets/flags/1x1/gu.svg +23 -0
- package/src/assets/flags/1x1/gw.svg +15 -0
- package/src/assets/flags/1x1/gy.svg +9 -0
- package/src/assets/flags/1x1/hk.svg +30 -0
- package/src/assets/flags/1x1/hm.svg +8 -0
- package/src/assets/flags/1x1/hn.svg +18 -0
- package/src/assets/flags/1x1/hr.svg +56 -0
- package/src/assets/flags/1x1/ht.svg +116 -0
- package/src/assets/flags/1x1/hu.svg +7 -0
- package/src/assets/flags/1x1/ic.svg +7 -0
- package/src/assets/flags/1x1/id.svg +4 -0
- package/src/assets/flags/1x1/ie.svg +7 -0
- package/src/assets/flags/1x1/il.svg +14 -0
- package/src/assets/flags/1x1/im.svg +36 -0
- package/src/assets/flags/1x1/in.svg +25 -0
- package/src/assets/flags/1x1/io.svg +129 -0
- package/src/assets/flags/1x1/iq.svg +10 -0
- package/src/assets/flags/1x1/ir.svg +219 -0
- package/src/assets/flags/1x1/is.svg +12 -0
- package/src/assets/flags/1x1/it.svg +7 -0
- package/src/assets/flags/1x1/je.svg +44 -0
- package/src/assets/flags/1x1/jm.svg +8 -0
- package/src/assets/flags/1x1/jo.svg +16 -0
- package/src/assets/flags/1x1/jp.svg +11 -0
- package/src/assets/flags/1x1/ke.svg +23 -0
- package/src/assets/flags/1x1/kg.svg +15 -0
- package/src/assets/flags/1x1/kh.svg +61 -0
- package/src/assets/flags/1x1/ki.svg +36 -0
- package/src/assets/flags/1x1/km.svg +16 -0
- package/src/assets/flags/1x1/kn.svg +14 -0
- package/src/assets/flags/1x1/kp.svg +15 -0
- package/src/assets/flags/1x1/kr.svg +17 -0
- package/src/assets/flags/1x1/kw.svg +13 -0
- package/src/assets/flags/1x1/ky.svg +109 -0
- package/src/assets/flags/1x1/kz.svg +23 -0
- package/src/assets/flags/1x1/la.svg +12 -0
- package/src/assets/flags/1x1/lb.svg +15 -0
- package/src/assets/flags/1x1/lc.svg +8 -0
- package/src/assets/flags/1x1/li.svg +43 -0
- package/src/assets/flags/1x1/lk.svg +22 -0
- package/src/assets/flags/1x1/lr.svg +14 -0
- package/src/assets/flags/1x1/ls.svg +8 -0
- package/src/assets/flags/1x1/lt.svg +7 -0
- package/src/assets/flags/1x1/lu.svg +5 -0
- package/src/assets/flags/1x1/lv.svg +6 -0
- package/src/assets/flags/1x1/ly.svg +13 -0
- package/src/assets/flags/1x1/ma.svg +4 -0
- package/src/assets/flags/1x1/mc.svg +6 -0
- package/src/assets/flags/1x1/md.svg +71 -0
- package/src/assets/flags/1x1/me.svg +118 -0
- package/src/assets/flags/1x1/mf.svg +7 -0
- package/src/assets/flags/1x1/mg.svg +7 -0
- package/src/assets/flags/1x1/mh.svg +8 -0
- package/src/assets/flags/1x1/mk.svg +5 -0
- package/src/assets/flags/1x1/ml.svg +7 -0
- package/src/assets/flags/1x1/mm.svg +10 -0
- package/src/assets/flags/1x1/mn.svg +14 -0
- package/src/assets/flags/1x1/mo.svg +9 -0
- package/src/assets/flags/1x1/mp.svg +86 -0
- package/src/assets/flags/1x1/mq.svg +7 -0
- package/src/assets/flags/1x1/mr.svg +6 -0
- package/src/assets/flags/1x1/ms.svg +25 -0
- package/src/assets/flags/1x1/mt.svg +50 -0
- package/src/assets/flags/1x1/mu.svg +8 -0
- package/src/assets/flags/1x1/mv.svg +6 -0
- package/src/assets/flags/1x1/mw.svg +15 -0
- package/src/assets/flags/1x1/mx.svg +378 -0
- package/src/assets/flags/1x1/my.svg +7 -0
- package/src/assets/flags/1x1/mz.svg +21 -0
- package/src/assets/flags/1x1/na.svg +16 -0
- package/src/assets/flags/1x1/nc.svg +12 -0
- package/src/assets/flags/1x1/ne.svg +6 -0
- package/src/assets/flags/1x1/nf.svg +11 -0
- package/src/assets/flags/1x1/ng.svg +6 -0
- package/src/assets/flags/1x1/ni.svg +129 -0
- package/src/assets/flags/1x1/nl.svg +5 -0
- package/src/assets/flags/1x1/no.svg +7 -0
- package/src/assets/flags/1x1/np.svg +19 -0
- package/src/assets/flags/1x1/nr.svg +12 -0
- package/src/assets/flags/1x1/nu.svg +10 -0
- package/src/assets/flags/1x1/nz.svg +36 -0
- package/src/assets/flags/1x1/om.svg +115 -0
- package/src/assets/flags/1x1/pa.svg +13 -0
- package/src/assets/flags/1x1/pe.svg +244 -0
- package/src/assets/flags/1x1/pf.svg +18 -0
- package/src/assets/flags/1x1/pg.svg +16 -0
- package/src/assets/flags/1x1/ph.svg +8 -0
- package/src/assets/flags/1x1/pk.svg +15 -0
- package/src/assets/flags/1x1/pl.svg +6 -0
- package/src/assets/flags/1x1/pm.svg +7 -0
- package/src/assets/flags/1x1/pn.svg +53 -0
- package/src/assets/flags/1x1/pr.svg +13 -0
- package/src/assets/flags/1x1/ps.svg +15 -0
- package/src/assets/flags/1x1/pt.svg +57 -0
- package/src/assets/flags/1x1/pw.svg +11 -0
- package/src/assets/flags/1x1/py.svg +156 -0
- package/src/assets/flags/1x1/qa.svg +4 -0
- package/src/assets/flags/1x1/re.svg +7 -0
- package/src/assets/flags/1x1/ro.svg +7 -0
- package/src/assets/flags/1x1/rs.svg +296 -0
- package/src/assets/flags/1x1/ru.svg +7 -0
- package/src/assets/flags/1x1/rw.svg +13 -0
- package/src/assets/flags/1x1/sa.svg +26 -0
- package/src/assets/flags/1x1/sb.svg +13 -0
- package/src/assets/flags/1x1/sc.svg +7 -0
- package/src/assets/flags/1x1/sd.svg +13 -0
- package/src/assets/flags/1x1/se.svg +4 -0
- package/src/assets/flags/1x1/sg.svg +13 -0
- package/src/assets/flags/1x1/sh.svg +76 -0
- package/src/assets/flags/1x1/si.svg +18 -0
- package/src/assets/flags/1x1/sj.svg +7 -0
- package/src/assets/flags/1x1/sk.svg +9 -0
- package/src/assets/flags/1x1/sl.svg +12 -0
- package/src/assets/flags/1x1/sm.svg +73 -0
- package/src/assets/flags/1x1/sn.svg +8 -0
- package/src/assets/flags/1x1/so.svg +11 -0
- package/src/assets/flags/1x1/sr.svg +6 -0
- package/src/assets/flags/1x1/ss.svg +8 -0
- package/src/assets/flags/1x1/st.svg +16 -0
- package/src/assets/flags/1x1/sv.svg +594 -0
- package/src/assets/flags/1x1/sx.svg +56 -0
- package/src/assets/flags/1x1/sy.svg +6 -0
- package/src/assets/flags/1x1/sz.svg +34 -0
- package/src/assets/flags/1x1/ta.svg +76 -0
- package/src/assets/flags/1x1/tc.svg +50 -0
- package/src/assets/flags/1x1/td.svg +7 -0
- package/src/assets/flags/1x1/tf.svg +15 -0
- package/src/assets/flags/1x1/tg.svg +14 -0
- package/src/assets/flags/1x1/th.svg +7 -0
- package/src/assets/flags/1x1/tj.svg +26 -0
- package/src/assets/flags/1x1/tk.svg +5 -0
- package/src/assets/flags/1x1/tl.svg +13 -0
- package/src/assets/flags/1x1/tm.svg +202 -0
- package/src/assets/flags/1x1/tn.svg +13 -0
- package/src/assets/flags/1x1/to.svg +10 -0
- package/src/assets/flags/1x1/tr.svg +8 -0
- package/src/assets/flags/1x1/tt.svg +7 -0
- package/src/assets/flags/1x1/tv.svg +9 -0
- package/src/assets/flags/1x1/tw.svg +32 -0
- package/src/assets/flags/1x1/tz.svg +15 -0
- package/src/assets/flags/1x1/ua.svg +6 -0
- package/src/assets/flags/1x1/ug.svg +30 -0
- package/src/assets/flags/1x1/um.svg +15 -0
- package/src/assets/flags/1x1/un.svg +16 -0
- package/src/assets/flags/1x1/us.svg +10 -0
- package/src/assets/flags/1x1/uy.svg +28 -0
- package/src/assets/flags/1x1/uz.svg +30 -0
- package/src/assets/flags/1x1/va.svg +479 -0
- package/src/assets/flags/1x1/vc.svg +8 -0
- package/src/assets/flags/1x1/ve.svg +26 -0
- package/src/assets/flags/1x1/vg.svg +63 -0
- package/src/assets/flags/1x1/vi.svg +28 -0
- package/src/assets/flags/1x1/vn.svg +11 -0
- package/src/assets/flags/1x1/vu.svg +21 -0
- package/src/assets/flags/1x1/wf.svg +7 -0
- package/src/assets/flags/1x1/ws.svg +7 -0
- package/src/assets/flags/1x1/xk.svg +8 -0
- package/src/assets/flags/1x1/xx.svg +4 -0
- package/src/assets/flags/1x1/ye.svg +7 -0
- package/src/assets/flags/1x1/yt.svg +7 -0
- package/src/assets/flags/1x1/za.svg +17 -0
- package/src/assets/flags/1x1/zm.svg +27 -0
- package/src/assets/flags/1x1/zw.svg +21 -0
- package/src/assets/flags/4x3/ac.svg +76 -0
- package/src/assets/flags/4x3/ad.svg +150 -0
- package/src/assets/flags/4x3/ae.svg +6 -0
- package/src/assets/flags/4x3/af.svg +81 -0
- package/src/assets/flags/4x3/ag.svg +14 -0
- package/src/assets/flags/4x3/ai.svg +758 -0
- package/src/assets/flags/4x3/al.svg +5 -0
- package/src/assets/flags/4x3/am.svg +5 -0
- package/src/assets/flags/4x3/ao.svg +13 -0
- package/src/assets/flags/4x3/aq.svg +5 -0
- package/src/assets/flags/4x3/ar.svg +32 -0
- package/src/assets/flags/4x3/as.svg +72 -0
- package/src/assets/flags/4x3/at.svg +6 -0
- package/src/assets/flags/4x3/au.svg +8 -0
- package/src/assets/flags/4x3/aw.svg +186 -0
- package/src/assets/flags/4x3/ax.svg +18 -0
- package/src/assets/flags/4x3/az.svg +8 -0
- package/src/assets/flags/4x3/ba.svg +12 -0
- package/src/assets/flags/4x3/bb.svg +6 -0
- package/src/assets/flags/4x3/bd.svg +4 -0
- package/src/assets/flags/4x3/be.svg +7 -0
- package/src/assets/flags/4x3/bf.svg +7 -0
- package/src/assets/flags/4x3/bg.svg +7 -0
- package/src/assets/flags/4x3/bh.svg +4 -0
- package/src/assets/flags/4x3/bi.svg +15 -0
- package/src/assets/flags/4x3/bj.svg +14 -0
- package/src/assets/flags/4x3/bl.svg +7 -0
- package/src/assets/flags/4x3/bm.svg +97 -0
- package/src/assets/flags/4x3/bn.svg +36 -0
- package/src/assets/flags/4x3/bo.svg +676 -0
- package/src/assets/flags/4x3/bq.svg +5 -0
- package/src/assets/flags/4x3/br.svg +45 -0
- package/src/assets/flags/4x3/bs.svg +13 -0
- package/src/assets/flags/4x3/bt.svg +89 -0
- package/src/assets/flags/4x3/bv.svg +13 -0
- package/src/assets/flags/4x3/bw.svg +7 -0
- package/src/assets/flags/4x3/by.svg +20 -0
- package/src/assets/flags/4x3/bz.svg +145 -0
- package/src/assets/flags/4x3/ca.svg +4 -0
- package/src/assets/flags/4x3/cc.svg +19 -0
- package/src/assets/flags/4x3/cd.svg +5 -0
- package/src/assets/flags/4x3/cefta.svg +13 -0
- package/src/assets/flags/4x3/cf.svg +15 -0
- package/src/assets/flags/4x3/cg.svg +12 -0
- package/src/assets/flags/4x3/ch.svg +9 -0
- package/src/assets/flags/4x3/ci.svg +7 -0
- package/src/assets/flags/4x3/ck.svg +9 -0
- package/src/assets/flags/4x3/cl.svg +13 -0
- package/src/assets/flags/4x3/cm.svg +15 -0
- package/src/assets/flags/4x3/cn.svg +11 -0
- package/src/assets/flags/4x3/co.svg +7 -0
- package/src/assets/flags/4x3/cp.svg +7 -0
- package/src/assets/flags/4x3/cr.svg +7 -0
- package/src/assets/flags/4x3/cu.svg +13 -0
- package/src/assets/flags/4x3/cv.svg +13 -0
- package/src/assets/flags/4x3/cw.svg +14 -0
- package/src/assets/flags/4x3/cx.svg +15 -0
- package/src/assets/flags/4x3/cy.svg +6 -0
- package/src/assets/flags/4x3/cz.svg +5 -0
- package/src/assets/flags/4x3/de.svg +5 -0
- package/src/assets/flags/4x3/dg.svg +129 -0
- package/src/assets/flags/4x3/dj.svg +13 -0
- package/src/assets/flags/4x3/dk.svg +5 -0
- package/src/assets/flags/4x3/dm.svg +152 -0
- package/src/assets/flags/4x3/do.svg +6745 -0
- package/src/assets/flags/4x3/dz.svg +5 -0
- package/src/assets/flags/4x3/ea.svg +544 -0
- package/src/assets/flags/4x3/ec.svg +138 -0
- package/src/assets/flags/4x3/ee.svg +7 -0
- package/src/assets/flags/4x3/eg.svg +38 -0
- package/src/assets/flags/4x3/eh.svg +16 -0
- package/src/assets/flags/4x3/er.svg +8 -0
- package/src/assets/flags/4x3/es-ct.svg +4 -0
- package/src/assets/flags/4x3/es-ga.svg +187 -0
- package/src/assets/flags/4x3/es.svg +544 -0
- package/src/assets/flags/4x3/et.svg +14 -0
- package/src/assets/flags/4x3/eu.svg +28 -0
- package/src/assets/flags/4x3/fi.svg +5 -0
- package/src/assets/flags/4x3/fj.svg +120 -0
- package/src/assets/flags/4x3/fk.svg +90 -0
- package/src/assets/flags/4x3/fm.svg +11 -0
- package/src/assets/flags/4x3/fo.svg +12 -0
- package/src/assets/flags/4x3/fr.svg +7 -0
- package/src/assets/flags/4x3/ga.svg +7 -0
- package/src/assets/flags/4x3/gb-eng.svg +5 -0
- package/src/assets/flags/4x3/gb-nir.svg +132 -0
- package/src/assets/flags/4x3/gb-sct.svg +4 -0
- package/src/assets/flags/4x3/gb-wls.svg +9 -0
- package/src/assets/flags/4x3/gb.svg +7 -0
- package/src/assets/flags/4x3/gd.svg +27 -0
- package/src/assets/flags/4x3/ge.svg +6 -0
- package/src/assets/flags/4x3/gf.svg +7 -0
- package/src/assets/flags/4x3/gg.svg +9 -0
- package/src/assets/flags/4x3/gh.svg +6 -0
- package/src/assets/flags/4x3/gi.svg +32 -0
- package/src/assets/flags/4x3/gl.svg +4 -0
- package/src/assets/flags/4x3/gm.svg +14 -0
- package/src/assets/flags/4x3/gn.svg +7 -0
- package/src/assets/flags/4x3/gp.svg +7 -0
- package/src/assets/flags/4x3/gq.svg +23 -0
- package/src/assets/flags/4x3/gr.svg +16 -0
- package/src/assets/flags/4x3/gs.svg +133 -0
- package/src/assets/flags/4x3/gt.svg +220 -0
- package/src/assets/flags/4x3/gu.svg +23 -0
- package/src/assets/flags/4x3/gw.svg +13 -0
- package/src/assets/flags/4x3/gy.svg +9 -0
- package/src/assets/flags/4x3/hk.svg +30 -0
- package/src/assets/flags/4x3/hm.svg +8 -0
- package/src/assets/flags/4x3/hn.svg +18 -0
- package/src/assets/flags/4x3/hr.svg +58 -0
- package/src/assets/flags/4x3/ht.svg +116 -0
- package/src/assets/flags/4x3/hu.svg +7 -0
- package/src/assets/flags/4x3/ic.svg +7 -0
- package/src/assets/flags/4x3/id.svg +4 -0
- package/src/assets/flags/4x3/ie.svg +7 -0
- package/src/assets/flags/4x3/il.svg +14 -0
- package/src/assets/flags/4x3/im.svg +36 -0
- package/src/assets/flags/4x3/in.svg +25 -0
- package/src/assets/flags/4x3/io.svg +129 -0
- package/src/assets/flags/4x3/iq.svg +10 -0
- package/src/assets/flags/4x3/ir.svg +219 -0
- package/src/assets/flags/4x3/is.svg +12 -0
- package/src/assets/flags/4x3/it.svg +7 -0
- package/src/assets/flags/4x3/je.svg +45 -0
- package/src/assets/flags/4x3/jm.svg +8 -0
- package/src/assets/flags/4x3/jo.svg +16 -0
- package/src/assets/flags/4x3/jp.svg +11 -0
- package/src/assets/flags/4x3/ke.svg +23 -0
- package/src/assets/flags/4x3/kg.svg +15 -0
- package/src/assets/flags/4x3/kh.svg +61 -0
- package/src/assets/flags/4x3/ki.svg +36 -0
- package/src/assets/flags/4x3/km.svg +16 -0
- package/src/assets/flags/4x3/kn.svg +14 -0
- package/src/assets/flags/4x3/kp.svg +15 -0
- package/src/assets/flags/4x3/kr.svg +24 -0
- package/src/assets/flags/4x3/kw.svg +13 -0
- package/src/assets/flags/4x3/ky.svg +109 -0
- package/src/assets/flags/4x3/kz.svg +23 -0
- package/src/assets/flags/4x3/la.svg +12 -0
- package/src/assets/flags/4x3/lb.svg +15 -0
- package/src/assets/flags/4x3/lc.svg +8 -0
- package/src/assets/flags/4x3/li.svg +43 -0
- package/src/assets/flags/4x3/lk.svg +22 -0
- package/src/assets/flags/4x3/lr.svg +14 -0
- package/src/assets/flags/4x3/ls.svg +8 -0
- package/src/assets/flags/4x3/lt.svg +7 -0
- package/src/assets/flags/4x3/lu.svg +5 -0
- package/src/assets/flags/4x3/lv.svg +6 -0
- package/src/assets/flags/4x3/ly.svg +13 -0
- package/src/assets/flags/4x3/ma.svg +4 -0
- package/src/assets/flags/4x3/mc.svg +6 -0
- package/src/assets/flags/4x3/md.svg +70 -0
- package/src/assets/flags/4x3/me.svg +116 -0
- package/src/assets/flags/4x3/mf.svg +7 -0
- package/src/assets/flags/4x3/mg.svg +7 -0
- package/src/assets/flags/4x3/mh.svg +7 -0
- package/src/assets/flags/4x3/mk.svg +5 -0
- package/src/assets/flags/4x3/ml.svg +7 -0
- package/src/assets/flags/4x3/mm.svg +12 -0
- package/src/assets/flags/4x3/mn.svg +14 -0
- package/src/assets/flags/4x3/mo.svg +9 -0
- package/src/assets/flags/4x3/mp.svg +86 -0
- package/src/assets/flags/4x3/mq.svg +7 -0
- package/src/assets/flags/4x3/mr.svg +6 -0
- package/src/assets/flags/4x3/ms.svg +33 -0
- package/src/assets/flags/4x3/mt.svg +49 -0
- package/src/assets/flags/4x3/mu.svg +8 -0
- package/src/assets/flags/4x3/mv.svg +6 -0
- package/src/assets/flags/4x3/mw.svg +10 -0
- package/src/assets/flags/4x3/mx.svg +382 -0
- package/src/assets/flags/4x3/my.svg +7 -0
- package/src/assets/flags/4x3/mz.svg +21 -0
- package/src/assets/flags/4x3/na.svg +16 -0
- package/src/assets/flags/4x3/nc.svg +13 -0
- package/src/assets/flags/4x3/ne.svg +6 -0
- package/src/assets/flags/4x3/nf.svg +9 -0
- package/src/assets/flags/4x3/ng.svg +6 -0
- package/src/assets/flags/4x3/ni.svg +129 -0
- package/src/assets/flags/4x3/nl.svg +5 -0
- package/src/assets/flags/4x3/no.svg +7 -0
- package/src/assets/flags/4x3/np.svg +14 -0
- package/src/assets/flags/4x3/nr.svg +12 -0
- package/src/assets/flags/4x3/nu.svg +10 -0
- package/src/assets/flags/4x3/nz.svg +36 -0
- package/src/assets/flags/4x3/om.svg +115 -0
- package/src/assets/flags/4x3/pa.svg +14 -0
- package/src/assets/flags/4x3/pe.svg +244 -0
- package/src/assets/flags/4x3/pf.svg +19 -0
- package/src/assets/flags/4x3/pg.svg +9 -0
- package/src/assets/flags/4x3/ph.svg +6 -0
- package/src/assets/flags/4x3/pk.svg +15 -0
- package/src/assets/flags/4x3/pl.svg +6 -0
- package/src/assets/flags/4x3/pm.svg +7 -0
- package/src/assets/flags/4x3/pn.svg +53 -0
- package/src/assets/flags/4x3/pr.svg +13 -0
- package/src/assets/flags/4x3/ps.svg +15 -0
- package/src/assets/flags/4x3/pt.svg +57 -0
- package/src/assets/flags/4x3/pw.svg +11 -0
- package/src/assets/flags/4x3/py.svg +157 -0
- package/src/assets/flags/4x3/qa.svg +4 -0
- package/src/assets/flags/4x3/re.svg +7 -0
- package/src/assets/flags/4x3/ro.svg +7 -0
- package/src/assets/flags/4x3/rs.svg +292 -0
- package/src/assets/flags/4x3/ru.svg +7 -0
- package/src/assets/flags/4x3/rw.svg +13 -0
- package/src/assets/flags/4x3/sa.svg +26 -0
- package/src/assets/flags/4x3/sb.svg +13 -0
- package/src/assets/flags/4x3/sc.svg +7 -0
- package/src/assets/flags/4x3/sd.svg +13 -0
- package/src/assets/flags/4x3/se.svg +4 -0
- package/src/assets/flags/4x3/sg.svg +13 -0
- package/src/assets/flags/4x3/sh.svg +76 -0
- package/src/assets/flags/4x3/si.svg +18 -0
- package/src/assets/flags/4x3/sj.svg +7 -0
- package/src/assets/flags/4x3/sk.svg +9 -0
- package/src/assets/flags/4x3/sl.svg +7 -0
- package/src/assets/flags/4x3/sm.svg +75 -0
- package/src/assets/flags/4x3/sn.svg +8 -0
- package/src/assets/flags/4x3/so.svg +11 -0
- package/src/assets/flags/4x3/sr.svg +6 -0
- package/src/assets/flags/4x3/ss.svg +8 -0
- package/src/assets/flags/4x3/st.svg +16 -0
- package/src/assets/flags/4x3/sv.svg +594 -0
- package/src/assets/flags/4x3/sx.svg +56 -0
- package/src/assets/flags/4x3/sy.svg +6 -0
- package/src/assets/flags/4x3/sz.svg +34 -0
- package/src/assets/flags/4x3/ta.svg +76 -0
- package/src/assets/flags/4x3/tc.svg +50 -0
- package/src/assets/flags/4x3/td.svg +7 -0
- package/src/assets/flags/4x3/tf.svg +15 -0
- package/src/assets/flags/4x3/tg.svg +14 -0
- package/src/assets/flags/4x3/th.svg +7 -0
- package/src/assets/flags/4x3/tj.svg +22 -0
- package/src/assets/flags/4x3/tk.svg +5 -0
- package/src/assets/flags/4x3/tl.svg +13 -0
- package/src/assets/flags/4x3/tm.svg +205 -0
- package/src/assets/flags/4x3/tn.svg +13 -0
- package/src/assets/flags/4x3/to.svg +10 -0
- package/src/assets/flags/4x3/tr.svg +8 -0
- package/src/assets/flags/4x3/tt.svg +5 -0
- package/src/assets/flags/4x3/tv.svg +9 -0
- package/src/assets/flags/4x3/tw.svg +34 -0
- package/src/assets/flags/4x3/tz.svg +13 -0
- package/src/assets/flags/4x3/ua.svg +6 -0
- package/src/assets/flags/4x3/ug.svg +30 -0
- package/src/assets/flags/4x3/um.svg +15 -0
- package/src/assets/flags/4x3/un.svg +16 -0
- package/src/assets/flags/4x3/us.svg +10 -0
- package/src/assets/flags/4x3/uy.svg +28 -0
- package/src/assets/flags/4x3/uz.svg +30 -0
- package/src/assets/flags/4x3/va.svg +479 -0
- package/src/assets/flags/4x3/vc.svg +8 -0
- package/src/assets/flags/4x3/ve.svg +26 -0
- package/src/assets/flags/4x3/vg.svg +63 -0
- package/src/assets/flags/4x3/vi.svg +28 -0
- package/src/assets/flags/4x3/vn.svg +11 -0
- package/src/assets/flags/4x3/vu.svg +21 -0
- package/src/assets/flags/4x3/wf.svg +7 -0
- package/src/assets/flags/4x3/ws.svg +7 -0
- package/src/assets/flags/4x3/xk.svg +8 -0
- package/src/assets/flags/4x3/xx.svg +4 -0
- package/src/assets/flags/4x3/ye.svg +7 -0
- package/src/assets/flags/4x3/yt.svg +7 -0
- package/src/assets/flags/4x3/za.svg +17 -0
- package/src/assets/flags/4x3/zm.svg +27 -0
- package/src/assets/flags/4x3/zw.svg +21 -0
- package/src/environments/environment.prod.ts +3 -0
- package/src/environments/environment.ts +16 -0
- package/src/favicon.ico +0 -0
- package/src/index.html +23 -0
- package/src/main.ts +12 -0
- package/src/polyfills.ts +53 -0
- package/src/styles.scss +39 -0
- package/src/test.ts +14 -0
- package/src/webgl/WebGLQuery.min.js +6 -0
- package/src/webgl/WebGLViewerLight.min.js +89 -0
- package/src/webgl/gl-matrix.min.js +47 -0
- package/tsconfig.app.json +15 -0
- package/tsconfig.json +34 -0
- package/tsconfig.spec.json +18 -0
- package/esm2020/fabrikantencore.mjs +0 -5
- package/esm2020/public_api.mjs +0 -13
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-categories/beheer-categories.component.mjs +0 -56
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-connect-category-dialog/beheer-connect-category-dialog.component.mjs +0 -77
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-deeplink/beheer-deeplink.component.mjs +0 -43
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-display-ebo/beheer-display-ebo.component.mjs +0 -28
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-ebo-koppel/beheer-ebo-koppel/beheer-ebo-koppel.component.mjs +0 -133
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-filter/beheer-filter.component.mjs +0 -218
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-filters/beheer-filters.component.mjs +0 -120
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-import-sets/beheer-import-sets-dialog/beheer-import-sets-dialog.component.mjs +0 -56
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-import-sets/beheer-import-sets-ebo/beheer-import-sets-ebo.component.mjs +0 -90
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-import-sets/beheer-import-sets-eigenschap/beheer-import-sets-eigenschap.component.mjs +0 -30
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-import-sets/beheer-import-sets.component.mjs +0 -74
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-inlog/beheer-inlog.component.mjs +0 -44
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-main/beheer-main.component.mjs +0 -16
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-nav/beheer-nav.component.mjs +0 -47
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-bcbproduct/beheer-products-bcbproduct.component.mjs +0 -56
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-connect-rangeinput/beheer-products-connect-rangeinput.component.mjs +0 -106
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-ebo/beheer-products-ebo.component.mjs +0 -169
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-eigenschap/beheer-products-eigenschap.component.mjs +0 -199
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-eigenschap-bereik/beheer-products-eigenschap-bereik.component.mjs +0 -16
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-koppel-filteroption-dailog/beheer-products-koppel-filteroption-dailog.component.mjs +0 -157
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-product/beheer-products-product.component.mjs +0 -28
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products.component.mjs +0 -153
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-rangeinput/beheer-rangeinput.component.mjs +0 -87
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-searchproducts/beheer-searchproducts-koppel-dialog/beheer-searchproducts-koppel-dialog.component.mjs +0 -89
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-searchproducts/beheer-searchproducts.component.mjs +0 -299
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-select-filter-dialog/beheer-select-filter-dialog.component.mjs +0 -102
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-select-filteroption-dialog/beheer-select-filteroption-dialog.component.mjs +0 -76
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-settings/beheer-settings-boolean/beheer-settings-boolean.component.mjs +0 -40
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-settings/beheer-settings-options/beheer-settings-options.component.mjs +0 -24
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-settings/beheer-settings-string/beheer-settings-string.component.mjs +0 -24
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-settings/beheer-settings.component.mjs +0 -27
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-translate/beheer-translate.component.mjs +0 -114
- package/esm2020/src/app/modules/fabrikantencore/beheer/components/beheer-users/beheer-users.component.mjs +0 -15
- package/esm2020/src/app/modules/fabrikantencore/components/fab-actionmenu/fab-actionmenu.component.mjs +0 -137
- package/esm2020/src/app/modules/fabrikantencore/components/fab-bcb-product/fab-bcb-product.component.mjs +0 -14
- package/esm2020/src/app/modules/fabrikantencore/components/fab-breadcrumb/fab-breadcrumb.component.mjs +0 -73
- package/esm2020/src/app/modules/fabrikantencore/components/fab-categories/fab-categories.component.mjs +0 -31
- package/esm2020/src/app/modules/fabrikantencore/components/fab-category-navigator/fab-category-navigator.component.mjs +0 -61
- package/esm2020/src/app/modules/fabrikantencore/components/fab-category-tile/fab-category-tile.component.mjs +0 -42
- package/esm2020/src/app/modules/fabrikantencore/components/fab-filter/fab-filter.component.mjs +0 -121
- package/esm2020/src/app/modules/fabrikantencore/components/fab-filter-colour/fab-filter-colour-dialog/fab-filter-colour-dialog.component.mjs +0 -293
- package/esm2020/src/app/modules/fabrikantencore/components/fab-filter-colour/fab-filter-colour.component.mjs +0 -50
- package/esm2020/src/app/modules/fabrikantencore/components/fab-filter-colour-label/fab-filter-colour-label.component.mjs +0 -50
- package/esm2020/src/app/modules/fabrikantencore/components/fab-filter-fold/fab-filter-fold.component.mjs +0 -81
- package/esm2020/src/app/modules/fabrikantencore/components/fab-filter-label/fab-filter-label.component.mjs +0 -121
- package/esm2020/src/app/modules/fabrikantencore/components/fab-filters/fab-filters.component.mjs +0 -38
- package/esm2020/src/app/modules/fabrikantencore/components/fab-filters-input/fab-filters-input.component.mjs +0 -48
- package/esm2020/src/app/modules/fabrikantencore/components/fab-filters-overview/fab-filters-overview.component.mjs +0 -32
- package/esm2020/src/app/modules/fabrikantencore/components/fab-flag/fab-flag.component.mjs +0 -16
- package/esm2020/src/app/modules/fabrikantencore/components/fab-header/fab-header.component.mjs +0 -57
- package/esm2020/src/app/modules/fabrikantencore/components/fab-iframe/fab-iframe.component.mjs +0 -29
- package/esm2020/src/app/modules/fabrikantencore/components/fab-input/fab-input.component.mjs +0 -29
- package/esm2020/src/app/modules/fabrikantencore/components/fab-language-select/fab-language-select.component.mjs +0 -23
- package/esm2020/src/app/modules/fabrikantencore/components/fab-loader/fab-loader.component.mjs +0 -15
- package/esm2020/src/app/modules/fabrikantencore/components/fab-multiselect/fab-multiselect.component.mjs +0 -41
- package/esm2020/src/app/modules/fabrikantencore/components/fab-multiselect-fold/fab-multiselect-fold.component.mjs +0 -33
- package/esm2020/src/app/modules/fabrikantencore/components/fab-product/fab-product-bestek/fab-product-bestek.component.mjs +0 -46
- package/esm2020/src/app/modules/fabrikantencore/components/fab-product/fab-product-info/fab-product-info-photo/fab-product-info-photo.component.mjs +0 -32
- package/esm2020/src/app/modules/fabrikantencore/components/fab-product/fab-product-info/fab-product-info-photo-dialog/fab-product-info-photo-dialog.component.mjs +0 -21
- package/esm2020/src/app/modules/fabrikantencore/components/fab-product/fab-product-info/fab-product-info.component.mjs +0 -41
- package/esm2020/src/app/modules/fabrikantencore/components/fab-product/fab-product.component.mjs +0 -99
- package/esm2020/src/app/modules/fabrikantencore/components/fab-product/fab-toebehoren/fab-toebehoren.component.mjs +0 -86
- package/esm2020/src/app/modules/fabrikantencore/components/fab-product-select/fab-product-select.component.mjs +0 -63
- package/esm2020/src/app/modules/fabrikantencore/components/fab-product-tile/fab-product-tile.component.mjs +0 -46
- package/esm2020/src/app/modules/fabrikantencore/components/fab-range-input/fab-range-input.component.mjs +0 -85
- package/esm2020/src/app/modules/fabrikantencore/components/fab-range-input-fold/fab-range-input-fold.component.mjs +0 -33
- package/esm2020/src/app/modules/fabrikantencore/components/fab-select-bcbproduct/fab-select-bcbproduct.component.mjs +0 -19
- package/esm2020/src/app/modules/fabrikantencore/components/fab-start/fab-start.component.mjs +0 -27
- package/esm2020/src/app/modules/fabrikantencore/components/fab-svg-viewer/fab-svg-viewer.component.mjs +0 -69
- package/esm2020/src/app/modules/fabrikantencore/components/fab-texture/fab-texture.component.mjs +0 -35
- package/esm2020/src/app/modules/fabrikantencore/components/fab-webgl-viewer/fab-webgl-viewer.component.mjs +0 -89
- package/esm2020/src/app/modules/fabrikantencore/fabrikantencore.module.mjs +0 -464
- package/esm2020/src/app/modules/fabrikantencore/helpers/auth.guard.mjs +0 -29
- package/esm2020/src/app/modules/fabrikantencore/helpers/basic-auth.interceptor.mjs +0 -26
- package/esm2020/src/app/modules/fabrikantencore/helpers/error.interceptor.mjs +0 -27
- package/esm2020/src/app/modules/fabrikantencore/services/authentication.service.mjs +0 -47
- package/esm2020/src/app/modules/fabrikantencore/services/bestek.service.mjs +0 -91
- package/esm2020/src/app/modules/fabrikantencore/services/fabrikanten.service.mjs +0 -1021
- package/esm2020/src/app/modules/fabrikantencore/services/importsets.service.mjs +0 -135
- package/esm2020/src/app/modules/fabrikantencore/services/mobile.service.mjs +0 -47
- package/esm2020/src/app/modules/fabrikantencore/services/navigate.service.mjs +0 -39
- package/esm2020/src/app/modules/fabrikantencore/services/photo.service.mjs +0 -98
- package/esm2020/src/app/modules/fabrikantencore/services/products.service.mjs +0 -235
- package/esm2020/src/app/modules/fabrikantencore/services/projectsetting.service.mjs +0 -84
- package/esm2020/src/app/modules/fabrikantencore/services/statistics.service.mjs +0 -82
- package/esm2020/src/app/modules/fabrikantencore/services/svg.service.mjs +0 -73
- package/esm2020/src/app/modules/fabrikantencore/services/texture.service.mjs +0 -33
- package/esm2020/src/app/modules/fabrikantencore/services/toebehoren.service.mjs +0 -58
- package/esm2020/src/app/modules/fabrikantencore/services/translate.service.mjs +0 -322
- package/esm2020/src/app/modules/fabrikantencore/services/webgl.service.mjs +0 -66
- package/esm2020/src/app/modules/fabrikantencore/swagger/SwaggerClient.mjs +0 -10236
- package/fesm2015/fabrikantencore.mjs +0 -17515
- package/fesm2015/fabrikantencore.mjs.map +0 -1
- package/fesm2020/fabrikantencore.mjs +0 -17397
- package/fesm2020/fabrikantencore.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/public_api.d.ts +0 -12
- package/src/app/modules/fabrikantencore/beheer/components/beheer-categories/beheer-categories.component.d.ts +0 -14
- package/src/app/modules/fabrikantencore/beheer/components/beheer-connect-category-dialog/beheer-connect-category-dialog.component.d.ts +0 -22
- package/src/app/modules/fabrikantencore/beheer/components/beheer-deeplink/beheer-deeplink.component.d.ts +0 -16
- package/src/app/modules/fabrikantencore/beheer/components/beheer-display-ebo/beheer-display-ebo.component.d.ts +0 -11
- package/src/app/modules/fabrikantencore/beheer/components/beheer-ebo-koppel/beheer-ebo-koppel/beheer-ebo-koppel.component.d.ts +0 -23
- package/src/app/modules/fabrikantencore/beheer/components/beheer-filter/beheer-filter.component.d.ts +0 -28
- package/src/app/modules/fabrikantencore/beheer/components/beheer-filters/beheer-filters.component.d.ts +0 -24
- package/src/app/modules/fabrikantencore/beheer/components/beheer-import-sets/beheer-import-sets-dialog/beheer-import-sets-dialog.component.d.ts +0 -20
- package/src/app/modules/fabrikantencore/beheer/components/beheer-import-sets/beheer-import-sets-ebo/beheer-import-sets-ebo.component.d.ts +0 -29
- package/src/app/modules/fabrikantencore/beheer/components/beheer-import-sets/beheer-import-sets-eigenschap/beheer-import-sets-eigenschap.component.d.ts +0 -14
- package/src/app/modules/fabrikantencore/beheer/components/beheer-import-sets/beheer-import-sets.component.d.ts +0 -23
- package/src/app/modules/fabrikantencore/beheer/components/beheer-inlog/beheer-inlog.component.d.ts +0 -21
- package/src/app/modules/fabrikantencore/beheer/components/beheer-main/beheer-main.component.d.ts +0 -8
- package/src/app/modules/fabrikantencore/beheer/components/beheer-nav/beheer-nav.component.d.ts +0 -19
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-bcbproduct/beheer-products-bcbproduct.component.d.ts +0 -17
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-connect-rangeinput/beheer-products-connect-rangeinput.component.d.ts +0 -32
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-ebo/beheer-products-ebo.component.d.ts +0 -34
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-eigenschap/beheer-products-eigenschap.component.d.ts +0 -28
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-eigenschap-bereik/beheer-products-eigenschap-bereik.component.d.ts +0 -10
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-koppel-filteroption-dailog/beheer-products-koppel-filteroption-dailog.component.d.ts +0 -35
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products-product/beheer-products-product.component.d.ts +0 -14
- package/src/app/modules/fabrikantencore/beheer/components/beheer-products/beheer-products.component.d.ts +0 -27
- package/src/app/modules/fabrikantencore/beheer/components/beheer-rangeinput/beheer-rangeinput.component.d.ts +0 -17
- package/src/app/modules/fabrikantencore/beheer/components/beheer-searchproducts/beheer-searchproducts-koppel-dialog/beheer-searchproducts-koppel-dialog.component.d.ts +0 -23
- package/src/app/modules/fabrikantencore/beheer/components/beheer-searchproducts/beheer-searchproducts.component.d.ts +0 -41
- package/src/app/modules/fabrikantencore/beheer/components/beheer-select-filter-dialog/beheer-select-filter-dialog.component.d.ts +0 -28
- package/src/app/modules/fabrikantencore/beheer/components/beheer-select-filteroption-dialog/beheer-select-filteroption-dialog.component.d.ts +0 -23
- package/src/app/modules/fabrikantencore/beheer/components/beheer-settings/beheer-settings-boolean/beheer-settings-boolean.component.d.ts +0 -14
- package/src/app/modules/fabrikantencore/beheer/components/beheer-settings/beheer-settings-options/beheer-settings-options.component.d.ts +0 -12
- package/src/app/modules/fabrikantencore/beheer/components/beheer-settings/beheer-settings-string/beheer-settings-string.component.d.ts +0 -12
- package/src/app/modules/fabrikantencore/beheer/components/beheer-settings/beheer-settings.component.d.ts +0 -11
- package/src/app/modules/fabrikantencore/beheer/components/beheer-translate/beheer-translate.component.d.ts +0 -21
- package/src/app/modules/fabrikantencore/beheer/components/beheer-users/beheer-users.component.d.ts +0 -8
- package/src/app/modules/fabrikantencore/components/fab-actionmenu/fab-actionmenu.component.d.ts +0 -48
- package/src/app/modules/fabrikantencore/components/fab-bcb-product/fab-bcb-product.component.d.ts +0 -8
- package/src/app/modules/fabrikantencore/components/fab-breadcrumb/fab-breadcrumb.component.d.ts +0 -22
- package/src/app/modules/fabrikantencore/components/fab-categories/fab-categories.component.d.ts +0 -15
- package/src/app/modules/fabrikantencore/components/fab-category-navigator/fab-category-navigator.component.d.ts +0 -21
- package/src/app/modules/fabrikantencore/components/fab-category-tile/fab-category-tile.component.d.ts +0 -20
- package/src/app/modules/fabrikantencore/components/fab-filter/fab-filter.component.d.ts +0 -26
- package/src/app/modules/fabrikantencore/components/fab-filter-colour/fab-filter-colour-dialog/fab-filter-colour-dialog.component.d.ts +0 -36
- package/src/app/modules/fabrikantencore/components/fab-filter-colour/fab-filter-colour.component.d.ts +0 -20
- package/src/app/modules/fabrikantencore/components/fab-filter-colour-label/fab-filter-colour-label.component.d.ts +0 -20
- package/src/app/modules/fabrikantencore/components/fab-filter-fold/fab-filter-fold.component.d.ts +0 -26
- package/src/app/modules/fabrikantencore/components/fab-filter-label/fab-filter-label.component.d.ts +0 -26
- package/src/app/modules/fabrikantencore/components/fab-filters/fab-filters.component.d.ts +0 -21
- package/src/app/modules/fabrikantencore/components/fab-filters-input/fab-filters-input.component.d.ts +0 -16
- package/src/app/modules/fabrikantencore/components/fab-filters-overview/fab-filters-overview.component.d.ts +0 -12
- package/src/app/modules/fabrikantencore/components/fab-flag/fab-flag.component.d.ts +0 -9
- package/src/app/modules/fabrikantencore/components/fab-header/fab-header.component.d.ts +0 -20
- package/src/app/modules/fabrikantencore/components/fab-iframe/fab-iframe.component.d.ts +0 -12
- package/src/app/modules/fabrikantencore/components/fab-input/fab-input.component.d.ts +0 -9
- package/src/app/modules/fabrikantencore/components/fab-language-select/fab-language-select.component.d.ts +0 -13
- package/src/app/modules/fabrikantencore/components/fab-loader/fab-loader.component.d.ts +0 -8
- package/src/app/modules/fabrikantencore/components/fab-multiselect/fab-multiselect.component.d.ts +0 -18
- package/src/app/modules/fabrikantencore/components/fab-multiselect-fold/fab-multiselect-fold.component.d.ts +0 -18
- package/src/app/modules/fabrikantencore/components/fab-product/fab-product-bestek/fab-product-bestek.component.d.ts +0 -23
- package/src/app/modules/fabrikantencore/components/fab-product/fab-product-info/fab-product-info-photo/fab-product-info-photo.component.d.ts +0 -15
- package/src/app/modules/fabrikantencore/components/fab-product/fab-product-info/fab-product-info-photo-dialog/fab-product-info-photo-dialog.component.d.ts +0 -12
- package/src/app/modules/fabrikantencore/components/fab-product/fab-product-info/fab-product-info.component.d.ts +0 -17
- package/src/app/modules/fabrikantencore/components/fab-product/fab-product.component.d.ts +0 -33
- package/src/app/modules/fabrikantencore/components/fab-product/fab-toebehoren/fab-toebehoren.component.d.ts +0 -25
- package/src/app/modules/fabrikantencore/components/fab-product-select/fab-product-select.component.d.ts +0 -25
- package/src/app/modules/fabrikantencore/components/fab-product-tile/fab-product-tile.component.d.ts +0 -22
- package/src/app/modules/fabrikantencore/components/fab-range-input/fab-range-input.component.d.ts +0 -23
- package/src/app/modules/fabrikantencore/components/fab-range-input-fold/fab-range-input-fold.component.d.ts +0 -18
- package/src/app/modules/fabrikantencore/components/fab-select-bcbproduct/fab-select-bcbproduct.component.d.ts +0 -12
- package/src/app/modules/fabrikantencore/components/fab-start/fab-start.component.d.ts +0 -15
- package/src/app/modules/fabrikantencore/components/fab-svg-viewer/fab-svg-viewer.component.d.ts +0 -27
- package/src/app/modules/fabrikantencore/components/fab-texture/fab-texture.component.d.ts +0 -17
- package/src/app/modules/fabrikantencore/components/fab-webgl-viewer/fab-webgl-viewer.component.d.ts +0 -25
- package/src/app/modules/fabrikantencore/fabrikantencore.module.d.ts +0 -103
- package/src/app/modules/fabrikantencore/helpers/auth.guard.d.ts +0 -11
- package/src/app/modules/fabrikantencore/helpers/basic-auth.interceptor.d.ts +0 -11
- package/src/app/modules/fabrikantencore/helpers/error.interceptor.d.ts +0 -11
- package/src/app/modules/fabrikantencore/services/authentication.service.d.ts +0 -16
- package/src/app/modules/fabrikantencore/services/bestek.service.d.ts +0 -20
- package/src/app/modules/fabrikantencore/services/fabrikanten.service.d.ts +0 -97
- package/src/app/modules/fabrikantencore/services/importsets.service.d.ts +0 -29
- package/src/app/modules/fabrikantencore/services/mobile.service.d.ts +0 -19
- package/src/app/modules/fabrikantencore/services/navigate.service.d.ts +0 -15
- package/src/app/modules/fabrikantencore/services/photo.service.d.ts +0 -20
- package/src/app/modules/fabrikantencore/services/products.service.d.ts +0 -30
- package/src/app/modules/fabrikantencore/services/projectsetting.service.d.ts +0 -18
- package/src/app/modules/fabrikantencore/services/statistics.service.d.ts +0 -17
- package/src/app/modules/fabrikantencore/services/svg.service.d.ts +0 -22
- package/src/app/modules/fabrikantencore/services/texture.service.d.ts +0 -12
- package/src/app/modules/fabrikantencore/services/toebehoren.service.d.ts +0 -18
- package/src/app/modules/fabrikantencore/services/translate.service.d.ts +0 -51
- package/src/app/modules/fabrikantencore/services/webgl.service.d.ts +0 -21
- package/src/app/modules/fabrikantencore/swagger/SwaggerClient.d.ts +0 -2757
|
@@ -0,0 +1,758 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" id="flag-icons-ai" viewBox="0 0 512 512">
|
|
2
|
+
<path fill="#012169" d="M0 0h512v512H0z"/>
|
|
3
|
+
<path fill="#49497d" d="m384 212.7 2 2z"/>
|
|
4
|
+
<path fill="#0e0e6e" d="m386 212.7 2 2z"/>
|
|
5
|
+
<path fill="#262678" d="m379.9 214.7 2 2z"/>
|
|
6
|
+
<path fill="#808067" d="m382 214.7 2 2z"/>
|
|
7
|
+
<path fill="#58587b" d="m388 214.7 2 2z"/>
|
|
8
|
+
<path fill="#0e0e6e" d="m312.9 216.8 2 2z"/>
|
|
9
|
+
<path fill="#1b1b74" d="m375.9 216.8 2 2z"/>
|
|
10
|
+
<path fill="#6e6c70" d="m377.9 216.8 2 2z"/>
|
|
11
|
+
<path fill="#cc3" d="M316.5 220.4c0 52.5-6 111.6 33 152.7 8 8.4 23.4 27.7 36.5 27 13.7-.8 31.4-21.1 39.2-31 34-44.8 28.7-98.2 29.8-150.2-15.3 6.9-23 9.2-36.4 9-10 1-25.3-5.5-34.5-10-6 4-14.7 8.9-30.4 9.4-18 .8-23.8-2.3-37.2-7z"/>
|
|
12
|
+
<path fill="#99994e" d="m390 216.8 2 2z"/>
|
|
13
|
+
<path fill="#49497d" d="m392 216.8 2 2z"/>
|
|
14
|
+
<path fill="#0e0e6e" d="m455 216.8 2 2z"/>
|
|
15
|
+
<path fill="#a4a43d" d="m315 218.8 2 2z"/>
|
|
16
|
+
<path fill="#6e6c70" d="m317 218.8 2 2z"/>
|
|
17
|
+
<path fill="#3a3a7c" d="m319 218.8 2 2z"/>
|
|
18
|
+
<path fill="#1b1b74" d="m371.8 218.8 2 2z"/>
|
|
19
|
+
<path fill="#6e6c70" d="m373.8 218.8 2 2z"/>
|
|
20
|
+
<path fill="#a4a43d" d="m375.9 218.8 2 2z"/>
|
|
21
|
+
<path fill="#d0d045" d="m384 218.8 2 2z"/>
|
|
22
|
+
<path fill="#a4a43d" d="m392 218.8 2 2z"/>
|
|
23
|
+
<path fill="#8d8d5b" d="m394 218.8 2 2z"/>
|
|
24
|
+
<path fill="#3a3a7c" d="m396.2 218.8 2 2z"/>
|
|
25
|
+
<path fill="#262678" d="m448.9 218.8 2 2z"/>
|
|
26
|
+
<path fill="#53527c" d="m451 218.8 2 2z"/>
|
|
27
|
+
<path fill="#8d8d5b" d="m453 218.8 2 2z"/>
|
|
28
|
+
<path fill="#737370" d="m323 220.9 2 2z"/>
|
|
29
|
+
<path fill="#53527c" d="m325 220.9 2 2z"/>
|
|
30
|
+
<path fill="#1b1b74" d="m327 220.9 2 2z"/>
|
|
31
|
+
<path fill="#262678" d="m367.7 220.9 2 2z"/>
|
|
32
|
+
<path fill="#6e6c70" d="m369.8 220.9 2 2z"/>
|
|
33
|
+
<path fill="#a4a43d" d="m371.8 220.9 2 2z"/>
|
|
34
|
+
<path fill="#e5e59d" d="m382 220.9 2 2z"/>
|
|
35
|
+
<path fill="#fff" d="M320.6 226a509 509 0 0 0 4 88.2c4.9 15.4 4.2 23.9 11.3 33l99-.7c6-9.7 10.5-24.4 11-30.3 5.6-29.7 5.7-62.6 5.9-92a62 62 0 0 1-35.7 7.4 69 69 0 0 1-30.5-9.2c-9.5 5.6-12.8 8.2-28.4 8.9-12.2.6-22 1.6-36.6-5.2z"/>
|
|
36
|
+
<path fill="#f2f1d7" d="m386 220.9 2 2z"/>
|
|
37
|
+
<path fill="#d9d868" d="m388 220.9 2 2z"/>
|
|
38
|
+
<path fill="#a4a43d" d="m396.2 220.9 2 2z"/>
|
|
39
|
+
<path fill="#99994e" d="m398.2 220.9 2 2z"/>
|
|
40
|
+
<path fill="#49497d" d="m400.2 220.9 2 2z"/>
|
|
41
|
+
<path fill="#0e0e6e" d="m402.2 220.9 2 2z"/>
|
|
42
|
+
<path fill="#3a3a7c" d="m442.9 220.9 2 2z"/>
|
|
43
|
+
<path fill="#667" d="m444.9 220.9 2 2z"/>
|
|
44
|
+
<path fill="#99994e" d="m446.9 220.9 2 2z"/>
|
|
45
|
+
<path fill="#a4a43d" d="m448.9 220.9 2 2-2-2m-121.8 2 2 2z"/>
|
|
46
|
+
<path fill="#99994e" d="m329.2 222.9 2 2z"/>
|
|
47
|
+
<path fill="#6e6c70" d="m331.2 222.9 2 2z"/>
|
|
48
|
+
<path fill="#49497d" d="m333.2 222.9 2 2z"/>
|
|
49
|
+
<path fill="#1b1b74" d="m335.2 222.9 2 2-2-2m26.4 0 2 2z"/>
|
|
50
|
+
<path fill="#53527c" d="m363.6 222.9 2 2-2-2z"/>
|
|
51
|
+
<path fill="#8d8d5b" d="m365.7 222.9 2 2z"/>
|
|
52
|
+
<path fill="#a4a43d" d="m367.7 222.9 2 2z"/>
|
|
53
|
+
<path fill="#e5e59d" d="m377.9 222.9 2 2z"/>
|
|
54
|
+
<path fill="#fbfaf2" d="m379.9 222.9 2 2z"/>
|
|
55
|
+
<path fill="#f2f1d2" d="m390 222.9 2 2z"/>
|
|
56
|
+
<path fill="#d9d868" d="m392 222.9 2 2z"/>
|
|
57
|
+
<path fill="#a4a43d" d="m402.2 222.9 2 2z"/>
|
|
58
|
+
<path fill="#6e6c70" d="m404.3 222.9 2 2z"/>
|
|
59
|
+
<path fill="#3a3a7c" d="m406.3 222.9 2 2z"/>
|
|
60
|
+
<path fill="#0e0e6e" d="m432.7 222.9 2 2z"/>
|
|
61
|
+
<path fill="#32327b" d="m434.7 222.9 2 2z"/>
|
|
62
|
+
<path fill="#58587b" d="m436.8 222.9 2 2z"/>
|
|
63
|
+
<path fill="#808067" d="m438.8 222.9 2 2z"/>
|
|
64
|
+
<path fill="#a4a43d" d="m442.2 223.5 1.3.7z"/>
|
|
65
|
+
<path fill="#dddc7a" d="m319 224.9 2 2z"/>
|
|
66
|
+
<path fill="#d0d045" d="m321 224.9 2 2z"/>
|
|
67
|
+
<path fill="#a4a43d" d="m336.6 225.5 1.4.7z"/>
|
|
68
|
+
<path fill="#808067" d="m339.3 224.9 2 2z"/>
|
|
69
|
+
<path fill="#667" d="m341.3 224.9 2 2z"/>
|
|
70
|
+
<path fill="#58587b" d="m343.4 224.9 2 2z"/>
|
|
71
|
+
<path fill="#49497d" d="m345.4 224.9 2 2z"/>
|
|
72
|
+
<path fill="#737370" d="m357.6 224.9 2 2z"/>
|
|
73
|
+
<path fill="#99994e" d="m359.6 224.9 2 2z"/>
|
|
74
|
+
<path fill="#a4a43d" d="m361.6 224.9 2 2z"/>
|
|
75
|
+
<path fill="#e5e59d" d="m373.8 224.9 2 2z"/>
|
|
76
|
+
<path fill="#fbfaf2" d="m375.9 224.9 2 2z"/>
|
|
77
|
+
<path fill="#f2f1d2" d="m394 224.9 2 2z"/>
|
|
78
|
+
<path fill="#d9d868" d="m396.2 224.9 2 2z"/>
|
|
79
|
+
<path fill="#a4a43d" d="m407.6 225.5 1.4.7-1.3-.7z"/>
|
|
80
|
+
<path fill="#808067" d="m410.4 224.9 2 2z"/>
|
|
81
|
+
<path fill="#667" d="m412.4 224.9 2 2z"/>
|
|
82
|
+
<path fill="#58587b" d="m414.4 224.9 2 2z"/>
|
|
83
|
+
<path fill="#3a3a7c" d="m416.5 224.9 2 2z"/>
|
|
84
|
+
<path fill="#58587b" d="m425.9 225.5 1.4.7z"/>
|
|
85
|
+
<path fill="#737370" d="m428.6 224.9 2 2z"/>
|
|
86
|
+
<path fill="#99994e" d="m430.6 224.9 2 2-2-2z"/>
|
|
87
|
+
<path fill="#a4a43d" d="m432.7 224.9 2 2z"/>
|
|
88
|
+
<path fill="#dddc7a" d="m448.9 224.9 2 2z"/>
|
|
89
|
+
<path fill="#d0d045" d="m451 224.9 2 2z"/>
|
|
90
|
+
<path fill="#f2f1d7" d="m323 226.9 2 2z"/>
|
|
91
|
+
<path fill="#e0dea1" d="m325 226.9 2 2z"/>
|
|
92
|
+
<path fill="#dddc7a" d="m327 226.9 2 2z"/>
|
|
93
|
+
<path fill="#d9d868" d="m367.7 226.9 2 2z"/>
|
|
94
|
+
<path fill="#e5e3af" d="m369.8 226.9 2 2z"/>
|
|
95
|
+
<path fill="#f6f6e4" d="m398.2 226.9 2 2z"/>
|
|
96
|
+
<path fill="#e1e18c" d="m400.2 226.9 2 2z"/>
|
|
97
|
+
<path fill="#d4d456" d="m440.8 226.9 2 2z"/>
|
|
98
|
+
<path fill="#e1e18c" d="m442.9 226.9 2 2z"/>
|
|
99
|
+
<path fill="#eeedc1" d="m444.9 226.9 2 2z"/>
|
|
100
|
+
<path fill="#f2f1d2" d="m331.2 228.9 2 2z"/>
|
|
101
|
+
<path fill="#e0dea1" d="m333.2 228.9 2 2z"/>
|
|
102
|
+
<path fill="#dddc7a" d="m335.2 228.9 2 2z"/>
|
|
103
|
+
<path fill="#d0d045" d="m337.3 228.9 2 2z"/>
|
|
104
|
+
<path fill="#dddc7a" d="m361.6 228.9 2 2z"/>
|
|
105
|
+
<path fill="#e5e3af" d="m363.6 228.9 2 2-2-2z"/>
|
|
106
|
+
<path fill="#f6f6e4" d="m365.7 228.9 2 2z"/>
|
|
107
|
+
<path fill="#eeedc1" d="m404.3 228.9 2 2z"/>
|
|
108
|
+
<path fill="#e1e18c" d="m406.3 228.9 2 2z"/>
|
|
109
|
+
<path fill="#d4d456" d="m408.3 228.9 2 2z"/>
|
|
110
|
+
<path fill="#d9d868" d="m432.7 228.9 2 2z"/>
|
|
111
|
+
<path fill="#e1e18c" d="m434.7 228.9 2 2z"/>
|
|
112
|
+
<path fill="#eeedc1" d="m436.8 228.9 2 2z"/>
|
|
113
|
+
<path fill="#f6f6e4" d="m438.8 228.9 2 2z"/>
|
|
114
|
+
<path fill="#f2f1d7" d="m341.3 230.9 2 2-2-2z"/>
|
|
115
|
+
<path fill="#f2f1d2" d="m343.4 230.9 2 2-2-2z"/>
|
|
116
|
+
<path fill="#eeedc1" d="m345.4 230.9 2 2-2-2z"/>
|
|
117
|
+
<path fill="#f2f1d2" d="m354.9 231.6 1.3.7z"/>
|
|
118
|
+
<path fill="#fbfaf2" d="m357.6 230.9 2 2-2-2z"/>
|
|
119
|
+
<path fill="#fef8f1" d="m367.7 230.9 4 4v-4h-4z"/>
|
|
120
|
+
<path fill="#f2f1d7" d="m412.4 230.9 2 2-2-2z"/>
|
|
121
|
+
<path fill="#f2f1d2" d="m414.4 230.9 2 2-2-2z"/>
|
|
122
|
+
<path fill="#e5e3af" d="m416.5 230.9 2 2-2-2z"/>
|
|
123
|
+
<path fill="#e5e59d" d="m419.9 231.6 1.3.7-1.4-.7z"/>
|
|
124
|
+
<path fill="#e0dea1" d="m422.6 230.9 2 2-2-2z"/>
|
|
125
|
+
<path fill="#f2f1d2" d="m425.9 231.6 1.4.7z"/>
|
|
126
|
+
<path fill="#fbfaf2" d="m428.6 230.9 2 2-2-2z"/>
|
|
127
|
+
<path fill="#fef8f1" d="m363.6 233 2 2-2-2z"/>
|
|
128
|
+
<path fill="#fbbe66" d="m365.7 233 2 2z"/>
|
|
129
|
+
<path fill="#fbc477" d="m363.6 235 2 2-2-2z"/>
|
|
130
|
+
<path fill="#fcb144" d="m367.7 235 2 2z"/>
|
|
131
|
+
<path fill="#fe9f11" d="m363.6 237 2 2-2-2z"/>
|
|
132
|
+
<path fill="#fea522" d="m367.7 237 2 2z"/>
|
|
133
|
+
<path fill="#fae3c9" d="m361.6 239 2 2-2-2m8.2 0 2 2z"/>
|
|
134
|
+
<path fill="#fbead6" d="m379.9 239 2 2z"/>
|
|
135
|
+
<path fill="#f9d6aa" d="m382 239 2 2z"/>
|
|
136
|
+
<path fill="#fae3c9" d="m390 239 2 2z"/>
|
|
137
|
+
<path fill="#fef8f1" d="m392 239 2 2z"/>
|
|
138
|
+
<path fill="#f9d099" d="m361.6 241 2 2z"/>
|
|
139
|
+
<path fill="#fdab33" d="m369.8 241 2 2z"/>
|
|
140
|
+
<path fill="#fcf1e4" d="m373.8 241 2 2z"/>
|
|
141
|
+
<path fill="#fbc477" d="m375.9 241 2 2z"/>
|
|
142
|
+
<path fill="#fea522" d="m377.9 241 2 2z"/>
|
|
143
|
+
<path fill="#fcb755" d="m394 241 2 2z"/>
|
|
144
|
+
<path fill="#f9d6aa" d="m396.2 241 2 2z"/>
|
|
145
|
+
<path fill="#faca88" d="m361.6 243.2 2 2z"/>
|
|
146
|
+
<path fill="#fea522" d="m371.8 243.2 2 2-2-2m26.4 0 2 2z"/>
|
|
147
|
+
<path fill="#f8dcbb" d="m400.2 243.2 2 2z"/>
|
|
148
|
+
<path fill="#f6f6e4" d="m319 245.2 2 2z"/>
|
|
149
|
+
<path fill="#fbc477" d="m361.6 245.2 2 2z"/>
|
|
150
|
+
<path fill="#fbbe66" d="m402.2 245.2 2 2z"/>
|
|
151
|
+
<path fill="#f8dcbb" d="m404.3 245.2 2 2z"/>
|
|
152
|
+
<path fill="#faca88" d="m361.6 247.2 2 2z"/>
|
|
153
|
+
<path fill="#fcb755" d="m408.3 247.2 2 2z"/>
|
|
154
|
+
<path fill="#f8dcbb" d="m410.4 247.2 2 2z"/>
|
|
155
|
+
<path fill="#fef8f1" d="m359.6 249.3 2 2z"/>
|
|
156
|
+
<path fill="#fe9f11" d="m361.6 249.3 2 2z"/>
|
|
157
|
+
<path fill="#fdab33" d="m418.5 249.3 2 2z"/>
|
|
158
|
+
<path fill="#fcb144" d="m420.6 249.3 2 2z"/>
|
|
159
|
+
<path fill="#fbc477" d="m422.6 249.3 2 2z"/>
|
|
160
|
+
<path fill="#f9d6aa" d="m424.6 249.3 4 4z"/>
|
|
161
|
+
<path fill="#fef8f1" d="m426.6 249.3 2 2z"/>
|
|
162
|
+
<path fill="#fcb144" d="m359.6 251.3 2 2z"/>
|
|
163
|
+
<path fill="#fdab33" d="m388 251.3 2 2z"/>
|
|
164
|
+
<path fill="#fbc477" d="m390 251.3 2 2zm8 0 2.2 2-2-2z"/>
|
|
165
|
+
<path fill="#fea522" d="m400.2 251.3 2 2z"/>
|
|
166
|
+
<path fill="#fae3c9" d="m357.6 253.3 2 2z"/>
|
|
167
|
+
<path fill="#fcb144" d="m384 253.3 2 2z"/>
|
|
168
|
+
<path fill="#fae3c9" d="m386 253.3 2 2z"/>
|
|
169
|
+
<path fill="#f8dcbb" d="m402.2 253.3 2 2z"/>
|
|
170
|
+
<path fill="#fdab33" d="m404.3 253.3 2 2z"/>
|
|
171
|
+
<path fill="#fe9f11" d="m416.5 253.3 2 2z"/>
|
|
172
|
+
<path fill="#fcb755" d="m418.5 253.3 2 2z"/>
|
|
173
|
+
<path fill="#f9d099" d="m420.6 253.3 2 2z"/>
|
|
174
|
+
<path fill="#fbead6" d="m422.6 253.3 2 2z"/>
|
|
175
|
+
<path fill="#fcb144" d="m357.6 255.3 2 2z"/>
|
|
176
|
+
<path fill="#fbbe66" d="m382 255.3 2 2z"/>
|
|
177
|
+
<path fill="#f9d099" d="m406.3 255.3 2 2z"/>
|
|
178
|
+
<path fill="#fbead6" d="m414.4 255.3 2 2z"/>
|
|
179
|
+
<path fill="#fcf1e4" d="m355.6 257.4 2 2z"/>
|
|
180
|
+
<path fill="#fbbe66" d="m379.9 257.4 2 2z"/>
|
|
181
|
+
<path fill="#f9d099" d="m408.3 257.4 2 2z"/>
|
|
182
|
+
<path fill="#fae3c9" d="m414.4 257.4 2 2z"/>
|
|
183
|
+
<path fill="#fbc477" d="m355.6 259.4 2 2z"/>
|
|
184
|
+
<path fill="#fcb144" d="m377.9 259.4 2 2-2-2m32.5 0 2 2z"/>
|
|
185
|
+
<path fill="#fbbe66" d="m414.4 259.4 2 2z"/>
|
|
186
|
+
<path fill="#f6f6e4" d="m319 261.4 2 2z"/>
|
|
187
|
+
<path fill="#fea522" d="m355.6 261.4 2 2z"/>
|
|
188
|
+
<path fill="#fbead6" d="m377.9 261.4 2 2z"/>
|
|
189
|
+
<path fill="#fcf1e4" d="m410.4 261.4 2 2z"/>
|
|
190
|
+
<path fill="#fef8f1" d="m416.5 261.4 2 2z"/>
|
|
191
|
+
<path fill="#fcf1e4" d="m353.6 263.5 2 2z"/>
|
|
192
|
+
<path fill="#fbbe66" d="m375.9 263.5 2 2z"/>
|
|
193
|
+
<path fill="#faca88" d="m412.4 263.5 2 2z"/>
|
|
194
|
+
<path fill="#f9d099" d="m416.5 263.5 2 2z"/>
|
|
195
|
+
<path fill="#f9d6aa" d="m353.6 265.5 2 2z"/>
|
|
196
|
+
<path fill="#fcf1e4" d="m375.9 265.5 2 2z"/>
|
|
197
|
+
<path fill="#fae3c9" d="m386 265.5 2 2z"/>
|
|
198
|
+
<path fill="#fea522" d="m388 265.5 2 2z"/>
|
|
199
|
+
<path fill="#fcb144" d="m390 265.5 2 2z"/>
|
|
200
|
+
<path fill="#f9d6aa" d="m392 265.5 2 2z"/>
|
|
201
|
+
<path fill="#fef8f1" d="m412.4 265.5 2 2z"/>
|
|
202
|
+
<path fill="#fea522" d="m414.4 265.5 2 2z"/>
|
|
203
|
+
<path fill="#fdab33" d="m416.5 265.5 2 2z"/>
|
|
204
|
+
<path fill="#faca88" d="m353.6 267.5-2.1 6 2-6z"/>
|
|
205
|
+
<path fill="#fea522" d="m373.8 267.5 2 2z"/>
|
|
206
|
+
<path fill="#fef8f1" d="m375.9 267.5 2 2z"/>
|
|
207
|
+
<path fill="#f9d099" d="m386 267.5 2 2z"/>
|
|
208
|
+
<path fill="#fdab33" d="m394 267.5 2 2z"/>
|
|
209
|
+
<path fill="#fae3c9" d="m396.2 267.5 2 2z"/>
|
|
210
|
+
<path fill="#f8dcbb" d="m414.4 267.5 2 2z"/>
|
|
211
|
+
<path fill="#f90" d="m416.5 267.5 2 2z"/>
|
|
212
|
+
<path fill="#fbead6" d="m419.2 268.9.6 1.3z"/>
|
|
213
|
+
<path fill="#fea522" d="m377.9 269.5 2 2z"/>
|
|
214
|
+
<path fill="#fbbe66" d="m379.9 269.5 2 2z"/>
|
|
215
|
+
<path fill="#faca88" d="m382 269.5 2 2z"/>
|
|
216
|
+
<path fill="#fcb144" d="m384 269.5 2 2z"/>
|
|
217
|
+
<path fill="#fae3c9" d="m386 269.5 2 2z"/>
|
|
218
|
+
<path fill="#fe9f11" d="m388 269.5 2 2z"/>
|
|
219
|
+
<path fill="#fdab33" d="m398.2 269.5 2 2z"/>
|
|
220
|
+
<path fill="#fbc477" d="m400.2 269.5 2 2z"/>
|
|
221
|
+
<path fill="#faca88" d="m402.2 269.5 2 2z"/>
|
|
222
|
+
<path fill="#f9d6aa" d="m404.3 269.5 2 2z"/>
|
|
223
|
+
<path fill="#fae3c9" d="m407.6 270.2 1.4.7-1.3-.7z"/>
|
|
224
|
+
<path fill="#fef8f1" d="m410.4 269.5 2 2z"/>
|
|
225
|
+
<path fill="#fbc477" d="m416.5 269.5 2 2z"/>
|
|
226
|
+
<path fill="#fef8f1" d="m329.2 271.6 2 2z"/>
|
|
227
|
+
<path fill="#fcf1e4" d="m331.2 271.6 2 2z"/>
|
|
228
|
+
<path fill="#fcb755" d="m384 271.6 2 2z"/>
|
|
229
|
+
<path fill="#fbead6" d="m388 271.6 2 2z"/>
|
|
230
|
+
<path fill="#fea522" d="m390 271.6 2 2z"/>
|
|
231
|
+
<path fill="#fe9f11" d="m406.3 271.6 2 2z"/>
|
|
232
|
+
<path fill="#fcb144" d="m408.3 271.6-2 4z"/>
|
|
233
|
+
<path fill="#fe9f11" d="m412.4 271.6 2 2z"/>
|
|
234
|
+
<path fill="#fbbe66" d="m414.4 271.6 2 2z"/>
|
|
235
|
+
<path fill="#fcf1e4" d="m416.5 271.6 2 2z"/>
|
|
236
|
+
<path fill="#fae3c9" d="m329.2 273.6 2 2z"/>
|
|
237
|
+
<path fill="#fe9f11" d="m331.2 273.6 4 4z"/>
|
|
238
|
+
<path fill="#fbead6" d="m333.2 273.6 2 2zm18.3 0 2 2z"/>
|
|
239
|
+
<path fill="#fae3c9" d="m353.6 273.6 2 2z"/>
|
|
240
|
+
<path fill="#fe9f11" d="m371.8 273.6 2 2z"/>
|
|
241
|
+
<path fill="#fbc477" d="m373.8 273.6 2 2z"/>
|
|
242
|
+
<path fill="#fea522" d="m375.9 273.6 2 2z"/>
|
|
243
|
+
<path fill="#fbc477" d="m382 273.6 2 2z"/>
|
|
244
|
+
<path fill="#fef8f1" d="m384 273.6 2 2z"/>
|
|
245
|
+
<path fill="#fbc477" d="m392 273.6 2 2z"/>
|
|
246
|
+
<path fill="#fff" d="m408.3 273.6 2 2z"/>
|
|
247
|
+
<path fill="#fdab33" d="m410.4 273.6 2 2z"/>
|
|
248
|
+
<path fill="#fbc477" d="m418.5 273.6 2 2z"/>
|
|
249
|
+
<path fill="#fef8f1" d="m329.2 275.6 2 2z"/>
|
|
250
|
+
<path fill="#fbead6" d="m335.2 275.6 2 2z"/>
|
|
251
|
+
<path fill="#f9d6aa" d="m345.4 275.6 2 2z"/>
|
|
252
|
+
<path fill="#fe9f11" d="m355.6 275.6 2 2z"/>
|
|
253
|
+
<path fill="#f9d6aa" d="m358.9 276.3 1.4.7z"/>
|
|
254
|
+
<path fill="#f8dcbb" d="m371.8 275.6 2 2z"/>
|
|
255
|
+
<path fill="#fcf1e4" d="m377.9 275.6 2 2z"/>
|
|
256
|
+
<path fill="#f9d6aa" d="m394 275.6 2 2z"/>
|
|
257
|
+
<path fill="#fdab33" d="m408.3 275.6 2 2z"/>
|
|
258
|
+
<path fill="#fcb755" d="m420.6 275.6 2 2z"/>
|
|
259
|
+
<path fill="#fef8f1" d="m422.6 275.6 2 2z"/>
|
|
260
|
+
<path fill="#53527c" d="m312.9 277.7 2 2z"/>
|
|
261
|
+
<path fill="#fcb755" d="m331.2 277.7 2 2z"/>
|
|
262
|
+
<path fill="#fea522" d="m335.2 277.7 2 2z"/>
|
|
263
|
+
<path fill="#fbead6" d="m343.4 277.7 2 2z"/>
|
|
264
|
+
<path fill="#fe9f11" d="m347.4 277.7 2 2z"/>
|
|
265
|
+
<path fill="#fcf1e4" d="m349.5 277.7 2 2z"/>
|
|
266
|
+
<path fill="#fbbe66" d="m355.6 277.7 2 2z"/>
|
|
267
|
+
<path fill="#fbc477" d="m357.6 277.7 2 2z"/>
|
|
268
|
+
<path fill="#fbbe66" d="m359.6 277.7 2 2z"/>
|
|
269
|
+
<path fill="#fea522" d="m369.8 277.7 2 2z"/>
|
|
270
|
+
<path fill="#f9d6aa" d="m396.2 277.7 2 2z"/>
|
|
271
|
+
<path fill="#fcb144" d="m422.6 277.7 2 2z"/>
|
|
272
|
+
<path fill="#8d8d5b" d="m455 277.7 2 2z"/>
|
|
273
|
+
<path fill="#e5e3af" d="m319 279.7 2 2z"/>
|
|
274
|
+
<path fill="#f8dcbb" d="m331.2 279.7 2 2z"/>
|
|
275
|
+
<path fill="#fdab33" d="m337.3 279.7 2 2z"/>
|
|
276
|
+
<path fill="#fe9f11" d="m343.4 279.7 2 2z"/>
|
|
277
|
+
<path fill="#faca88" d="m347.4 279.7 2 2z"/>
|
|
278
|
+
<path fill="#fcf1e4" d="m355.6 279.7 2 2z"/>
|
|
279
|
+
<path fill="#f9d099" d="m369.8 279.7 2 2-2-2m28.4 0 2 2z"/>
|
|
280
|
+
<path fill="#fbbe66" d="m424.6 279.7 2 2z"/>
|
|
281
|
+
<path fill="#fea522" d="m333.2 281.7 2 2z"/>
|
|
282
|
+
<path fill="#fdab33" d="m339.3 281.7 2 2z"/>
|
|
283
|
+
<path fill="#fea522" d="m341.3 281.7 2 2z"/>
|
|
284
|
+
<path fill="#fe9f11" d="m345.4 281.7 2 2z"/>
|
|
285
|
+
<path fill="#fef8f1" d="m347.4 281.7 2 2z"/>
|
|
286
|
+
<path fill="#fbbe66" d="m357.6 281.7 2 2z"/>
|
|
287
|
+
<path fill="#fef8f1" d="m369.8 281.7 2 2z"/>
|
|
288
|
+
<path fill="#fbbe66" d="m400.2 281.7 2 2z"/>
|
|
289
|
+
<path fill="#f9d099" d="m426.6 281.7 2 2z"/>
|
|
290
|
+
<path fill="#f9d6aa" d="m333.2 283.8 2 2z"/>
|
|
291
|
+
<path fill="#f9d099" d="m345.4 283.8 2 2z"/>
|
|
292
|
+
<path fill="#fcf1e4" d="m357.6 283.8 2 2z"/>
|
|
293
|
+
<path fill="#fdab33" d="m367.7 283.8 2 2-2-2m34.5 0 2 2z"/>
|
|
294
|
+
<path fill="#fbead6" d="m428.6 283.8 2 2z"/>
|
|
295
|
+
<path fill="#fea522" d="m335.2 285.8 2 2z"/>
|
|
296
|
+
<path fill="#fe9f11" d="m343.4 285.8 2 2z"/>
|
|
297
|
+
<path fill="#fcb144" d="m359.6 285.8 2 2z"/>
|
|
298
|
+
<path fill="#faca88" d="m367.7 285.8 2 2z"/>
|
|
299
|
+
<path fill="#f8dcbb" d="m402.2 285.8 2 2z"/>
|
|
300
|
+
<path fill="#fcb144" d="m428.6 285.8 2 2z"/>
|
|
301
|
+
<path fill="#d3d079" d="m319 287.9 2 2z"/>
|
|
302
|
+
<path fill="#faca88" d="m335.2 287.9 2 2zm24.4 0 2 2z"/>
|
|
303
|
+
<path fill="#fae3c9" d="m367.7 287.9 2 2-2-2m34.5 0 2 2z"/>
|
|
304
|
+
<path fill="#f8dcbb" d="m430.6 287.9 2 2-2-2z"/>
|
|
305
|
+
<path fill="#f2f1d7" d="m448.9 287.9 2 2z"/>
|
|
306
|
+
<path fill="#58587b" d="m455.7 289.2.7 1.3z"/>
|
|
307
|
+
<path fill="#d9d868" d="m319.6 291.2.8 1.4-.7-1.4z"/>
|
|
308
|
+
<path fill="#f8dcbb" d="m335.2 289.9 2 2z"/>
|
|
309
|
+
<path fill="#f9d6aa" d="m400.2 289.9 2 2z"/>
|
|
310
|
+
<path fill="#fe9f11" d="m402.2 289.9 2 2z"/>
|
|
311
|
+
<path fill="#fcb144" d="m430.6 289.9 2 2-2-2z"/>
|
|
312
|
+
<path fill="#f2f1d2" d="m449.6 291.2.7 1.4z"/>
|
|
313
|
+
<path fill="#fcf1e4" d="m335.2 291.9 2 2z"/>
|
|
314
|
+
<path fill="#fef8f1" d="m398.2 291.9 2 2z"/>
|
|
315
|
+
<path fill="#fe9f11" d="m400.2 291.9 2 2z"/>
|
|
316
|
+
<path fill="#fdab33" d="m406.3 291.9-2 4z"/>
|
|
317
|
+
<path fill="#fcb755" d="m408.3 291.9 2 2z"/>
|
|
318
|
+
<path fill="#fea522" d="m432.7 291.9 2 2z"/>
|
|
319
|
+
<path fill="#f9d099" d="m434.7 291.9 2 2z"/>
|
|
320
|
+
<path fill="#53527c" d="m455 291.9 2 2z"/>
|
|
321
|
+
<path fill="#808067" d="m315.6 295.3.7 1.3z"/>
|
|
322
|
+
<path fill="#fea522" d="m337.3 293.9 2 2-2-2m6 0 2 2-2-2z"/>
|
|
323
|
+
<path fill="#fe9f11" d="m365.7 293.9 2 2z"/>
|
|
324
|
+
<path fill="#fae3c9" d="m398.2 293.9 2 2z"/>
|
|
325
|
+
<path fill="#fef8f1" d="m406.3 293.9 2 2z"/>
|
|
326
|
+
<path fill="#fcb144" d="m410.4 293.9 2 2z"/>
|
|
327
|
+
<path fill="#fcb755" d="m436.8 293.9 2 2z"/>
|
|
328
|
+
<path fill="#fef8f1" d="m438.8 293.9 4 4z"/>
|
|
329
|
+
<path fill="#e5e59d" d="m449.6 295.3.7 1.3z"/>
|
|
330
|
+
<path fill="#32327b" d="m455.7 295.3.7 1.3z"/>
|
|
331
|
+
<path fill="#fcb755" d="m338 297.3.6 1.4z"/>
|
|
332
|
+
<path fill="#fef8f1" d="m345.4 295.9 2 2z"/>
|
|
333
|
+
<path fill="#fbbe66" d="m365.7 295.9 2 2z"/>
|
|
334
|
+
<path fill="#fbead6" d="m398.2 295.9 2 2z"/>
|
|
335
|
+
<path fill="#fe9f11" d="m402.2 295.9 2 2z"/>
|
|
336
|
+
<path fill="#fcf1e4" d="m404.3 295.9 2 2z"/>
|
|
337
|
+
<path fill="#fbead6" d="m410.4 295.9 2 2z"/>
|
|
338
|
+
<path fill="#fdab33" d="m438.8 295.9 2 2z"/>
|
|
339
|
+
<path fill="#667" d="m315 297.9 2 2-2-2z"/>
|
|
340
|
+
<path fill="#f6f6e4" d="m321 297.9 2 2-2-2z"/>
|
|
341
|
+
<path fill="#f9d6aa" d="m345.4 297.9 2 2-2-2z"/>
|
|
342
|
+
<path fill="#fdab33" d="m361.6 297.9 2 2-2-2z"/>
|
|
343
|
+
<path fill="#fe9f11" d="m363.6 297.9 2 2-2-2z"/>
|
|
344
|
+
<path fill="#fcf1e4" d="m365.7 297.9 2 2-2-2z"/>
|
|
345
|
+
<path fill="#fea522" d="m400.2 297.9 2 2-2-2z"/>
|
|
346
|
+
<path fill="#faca88" d="m402.2 297.9 2 2-2-2m10.2 0 2 2z"/>
|
|
347
|
+
<path fill="#fcb144" d="m440.8 297.9 2 2-2-2z"/>
|
|
348
|
+
<path fill="#dddc7a" d="m448.9 297.9 2 2-2-2z"/>
|
|
349
|
+
<path fill="#58587b" d="m315 300 2 2z"/>
|
|
350
|
+
<path fill="#f2f1d2" d="m321 300 2 2z"/>
|
|
351
|
+
<path fill="#fcb144" d="m338 301.4.6 1.3z"/>
|
|
352
|
+
<path fill="#fea522" d="m345.4 300 2 2z"/>
|
|
353
|
+
<path fill="#fef8f1" d="m365.7 300 2 2z"/>
|
|
354
|
+
<path fill="#fea522" d="m367.7 300 2 2z"/>
|
|
355
|
+
<path fill="#fcb144" d="m371.8 300 2 2z"/>
|
|
356
|
+
<path fill="#fbead6" d="m373.8 300 2 2z"/>
|
|
357
|
+
<path fill="#f8dcbb" d="m400.2 300 2 2z"/>
|
|
358
|
+
<path fill="#fcf1e4" d="m402.2 300 2 2z"/>
|
|
359
|
+
<path fill="#fef8f1" d="m412.4 300 2 2z"/>
|
|
360
|
+
<path fill="#fe9f11" d="m414.4 300 2 2z"/>
|
|
361
|
+
<path fill="#fbead6" d="m442.9 300 2 2z"/>
|
|
362
|
+
<path fill="#d9d868" d="m448.9 300 2 2z"/>
|
|
363
|
+
<path fill="#3a3a7c" d="m315 302 2 2z"/>
|
|
364
|
+
<path fill="#e5e3af" d="m321 302 2 2z"/>
|
|
365
|
+
<path fill="#faca88" d="m347.4 302 2 2z"/>
|
|
366
|
+
<path fill="#fbead6" d="m367.7 302 2 2z"/>
|
|
367
|
+
<path fill="#fe9f11" d="m373.8 302 2 2z"/>
|
|
368
|
+
<path fill="#fcf1e4" d="m375.9 302 2 2z"/>
|
|
369
|
+
<path fill="#fbead6" d="m398.2 302 2 2z"/>
|
|
370
|
+
<path fill="#fae3c9" d="m400.2 302 2 2z"/>
|
|
371
|
+
<path fill="#fbead6" d="m402.2 302 2 2z"/>
|
|
372
|
+
<path fill="#fbbe66" d="m414.4 302 2 2-2-2m16.3 0 2 2z"/>
|
|
373
|
+
<path fill="#fcf1e4" d="m432.7 302 2 2z"/>
|
|
374
|
+
<path fill="#fef8f1" d="m434.7 302 2 2z"/>
|
|
375
|
+
<path fill="#f8dcbb" d="m436.8 302 2 2z"/>
|
|
376
|
+
<path fill="#fcb755" d="m438.8 302 2 2z"/>
|
|
377
|
+
<path fill="#fae3c9" d="m442.9 302 2 2z"/>
|
|
378
|
+
<path fill="#808067" d="m453 302 2 2z"/>
|
|
379
|
+
<path fill="#32327b" d="m315 304 2 2z"/>
|
|
380
|
+
<path fill="#a4a43d" d="m317.6 305.4.7 1.4-.6-1.4z"/>
|
|
381
|
+
<path fill="#e5e59d" d="m321 304 2 2z"/>
|
|
382
|
+
<path fill="#fbc477" d="m337.3 304 2 2z"/>
|
|
383
|
+
<path fill="#f9d6aa" d="m349.5 304 2 2z"/>
|
|
384
|
+
<path fill="#fbbe66" d="m369.8 304 2 2z"/>
|
|
385
|
+
<path fill="#f9d099" d="m375.9 304 2 2z"/>
|
|
386
|
+
<path fill="#fae3c9" d="m394 304 2 2z"/>
|
|
387
|
+
<path fill="#fcb144" d="m396.2 304 2 2z"/>
|
|
388
|
+
<path fill="#fae3c9" d="m404.3 304 2 2z"/>
|
|
389
|
+
<path fill="#f8dcbb" d="m414.4 304 2 2z"/>
|
|
390
|
+
<path fill="#f9d099" d="m430.6 304 2 2-2-2z"/>
|
|
391
|
+
<path fill="#fbc477" d="m440.8 304 2 2z"/>
|
|
392
|
+
<path fill="#fbead6" d="m442.9 304 2 2z"/>
|
|
393
|
+
<path fill="#737370" d="m453 304 2 2z"/>
|
|
394
|
+
<path fill="#d9d868" d="m321 306 2 2z"/>
|
|
395
|
+
<path fill="#f9d099" d="m337.3 306 2 2z"/>
|
|
396
|
+
<path fill="#f9d6aa" d="m351.5 306 2 2-2-2m18.3 0 2 2z"/>
|
|
397
|
+
<path fill="#fbc477" d="m375.9 306 2 2z"/>
|
|
398
|
+
<path fill="#fef8f1" d="m386 306 2 2z"/>
|
|
399
|
+
<path fill="#f8dcbb" d="m388 306 2 2z"/>
|
|
400
|
+
<path fill="#fbc477" d="m390 306 2 2z"/>
|
|
401
|
+
<path fill="#fea522" d="m392 306 2 2z"/>
|
|
402
|
+
<path fill="#fbead6" d="m404.3 306 2 2z"/>
|
|
403
|
+
<path fill="#f2f1d2" d="m446.9 306 2 2z"/>
|
|
404
|
+
<path fill="#58587b" d="m453 306 2 2z"/>
|
|
405
|
+
<path fill="#99994e" d="m317 308 2 2z"/>
|
|
406
|
+
<path fill="#d0d045" d="m321 308 2 2z"/>
|
|
407
|
+
<path fill="#fcb144" d="m353.6 308 2 2z"/>
|
|
408
|
+
<path fill="#fae3c9" d="m355.6 308 2 2z"/>
|
|
409
|
+
<path fill="#fef8f1" d="m369.8 308 2 2z"/>
|
|
410
|
+
<path fill="#fcb755" d="m377.9 308 2 2z"/>
|
|
411
|
+
<path fill="#fbc477" d="m379.9 308 2 2z"/>
|
|
412
|
+
<path fill="#fcb144" d="m382 308 2 2z"/>
|
|
413
|
+
<path fill="#fea522" d="m384 308 2 2z"/>
|
|
414
|
+
<path fill="#fe9f11" d="m400.2 308 2 2z"/>
|
|
415
|
+
<path fill="#f9d6aa" d="m402.2 308 2 2z"/>
|
|
416
|
+
<path fill="#fef8f1" d="m430.6 308 2 2-2-2z"/>
|
|
417
|
+
<path fill="#e0dea1" d="m446.9 308 2 2z"/>
|
|
418
|
+
<path fill="#3a3a7c" d="m453 308 2 2z"/>
|
|
419
|
+
<path fill="#737370" d="m317 310.2 2 2z"/>
|
|
420
|
+
<path fill="#fbfaf2" d="m323 310.2 2 2z"/>
|
|
421
|
+
<path fill="#fea522" d="m339.3 310.2 2 2z"/>
|
|
422
|
+
<path fill="#fe9f11" d="m357.6 310.2 2 2z"/>
|
|
423
|
+
<path fill="#fcb144" d="m359.6 310.2 2 2z"/>
|
|
424
|
+
<path fill="#fbc477" d="m361.6 310.2 2 2z"/>
|
|
425
|
+
<path fill="#faca88" d="m363.6 310.2 2 2-2-2z"/>
|
|
426
|
+
<path fill="#fbc477" d="m365.7 310.2 2 2z"/>
|
|
427
|
+
<path fill="#fcb144" d="m367.7 310.2 2 2z"/>
|
|
428
|
+
<path fill="#fdab33" d="m369.8 310.2 2 2z"/>
|
|
429
|
+
<path fill="#fbc477" d="m398.2 310.2 2 2z"/>
|
|
430
|
+
<path fill="#fef8f1" d="m400.2 310.2 2 2z"/>
|
|
431
|
+
<path fill="#fdab33" d="m428.6 310.2 2 2z"/>
|
|
432
|
+
<path fill="#e1e18c" d="m446.9 310.2 2 2z"/>
|
|
433
|
+
<path fill="#a4a43d" d="m451.6 311.5.7 1.4z"/>
|
|
434
|
+
<path fill="#262678" d="m453 310.2 2 2z"/>
|
|
435
|
+
<path fill="#58587b" d="m317 312.2 2 2z"/>
|
|
436
|
+
<path fill="#f2f1d2" d="m323 312.2 2 2z"/>
|
|
437
|
+
<path fill="#faca88" d="m339.3 312.2 2 2z"/>
|
|
438
|
+
<path fill="#fe9f11" d="m394 312.2 2 2z"/>
|
|
439
|
+
<path fill="#fbead6" d="m396.2 312.2 2 2z"/>
|
|
440
|
+
<path fill="#fbc477" d="m414.4 312.2 2 2z"/>
|
|
441
|
+
<path fill="#faca88" d="m428.6 312.2 2 2z"/>
|
|
442
|
+
<path fill="#d4d456" d="m446.9 312.2 2 2z"/>
|
|
443
|
+
<path fill="#32327b" d="m317 314.2 2 2z"/>
|
|
444
|
+
<path fill="#e5e59d" d="m323 314.2 2 2z"/>
|
|
445
|
+
<path fill="#fef8f1" d="m339.3 314.2 2 2z"/>
|
|
446
|
+
<path fill="#fe9f11" d="m341.3 314.2 2 2z"/>
|
|
447
|
+
<path fill="#fbead6" d="m394 314.2 2 2z"/>
|
|
448
|
+
<path fill="#fea522" d="m414.4 314.2 2 2z"/>
|
|
449
|
+
<path fill="#fcf1e4" d="m428.6 314.2 2 2z"/>
|
|
450
|
+
<path fill="#808067" d="m451 314.2 2 2z"/>
|
|
451
|
+
<path fill="#0e0e6e" d="m317 316.2 2 2z"/>
|
|
452
|
+
<path fill="#a4a43d" d="m319 316.2 2 2z"/>
|
|
453
|
+
<path fill="#d9d868" d="m323 316.2 2 2z"/>
|
|
454
|
+
<path fill="#f8dcbb" d="m341.3 316.2 2 2z"/>
|
|
455
|
+
<path fill="#f9d6aa" d="m412.4 316.2 2 2z"/>
|
|
456
|
+
<path fill="#faca88" d="m426.6 316.2 2 2z"/>
|
|
457
|
+
<path fill="#f2f1d2" d="m444.9 316.2 2 2z"/>
|
|
458
|
+
<path fill="#58587b" d="m451 316.2 2 2z"/>
|
|
459
|
+
<path fill="#8d8d5b" d="m319 318.3 2 2z"/>
|
|
460
|
+
<path fill="#f9d6aa" d="m343.4 318.3 2 2z"/>
|
|
461
|
+
<path fill="#fdab33" d="m384 318.3 2 2z"/>
|
|
462
|
+
<path fill="#fff" d="m386 318.3 2 2z"/>
|
|
463
|
+
<path fill="#fcb144" d="m389.4 318.9 1.4.7z"/>
|
|
464
|
+
<path fill="#fef8f1" d="m410.4 318.3-2 4z"/>
|
|
465
|
+
<path fill="#fe9f11" d="m412.4 318.3 2 2z"/>
|
|
466
|
+
<path fill="#fdab33" d="m424.6 318.3-2 4z"/>
|
|
467
|
+
<path fill="#e5e59d" d="m444.9 318.3 2 2z"/>
|
|
468
|
+
<path fill="#3a3a7c" d="m451 318.3 2 2z"/>
|
|
469
|
+
<path fill="#667" d="m319 320.3 2 2z"/>
|
|
470
|
+
<path fill="#f2f1d2" d="m325 320.3 2 2z"/>
|
|
471
|
+
<path fill="#f9d6aa" d="m345.4 320.3 2 2z"/>
|
|
472
|
+
<path fill="#fe9f11" d="m384 320.3 2 2z"/>
|
|
473
|
+
<path fill="#faca88" d="m386 320.3 2 2z"/>
|
|
474
|
+
<path fill="#fea522" d="m388 320.3 2 2z"/>
|
|
475
|
+
<path fill="#fcf1e4" d="m390 320.3 2 2z"/>
|
|
476
|
+
<path fill="#fdab33" d="m410.4 320.3 2 2z"/>
|
|
477
|
+
<path fill="#fef8f1" d="m424.6 320.3 2 2z"/>
|
|
478
|
+
<path fill="#d9d868" d="m444.9 320.3 2 2z"/>
|
|
479
|
+
<path fill="#a4a43d" d="m448.9 320.3 2 2z"/>
|
|
480
|
+
<path fill="#0e0e6e" d="m451 320.3 2 2z"/>
|
|
481
|
+
<path fill="#3a3a7c" d="m319 322.3 2 2z"/>
|
|
482
|
+
<path fill="#e5e59d" d="m325 322.3 2 2z"/>
|
|
483
|
+
<path fill="#fae3c9" d="m347.4 322.3 4 4z"/>
|
|
484
|
+
<path fill="#fe9f11" d="m349.5 322.3 2 2z"/>
|
|
485
|
+
<path fill="#f8dcbb" d="m388 322.3 2 2z"/>
|
|
486
|
+
<path fill="#fcf1e4" d="m406.3 322.3 2 2z"/>
|
|
487
|
+
<path fill="#fdab33" d="m408.3 322.3 2 2z"/>
|
|
488
|
+
<path fill="#fcb144" d="m420.6 322.3 2 2z"/>
|
|
489
|
+
<path fill="#fef8f1" d="m422.6 322.3 2 2z"/>
|
|
490
|
+
<path fill="#fbfaf2" d="m442.9 322.3 2 2z"/>
|
|
491
|
+
<path fill="#8d8d5b" d="m448.9 322.3 2 2z"/>
|
|
492
|
+
<path fill="#0e0e6e" d="m319 324.4 2 2z"/>
|
|
493
|
+
<path fill="#a4a43d" d="m321 324.4 2 2z"/>
|
|
494
|
+
<path fill="#d4d456" d="m325 324.4 2 2z"/>
|
|
495
|
+
<path fill="#f9d6aa" d="m386 324.4 2 2z"/>
|
|
496
|
+
<path fill="#f9d099" d="m404.3 324.4 2 2z"/>
|
|
497
|
+
<path fill="#fe9f11" d="m406.3 324.4 2 2z"/>
|
|
498
|
+
<path fill="#faca88" d="m418.5 324.4 2 2z"/>
|
|
499
|
+
<path fill="#eeedc1" d="m442.9 324.4 2 2z"/>
|
|
500
|
+
<path fill="#58587b" d="m448.9 324.4 2 2z"/>
|
|
501
|
+
<path fill="#737370" d="m321 326.4 2 2z"/>
|
|
502
|
+
<path fill="#f6f6e4" d="m327 326.4 2 2z"/>
|
|
503
|
+
<path fill="#fbbe66" d="m349.5 326.4 2 2z"/>
|
|
504
|
+
<path fill="#fcb144" d="m382 326.4 2 2z"/>
|
|
505
|
+
<path fill="#f8dcbb" d="m384.6 327.8.7 1.3z"/>
|
|
506
|
+
<path fill="#fbbe66" d="m400.2 326.4 2 2z"/>
|
|
507
|
+
<path fill="#fe9f11" d="m402.2 326.4 2 2z"/>
|
|
508
|
+
<path fill="#fbc477" d="m414.4 326.4 2 2z"/>
|
|
509
|
+
<path fill="#fcf1e4" d="m416.5 326.4 2 2z"/>
|
|
510
|
+
<path fill="#d3d079" d="m442.9 326.4 2 2z"/>
|
|
511
|
+
<path fill="#a4a43d" d="m446.9 326.4 2 2z"/>
|
|
512
|
+
<path fill="#262678" d="m448.9 326.4 2 2z"/>
|
|
513
|
+
<path fill="#49497d" d="m321 328.4 2 2z"/>
|
|
514
|
+
<path fill="#e0dea1" d="m327 328.4 2 2z"/>
|
|
515
|
+
<path fill="#fae3c9" d="m347.4 328.4 2 2z"/>
|
|
516
|
+
<path fill="#fdab33" d="m375.9 328.4 2 2z"/>
|
|
517
|
+
<path fill="#fbc477" d="m377.9 328.4 2 2z"/>
|
|
518
|
+
<path fill="#fbead6" d="m379.9 328.4 2 2z"/>
|
|
519
|
+
<path fill="#fcb144" d="m386 328.4 2 2z"/>
|
|
520
|
+
<path fill="#f9d6aa" d="m412.4 328.4 2 2z"/>
|
|
521
|
+
<path fill="#99994e" d="m446.9 328.4 2 2z"/>
|
|
522
|
+
<path fill="#0e0e6e" d="m321 330.5 2 2z"/>
|
|
523
|
+
<path fill="#a4a43d" d="m323 330.5 2 2z"/>
|
|
524
|
+
<path fill="#d4d456" d="m327 330.5 2 2z"/>
|
|
525
|
+
<path fill="#f9d099" d="m345.4 330.5 2 2z"/>
|
|
526
|
+
<path fill="#fe9f11" d="m347.4 330.5 2 2-2-2m10.2 0 2 2z"/>
|
|
527
|
+
<path fill="#f9d6aa" d="m359.6 330.5 2 2z"/>
|
|
528
|
+
<path fill="#f9d099" d="m361.6 330.5 2 2z"/>
|
|
529
|
+
<path fill="#f9d6aa" d="m369.8 330.5 2 2z"/>
|
|
530
|
+
<path fill="#fae3c9" d="m371.8 330.5 2 2z"/>
|
|
531
|
+
<path fill="#fef8f1" d="m373.8 330.5 2 2z"/>
|
|
532
|
+
<path fill="#fbead6" d="m390 330.5 2 2z"/>
|
|
533
|
+
<path fill="#fae3c9" d="m392 330.5 2 2z"/>
|
|
534
|
+
<path fill="#faca88" d="m394 330.5 2 2z"/>
|
|
535
|
+
<path fill="#fbc477" d="m396.2 330.5 2 2z"/>
|
|
536
|
+
<path fill="#fdab33" d="m398.2 330.5 2 2z"/>
|
|
537
|
+
<path fill="#fe9f11" d="m408.3 330.5 2 2z"/>
|
|
538
|
+
<path fill="#f9d6aa" d="m410.4 330.5 2 2z"/>
|
|
539
|
+
<path fill="#e5e3af" d="m440.8 330.5 2 2z"/>
|
|
540
|
+
<path fill="#667" d="m446.9 330.5 2 2z"/>
|
|
541
|
+
<path fill="#737370" d="m323 332.5 2 2z"/>
|
|
542
|
+
<path fill="#f2f1d7" d="m329.2 332.5 2 2z"/>
|
|
543
|
+
<path fill="#fea522" d="m343.4 332.5 2 2z"/>
|
|
544
|
+
<path fill="#fe9f11" d="m353.6 332.5 2 2z"/>
|
|
545
|
+
<path fill="#fbbe66" d="m355.6 332.5 2 2z"/>
|
|
546
|
+
<path fill="#fcf1e4" d="m357.6 332.5 2 2z"/>
|
|
547
|
+
<path fill="#fea522" d="m406.3 332.5 2 2z"/>
|
|
548
|
+
<path fill="#fbead6" d="m408.3 332.5 2 2z"/>
|
|
549
|
+
<path fill="#dddc7a" d="m440.8 332.5 2 2z"/>
|
|
550
|
+
<path fill="#a4a43d" d="m444.9 332.5 2 2z"/>
|
|
551
|
+
<path fill="#262678" d="m446.9 332.5 2 2z"/>
|
|
552
|
+
<path fill="#49497d" d="m323 334.5 2 2z"/>
|
|
553
|
+
<path fill="#a4a43d" d="m325.8 335.9.7 1.3z"/>
|
|
554
|
+
<path fill="#d3d079" d="m329.2 334.5 2 2z"/>
|
|
555
|
+
<path fill="#f9d099" d="m345.4 334.5 2 2z"/>
|
|
556
|
+
<path fill="#fcb144" d="m347.4 334.5 2 2z"/>
|
|
557
|
+
<path fill="#faca88" d="m349.5 334.5 2 2z"/>
|
|
558
|
+
<path fill="#f8dcbb" d="m351.5 334.5 2 2z"/>
|
|
559
|
+
<path fill="#fef8f1" d="m353.6 334.5 2 2z"/>
|
|
560
|
+
<path fill="#f8dcbb" d="m398.2 334.5 2 2z"/>
|
|
561
|
+
<path fill="#fcf1e4" d="m406.3 334.5 2 2z"/>
|
|
562
|
+
<path fill="#f6f6e4" d="m438.8 334.5 2 2z"/>
|
|
563
|
+
<path fill="#8d8d5b" d="m444.9 334.5 2 2z"/>
|
|
564
|
+
<path fill="#fbfaf2" d="m331.2 336.5 2 2z"/>
|
|
565
|
+
<path fill="#fbbe66" d="m398.2 336.5 2 2z"/>
|
|
566
|
+
<path fill="#faca88" d="m404.3 336.5 2 2z"/>
|
|
567
|
+
<path fill="#e1e18c" d="m438.8 336.5 2 2z"/>
|
|
568
|
+
<path fill="#49497d" d="m444.9 336.5 2 2z"/>
|
|
569
|
+
<path fill="#58587b" d="m325 338.6 2 2z"/>
|
|
570
|
+
<path fill="#e5e59d" d="m331.2 338.6 2 2z"/>
|
|
571
|
+
<path fill="#fe9f11" d="m398.2 338.6 2 2z"/>
|
|
572
|
+
<path fill="#fdab33" d="m402.2 338.6 2 2z"/>
|
|
573
|
+
<path fill="#fbfaf2" d="m436.8 338.6 2 2z"/>
|
|
574
|
+
<path fill="#a4a43d" d="m442.9 338.6 2 2z"/>
|
|
575
|
+
<path fill="#0e0e6e" d="m444.9 338.6 2 2z"/>
|
|
576
|
+
<path fill="#1b1b74" d="m325 340.6 2 2z"/>
|
|
577
|
+
<path fill="#a4a43d" d="m327 340.6 2 2z"/>
|
|
578
|
+
<path fill="#d0d045" d="m331.2 340.6 2 2z"/>
|
|
579
|
+
<path fill="#fbead6" d="m396.2 340.6 2 2z"/>
|
|
580
|
+
<path fill="#fe9f11" d="m400.2 340.6 2 2z"/>
|
|
581
|
+
<path fill="#fbead6" d="m402.2 340.6 2 2z"/>
|
|
582
|
+
<path fill="#e5e59d" d="m436.8 340.6 2 2z"/>
|
|
583
|
+
<path fill="#667" d="m442.9 340.6 2 2z"/>
|
|
584
|
+
<path fill="#6e6c70" d="m327 342.6 2 2z"/>
|
|
585
|
+
<path fill="#e5e3af" d="m333.2 342.6 2 2z"/>
|
|
586
|
+
<path fill="#faca88" d="m396.8 344 .7 1.4z"/>
|
|
587
|
+
<path fill="#fae3c9" d="m400.2 342.6 2 2z"/>
|
|
588
|
+
<path fill="#fbfaf2" d="m434.7 342.6 2 2z"/>
|
|
589
|
+
<path fill="#a4a43d" d="m440.8 342.6 2 2z"/>
|
|
590
|
+
<path fill="#1b1b74" d="m442.9 342.6 2 2-2-2m-115.8 2 2 2z"/>
|
|
591
|
+
<path fill="#a4a43d" d="m329.2 344.7 2 2z"/>
|
|
592
|
+
<path fill="#d0d045" d="m333.2 344.7 2 2z"/>
|
|
593
|
+
<path fill="#fbfaf2" d="m335.2 344.7 2 2z"/>
|
|
594
|
+
<path fill="#f9d6aa" d="m398.2 344.7 2 2z"/>
|
|
595
|
+
<path fill="#e5e59d" d="m434.7 344.7 2 2z"/>
|
|
596
|
+
<path fill="#6e6c70" d="m440.8 344.7 2 2-2-2m-111.6 2 2 2z"/>
|
|
597
|
+
<path fill="#8cbf84" d="m335.2 346.7 2 2z"/>
|
|
598
|
+
<path fill="#0cf" d="M336 346.7c7 14.8 32 49.8 51 49.2 18.7-.7 39.6-35 47.7-49.2z"/>
|
|
599
|
+
<path fill="#a4a43d" d="m438.8 346.7 2 2z"/>
|
|
600
|
+
<path fill="#1b1b74" d="m440.8 346.7 2 2-2-2m-111.6 2 2 2z"/>
|
|
601
|
+
<path fill="#a4a43d" d="m331.2 348.7 2 2z"/>
|
|
602
|
+
<path fill="#adb333" d="m335.2 348.7 2 2z"/>
|
|
603
|
+
<path fill="#1ac5b5" d="m337.3 348.7 2 2z"/>
|
|
604
|
+
<path fill="#68b070" d="m432.7 348.7 2 2z"/>
|
|
605
|
+
<path fill="#667" d="m438.8 348.7 2 2z"/>
|
|
606
|
+
<path fill="#58587b" d="m331.2 350.8 2 2z"/>
|
|
607
|
+
<path fill="#7fb15c" d="m337.3 350.8 2 2z"/>
|
|
608
|
+
<path fill="#27c2aa" d="m430.6 350.8 2 2-2-2z"/>
|
|
609
|
+
<path fill="#a4a43d" d="m436.8 350.8-2 4z"/>
|
|
610
|
+
<path fill="#0e0e6e" d="m438.8 350.8 2 2-2-2m-107.6 2 2 2z"/>
|
|
611
|
+
<path fill="#a4a43d" d="m333.2 352.8 4 4z"/>
|
|
612
|
+
<path fill="#34be9e" d="m339.3 352.8 2 2z"/>
|
|
613
|
+
<path fill="#96b247" d="m430.6 352.8 2 2-2-2z"/>
|
|
614
|
+
<path fill="#53527c" d="m436.8 352.8 2 2z"/>
|
|
615
|
+
<path fill="#3a3a7c" d="m333.2 354.9 2 2z"/>
|
|
616
|
+
<path fill="#a2b23d" d="m339.3 354.9 2 2z"/>
|
|
617
|
+
<path fill="#0dc9c1" d="m341.3 354.9 2 2z"/>
|
|
618
|
+
<path fill="#5bb47c" d="m428.6 354.9 2 2z"/>
|
|
619
|
+
<path fill="#8d8d5b" d="m434.7 354.9 2 2z"/>
|
|
620
|
+
<path fill="#737370" d="m335.2 356.9 2 2z"/>
|
|
621
|
+
<path fill="#74b166" d="m341.3 356.9 2 2z"/>
|
|
622
|
+
<path fill="#27c2aa" d="m426.6 356.9 2 2z"/>
|
|
623
|
+
<path fill="#a4a43d" d="m432.7 356.9-2 4z"/>
|
|
624
|
+
<path fill="#262678" d="m434.7 356.9 2 2z"/>
|
|
625
|
+
<path fill="#0e0e6e" d="m335.2 358.9 2 2z"/>
|
|
626
|
+
<path fill="#a4a43d" d="m337.3 358.9 4 4z"/>
|
|
627
|
+
<path fill="#42bb92" d="m343.4 358.9 2 2z"/>
|
|
628
|
+
<path fill="#0dc9c1" d="m424.6 358.9 2 2z"/>
|
|
629
|
+
<path fill="#96b247" d="m426.6 358.9 2 2z"/>
|
|
630
|
+
<path fill="#58587b" d="m432.7 358.9 2 2z"/>
|
|
631
|
+
<path fill="#3a3a7c" d="m337.3 360.9 2 2z"/>
|
|
632
|
+
<path fill="#adb333" d="m343.4 360.9 2 2z"/>
|
|
633
|
+
<path fill="#27c2aa" d="m345.4 360.9 2 2z"/>
|
|
634
|
+
<path fill="#74b166" d="m424.6 360.9 2 2z"/>
|
|
635
|
+
<path fill="#8d8d5b" d="m430.6 360.9 2 2-2-2z"/>
|
|
636
|
+
<path fill="#6e6c70" d="m339.3 362.9 2 2z"/>
|
|
637
|
+
<path fill="#96b247" d="m345.4 362.9 2 2z"/>
|
|
638
|
+
<path fill="#0dc9c1" d="m347.4 362.9 2 2z"/>
|
|
639
|
+
<path fill="#42bb92" d="m422.6 362.9 2 2z"/>
|
|
640
|
+
<path fill="#a4a43d" d="m428.6 362.9-4 6 4-6z"/>
|
|
641
|
+
<path fill="#1b1b74" d="m430.6 362.9 2 2-2-2z"/>
|
|
642
|
+
<path fill="#0e0e6e" d="m339.3 364.9 2 2-2-2z"/>
|
|
643
|
+
<path fill="#8d8d5b" d="m341.3 364.9 2 2-2-2z"/>
|
|
644
|
+
<path fill="#7fb15c" d="m347.4 364.9 2 2-2-2z"/>
|
|
645
|
+
<path fill="#34be9e" d="m420.6 364.9 2 2-2-2z"/>
|
|
646
|
+
<path fill="#3a3a7c" d="m428.6 364.9 2 2-2-2z"/>
|
|
647
|
+
<path fill="#1b1b74" d="m341.3 367 2 2z"/>
|
|
648
|
+
<path fill="#a4a43d" d="m343.4 367 22.3 22.3z"/>
|
|
649
|
+
<path fill="#74b166" d="m349.5 367 2 2z"/>
|
|
650
|
+
<path fill="#27c2aa" d="m418.5 367 2 2z"/>
|
|
651
|
+
<path fill="#adb333" d="m420.6 367 2 2z"/>
|
|
652
|
+
<path fill="#667" d="m426.6 367 2 2z"/>
|
|
653
|
+
<path fill="#32327b" d="m343.4 369 2 2z"/>
|
|
654
|
+
<path fill="#42bb92" d="m351.5 369 2 2z"/>
|
|
655
|
+
<path fill="#0dc9c1" d="m416.5 369-8.2 10.2 8.3-10.3z"/>
|
|
656
|
+
<path fill="#adb333" d="m418.5 369 2 2z"/>
|
|
657
|
+
<path fill="#737370" d="m424.6 369 2 2z"/>
|
|
658
|
+
<path fill="#49497d" d="m345.4 371 2 2z"/>
|
|
659
|
+
<path fill="#42bb92" d="m353.6 371 2 2z"/>
|
|
660
|
+
<path fill="#96b247" d="m416.5 371 2 2z"/>
|
|
661
|
+
<path fill="#8d8d5b" d="m422.6 371-2 4z"/>
|
|
662
|
+
<path fill="#0e0e6e" d="m424.6 371 2 2z"/>
|
|
663
|
+
<path fill="#53527c" d="m347.4 373 2 2z"/>
|
|
664
|
+
<path fill="#42bb92" d="m355.6 373 2 2z"/>
|
|
665
|
+
<path fill="#96b247" d="m414.4 373 2 2z"/>
|
|
666
|
+
<path fill="#0e0e6e" d="m422.6 373 2 2z"/>
|
|
667
|
+
<path fill="#6e6c70" d="m349.5 375 2 2z"/>
|
|
668
|
+
<path fill="#42bb92" d="m357.6 375 2 2z"/>
|
|
669
|
+
<path fill="#96b247" d="m412.4 375 2 2z"/>
|
|
670
|
+
<path fill="#a4a43d" d="m418.5 375-4 6.2 4-6z"/>
|
|
671
|
+
<path fill="#262678" d="m420.6 375 2 2z"/>
|
|
672
|
+
<path fill="#6e6c70" d="m351.5 377.2 2 2z"/>
|
|
673
|
+
<path fill="#42bb92" d="m359.6 377.2 2 2z"/>
|
|
674
|
+
<path fill="#96b247" d="m410.4 377.2 2 2z"/>
|
|
675
|
+
<path fill="#262678" d="m418.5 377.2 2 2z"/>
|
|
676
|
+
<path fill="#6e6c70" d="m353.6 379.2 2 2z"/>
|
|
677
|
+
<path fill="#68b070" d="m361.6 379.2 2 2z"/>
|
|
678
|
+
<path fill="#27c2aa" d="m406.3 379.2 2 2z"/>
|
|
679
|
+
<path fill="#adb333" d="m408.3 379.2 2 2z"/>
|
|
680
|
+
<path fill="#262678" d="m416.5 379.2 2 2z"/>
|
|
681
|
+
<path fill="#667" d="m355.6 381.2 2 2z"/>
|
|
682
|
+
<path fill="#74b166" d="m363.6 381.2 2 2-2-2z"/>
|
|
683
|
+
<path fill="#34be9e" d="m404.3 381.2 2 2z"/>
|
|
684
|
+
<path fill="#adb333" d="m406.3 381.2 2 2z"/>
|
|
685
|
+
<path fill="#8d8d5b" d="m412.4 381.2-2 4z"/>
|
|
686
|
+
<path fill="#262678" d="m414.4 381.2 2 2z"/>
|
|
687
|
+
<path fill="#49497d" d="m357.6 383.2 2 2z"/>
|
|
688
|
+
<path fill="#96b247" d="m365.7 383.2 2 2z"/>
|
|
689
|
+
<path fill="#0dc9c1" d="m367.7 383.2 2 2z"/>
|
|
690
|
+
<path fill="#42bb92" d="m402.2 383.2 2 2z"/>
|
|
691
|
+
<path fill="#0e0e6e" d="m412.4 383.2 2 2z"/>
|
|
692
|
+
<path fill="#49497d" d="m359.6 385.3 2 2z"/>
|
|
693
|
+
<path fill="#a2b23d" d="m367.7 385.3 2 2z"/>
|
|
694
|
+
<path fill="#27c2aa" d="m369.8 385.3 2 2z"/>
|
|
695
|
+
<path fill="#74b166" d="m400.2 385.3 2 2z"/>
|
|
696
|
+
<path fill="#a4a43d" d="m406.3 385.3-6 8z"/>
|
|
697
|
+
<path fill="#808067" d="m408.3 385.3 2 2z"/>
|
|
698
|
+
<path fill="#0e0e6e" d="m410.4 385.3 2 2z"/>
|
|
699
|
+
<path fill="#262678" d="m361.6 387.3 2 2z"/>
|
|
700
|
+
<path fill="#adb333" d="m369.8 387.3 2 2z"/>
|
|
701
|
+
<path fill="#42bb92" d="m371.8 387.3 2 2z"/>
|
|
702
|
+
<path fill="#0dc9c1" d="m396.2 387.3 2 2z"/>
|
|
703
|
+
<path fill="#96b247" d="m398.2 387.3 2 2z"/>
|
|
704
|
+
<path fill="#6e6c70" d="m406.3 387.3 2 2z"/>
|
|
705
|
+
<path fill="#1b1b74" d="m363.6 389.3 2 2-2-2z"/>
|
|
706
|
+
<path fill="#8d8d5b" d="m365.7 389.3 2 2z"/>
|
|
707
|
+
<path fill="#74b166" d="m373.8 389.3 2 2z"/>
|
|
708
|
+
<path fill="#0dc9c1" d="m375.9 389.3 2 2z"/>
|
|
709
|
+
<path fill="#34be9e" d="m394 389.3 2 2z"/>
|
|
710
|
+
<path fill="#adb333" d="m396.2 389.3 2 2z"/>
|
|
711
|
+
<path fill="#49497d" d="m404.3 389.3 2 2z"/>
|
|
712
|
+
<path fill="#0e0e6e" d="m365.7 391.4 2 2z"/>
|
|
713
|
+
<path fill="#6e6c70" d="m367.7 391.4 2 2z"/>
|
|
714
|
+
<path fill="#a4a43d" d="m369.8 391.4 4 4z"/>
|
|
715
|
+
<path fill="#96b247" d="m375.9 391.4 2 2z"/>
|
|
716
|
+
<path fill="#27c2aa" d="m377.9 391.4 2 2z"/>
|
|
717
|
+
<path fill="#68b070" d="m392 391.4 2 2z"/>
|
|
718
|
+
<path fill="#32327b" d="m402.2 391.4 2 2z"/>
|
|
719
|
+
<path fill="#49497d" d="m369.8 393.4 2 2z"/>
|
|
720
|
+
<path fill="#5bb47c" d="m379.9 393.4 2 2z"/>
|
|
721
|
+
<path fill="#27c2aa" d="m388 393.4 2 2z"/>
|
|
722
|
+
<path fill="#96b247" d="m390 393.4 2 2z"/>
|
|
723
|
+
<path fill="#a4a43d" d="m396.2 393.4-2 4z"/>
|
|
724
|
+
<path fill="#808067" d="m398.2 393.4 2 2z"/>
|
|
725
|
+
<path fill="#0e0e6e" d="m400.2 393.4 2 2z"/>
|
|
726
|
+
<path fill="#262678" d="m371.8 395.4 2 2z"/>
|
|
727
|
+
<path fill="#8d8d5b" d="m373.8 395.4 2 2z"/>
|
|
728
|
+
<path fill="#8bb252" d="m382 395.4 2 2z"/>
|
|
729
|
+
<path fill="#1ac5b5" d="m384 395.4 2 2z"/>
|
|
730
|
+
<path fill="#5bb47c" d="m386 395.4 2 2z"/>
|
|
731
|
+
<path fill="#58587b" d="m396.2 395.4 2 2z"/>
|
|
732
|
+
<path fill="#0e0e6e" d="m373.8 397.5 2 2z"/>
|
|
733
|
+
<path fill="#667" d="m375.9 397.5 2 2z"/>
|
|
734
|
+
<path fill="#a4a43d" d="m377.9 397.5 2 2z"/>
|
|
735
|
+
<path fill="#99994e" d="m392 397.5 2 2z"/>
|
|
736
|
+
<path fill="#32327b" d="m394 397.5 2 2-2-2m-16.1 2 2 2z"/>
|
|
737
|
+
<path fill="#99994e" d="m379.9 399.5 2 2z"/>
|
|
738
|
+
<path fill="#a4a43d" d="m388 399.5 2 2z"/>
|
|
739
|
+
<path fill="#667" d="m390 399.5 2 2z"/>
|
|
740
|
+
<path fill="#0e0e6e" d="m392 399.5 2 2-2-2m-12.1 2 2 2z"/>
|
|
741
|
+
<path fill="#667" d="m382 401.5 2 2z"/>
|
|
742
|
+
<path fill="#a4a43d" d="m384 401.5 2 2z"/>
|
|
743
|
+
<path fill="#99994e" d="m386 401.5 2 2z"/>
|
|
744
|
+
<path fill="#32327b" d="m388 401.5 2 2z"/>
|
|
745
|
+
<path fill="#262678" d="m384 403.5 2 2z"/>
|
|
746
|
+
<path fill="#0e0e6e" d="m386 403.5 2 2z"/>
|
|
747
|
+
<path fill="#f90" d="M388 267.5c3.2 7.4 13.2 15.5 16 19.5-3.5 4-4.2 3.6-3.8 11 6-6.4 6.2-7 10.2-6.1 8.6 8.6 1.5 27-5.6 31-7.1 4.3-5.8-.1-16.5 5.2 4.9 4.2 10.6-.6 15.2.7 2.5 3-1.2 8.4.7 13.6 4-.4 3.6-8.7 4.6-11.7 3-11 21-18.6 21.9-28.7 3.8-1.7 7.5-.5 12 2-2.2-9.4-9.7-9.3-11.8-12.2-4.8-7.4-9.1-15.8-19.4-18-8-1.7-7.3.5-12.3-3-3.2-2.4-12.7-7-11.2-3.3z"/>
|
|
748
|
+
<path fill="#fff" fill-rule="evenodd" d="M410.6 275.9a1.6 1.6 0 1 1-3.3 0 1.6 1.6 0 0 1 3.3 0z"/>
|
|
749
|
+
<path fill="#f90" d="M362.9 298.8c5-6.2 7.6-19 9.8-23.2 5.2 1.2 5 2 11.5-1.8-8.5-2.4-9.2-2.2-10.2-6.1 3.6-11.7 23.2-14 30-9.6 7.2 4.3 2.7 5.2 12.4 12 1.4-6.2-5.5-9-6.5-13.6 1.5-3.7 8-3 11.6-7-2.2-3.5-9.3.8-12.4 1.4-11 2.5-26.3-9.8-35.6-6-3.3-2.5-4-6.4-4-11.7-7.1 6.5-3.5 13-5.2 16.3-4.2 7.7-9.7 15.5-6.8 25.6 2.2 7.8 3.8 6.2 3.2 12.3-.7 3.9-.4 14.5 2.2 11.4z"/>
|
|
750
|
+
<path fill="#fff" fill-rule="evenodd" d="M359.8 274.9c.8-.4 1.8-.1 2.2.7a1.6 1.6 0 1 1-2.2-.7z"/>
|
|
751
|
+
<path fill="#f90" d="M404 303c-8-1-20.1 3.4-25 3.8-1.5-5.1-.8-5.5-7.4-9 2.3 8.6 2.8 9 0 12-11.8 2.9-24-12.7-23.8-20.8 0-8.3 3.2-5 4-17-6 2-4.8 9.5-8.3 12.8-4 .6-6.6-5.3-12-6.3-1.8 3.7 5.5 7.5 7.6 9.9 7.9 8.2 5.2 27.5 13.3 33.5-.4 4.2-3.4 6.8-8 9.4 9.3 2.9 13-3.7 16.7-4 8.8-.2 18.3.4 25.5-7.3 5.4-6 3.3-6.5 8.8-9 3.7-1.4 12.6-7.2 8.6-8z"/>
|
|
752
|
+
<path fill="#fff" fill-rule="evenodd" d="M385.2 318.2a1.6 1.6 0 1 1 1.7-2.8 1.6 1.6 0 0 1-1.7 2.8z"/>
|
|
753
|
+
<path fill="#012169" d="M0 0h256v256H0z"/>
|
|
754
|
+
<path fill="#fff" d="M256 0v32l-95 96 95 93.5V256h-33.5L127 162l-93 94H0v-34l93-93.5L0 37V0h31l96 94 93-94z"/>
|
|
755
|
+
<path fill="#c8102e" d="m92 162 5.5 17L21 256H0v-1.5zm62-6 27 4 75 73.5V256zM256 0l-96 98-2-22 75-76zM0 .5 96.5 95 67 91 0 24.5z"/>
|
|
756
|
+
<path fill="#fff" d="M88 0v256h80V0zM0 88v80h256V88z"/>
|
|
757
|
+
<path fill="#c8102e" d="M0 104v48h256v-48zM104 0v256h48V0z"/>
|
|
758
|
+
</svg>
|