@gloww/gloww 0.9.0-beta.2
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/README.md +24 -0
- package/compute-version.js +117 -0
- package/esm2020/gloww-gloww.mjs +5 -0
- package/esm2020/lib/Components/code-editor/code-editor.component.mjs +59 -0
- package/esm2020/lib/Components/confirmation/confirmation.component.mjs +43 -0
- package/esm2020/lib/Components/display-objects/display-objects.component.mjs +440 -0
- package/esm2020/lib/Components/display-objects-configuration.mjs +2 -0
- package/esm2020/lib/Components/download-progress/download-progress.component.mjs +119 -0
- package/esm2020/lib/Components/folders/file-edit/file-edit.component.mjs +71 -0
- package/esm2020/lib/Components/folders/folders/folders.component.mjs +180 -0
- package/esm2020/lib/Components/header/header.component.mjs +14 -0
- package/esm2020/lib/Components/html-editor/html-editor.component.mjs +175 -0
- package/esm2020/lib/Components/menu-list-item/menu-list-item.component.mjs +97 -0
- package/esm2020/lib/Components/prompt/prompt.component.mjs +52 -0
- package/esm2020/lib/Components/result-table/result-table.component.mjs +21 -0
- package/esm2020/lib/Components/search-form/search-form.component.mjs +14 -0
- package/esm2020/lib/Components/secure-a/secure-a.component.mjs +31 -0
- package/esm2020/lib/Components/secure-img/secure-img.component.mjs +45 -0
- package/esm2020/lib/Components/upload-doc/upload-doc.component.mjs +95 -0
- package/esm2020/lib/Components/upload-file/upload-file.component.mjs +136 -0
- package/esm2020/lib/Directives/file-sink.directive.mjs +52 -0
- package/esm2020/lib/Models/nav-item.mjs +2 -0
- package/esm2020/lib/Pipes/html-format.pipe.mjs +23 -0
- package/esm2020/lib/Pipes/retry-with-delay.mjs +12 -0
- package/esm2020/lib/Pipes/safe-html.pipe.mjs +22 -0
- package/esm2020/lib/Pipes/secure.pipe.mjs +34 -0
- package/esm2020/lib/Services/dialog.service.mjs +29 -0
- package/esm2020/lib/Services/folder-service-config.mjs +21 -0
- package/esm2020/lib/Services/folder.service.mjs +50 -0
- package/esm2020/lib/Services/gloww.service.mjs +44 -0
- package/esm2020/lib/Services/nav.service.mjs +28 -0
- package/esm2020/lib/Services/version-check.service.mjs +81 -0
- package/esm2020/lib/Services/voice-recognition.service.mjs +55 -0
- package/esm2020/lib/gloww-security/Components/change-password-dlg/change-password-dlg.component.mjs +67 -0
- package/esm2020/lib/gloww-security/Components/login/login.component.mjs +173 -0
- package/esm2020/lib/gloww-security/Components/social-network/social-network.component.mjs +46 -0
- package/esm2020/lib/gloww-security/Components/social-network-dlg/social-network-dlg.component.mjs +52 -0
- package/esm2020/lib/gloww-security/Components/user-menu/user-menu.component.mjs +73 -0
- package/esm2020/lib/gloww-security/Helpers/administrator.guard.mjs +27 -0
- package/esm2020/lib/gloww-security/Helpers/auth.guard.mjs +57 -0
- package/esm2020/lib/gloww-security/Helpers/error.interceptor.mjs +29 -0
- package/esm2020/lib/gloww-security/Helpers/index.mjs +5 -0
- package/esm2020/lib/gloww-security/Helpers/jwt.interceptor.mjs +31 -0
- package/esm2020/lib/gloww-security/Helpers/staging.interceptor.mjs +24 -0
- package/esm2020/lib/gloww-security/Models/oauthassociation.mjs +6 -0
- package/esm2020/lib/gloww-security/Models/user.mjs +3 -0
- package/esm2020/lib/gloww-security/Services/authentication-service-config.mjs +25 -0
- package/esm2020/lib/gloww-security/Services/authentication.service.mjs +205 -0
- package/esm2020/lib/gloww-security/Services/gloww-security.service.mjs +14 -0
- package/esm2020/lib/gloww-security/gloww-security.module.mjs +171 -0
- package/esm2020/lib/gloww.module.mjs +220 -0
- package/esm2020/lib/injection-token.mjs +3 -0
- package/esm2020/public-api.mjs +32 -0
- package/fesm2015/gloww-gloww.mjs +3018 -0
- package/fesm2015/gloww-gloww.mjs.map +1 -0
- package/fesm2020/gloww-gloww.mjs +2980 -0
- package/fesm2020/gloww-gloww.mjs.map +1 -0
- package/gloww-assets/.gitkeep +0 -0
- package/gloww-assets/7SS_logo.svg +1 -0
- package/gloww-assets/7SS_wobl.svg +1 -0
- package/gloww-assets/7stars.png +0 -0
- package/gloww-assets/gloww.svg +316 -0
- package/gloww-assets/images/google_signin_buttons/Google_signin_button.sketch +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_dark_disabled_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_dark_focus_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_dark_normal_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_dark_pressed_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_light_disabled_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_light_focus_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_light_normal_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_light_pressed_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_signin_dark_disabled_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_signin_dark_focus_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_signin_dark_normal_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_signin_dark_pressed_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_signin_light_disabled_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_signin_light_focus_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_signin_light_normal_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_signin_light_pressed_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_dark_disabled_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_dark_focus_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_dark_normal_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_dark_pressed_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_light_disabled_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_light_focus_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_light_normal_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_light_pressed_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_signin_dark_disabled_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_signin_dark_focus_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_signin_dark_normal_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_signin_dark_pressed_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_signin_light_disabled_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_signin_light_focus_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_signin_light_normal_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_signin_light_pressed_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_dark_disabled_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_dark_focus_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_dark_normal_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_dark_pressed_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_light_disabled_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_light_focus_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_light_normal_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_light_pressed_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_signin_dark_disabled_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_signin_dark_focus_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_signin_dark_normal_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_signin_dark_pressed_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_signin_light_disabled_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_signin_light_focus_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_signin_light_normal_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_signin_light_pressed_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_dark_disabled_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_dark_focus_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_dark_normal_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_dark_pressed_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_light_disabled_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_light_focus_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_light_normal_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_light_pressed_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_signin_dark_disabled_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_signin_dark_focus_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_signin_dark_normal_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_signin_dark_pressed_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_signin_light_disabled_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_signin_light_focus_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_signin_light_normal_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_signin_light_pressed_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_dark_disabled_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_dark_focus_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_dark_normal_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_dark_pressed_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_light_disabled_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_light_focus_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_light_normal_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_light_pressed_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_signin_dark_disabled_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_signin_dark_focus_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_signin_dark_normal_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_signin_dark_pressed_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_signin_light_disabled_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_signin_light_focus_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_signin_light_normal_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_signin_light_pressed_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_dark_disabled_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_dark_focus_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_dark_normal_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_dark_pressed_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_light_disabled_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_light_focus_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_light_normal_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_light_pressed_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_signin_dark_disabled_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_signin_dark_focus_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_signin_dark_normal_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_signin_dark_pressed_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_signin_light_disabled_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_signin_light_focus_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_signin_light_normal_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_signin_light_pressed_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_dark_disabled_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_dark_focus_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_dark_normal_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_dark_pressed_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_light_disabled_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_light_focus_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_light_normal_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_light_pressed_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_signin_dark_disabled_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_signin_dark_focus_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_signin_dark_normal_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_signin_dark_pressed_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_signin_light_disabled_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_signin_light_focus_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_signin_light_normal_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_signin_light_pressed_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_dark_disabled_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_dark_focus_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_dark_normal_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_dark_pressed_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_light_disabled_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_light_focus_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_light_normal_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_light_pressed_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_signin_dark_disabled_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_signin_dark_focus_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_signin_dark_normal_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_signin_dark_pressed_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_signin_light_disabled_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_signin_light_focus_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_signin_light_normal_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_signin_light_pressed_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_dark_disabled_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_dark_focus_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_dark_normal_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_dark_pressed_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_light_disabled_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_light_focus_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_light_normal_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_light_pressed_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_signin_dark_disabled_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_signin_dark_focus_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_signin_dark_normal_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_signin_dark_pressed_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_signin_light_disabled_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_signin_light_focus_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_signin_light_normal_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_signin_light_pressed_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_dark_disabled_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_dark_focus_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_dark_normal_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_dark_pressed_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_light_disabled_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_light_focus_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_light_normal_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_light_pressed_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_signin_dark_disabled_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_signin_dark_focus_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_signin_dark_normal_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_signin_dark_pressed_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_signin_light_disabled_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_signin_light_focus_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_signin_light_normal_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_signin_light_pressed_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/1x/btn_google_signin_dark_disabled_web.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/1x/btn_google_signin_dark_focus_web.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/1x/btn_google_signin_dark_normal_web.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/1x/btn_google_signin_dark_pressed_web.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/1x/btn_google_signin_light_disabled_web.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/1x/btn_google_signin_light_focus_web.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/1x/btn_google_signin_light_normal_web.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/1x/btn_google_signin_light_pressed_web.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/2x/btn_google_signin_dark_disabled_web@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/2x/btn_google_signin_dark_focus_web@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/2x/btn_google_signin_dark_normal_web@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/2x/btn_google_signin_dark_pressed_web@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/2x/btn_google_signin_light_disabled_web@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/2x/btn_google_signin_light_focus_web@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/2x/btn_google_signin_light_normal_web@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/2x/btn_google_signin_light_pressed_web@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_dark_disabled_ios.eps +814 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_dark_disabled_ios.svg +24 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_dark_focus_ios.eps +1866 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_dark_focus_ios.svg +51 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_dark_normal_ios.eps +1031 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_dark_normal_ios.svg +50 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_dark_pressed_ios.eps +1031 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_dark_pressed_ios.svg +50 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_light_disabled_ios.eps +814 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_light_disabled_ios.svg +24 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_light_focus_ios.eps +1837 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_light_focus_ios.svg +44 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_light_normal_ios.eps +1002 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_light_normal_ios.svg +43 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_light_pressed_ios.eps +1002 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_light_pressed_ios.svg +43 -0
- package/gloww-assets/swagger.svg +1 -0
- package/gloww-gloww.d.ts +5 -0
- package/lib/Components/code-editor/code-editor.component.d.ts +16 -0
- package/lib/Components/confirmation/confirmation.component.d.ts +20 -0
- package/lib/Components/display-objects/display-objects.component.d.ts +90 -0
- package/lib/Components/display-objects-configuration.d.ts +5 -0
- package/lib/Components/download-progress/download-progress.component.d.ts +30 -0
- package/lib/Components/folders/file-edit/file-edit.component.d.ts +31 -0
- package/lib/Components/folders/folders/folders.component.d.ts +33 -0
- package/lib/Components/header/header.component.d.ts +8 -0
- package/lib/Components/html-editor/html-editor.component.d.ts +36 -0
- package/lib/Components/menu-list-item/menu-list-item.component.d.ts +22 -0
- package/lib/Components/prompt/prompt.component.d.ts +25 -0
- package/lib/Components/result-table/result-table.component.d.ts +11 -0
- package/lib/Components/search-form/search-form.component.d.ts +8 -0
- package/lib/Components/secure-a/secure-a.component.d.ts +13 -0
- package/lib/Components/secure-img/secure-img.component.d.ts +17 -0
- package/lib/Components/upload-doc/upload-doc.component.d.ts +19 -0
- package/lib/Components/upload-file/upload-file.component.d.ts +34 -0
- package/lib/Directives/file-sink.directive.d.ts +11 -0
- package/lib/Models/nav-item.d.ts +8 -0
- package/lib/Pipes/html-format.pipe.d.ts +10 -0
- package/lib/Pipes/retry-with-delay.d.ts +2 -0
- package/lib/Pipes/safe-html.pipe.d.ts +10 -0
- package/lib/Pipes/secure.pipe.d.ts +13 -0
- package/lib/Services/dialog.service.d.ts +11 -0
- package/lib/Services/folder-service-config.d.ts +7 -0
- package/lib/Services/folder.service.d.ts +19 -0
- package/lib/Services/gloww.service.d.ts +17 -0
- package/lib/Services/nav.service.d.ts +13 -0
- package/lib/Services/version-check.service.d.ts +30 -0
- package/lib/Services/voice-recognition.service.d.ts +14 -0
- package/lib/gloww-security/Components/change-password-dlg/change-password-dlg.component.d.ts +19 -0
- package/lib/gloww-security/Components/login/login.component.d.ts +43 -0
- package/lib/gloww-security/Components/social-network/social-network.component.d.ts +25 -0
- package/lib/gloww-security/Components/social-network-dlg/social-network-dlg.component.d.ts +21 -0
- package/lib/gloww-security/Components/user-menu/user-menu.component.d.ts +24 -0
- package/lib/gloww-security/Helpers/administrator.guard.d.ts +14 -0
- package/lib/gloww-security/Helpers/auth.guard.d.ts +14 -0
- package/lib/gloww-security/Helpers/error.interceptor.d.ts +11 -0
- package/lib/gloww-security/Helpers/index.d.ts +4 -0
- package/lib/gloww-security/Helpers/jwt.interceptor.d.ts +11 -0
- package/lib/gloww-security/Helpers/staging.interceptor.d.ts +9 -0
- package/lib/gloww-security/Models/oauthassociation.d.ts +7 -0
- package/lib/gloww-security/Models/user.d.ts +9 -0
- package/lib/gloww-security/Services/authentication-service-config.d.ts +17 -0
- package/lib/gloww-security/Services/authentication.service.d.ts +40 -0
- package/lib/gloww-security/Services/gloww-security.service.d.ts +6 -0
- package/lib/gloww-security/gloww-security.module.d.ts +35 -0
- package/lib/gloww.module.d.ts +59 -0
- package/lib/injection-token.d.ts +2 -0
- package/package.json +39 -0
- package/public-api.d.ts +28 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Calque_2" data-name="Calque 2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513.7 171.05"><defs><style>.cls-1{fill:#202945;}.cls-2{fill:#d0af21;}</style></defs><title>7 stars logo def</title><path class="cls-1" d="M161.58,107.53l2-4.6a16.84,16.84,0,0,0,6.63,1.72,7.12,7.12,0,0,0,2.88-.57c.87-.38,1.3-.92,1.3-1.62q0-2-4.44-3.39A19.67,19.67,0,0,1,164,96a5.76,5.76,0,0,1-2.41-4.75,6.75,6.75,0,0,1,2.67-5.66,11.43,11.43,0,0,1,7.2-2.07,16.58,16.58,0,0,1,4.34.73,15.07,15.07,0,0,1,4.33,1.94l-2,4.54a25.25,25.25,0,0,0-3.53-1.31,12.61,12.61,0,0,0-3.21-.41,3.48,3.48,0,0,0-2.17.65,1.9,1.9,0,0,0-.86,1.54q0,.67,1,1.23a22.24,22.24,0,0,0,2.95,1.22,20.14,20.14,0,0,1,6.16,3.45,6.47,6.47,0,0,1,2.46,5.12,6.93,6.93,0,0,1-2.72,5.87q-2.72,2.07-7.83,2.07a18.58,18.58,0,0,1-4.55-.68A11.69,11.69,0,0,1,161.58,107.53Z"/><path class="cls-1" d="M197.46,84.23l2.09,5.23h-6.68v10.75a5.25,5.25,0,0,0,1,3.29,3.27,3.27,0,0,0,2.75,1.26,6.37,6.37,0,0,0,2.76-.68l2,4.91a7.13,7.13,0,0,1-2.33,1.1,9.69,9.69,0,0,1-2.79.47,10.7,10.7,0,0,1-7.42-2.41,8.61,8.61,0,0,1-2.66-6.73v-12h-3.39V84.23h3.39v-6l6.74-1.2v7.2Z"/><path class="cls-1" d="M207.44,91.44l-1.83-5.64A14.44,14.44,0,0,1,210,84.21a21.77,21.77,0,0,1,4.75-.71,12.62,12.62,0,0,1,5.53,1.2,10,10,0,0,1,4,3.35,8.2,8.2,0,0,1,1.49,4.8v16.66h-4.44l-1.15-2.71c-2.12,2.22-4.35,3.34-6.69,3.34-3,0-5.31-.74-6.84-2.22a7.93,7.93,0,0,1-2.3-6,7.23,7.23,0,0,1,2.62-6,10.78,10.78,0,0,1,7-2.12h5a4.23,4.23,0,0,0-1.13-3,4,4,0,0,0-2.95-1.07,16.1,16.1,0,0,0-3.81.5A18.92,18.92,0,0,0,207.44,91.44Zm2.66,10.5a2.6,2.6,0,0,0,.92,2,3.28,3.28,0,0,0,2.32.84,7.88,7.88,0,0,0,5.59-2.51V98.39h-5.12a3.58,3.58,0,0,0-2.69,1A3.47,3.47,0,0,0,210.1,101.94Z"/><path class="cls-1" d="M238,109.51h-6.79V84.18h3.56l2.24,4.23a22.17,22.17,0,0,1,4.28-2.92,9.51,9.51,0,0,1,4.34-1.31L247,89.61a10,10,0,0,0-4.26,1.26A21.56,21.56,0,0,0,238,94.05Z"/><path class="cls-1" d="M249,107.53l2-4.6a16.84,16.84,0,0,0,6.64,1.72,7.1,7.1,0,0,0,2.87-.57c.87-.38,1.31-.92,1.31-1.62,0-1.36-1.49-2.49-4.44-3.39a19.61,19.61,0,0,1-6-3.09,5.78,5.78,0,0,1-2.4-4.75,6.77,6.77,0,0,1,2.66-5.66,11.46,11.46,0,0,1,7.21-2.07,16.52,16.52,0,0,1,4.33.73,15.26,15.26,0,0,1,4.34,1.94l-2,4.54a25.18,25.18,0,0,0-3.52-1.31,12.63,12.63,0,0,0-3.22-.41,3.43,3.43,0,0,0-2.16.65,1.88,1.88,0,0,0-.86,1.54c0,.45.33.86,1,1.23a22.83,22.83,0,0,0,3,1.22,20.2,20.2,0,0,1,6.17,3.45,6.49,6.49,0,0,1,2.45,5.12,6.92,6.92,0,0,1-2.71,5.87c-1.81,1.38-4.43,2.07-7.84,2.07a18.51,18.51,0,0,1-4.54-.68A11.69,11.69,0,0,1,249,107.53Z"/><path class="cls-1" d="M280.75,107.53l2-4.6a16.84,16.84,0,0,0,6.64,1.72,7.1,7.1,0,0,0,2.87-.57c.87-.38,1.31-.92,1.31-1.62q0-2-4.44-3.39a19.61,19.61,0,0,1-6-3.09,5.78,5.78,0,0,1-2.4-4.75,6.77,6.77,0,0,1,2.66-5.66,11.46,11.46,0,0,1,7.21-2.07,16.52,16.52,0,0,1,4.33.73,15.26,15.26,0,0,1,4.34,1.94l-2,4.54a25.18,25.18,0,0,0-3.52-1.31,12.63,12.63,0,0,0-3.22-.41,3.43,3.43,0,0,0-2.16.65,1.88,1.88,0,0,0-.86,1.54c0,.45.33.86,1,1.23a22.83,22.83,0,0,0,2.95,1.22,20.2,20.2,0,0,1,6.17,3.45,6.49,6.49,0,0,1,2.45,5.12,6.92,6.92,0,0,1-2.71,5.87c-1.81,1.38-4.43,2.07-7.84,2.07a18.51,18.51,0,0,1-4.54-.68A11.69,11.69,0,0,1,280.75,107.53Z"/><path class="cls-1" d="M328.07,103.82a11.5,11.5,0,0,1-4.73,4.67,14.78,14.78,0,0,1-7.13,1.65,15,15,0,0,1-7.13-1.62,11.44,11.44,0,0,1-4.73-4.62,15.67,15.67,0,0,1,0-14.08,11.5,11.5,0,0,1,4.73-4.67,14.78,14.78,0,0,1,7.13-1.65,15,15,0,0,1,7.13,1.62,11.44,11.44,0,0,1,4.73,4.62,15.67,15.67,0,0,1,0,14.08Zm-7.19-1.62a8,8,0,0,0,1.86-5.43,7.85,7.85,0,0,0-1.83-5.38,6,6,0,0,0-4.7-2.09,5.89,5.89,0,0,0-4.67,2.14,8,8,0,0,0-1.86,5.43,7.85,7.85,0,0,0,1.83,5.38,6,6,0,0,0,4.7,2.09A5.89,5.89,0,0,0,320.88,102.2Z"/><path class="cls-1" d="M334.44,109.51V73.21l6.73-.57v36.87Z"/><path class="cls-1" d="M364.47,84.18h6.79v25.33h-4.44l-1.15-2.71a20.51,20.51,0,0,1-5,2.61,14.64,14.64,0,0,1-4.75.94q-4.8,0-6.74-2.72c-1.28-1.81-1.93-4.33-1.93-7.57V84.18H354V99.74a6,6,0,0,0,1,3.66,3.16,3.16,0,0,0,2.69,1.31,7.16,7.16,0,0,0,3.34-.81,28.14,28.14,0,0,0,3.45-2.17Z"/><path class="cls-1" d="M389.38,84.23l2.09,5.23h-6.69v10.75a5.19,5.19,0,0,0,1,3.29,3.25,3.25,0,0,0,2.74,1.26,6.38,6.38,0,0,0,2.77-.68l2,4.91a7.07,7.07,0,0,1-2.32,1.1,9.8,9.8,0,0,1-2.79.47c-3.17,0-5.65-.81-7.42-2.41a8.57,8.57,0,0,1-2.66-6.73v-12h-3.4V84.23h3.4v-6l6.73-1.2v7.2Z"/><path class="cls-1" d="M400.24,80.58a3.63,3.63,0,0,1-2.66-1.1,3.9,3.9,0,0,1,0-5.43,3.63,3.63,0,0,1,2.66-1.1,3.78,3.78,0,0,1,2.74,1.1,3.83,3.83,0,0,1,0,5.43A3.78,3.78,0,0,1,400.24,80.58Zm-3.34,28.93V84.18h6.79v25.33Z"/><path class="cls-1" d="M433.25,103.82a11.5,11.5,0,0,1-4.73,4.67,14.75,14.75,0,0,1-7.13,1.65,15,15,0,0,1-7.13-1.62,11.42,11.42,0,0,1-4.72-4.62,15.67,15.67,0,0,1,0-14.08,11.48,11.48,0,0,1,4.72-4.67,14.81,14.81,0,0,1,7.13-1.65,15,15,0,0,1,7.13,1.62,11.44,11.44,0,0,1,4.73,4.62,15.67,15.67,0,0,1,0,14.08Zm-7.18-1.62a8,8,0,0,0,1.85-5.43,7.85,7.85,0,0,0-1.83-5.38,6,6,0,0,0-4.7-2.09,5.89,5.89,0,0,0-4.67,2.14,8,8,0,0,0-1.86,5.43,7.85,7.85,0,0,0,1.83,5.38,6.26,6.26,0,0,0,9.38,0Z"/><path class="cls-1" d="M445.89,109.51H439.1V84.18h4.44l1.15,2.72a19.62,19.62,0,0,1,5-2.61,14.46,14.46,0,0,1,4.75-1c3.21,0,5.45.91,6.74,2.72s1.93,4.34,1.93,7.57v15.88h-6.79V94a6.08,6.08,0,0,0-1-3.66,3.16,3.16,0,0,0-2.69-1.3,7.2,7.2,0,0,0-3.35.81A28.37,28.37,0,0,0,445.89,92Z"/><path class="cls-1" d="M467.2,107.53l2-4.6a16.84,16.84,0,0,0,6.63,1.72,7.12,7.12,0,0,0,2.88-.57c.87-.38,1.3-.92,1.3-1.62q0-2-4.44-3.39a19.67,19.67,0,0,1-6-3.09,5.78,5.78,0,0,1-2.4-4.75,6.74,6.74,0,0,1,2.66-5.66,11.44,11.44,0,0,1,7.21-2.07,16.58,16.58,0,0,1,4.33.73,15.26,15.26,0,0,1,4.34,1.94l-2,4.54a25.25,25.25,0,0,0-3.53-1.31A12.49,12.49,0,0,0,477,89a3.48,3.48,0,0,0-2.17.65,1.9,1.9,0,0,0-.86,1.54q0,.67,1,1.23a22.24,22.24,0,0,0,2.95,1.22,20.14,20.14,0,0,1,6.16,3.45,6.47,6.47,0,0,1,2.46,5.12,6.93,6.93,0,0,1-2.72,5.87q-2.71,2.07-7.83,2.07a18.51,18.51,0,0,1-4.54-.68A11.53,11.53,0,0,1,467.2,107.53Z"/><path class="cls-1" d="M150.31,128l-.5,1.15a11,11,0,0,0-1.65-.55,8.53,8.53,0,0,0-2-.18,5.48,5.48,0,0,0-3.19,1,6.73,6.73,0,0,0-2.26,2.69,8.68,8.68,0,0,0-.84,3.86,9.1,9.1,0,0,0,.73,3.71,6.22,6.22,0,0,0,2.1,2.67,5.47,5.47,0,0,0,3.24,1,9.58,9.58,0,0,0,2.08-.2,9.4,9.4,0,0,0,1.65-.55l.6,1.19a7.7,7.7,0,0,1-2,.65,11,11,0,0,1-2.32.27,7.39,7.39,0,0,1-4.24-1.18,7.17,7.17,0,0,1-2.63-3.17,10.54,10.54,0,0,1-.89-4.35,10.42,10.42,0,0,1,1-4.51,7.86,7.86,0,0,1,2.76-3.21,7.5,7.5,0,0,1,4.18-1.18,12.52,12.52,0,0,1,2.21.25A5.48,5.48,0,0,1,150.31,128Z"/><path class="cls-1" d="M153.91,144.36h-1.54V132.3h1l.45,1.91a12,12,0,0,1,2-1.3,4.31,4.31,0,0,1,2-.61l.42,1.22a4.75,4.75,0,0,0-2.3.69,8.18,8.18,0,0,0-2,1.54Z"/><path class="cls-1" d="M169.67,138.41h-8.95a5.83,5.83,0,0,0,1.1,3.67,4.05,4.05,0,0,0,3.38,1.36,6.9,6.9,0,0,0,1.89-.26,11.1,11.1,0,0,0,1.89-.79l.52,1.15a11.26,11.26,0,0,1-2,.85,7.69,7.69,0,0,1-2.23.29,5.79,5.79,0,0,1-4.57-1.74,6.78,6.78,0,0,1-1.54-4.67,7,7,0,0,1,1.45-4.55,4.9,4.9,0,0,1,4-1.74,4.35,4.35,0,0,1,3.8,1.75A7.93,7.93,0,0,1,169.67,138.41Zm-8.9-1.06h7.34c-.27-2.72-1.45-4.08-3.56-4.08a3.33,3.33,0,0,0-2.66,1.1A5.24,5.24,0,0,0,160.77,137.35Zm2.66-8,1.34-3.48h1.77l-2.11,3.8Z"/><path class="cls-1" d="M173,134.11l-.47-1.09a5.64,5.64,0,0,1,1.84-.75,8.35,8.35,0,0,1,2-.29,4.79,4.79,0,0,1,3.28,1.06,3.64,3.64,0,0,1,1.22,2.86v8.46h-1.27l-.2-1.3a5.38,5.38,0,0,1-1.65,1.13,4.65,4.65,0,0,1-2,.49,4.06,4.06,0,0,1-3-1,3.59,3.59,0,0,1-1.05-2.67,3.24,3.24,0,0,1,1.19-2.66,4.66,4.66,0,0,1,3.11-.95h3.36v-1.22a3,3,0,0,0-.73-2.1,2.82,2.82,0,0,0-2.15-.78,6.34,6.34,0,0,0-1.83.2A14,14,0,0,0,173,134.11Zm.2,6.87a2.58,2.58,0,0,0,.62,1.7,2.3,2.3,0,0,0,1.86.73,3.81,3.81,0,0,0,2-.56,6.41,6.41,0,0,0,1.63-1.4v-3.06h-3.41a2.65,2.65,0,0,0-2,.75A2.53,2.53,0,0,0,173.18,141Z"/><path class="cls-1" d="M188.17,132.55l.52,1.17H186v7.58a2.44,2.44,0,0,0,.41,1.49,1.51,1.51,0,0,0,1.28.55,2.59,2.59,0,0,0,1-.23l.3,1.27-.5.16a3.83,3.83,0,0,1-1.14.14,2.83,2.83,0,0,1-2.14-.83,3.32,3.32,0,0,1-.8-2.38v-7.75h-1.76l0-1.17h1.79v-3.14l1.57-.54v3.68Z"/><path class="cls-1" d="M200.82,138.41h-8.95a5.83,5.83,0,0,0,1.1,3.67,4.05,4.05,0,0,0,3.38,1.36,6.9,6.9,0,0,0,1.89-.26,11.1,11.1,0,0,0,1.89-.79l.52,1.15a11.26,11.26,0,0,1-2,.85,7.69,7.69,0,0,1-2.23.29,5.79,5.79,0,0,1-4.57-1.74,6.78,6.78,0,0,1-1.54-4.67,7,7,0,0,1,1.45-4.55,4.9,4.9,0,0,1,4-1.74,4.35,4.35,0,0,1,3.8,1.75A7.93,7.93,0,0,1,200.82,138.41Zm-8.9-1.06h7.34c-.27-2.72-1.45-4.08-3.56-4.08a3.33,3.33,0,0,0-2.66,1.1A5.24,5.24,0,0,0,191.92,137.35Z"/><path class="cls-1" d="M211.19,132.27h1.54v12.09h-1.27l-.25-1.87a6.26,6.26,0,0,1-2.06,1.53,5.51,5.51,0,0,1-2.41.63,3.42,3.42,0,0,1-2.78-1.09,4.34,4.34,0,0,1-.92-2.91V132.3h1.54v8c0,2,.78,3,2.33,3a4.64,4.64,0,0,0,2.2-.71,7,7,0,0,0,2.08-1.75Z"/><path class="cls-1" d="M217.33,144.36h-1.54V132.3h1l.45,1.91a12,12,0,0,1,2-1.3,4.27,4.27,0,0,1,2-.61l.42,1.22a4.75,4.75,0,0,0-2.3.69,8.18,8.18,0,0,0-2,1.54Z"/><path class="cls-1" d="M238.34,126.83v17.53h-1l-.28-1a5.66,5.66,0,0,1-1.56.93,4.61,4.61,0,0,1-1.74.34,5,5,0,0,1-4.05-1.74,7,7,0,0,1-1.45-4.62,8.08,8.08,0,0,1,.69-3.26,5.17,5.17,0,0,1,1.91-2.26,5.35,5.35,0,0,1,3-.82,4.94,4.94,0,0,1,2.93,1.09v-6Zm-1.57,15.26v-7.63a4.88,4.88,0,0,0-1.33-.88,4.1,4.1,0,0,0-1.68-.31,3.39,3.39,0,0,0-2.92,1.4,6.25,6.25,0,0,0-1,3.62,6.33,6.33,0,0,0,1,3.72,3.34,3.34,0,0,0,2.93,1.38A4.15,4.15,0,0,0,236.77,142.09Z"/><path class="cls-1" d="M251.41,138.41h-8.95a5.89,5.89,0,0,0,1.1,3.67,4.05,4.05,0,0,0,3.38,1.36,6.9,6.9,0,0,0,1.89-.26,10.47,10.47,0,0,0,1.89-.79l.52,1.15a11.26,11.26,0,0,1-2,.85,7.64,7.64,0,0,1-2.23.29,5.79,5.79,0,0,1-4.57-1.74,6.78,6.78,0,0,1-1.54-4.67,7,7,0,0,1,1.45-4.55,4.92,4.92,0,0,1,4-1.74,4.35,4.35,0,0,1,3.8,1.75A7.93,7.93,0,0,1,251.41,138.41Zm-8.9-1.06h7.34c-.27-2.72-1.45-4.08-3.56-4.08a3.33,3.33,0,0,0-2.66,1.1A5.24,5.24,0,0,0,242.51,137.35Z"/><path class="cls-1" d="M258.8,143.73l.49-1.14a7.67,7.67,0,0,0,3.31.85,4.66,4.66,0,0,0,2.41-.53,1.65,1.65,0,0,0,.87-1.51c0-1-1.09-1.83-3.28-2.59a9.51,9.51,0,0,1-2.82-1.39,2.54,2.54,0,0,1-1.08-2.11,2.88,2.88,0,0,1,1.19-2.45,5.31,5.31,0,0,1,3.23-.88,7.94,7.94,0,0,1,1.94.28,4.92,4.92,0,0,1,1.69.71l-.49,1.09a13.21,13.21,0,0,0-1.52-.62,5.5,5.5,0,0,0-1.67-.22,3.6,3.6,0,0,0-2.09.56,1.69,1.69,0,0,0-.82,1.43,1.62,1.62,0,0,0,.84,1.3,9.73,9.73,0,0,0,2.3,1q4,1.43,4,3.73a2.92,2.92,0,0,1-1.24,2.5,5.87,5.87,0,0,1-3.53.91,9.29,9.29,0,0,1-2-.26A5.49,5.49,0,0,1,258.8,143.73Z"/><path class="cls-1" d="M279.53,141.63a5.38,5.38,0,0,1-2.06,2.24,6,6,0,0,1-3.14.81,5.13,5.13,0,0,1-2.92-.82,5.21,5.21,0,0,1-1.87-2.28,7.92,7.92,0,0,1-.65-3.31,7.58,7.58,0,0,1,.72-3.22,5.27,5.27,0,0,1,2-2.25,5.59,5.59,0,0,1,3.05-.82,5.12,5.12,0,0,1,4.12,1.7,7,7,0,0,1,1.47,4.71A7.09,7.09,0,0,1,279.53,141.63Zm-2,.36a5.68,5.68,0,0,0,1.14-3.58,6.08,6.08,0,0,0-1.05-3.72,3.5,3.5,0,0,0-3-1.42,3.65,3.65,0,0,0-3,1.39,5.63,5.63,0,0,0-1.13,3.58,6.11,6.11,0,0,0,1,3.73,3.53,3.53,0,0,0,3,1.42A3.66,3.66,0,0,0,277.55,142Z"/><path class="cls-1" d="M282.81,144.36V127.05l1.54-.25v17.56Z"/><path class="cls-1" d="M295.72,132.27h1.54v12.09H296l-.25-1.87a6.26,6.26,0,0,1-2.06,1.53,5.58,5.58,0,0,1-2.41.63,3.43,3.43,0,0,1-2.79-1.09,4.39,4.39,0,0,1-.92-2.91V132.3h1.54v8c0,2,.78,3,2.34,3a4.67,4.67,0,0,0,2.2-.71,7,7,0,0,0,2.08-1.75Z"/><path class="cls-1" d="M304.66,132.55l.53,1.17h-2.71v7.58a2.38,2.38,0,0,0,.41,1.49,1.51,1.51,0,0,0,1.28.55,2.59,2.59,0,0,0,1-.23l.29,1.27-.49.16a3.9,3.9,0,0,1-1.15.14,2.82,2.82,0,0,1-2.13-.83,3.32,3.32,0,0,1-.8-2.38v-7.75h-1.76l0-1.17h1.79v-3.14l1.57-.54v3.68Z"/><path class="cls-1" d="M308.32,129.66a1.15,1.15,0,0,1-.85-.33,1.25,1.25,0,0,1,0-1.67,1.15,1.15,0,0,1,.85-.33,1.2,1.2,0,0,1,.83.33,1.15,1.15,0,0,1,0,1.67A1.2,1.2,0,0,1,308.32,129.66Zm-.77,14.7V132.3h1.56v12.06Z"/><path class="cls-1" d="M322.07,141.63a5.34,5.34,0,0,1-2.07,2.24,5.93,5.93,0,0,1-3.13.81,5.11,5.11,0,0,1-2.92-.82,5.23,5.23,0,0,1-1.88-2.28,8.08,8.08,0,0,1-.64-3.31,7.29,7.29,0,0,1,.72-3.22,5.27,5.27,0,0,1,2-2.25,5.56,5.56,0,0,1,3-.82,5.14,5.14,0,0,1,4.13,1.7,7,7,0,0,1,1.47,4.71A7.09,7.09,0,0,1,322.07,141.63Zm-2,.36a5.67,5.67,0,0,0,1.13-3.58,6.14,6.14,0,0,0-1-3.72,3.5,3.5,0,0,0-3-1.42,3.69,3.69,0,0,0-3.05,1.39,5.75,5.75,0,0,0-1.13,3.58A6.11,6.11,0,0,0,314,142a3.51,3.51,0,0,0,3,1.42A3.68,3.68,0,0,0,320.09,142Z"/><path class="cls-1" d="M326.64,144.36H325.1V132.3h1.27l.25,1.84a6.26,6.26,0,0,1,2.06-1.53,5.55,5.55,0,0,1,2.41-.63,3.45,3.45,0,0,1,2.79,1.09,4.39,4.39,0,0,1,.92,2.91v8.35h-1.55v-8.05c0-2-.77-3-2.33-3a4.64,4.64,0,0,0-2.2.71,7,7,0,0,0-2.08,1.75Z"/><path class="cls-1" d="M337.16,143.73l.49-1.14a7.67,7.67,0,0,0,3.31.85,4.66,4.66,0,0,0,2.41-.53,1.65,1.65,0,0,0,.87-1.51c0-1-1.09-1.83-3.28-2.59a9.51,9.51,0,0,1-2.82-1.39,2.54,2.54,0,0,1-1.08-2.11,2.88,2.88,0,0,1,1.19-2.45,5.31,5.31,0,0,1,3.23-.88,7.94,7.94,0,0,1,1.94.28,4.92,4.92,0,0,1,1.69.71l-.49,1.09a13.21,13.21,0,0,0-1.52-.62,5.45,5.45,0,0,0-1.67-.22,3.55,3.55,0,0,0-2.08.56,1.67,1.67,0,0,0-.83,1.43,1.62,1.62,0,0,0,.84,1.3,9.73,9.73,0,0,0,2.3,1c2.68,1,4,2.19,4,3.73a2.92,2.92,0,0,1-1.25,2.5,5.87,5.87,0,0,1-3.53.91,9.13,9.13,0,0,1-2-.26A5.46,5.46,0,0,1,337.16,143.73Z"/><path class="cls-1" d="M354.44,129.66a1.17,1.17,0,1,1,0-2.33,1.2,1.2,0,0,1,.83.33,1.15,1.15,0,0,1,0,1.67A1.2,1.2,0,0,1,354.44,129.66Zm-.78,14.7V132.3h1.57v12.06Z"/><path class="cls-1" d="M359.83,144.36h-1.54V132.3h1.27l.25,1.84a6.26,6.26,0,0,1,2.06-1.53,5.51,5.51,0,0,1,2.41-.63,3.42,3.42,0,0,1,2.78,1.09A4.34,4.34,0,0,1,368,136v8.35h-1.54v-8.05c0-2-.78-3-2.33-3a4.64,4.64,0,0,0-2.2.71,7,7,0,0,0-2.08,1.75Z"/><path class="cls-1" d="M369.77,133.72l0-1.17h1.81v-2.19a3.78,3.78,0,0,1,.8-2.51,2.65,2.65,0,0,1,2.14-.95,4.52,4.52,0,0,1,1.64.33l-.3,1.31a1.92,1.92,0,0,0-.47-.14,2.59,2.59,0,0,0-.55-.08q-1.71,0-1.71,2v2.19h2.18l.52,1.17h-2.7v10.64h-1.55V133.72Z"/><path class="cls-1" d="M387.48,141.63a5.4,5.4,0,0,1-2.07,2.24,5.93,5.93,0,0,1-3.13.81,5.11,5.11,0,0,1-2.92-.82,5.23,5.23,0,0,1-1.88-2.28,8.08,8.08,0,0,1-.65-3.31,7.44,7.44,0,0,1,.73-3.22,5.27,5.27,0,0,1,2-2.25,5.56,5.56,0,0,1,3-.82,5.14,5.14,0,0,1,4.13,1.7,7,7,0,0,1,1.47,4.71A7.09,7.09,0,0,1,387.48,141.63Zm-2,.36a5.67,5.67,0,0,0,1.13-3.58,6.14,6.14,0,0,0-1-3.72,3.5,3.5,0,0,0-3-1.42,3.67,3.67,0,0,0-3.05,1.39,5.69,5.69,0,0,0-1.13,3.58,6.17,6.17,0,0,0,1,3.73,3.53,3.53,0,0,0,3,1.42A3.68,3.68,0,0,0,385.5,142Z"/><path class="cls-1" d="M392.05,144.36h-1.54V132.3h1l.44,1.91a12.57,12.57,0,0,1,2-1.3,4.24,4.24,0,0,1,2-.61l.42,1.22a4.75,4.75,0,0,0-2.3.69,8.18,8.18,0,0,0-2,1.54Z"/><path class="cls-1" d="M413.81,133.06a4.63,4.63,0,0,1,.84,2.92v8.35h-1.54v-8.05a4.46,4.46,0,0,0-.46-2.19,1.73,1.73,0,0,0-1.63-.8,4,4,0,0,0-1.89.62,7.47,7.47,0,0,0-1.92,1.57,2.91,2.91,0,0,1,0,.5v8.35H405.7v-8.05a4.46,4.46,0,0,0-.46-2.19,1.73,1.73,0,0,0-1.63-.8,4.19,4.19,0,0,0-2,.71,7.48,7.48,0,0,0-2,1.75v8.61H398V132.3h1.27l.25,1.84a6.38,6.38,0,0,1,2-1.53,4.89,4.89,0,0,1,2.23-.63,3,3,0,0,1,3.19,2.16,6.46,6.46,0,0,1,2-1.53,5,5,0,0,1,2.24-.63A3.08,3.08,0,0,1,413.81,133.06Z"/><path class="cls-1" d="M418.6,134.11l-.47-1.09a5.64,5.64,0,0,1,1.84-.75,8.35,8.35,0,0,1,2-.29,4.79,4.79,0,0,1,3.28,1.06,3.64,3.64,0,0,1,1.22,2.86v8.46h-1.27l-.2-1.3a5.38,5.38,0,0,1-1.65,1.13,4.65,4.65,0,0,1-2,.49,4.06,4.06,0,0,1-3-1,3.59,3.59,0,0,1-1.05-2.67,3.22,3.22,0,0,1,1.2-2.66,4.62,4.62,0,0,1,3.1-.95h3.36v-1.22a3,3,0,0,0-.73-2.1,2.82,2.82,0,0,0-2.15-.78,6.34,6.34,0,0,0-1.83.2A14,14,0,0,0,418.6,134.11Zm.2,6.87a2.58,2.58,0,0,0,.62,1.7,2.3,2.3,0,0,0,1.86.73,3.81,3.81,0,0,0,2-.56,6.24,6.24,0,0,0,1.63-1.4v-3.06h-3.41a2.65,2.65,0,0,0-2,.75A2.53,2.53,0,0,0,418.8,141Z"/><path class="cls-1" d="M433.79,132.55l.52,1.17H431.6v7.58a2.44,2.44,0,0,0,.41,1.49,1.52,1.52,0,0,0,1.28.55,2.59,2.59,0,0,0,1-.23l.3,1.27-.5.16a3.83,3.83,0,0,1-1.14.14,2.83,2.83,0,0,1-2.14-.83,3.32,3.32,0,0,1-.79-2.38v-7.75h-1.77l0-1.17H430v-3.14l1.56-.54v3.68Z"/><path class="cls-1" d="M437.44,129.66a1.12,1.12,0,0,1-.84-.33,1.22,1.22,0,0,1,0-1.67,1.12,1.12,0,0,1,.84-.33,1.2,1.2,0,0,1,.84.33,1.15,1.15,0,0,1,0,1.67A1.2,1.2,0,0,1,437.44,129.66Zm-.77,14.7V132.3h1.57v12.06Z"/><path class="cls-1" d="M450.65,132.3v17.23l-1.57.27v-6.16a5.07,5.07,0,0,1-3,1,5,5,0,0,1-4.06-1.74,7,7,0,0,1-1.44-4.62,8.25,8.25,0,0,1,.68-3.26,5.19,5.19,0,0,1,1.92-2.26,5.33,5.33,0,0,1,3-.82,5,5,0,0,1,3.13,1.24l.35-.92Zm-1.57,9.79v-7.63a5,5,0,0,0-1.33-.88,4.1,4.1,0,0,0-1.68-.31,3.37,3.37,0,0,0-2.92,1.4,6.18,6.18,0,0,0-1,3.62,6.33,6.33,0,0,0,1,3.72,3.33,3.33,0,0,0,2.93,1.38A4.15,4.15,0,0,0,449.08,142.09Z"/><path class="cls-1" d="M461.91,132.27h1.54v12.09h-1.27l-.25-1.87a6.26,6.26,0,0,1-2.06,1.53,5.55,5.55,0,0,1-2.41.63,3.44,3.44,0,0,1-2.79-1.09,4.39,4.39,0,0,1-.92-2.91V132.3h1.54v8c0,2,.78,3,2.34,3a4.67,4.67,0,0,0,2.2-.71,7,7,0,0,0,2.08-1.75Z"/><path class="cls-1" d="M476.28,138.41h-8.95a5.83,5.83,0,0,0,1.09,3.67,4.05,4.05,0,0,0,3.38,1.36,6.9,6.9,0,0,0,1.89-.26,10.47,10.47,0,0,0,1.89-.79l.52,1.15a11.26,11.26,0,0,1-2,.85,7.62,7.62,0,0,1-2.22.29,5.8,5.8,0,0,1-4.58-1.74,6.78,6.78,0,0,1-1.54-4.67,7.06,7.06,0,0,1,1.45-4.55,4.93,4.93,0,0,1,4-1.74,4.33,4.33,0,0,1,3.8,1.75A7.93,7.93,0,0,1,476.28,138.41Zm-8.9-1.06h7.33c-.27-2.72-1.45-4.08-3.56-4.08a3.33,3.33,0,0,0-2.66,1.1A5.17,5.17,0,0,0,467.38,137.35Z"/><path class="cls-1" d="M478,143.73l.5-1.14a7.63,7.63,0,0,0,3.31.85,4.68,4.68,0,0,0,2.41-.53,1.65,1.65,0,0,0,.87-1.51c0-1-1.1-1.83-3.28-2.59a9.57,9.57,0,0,1-2.83-1.39,2.54,2.54,0,0,1-1.08-2.11,2.87,2.87,0,0,1,1.2-2.45,5.29,5.29,0,0,1,3.23-.88,8.07,8.07,0,0,1,1.94.28A5,5,0,0,1,486,133l-.5,1.09a12.52,12.52,0,0,0-1.52-.62,5.43,5.43,0,0,0-1.66-.22,3.58,3.58,0,0,0-2.09.56,1.66,1.66,0,0,0-.82,1.43,1.6,1.6,0,0,0,.83,1.3,9.92,9.92,0,0,0,2.3,1q4,1.43,4,3.73a2.94,2.94,0,0,1-1.24,2.5,5.89,5.89,0,0,1-3.53.91,9.14,9.14,0,0,1-2-.26A5.55,5.55,0,0,1,478,143.73Z"/><polygon class="cls-1" points="114.69 70.97 118.13 79.65 145.14 79.65 127.13 116.63 136.54 116.63 158.17 70.97 114.69 70.97"/><polygon class="cls-2" points="108.38 103.76 113.13 123.58 89.23 106.22 65.33 123.58 71.93 96.07 51.58 79.65 78.53 79.65 89.23 51.31 100.3 79.65 109.63 79.65 89.23 26.75 72.54 70.97 27.03 70.97 62.21 99.38 51.42 144.42 89.23 116.94 127.05 144.42 117.3 103.76 108.38 103.76"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Calque_2" data-name="Calque 2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513.7 171.05"><defs><style>.cls-1{fill:#202945;}.cls-2{fill:#d0af21;}</style></defs><title>7 stars logo def sans baseline</title><path class="cls-1" d="M161.58,107.53l2-4.6a16.84,16.84,0,0,0,6.63,1.72,7.12,7.12,0,0,0,2.88-.57c.87-.38,1.3-.92,1.3-1.62q0-2-4.44-3.39A19.67,19.67,0,0,1,164,96a5.76,5.76,0,0,1-2.41-4.75,6.75,6.75,0,0,1,2.67-5.66,11.43,11.43,0,0,1,7.2-2.07,16.58,16.58,0,0,1,4.34.73,15.07,15.07,0,0,1,4.33,1.94l-2,4.54a25.25,25.25,0,0,0-3.53-1.31,12.61,12.61,0,0,0-3.21-.41,3.48,3.48,0,0,0-2.17.65,1.9,1.9,0,0,0-.86,1.54q0,.67,1,1.23a22.24,22.24,0,0,0,2.95,1.22,20.14,20.14,0,0,1,6.16,3.45,6.47,6.47,0,0,1,2.46,5.12,6.93,6.93,0,0,1-2.72,5.87q-2.72,2.07-7.83,2.07a18.58,18.58,0,0,1-4.55-.68A11.69,11.69,0,0,1,161.58,107.53Z"/><path class="cls-1" d="M197.46,84.23l2.09,5.23h-6.68v10.75a5.25,5.25,0,0,0,1,3.29,3.27,3.27,0,0,0,2.75,1.26,6.37,6.37,0,0,0,2.76-.68l2,4.91a7.13,7.13,0,0,1-2.33,1.1,9.69,9.69,0,0,1-2.79.47,10.7,10.7,0,0,1-7.42-2.41,8.61,8.61,0,0,1-2.66-6.73v-12h-3.39V84.23h3.39v-6l6.74-1.2v7.2Z"/><path class="cls-1" d="M207.44,91.44l-1.83-5.64A14.44,14.44,0,0,1,210,84.21a21.77,21.77,0,0,1,4.75-.71,12.62,12.62,0,0,1,5.53,1.2,10,10,0,0,1,4,3.35,8.2,8.2,0,0,1,1.49,4.8v16.66h-4.44l-1.15-2.71c-2.12,2.22-4.35,3.34-6.69,3.34-3,0-5.31-.74-6.84-2.22a7.93,7.93,0,0,1-2.3-6,7.23,7.23,0,0,1,2.62-6,10.78,10.78,0,0,1,7-2.12h5a4.23,4.23,0,0,0-1.13-3,4,4,0,0,0-2.95-1.07,16.1,16.1,0,0,0-3.81.5A18.92,18.92,0,0,0,207.44,91.44Zm2.66,10.5a2.6,2.6,0,0,0,.92,2,3.28,3.28,0,0,0,2.32.84,7.88,7.88,0,0,0,5.59-2.51V98.39h-5.12a3.58,3.58,0,0,0-2.69,1A3.47,3.47,0,0,0,210.1,101.94Z"/><path class="cls-1" d="M238,109.51h-6.79V84.18h3.56l2.24,4.23a22.17,22.17,0,0,1,4.28-2.92,9.51,9.51,0,0,1,4.34-1.31L247,89.61a10,10,0,0,0-4.26,1.26A21.56,21.56,0,0,0,238,94.05Z"/><path class="cls-1" d="M249,107.53l2-4.6a16.84,16.84,0,0,0,6.64,1.72,7.1,7.1,0,0,0,2.87-.57c.87-.38,1.31-.92,1.31-1.62,0-1.36-1.49-2.49-4.44-3.39a19.61,19.61,0,0,1-6-3.09,5.78,5.78,0,0,1-2.4-4.75,6.77,6.77,0,0,1,2.66-5.66,11.46,11.46,0,0,1,7.21-2.07,16.52,16.52,0,0,1,4.33.73,15.26,15.26,0,0,1,4.34,1.94l-2,4.54a25.18,25.18,0,0,0-3.52-1.31,12.63,12.63,0,0,0-3.22-.41,3.43,3.43,0,0,0-2.16.65,1.88,1.88,0,0,0-.86,1.54c0,.45.33.86,1,1.23a22.83,22.83,0,0,0,3,1.22,20.2,20.2,0,0,1,6.17,3.45,6.49,6.49,0,0,1,2.45,5.12,6.92,6.92,0,0,1-2.71,5.87c-1.81,1.38-4.43,2.07-7.84,2.07a18.51,18.51,0,0,1-4.54-.68A11.69,11.69,0,0,1,249,107.53Z"/><path class="cls-1" d="M280.75,107.53l2-4.6a16.84,16.84,0,0,0,6.64,1.72,7.1,7.1,0,0,0,2.87-.57c.87-.38,1.31-.92,1.31-1.62q0-2-4.44-3.39a19.61,19.61,0,0,1-6-3.09,5.78,5.78,0,0,1-2.4-4.75,6.77,6.77,0,0,1,2.66-5.66,11.46,11.46,0,0,1,7.21-2.07,16.52,16.52,0,0,1,4.33.73,15.26,15.26,0,0,1,4.34,1.94l-2,4.54a25.18,25.18,0,0,0-3.52-1.31,12.63,12.63,0,0,0-3.22-.41,3.43,3.43,0,0,0-2.16.65,1.88,1.88,0,0,0-.86,1.54c0,.45.33.86,1,1.23a22.83,22.83,0,0,0,2.95,1.22,20.2,20.2,0,0,1,6.17,3.45,6.49,6.49,0,0,1,2.45,5.12,6.92,6.92,0,0,1-2.71,5.87c-1.81,1.38-4.43,2.07-7.84,2.07a18.51,18.51,0,0,1-4.54-.68A11.69,11.69,0,0,1,280.75,107.53Z"/><path class="cls-1" d="M328.07,103.82a11.5,11.5,0,0,1-4.73,4.67,14.78,14.78,0,0,1-7.13,1.65,15,15,0,0,1-7.13-1.62,11.44,11.44,0,0,1-4.73-4.62,15.67,15.67,0,0,1,0-14.08,11.5,11.5,0,0,1,4.73-4.67,14.78,14.78,0,0,1,7.13-1.65,15,15,0,0,1,7.13,1.62,11.44,11.44,0,0,1,4.73,4.62,15.67,15.67,0,0,1,0,14.08Zm-7.19-1.62a8,8,0,0,0,1.86-5.43,7.85,7.85,0,0,0-1.83-5.38,6,6,0,0,0-4.7-2.09,5.89,5.89,0,0,0-4.67,2.14,8,8,0,0,0-1.86,5.43,7.85,7.85,0,0,0,1.83,5.38,6,6,0,0,0,4.7,2.09A5.89,5.89,0,0,0,320.88,102.2Z"/><path class="cls-1" d="M334.44,109.51V73.21l6.73-.57v36.87Z"/><path class="cls-1" d="M364.47,84.18h6.79v25.33h-4.44l-1.15-2.71a20.51,20.51,0,0,1-5,2.61,14.64,14.64,0,0,1-4.75.94q-4.8,0-6.74-2.72c-1.28-1.81-1.93-4.33-1.93-7.57V84.18H354V99.74a6,6,0,0,0,1,3.66,3.16,3.16,0,0,0,2.69,1.31,7.16,7.16,0,0,0,3.34-.81,28.14,28.14,0,0,0,3.45-2.17Z"/><path class="cls-1" d="M389.38,84.23l2.09,5.23h-6.69v10.75a5.19,5.19,0,0,0,1,3.29,3.25,3.25,0,0,0,2.74,1.26,6.38,6.38,0,0,0,2.77-.68l2,4.91a7.07,7.07,0,0,1-2.32,1.1,9.8,9.8,0,0,1-2.79.47c-3.17,0-5.65-.81-7.42-2.41a8.57,8.57,0,0,1-2.66-6.73v-12h-3.4V84.23h3.4v-6l6.73-1.2v7.2Z"/><path class="cls-1" d="M400.24,80.58a3.63,3.63,0,0,1-2.66-1.1,3.9,3.9,0,0,1,0-5.43,3.63,3.63,0,0,1,2.66-1.1,3.78,3.78,0,0,1,2.74,1.1,3.83,3.83,0,0,1,0,5.43A3.78,3.78,0,0,1,400.24,80.58Zm-3.34,28.93V84.18h6.79v25.33Z"/><path class="cls-1" d="M433.25,103.82a11.5,11.5,0,0,1-4.73,4.67,14.75,14.75,0,0,1-7.13,1.65,15,15,0,0,1-7.13-1.62,11.42,11.42,0,0,1-4.72-4.62,15.67,15.67,0,0,1,0-14.08,11.48,11.48,0,0,1,4.72-4.67,14.81,14.81,0,0,1,7.13-1.65,15,15,0,0,1,7.13,1.62,11.44,11.44,0,0,1,4.73,4.62,15.67,15.67,0,0,1,0,14.08Zm-7.18-1.62a8,8,0,0,0,1.85-5.43,7.85,7.85,0,0,0-1.83-5.38,6,6,0,0,0-4.7-2.09,5.89,5.89,0,0,0-4.67,2.14,8,8,0,0,0-1.86,5.43,7.85,7.85,0,0,0,1.83,5.38,6.26,6.26,0,0,0,9.38,0Z"/><path class="cls-1" d="M445.89,109.51H439.1V84.18h4.44l1.15,2.72a19.62,19.62,0,0,1,5-2.61,14.46,14.46,0,0,1,4.75-1c3.21,0,5.45.91,6.74,2.72s1.93,4.34,1.93,7.57v15.88h-6.79V94a6.08,6.08,0,0,0-1-3.66,3.16,3.16,0,0,0-2.69-1.3,7.2,7.2,0,0,0-3.35.81A28.37,28.37,0,0,0,445.89,92Z"/><path class="cls-1" d="M467.2,107.53l2-4.6a16.84,16.84,0,0,0,6.63,1.72,7.12,7.12,0,0,0,2.88-.57c.87-.38,1.3-.92,1.3-1.62q0-2-4.44-3.39a19.67,19.67,0,0,1-6-3.09,5.78,5.78,0,0,1-2.4-4.75,6.74,6.74,0,0,1,2.66-5.66,11.44,11.44,0,0,1,7.21-2.07,16.58,16.58,0,0,1,4.33.73,15.26,15.26,0,0,1,4.34,1.94l-2,4.54a25.25,25.25,0,0,0-3.53-1.31A12.49,12.49,0,0,0,477,89a3.48,3.48,0,0,0-2.17.65,1.9,1.9,0,0,0-.86,1.54q0,.67,1,1.23a22.24,22.24,0,0,0,2.95,1.22,20.14,20.14,0,0,1,6.16,3.45,6.47,6.47,0,0,1,2.46,5.12,6.93,6.93,0,0,1-2.72,5.87q-2.71,2.07-7.83,2.07a18.51,18.51,0,0,1-4.54-.68A11.53,11.53,0,0,1,467.2,107.53Z"/><polygon class="cls-1" points="114.69 70.97 118.13 79.65 145.14 79.65 127.13 116.63 136.54 116.63 158.17 70.97 114.69 70.97"/><polygon class="cls-2" points="108.38 103.76 113.13 123.58 89.23 106.22 65.33 123.58 71.93 96.07 51.58 79.65 78.53 79.65 89.23 51.31 100.3 79.65 109.63 79.65 89.23 26.75 72.54 70.97 27.03 70.97 62.21 99.38 51.42 144.42 89.23 116.94 127.05 144.42 117.3 103.76 108.38 103.76"/></svg>
|
|
Binary file
|
|
@@ -0,0 +1,316 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
6
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
7
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
8
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
version="1.1"
|
|
13
|
+
id="svg815"
|
|
14
|
+
xml:space="preserve"
|
|
15
|
+
width="428.18451"
|
|
16
|
+
height="214.00307"
|
|
17
|
+
viewBox="0 0 428.1845 214.00307"
|
|
18
|
+
sodipodi:docname="gloww.svg"
|
|
19
|
+
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"><metadata
|
|
20
|
+
id="metadata821"><rdf:RDF><cc:Work
|
|
21
|
+
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
|
22
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
|
23
|
+
id="defs819"><clipPath
|
|
24
|
+
clipPathUnits="userSpaceOnUse"
|
|
25
|
+
id="clipPath831"><path
|
|
26
|
+
d="M 0,595.276 H 841.89 V 0 H 0 Z"
|
|
27
|
+
id="path829"
|
|
28
|
+
inkscape:connector-curvature="0" /></clipPath></defs><sodipodi:namedview
|
|
29
|
+
pagecolor="#ffffff"
|
|
30
|
+
bordercolor="#666666"
|
|
31
|
+
borderopacity="1"
|
|
32
|
+
objecttolerance="10"
|
|
33
|
+
gridtolerance="10"
|
|
34
|
+
guidetolerance="10"
|
|
35
|
+
inkscape:pageopacity="0"
|
|
36
|
+
inkscape:pageshadow="2"
|
|
37
|
+
inkscape:window-width="3840"
|
|
38
|
+
inkscape:window-height="2035"
|
|
39
|
+
id="namedview817"
|
|
40
|
+
showgrid="false"
|
|
41
|
+
inkscape:zoom="2.2149389"
|
|
42
|
+
inkscape:cx="70.605298"
|
|
43
|
+
inkscape:cy="76.100796"
|
|
44
|
+
inkscape:window-x="-13"
|
|
45
|
+
inkscape:window-y="-13"
|
|
46
|
+
inkscape:window-maximized="1"
|
|
47
|
+
inkscape:current-layer="g823" /><g
|
|
48
|
+
id="g823"
|
|
49
|
+
inkscape:groupmode="layer"
|
|
50
|
+
inkscape:label="gloww logo 5"
|
|
51
|
+
transform="matrix(1.3333333,0,0,-1.3333333,-350.47026,534.75292)"><g
|
|
52
|
+
id="g825"><g
|
|
53
|
+
id="g827"
|
|
54
|
+
clip-path="url(#clipPath831)"><g
|
|
55
|
+
id="g833"
|
|
56
|
+
transform="translate(559.2401,270.5872)"><path
|
|
57
|
+
d="M 0,0 C -10.227,0 -18.711,6.046 -20.804,15.922 -22.895,6.046 -31.495,0 -41.836,0 -57.875,0 -66.476,11.738 -66.476,26.961 V 77.25 h 11.39 V 26.961 c 0,-9.759 4.532,-17.547 14.18,-17.547 9.644,0 14.293,7.788 14.293,17.547 V 77.25 h 11.387 V 26.961 c 0,-9.759 4.649,-17.547 14.296,-17.547 9.645,0 14.176,7.788 14.176,17.547 V 77.25 H 24.751 V 26.961 C 24.751,11.738 16.035,0 0,0"
|
|
58
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
59
|
+
id="path835"
|
|
60
|
+
inkscape:connector-curvature="0" /></g><g
|
|
61
|
+
id="g837"
|
|
62
|
+
transform="translate(492.7655,297.4895)"><path
|
|
63
|
+
d="m 0,0 c -0.019,-9.731 -4.666,-17.488 -14.291,-17.488 -9.648,0 -14.18,7.788 -14.18,17.547 V 50.348 H -39.86 V 0.059 c 0,-15.223 8.6,-26.961 24.639,-26.961 8.456,0 15.743,4.047 19.264,10.921 C 1.383,-11.554 0.009,-6.056 0,0"
|
|
64
|
+
style="fill:#c7a700;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
65
|
+
id="path839"
|
|
66
|
+
inkscape:connector-curvature="0" /></g><g
|
|
67
|
+
id="g841"
|
|
68
|
+
transform="translate(263.9667,248.22)"><path
|
|
69
|
+
d="m 0,0 c 0,-0.467 0.077,-0.899 0.23,-1.297 0.155,-0.398 0.367,-0.748 0.637,-1.051 0.272,-0.302 0.59,-0.539 0.956,-0.709 0.366,-0.169 0.756,-0.255 1.17,-0.255 0.414,0 0.804,0.088 1.17,0.263 0.366,0.176 0.687,0.414 0.963,0.717 0.276,0.303 0.493,0.655 0.652,1.059 0.159,0.403 0.239,0.837 0.239,1.304 0,0.456 -0.08,0.889 -0.239,1.298 C 5.619,1.737 5.402,2.093 5.126,2.396 4.85,2.698 4.532,2.938 4.171,3.112 3.811,3.287 3.423,3.375 3.009,3.375 2.596,3.375 2.205,3.287 1.839,3.112 1.473,2.938 1.154,2.695 0.884,2.388 0.612,2.079 0.398,1.721 0.238,1.312 0.08,0.904 0,0.467 0,0 m 3.009,-4.267 c -0.606,0 -1.159,0.115 -1.664,0.343 -0.504,0.228 -0.939,0.538 -1.305,0.931 -0.366,0.392 -0.65,0.848 -0.852,1.369 -0.202,0.52 -0.302,1.067 -0.302,1.64 0,0.584 0.103,1.135 0.31,1.655 0.207,0.52 0.493,0.976 0.86,1.369 0.366,0.393 0.8,0.706 1.304,0.939 0.505,0.234 1.054,0.35 1.649,0.35 0.594,0 1.143,-0.116 1.647,-0.35 C 5.16,3.746 5.595,3.433 5.961,3.04 6.327,2.647 6.614,2.191 6.82,1.671 7.028,1.151 7.132,0.6 7.132,0.016 7.132,-0.557 7.028,-1.104 6.82,-1.624 6.614,-2.145 6.327,-2.601 5.961,-2.993 5.595,-3.386 5.16,-3.696 4.656,-3.924 4.152,-4.152 3.603,-4.267 3.009,-4.267"
|
|
70
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
71
|
+
id="path843"
|
|
72
|
+
inkscape:connector-curvature="0" /></g><g
|
|
73
|
+
id="g845"
|
|
74
|
+
transform="translate(275.4276,243.9534)"><path
|
|
75
|
+
d="m 0,0 c -0.87,0 -1.527,0.301 -1.974,0.899 -0.446,0.6 -0.668,1.495 -0.668,2.683 v 4.871 h 1.081 v -4.68 c 0,-1.878 0.643,-2.818 1.927,-2.818 0.319,0 0.631,0.054 0.94,0.16 0.307,0.106 0.59,0.26 0.851,0.461 0.26,0.202 0.493,0.441 0.7,0.717 0.207,0.276 0.374,0.588 0.501,0.938 V 8.453 H 4.441 V 1.561 C 4.441,1.263 4.573,1.115 4.84,1.115 V 0.159 C 4.627,0.127 4.479,0.111 4.394,0.111 4.149,0.111 3.94,0.186 3.765,0.335 3.59,0.483 3.502,0.669 3.502,0.892 V 2.038 C 3.131,1.391 2.637,0.889 2.022,0.533 1.406,0.178 0.732,0 0,0"
|
|
76
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
77
|
+
id="path847"
|
|
78
|
+
inkscape:connector-curvature="0" /></g><g
|
|
79
|
+
id="g849"
|
|
80
|
+
transform="translate(286.3153,244.51)"><path
|
|
81
|
+
d="M 0,0 C -0.064,-0.031 -0.157,-0.073 -0.278,-0.127 -0.401,-0.18 -0.542,-0.232 -0.7,-0.285 -0.86,-0.339 -1.04,-0.387 -1.242,-0.43 c -0.201,-0.042 -0.414,-0.063 -0.636,-0.063 -0.233,0 -0.455,0.032 -0.668,0.096 -0.213,0.064 -0.398,0.162 -0.557,0.294 -0.16,0.132 -0.287,0.3 -0.382,0.501 -0.096,0.203 -0.144,0.436 -0.144,0.701 v 5.938 h -1.146 v 0.859 h 1.146 v 2.802 h 1.083 V 7.896 h 1.909 V 7.037 H -2.546 V 1.401 c 0.021,-0.307 0.127,-0.532 0.318,-0.676 0.191,-0.143 0.418,-0.214 0.684,-0.214 0.307,0 0.578,0.05 0.812,0.15 0.233,0.101 0.382,0.173 0.446,0.216 z"
|
|
82
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
83
|
+
id="path851"
|
|
84
|
+
inkscape:connector-curvature="0" /></g><path
|
|
85
|
+
d="m 287.589,252.406 h 1.083 v -8.294 h -1.083 z m 0,3.327 h 1.083 v -1.592 h -1.083 z"
|
|
86
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
87
|
+
id="path853"
|
|
88
|
+
inkscape:connector-curvature="0" /><g
|
|
89
|
+
id="g855"
|
|
90
|
+
transform="translate(291.0429,255.7327)"><path
|
|
91
|
+
d="m 0,0 h 1.082 v -9.741 c 0,-0.309 0.085,-0.549 0.255,-0.725 0.17,-0.175 0.408,-0.262 0.716,-0.262 0.116,0 0.255,0.016 0.414,0.047 0.16,0.033 0.307,0.075 0.445,0.127 l 0.192,-0.875 c -0.203,-0.085 -0.449,-0.154 -0.741,-0.207 -0.292,-0.052 -0.544,-0.08 -0.756,-0.08 -0.499,0 -0.891,0.142 -1.177,0.422 C 0.143,-11.013 0,-10.617 0,-10.107 Z"
|
|
92
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
93
|
+
id="path857"
|
|
94
|
+
inkscape:connector-curvature="0" /></g><g
|
|
95
|
+
id="g859"
|
|
96
|
+
transform="translate(297.9823,243.9534)"><path
|
|
97
|
+
d="M 0,0 C -0.647,0 -1.279,0.106 -1.895,0.319 -2.51,0.53 -3.04,0.839 -3.485,1.242 l 0.493,0.733 c 0.466,-0.383 0.94,-0.669 1.425,-0.86 0.482,-0.192 0.999,-0.287 1.551,-0.287 0.668,0 1.203,0.135 1.6,0.406 0.398,0.271 0.597,0.656 0.597,1.154 0,0.234 -0.053,0.427 -0.16,0.582 C 1.916,3.123 1.759,3.258 1.553,3.375 1.345,3.492 1.085,3.595 0.772,3.685 0.459,3.775 0.096,3.868 -0.318,3.964 -0.796,4.08 -1.209,4.197 -1.56,4.314 c -0.35,0.117 -0.639,0.249 -0.868,0.398 -0.227,0.149 -0.398,0.332 -0.51,0.55 -0.11,0.217 -0.166,0.49 -0.166,0.82 0,0.413 0.083,0.779 0.247,1.097 0.165,0.319 0.386,0.582 0.669,0.789 0.281,0.207 0.61,0.362 0.987,0.47 0.376,0.105 0.777,0.158 1.201,0.158 0.637,0 1.215,-0.103 1.735,-0.311 0.52,-0.206 0.94,-0.479 1.257,-0.819 L 2.468,6.83 C 2.159,7.147 1.785,7.387 1.345,7.545 0.904,7.705 0.446,7.784 -0.031,7.784 -0.318,7.784 -0.584,7.755 -0.828,7.697 -1.072,7.639 -1.287,7.545 -1.473,7.418 -1.658,7.291 -1.805,7.129 -1.91,6.933 -2.017,6.736 -2.069,6.506 -2.069,6.24 -2.069,6.017 -2.033,5.837 -1.958,5.699 -1.884,5.561 -1.762,5.441 -1.592,5.341 -1.422,5.239 -1.207,5.149 -0.947,5.07 -0.687,4.991 -0.371,4.909 0,4.823 0.53,4.696 0.997,4.569 1.4,4.441 1.804,4.314 2.141,4.166 2.412,3.996 2.683,3.826 2.887,3.619 3.024,3.375 3.162,3.131 3.231,2.834 3.231,2.483 3.231,1.719 2.939,1.115 2.356,0.669 1.771,0.224 0.986,0 0,0"
|
|
98
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
99
|
+
id="path861"
|
|
100
|
+
inkscape:connector-curvature="0" /></g><path
|
|
101
|
+
d="m 307.023,252.406 h 1.083 v -8.294 h -1.083 z m 0,3.327 h 1.083 v -1.592 h -1.083 z"
|
|
102
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
103
|
+
id="path863"
|
|
104
|
+
inkscape:connector-curvature="0" /><g
|
|
105
|
+
id="g865"
|
|
106
|
+
transform="translate(317.4023,244.1125)"><path
|
|
107
|
+
d="m 0,0 h -1.083 v 4.632 c 0,0.988 -0.143,1.704 -0.43,2.15 C -1.8,7.228 -2.245,7.45 -2.851,7.45 -3.168,7.45 -3.486,7.392 -3.805,7.275 -4.124,7.158 -4.421,6.993 -4.696,6.782 -4.973,6.569 -5.214,6.317 -5.421,6.025 -5.628,5.733 -5.784,5.418 -5.89,5.078 V 0 h -1.083 v 8.294 h 0.987 V 6.416 c 0.17,0.297 0.379,0.569 0.629,0.819 0.25,0.249 0.527,0.464 0.836,0.645 0.307,0.181 0.633,0.319 0.979,0.414 0.344,0.096 0.702,0.143 1.073,0.143 0.468,0 0.859,-0.084 1.17,-0.255 C -0.985,8.013 -0.732,7.773 -0.542,7.467 -0.351,7.158 -0.213,6.782 -0.129,6.336 -0.043,5.891 0,5.396 0,4.855 Z"
|
|
108
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
109
|
+
id="path867"
|
|
110
|
+
inkscape:connector-curvature="0" /></g><g
|
|
111
|
+
id="g869"
|
|
112
|
+
transform="translate(320.0917,244.1125)"><path
|
|
113
|
+
d="M 0,0 V 6.463 H -1.146 V 7.322 H 0 v 1.195 c 0,1.018 0.217,1.817 0.652,2.396 0.435,0.578 1.035,0.867 1.799,0.867 0.319,0 0.632,-0.048 0.939,-0.143 0.308,-0.096 0.574,-0.223 0.796,-0.383 L 3.853,10.475 c -0.15,0.117 -0.332,0.207 -0.55,0.27 -0.217,0.064 -0.433,0.096 -0.644,0.096 -0.511,0 -0.9,-0.196 -1.171,-0.589 C 1.218,9.859 1.082,9.291 1.082,8.548 V 7.322 H 3.374 V 6.463 H 1.082 V 0 Z"
|
|
114
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
115
|
+
id="path871"
|
|
116
|
+
inkscape:connector-curvature="0" /></g><g
|
|
117
|
+
id="g873"
|
|
118
|
+
transform="translate(325.5985,248.22)"><path
|
|
119
|
+
d="m 0,0 c 0,-0.467 0.077,-0.899 0.23,-1.297 0.155,-0.398 0.367,-0.748 0.637,-1.051 0.272,-0.302 0.59,-0.539 0.956,-0.709 0.366,-0.169 0.756,-0.255 1.17,-0.255 0.414,0 0.804,0.088 1.17,0.263 0.366,0.176 0.687,0.414 0.963,0.717 0.276,0.303 0.493,0.655 0.652,1.059 0.159,0.403 0.239,0.837 0.239,1.304 0,0.456 -0.08,0.889 -0.239,1.298 C 5.619,1.737 5.402,2.093 5.126,2.396 4.85,2.698 4.532,2.938 4.171,3.112 3.811,3.287 3.423,3.375 3.009,3.375 2.596,3.375 2.205,3.287 1.839,3.112 1.473,2.938 1.154,2.695 0.884,2.388 0.612,2.079 0.398,1.721 0.238,1.312 0.08,0.904 0,0.467 0,0 m 3.009,-4.267 c -0.606,0 -1.159,0.115 -1.664,0.343 -0.504,0.228 -0.939,0.538 -1.305,0.931 -0.366,0.392 -0.65,0.848 -0.852,1.369 -0.202,0.52 -0.302,1.067 -0.302,1.64 0,0.584 0.103,1.135 0.31,1.655 0.207,0.52 0.493,0.976 0.86,1.369 0.366,0.393 0.8,0.706 1.304,0.939 0.505,0.234 1.054,0.35 1.649,0.35 0.594,0 1.143,-0.116 1.647,-0.35 C 5.16,3.746 5.595,3.433 5.961,3.04 6.327,2.647 6.614,2.191 6.82,1.671 7.028,1.151 7.132,0.6 7.132,0.016 7.132,-0.557 7.028,-1.104 6.82,-1.624 6.614,-2.145 6.327,-2.601 5.961,-2.993 5.595,-3.386 5.16,-3.696 4.656,-3.924 4.152,-4.152 3.603,-4.267 3.009,-4.267"
|
|
120
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
121
|
+
id="path875"
|
|
122
|
+
inkscape:connector-curvature="0" /></g><g
|
|
123
|
+
id="g877"
|
|
124
|
+
transform="translate(338.6357,251.4514)"><path
|
|
125
|
+
d="m 0,0 c -0.732,-0.021 -1.369,-0.223 -1.91,-0.604 -0.542,-0.382 -0.924,-0.909 -1.146,-1.577 v -5.158 h -1.083 v 8.294 h 1.019 v -1.989 c 0.286,0.583 0.663,1.068 1.13,1.455 0.468,0.388 0.971,0.582 1.512,0.582 h 0.271 c 0.085,0 0.153,-0.006 0.207,-0.016 z"
|
|
126
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
127
|
+
id="path879"
|
|
128
|
+
inkscape:connector-curvature="0" /></g><g
|
|
129
|
+
id="g881"
|
|
130
|
+
transform="translate(352.4208,244.1125)"><path
|
|
131
|
+
d="m 0,0 h -1.083 v 4.632 c 0,0.967 -0.15,1.678 -0.453,2.134 C -1.839,7.222 -2.298,7.45 -2.912,7.45 -3.231,7.45 -3.531,7.392 -3.813,7.275 -4.093,7.158 -4.354,6.993 -4.593,6.782 -4.831,6.569 -5.041,6.317 -5.221,6.025 -5.402,5.733 -5.539,5.412 -5.635,5.062 V 0 h -1.082 v 4.632 c 0,0.988 -0.149,1.704 -0.446,2.15 -0.297,0.446 -0.754,0.668 -1.369,0.668 -0.627,0 -1.184,-0.218 -1.671,-0.652 -0.489,-0.436 -0.839,-1.009 -1.051,-1.72 V 0 h -1.083 v 8.294 h 0.987 V 6.416 c 0.34,0.637 0.786,1.133 1.337,1.488 0.552,0.356 1.162,0.533 1.831,0.533 0.701,0 1.262,-0.196 1.687,-0.588 0.425,-0.393 0.68,-0.909 0.765,-1.544 0.774,1.421 1.846,2.132 3.215,2.132 0.456,0 0.846,-0.084 1.17,-0.255 0.324,-0.169 0.583,-0.411 0.781,-0.723 0.195,-0.313 0.338,-0.69 0.429,-1.131 C -0.045,5.888 0,5.396 0,4.855 Z"
|
|
132
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
133
|
+
id="path883"
|
|
134
|
+
inkscape:connector-curvature="0" /></g><g
|
|
135
|
+
id="g885"
|
|
136
|
+
transform="translate(357.1317,244.7815)"><path
|
|
137
|
+
d="m 0,0 c 0.478,0 0.953,0.104 1.425,0.311 0.472,0.206 0.846,0.49 1.123,0.851 0.073,0.095 0.137,0.199 0.19,0.311 0.053,0.111 0.08,0.214 0.08,0.31 V 3.136 C 2.457,3.274 2.081,3.38 1.688,3.454 1.295,3.528 0.913,3.565 0.542,3.565 -0.232,3.565 -0.862,3.409 -1.345,3.096 -1.827,2.783 -2.069,2.351 -2.069,1.799 c 0,-0.223 0.043,-0.441 0.127,-0.653 0.085,-0.211 0.215,-0.403 0.39,-0.573 0.176,-0.17 0.39,-0.307 0.645,-0.414 C -0.651,0.053 -0.351,0 0,0 m -0.27,-0.828 c -0.425,0 -0.812,0.066 -1.162,0.199 -0.35,0.133 -0.65,0.316 -0.9,0.55 -0.249,0.233 -0.443,0.503 -0.58,0.811 -0.139,0.308 -0.208,0.632 -0.208,0.972 0,0.381 0.085,0.729 0.255,1.042 0.17,0.313 0.409,0.581 0.717,0.804 0.306,0.222 0.675,0.394 1.106,0.517 0.43,0.122 0.904,0.183 1.424,0.183 0.414,0 0.839,-0.037 1.274,-0.111 C 2.091,4.064 2.479,3.958 2.818,3.82 v 0.748 c 0,0.733 -0.21,1.314 -0.629,1.744 C 1.77,6.742 1.204,6.956 0.494,6.956 0.048,6.956 -0.396,6.871 -0.835,6.701 -1.275,6.532 -1.724,6.287 -2.18,5.97 l -0.383,0.716 c 0.542,0.36 1.067,0.631 1.577,0.811 0.508,0.181 1.039,0.271 1.591,0.271 1.008,0 1.809,-0.292 2.404,-0.875 C 3.604,6.309 3.9,5.502 3.9,4.474 V 0.732 C 3.9,0.435 4.028,0.287 4.282,0.287 V -0.669 C 4.197,-0.68 4.118,-0.687 4.044,-0.692 3.969,-0.698 3.905,-0.701 3.853,-0.701 3.641,-0.701 3.446,-0.637 3.271,-0.509 3.097,-0.382 2.998,-0.19 2.978,0.063 L 2.945,0.717 C 2.585,0.229 2.11,-0.151 1.521,-0.422 0.932,-0.692 0.335,-0.828 -0.27,-0.828"
|
|
138
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
139
|
+
id="path887"
|
|
140
|
+
inkscape:connector-curvature="0" /></g><g
|
|
141
|
+
id="g889"
|
|
142
|
+
transform="translate(367.288,244.51)"><path
|
|
143
|
+
d="M 0,0 C -0.063,-0.031 -0.156,-0.073 -0.277,-0.127 -0.4,-0.18 -0.541,-0.232 -0.699,-0.285 c -0.16,-0.054 -0.34,-0.102 -0.542,-0.145 -0.201,-0.042 -0.414,-0.063 -0.636,-0.063 -0.234,0 -0.457,0.032 -0.669,0.096 -0.213,0.064 -0.398,0.162 -0.558,0.294 -0.159,0.132 -0.286,0.3 -0.382,0.501 -0.095,0.203 -0.143,0.436 -0.143,0.701 v 5.938 h -1.146 v 0.859 h 1.146 v 2.802 h 1.083 V 7.896 h 1.91 V 7.037 h -1.91 V 1.401 c 0.021,-0.307 0.127,-0.532 0.318,-0.676 0.191,-0.143 0.419,-0.214 0.684,-0.214 0.308,0 0.579,0.05 0.813,0.15 0.233,0.101 0.382,0.173 0.446,0.216 z"
|
|
144
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
145
|
+
id="path891"
|
|
146
|
+
inkscape:connector-curvature="0" /></g><path
|
|
147
|
+
d="m 368.562,252.406 h 1.083 v -8.294 h -1.083 z m 0,3.327 h 1.083 v -1.592 h -1.083 z"
|
|
148
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
149
|
+
id="path893"
|
|
150
|
+
inkscape:connector-curvature="0" /><g
|
|
151
|
+
id="g895"
|
|
152
|
+
transform="translate(375.5185,244.9084)"><path
|
|
153
|
+
d="m 0,0 c 0.329,0 0.633,0.054 0.915,0.16 0.281,0.106 0.541,0.246 0.779,0.421 0.24,0.175 0.452,0.383 0.638,0.622 0.185,0.237 0.353,0.49 0.501,0.755 V 4.521 C 2.791,4.808 2.68,5.081 2.499,5.341 2.318,5.601 2.098,5.831 1.838,6.033 1.578,6.235 1.294,6.395 0.986,6.511 0.678,6.628 0.376,6.687 0.079,6.687 -0.366,6.687 -0.777,6.59 -1.154,6.399 -1.531,6.208 -1.854,5.957 -2.126,5.644 -2.396,5.33 -2.605,4.972 -2.754,4.568 -2.903,4.165 -2.978,3.752 -2.978,3.327 c 0,-0.445 0.075,-0.87 0.224,-1.273 0.149,-0.404 0.352,-0.756 0.612,-1.059 0.26,-0.303 0.574,-0.543 0.94,-0.724 C -0.836,0.091 -0.436,0 0,0 m -0.335,-0.955 c -0.562,0 -1.074,0.119 -1.536,0.358 -0.461,0.24 -0.857,0.557 -1.186,0.955 -0.329,0.398 -0.584,0.855 -0.763,1.37 -0.182,0.514 -0.272,1.053 -0.272,1.615 0,0.574 0.101,1.12 0.303,1.639 0.201,0.521 0.479,0.977 0.836,1.37 0.355,0.392 0.774,0.706 1.257,0.939 0.483,0.233 1.001,0.35 1.551,0.35 0.649,0 1.246,-0.166 1.792,-0.501 C 2.193,6.806 2.626,6.384 2.944,5.875 V 7.498 H 3.916 V -2.738 c 0,-0.296 0.127,-0.45 0.382,-0.461 V -4.138 C 4.148,-4.17 3.995,-4.186 3.836,-4.186 3.56,-4.186 3.323,-4.091 3.128,-3.9 2.931,-3.708 2.833,-3.476 2.833,-3.199 V 0.924 C 2.43,0.308 1.96,-0.159 1.424,-0.478 0.889,-0.796 0.302,-0.955 -0.335,-0.955"
|
|
154
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
155
|
+
id="path897"
|
|
156
|
+
inkscape:connector-curvature="0" /></g><g
|
|
157
|
+
id="g899"
|
|
158
|
+
transform="translate(384.3192,243.9534)"><path
|
|
159
|
+
d="m 0,0 c -0.87,0 -1.528,0.301 -1.974,0.899 -0.445,0.6 -0.667,1.495 -0.667,2.683 v 4.871 h 1.08 v -4.68 c 0,-1.878 0.643,-2.818 1.927,-2.818 0.319,0 0.631,0.054 0.94,0.16 0.307,0.106 0.59,0.26 0.851,0.461 0.26,0.202 0.493,0.441 0.7,0.717 0.207,0.276 0.374,0.588 0.501,0.938 V 8.453 H 4.441 V 1.561 C 4.441,1.263 4.573,1.115 4.84,1.115 V 0.159 C 4.627,0.127 4.479,0.111 4.394,0.111 4.149,0.111 3.94,0.186 3.765,0.335 3.59,0.483 3.502,0.669 3.502,0.892 V 2.038 C 3.13,1.391 2.637,0.889 2.022,0.533 1.406,0.178 0.732,0 0,0"
|
|
160
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
161
|
+
id="path901"
|
|
162
|
+
inkscape:connector-curvature="0" /></g><g
|
|
163
|
+
id="g903"
|
|
164
|
+
transform="translate(397.8974,248.6975)"><path
|
|
165
|
+
d="m 0,0 c -0.032,0.445 -0.135,0.852 -0.31,1.218 -0.175,0.366 -0.398,0.681 -0.669,0.947 -0.27,0.265 -0.586,0.472 -0.947,0.62 -0.36,0.15 -0.742,0.224 -1.146,0.224 -0.404,0 -0.785,-0.074 -1.146,-0.224 C -4.578,2.637 -4.895,2.43 -5.165,2.165 -5.437,1.899 -5.653,1.581 -5.818,1.209 -5.982,0.838 -6.08,0.435 -6.112,0 Z m -3.056,-4.744 c -0.605,0 -1.162,0.114 -1.672,0.343 -0.508,0.227 -0.949,0.541 -1.321,0.938 -0.371,0.399 -0.66,0.858 -0.867,1.378 -0.207,0.52 -0.311,1.077 -0.311,1.671 0,0.584 0.104,1.133 0.311,1.647 0.207,0.515 0.496,0.966 0.867,1.354 0.372,0.387 0.81,0.695 1.314,0.923 0.503,0.228 1.058,0.342 1.663,0.342 0.605,0 1.159,-0.114 1.664,-0.342 C -0.904,3.282 -0.473,2.972 -0.111,2.579 0.249,2.187 0.531,1.735 0.732,1.226 0.935,0.716 1.035,0.176 1.035,-0.398 1.035,-0.483 1.032,-0.567 1.027,-0.652 1.021,-0.738 1.014,-0.796 1.003,-0.828 H -6.08 c 0.031,-0.445 0.135,-0.857 0.31,-1.234 0.175,-0.376 0.398,-0.703 0.668,-0.979 0.271,-0.275 0.584,-0.49 0.94,-0.644 0.355,-0.155 0.735,-0.231 1.139,-0.231 0.274,0 0.545,0.037 0.811,0.111 0.265,0.075 0.509,0.176 0.733,0.303 0.221,0.128 0.421,0.284 0.596,0.469 0.175,0.186 0.311,0.39 0.405,0.613 l 0.94,-0.255 C 0.334,-2.981 0.154,-3.261 -0.079,-3.51 c -0.233,-0.249 -0.504,-0.468 -0.813,-0.653 -0.307,-0.186 -0.647,-0.328 -1.018,-0.43 -0.371,-0.1 -0.753,-0.151 -1.146,-0.151"
|
|
166
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
167
|
+
id="path905"
|
|
168
|
+
inkscape:connector-curvature="0" /></g><g
|
|
169
|
+
id="g907"
|
|
170
|
+
transform="translate(403.3407,243.9534)"><path
|
|
171
|
+
d="m 0,0 c -0.646,0 -1.278,0.106 -1.894,0.319 -0.615,0.211 -1.145,0.52 -1.591,0.923 l 0.494,0.733 c 0.466,-0.383 0.94,-0.669 1.424,-0.86 0.483,-0.192 1,-0.287 1.551,-0.287 0.669,0 1.203,0.135 1.601,0.406 0.398,0.271 0.597,0.656 0.597,1.154 0,0.234 -0.053,0.427 -0.16,0.582 C 1.916,3.123 1.76,3.258 1.553,3.375 1.346,3.492 1.086,3.595 0.772,3.685 0.46,3.775 0.097,3.868 -0.317,3.964 -0.796,4.08 -1.209,4.197 -1.56,4.314 c -0.349,0.117 -0.638,0.249 -0.867,0.398 -0.227,0.149 -0.398,0.332 -0.51,0.55 -0.11,0.217 -0.167,0.49 -0.167,0.82 0,0.413 0.083,0.779 0.248,1.097 0.165,0.319 0.386,0.582 0.668,0.789 0.282,0.207 0.61,0.362 0.987,0.47 C -0.825,8.543 -0.424,8.596 0,8.596 0.638,8.596 1.216,8.493 1.736,8.285 2.256,8.079 2.675,7.806 2.993,7.466 L 2.469,6.83 C 2.16,7.147 1.786,7.387 1.346,7.545 0.905,7.705 0.447,7.784 -0.031,7.784 -0.317,7.784 -0.583,7.755 -0.827,7.697 -1.071,7.639 -1.286,7.545 -1.472,7.418 -1.657,7.291 -1.804,7.129 -1.909,6.933 -2.016,6.736 -2.068,6.506 -2.068,6.24 c 0,-0.223 0.036,-0.403 0.11,-0.541 C -1.883,5.561 -1.761,5.441 -1.592,5.341 -1.421,5.239 -1.207,5.149 -0.946,5.07 -0.687,4.991 -0.371,4.909 0,4.823 0.531,4.696 0.998,4.569 1.401,4.441 1.805,4.314 2.142,4.166 2.413,3.996 2.683,3.826 2.888,3.619 3.025,3.375 3.163,3.131 3.232,2.834 3.232,2.483 3.232,1.719 2.94,1.115 2.357,0.669 1.772,0.224 0.987,0 0,0"
|
|
172
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
173
|
+
id="path909"
|
|
174
|
+
inkscape:connector-curvature="0" /></g><g
|
|
175
|
+
id="g911"
|
|
176
|
+
transform="translate(416.0439,244.9084)"><path
|
|
177
|
+
d="M 0,0 C 0.275,0 0.565,0.054 0.867,0.16 1.17,0.266 1.451,0.411 1.711,0.598 1.971,0.782 2.196,1.001 2.388,1.25 2.579,1.499 2.695,1.768 2.737,2.054 V 4.616 C 2.632,4.903 2.476,5.171 2.269,5.42 2.062,5.67 1.828,5.891 1.567,6.081 1.308,6.272 1.032,6.421 0.74,6.526 0.447,6.634 0.159,6.687 -0.127,6.687 -0.573,6.687 -0.979,6.59 -1.345,6.399 -1.711,6.208 -2.021,5.957 -2.276,5.644 -2.531,5.33 -2.73,4.972 -2.873,4.568 -3.018,4.165 -3.089,3.752 -3.089,3.327 c 0,-0.445 0.08,-0.87 0.239,-1.273 C -2.69,1.65 -2.473,1.298 -2.196,0.995 -1.921,0.692 -1.595,0.452 -1.218,0.271 -0.842,0.091 -0.436,0 0,0 m -0.223,-0.955 c -0.573,0 -1.104,0.119 -1.591,0.358 -0.49,0.24 -0.912,0.555 -1.267,0.948 -0.356,0.392 -0.631,0.846 -0.827,1.361 -0.196,0.514 -0.295,1.054 -0.295,1.615 0,0.584 0.097,1.139 0.287,1.663 0.191,0.527 0.453,0.986 0.788,1.378 0.334,0.393 0.732,0.703 1.193,0.931 0.462,0.228 0.969,0.342 1.521,0.342 0.7,0 1.321,-0.182 1.862,-0.548 0.541,-0.366 0.971,-0.81 1.289,-1.33 v 5.061 H 3.82 V 0.605 C 3.82,0.308 3.947,0.16 4.202,0.16 v -0.956 c -0.18,-0.032 -0.324,-0.048 -0.43,-0.048 -0.265,0 -0.482,0.077 -0.653,0.232 -0.169,0.153 -0.254,0.337 -0.254,0.549 V 0.812 C 2.525,0.271 2.077,-0.159 1.52,-0.478 0.963,-0.796 0.382,-0.955 -0.223,-0.955"
|
|
178
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
179
|
+
id="path913"
|
|
180
|
+
inkscape:connector-curvature="0" /></g><g
|
|
181
|
+
id="g915"
|
|
182
|
+
transform="translate(428.9853,248.6975)"><path
|
|
183
|
+
d="M 0,0 C -0.032,0.445 -0.136,0.852 -0.311,1.218 -0.486,1.584 -0.709,1.899 -0.979,2.165 -1.25,2.43 -1.565,2.637 -1.926,2.785 -2.287,2.935 -2.669,3.009 -3.072,3.009 -3.476,3.009 -3.857,2.935 -4.219,2.785 -4.579,2.637 -4.896,2.43 -5.166,2.165 -5.437,1.899 -5.654,1.581 -5.818,1.209 -5.983,0.838 -6.081,0.435 -6.113,0 Z m -3.057,-4.744 c -0.605,0 -1.162,0.114 -1.672,0.343 -0.508,0.227 -0.949,0.541 -1.321,0.938 -0.371,0.399 -0.66,0.858 -0.867,1.378 -0.207,0.52 -0.311,1.077 -0.311,1.671 0,0.584 0.104,1.133 0.311,1.647 0.207,0.515 0.496,0.966 0.867,1.354 0.372,0.387 0.81,0.695 1.314,0.923 0.504,0.228 1.058,0.342 1.664,0.342 0.604,0 1.159,-0.114 1.663,-0.342 C -0.905,3.282 -0.474,2.972 -0.112,2.579 0.248,2.187 0.53,1.735 0.731,1.226 0.934,0.716 1.034,0.176 1.034,-0.398 1.034,-0.483 1.031,-0.567 1.026,-0.652 1.021,-0.738 1.013,-0.796 1.002,-0.828 h -7.083 c 0.031,-0.445 0.135,-0.857 0.31,-1.234 0.175,-0.376 0.398,-0.703 0.668,-0.979 0.271,-0.275 0.584,-0.49 0.94,-0.644 0.355,-0.155 0.735,-0.231 1.139,-0.231 0.275,0 0.545,0.037 0.811,0.111 0.266,0.075 0.509,0.176 0.733,0.303 0.221,0.128 0.421,0.284 0.596,0.469 0.175,0.186 0.311,0.39 0.405,0.613 l 0.94,-0.255 C 0.333,-2.981 0.153,-3.261 -0.08,-3.51 c -0.233,-0.249 -0.504,-0.468 -0.813,-0.653 -0.306,-0.186 -0.646,-0.328 -1.017,-0.43 -0.372,-0.1 -0.754,-0.151 -1.147,-0.151"
|
|
184
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
185
|
+
id="path917"
|
|
186
|
+
inkscape:connector-curvature="0" /></g><g
|
|
187
|
+
id="g919"
|
|
188
|
+
transform="translate(439.3788,244.9084)"><path
|
|
189
|
+
d="M 0,0 C 0.318,0 0.631,0.059 0.939,0.176 1.247,0.292 1.525,0.449 1.775,0.645 2.024,0.842 2.233,1.062 2.404,1.306 2.573,1.549 2.685,1.799 2.737,2.054 V 4.616 C 2.621,4.914 2.46,5.19 2.252,5.444 2.046,5.699 1.814,5.917 1.56,6.097 1.306,6.278 1.032,6.421 0.74,6.526 0.448,6.634 0.154,6.687 -0.144,6.687 -0.61,6.687 -1.024,6.588 -1.385,6.392 -1.746,6.194 -2.054,5.938 -2.309,5.62 -2.563,5.301 -2.757,4.94 -2.889,4.537 -3.021,4.134 -3.089,3.726 -3.089,3.312 -3.089,2.866 -3.008,2.441 -2.85,2.038 -2.69,1.635 -2.473,1.282 -2.196,0.979 -1.921,0.677 -1.595,0.438 -1.218,0.263 -0.842,0.088 -0.436,0 0,0 m -0.302,-0.907 c -0.574,0 -1.096,0.119 -1.568,0.358 -0.473,0.239 -0.882,0.554 -1.227,0.946 -0.343,0.393 -0.612,0.845 -0.803,1.355 -0.191,0.509 -0.287,1.034 -0.287,1.575 0,0.574 0.093,1.122 0.279,1.648 0.185,0.526 0.448,0.984 0.788,1.377 0.34,0.392 0.745,0.706 1.219,0.939 0.471,0.233 0.994,0.35 1.567,0.35 0.71,0 1.326,-0.177 1.846,-0.533 C 2.032,6.753 2.478,6.305 2.85,5.763 V 7.498 H 3.82 V -0.828 C 3.82,-1.4 3.712,-1.906 3.494,-2.348 3.276,-2.788 2.984,-3.157 2.618,-3.453 2.252,-3.751 1.82,-3.974 1.321,-4.122 0.823,-4.271 0.297,-4.346 -0.255,-4.346 c -0.944,0 -1.709,0.171 -2.292,0.51 -0.584,0.339 -1.057,0.796 -1.417,1.369 l 0.669,0.525 c 0.329,-0.531 0.764,-0.92 1.305,-1.17 0.542,-0.248 1.12,-0.374 1.735,-0.374 0.403,0 0.788,0.056 1.154,0.168 0.367,0.111 0.685,0.276 0.955,0.493 0.271,0.218 0.486,0.493 0.645,0.827 0.159,0.335 0.238,0.725 0.238,1.17 v 1.64 C 2.409,0.281 1.972,-0.138 1.425,-0.445 0.878,-0.754 0.303,-0.907 -0.302,-0.907"
|
|
190
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
191
|
+
id="path921"
|
|
192
|
+
inkscape:connector-curvature="0" /></g><g
|
|
193
|
+
id="g923"
|
|
194
|
+
transform="translate(452.2099,248.6975)"><path
|
|
195
|
+
d="M 0,0 C -0.033,0.445 -0.136,0.852 -0.311,1.218 -0.486,1.584 -0.709,1.899 -0.979,2.165 -1.25,2.43 -1.566,2.637 -1.926,2.785 -2.287,2.935 -2.669,3.009 -3.072,3.009 -3.476,3.009 -3.857,2.935 -4.219,2.785 -4.579,2.637 -4.896,2.43 -5.166,2.165 -5.437,1.899 -5.654,1.581 -5.818,1.209 -5.983,0.838 -6.081,0.435 -6.113,0 Z m -3.057,-4.744 c -0.605,0 -1.162,0.114 -1.672,0.343 -0.508,0.227 -0.949,0.541 -1.321,0.938 -0.371,0.399 -0.66,0.858 -0.867,1.378 -0.207,0.52 -0.311,1.077 -0.311,1.671 0,0.584 0.104,1.133 0.311,1.647 0.207,0.515 0.496,0.966 0.867,1.354 0.372,0.387 0.81,0.695 1.314,0.923 0.504,0.228 1.058,0.342 1.664,0.342 0.604,0 1.159,-0.114 1.663,-0.342 C -0.905,3.282 -0.474,2.972 -0.112,2.579 0.248,2.187 0.53,1.735 0.731,1.226 0.934,0.716 1.034,0.176 1.034,-0.398 1.034,-0.483 1.031,-0.567 1.026,-0.652 1.021,-0.738 1.013,-0.796 1.002,-0.828 h -7.083 c 0.031,-0.445 0.135,-0.857 0.31,-1.234 0.175,-0.376 0.398,-0.703 0.668,-0.979 0.271,-0.275 0.584,-0.49 0.94,-0.644 0.355,-0.155 0.735,-0.231 1.139,-0.231 0.274,0 0.545,0.037 0.811,0.111 0.266,0.075 0.509,0.176 0.733,0.303 0.221,0.128 0.421,0.284 0.596,0.469 0.175,0.186 0.311,0.39 0.405,0.613 l 0.94,-0.255 C 0.333,-2.981 0.153,-3.261 -0.08,-3.51 -0.313,-3.759 -0.584,-3.978 -0.893,-4.163 -1.2,-4.349 -1.539,-4.491 -1.91,-4.593 c -0.372,-0.1 -0.754,-0.151 -1.147,-0.151"
|
|
196
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
197
|
+
id="path925"
|
|
198
|
+
inkscape:connector-curvature="0" /></g><g
|
|
199
|
+
id="g927"
|
|
200
|
+
transform="translate(457.6532,243.9534)"><path
|
|
201
|
+
d="M 0,0 C -0.647,0 -1.279,0.106 -1.895,0.319 -2.51,0.53 -3.04,0.839 -3.485,1.242 l 0.493,0.733 c 0.466,-0.383 0.94,-0.669 1.425,-0.86 0.482,-0.192 0.999,-0.287 1.551,-0.287 0.668,0 1.203,0.135 1.6,0.406 0.398,0.271 0.597,0.656 0.597,1.154 0,0.234 -0.053,0.427 -0.16,0.582 C 1.916,3.123 1.759,3.258 1.553,3.375 1.345,3.492 1.085,3.595 0.772,3.685 0.459,3.775 0.096,3.868 -0.318,3.964 -0.796,4.08 -1.21,4.197 -1.56,4.314 c -0.35,0.117 -0.639,0.249 -0.868,0.398 -0.227,0.149 -0.398,0.332 -0.51,0.55 -0.11,0.217 -0.166,0.49 -0.166,0.82 0,0.413 0.083,0.779 0.247,1.097 0.165,0.319 0.386,0.582 0.669,0.789 0.281,0.207 0.609,0.362 0.986,0.47 C -0.826,8.543 -0.425,8.596 0,8.596 0.637,8.596 1.215,8.493 1.735,8.285 2.255,8.079 2.674,7.806 2.992,7.466 L 2.468,6.83 C 2.159,7.147 1.785,7.387 1.345,7.545 0.904,7.705 0.446,7.784 -0.032,7.784 -0.318,7.784 -0.584,7.755 -0.828,7.697 -1.072,7.639 -1.287,7.545 -1.473,7.418 -1.658,7.291 -1.805,7.129 -1.91,6.933 -2.017,6.736 -2.069,6.506 -2.069,6.24 -2.069,6.017 -2.033,5.837 -1.958,5.699 -1.884,5.561 -1.762,5.441 -1.593,5.341 -1.422,5.239 -1.208,5.149 -0.947,5.07 -0.687,4.991 -0.371,4.909 0,4.823 0.53,4.696 0.997,4.569 1.4,4.441 1.804,4.314 2.141,4.166 2.412,3.996 2.682,3.826 2.887,3.619 3.024,3.375 3.162,3.131 3.231,2.834 3.231,2.483 3.231,1.719 2.939,1.115 2.356,0.669 1.771,0.224 0.986,0 0,0"
|
|
202
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
203
|
+
id="path929"
|
|
204
|
+
inkscape:connector-curvature="0" /></g><g
|
|
205
|
+
id="g931"
|
|
206
|
+
transform="translate(466.6151,244.51)"><path
|
|
207
|
+
d="M 0,0 C -0.063,-0.031 -0.157,-0.073 -0.278,-0.127 -0.4,-0.18 -0.542,-0.232 -0.7,-0.285 -0.86,-0.339 -1.04,-0.387 -1.242,-0.43 c -0.201,-0.042 -0.414,-0.063 -0.636,-0.063 -0.234,0 -0.456,0.032 -0.669,0.096 -0.212,0.064 -0.398,0.162 -0.557,0.294 -0.16,0.132 -0.287,0.3 -0.382,0.501 -0.096,0.203 -0.144,0.436 -0.144,0.701 v 5.938 h -1.146 v 0.859 h 1.146 v 2.802 h 1.083 V 7.896 h 1.91 V 7.037 h -1.91 V 1.401 c 0.021,-0.307 0.127,-0.532 0.318,-0.676 0.191,-0.143 0.419,-0.214 0.685,-0.214 0.307,0 0.578,0.05 0.812,0.15 0.233,0.101 0.382,0.173 0.446,0.216 z"
|
|
208
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
209
|
+
id="path933"
|
|
210
|
+
inkscape:connector-curvature="0" /></g><path
|
|
211
|
+
d="m 467.889,252.406 h 1.083 v -8.294 h -1.083 z m 0,3.327 h 1.083 v -1.592 h -1.083 z"
|
|
212
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
213
|
+
id="path935"
|
|
214
|
+
inkscape:connector-curvature="0" /><g
|
|
215
|
+
id="g937"
|
|
216
|
+
transform="translate(471.8661,248.22)"><path
|
|
217
|
+
d="m 0,0 c 0,-0.467 0.077,-0.899 0.231,-1.297 0.154,-0.398 0.367,-0.748 0.636,-1.051 0.272,-0.302 0.59,-0.539 0.956,-0.709 0.366,-0.169 0.756,-0.255 1.17,-0.255 0.414,0 0.804,0.088 1.17,0.263 0.366,0.176 0.688,0.414 0.963,0.717 0.276,0.303 0.494,0.655 0.652,1.059 0.16,0.403 0.24,0.837 0.24,1.304 0,0.456 -0.08,0.889 -0.24,1.298 C 5.62,1.737 5.402,2.093 5.126,2.396 4.851,2.698 4.532,2.938 4.171,3.112 3.811,3.287 3.423,3.375 3.009,3.375 2.596,3.375 2.205,3.287 1.839,3.112 1.473,2.938 1.154,2.695 0.885,2.388 0.613,2.079 0.398,1.721 0.239,1.312 0.08,0.904 0,0.467 0,0 m 3.009,-4.267 c -0.606,0 -1.159,0.115 -1.663,0.343 -0.505,0.228 -0.94,0.538 -1.306,0.931 -0.366,0.392 -0.649,0.848 -0.852,1.369 -0.201,0.52 -0.302,1.067 -0.302,1.64 0,0.584 0.104,1.135 0.31,1.655 0.208,0.52 0.493,0.976 0.86,1.369 0.366,0.393 0.8,0.706 1.305,0.939 0.504,0.234 1.053,0.35 1.648,0.35 0.595,0 1.143,-0.116 1.647,-0.35 C 5.161,3.746 5.596,3.433 5.962,3.04 6.328,2.647 6.614,2.191 6.821,1.671 7.028,1.151 7.133,0.6 7.133,0.016 7.133,-0.557 7.028,-1.104 6.821,-1.624 6.614,-2.145 6.328,-2.601 5.962,-2.993 5.596,-3.386 5.161,-3.696 4.656,-3.924 4.152,-4.152 3.604,-4.267 3.009,-4.267"
|
|
218
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
219
|
+
id="path939"
|
|
220
|
+
inkscape:connector-curvature="0" /></g><g
|
|
221
|
+
id="g941"
|
|
222
|
+
transform="translate(487.7362,244.1125)"><path
|
|
223
|
+
d="m 0,0 h -1.083 v 4.632 c 0,0.988 -0.143,1.704 -0.43,2.15 C -1.799,7.228 -2.245,7.45 -2.85,7.45 -3.168,7.45 -3.486,7.392 -3.805,7.275 -4.123,7.158 -4.42,6.993 -4.696,6.782 -4.973,6.569 -5.213,6.317 -5.421,6.025 -5.627,5.733 -5.784,5.418 -5.89,5.078 V 0 h -1.083 v 8.294 h 0.988 V 6.416 c 0.169,0.297 0.379,0.569 0.628,0.819 0.25,0.249 0.528,0.464 0.836,0.645 0.307,0.181 0.633,0.319 0.979,0.414 0.345,0.096 0.703,0.143 1.074,0.143 0.467,0 0.858,-0.084 1.17,-0.255 0.314,-0.169 0.566,-0.409 0.757,-0.715 0.19,-0.309 0.329,-0.685 0.413,-1.131 C -0.043,5.891 0,5.396 0,4.855 Z"
|
|
224
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
225
|
+
id="path943"
|
|
226
|
+
inkscape:connector-curvature="0" /></g><g
|
|
227
|
+
id="g945"
|
|
228
|
+
transform="translate(497.7167,244.9084)"><path
|
|
229
|
+
d="M 0,0 C 0.275,0 0.564,0.054 0.867,0.16 1.17,0.266 1.451,0.411 1.71,0.598 1.971,0.782 2.196,1.001 2.388,1.25 2.579,1.499 2.695,1.768 2.737,2.054 V 4.616 C 2.632,4.903 2.475,5.171 2.269,5.42 2.061,5.67 1.828,5.891 1.567,6.081 1.307,6.272 1.032,6.421 0.74,6.526 0.447,6.634 0.158,6.687 -0.127,6.687 -0.574,6.687 -0.979,6.59 -1.346,6.399 -1.711,6.208 -2.021,5.957 -2.276,5.644 -2.532,5.33 -2.73,4.972 -2.873,4.568 -3.018,4.165 -3.089,3.752 -3.089,3.327 c 0,-0.445 0.08,-0.87 0.239,-1.273 C -2.69,1.65 -2.473,1.298 -2.197,0.995 -1.921,0.692 -1.595,0.452 -1.218,0.271 -0.842,0.091 -0.436,0 0,0 m -0.224,-0.955 c -0.572,0 -1.103,0.119 -1.591,0.358 -0.489,0.24 -0.911,0.555 -1.266,0.948 -0.356,0.392 -0.632,0.846 -0.827,1.361 -0.197,0.514 -0.295,1.054 -0.295,1.615 0,0.584 0.096,1.139 0.287,1.663 0.19,0.527 0.453,0.986 0.788,1.378 0.334,0.393 0.732,0.703 1.193,0.931 0.462,0.228 0.968,0.342 1.521,0.342 0.7,0 1.32,-0.182 1.862,-0.548 0.541,-0.366 0.971,-0.81 1.289,-1.33 v 5.061 H 3.82 V 0.605 C 3.82,0.308 3.947,0.16 4.202,0.16 v -0.956 c -0.181,-0.032 -0.324,-0.048 -0.43,-0.048 -0.265,0 -0.483,0.077 -0.653,0.232 -0.169,0.153 -0.255,0.337 -0.255,0.549 V 0.812 C 2.524,0.271 2.076,-0.159 1.52,-0.478 0.962,-0.796 0.382,-0.955 -0.224,-0.955"
|
|
230
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
231
|
+
id="path947"
|
|
232
|
+
inkscape:connector-curvature="0" /></g><g
|
|
233
|
+
id="g949"
|
|
234
|
+
transform="translate(510.6581,248.6975)"><path
|
|
235
|
+
d="m 0,0 c -0.032,0.445 -0.135,0.852 -0.31,1.218 -0.175,0.366 -0.399,0.681 -0.669,0.947 -0.27,0.265 -0.586,0.472 -0.947,0.62 -0.361,0.15 -0.743,0.224 -1.146,0.224 -0.404,0 -0.785,-0.074 -1.147,-0.224 C -4.578,2.637 -4.895,2.43 -5.165,2.165 -5.437,1.899 -5.653,1.581 -5.818,1.209 -5.982,0.838 -6.08,0.435 -6.112,0 Z m -3.057,-4.744 c -0.604,0 -1.162,0.114 -1.671,0.343 -0.508,0.227 -0.949,0.541 -1.321,0.938 -0.371,0.399 -0.66,0.858 -0.868,1.378 -0.206,0.52 -0.31,1.077 -0.31,1.671 0,0.584 0.104,1.133 0.31,1.647 0.208,0.515 0.497,0.966 0.868,1.354 0.372,0.387 0.81,0.695 1.314,0.923 0.503,0.228 1.058,0.342 1.663,0.342 0.605,0 1.159,-0.114 1.664,-0.342 C -0.904,3.282 -0.473,2.972 -0.111,2.579 0.249,2.187 0.531,1.735 0.732,1.226 0.935,0.716 1.035,0.176 1.035,-0.398 1.035,-0.483 1.032,-0.567 1.027,-0.652 1.021,-0.738 1.014,-0.796 1.003,-0.828 H -6.08 c 0.031,-0.445 0.135,-0.857 0.309,-1.234 0.176,-0.376 0.398,-0.703 0.669,-0.979 0.271,-0.275 0.584,-0.49 0.94,-0.644 0.354,-0.155 0.734,-0.231 1.139,-0.231 0.274,0 0.545,0.037 0.811,0.111 0.265,0.075 0.509,0.176 0.732,0.303 0.222,0.128 0.422,0.284 0.597,0.469 0.174,0.186 0.311,0.39 0.405,0.613 l 0.94,-0.255 C 0.334,-2.981 0.154,-3.261 -0.079,-3.51 c -0.233,-0.249 -0.504,-0.468 -0.813,-0.653 -0.307,-0.186 -0.647,-0.328 -1.018,-0.43 -0.372,-0.1 -0.754,-0.151 -1.147,-0.151"
|
|
236
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
237
|
+
id="path951"
|
|
238
|
+
inkscape:connector-curvature="0" /></g><g
|
|
239
|
+
id="g953"
|
|
240
|
+
transform="translate(516.8495,248.2834)"><path
|
|
241
|
+
d="m 0,0 c 0,0.584 0.102,1.136 0.303,1.655 0.202,0.521 0.485,0.974 0.851,1.362 0.367,0.387 0.804,0.692 1.314,0.915 0.51,0.223 1.071,0.334 1.687,0.334 0.785,0 1.47,-0.177 2.053,-0.533 C 6.792,3.378 7.232,2.897 7.53,2.292 L 6.479,1.958 C 6.245,2.382 5.923,2.714 5.509,2.953 5.094,3.191 4.633,3.312 4.123,3.312 3.699,3.312 3.304,3.226 2.938,3.057 2.571,2.887 2.253,2.656 1.981,2.363 1.712,2.071 1.499,1.725 1.346,1.322 1.191,0.918 1.114,0.478 1.114,0 c 0,-0.467 0.08,-0.907 0.24,-1.321 0.159,-0.413 0.376,-0.772 0.652,-1.075 0.276,-0.302 0.598,-0.541 0.964,-0.716 0.365,-0.175 0.756,-0.263 1.17,-0.263 0.264,0 0.527,0.038 0.787,0.112 0.26,0.074 0.502,0.177 0.724,0.311 0.223,0.132 0.414,0.283 0.574,0.453 0.159,0.17 0.27,0.351 0.334,0.541 l 1.05,-0.318 C 7.493,-2.573 7.322,-2.847 7.101,-3.096 6.877,-3.345 6.614,-3.563 6.312,-3.749 6.01,-3.935 5.676,-4.077 5.31,-4.179 4.943,-4.279 4.563,-4.33 4.171,-4.33 3.565,-4.33 3.009,-4.216 2.5,-3.987 1.99,-3.76 1.55,-3.446 1.178,-3.049 0.807,-2.65 0.519,-2.191 0.311,-1.671 0.104,-1.151 0,-0.594 0,0"
|
|
242
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
243
|
+
id="path955"
|
|
244
|
+
inkscape:connector-curvature="0" /></g><g
|
|
245
|
+
id="g957"
|
|
246
|
+
transform="translate(526.6229,248.22)"><path
|
|
247
|
+
d="m 0,0 c 0,-0.467 0.077,-0.899 0.23,-1.297 0.154,-0.398 0.367,-0.748 0.637,-1.051 0.271,-0.302 0.589,-0.539 0.955,-0.709 0.366,-0.169 0.756,-0.255 1.17,-0.255 0.414,0 0.804,0.088 1.17,0.263 0.366,0.176 0.688,0.414 0.964,0.717 0.275,0.303 0.493,0.655 0.651,1.059 0.16,0.403 0.24,0.837 0.24,1.304 0,0.456 -0.08,0.889 -0.24,1.298 C 5.619,1.737 5.401,2.093 5.126,2.396 4.85,2.698 4.531,2.938 4.17,3.112 3.81,3.287 3.422,3.375 3.008,3.375 2.595,3.375 2.204,3.287 1.838,3.112 1.472,2.938 1.153,2.695 0.884,2.388 0.612,2.079 0.398,1.721 0.238,1.312 0.08,0.904 0,0.467 0,0 m 3.008,-4.267 c -0.605,0 -1.159,0.115 -1.663,0.343 -0.504,0.228 -0.939,0.538 -1.305,0.931 -0.366,0.392 -0.65,0.848 -0.852,1.369 -0.202,0.52 -0.302,1.067 -0.302,1.64 0,0.584 0.103,1.135 0.309,1.655 0.208,0.52 0.494,0.976 0.861,1.369 0.366,0.393 0.8,0.706 1.304,0.939 0.504,0.234 1.054,0.35 1.648,0.35 0.595,0 1.143,-0.116 1.648,-0.35 C 5.16,3.746 5.595,3.433 5.961,3.04 6.327,2.647 6.614,2.191 6.82,1.671 7.028,1.151 7.132,0.6 7.132,0.016 7.132,-0.557 7.028,-1.104 6.82,-1.624 6.614,-2.145 6.327,-2.601 5.961,-2.993 5.595,-3.386 5.16,-3.696 4.656,-3.924 4.151,-4.152 3.603,-4.267 3.008,-4.267"
|
|
248
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
249
|
+
id="path959"
|
|
250
|
+
inkscape:connector-curvature="0" /></g><g
|
|
251
|
+
id="g961"
|
|
252
|
+
transform="translate(542.493,244.1125)"><path
|
|
253
|
+
d="m 0,0 h -1.082 v 4.632 c 0,0.988 -0.144,1.704 -0.43,2.15 C -1.799,7.228 -2.244,7.45 -2.85,7.45 -3.168,7.45 -3.486,7.392 -3.804,7.275 -4.123,7.158 -4.42,6.993 -4.696,6.782 -4.972,6.569 -5.213,6.317 -5.421,6.025 -5.627,5.733 -5.783,5.418 -5.89,5.078 V 0 h -1.083 v 8.294 h 0.988 V 6.416 c 0.169,0.297 0.379,0.569 0.629,0.819 0.249,0.249 0.527,0.464 0.835,0.645 0.308,0.181 0.633,0.319 0.979,0.414 0.345,0.096 0.703,0.143 1.074,0.143 0.467,0 0.858,-0.084 1.17,-0.255 C -0.984,8.013 -0.731,7.773 -0.541,7.467 -0.35,7.158 -0.212,6.782 -0.128,6.336 -0.043,5.891 0,5.396 0,4.855 Z"
|
|
254
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
255
|
+
id="path963"
|
|
256
|
+
inkscape:connector-curvature="0" /></g><g
|
|
257
|
+
id="g965"
|
|
258
|
+
transform="translate(548.6844,244.51)"><path
|
|
259
|
+
d="M 0,0 C -0.063,-0.031 -0.156,-0.073 -0.277,-0.127 -0.4,-0.18 -0.541,-0.232 -0.699,-0.285 c -0.16,-0.054 -0.34,-0.102 -0.542,-0.145 -0.201,-0.042 -0.414,-0.063 -0.636,-0.063 -0.234,0 -0.457,0.032 -0.669,0.096 -0.213,0.064 -0.398,0.162 -0.558,0.294 -0.159,0.132 -0.286,0.3 -0.382,0.501 -0.095,0.203 -0.143,0.436 -0.143,0.701 v 5.938 h -1.146 v 0.859 h 1.146 v 2.802 h 1.083 V 7.896 h 1.91 V 7.037 h -1.91 V 1.401 c 0.021,-0.307 0.127,-0.532 0.318,-0.676 0.191,-0.143 0.419,-0.214 0.684,-0.214 0.308,0 0.579,0.05 0.813,0.15 0.233,0.101 0.382,0.173 0.446,0.216 z"
|
|
260
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
261
|
+
id="path967"
|
|
262
|
+
inkscape:connector-curvature="0" /></g><g
|
|
263
|
+
id="g969"
|
|
264
|
+
transform="translate(556.6444,248.6975)"><path
|
|
265
|
+
d="m 0,0 c -0.032,0.445 -0.135,0.852 -0.311,1.218 -0.174,0.366 -0.398,0.681 -0.668,0.947 -0.27,0.265 -0.586,0.472 -0.947,0.62 -0.361,0.15 -0.743,0.224 -1.146,0.224 -0.404,0 -0.785,-0.074 -1.147,-0.224 C -4.579,2.637 -4.896,2.43 -5.165,2.165 -5.437,1.899 -5.654,1.581 -5.818,1.209 -5.982,0.838 -6.081,0.435 -6.113,0 Z m -3.057,-4.744 c -0.604,0 -1.162,0.114 -1.671,0.343 -0.509,0.227 -0.95,0.541 -1.322,0.938 -0.371,0.399 -0.659,0.858 -0.867,1.378 -0.206,0.52 -0.311,1.077 -0.311,1.671 0,0.584 0.105,1.133 0.311,1.647 0.208,0.515 0.496,0.966 0.867,1.354 0.372,0.387 0.81,0.695 1.315,0.923 0.503,0.228 1.057,0.342 1.663,0.342 0.605,0 1.159,-0.114 1.663,-0.342 C -0.904,3.282 -0.473,2.972 -0.111,2.579 0.249,2.187 0.53,1.735 0.732,1.226 0.934,0.716 1.035,0.176 1.035,-0.398 1.035,-0.483 1.032,-0.567 1.027,-0.652 1.021,-0.738 1.014,-0.796 1.003,-0.828 h -7.084 c 0.031,-0.445 0.136,-0.857 0.31,-1.234 0.176,-0.376 0.398,-0.703 0.669,-0.979 0.27,-0.275 0.583,-0.49 0.939,-0.644 0.355,-0.155 0.735,-0.231 1.139,-0.231 0.275,0 0.546,0.037 0.811,0.111 0.266,0.075 0.51,0.176 0.733,0.303 0.222,0.128 0.421,0.284 0.597,0.469 0.174,0.186 0.31,0.39 0.405,0.613 l 0.939,-0.255 c -0.127,-0.306 -0.308,-0.586 -0.54,-0.835 -0.234,-0.249 -0.505,-0.468 -0.813,-0.653 -0.307,-0.186 -0.647,-0.328 -1.018,-0.43 -0.372,-0.1 -0.754,-0.151 -1.147,-0.151"
|
|
266
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
267
|
+
id="path971"
|
|
268
|
+
inkscape:connector-curvature="0" /></g><g
|
|
269
|
+
id="g973"
|
|
270
|
+
transform="translate(566.2753,244.1125)"><path
|
|
271
|
+
d="m 0,0 h -1.083 v 4.632 c 0,0.988 -0.143,1.704 -0.43,2.15 C -1.8,7.228 -2.245,7.45 -2.851,7.45 -3.168,7.45 -3.486,7.392 -3.805,7.275 -4.124,7.158 -4.421,6.993 -4.696,6.782 -4.973,6.569 -5.214,6.317 -5.421,6.025 -5.628,5.733 -5.784,5.418 -5.89,5.078 V 0 h -1.083 v 8.294 h 0.987 V 6.416 c 0.17,0.297 0.379,0.569 0.629,0.819 0.25,0.249 0.527,0.464 0.836,0.645 0.307,0.181 0.633,0.319 0.979,0.414 0.345,0.096 0.702,0.143 1.073,0.143 0.468,0 0.859,-0.084 1.17,-0.255 C -0.985,8.013 -0.732,7.773 -0.542,7.467 -0.351,7.158 -0.213,6.782 -0.129,6.336 -0.043,5.891 0,5.396 0,4.855 Z"
|
|
272
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
273
|
+
id="path975"
|
|
274
|
+
inkscape:connector-curvature="0" /></g><g
|
|
275
|
+
id="g977"
|
|
276
|
+
transform="translate(571.0819,243.9534)"><path
|
|
277
|
+
d="m 0,0 c -0.87,0 -1.528,0.301 -1.974,0.899 -0.446,0.6 -0.669,1.495 -0.669,2.683 v 4.871 h 1.082 v -4.68 c 0,-1.878 0.643,-2.818 1.927,-2.818 0.319,0 0.631,0.054 0.94,0.16 0.306,0.106 0.59,0.26 0.851,0.461 0.259,0.202 0.493,0.441 0.7,0.717 0.207,0.276 0.374,0.588 0.501,0.938 V 8.453 H 4.441 V 1.561 C 4.441,1.263 4.573,1.115 4.84,1.115 V 0.159 C 4.627,0.127 4.479,0.111 4.394,0.111 4.149,0.111 3.939,0.186 3.765,0.335 3.589,0.483 3.502,0.669 3.502,0.892 V 2.038 C 3.13,1.391 2.637,0.889 2.021,0.533 1.406,0.178 0.732,0 0,0"
|
|
278
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
279
|
+
id="path979"
|
|
280
|
+
inkscape:connector-curvature="0" /></g><g
|
|
281
|
+
id="g981"
|
|
282
|
+
transform="translate(580.7587,243.9534)"><path
|
|
283
|
+
d="M 0,0 C -0.646,0 -1.278,0.106 -1.895,0.319 -2.509,0.53 -3.04,0.839 -3.484,1.242 l 0.492,0.733 c 0.467,-0.383 0.941,-0.669 1.425,-0.86 0.482,-0.192 1,-0.287 1.551,-0.287 0.669,0 1.203,0.135 1.6,0.406 C 1.982,1.505 2.182,1.89 2.182,2.388 2.182,2.622 2.129,2.815 2.021,2.97 1.916,3.123 1.76,3.258 1.553,3.375 1.346,3.492 1.086,3.595 0.772,3.685 0.459,3.775 0.096,3.868 -0.318,3.964 -0.796,4.08 -1.209,4.197 -1.56,4.314 c -0.35,0.117 -0.639,0.249 -0.867,0.398 -0.228,0.149 -0.398,0.332 -0.51,0.55 -0.111,0.217 -0.167,0.49 -0.167,0.82 0,0.413 0.083,0.779 0.248,1.097 0.164,0.319 0.386,0.582 0.668,0.789 0.281,0.207 0.61,0.362 0.987,0.47 C -0.825,8.543 -0.424,8.596 0,8.596 0.638,8.596 1.215,8.493 1.736,8.285 2.256,8.079 2.675,7.806 2.993,7.466 L 2.469,6.83 C 2.16,7.147 1.786,7.387 1.346,7.545 0.905,7.705 0.446,7.784 -0.031,7.784 -0.318,7.784 -0.583,7.755 -0.827,7.697 -1.072,7.639 -1.286,7.545 -1.473,7.418 -1.657,7.291 -1.804,7.129 -1.91,6.933 -2.016,6.736 -2.068,6.506 -2.068,6.24 c 0,-0.223 0.036,-0.403 0.11,-0.541 C -1.884,5.561 -1.761,5.441 -1.592,5.341 -1.421,5.239 -1.207,5.149 -0.946,5.07 -0.687,4.991 -0.371,4.909 0,4.823 0.531,4.696 0.998,4.569 1.401,4.441 1.805,4.314 2.142,4.166 2.412,3.996 2.683,3.826 2.888,3.619 3.025,3.375 3.162,3.131 3.232,2.834 3.232,2.483 3.232,1.719 2.94,1.115 2.356,0.669 1.772,0.224 0.987,0 0,0"
|
|
284
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
285
|
+
id="path983"
|
|
286
|
+
inkscape:connector-curvature="0" /></g><g
|
|
287
|
+
id="g985"
|
|
288
|
+
transform="translate(441.2079,369.4309)"><path
|
|
289
|
+
d="m 0,0 h -10.557 v 10.557 h -5.328 V 0 h -10.556 v -5.328 h 10.556 v -10.557 h 5.328 V -5.328 H 0 Z"
|
|
290
|
+
style="fill:#c7a700;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
291
|
+
id="path987"
|
|
292
|
+
inkscape:connector-curvature="0" /></g><g
|
|
293
|
+
id="g989"
|
|
294
|
+
transform="translate(406.6679,384.2434)"><path
|
|
295
|
+
d="M 0,0 H -4.834 V 4.834 H -8.387 V 0 h -4.834 v -3.553 h 4.834 v -4.834 h 3.553 v 4.834 H 0 Z"
|
|
296
|
+
style="fill:#c7a700;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
297
|
+
id="path991"
|
|
298
|
+
inkscape:connector-curvature="0" /></g><g
|
|
299
|
+
id="g993"
|
|
300
|
+
transform="translate(447.8183,396.2307)"><path
|
|
301
|
+
d="M 0,0 H -4.834 V 4.834 H -8.387 V 0 h -4.834 v -3.553 h 4.834 v -4.833 h 3.553 v 4.833 H 0 Z"
|
|
302
|
+
style="fill:#c7a700;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
303
|
+
id="path995"
|
|
304
|
+
inkscape:connector-curvature="0" /></g><g
|
|
305
|
+
id="g997"
|
|
306
|
+
transform="translate(406.6679,281.2434)"><path
|
|
307
|
+
d="m 0,0 c -16.23,0 -29.435,13.204 -29.435,29.434 0,16.23 13.205,29.434 29.435,29.434 16.23,0 29.435,-13.204 29.435,-29.434 C 29.435,13.204 16.23,0 0,0 m 0,69.524 c -22.106,0 -40.091,-17.984 -40.091,-40.09 0,-22.106 17.985,-40.09 40.091,-40.09 22.106,0 40.091,17.984 40.091,40.09 0,22.106 -17.985,40.09 -40.091,40.09"
|
|
308
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
309
|
+
id="path999"
|
|
310
|
+
inkscape:connector-curvature="0" /></g><g
|
|
311
|
+
id="g1001"
|
|
312
|
+
transform="translate(355.8788,288.3293)"><path
|
|
313
|
+
d="M 0,0 V 59.589 H -10.656 V 30.738 h -26.16 V 20.082 h 13.218 C -24.76,4.908 -37.469,-7.086 -52.937,-7.086 c -16.229,0 -29.433,13.204 -29.433,29.434 0,16.23 13.204,29.434 29.433,29.434 v 10.656 c -22.105,0 -40.089,-17.984 -40.089,-40.09 0,-22.106 17.984,-40.09 40.089,-40.09 21.346,0 38.844,16.768 40.023,37.824 h 2.258 V 0 c 0,-10.778 8.33,-17.742 21.223,-17.742 V -7.086 C 5.747,-7.086 0,-5.856 0,0"
|
|
314
|
+
style="fill:#4c4e52;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
315
|
+
id="path1003"
|
|
316
|
+
inkscape:connector-curvature="0" /></g></g></g></g></svg>
|
package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_dark_disabled_hdpi.9.png
ADDED
|
Binary file
|
package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_dark_focus_hdpi.9.png
ADDED
|
Binary file
|
package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_dark_normal_hdpi.9.png
ADDED
|
Binary file
|
package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_dark_pressed_hdpi.9.png
ADDED
|
Binary file
|
package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_light_disabled_hdpi.9.png
ADDED
|
Binary file
|
package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_light_focus_hdpi.9.png
ADDED
|
Binary file
|
package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_light_normal_hdpi.9.png
ADDED
|
Binary file
|
package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_light_pressed_hdpi.9.png
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_dark_disabled_ldpi.9.png
ADDED
|
Binary file
|
package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_dark_focus_ldpi.9.png
ADDED
|
Binary file
|
package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_dark_normal_ldpi.9.png
ADDED
|
Binary file
|
package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_dark_pressed_ldpi.9.png
ADDED
|
Binary file
|
package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_light_disabled_ldpi.9.png
ADDED
|
Binary file
|
package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_light_focus_ldpi.9.png
ADDED
|
Binary file
|
package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_light_normal_ldpi.9.png
ADDED
|
Binary file
|
package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_light_pressed_ldpi.9.png
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_dark_disabled_mdpi.9.png
ADDED
|
Binary file
|
package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_dark_focus_mdpi.9.png
ADDED
|
Binary file
|
package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_dark_normal_mdpi.9.png
ADDED
|
Binary file
|
package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_dark_pressed_mdpi.9.png
ADDED
|
Binary file
|
package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_light_disabled_mdpi.9.png
ADDED
|
Binary file
|
package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_light_focus_mdpi.9.png
ADDED
|
Binary file
|
package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_light_normal_mdpi.9.png
ADDED
|
Binary file
|
package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_light_pressed_mdpi.9.png
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_dark_disabled_tvdpi.9.png
ADDED
|
Binary file
|
package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_dark_focus_tvdpi.9.png
ADDED
|
Binary file
|
package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_dark_normal_tvdpi.9.png
ADDED
|
Binary file
|
package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_dark_pressed_tvdpi.9.png
ADDED
|
Binary file
|
|
Binary file
|
package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_light_focus_tvdpi.9.png
ADDED
|
Binary file
|
package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_light_normal_tvdpi.9.png
ADDED
|
Binary file
|
package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_light_pressed_tvdpi.9.png
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|