@sync-in/server 1.3.0
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/CHANGELOG.md +93 -0
- package/LICENSE +660 -0
- package/README.md +106 -0
- package/environment/environment.dist.min.yaml +11 -0
- package/environment/environment.dist.yaml +95 -0
- package/migrations/0000_init.sql +324 -0
- package/migrations/meta/0000_snapshot.json +2417 -0
- package/migrations/meta/_journal.json +13 -0
- package/package.json +80 -0
- package/server/app.bootstrap.js +103 -0
- package/server/app.bootstrap.js.map +1 -0
- package/server/app.constants.js +58 -0
- package/server/app.constants.js.map +1 -0
- package/server/app.e2e-spec.js +34 -0
- package/server/app.e2e-spec.js.map +1 -0
- package/server/app.module.js +72 -0
- package/server/app.module.js.map +1 -0
- package/server/app.service.js +72 -0
- package/server/app.service.js.map +1 -0
- package/server/app.service.spec.js +94 -0
- package/server/app.service.spec.js.map +1 -0
- package/server/applications/admin/admin.module.js +31 -0
- package/server/applications/admin/admin.module.js.map +1 -0
- package/server/applications/admin/constants/routes.js +19 -0
- package/server/applications/admin/constants/routes.js.map +1 -0
- package/server/applications/applications.config.js +50 -0
- package/server/applications/applications.config.js.map +1 -0
- package/server/applications/applications.constants.js +69 -0
- package/server/applications/applications.constants.js.map +1 -0
- package/server/applications/applications.module.js +59 -0
- package/server/applications/applications.module.js.map +1 -0
- package/server/applications/comments/comments.controller.js +133 -0
- package/server/applications/comments/comments.controller.js.map +1 -0
- package/server/applications/comments/comments.controller.spec.js +63 -0
- package/server/applications/comments/comments.controller.spec.js.map +1 -0
- package/server/applications/comments/comments.module.js +39 -0
- package/server/applications/comments/comments.module.js.map +1 -0
- package/server/applications/comments/constants/routes.js +35 -0
- package/server/applications/comments/constants/routes.js.map +1 -0
- package/server/applications/comments/dto/comment.dto.js +62 -0
- package/server/applications/comments/dto/comment.dto.js.map +1 -0
- package/server/applications/comments/interfaces/comment-recent.interface.js +10 -0
- package/server/applications/comments/interfaces/comment-recent.interface.js.map +1 -0
- package/server/applications/comments/schemas/comment.interface.js +18 -0
- package/server/applications/comments/schemas/comment.interface.js.map +1 -0
- package/server/applications/comments/schemas/comments.schema.js +57 -0
- package/server/applications/comments/schemas/comments.schema.js.map +1 -0
- package/server/applications/comments/services/comments-manager.service.js +137 -0
- package/server/applications/comments/services/comments-manager.service.js.map +1 -0
- package/server/applications/comments/services/comments-manager.service.spec.js +51 -0
- package/server/applications/comments/services/comments-manager.service.spec.js.map +1 -0
- package/server/applications/comments/services/comments-queries.service.js +185 -0
- package/server/applications/comments/services/comments-queries.service.js.map +1 -0
- package/server/applications/files/adapters/files-indexer-mysql.service.js +174 -0
- package/server/applications/files/adapters/files-indexer-mysql.service.js.map +1 -0
- package/server/applications/files/assets/samples/sample.docx +0 -0
- package/server/applications/files/assets/samples/sample.odp +0 -0
- package/server/applications/files/assets/samples/sample.ods +0 -0
- package/server/applications/files/assets/samples/sample.odt +0 -0
- package/server/applications/files/assets/samples/sample.pptx +0 -0
- package/server/applications/files/assets/samples/sample.rtf +194 -0
- package/server/applications/files/assets/samples/sample.xlsx +0 -0
- package/server/applications/files/constants/cache.js +36 -0
- package/server/applications/files/constants/cache.js.map +1 -0
- package/server/applications/files/constants/compress.js +26 -0
- package/server/applications/files/constants/compress.js.map +1 -0
- package/server/applications/files/constants/files.js +103 -0
- package/server/applications/files/constants/files.js.map +1 -0
- package/server/applications/files/constants/indexing.js +49 -0
- package/server/applications/files/constants/indexing.js.map +1 -0
- package/server/applications/files/constants/only-office.js +536 -0
- package/server/applications/files/constants/only-office.js.map +1 -0
- package/server/applications/files/constants/operations.js +29 -0
- package/server/applications/files/constants/operations.js.map +1 -0
- package/server/applications/files/constants/routes.js +100 -0
- package/server/applications/files/constants/routes.js.map +1 -0
- package/server/applications/files/constants/samples.js +35 -0
- package/server/applications/files/constants/samples.js.map +1 -0
- package/server/applications/files/decorators/only-office-environment.decorator.js +32 -0
- package/server/applications/files/decorators/only-office-environment.decorator.js.map +1 -0
- package/server/applications/files/dto/file-operations.dto.js +145 -0
- package/server/applications/files/dto/file-operations.dto.js.map +1 -0
- package/server/applications/files/events/file-task-event.js +23 -0
- package/server/applications/files/events/file-task-event.js.map +1 -0
- package/server/applications/files/files-only-office.controller.js +111 -0
- package/server/applications/files/files-only-office.controller.js.map +1 -0
- package/server/applications/files/files-only-office.controller.spec.js +47 -0
- package/server/applications/files/files-only-office.controller.spec.js.map +1 -0
- package/server/applications/files/files-tasks.controller.js +97 -0
- package/server/applications/files/files-tasks.controller.js.map +1 -0
- package/server/applications/files/files-tasks.controller.spec.js +40 -0
- package/server/applications/files/files-tasks.controller.spec.js.map +1 -0
- package/server/applications/files/files.config.js +96 -0
- package/server/applications/files/files.config.js.map +1 -0
- package/server/applications/files/files.controller.js +319 -0
- package/server/applications/files/files.controller.js.map +1 -0
- package/server/applications/files/files.controller.spec.js +84 -0
- package/server/applications/files/files.controller.spec.js.map +1 -0
- package/server/applications/files/files.module.js +78 -0
- package/server/applications/files/files.module.js.map +1 -0
- package/server/applications/files/guards/files-only-office.guard.js +48 -0
- package/server/applications/files/guards/files-only-office.guard.js.map +1 -0
- package/server/applications/files/guards/files-only-office.guard.spec.js +16 -0
- package/server/applications/files/guards/files-only-office.guard.spec.js.map +1 -0
- package/server/applications/files/guards/files-only-office.strategy.js +60 -0
- package/server/applications/files/guards/files-only-office.strategy.js.map +1 -0
- package/server/applications/files/interfaces/file-db-props.interface.js +10 -0
- package/server/applications/files/interfaces/file-db-props.interface.js.map +1 -0
- package/server/applications/files/interfaces/file-lock.interface.js +10 -0
- package/server/applications/files/interfaces/file-lock.interface.js.map +1 -0
- package/server/applications/files/interfaces/file-parse-index.js +10 -0
- package/server/applications/files/interfaces/file-parse-index.js.map +1 -0
- package/server/applications/files/interfaces/file-props.interface.js +10 -0
- package/server/applications/files/interfaces/file-props.interface.js.map +1 -0
- package/server/applications/files/interfaces/file-recent-location.interface.js +10 -0
- package/server/applications/files/interfaces/file-recent-location.interface.js.map +1 -0
- package/server/applications/files/interfaces/file-space.interface.js +18 -0
- package/server/applications/files/interfaces/file-space.interface.js.map +1 -0
- package/server/applications/files/interfaces/file-tree.interface.js +10 -0
- package/server/applications/files/interfaces/file-tree.interface.js.map +1 -0
- package/server/applications/files/interfaces/only-office-config.interface.js +10 -0
- package/server/applications/files/interfaces/only-office-config.interface.js.map +1 -0
- package/server/applications/files/models/file-error.js +23 -0
- package/server/applications/files/models/file-error.js.map +1 -0
- package/server/applications/files/models/file-lock-error.js +23 -0
- package/server/applications/files/models/file-lock-error.js.map +1 -0
- package/server/applications/files/models/file-task.js +52 -0
- package/server/applications/files/models/file-task.js.map +1 -0
- package/server/applications/files/models/files-indexer.js +18 -0
- package/server/applications/files/models/files-indexer.js.map +1 -0
- package/server/applications/files/schemas/file-content.interface.js +10 -0
- package/server/applications/files/schemas/file-content.interface.js.map +1 -0
- package/server/applications/files/schemas/file-recent.interface.js +18 -0
- package/server/applications/files/schemas/file-recent.interface.js.map +1 -0
- package/server/applications/files/schemas/file.interface.js +18 -0
- package/server/applications/files/schemas/file.interface.js.map +1 -0
- package/server/applications/files/schemas/files-content.schema.js +41 -0
- package/server/applications/files/schemas/files-content.schema.js.map +1 -0
- package/server/applications/files/schemas/files-recents.schema.js +63 -0
- package/server/applications/files/schemas/files-recents.schema.js.map +1 -0
- package/server/applications/files/schemas/files.schema.js +100 -0
- package/server/applications/files/schemas/files.schema.js.map +1 -0
- package/server/applications/files/services/files-content-manager.service.js +204 -0
- package/server/applications/files/services/files-content-manager.service.js.map +1 -0
- package/server/applications/files/services/files-lock-manager.service.js +285 -0
- package/server/applications/files/services/files-lock-manager.service.js.map +1 -0
- package/server/applications/files/services/files-lock-manager.service.spec.js +40 -0
- package/server/applications/files/services/files-lock-manager.service.spec.js.map +1 -0
- package/server/applications/files/services/files-manager.service.js +565 -0
- package/server/applications/files/services/files-manager.service.js.map +1 -0
- package/server/applications/files/services/files-manager.service.spec.js +43 -0
- package/server/applications/files/services/files-manager.service.spec.js.map +1 -0
- package/server/applications/files/services/files-methods.service.js +180 -0
- package/server/applications/files/services/files-methods.service.js.map +1 -0
- package/server/applications/files/services/files-methods.service.spec.js +135 -0
- package/server/applications/files/services/files-methods.service.spec.js.map +1 -0
- package/server/applications/files/services/files-only-office-manager.service.js +395 -0
- package/server/applications/files/services/files-only-office-manager.service.js.map +1 -0
- package/server/applications/files/services/files-only-office-manager.service.spec.js +58 -0
- package/server/applications/files/services/files-only-office-manager.service.spec.js.map +1 -0
- package/server/applications/files/services/files-parser.service.js +189 -0
- package/server/applications/files/services/files-parser.service.js.map +1 -0
- package/server/applications/files/services/files-parser.service.spec.js +31 -0
- package/server/applications/files/services/files-parser.service.spec.js.map +1 -0
- package/server/applications/files/services/files-queries.service.js +314 -0
- package/server/applications/files/services/files-queries.service.js.map +1 -0
- package/server/applications/files/services/files-recents.service.js +97 -0
- package/server/applications/files/services/files-recents.service.js.map +1 -0
- package/server/applications/files/services/files-recents.service.spec.js +41 -0
- package/server/applications/files/services/files-recents.service.spec.js.map +1 -0
- package/server/applications/files/services/files-scheduler.service.js +179 -0
- package/server/applications/files/services/files-scheduler.service.js.map +1 -0
- package/server/applications/files/services/files-search-manager.service.js +146 -0
- package/server/applications/files/services/files-search-manager.service.js.map +1 -0
- package/server/applications/files/services/files-search-manager.service.spec.js +46 -0
- package/server/applications/files/services/files-search-manager.service.spec.js.map +1 -0
- package/server/applications/files/services/files-tasks-manager.service.js +253 -0
- package/server/applications/files/services/files-tasks-manager.service.js.map +1 -0
- package/server/applications/files/services/files-tasks-manager.service.spec.js +46 -0
- package/server/applications/files/services/files-tasks-manager.service.spec.js.map +1 -0
- package/server/applications/files/utils/doc-textify/adapters/excel.js +91 -0
- package/server/applications/files/utils/doc-textify/adapters/excel.js.map +1 -0
- package/server/applications/files/utils/doc-textify/adapters/html.js +33 -0
- package/server/applications/files/utils/doc-textify/adapters/html.js.map +1 -0
- package/server/applications/files/utils/doc-textify/adapters/open-office.js +110 -0
- package/server/applications/files/utils/doc-textify/adapters/open-office.js.map +1 -0
- package/server/applications/files/utils/doc-textify/adapters/pdf.js +67 -0
- package/server/applications/files/utils/doc-textify/adapters/pdf.js.map +1 -0
- package/server/applications/files/utils/doc-textify/adapters/power-point.js +111 -0
- package/server/applications/files/utils/doc-textify/adapters/power-point.js.map +1 -0
- package/server/applications/files/utils/doc-textify/adapters/text.js +27 -0
- package/server/applications/files/utils/doc-textify/adapters/text.js.map +1 -0
- package/server/applications/files/utils/doc-textify/adapters/word.js +101 -0
- package/server/applications/files/utils/doc-textify/adapters/word.js.map +1 -0
- package/server/applications/files/utils/doc-textify/doc-textify.js +75 -0
- package/server/applications/files/utils/doc-textify/doc-textify.js.map +1 -0
- package/server/applications/files/utils/doc-textify/interfaces/doc-textify.interfaces.js +10 -0
- package/server/applications/files/utils/doc-textify/interfaces/doc-textify.interfaces.js.map +1 -0
- package/server/applications/files/utils/doc-textify/utils/clean.js +34 -0
- package/server/applications/files/utils/doc-textify/utils/clean.js.map +1 -0
- package/server/applications/files/utils/files-search.js +144 -0
- package/server/applications/files/utils/files-search.js.map +1 -0
- package/server/applications/files/utils/files-tree.js +86 -0
- package/server/applications/files/utils/files-tree.js.map +1 -0
- package/server/applications/files/utils/files.js +386 -0
- package/server/applications/files/utils/files.js.map +1 -0
- package/server/applications/files/utils/send-file.js +70 -0
- package/server/applications/files/utils/send-file.js.map +1 -0
- package/server/applications/files/utils/unzip-file.js +60 -0
- package/server/applications/files/utils/unzip-file.js.map +1 -0
- package/server/applications/files/utils/url-file.js +39 -0
- package/server/applications/files/utils/url-file.js.map +1 -0
- package/server/applications/links/constants/cache.js +28 -0
- package/server/applications/links/constants/cache.js.map +1 -0
- package/server/applications/links/constants/links.js +36 -0
- package/server/applications/links/constants/links.js.map +1 -0
- package/server/applications/links/constants/routes.js +41 -0
- package/server/applications/links/constants/routes.js.map +1 -0
- package/server/applications/links/dto/create-or-update-link.dto.js +95 -0
- package/server/applications/links/dto/create-or-update-link.dto.js.map +1 -0
- package/server/applications/links/interfaces/link-guest.interface.js +10 -0
- package/server/applications/links/interfaces/link-guest.interface.js.map +1 -0
- package/server/applications/links/interfaces/link-space.interface.js +10 -0
- package/server/applications/links/interfaces/link-space.interface.js.map +1 -0
- package/server/applications/links/links.controller.js +107 -0
- package/server/applications/links/links.controller.js.map +1 -0
- package/server/applications/links/links.controller.spec.js +88 -0
- package/server/applications/links/links.controller.spec.js.map +1 -0
- package/server/applications/links/schemas/link.interface.js +18 -0
- package/server/applications/links/schemas/link.interface.js.map +1 -0
- package/server/applications/links/schemas/links.schema.js +56 -0
- package/server/applications/links/schemas/links.schema.js.map +1 -0
- package/server/applications/links/services/links-manager.service.js +158 -0
- package/server/applications/links/services/links-manager.service.js.map +1 -0
- package/server/applications/links/services/links-manager.service.spec.js +84 -0
- package/server/applications/links/services/links-manager.service.spec.js.map +1 -0
- package/server/applications/links/services/links-queries.service.js +181 -0
- package/server/applications/links/services/links-queries.service.js.map +1 -0
- package/server/applications/notifications/constants/notifications.js +62 -0
- package/server/applications/notifications/constants/notifications.js.map +1 -0
- package/server/applications/notifications/constants/routes.js +30 -0
- package/server/applications/notifications/constants/routes.js.map +1 -0
- package/server/applications/notifications/constants/websocket.js +22 -0
- package/server/applications/notifications/constants/websocket.js.map +1 -0
- package/server/applications/notifications/i18n/fr.js +43 -0
- package/server/applications/notifications/i18n/fr.js.map +1 -0
- package/server/applications/notifications/i18n/index.js +37 -0
- package/server/applications/notifications/i18n/index.js.map +1 -0
- package/server/applications/notifications/interfaces/notification-properties.interface.js +10 -0
- package/server/applications/notifications/interfaces/notification-properties.interface.js.map +1 -0
- package/server/applications/notifications/interfaces/user-mail-notification.js +10 -0
- package/server/applications/notifications/interfaces/user-mail-notification.js.map +1 -0
- package/server/applications/notifications/mails/models.js +133 -0
- package/server/applications/notifications/mails/models.js.map +1 -0
- package/server/applications/notifications/mails/templates.js +51 -0
- package/server/applications/notifications/mails/templates.js.map +1 -0
- package/server/applications/notifications/mails/urls.js +51 -0
- package/server/applications/notifications/mails/urls.js.map +1 -0
- package/server/applications/notifications/notifications.controller.js +110 -0
- package/server/applications/notifications/notifications.controller.js.map +1 -0
- package/server/applications/notifications/notifications.controller.spec.js +33 -0
- package/server/applications/notifications/notifications.controller.spec.js.map +1 -0
- package/server/applications/notifications/notifications.gateway.js +45 -0
- package/server/applications/notifications/notifications.gateway.js.map +1 -0
- package/server/applications/notifications/notifications.module.js +44 -0
- package/server/applications/notifications/notifications.module.js.map +1 -0
- package/server/applications/notifications/schemas/notification.interface.js +18 -0
- package/server/applications/notifications/schemas/notification.interface.js.map +1 -0
- package/server/applications/notifications/schemas/notifications.schema.js +45 -0
- package/server/applications/notifications/schemas/notifications.schema.js.map +1 -0
- package/server/applications/notifications/services/notifications-manager.service.js +143 -0
- package/server/applications/notifications/services/notifications-manager.service.js.map +1 -0
- package/server/applications/notifications/services/notifications-manager.service.spec.js +46 -0
- package/server/applications/notifications/services/notifications-manager.service.spec.js.map +1 -0
- package/server/applications/notifications/services/notifications-queries.service.js +100 -0
- package/server/applications/notifications/services/notifications-queries.service.js.map +1 -0
- package/server/applications/shares/constants/routes.js +46 -0
- package/server/applications/shares/constants/routes.js.map +1 -0
- package/server/applications/shares/constants/shares.js +31 -0
- package/server/applications/shares/constants/shares.js.map +1 -0
- package/server/applications/shares/dto/create-or-update-share.dto.js +232 -0
- package/server/applications/shares/dto/create-or-update-share.dto.js.map +1 -0
- package/server/applications/shares/interfaces/share-child.interface.js +10 -0
- package/server/applications/shares/interfaces/share-child.interface.js.map +1 -0
- package/server/applications/shares/interfaces/share-env.interface.js +10 -0
- package/server/applications/shares/interfaces/share-env.interface.js.map +1 -0
- package/server/applications/shares/interfaces/share-file.interface.js +21 -0
- package/server/applications/shares/interfaces/share-file.interface.js.map +1 -0
- package/server/applications/shares/interfaces/share-link.interface.js +10 -0
- package/server/applications/shares/interfaces/share-link.interface.js.map +1 -0
- package/server/applications/shares/interfaces/share-props.interface.js +22 -0
- package/server/applications/shares/interfaces/share-props.interface.js.map +1 -0
- package/server/applications/shares/models/share-child.model.js +30 -0
- package/server/applications/shares/models/share-child.model.js.map +1 -0
- package/server/applications/shares/schemas/share-members.interface.js +18 -0
- package/server/applications/shares/schemas/share-members.interface.js.map +1 -0
- package/server/applications/shares/schemas/share.interface.js +18 -0
- package/server/applications/shares/schemas/share.interface.js.map +1 -0
- package/server/applications/shares/schemas/shares-members.schema.js +69 -0
- package/server/applications/shares/schemas/shares-members.schema.js.map +1 -0
- package/server/applications/shares/schemas/shares.schema.js +91 -0
- package/server/applications/shares/schemas/shares.schema.js.map +1 -0
- package/server/applications/shares/services/shares-manager.service.js +1010 -0
- package/server/applications/shares/services/shares-manager.service.js.map +1 -0
- package/server/applications/shares/services/shares-manager.service.spec.js +56 -0
- package/server/applications/shares/services/shares-manager.service.spec.js.map +1 -0
- package/server/applications/shares/services/shares-queries.service.js +892 -0
- package/server/applications/shares/services/shares-queries.service.js.map +1 -0
- package/server/applications/shares/shares.controller.js +293 -0
- package/server/applications/shares/shares.controller.js.map +1 -0
- package/server/applications/shares/shares.controller.spec.js +60 -0
- package/server/applications/shares/shares.controller.spec.js.map +1 -0
- package/server/applications/shares/shares.module.js +49 -0
- package/server/applications/shares/shares.module.js.map +1 -0
- package/server/applications/spaces/constants/cache.js +32 -0
- package/server/applications/spaces/constants/cache.js.map +1 -0
- package/server/applications/spaces/constants/routes.js +58 -0
- package/server/applications/spaces/constants/routes.js.map +1 -0
- package/server/applications/spaces/constants/spaces.js +104 -0
- package/server/applications/spaces/constants/spaces.js.map +1 -0
- package/server/applications/spaces/decorators/space-skip-guard.decorator.js +27 -0
- package/server/applications/spaces/decorators/space-skip-guard.decorator.js.map +1 -0
- package/server/applications/spaces/decorators/space-skip-permissions.decorator.js +27 -0
- package/server/applications/spaces/decorators/space-skip-permissions.decorator.js.map +1 -0
- package/server/applications/spaces/decorators/space.decorator.js +20 -0
- package/server/applications/spaces/decorators/space.decorator.js.map +1 -0
- package/server/applications/spaces/dto/create-or-update-space.dto.js +164 -0
- package/server/applications/spaces/dto/create-or-update-space.dto.js.map +1 -0
- package/server/applications/spaces/dto/delete-space.dto.js +33 -0
- package/server/applications/spaces/dto/delete-space.dto.js.map +1 -0
- package/server/applications/spaces/dto/search-space.dto.js +47 -0
- package/server/applications/spaces/dto/search-space.dto.js.map +1 -0
- package/server/applications/spaces/dto/space-roots.dto.js +117 -0
- package/server/applications/spaces/dto/space-roots.dto.js.map +1 -0
- package/server/applications/spaces/guards/space.guard.js +151 -0
- package/server/applications/spaces/guards/space.guard.js.map +1 -0
- package/server/applications/spaces/guards/space.guard.spec.js +457 -0
- package/server/applications/spaces/guards/space.guard.spec.js.map +1 -0
- package/server/applications/spaces/interfaces/space-diff.interface.js +10 -0
- package/server/applications/spaces/interfaces/space-diff.interface.js.map +1 -0
- package/server/applications/spaces/interfaces/space-files.interface.js +10 -0
- package/server/applications/spaces/interfaces/space-files.interface.js.map +1 -0
- package/server/applications/spaces/interfaces/space-quota.interface.js +10 -0
- package/server/applications/spaces/interfaces/space-quota.interface.js.map +1 -0
- package/server/applications/spaces/interfaces/space-request.interface.js +10 -0
- package/server/applications/spaces/interfaces/space-request.interface.js.map +1 -0
- package/server/applications/spaces/interfaces/space-trash.interface.js +10 -0
- package/server/applications/spaces/interfaces/space-trash.interface.js.map +1 -0
- package/server/applications/spaces/models/space-env.model.js +112 -0
- package/server/applications/spaces/models/space-env.model.js.map +1 -0
- package/server/applications/spaces/models/space-props.model.js +60 -0
- package/server/applications/spaces/models/space-props.model.js.map +1 -0
- package/server/applications/spaces/models/space-root-props.model.js +18 -0
- package/server/applications/spaces/models/space-root-props.model.js.map +1 -0
- package/server/applications/spaces/models/space.model.js +64 -0
- package/server/applications/spaces/models/space.model.js.map +1 -0
- package/server/applications/spaces/schemas/space-members.interface.js +18 -0
- package/server/applications/spaces/schemas/space-members.interface.js.map +1 -0
- package/server/applications/spaces/schemas/space-root.interface.js +18 -0
- package/server/applications/spaces/schemas/space-root.interface.js.map +1 -0
- package/server/applications/spaces/schemas/space.interface.js +18 -0
- package/server/applications/spaces/schemas/space.interface.js.map +1 -0
- package/server/applications/spaces/schemas/spaces-members.schema.js +73 -0
- package/server/applications/spaces/schemas/spaces-members.schema.js.map +1 -0
- package/server/applications/spaces/schemas/spaces-roots.schema.js +61 -0
- package/server/applications/spaces/schemas/spaces-roots.schema.js.map +1 -0
- package/server/applications/spaces/schemas/spaces.schema.js +63 -0
- package/server/applications/spaces/schemas/spaces.schema.js.map +1 -0
- package/server/applications/spaces/services/spaces-browser.service.js +308 -0
- package/server/applications/spaces/services/spaces-browser.service.js.map +1 -0
- package/server/applications/spaces/services/spaces-browser.service.spec.js +74 -0
- package/server/applications/spaces/services/spaces-browser.service.spec.js.map +1 -0
- package/server/applications/spaces/services/spaces-manager.service.js +818 -0
- package/server/applications/spaces/services/spaces-manager.service.js.map +1 -0
- package/server/applications/spaces/services/spaces-manager.service.spec.js +269 -0
- package/server/applications/spaces/services/spaces-manager.service.spec.js.map +1 -0
- package/server/applications/spaces/services/spaces-queries.service.js +763 -0
- package/server/applications/spaces/services/spaces-queries.service.js.map +1 -0
- package/server/applications/spaces/services/spaces-scheduler.service.js +88 -0
- package/server/applications/spaces/services/spaces-scheduler.service.js.map +1 -0
- package/server/applications/spaces/spaces.controller.js +386 -0
- package/server/applications/spaces/spaces.controller.js.map +1 -0
- package/server/applications/spaces/spaces.controller.spec.js +65 -0
- package/server/applications/spaces/spaces.controller.spec.js.map +1 -0
- package/server/applications/spaces/spaces.module.js +51 -0
- package/server/applications/spaces/spaces.module.js.map +1 -0
- package/server/applications/spaces/utils/paths.js +241 -0
- package/server/applications/spaces/utils/paths.js.map +1 -0
- package/server/applications/spaces/utils/permissions.js +88 -0
- package/server/applications/spaces/utils/permissions.js.map +1 -0
- package/server/applications/spaces/utils/routes.js +20 -0
- package/server/applications/spaces/utils/routes.js.map +1 -0
- package/server/applications/sync/constants/auth.js +38 -0
- package/server/applications/sync/constants/auth.js.map +1 -0
- package/server/applications/sync/constants/routes.js +47 -0
- package/server/applications/sync/constants/routes.js.map +1 -0
- package/server/applications/sync/constants/store.js +48 -0
- package/server/applications/sync/constants/store.js.map +1 -0
- package/server/applications/sync/constants/sync.js +128 -0
- package/server/applications/sync/constants/sync.js.map +1 -0
- package/server/applications/sync/decorators/sync-context.decorator.js +27 -0
- package/server/applications/sync/decorators/sync-context.decorator.js.map +1 -0
- package/server/applications/sync/decorators/sync-environment.decorator.js +25 -0
- package/server/applications/sync/decorators/sync-environment.decorator.js.map +1 -0
- package/server/applications/sync/dtos/sync-client-auth.dto.js +47 -0
- package/server/applications/sync/dtos/sync-client-auth.dto.js.map +1 -0
- package/server/applications/sync/dtos/sync-client-registration.dto.js +51 -0
- package/server/applications/sync/dtos/sync-client-registration.dto.js.map +1 -0
- package/server/applications/sync/dtos/sync-operations.dto.js +104 -0
- package/server/applications/sync/dtos/sync-operations.dto.js.map +1 -0
- package/server/applications/sync/dtos/sync-path.dto.js +130 -0
- package/server/applications/sync/dtos/sync-path.dto.js.map +1 -0
- package/server/applications/sync/dtos/sync-upload.dto.js +49 -0
- package/server/applications/sync/dtos/sync-upload.dto.js.map +1 -0
- package/server/applications/sync/interceptors/sync-diff-gzip-body.interceptor.js +55 -0
- package/server/applications/sync/interceptors/sync-diff-gzip-body.interceptor.js.map +1 -0
- package/server/applications/sync/interfaces/store-manifest.interface.js +10 -0
- package/server/applications/sync/interfaces/store-manifest.interface.js.map +1 -0
- package/server/applications/sync/interfaces/sync-client-auth.interface.js +30 -0
- package/server/applications/sync/interfaces/sync-client-auth.interface.js.map +1 -0
- package/server/applications/sync/interfaces/sync-client-paths.interface.js +10 -0
- package/server/applications/sync/interfaces/sync-client-paths.interface.js.map +1 -0
- package/server/applications/sync/interfaces/sync-client.interface.js +10 -0
- package/server/applications/sync/interfaces/sync-client.interface.js.map +1 -0
- package/server/applications/sync/interfaces/sync-diff.interface.js +11 -0
- package/server/applications/sync/interfaces/sync-diff.interface.js.map +1 -0
- package/server/applications/sync/interfaces/sync-path.interface.js +10 -0
- package/server/applications/sync/interfaces/sync-path.interface.js.map +1 -0
- package/server/applications/sync/schemas/sync-client.interface.js +18 -0
- package/server/applications/sync/schemas/sync-client.interface.js.map +1 -0
- package/server/applications/sync/schemas/sync-clients.schema.js +57 -0
- package/server/applications/sync/schemas/sync-clients.schema.js.map +1 -0
- package/server/applications/sync/schemas/sync-path.interface.js +18 -0
- package/server/applications/sync/schemas/sync-path.interface.js.map +1 -0
- package/server/applications/sync/schemas/sync-paths.schema.js +76 -0
- package/server/applications/sync/schemas/sync-paths.schema.js.map +1 -0
- package/server/applications/sync/services/sync-clients-manager.service.js +218 -0
- package/server/applications/sync/services/sync-clients-manager.service.js.map +1 -0
- package/server/applications/sync/services/sync-clients-manager.service.spec.js +56 -0
- package/server/applications/sync/services/sync-clients-manager.service.spec.js.map +1 -0
- package/server/applications/sync/services/sync-manager.service.js +299 -0
- package/server/applications/sync/services/sync-manager.service.js.map +1 -0
- package/server/applications/sync/services/sync-manager.service.spec.js +41 -0
- package/server/applications/sync/services/sync-manager.service.spec.js.map +1 -0
- package/server/applications/sync/services/sync-paths-manager.service.js +290 -0
- package/server/applications/sync/services/sync-paths-manager.service.js.map +1 -0
- package/server/applications/sync/services/sync-paths-manager.service.spec.js +56 -0
- package/server/applications/sync/services/sync-paths-manager.service.spec.js.map +1 -0
- package/server/applications/sync/services/sync-queries.service.js +238 -0
- package/server/applications/sync/services/sync-queries.service.js.map +1 -0
- package/server/applications/sync/sync.config.js +36 -0
- package/server/applications/sync/sync.config.js.map +1 -0
- package/server/applications/sync/sync.controller.js +407 -0
- package/server/applications/sync/sync.controller.js.map +1 -0
- package/server/applications/sync/sync.controller.spec.js +53 -0
- package/server/applications/sync/sync.controller.spec.js.map +1 -0
- package/server/applications/sync/sync.module.js +45 -0
- package/server/applications/sync/sync.module.js.map +1 -0
- package/server/applications/sync/utils/functions.js +26 -0
- package/server/applications/sync/utils/functions.js.map +1 -0
- package/server/applications/sync/utils/normalizedMap.js +52 -0
- package/server/applications/sync/utils/normalizedMap.js.map +1 -0
- package/server/applications/sync/utils/routes.js +27 -0
- package/server/applications/sync/utils/routes.js.map +1 -0
- package/server/applications/users/admin-users.controller.js +350 -0
- package/server/applications/users/admin-users.controller.js.map +1 -0
- package/server/applications/users/admin-users.controller.spec.js +60 -0
- package/server/applications/users/admin-users.controller.spec.js.map +1 -0
- package/server/applications/users/constants/group.js +35 -0
- package/server/applications/users/constants/group.js.map +1 -0
- package/server/applications/users/constants/member.js +39 -0
- package/server/applications/users/constants/member.js.map +1 -0
- package/server/applications/users/constants/routes.js +134 -0
- package/server/applications/users/constants/routes.js.map +1 -0
- package/server/applications/users/constants/user.js +118 -0
- package/server/applications/users/constants/user.js.map +1 -0
- package/server/applications/users/constants/websocket.js +33 -0
- package/server/applications/users/constants/websocket.js.map +1 -0
- package/server/applications/users/decorators/permissions.decorator.js +18 -0
- package/server/applications/users/decorators/permissions.decorator.js.map +1 -0
- package/server/applications/users/decorators/roles.decorator.js +18 -0
- package/server/applications/users/decorators/roles.decorator.js.map +1 -0
- package/server/applications/users/decorators/user.decorator.js +20 -0
- package/server/applications/users/decorators/user.decorator.js.map +1 -0
- package/server/applications/users/dto/create-or-update-group.dto.js +66 -0
- package/server/applications/users/dto/create-or-update-group.dto.js.map +1 -0
- package/server/applications/users/dto/create-or-update-user.dto.js +167 -0
- package/server/applications/users/dto/create-or-update-user.dto.js.map +1 -0
- package/server/applications/users/dto/delete-user.dto.js +54 -0
- package/server/applications/users/dto/delete-user.dto.js.map +1 -0
- package/server/applications/users/dto/search-members.dto.js +79 -0
- package/server/applications/users/dto/search-members.dto.js.map +1 -0
- package/server/applications/users/dto/user-password.dto.js +35 -0
- package/server/applications/users/dto/user-password.dto.js.map +1 -0
- package/server/applications/users/dto/user-properties.dto.js +64 -0
- package/server/applications/users/dto/user-properties.dto.js.map +1 -0
- package/server/applications/users/guards/permissions.guard.js +71 -0
- package/server/applications/users/guards/permissions.guard.js.map +1 -0
- package/server/applications/users/guards/permissions.guard.spec.js +103 -0
- package/server/applications/users/guards/permissions.guard.spec.js.map +1 -0
- package/server/applications/users/guards/roles.guard.js +62 -0
- package/server/applications/users/guards/roles.guard.js.map +1 -0
- package/server/applications/users/guards/roles.guard.spec.js +90 -0
- package/server/applications/users/guards/roles.guard.spec.js.map +1 -0
- package/server/applications/users/interfaces/admin-group.interface.js +10 -0
- package/server/applications/users/interfaces/admin-group.interface.js.map +1 -0
- package/server/applications/users/interfaces/admin-user.interface.js +10 -0
- package/server/applications/users/interfaces/admin-user.interface.js.map +1 -0
- package/server/applications/users/interfaces/group-browse.interface.js +10 -0
- package/server/applications/users/interfaces/group-browse.interface.js.map +1 -0
- package/server/applications/users/interfaces/group-member.js +10 -0
- package/server/applications/users/interfaces/group-member.js.map +1 -0
- package/server/applications/users/interfaces/guest-user.interface.js +10 -0
- package/server/applications/users/interfaces/guest-user.interface.js.map +1 -0
- package/server/applications/users/interfaces/member.interface.js +10 -0
- package/server/applications/users/interfaces/member.interface.js.map +1 -0
- package/server/applications/users/interfaces/owner.interface.js +10 -0
- package/server/applications/users/interfaces/owner.interface.js.map +1 -0
- package/server/applications/users/interfaces/websocket.interface.js +10 -0
- package/server/applications/users/interfaces/websocket.interface.js.map +1 -0
- package/server/applications/users/models/user.model.js +226 -0
- package/server/applications/users/models/user.model.js.map +1 -0
- package/server/applications/users/schemas/group.interface.js +18 -0
- package/server/applications/users/schemas/group.interface.js.map +1 -0
- package/server/applications/users/schemas/groups.schema.js +56 -0
- package/server/applications/users/schemas/groups.schema.js.map +1 -0
- package/server/applications/users/schemas/user-group.interface.js +18 -0
- package/server/applications/users/schemas/user-group.interface.js.map +1 -0
- package/server/applications/users/schemas/user.interface.js +18 -0
- package/server/applications/users/schemas/user.interface.js.map +1 -0
- package/server/applications/users/schemas/users-groups.schema.js +49 -0
- package/server/applications/users/schemas/users-groups.schema.js.map +1 -0
- package/server/applications/users/schemas/users-guests.schema.js +46 -0
- package/server/applications/users/schemas/users-guests.schema.js.map +1 -0
- package/server/applications/users/schemas/users.schema.js +94 -0
- package/server/applications/users/schemas/users.schema.js.map +1 -0
- package/server/applications/users/services/admin-users-manager.service.js +385 -0
- package/server/applications/users/services/admin-users-manager.service.js.map +1 -0
- package/server/applications/users/services/admin-users-manager.service.spec.js +50 -0
- package/server/applications/users/services/admin-users-manager.service.spec.js.map +1 -0
- package/server/applications/users/services/admin-users-queries.service.js +315 -0
- package/server/applications/users/services/admin-users-queries.service.js.map +1 -0
- package/server/applications/users/services/users-manager.service.js +424 -0
- package/server/applications/users/services/users-manager.service.js.map +1 -0
- package/server/applications/users/services/users-manager.service.spec.js +151 -0
- package/server/applications/users/services/users-manager.service.spec.js.map +1 -0
- package/server/applications/users/services/users-queries.service.js +570 -0
- package/server/applications/users/services/users-queries.service.js.map +1 -0
- package/server/applications/users/users.controller.js +371 -0
- package/server/applications/users/users.controller.js.map +1 -0
- package/server/applications/users/users.controller.spec.js +86 -0
- package/server/applications/users/users.controller.spec.js.map +1 -0
- package/server/applications/users/users.e2e-spec.js +97 -0
- package/server/applications/users/users.e2e-spec.js.map +1 -0
- package/server/applications/users/users.gateway.js +182 -0
- package/server/applications/users/users.gateway.js.map +1 -0
- package/server/applications/users/users.gateway.spec.js +36 -0
- package/server/applications/users/users.gateway.spec.js.map +1 -0
- package/server/applications/users/users.module.js +57 -0
- package/server/applications/users/users.module.js.map +1 -0
- package/server/applications/users/utils/test.js +34 -0
- package/server/applications/users/utils/test.js.map +1 -0
- package/server/applications/webdav/constants/routes.js +73 -0
- package/server/applications/webdav/constants/routes.js.map +1 -0
- package/server/applications/webdav/constants/webdav.js +168 -0
- package/server/applications/webdav/constants/webdav.js.map +1 -0
- package/server/applications/webdav/decorators/if-header.decorator.js +27 -0
- package/server/applications/webdav/decorators/if-header.decorator.js.map +1 -0
- package/server/applications/webdav/decorators/webdav-context.decorator.js +36 -0
- package/server/applications/webdav/decorators/webdav-context.decorator.js.map +1 -0
- package/server/applications/webdav/filters/webdav.filter.js +45 -0
- package/server/applications/webdav/filters/webdav.filter.js.map +1 -0
- package/server/applications/webdav/guards/webdav-protocol.guard.js +262 -0
- package/server/applications/webdav/guards/webdav-protocol.guard.js.map +1 -0
- package/server/applications/webdav/interfaces/if-header.interface.js +10 -0
- package/server/applications/webdav/interfaces/if-header.interface.js.map +1 -0
- package/server/applications/webdav/interfaces/webdav.interface.js +10 -0
- package/server/applications/webdav/interfaces/webdav.interface.js.map +1 -0
- package/server/applications/webdav/models/webdav-file.model.js +74 -0
- package/server/applications/webdav/models/webdav-file.model.js.map +1 -0
- package/server/applications/webdav/services/webdav-methods.service.js +520 -0
- package/server/applications/webdav/services/webdav-methods.service.js.map +1 -0
- package/server/applications/webdav/services/webdav-methods.service.spec.js +41 -0
- package/server/applications/webdav/services/webdav-methods.service.spec.js.map +1 -0
- package/server/applications/webdav/services/webdav-spaces.service.js +169 -0
- package/server/applications/webdav/services/webdav-spaces.service.js.map +1 -0
- package/server/applications/webdav/services/webdav-spaces.service.spec.js +36 -0
- package/server/applications/webdav/services/webdav-spaces.service.spec.js.map +1 -0
- package/server/applications/webdav/utils/if-header.js +89 -0
- package/server/applications/webdav/utils/if-header.js.map +1 -0
- package/server/applications/webdav/utils/routes.js +30 -0
- package/server/applications/webdav/utils/routes.js.map +1 -0
- package/server/applications/webdav/utils/webdav.js +167 -0
- package/server/applications/webdav/utils/webdav.js.map +1 -0
- package/server/applications/webdav/utils/xml.js +72 -0
- package/server/applications/webdav/utils/xml.js.map +1 -0
- package/server/applications/webdav/webdav.controller.js +173 -0
- package/server/applications/webdav/webdav.controller.js.map +1 -0
- package/server/applications/webdav/webdav.controller.spec.js +41 -0
- package/server/applications/webdav/webdav.controller.spec.js.map +1 -0
- package/server/applications/webdav/webdav.e2e-spec.js +69 -0
- package/server/applications/webdav/webdav.e2e-spec.js.map +1 -0
- package/server/applications/webdav/webdav.module.js +41 -0
- package/server/applications/webdav/webdav.module.js.map +1 -0
- package/server/authentication/auth.config.js +223 -0
- package/server/authentication/auth.config.js.map +1 -0
- package/server/authentication/auth.controller.js +126 -0
- package/server/authentication/auth.controller.js.map +1 -0
- package/server/authentication/auth.controller.spec.js +132 -0
- package/server/authentication/auth.controller.spec.js.map +1 -0
- package/server/authentication/auth.e2e-spec.js +340 -0
- package/server/authentication/auth.e2e-spec.js.map +1 -0
- package/server/authentication/auth.module.js +84 -0
- package/server/authentication/auth.module.js.map +1 -0
- package/server/authentication/constants/auth.js +54 -0
- package/server/authentication/constants/auth.js.map +1 -0
- package/server/authentication/constants/routes.js +55 -0
- package/server/authentication/constants/routes.js.map +1 -0
- package/server/authentication/decorators/auth-token-optional.decorator.js +26 -0
- package/server/authentication/decorators/auth-token-optional.decorator.js.map +1 -0
- package/server/authentication/decorators/auth-token-skip.decorator.js +27 -0
- package/server/authentication/decorators/auth-token-skip.decorator.js.map +1 -0
- package/server/authentication/dto/login-response.dto.js +23 -0
- package/server/authentication/dto/login-response.dto.js.map +1 -0
- package/server/authentication/dto/token-response.dto.js +44 -0
- package/server/authentication/dto/token-response.dto.js.map +1 -0
- package/server/authentication/guards/auth-anonymous.guard.js +37 -0
- package/server/authentication/guards/auth-anonymous.guard.js.map +1 -0
- package/server/authentication/guards/auth-anonymous.guard.spec.js +65 -0
- package/server/authentication/guards/auth-anonymous.guard.spec.js.map +1 -0
- package/server/authentication/guards/auth-anonymous.strategy.js +44 -0
- package/server/authentication/guards/auth-anonymous.strategy.js.map +1 -0
- package/server/authentication/guards/auth-basic.guard.js +54 -0
- package/server/authentication/guards/auth-basic.guard.js.map +1 -0
- package/server/authentication/guards/auth-basic.guard.spec.js +148 -0
- package/server/authentication/guards/auth-basic.guard.spec.js.map +1 -0
- package/server/authentication/guards/auth-basic.strategy.js +79 -0
- package/server/authentication/guards/auth-basic.strategy.js.map +1 -0
- package/server/authentication/guards/auth-digest.guard.js +24 -0
- package/server/authentication/guards/auth-digest.guard.js.map +1 -0
- package/server/authentication/guards/auth-digest.strategy.js +28 -0
- package/server/authentication/guards/auth-digest.strategy.js.map +1 -0
- package/server/authentication/guards/auth-local.guard.js +40 -0
- package/server/authentication/guards/auth-local.guard.js.map +1 -0
- package/server/authentication/guards/auth-local.guard.spec.js +87 -0
- package/server/authentication/guards/auth-local.guard.spec.js.map +1 -0
- package/server/authentication/guards/auth-local.strategy.js +59 -0
- package/server/authentication/guards/auth-local.strategy.js.map +1 -0
- package/server/authentication/guards/auth-token-access.guard.js +66 -0
- package/server/authentication/guards/auth-token-access.guard.js.map +1 -0
- package/server/authentication/guards/auth-token-access.guard.spec.js +262 -0
- package/server/authentication/guards/auth-token-access.guard.spec.js.map +1 -0
- package/server/authentication/guards/auth-token-access.strategy.js +68 -0
- package/server/authentication/guards/auth-token-access.strategy.js.map +1 -0
- package/server/authentication/guards/auth-token-refresh.guard.js +40 -0
- package/server/authentication/guards/auth-token-refresh.guard.js.map +1 -0
- package/server/authentication/guards/auth-token-refresh.guard.spec.js +189 -0
- package/server/authentication/guards/auth-token-refresh.guard.spec.js.map +1 -0
- package/server/authentication/guards/auth-token-refresh.strategy.js +72 -0
- package/server/authentication/guards/auth-token-refresh.strategy.js.map +1 -0
- package/server/authentication/interfaces/auth-request.interface.js +10 -0
- package/server/authentication/interfaces/auth-request.interface.js.map +1 -0
- package/server/authentication/interfaces/jwt-payload.interface.js +28 -0
- package/server/authentication/interfaces/jwt-payload.interface.js.map +1 -0
- package/server/authentication/interfaces/token.interface.js +23 -0
- package/server/authentication/interfaces/token.interface.js.map +1 -0
- package/server/authentication/models/auth-method.js +18 -0
- package/server/authentication/models/auth-method.js.map +1 -0
- package/server/authentication/services/auth-manager.service.js +174 -0
- package/server/authentication/services/auth-manager.service.js.map +1 -0
- package/server/authentication/services/auth-manager.service.spec.js +41 -0
- package/server/authentication/services/auth-manager.service.spec.js.map +1 -0
- package/server/authentication/services/auth-methods/auth-method-database.service.js +55 -0
- package/server/authentication/services/auth-methods/auth-method-database.service.js.map +1 -0
- package/server/authentication/services/auth-methods/auth-method-database.service.spec.js +88 -0
- package/server/authentication/services/auth-methods/auth-method-database.service.spec.js.map +1 -0
- package/server/authentication/services/auth-methods/auth-method-ldap.service.js +185 -0
- package/server/authentication/services/auth-methods/auth-method-ldap.service.js.map +1 -0
- package/server/authentication/services/auth-methods/auth-method-ldap.service.spec.js +36 -0
- package/server/authentication/services/auth-methods/auth-method-ldap.service.spec.js.map +1 -0
- package/server/common/constants.js +23 -0
- package/server/common/constants.js.map +1 -0
- package/server/common/decorators.js +35 -0
- package/server/common/decorators.js.map +1 -0
- package/server/common/fonts/avatar.ttf +0 -0
- package/server/common/functions.js +292 -0
- package/server/common/functions.js.map +1 -0
- package/server/common/image.js +113 -0
- package/server/common/image.js.map +1 -0
- package/server/common/interfaces.js +10 -0
- package/server/common/interfaces.js.map +1 -0
- package/server/common/shared.js +105 -0
- package/server/common/shared.js.map +1 -0
- package/server/configuration/config.constants.js +65 -0
- package/server/configuration/config.constants.js.map +1 -0
- package/server/configuration/config.environment.js +57 -0
- package/server/configuration/config.environment.js.map +1 -0
- package/server/configuration/config.loader.js +195 -0
- package/server/configuration/config.loader.js.map +1 -0
- package/server/configuration/config.logger.js +69 -0
- package/server/configuration/config.logger.js.map +1 -0
- package/server/configuration/config.validation.js +175 -0
- package/server/configuration/config.validation.js.map +1 -0
- package/server/infrastructure/cache/adapters/mysql-cache.adapter.js +169 -0
- package/server/infrastructure/cache/adapters/mysql-cache.adapter.js.map +1 -0
- package/server/infrastructure/cache/adapters/redis-cache.adapter.js +129 -0
- package/server/infrastructure/cache/adapters/redis-cache.adapter.js.map +1 -0
- package/server/infrastructure/cache/cache.config.js +53 -0
- package/server/infrastructure/cache/cache.config.js.map +1 -0
- package/server/infrastructure/cache/cache.decorator.js +53 -0
- package/server/infrastructure/cache/cache.decorator.js.map +1 -0
- package/server/infrastructure/cache/cache.e2e-spec.js +111 -0
- package/server/infrastructure/cache/cache.e2e-spec.js.map +1 -0
- package/server/infrastructure/cache/cache.module.js +58 -0
- package/server/infrastructure/cache/cache.module.js.map +1 -0
- package/server/infrastructure/cache/schemas/mysql-cache.interface.js +18 -0
- package/server/infrastructure/cache/schemas/mysql-cache.interface.js.map +1 -0
- package/server/infrastructure/cache/schemas/mysql-cache.schema.js +26 -0
- package/server/infrastructure/cache/schemas/mysql-cache.schema.js.map +1 -0
- package/server/infrastructure/cache/services/cache.service.js +18 -0
- package/server/infrastructure/cache/services/cache.service.js.map +1 -0
- package/server/infrastructure/context/context.module.js +40 -0
- package/server/infrastructure/context/context.module.js.map +1 -0
- package/server/infrastructure/context/interceptors/context.interceptor.js +45 -0
- package/server/infrastructure/context/interceptors/context.interceptor.js.map +1 -0
- package/server/infrastructure/context/interfaces/context-store.interface.js +10 -0
- package/server/infrastructure/context/interfaces/context-store.interface.js.map +1 -0
- package/server/infrastructure/context/services/context-manager.service.js +43 -0
- package/server/infrastructure/context/services/context-manager.service.js.map +1 -0
- package/server/infrastructure/database/configuration.js +29 -0
- package/server/infrastructure/database/configuration.js.map +1 -0
- package/server/infrastructure/database/constants.js +41 -0
- package/server/infrastructure/database/constants.js.map +1 -0
- package/server/infrastructure/database/database.config.js +44 -0
- package/server/infrastructure/database/database.config.js.map +1 -0
- package/server/infrastructure/database/database.logger.js +22 -0
- package/server/infrastructure/database/database.logger.js.map +1 -0
- package/server/infrastructure/database/database.module.js +94 -0
- package/server/infrastructure/database/database.module.js.map +1 -0
- package/server/infrastructure/database/interfaces/database.interface.js +10 -0
- package/server/infrastructure/database/interfaces/database.interface.js.map +1 -0
- package/server/infrastructure/database/schema.js +40 -0
- package/server/infrastructure/database/schema.js.map +1 -0
- package/server/infrastructure/database/scripts/create-user.js +97 -0
- package/server/infrastructure/database/scripts/create-user.js.map +1 -0
- package/server/infrastructure/database/scripts/db.js +68 -0
- package/server/infrastructure/database/scripts/db.js.map +1 -0
- package/server/infrastructure/database/scripts/seed/main.js +18 -0
- package/server/infrastructure/database/scripts/seed/main.js.map +1 -0
- package/server/infrastructure/database/scripts/seed/usersgroups.js +92 -0
- package/server/infrastructure/database/scripts/seed/usersgroups.js.map +1 -0
- package/server/infrastructure/database/utils.js +117 -0
- package/server/infrastructure/database/utils.js.map +1 -0
- package/server/infrastructure/mailer/interfaces/mail.interface.js +10 -0
- package/server/infrastructure/mailer/interfaces/mail.interface.js.map +1 -0
- package/server/infrastructure/mailer/mailer.config.js +94 -0
- package/server/infrastructure/mailer/mailer.config.js.map +1 -0
- package/server/infrastructure/mailer/mailer.module.js +37 -0
- package/server/infrastructure/mailer/mailer.module.js.map +1 -0
- package/server/infrastructure/mailer/mailer.service.js +93 -0
- package/server/infrastructure/mailer/mailer.service.js.map +1 -0
- package/server/infrastructure/scheduler/scheduler.constants.js +30 -0
- package/server/infrastructure/scheduler/scheduler.constants.js.map +1 -0
- package/server/infrastructure/scheduler/scheduler.module.js +52 -0
- package/server/infrastructure/scheduler/scheduler.module.js.map +1 -0
- package/server/infrastructure/websocket/adapters/cluster.adapter.js +40 -0
- package/server/infrastructure/websocket/adapters/cluster.adapter.js.map +1 -0
- package/server/infrastructure/websocket/adapters/redis.adapter.js +61 -0
- package/server/infrastructure/websocket/adapters/redis.adapter.js.map +1 -0
- package/server/infrastructure/websocket/adapters/web-socket.adapter.js +127 -0
- package/server/infrastructure/websocket/adapters/web-socket.adapter.js.map +1 -0
- package/server/infrastructure/websocket/decorators/web-socket-user.decorator.js +20 -0
- package/server/infrastructure/websocket/decorators/web-socket-user.decorator.js.map +1 -0
- package/server/infrastructure/websocket/interfaces/auth-socket-io.interface.js +10 -0
- package/server/infrastructure/websocket/interfaces/auth-socket-io.interface.js.map +1 -0
- package/server/infrastructure/websocket/utils.js +23 -0
- package/server/infrastructure/websocket/utils.js.map +1 -0
- package/server/infrastructure/websocket/web-socket.config.js +54 -0
- package/server/infrastructure/websocket/web-socket.config.js.map +1 -0
- package/server/main.js +27 -0
- package/server/main.js.map +1 -0
- package/static/3rdpartylicenses.txt +1522 -0
- package/static/assets/avatar.svg +7 -0
- package/static/assets/codemirror/mode/apl/apl.js +174 -0
- package/static/assets/codemirror/mode/asciiarmor/asciiarmor.js +74 -0
- package/static/assets/codemirror/mode/asn.1/asn.1.js +204 -0
- package/static/assets/codemirror/mode/asterisk/asterisk.js +220 -0
- package/static/assets/codemirror/mode/brainfuck/brainfuck.js +85 -0
- package/static/assets/codemirror/mode/clike/clike.js +942 -0
- package/static/assets/codemirror/mode/clojure/clojure.js +293 -0
- package/static/assets/codemirror/mode/cmake/cmake.js +97 -0
- package/static/assets/codemirror/mode/cobol/cobol.js +255 -0
- package/static/assets/codemirror/mode/coffeescript/coffeescript.js +359 -0
- package/static/assets/codemirror/mode/commonlisp/commonlisp.js +125 -0
- package/static/assets/codemirror/mode/crystal/crystal.js +433 -0
- package/static/assets/codemirror/mode/css/css.js +862 -0
- package/static/assets/codemirror/mode/cypher/cypher.js +152 -0
- package/static/assets/codemirror/mode/d/d.js +223 -0
- package/static/assets/codemirror/mode/dart/dart.js +168 -0
- package/static/assets/codemirror/mode/diff/diff.js +47 -0
- package/static/assets/codemirror/mode/django/django.js +356 -0
- package/static/assets/codemirror/mode/dockerfile/dockerfile.js +211 -0
- package/static/assets/codemirror/mode/dtd/dtd.js +142 -0
- package/static/assets/codemirror/mode/dylan/dylan.js +352 -0
- package/static/assets/codemirror/mode/ebnf/ebnf.js +195 -0
- package/static/assets/codemirror/mode/ecl/ecl.js +206 -0
- package/static/assets/codemirror/mode/eiffel/eiffel.js +160 -0
- package/static/assets/codemirror/mode/elm/elm.js +245 -0
- package/static/assets/codemirror/mode/erlang/erlang.js +619 -0
- package/static/assets/codemirror/mode/factor/factor.js +85 -0
- package/static/assets/codemirror/mode/fcl/fcl.js +173 -0
- package/static/assets/codemirror/mode/forth/forth.js +180 -0
- package/static/assets/codemirror/mode/fortran/fortran.js +188 -0
- package/static/assets/codemirror/mode/gas/gas.js +353 -0
- package/static/assets/codemirror/mode/gfm/gfm.js +129 -0
- package/static/assets/codemirror/mode/gherkin/gherkin.js +194 -0
- package/static/assets/codemirror/mode/go/go.js +187 -0
- package/static/assets/codemirror/mode/groovy/groovy.js +245 -0
- package/static/assets/codemirror/mode/haml/haml.js +161 -0
- package/static/assets/codemirror/mode/handlebars/handlebars.js +70 -0
- package/static/assets/codemirror/mode/haskell/haskell.js +268 -0
- package/static/assets/codemirror/mode/haskell-literate/haskell-literate.js +43 -0
- package/static/assets/codemirror/mode/haxe/haxe.js +515 -0
- package/static/assets/codemirror/mode/htmlembedded/htmlembedded.js +37 -0
- package/static/assets/codemirror/mode/htmlmixed/htmlmixed.js +153 -0
- package/static/assets/codemirror/mode/http/http.js +113 -0
- package/static/assets/codemirror/mode/idl/idl.js +290 -0
- package/static/assets/codemirror/mode/javascript/javascript.js +960 -0
- package/static/assets/codemirror/mode/jinja2/jinja2.js +193 -0
- package/static/assets/codemirror/mode/jsx/jsx.js +149 -0
- package/static/assets/codemirror/mode/julia/julia.js +390 -0
- package/static/assets/codemirror/mode/livescript/livescript.js +280 -0
- package/static/assets/codemirror/mode/lua/lua.js +160 -0
- package/static/assets/codemirror/mode/markdown/markdown.js +886 -0
- package/static/assets/codemirror/mode/mathematica/mathematica.js +176 -0
- package/static/assets/codemirror/mode/mbox/mbox.js +129 -0
- package/static/assets/codemirror/mode/meta.js +221 -0
- package/static/assets/codemirror/mode/mirc/mirc.js +193 -0
- package/static/assets/codemirror/mode/mllike/mllike.js +359 -0
- package/static/assets/codemirror/mode/modelica/modelica.js +245 -0
- package/static/assets/codemirror/mode/mscgen/mscgen.js +175 -0
- package/static/assets/codemirror/mode/mumps/mumps.js +148 -0
- package/static/assets/codemirror/mode/nginx/nginx.js +178 -0
- package/static/assets/codemirror/mode/nsis/nsis.js +95 -0
- package/static/assets/codemirror/mode/ntriples/ntriples.js +195 -0
- package/static/assets/codemirror/mode/octave/octave.js +139 -0
- package/static/assets/codemirror/mode/oz/oz.js +252 -0
- package/static/assets/codemirror/mode/pascal/pascal.js +136 -0
- package/static/assets/codemirror/mode/pegjs/pegjs.js +111 -0
- package/static/assets/codemirror/mode/perl/perl.js +836 -0
- package/static/assets/codemirror/mode/php/php.js +234 -0
- package/static/assets/codemirror/mode/pig/pig.js +178 -0
- package/static/assets/codemirror/mode/powershell/powershell.js +398 -0
- package/static/assets/codemirror/mode/properties/properties.js +78 -0
- package/static/assets/codemirror/mode/protobuf/protobuf.js +72 -0
- package/static/assets/codemirror/mode/pug/pug.js +591 -0
- package/static/assets/codemirror/mode/puppet/puppet.js +220 -0
- package/static/assets/codemirror/mode/python/python.js +402 -0
- package/static/assets/codemirror/mode/q/q.js +139 -0
- package/static/assets/codemirror/mode/r/r.js +190 -0
- package/static/assets/codemirror/mode/rpm/changes/index.html +66 -0
- package/static/assets/codemirror/mode/rpm/rpm.js +109 -0
- package/static/assets/codemirror/mode/rst/rst.js +557 -0
- package/static/assets/codemirror/mode/ruby/ruby.js +303 -0
- package/static/assets/codemirror/mode/rust/rust.js +72 -0
- package/static/assets/codemirror/mode/sas/sas.js +303 -0
- package/static/assets/codemirror/mode/sass/sass.js +459 -0
- package/static/assets/codemirror/mode/scheme/scheme.js +284 -0
- package/static/assets/codemirror/mode/shell/shell.js +168 -0
- package/static/assets/codemirror/mode/sieve/sieve.js +193 -0
- package/static/assets/codemirror/mode/slim/slim.js +575 -0
- package/static/assets/codemirror/mode/smalltalk/smalltalk.js +168 -0
- package/static/assets/codemirror/mode/smarty/smarty.js +225 -0
- package/static/assets/codemirror/mode/solr/solr.js +104 -0
- package/static/assets/codemirror/mode/soy/soy.js +665 -0
- package/static/assets/codemirror/mode/sparql/sparql.js +184 -0
- package/static/assets/codemirror/mode/spreadsheet/spreadsheet.js +112 -0
- package/static/assets/codemirror/mode/sql/sql.js +529 -0
- package/static/assets/codemirror/mode/stex/stex.js +264 -0
- package/static/assets/codemirror/mode/stylus/stylus.js +775 -0
- package/static/assets/codemirror/mode/swift/swift.js +221 -0
- package/static/assets/codemirror/mode/tcl/tcl.js +140 -0
- package/static/assets/codemirror/mode/textile/textile.js +469 -0
- package/static/assets/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
- package/static/assets/codemirror/mode/tiddlywiki/tiddlywiki.js +308 -0
- package/static/assets/codemirror/mode/tiki/tiki.css +26 -0
- package/static/assets/codemirror/mode/tiki/tiki.js +312 -0
- package/static/assets/codemirror/mode/toml/toml.js +88 -0
- package/static/assets/codemirror/mode/tornado/tornado.js +68 -0
- package/static/assets/codemirror/mode/troff/troff.js +84 -0
- package/static/assets/codemirror/mode/ttcn/ttcn.js +283 -0
- package/static/assets/codemirror/mode/ttcn-cfg/ttcn-cfg.js +214 -0
- package/static/assets/codemirror/mode/turtle/turtle.js +162 -0
- package/static/assets/codemirror/mode/twig/twig.js +141 -0
- package/static/assets/codemirror/mode/vb/vb.js +275 -0
- package/static/assets/codemirror/mode/vbscript/vbscript.js +350 -0
- package/static/assets/codemirror/mode/velocity/velocity.js +202 -0
- package/static/assets/codemirror/mode/verilog/verilog.js +781 -0
- package/static/assets/codemirror/mode/vhdl/vhdl.js +189 -0
- package/static/assets/codemirror/mode/vue/vue.js +77 -0
- package/static/assets/codemirror/mode/wast/wast.js +132 -0
- package/static/assets/codemirror/mode/webidl/webidl.js +195 -0
- package/static/assets/codemirror/mode/xml/xml.js +417 -0
- package/static/assets/codemirror/mode/xquery/xquery.js +448 -0
- package/static/assets/codemirror/mode/yacas/yacas.js +204 -0
- package/static/assets/codemirror/mode/yaml/yaml.js +120 -0
- package/static/assets/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js +72 -0
- package/static/assets/codemirror/mode/z80/z80.js +116 -0
- package/static/assets/favicon.svg +25 -0
- package/static/assets/logo-dark.svg +32 -0
- package/static/assets/logo.svg +32 -0
- package/static/assets/mimes/7zip.svg +14 -0
- package/static/assets/mimes/application-7zip.svg +14 -0
- package/static/assets/mimes/application-atom+xml.svg +15 -0
- package/static/assets/mimes/application-atom.svg +15 -0
- package/static/assets/mimes/application-certificate.svg +28 -0
- package/static/assets/mimes/application-epub+zip.svg +10 -0
- package/static/assets/mimes/application-gzip.svg +16 -0
- package/static/assets/mimes/application-javascript.svg +6 -0
- package/static/assets/mimes/application-json.svg +11 -0
- package/static/assets/mimes/application-mathml+xml.svg +188 -0
- package/static/assets/mimes/application-mp4.svg +18 -0
- package/static/assets/mimes/application-msexcel.svg +1 -0
- package/static/assets/mimes/application-msword-template.svg +1 -0
- package/static/assets/mimes/application-msword.svg +1 -0
- package/static/assets/mimes/application-octet-stream.svg +273 -0
- package/static/assets/mimes/application-pdf.svg +13 -0
- package/static/assets/mimes/application-pgp-encrypted.svg +16 -0
- package/static/assets/mimes/application-pgp-keys.svg +16 -0
- package/static/assets/mimes/application-pgp-signature.svg +16 -0
- package/static/assets/mimes/application-pgp.svg +16 -0
- package/static/assets/mimes/application-postscript.svg +57 -0
- package/static/assets/mimes/application-powerpoint.svg +1 -0
- package/static/assets/mimes/application-rdf+xml.svg +14 -0
- package/static/assets/mimes/application-rss+xml.svg +15 -0
- package/static/assets/mimes/application-rtf.svg +14 -0
- package/static/assets/mimes/application-script-blank.svg +15 -0
- package/static/assets/mimes/application-sql.svg +1 -0
- package/static/assets/mimes/application-text.svg +14 -0
- package/static/assets/mimes/application-vnd.android.package-archive.svg +16 -0
- package/static/assets/mimes/application-vnd.apple.keynote.svg +16 -0
- package/static/assets/mimes/application-vnd.apple.numbers.svg +16 -0
- package/static/assets/mimes/application-vnd.apple.pages.svg +16 -0
- package/static/assets/mimes/application-vnd.ms-excel.sheet.binary.macroenabled.12.svg +1 -0
- package/static/assets/mimes/application-vnd.ms-excel.sheet.macroenabled.12.svg +1 -0
- package/static/assets/mimes/application-vnd.ms-excel.svg +1 -0
- package/static/assets/mimes/application-vnd.ms-excel.template.macroenabled.12.svg +1 -0
- package/static/assets/mimes/application-vnd.ms-powerpoint.presentation.macroenabled.12.svg +1 -0
- package/static/assets/mimes/application-vnd.ms-powerpoint.svg +1 -0
- package/static/assets/mimes/application-vnd.ms-powerpoint.template.macroenabled.12.svg +1 -0
- package/static/assets/mimes/application-vnd.ms-word.document.macroenabled.12.svg +1 -0
- package/static/assets/mimes/application-vnd.ms-word.svg +1 -0
- package/static/assets/mimes/application-vnd.ms-word.template.macroenabled.12.svg +1 -0
- package/static/assets/mimes/application-vnd.mspowerpoint.svg +1 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.chart.svg +1 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.database.svg +155 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.formula-template.svg +263 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.formula.svg +188 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.graphics-template.svg +530 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.graphics.svg +89 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.presentation-template.svg +197 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.presentation.svg +122 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.spreadsheet-template.svg +452 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.spreadsheet.svg +266 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.text-master.svg +92 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.text-template.svg +90 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.text-web.svg +18 -0
- package/static/assets/mimes/application-vnd.oasis.opendocument.text.svg +92 -0
- package/static/assets/mimes/application-vnd.openofficeorg.extension.svg +59 -0
- package/static/assets/mimes/application-vnd.openxmlformats-officedocument.presentationml.presentation.svg +1 -0
- package/static/assets/mimes/application-vnd.openxmlformats-officedocument.presentationml.slideshow.svg +1 -0
- package/static/assets/mimes/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg +1 -0
- package/static/assets/mimes/application-vnd.openxmlformats-officedocument.spreadsheetml.template.svg +1 -0
- package/static/assets/mimes/application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg +1 -0
- package/static/assets/mimes/application-vnd.openxmlformats-officedocument.wordprocessingml.template.svg +1 -0
- package/static/assets/mimes/application-vnd.rn-realmedia.svg +18 -0
- package/static/assets/mimes/application-vnd.sun.xml.calc.svg +1 -0
- package/static/assets/mimes/application-vnd.sun.xml.writer-global.svg +1 -0
- package/static/assets/mimes/application-vnd.sun.xml.writer-template.svg +1 -0
- package/static/assets/mimes/application-vnd.sun.xml.writer.svg +1 -0
- package/static/assets/mimes/application-vnd.sun.xml.writer.template.svg +14 -0
- package/static/assets/mimes/application-vnd.visio.svg +26 -0
- package/static/assets/mimes/application-wps-office.doc.svg +1 -0
- package/static/assets/mimes/application-wps-office.docx.svg +1 -0
- package/static/assets/mimes/application-wps-office.ppt.svg +1 -0
- package/static/assets/mimes/application-wps-office.pptx.svg +1 -0
- package/static/assets/mimes/application-wps-office.xls.svg +1 -0
- package/static/assets/mimes/application-wps-office.xlsx.svg +1 -0
- package/static/assets/mimes/application-x-7z-compressed.svg +14 -0
- package/static/assets/mimes/application-x-7zip.svg +14 -0
- package/static/assets/mimes/application-x-ace.svg +14 -0
- package/static/assets/mimes/application-x-addon.svg +59 -0
- package/static/assets/mimes/application-x-apple-diskimage.svg +1 -0
- package/static/assets/mimes/application-x-ar.svg +16 -0
- package/static/assets/mimes/application-x-arc.svg +14 -0
- package/static/assets/mimes/application-x-archive.svg +16 -0
- package/static/assets/mimes/application-x-arj.svg +14 -0
- package/static/assets/mimes/application-x-audacity-project.svg +24 -0
- package/static/assets/mimes/application-x-bittorrent.svg +53 -0
- package/static/assets/mimes/application-x-blender.svg +353 -0
- package/static/assets/mimes/application-x-bzdvi.svg +14 -0
- package/static/assets/mimes/application-x-bzip-compressed-tar.svg +14 -0
- package/static/assets/mimes/application-x-bzip.svg +16 -0
- package/static/assets/mimes/application-x-cd-image.svg +292 -0
- package/static/assets/mimes/application-x-cda.svg +358 -0
- package/static/assets/mimes/application-x-class-file.svg +37 -0
- package/static/assets/mimes/application-x-compress-tar.svg +16 -0
- package/static/assets/mimes/application-x-compress.svg +16 -0
- package/static/assets/mimes/application-x-compressed-tar.svg +14 -0
- package/static/assets/mimes/application-x-core.svg +20 -0
- package/static/assets/mimes/application-x-cpio.svg +16 -0
- package/static/assets/mimes/application-x-deb.svg +14 -0
- package/static/assets/mimes/application-x-designer.svg +48 -0
- package/static/assets/mimes/application-x-egon.svg +12 -0
- package/static/assets/mimes/application-x-executable.svg +40 -0
- package/static/assets/mimes/application-x-extension-html.svg +18 -0
- package/static/assets/mimes/application-x-font-afm.svg +14 -0
- package/static/assets/mimes/application-x-font-snf.svg +14 -0
- package/static/assets/mimes/application-x-font-speedo.svg +14 -0
- package/static/assets/mimes/application-x-font-type1.svg +14 -0
- package/static/assets/mimes/application-x-gettext-translation.svg +14 -0
- package/static/assets/mimes/application-x-glade.svg +48 -0
- package/static/assets/mimes/application-x-gnome-theme-package.svg +109 -0
- package/static/assets/mimes/application-x-gzdvi.svg +16 -0
- package/static/assets/mimes/application-x-gzip.svg +16 -0
- package/static/assets/mimes/application-x-httpd-php.svg +18 -0
- package/static/assets/mimes/application-x-iso9660-image.svg +292 -0
- package/static/assets/mimes/application-x-java-archive.svg +16 -0
- package/static/assets/mimes/application-x-java.svg +37 -0
- package/static/assets/mimes/application-x-jokosher.svg +24 -0
- package/static/assets/mimes/application-x-kcachegrind.svg +273 -0
- package/static/assets/mimes/application-x-kcsrc.svg +109 -0
- package/static/assets/mimes/application-x-keepass.svg +2 -0
- package/static/assets/mimes/application-x-keepass2.svg +2 -0
- package/static/assets/mimes/application-x-kgetlist.svg +53 -0
- package/static/assets/mimes/application-x-lha.svg +14 -0
- package/static/assets/mimes/application-x-lzma-compressed-tar.svg +16 -0
- package/static/assets/mimes/application-x-lzop.svg +16 -0
- package/static/assets/mimes/application-x-m4.svg +14 -0
- package/static/assets/mimes/application-x-matroska.svg +18 -0
- package/static/assets/mimes/application-x-mplayer2.svg +18 -0
- package/static/assets/mimes/application-x-ms-application.svg +306 -0
- package/static/assets/mimes/application-x-ms-dos-executable.svg +306 -0
- package/static/assets/mimes/application-x-msdos-program.svg +306 -0
- package/static/assets/mimes/application-x-msdownload.svg +306 -0
- package/static/assets/mimes/application-x-msi.svg +306 -0
- package/static/assets/mimes/application-x-mswinurl.svg +18 -0
- package/static/assets/mimes/application-x-mswrite.svg +1 -0
- package/static/assets/mimes/application-x-nzb.svg +15 -0
- package/static/assets/mimes/application-x-object.svg +273 -0
- package/static/assets/mimes/application-x-ole-storage.svg +273 -0
- package/static/assets/mimes/application-x-pak.svg +16 -0
- package/static/assets/mimes/application-x-perl.svg +15 -0
- package/static/assets/mimes/application-x-php.svg +18 -0
- package/static/assets/mimes/application-x-plasma.svg +20 -0
- package/static/assets/mimes/application-x-python-bytecode.svg +16 -0
- package/static/assets/mimes/application-x-rar.svg +14 -0
- package/static/assets/mimes/application-x-rpm.svg +14 -0
- package/static/assets/mimes/application-x-ruby.svg +22 -0
- package/static/assets/mimes/application-x-sh.svg +17 -0
- package/static/assets/mimes/application-x-shared-library-la.svg +62 -0
- package/static/assets/mimes/application-x-sharedlib.svg +62 -0
- package/static/assets/mimes/application-x-shellscript.svg +17 -0
- package/static/assets/mimes/application-x-shockwave-flash.svg +18 -0
- package/static/assets/mimes/application-x-srt.svg +210 -0
- package/static/assets/mimes/application-x-subrip.svg +210 -0
- package/static/assets/mimes/application-x-tar.svg +16 -0
- package/static/assets/mimes/application-x-tarz.svg +14 -0
- package/static/assets/mimes/application-x-tex.svg +79 -0
- package/static/assets/mimes/application-x-theme.svg +109 -0
- package/static/assets/mimes/application-x-trash.svg +14 -0
- package/static/assets/mimes/application-x-tzo.svg +14 -0
- package/static/assets/mimes/application-x-wine-extension-pdd.svg +14 -0
- package/static/assets/mimes/application-x-zip.svg +14 -0
- package/static/assets/mimes/application-x-zoo.svg +14 -0
- package/static/assets/mimes/application-xhtml+xml.svg +18 -0
- package/static/assets/mimes/application-xhtml.svg +18 -0
- package/static/assets/mimes/application-xml.svg +18 -0
- package/static/assets/mimes/application-xsd.svg +18 -0
- package/static/assets/mimes/application-xslt+xml.svg +18 -0
- package/static/assets/mimes/application-zip.svg +14 -0
- package/static/assets/mimes/applications-java.svg +14 -0
- package/static/assets/mimes/archive.svg +16 -0
- package/static/assets/mimes/ascii.svg +14 -0
- package/static/assets/mimes/audio-ac3.svg +24 -0
- package/static/assets/mimes/audio-flac.svg +24 -0
- package/static/assets/mimes/audio-mpeg.svg +24 -0
- package/static/assets/mimes/audio-vn.rn-realmedia.svg +18 -0
- package/static/assets/mimes/audio-vnd.rn-realvideo.svg +18 -0
- package/static/assets/mimes/audio-x-adpcm.svg +24 -0
- package/static/assets/mimes/audio-x-aiff.svg +24 -0
- package/static/assets/mimes/audio-x-flac+ogg.svg +24 -0
- package/static/assets/mimes/audio-x-flac.svg +24 -0
- package/static/assets/mimes/audio-x-generic.svg +24 -0
- package/static/assets/mimes/audio-x-it.svg +24 -0
- package/static/assets/mimes/audio-x-monkey.svg +24 -0
- package/static/assets/mimes/audio-x-mpegurl.svg +24 -0
- package/static/assets/mimes/audio-x-wav.svg +24 -0
- package/static/assets/mimes/audio-x-xi.svg +24 -0
- package/static/assets/mimes/audio-x-xm.svg +24 -0
- package/static/assets/mimes/binary.svg +40 -0
- package/static/assets/mimes/deb.svg +14 -0
- package/static/assets/mimes/directory.svg +9 -0
- package/static/assets/mimes/directory_disabled.svg +9 -0
- package/static/assets/mimes/directory_error.svg +9 -0
- package/static/assets/mimes/directory_share.svg +9 -0
- package/static/assets/mimes/directory_sync.svg +9 -0
- package/static/assets/mimes/divx.svg +18 -0
- package/static/assets/mimes/document.svg +14 -0
- package/static/assets/mimes/emblem-package.svg +16 -0
- package/static/assets/mimes/eps.svg +24 -0
- package/static/assets/mimes/exec.svg +40 -0
- package/static/assets/mimes/extension.svg +59 -0
- package/static/assets/mimes/file.svg +12 -0
- package/static/assets/mimes/folder-tar.svg +16 -0
- package/static/assets/mimes/folder_tar.svg +16 -0
- package/static/assets/mimes/font-otf.svg +14 -0
- package/static/assets/mimes/font-x-generic.svg +14 -0
- package/static/assets/mimes/font.svg +14 -0
- package/static/assets/mimes/font_bitmap.svg +14 -0
- package/static/assets/mimes/font_truetype.svg +14 -0
- package/static/assets/mimes/font_type1.svg +14 -0
- package/static/assets/mimes/fonts-package.svg +16 -0
- package/static/assets/mimes/gedit-plugin.svg +59 -0
- package/static/assets/mimes/gnome-exe-thumbnailer-generic-x.svg +306 -0
- package/static/assets/mimes/gnome-exe-thumbnailer-generic.svg +306 -0
- package/static/assets/mimes/gnome-exe-thumbnailer-template.svg +306 -0
- package/static/assets/mimes/gnome-fs-executable.svg +40 -0
- package/static/assets/mimes/gnome-mime-application-atom+xml.svg +15 -0
- package/static/assets/mimes/gnome-mime-application-msexcel.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-msword.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-ogg.svg +24 -0
- package/static/assets/mimes/gnome-mime-application-pdf.svg +13 -0
- package/static/assets/mimes/gnome-mime-application-postscript.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-powerpoint.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-rss+xml.svg +15 -0
- package/static/assets/mimes/gnome-mime-application-rtf.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-vnd.ms-excel.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-vnd.ms-powerpoint.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-vnd.ms-word.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-vnd.mspowerpoint.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-vnd.oasis.opendocument.formula.svg +188 -0
- package/static/assets/mimes/gnome-mime-application-vnd.oasis.opendocument.text-web.svg +18 -0
- package/static/assets/mimes/gnome-mime-application-vnd.openxmlformats-officedocument.presentationml.presentation.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-vnd.openxmlformats-officedocument.presentationml.slideshow.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-vnd.rn-realmedia-secure.svg +18 -0
- package/static/assets/mimes/gnome-mime-application-vnd.rn-realmedia-vbr.svg +18 -0
- package/static/assets/mimes/gnome-mime-application-vnd.rn-realmedia.svg +18 -0
- package/static/assets/mimes/gnome-mime-application-wps-office.doc.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-wps-office.docx.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-wps-office.ppt.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-wps-office.pptx.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-wps-office.xls.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-wps-office.xlsx.svg +1 -0
- package/static/assets/mimes/gnome-mime-application-x-7z-compressed.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-7zip.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-archive.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-arj.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-bittorrent.svg +53 -0
- package/static/assets/mimes/gnome-mime-application-x-bzip-compressed-tar.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-bzip-compressed.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-bzip.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-class-file.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-compress.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-compressed-tar.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-cpio-compressed.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-cpio.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-deb.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-designer.svg +48 -0
- package/static/assets/mimes/gnome-mime-application-x-executable.svg +40 -0
- package/static/assets/mimes/gnome-mime-application-x-font-afm.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-font-bdf.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-font-linux-psf.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-font-pcf.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-font-sunos-news.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-font-ttf.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-glade.svg +48 -0
- package/static/assets/mimes/gnome-mime-application-x-gnome-app-info.svg +109 -0
- package/static/assets/mimes/gnome-mime-application-x-gnome-theme-package.svg +109 -0
- package/static/assets/mimes/gnome-mime-application-x-gzip.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-gzpostscript.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-jar.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-java.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-killustrator.svg +12 -0
- package/static/assets/mimes/gnome-mime-application-x-lha.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-lhz.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-lzma-compressed-tar.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-lzma.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-ms-dos-executable.svg +306 -0
- package/static/assets/mimes/gnome-mime-application-x-perl.svg +15 -0
- package/static/assets/mimes/gnome-mime-application-x-php.svg +18 -0
- package/static/assets/mimes/gnome-mime-application-x-python-bytecode.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-rar.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-rpm.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-x-ruby.svg +22 -0
- package/static/assets/mimes/gnome-mime-application-x-shellscript.svg +17 -0
- package/static/assets/mimes/gnome-mime-application-x-shockwave-flash.svg +18 -0
- package/static/assets/mimes/gnome-mime-application-x-stuffit.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-tar.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-tarz.svg +16 -0
- package/static/assets/mimes/gnome-mime-application-x-tex.svg +79 -0
- package/static/assets/mimes/gnome-mime-application-x-theme.svg +109 -0
- package/static/assets/mimes/gnome-mime-application-x-zip.svg +14 -0
- package/static/assets/mimes/gnome-mime-application-xhtml+xml.svg +18 -0
- package/static/assets/mimes/gnome-mime-application-xml.svg +18 -0
- package/static/assets/mimes/gnome-mime-application-zip.svg +14 -0
- package/static/assets/mimes/gnome-mime-application.svg +40 -0
- package/static/assets/mimes/gnome-mime-audio.svg +24 -0
- package/static/assets/mimes/gnome-mime-image-vnd.adobe.photoshop.svg +14 -0
- package/static/assets/mimes/gnome-mime-image-x-cmu-raster.svg +12 -0
- package/static/assets/mimes/gnome-mime-image-x-killustrator.svg +12 -0
- package/static/assets/mimes/gnome-mime-image-x-psd.svg +14 -0
- package/static/assets/mimes/gnome-mime-image-x-xpixmap.svg +12 -0
- package/static/assets/mimes/gnome-mime-image.svg +12 -0
- package/static/assets/mimes/gnome-mime-text-html.svg +18 -0
- package/static/assets/mimes/gnome-mime-text-install.svg +20 -0
- package/static/assets/mimes/gnome-mime-text-plain.svg +14 -0
- package/static/assets/mimes/gnome-mime-text-vnd.wap.wml.svg +18 -0
- package/static/assets/mimes/gnome-mime-text-x-changelog.svg +208 -0
- package/static/assets/mimes/gnome-mime-text-x-copying.svg +17 -0
- package/static/assets/mimes/gnome-mime-text-x-csh.svg +17 -0
- package/static/assets/mimes/gnome-mime-text-x-gtkrc.svg +109 -0
- package/static/assets/mimes/gnome-mime-text-x-install.svg +17 -0
- package/static/assets/mimes/gnome-mime-text-x-java-source.svg +14 -0
- package/static/assets/mimes/gnome-mime-text-x-java.svg +14 -0
- package/static/assets/mimes/gnome-mime-text-x-makefile.svg +176 -0
- package/static/assets/mimes/gnome-mime-text-x-opml+xml.svg +15 -0
- package/static/assets/mimes/gnome-mime-text-x-opml.svg +15 -0
- package/static/assets/mimes/gnome-mime-text-x-python.svg +16 -0
- package/static/assets/mimes/gnome-mime-text-x-readme.svg +15 -0
- package/static/assets/mimes/gnome-mime-text-x-sh.svg +17 -0
- package/static/assets/mimes/gnome-mime-text-x-zsh.svg +17 -0
- package/static/assets/mimes/gnome-mime-text.svg +14 -0
- package/static/assets/mimes/gnome-mime-video-x-ms-asf.svg +18 -0
- package/static/assets/mimes/gnome-mime-video-x-ms-wmv.svg +18 -0
- package/static/assets/mimes/gnome-mime-video.svg +18 -0
- package/static/assets/mimes/gnome-mime-x-font-afm.svg +14 -0
- package/static/assets/mimes/gnome-mime-x-install.svg +20 -0
- package/static/assets/mimes/gnome-package.svg +16 -0
- package/static/assets/mimes/html.svg +18 -0
- package/static/assets/mimes/image-gif.svg +12 -0
- package/static/assets/mimes/image-jpeg.svg +12 -0
- package/static/assets/mimes/image-png.svg +12 -0
- package/static/assets/mimes/image-svg+xml-compressed.svg +12 -0
- package/static/assets/mimes/image-svg+xml.svg +12 -0
- package/static/assets/mimes/image-svg.svg +12 -0
- package/static/assets/mimes/image-vnd.adobe.photoshop.svg +14 -0
- package/static/assets/mimes/image-vnd.microsoft.icon.svg +12 -0
- package/static/assets/mimes/image-x-eps.svg +24 -0
- package/static/assets/mimes/image-x-generic.svg +12 -0
- package/static/assets/mimes/image-x-psd.svg +14 -0
- package/static/assets/mimes/image-x-psdimage-x-psd.svg +14 -0
- package/static/assets/mimes/image-x-xcf.svg +21 -0
- package/static/assets/mimes/image-x-xfig.svg +12 -0
- package/static/assets/mimes/image.svg +12 -0
- package/static/assets/mimes/internet-feed.svg +15 -0
- package/static/assets/mimes/libpeas-plugin.svg +59 -0
- package/static/assets/mimes/libreoffice-database.svg +155 -0
- package/static/assets/mimes/libreoffice-extension.svg +59 -0
- package/static/assets/mimes/libreoffice-extensionn.svg +59 -0
- package/static/assets/mimes/libreoffice-formula.svg +188 -0
- package/static/assets/mimes/libreoffice-oasis-formula.svg +188 -0
- package/static/assets/mimes/libreoffice34-extension.svg +59 -0
- package/static/assets/mimes/media-audio.svg +24 -0
- package/static/assets/mimes/media-video.svg +18 -0
- package/static/assets/mimes/mime-ascii.svg +14 -0
- package/static/assets/mimes/mime_ascii.svg +14 -0
- package/static/assets/mimes/misc.svg +14 -0
- package/static/assets/mimes/multipart-encrypted.svg +273 -0
- package/static/assets/mimes/music.svg +24 -0
- package/static/assets/mimes/none.svg +110 -0
- package/static/assets/mimes/old-file.svg +22 -0
- package/static/assets/mimes/openofficeorg3-extension.svg +59 -0
- package/static/assets/mimes/package-x-generic.svg +16 -0
- package/static/assets/mimes/package.svg +16 -0
- package/static/assets/mimes/package_editors.svg +14 -0
- package/static/assets/mimes/packages-gdebi.svg +14 -0
- package/static/assets/mimes/pdf.svg +13 -0
- package/static/assets/mimes/preferences-certificate.svg +28 -0
- package/static/assets/mimes/preferences-plugin.svg +59 -0
- package/static/assets/mimes/rar.svg +14 -0
- package/static/assets/mimes/raw.svg +12 -0
- package/static/assets/mimes/rpm.svg +14 -0
- package/static/assets/mimes/scii.svg +14 -0
- package/static/assets/mimes/shellscript.svg +17 -0
- package/static/assets/mimes/sound.svg +24 -0
- package/static/assets/mimes/stock_certificate.svg +28 -0
- package/static/assets/mimes/stock_new-formula.svg +188 -0
- package/static/assets/mimes/stock_new-html.svg +18 -0
- package/static/assets/mimes/stock_script.svg +17 -0
- package/static/assets/mimes/stock_scripts.svg +17 -0
- package/static/assets/mimes/tar.svg +16 -0
- package/static/assets/mimes/text-css.svg +18 -0
- package/static/assets/mimes/text-enriched.svg +14 -0
- package/static/assets/mimes/text-html.svg +18 -0
- package/static/assets/mimes/text-htmlh.svg +18 -0
- package/static/assets/mimes/text-javascript.svg +6 -0
- package/static/assets/mimes/text-markdown.svg +26 -0
- package/static/assets/mimes/text-mht.svg +18 -0
- package/static/assets/mimes/text-plain.svg +14 -0
- package/static/assets/mimes/text-richtext.svg +14 -0
- package/static/assets/mimes/text-typescript.svg +1 -0
- package/static/assets/mimes/text-x-bak.svg +14 -0
- package/static/assets/mimes/text-x-bibtex.svg +79 -0
- package/static/assets/mimes/text-x-changelog.svg +208 -0
- package/static/assets/mimes/text-x-copying.svg +17 -0
- package/static/assets/mimes/text-x-generic.svg +14 -0
- package/static/assets/mimes/text-x-gtkrc.svg +109 -0
- package/static/assets/mimes/text-x-install.svg +20 -0
- package/static/assets/mimes/text-x-java-source.svg +14 -0
- package/static/assets/mimes/text-x-java.svg +14 -0
- package/static/assets/mimes/text-x-log.svg +1135 -0
- package/static/assets/mimes/text-x-lua.svg +14 -0
- package/static/assets/mimes/text-x-makefile.svg +176 -0
- package/static/assets/mimes/text-x-microdvd.svg +210 -0
- package/static/assets/mimes/text-x-nfo.svg +14 -0
- package/static/assets/mimes/text-x-opml+xml.svg +15 -0
- package/static/assets/mimes/text-x-opml.svg +15 -0
- package/static/assets/mimes/text-x-patch.svg +19 -0
- package/static/assets/mimes/text-x-perl.svg +15 -0
- package/static/assets/mimes/text-x-python.svg +16 -0
- package/static/assets/mimes/text-x-readme.svg +15 -0
- package/static/assets/mimes/text-x-ruby.svg +22 -0
- package/static/assets/mimes/text-x-script.svg +17 -0
- package/static/assets/mimes/text-x-tex.svg +79 -0
- package/static/assets/mimes/text-x-vala.svg +14 -0
- package/static/assets/mimes/text-x.svg +14 -0
- package/static/assets/mimes/text-xmcd.svg +358 -0
- package/static/assets/mimes/text-xml.svg +18 -0
- package/static/assets/mimes/text-yaml.svg +1 -0
- package/static/assets/mimes/text.svg +14 -0
- package/static/assets/mimes/text2.svg +14 -0
- package/static/assets/mimes/tgz.svg +16 -0
- package/static/assets/mimes/txt.svg +14 -0
- package/static/assets/mimes/txt2.svg +14 -0
- package/static/assets/mimes/unknown.svg +110 -0
- package/static/assets/mimes/uri-mms.svg +18 -0
- package/static/assets/mimes/uri-mmst.svg +18 -0
- package/static/assets/mimes/uri-mmsu.svg +18 -0
- package/static/assets/mimes/uri-pnm.svg +18 -0
- package/static/assets/mimes/uri-rtspt.svg +18 -0
- package/static/assets/mimes/uri-rtspu.svg +18 -0
- package/static/assets/mimes/video-quicktime.svg +18 -0
- package/static/assets/mimes/video-vivo.svg +18 -0
- package/static/assets/mimes/video-wavelet.svg +18 -0
- package/static/assets/mimes/video-webm.svg +18 -0
- package/static/assets/mimes/video-x-anim.svg +18 -0
- package/static/assets/mimes/video-x-flic.svg +18 -0
- package/static/assets/mimes/video-x-generic.svg +18 -0
- package/static/assets/mimes/video-x-google-vlc-plugin.svg +18 -0
- package/static/assets/mimes/video-x-javafx.svg +18 -0
- package/static/assets/mimes/video-x-matroska.svg +18 -0
- package/static/assets/mimes/video-x-mng.svg +18 -0
- package/static/assets/mimes/video-x-ms-asf-plugin.svg +18 -0
- package/static/assets/mimes/video-x-ms-asf.svg +18 -0
- package/static/assets/mimes/video-x-ms-wmp.svg +18 -0
- package/static/assets/mimes/video-x-ms-wmv.svg +18 -0
- package/static/assets/mimes/video-x-nsv.svg +18 -0
- package/static/assets/mimes/video-x-sgi-movie.svg +18 -0
- package/static/assets/mimes/video-x-theora+ogg.svg +18 -0
- package/static/assets/mimes/video-x-wmv.svg +18 -0
- package/static/assets/mimes/video.svg +18 -0
- package/static/assets/mimes/www.svg +18 -0
- package/static/assets/mimes/x-kde-nsplugin-generated.svg +59 -0
- package/static/assets/mimes/zip.svg +14 -0
- package/static/assets/pdfjs/LICENSE +177 -0
- package/static/assets/pdfjs/build/pdf.mjs +23371 -0
- package/static/assets/pdfjs/build/pdf.mjs.map +1 -0
- package/static/assets/pdfjs/build/pdf.sandbox.mjs +218 -0
- package/static/assets/pdfjs/build/pdf.sandbox.mjs.map +1 -0
- package/static/assets/pdfjs/build/pdf.worker.mjs +58148 -0
- package/static/assets/pdfjs/build/pdf.worker.mjs.map +1 -0
- package/static/assets/pdfjs/version +1 -0
- package/static/assets/pdfjs/web/cmaps/78-EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/78-EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/78-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/78-RKSJ-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/78-RKSJ-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/78-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/78ms-RKSJ-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/78ms-RKSJ-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/83pv-RKSJ-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/90ms-RKSJ-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/90ms-RKSJ-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/90msp-RKSJ-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/90msp-RKSJ-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/90pv-RKSJ-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/90pv-RKSJ-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Add-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Add-RKSJ-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Add-RKSJ-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Add-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-0.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-1.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-2.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-3.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-4.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-5.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-6.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-CNS1-UCS2.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-GB1-0.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-GB1-1.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-GB1-2.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-GB1-3.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-GB1-4.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-GB1-5.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-GB1-UCS2.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-0.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-1.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-2.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-3.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-4.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-5.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-6.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Japan1-UCS2.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Korea1-0.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Korea1-1.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Korea1-2.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Adobe-Korea1-UCS2.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/B5-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/B5-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/B5pc-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/B5pc-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/CNS-EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/CNS-EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/CNS1-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/CNS1-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/CNS2-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/CNS2-V.bcmap +3 -0
- package/static/assets/pdfjs/web/cmaps/ETHK-B5-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/ETHK-B5-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/ETen-B5-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/ETen-B5-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/ETenms-B5-H.bcmap +3 -0
- package/static/assets/pdfjs/web/cmaps/ETenms-B5-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Ext-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Ext-RKSJ-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Ext-RKSJ-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Ext-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GB-EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GB-EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GB-H.bcmap +4 -0
- package/static/assets/pdfjs/web/cmaps/GB-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBK-EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBK-EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBK2K-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBK2K-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBKp-EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBKp-EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBT-EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBT-EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBT-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBT-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBTpc-EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBTpc-EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBpc-EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/GBpc-EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKdla-B5-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKdla-B5-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKdlb-B5-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKdlb-B5-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKgccs-B5-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKgccs-B5-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKm314-B5-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKm314-B5-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKm471-B5-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKm471-B5-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKscs-B5-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/HKscs-B5-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Hankaku.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Hiragana.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSC-EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSC-EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSC-Johab-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSC-Johab-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSCms-UHC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSCms-UHC-HW-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSCms-UHC-HW-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSCms-UHC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSCpc-EUC-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/KSCpc-EUC-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Katakana.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/LICENSE +36 -0
- package/static/assets/pdfjs/web/cmaps/NWP-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/NWP-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/RKSJ-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/RKSJ-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/Roman.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniCNS-UCS2-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniCNS-UCS2-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniCNS-UTF16-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniCNS-UTF16-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniCNS-UTF32-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniCNS-UTF32-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniCNS-UTF8-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniCNS-UTF8-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniGB-UCS2-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniGB-UCS2-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniGB-UTF16-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniGB-UTF16-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniGB-UTF32-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniGB-UTF32-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniGB-UTF8-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniGB-UTF8-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS-UCS2-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS-UCS2-HW-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS-UCS2-HW-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS-UCS2-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS-UTF16-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS-UTF16-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS-UTF32-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS-UTF32-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS-UTF8-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS-UTF8-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS2004-UTF16-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS2004-UTF16-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS2004-UTF32-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS2004-UTF32-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS2004-UTF8-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJIS2004-UTF8-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJISPro-UCS2-HW-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJISPro-UCS2-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJISPro-UTF8-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJISX0213-UTF32-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJISX0213-UTF32-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJISX02132004-UTF32-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniJISX02132004-UTF32-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniKS-UCS2-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniKS-UCS2-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniKS-UTF16-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniKS-UTF16-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniKS-UTF32-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniKS-UTF32-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniKS-UTF8-H.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/UniKS-UTF8-V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/V.bcmap +0 -0
- package/static/assets/pdfjs/web/cmaps/WP-Symbol.bcmap +0 -0
- package/static/assets/pdfjs/web/compressed.tracemonkey-pldi-09.pdf +0 -0
- package/static/assets/pdfjs/web/debugger.css +114 -0
- package/static/assets/pdfjs/web/debugger.mjs +627 -0
- package/static/assets/pdfjs/web/iccs/CGATS001Compat-v2-micro.icc +0 -0
- package/static/assets/pdfjs/web/iccs/LICENSE +116 -0
- package/static/assets/pdfjs/web/images/altText_add.svg +3 -0
- package/static/assets/pdfjs/web/images/altText_disclaimer.svg +3 -0
- package/static/assets/pdfjs/web/images/altText_done.svg +3 -0
- package/static/assets/pdfjs/web/images/altText_spinner.svg +30 -0
- package/static/assets/pdfjs/web/images/altText_warning.svg +3 -0
- package/static/assets/pdfjs/web/images/annotation-check.svg +11 -0
- package/static/assets/pdfjs/web/images/annotation-comment.svg +16 -0
- package/static/assets/pdfjs/web/images/annotation-help.svg +26 -0
- package/static/assets/pdfjs/web/images/annotation-insert.svg +10 -0
- package/static/assets/pdfjs/web/images/annotation-key.svg +11 -0
- package/static/assets/pdfjs/web/images/annotation-newparagraph.svg +11 -0
- package/static/assets/pdfjs/web/images/annotation-noicon.svg +7 -0
- package/static/assets/pdfjs/web/images/annotation-note.svg +42 -0
- package/static/assets/pdfjs/web/images/annotation-paperclip.svg +6 -0
- package/static/assets/pdfjs/web/images/annotation-paragraph.svg +16 -0
- package/static/assets/pdfjs/web/images/annotation-pushpin.svg +7 -0
- package/static/assets/pdfjs/web/images/comment-actionsButton.svg +3 -0
- package/static/assets/pdfjs/web/images/comment-closeButton.svg +3 -0
- package/static/assets/pdfjs/web/images/comment-editButton.svg +3 -0
- package/static/assets/pdfjs/web/images/cursor-editorFreeHighlight.svg +6 -0
- package/static/assets/pdfjs/web/images/cursor-editorFreeText.svg +3 -0
- package/static/assets/pdfjs/web/images/cursor-editorInk.svg +4 -0
- package/static/assets/pdfjs/web/images/cursor-editorTextHighlight.svg +8 -0
- package/static/assets/pdfjs/web/images/editor-toolbar-delete.svg +5 -0
- package/static/assets/pdfjs/web/images/editor-toolbar-edit.svg +3 -0
- package/static/assets/pdfjs/web/images/findbarButton-next.svg +3 -0
- package/static/assets/pdfjs/web/images/findbarButton-previous.svg +3 -0
- package/static/assets/pdfjs/web/images/gv-toolbarButton-download.svg +3 -0
- package/static/assets/pdfjs/web/images/loading-icon.gif +0 -0
- package/static/assets/pdfjs/web/images/loading.svg +1 -0
- package/static/assets/pdfjs/web/images/messageBar_closingButton.svg +3 -0
- package/static/assets/pdfjs/web/images/messageBar_info.svg +3 -0
- package/static/assets/pdfjs/web/images/messageBar_warning.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-documentProperties.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-firstPage.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-handTool.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-lastPage.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-rotateCcw.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-rotateCw.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-scrollHorizontal.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-scrollPage.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-scrollVertical.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-scrollWrapped.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-selectTool.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-spreadEven.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-spreadNone.svg +3 -0
- package/static/assets/pdfjs/web/images/secondaryToolbarButton-spreadOdd.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-bookmark.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-currentOutlineItem.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-download.svg +4 -0
- package/static/assets/pdfjs/web/images/toolbarButton-editorFreeText.svg +5 -0
- package/static/assets/pdfjs/web/images/toolbarButton-editorHighlight.svg +6 -0
- package/static/assets/pdfjs/web/images/toolbarButton-editorInk.svg +4 -0
- package/static/assets/pdfjs/web/images/toolbarButton-editorSignature.svg +6 -0
- package/static/assets/pdfjs/web/images/toolbarButton-editorStamp.svg +8 -0
- package/static/assets/pdfjs/web/images/toolbarButton-menuArrow.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-openFile.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-pageDown.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-pageUp.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-presentationMode.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-print.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-search.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-secondaryToolbarToggle.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-sidebarToggle.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-viewAttachments.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-viewLayers.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-viewOutline.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-viewThumbnail.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-zoomIn.svg +3 -0
- package/static/assets/pdfjs/web/images/toolbarButton-zoomOut.svg +3 -0
- package/static/assets/pdfjs/web/images/treeitem-collapsed.svg +1 -0
- package/static/assets/pdfjs/web/images/treeitem-expanded.svg +1 -0
- package/static/assets/pdfjs/web/locale/ach/viewer.ftl +275 -0
- package/static/assets/pdfjs/web/locale/af/viewer.ftl +262 -0
- package/static/assets/pdfjs/web/locale/an/viewer.ftl +307 -0
- package/static/assets/pdfjs/web/locale/ar/viewer.ftl +627 -0
- package/static/assets/pdfjs/web/locale/ast/viewer.ftl +251 -0
- package/static/assets/pdfjs/web/locale/az/viewer.ftl +307 -0
- package/static/assets/pdfjs/web/locale/be/viewer.ftl +618 -0
- package/static/assets/pdfjs/web/locale/bg/viewer.ftl +451 -0
- package/static/assets/pdfjs/web/locale/bn/viewer.ftl +297 -0
- package/static/assets/pdfjs/web/locale/bo/viewer.ftl +297 -0
- package/static/assets/pdfjs/web/locale/br/viewer.ftl +382 -0
- package/static/assets/pdfjs/web/locale/brx/viewer.ftl +268 -0
- package/static/assets/pdfjs/web/locale/bs/viewer.ftl +618 -0
- package/static/assets/pdfjs/web/locale/ca/viewer.ftl +343 -0
- package/static/assets/pdfjs/web/locale/cak/viewer.ftl +341 -0
- package/static/assets/pdfjs/web/locale/ckb/viewer.ftl +292 -0
- package/static/assets/pdfjs/web/locale/cs/viewer.ftl +621 -0
- package/static/assets/pdfjs/web/locale/cy/viewer.ftl +627 -0
- package/static/assets/pdfjs/web/locale/da/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/de/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/dsb/viewer.ftl +621 -0
- package/static/assets/pdfjs/web/locale/el/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/en-CA/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/en-GB/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/en-US/viewer.ftl +667 -0
- package/static/assets/pdfjs/web/locale/eo/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/es-AR/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/es-CL/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/es-ES/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/es-MX/viewer.ftl +580 -0
- package/static/assets/pdfjs/web/locale/et/viewer.ftl +319 -0
- package/static/assets/pdfjs/web/locale/eu/viewer.ftl +619 -0
- package/static/assets/pdfjs/web/locale/fa/viewer.ftl +378 -0
- package/static/assets/pdfjs/web/locale/ff/viewer.ftl +297 -0
- package/static/assets/pdfjs/web/locale/fi/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/fr/viewer.ftl +611 -0
- package/static/assets/pdfjs/web/locale/fur/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/fy-NL/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/ga-IE/viewer.ftl +263 -0
- package/static/assets/pdfjs/web/locale/gd/viewer.ftl +343 -0
- package/static/assets/pdfjs/web/locale/gl/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/gn/viewer.ftl +614 -0
- package/static/assets/pdfjs/web/locale/gu-IN/viewer.ftl +297 -0
- package/static/assets/pdfjs/web/locale/he/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/hi-IN/viewer.ftl +297 -0
- package/static/assets/pdfjs/web/locale/hr/viewer.ftl +618 -0
- package/static/assets/pdfjs/web/locale/hsb/viewer.ftl +621 -0
- package/static/assets/pdfjs/web/locale/hu/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/hy-AM/viewer.ftl +314 -0
- package/static/assets/pdfjs/web/locale/hye/viewer.ftl +318 -0
- package/static/assets/pdfjs/web/locale/ia/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/id/viewer.ftl +603 -0
- package/static/assets/pdfjs/web/locale/is/viewer.ftl +600 -0
- package/static/assets/pdfjs/web/locale/it/viewer.ftl +623 -0
- package/static/assets/pdfjs/web/locale/ja/viewer.ftl +603 -0
- package/static/assets/pdfjs/web/locale/ka/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/kab/viewer.ftl +595 -0
- package/static/assets/pdfjs/web/locale/kk/viewer.ftl +603 -0
- package/static/assets/pdfjs/web/locale/km/viewer.ftl +273 -0
- package/static/assets/pdfjs/web/locale/kn/viewer.ftl +263 -0
- package/static/assets/pdfjs/web/locale/ko/viewer.ftl +603 -0
- package/static/assets/pdfjs/web/locale/lij/viewer.ftl +297 -0
- package/static/assets/pdfjs/web/locale/lo/viewer.ftl +343 -0
- package/static/assets/pdfjs/web/locale/locale.json +1 -0
- package/static/assets/pdfjs/web/locale/lt/viewer.ftl +318 -0
- package/static/assets/pdfjs/web/locale/ltg/viewer.ftl +296 -0
- package/static/assets/pdfjs/web/locale/lv/viewer.ftl +297 -0
- package/static/assets/pdfjs/web/locale/meh/viewer.ftl +137 -0
- package/static/assets/pdfjs/web/locale/mk/viewer.ftl +265 -0
- package/static/assets/pdfjs/web/locale/ml/viewer.ftl +524 -0
- package/static/assets/pdfjs/web/locale/mr/viewer.ftl +289 -0
- package/static/assets/pdfjs/web/locale/ms/viewer.ftl +297 -0
- package/static/assets/pdfjs/web/locale/my/viewer.ftl +256 -0
- package/static/assets/pdfjs/web/locale/nb-NO/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/ne-NP/viewer.ftl +284 -0
- package/static/assets/pdfjs/web/locale/nl/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/nn-NO/viewer.ftl +609 -0
- package/static/assets/pdfjs/web/locale/oc/viewer.ftl +436 -0
- package/static/assets/pdfjs/web/locale/pa-IN/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/pl/viewer.ftl +618 -0
- package/static/assets/pdfjs/web/locale/pt-BR/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/pt-PT/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/rm/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/ro/viewer.ftl +302 -0
- package/static/assets/pdfjs/web/locale/ru/viewer.ftl +618 -0
- package/static/assets/pdfjs/web/locale/sat/viewer.ftl +355 -0
- package/static/assets/pdfjs/web/locale/sc/viewer.ftl +394 -0
- package/static/assets/pdfjs/web/locale/scn/viewer.ftl +124 -0
- package/static/assets/pdfjs/web/locale/sco/viewer.ftl +314 -0
- package/static/assets/pdfjs/web/locale/si/viewer.ftl +301 -0
- package/static/assets/pdfjs/web/locale/sk/viewer.ftl +621 -0
- package/static/assets/pdfjs/web/locale/skr/viewer.ftl +524 -0
- package/static/assets/pdfjs/web/locale/sl/viewer.ftl +621 -0
- package/static/assets/pdfjs/web/locale/son/viewer.ftl +256 -0
- package/static/assets/pdfjs/web/locale/sq/viewer.ftl +606 -0
- package/static/assets/pdfjs/web/locale/sr/viewer.ftl +451 -0
- package/static/assets/pdfjs/web/locale/sv-SE/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/szl/viewer.ftl +307 -0
- package/static/assets/pdfjs/web/locale/ta/viewer.ftl +273 -0
- package/static/assets/pdfjs/web/locale/te/viewer.ftl +289 -0
- package/static/assets/pdfjs/web/locale/tg/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/th/viewer.ftl +603 -0
- package/static/assets/pdfjs/web/locale/tl/viewer.ftl +307 -0
- package/static/assets/pdfjs/web/locale/tr/viewer.ftl +615 -0
- package/static/assets/pdfjs/web/locale/trs/viewer.ftl +247 -0
- package/static/assets/pdfjs/web/locale/uk/viewer.ftl +618 -0
- package/static/assets/pdfjs/web/locale/ur/viewer.ftl +298 -0
- package/static/assets/pdfjs/web/locale/uz/viewer.ftl +237 -0
- package/static/assets/pdfjs/web/locale/vi/viewer.ftl +603 -0
- package/static/assets/pdfjs/web/locale/wo/viewer.ftl +177 -0
- package/static/assets/pdfjs/web/locale/xh/viewer.ftl +262 -0
- package/static/assets/pdfjs/web/locale/zh-CN/viewer.ftl +603 -0
- package/static/assets/pdfjs/web/locale/zh-TW/viewer.ftl +603 -0
- package/static/assets/pdfjs/web/standard_fonts/FoxitDingbats.pfb +0 -0
- package/static/assets/pdfjs/web/standard_fonts/FoxitFixed.pfb +0 -0
- package/static/assets/pdfjs/web/standard_fonts/FoxitFixedBold.pfb +0 -0
- package/static/assets/pdfjs/web/standard_fonts/FoxitFixedBoldItalic.pfb +0 -0
- package/static/assets/pdfjs/web/standard_fonts/FoxitFixedItalic.pfb +0 -0
- package/static/assets/pdfjs/web/standard_fonts/FoxitSerif.pfb +0 -0
- package/static/assets/pdfjs/web/standard_fonts/FoxitSerifBold.pfb +0 -0
- package/static/assets/pdfjs/web/standard_fonts/FoxitSerifBoldItalic.pfb +0 -0
- package/static/assets/pdfjs/web/standard_fonts/FoxitSerifItalic.pfb +0 -0
- package/static/assets/pdfjs/web/standard_fonts/FoxitSymbol.pfb +0 -0
- package/static/assets/pdfjs/web/standard_fonts/LICENSE_FOXIT +27 -0
- package/static/assets/pdfjs/web/standard_fonts/LICENSE_LIBERATION +102 -0
- package/static/assets/pdfjs/web/standard_fonts/LiberationSans-Bold.ttf +0 -0
- package/static/assets/pdfjs/web/standard_fonts/LiberationSans-BoldItalic.ttf +0 -0
- package/static/assets/pdfjs/web/standard_fonts/LiberationSans-Italic.ttf +0 -0
- package/static/assets/pdfjs/web/standard_fonts/LiberationSans-Regular.ttf +0 -0
- package/static/assets/pdfjs/web/viewer.css +6766 -0
- package/static/assets/pdfjs/web/viewer.html +768 -0
- package/static/assets/pdfjs/web/viewer.mjs +17445 -0
- package/static/assets/pdfjs/web/viewer.mjs.map +1 -0
- package/static/assets/pdfjs/web/wasm/LICENSE_OPENJPEG +39 -0
- package/static/assets/pdfjs/web/wasm/LICENSE_PDFJS_OPENJPEG +22 -0
- package/static/assets/pdfjs/web/wasm/LICENSE_PDFJS_QCMS +22 -0
- package/static/assets/pdfjs/web/wasm/LICENSE_QCMS +21 -0
- package/static/assets/pdfjs/web/wasm/openjpeg.wasm +0 -0
- package/static/assets/pdfjs/web/wasm/openjpeg_nowasm_fallback.js +29 -0
- package/static/assets/pdfjs/web/wasm/qcms_bg.wasm +0 -0
- package/static/assets/protected.png +0 -0
- package/static/chunk-2EBPSJJT.js +1 -0
- package/static/chunk-3V7XYPSJ.js +4 -0
- package/static/chunk-4IYQWOGR.js +1 -0
- package/static/chunk-5RFOYHL3.js +1 -0
- package/static/chunk-7PCJMNDR.js +1 -0
- package/static/chunk-7WRQICEB.js +1 -0
- package/static/chunk-AKM2LQUU.js +1 -0
- package/static/chunk-ATFX6EIO.js +1 -0
- package/static/chunk-ATLT5DK5.js +1 -0
- package/static/chunk-DVHXFWN7.js +1 -0
- package/static/chunk-E27KCFP6.js +24 -0
- package/static/chunk-FPEGN42P.js +564 -0
- package/static/chunk-GAL4ENT6.js +1 -0
- package/static/chunk-GWUCWOVK.js +1 -0
- package/static/chunk-I644MKAO.js +1 -0
- package/static/chunk-IFJD2ISM.js +1 -0
- package/static/chunk-IUUTIYHF.js +1 -0
- package/static/chunk-JXZCNFW7.js +1 -0
- package/static/chunk-MEKYVWV4.js +1 -0
- package/static/chunk-MQZEETHL.js +7 -0
- package/static/chunk-NPLV4M2H.js +1 -0
- package/static/chunk-NU3TPXFY.js +4 -0
- package/static/chunk-O4CXCITB.js +1 -0
- package/static/chunk-OWGR4BYT.js +1 -0
- package/static/chunk-QFRQQ4K3.js +1 -0
- package/static/chunk-RAVRSB6R.js +1 -0
- package/static/chunk-RUNMEQOV.js +1 -0
- package/static/chunk-UGSGMP2I.js +1 -0
- package/static/chunk-UV4UIX6J.js +1 -0
- package/static/chunk-VBD7QTEP.js +1 -0
- package/static/chunk-VBWPPICY.js +1 -0
- package/static/chunk-VQRN7HFP.js +1 -0
- package/static/chunk-WTPZUBNX.js +24 -0
- package/static/chunk-XI72YZ2M.js +1 -0
- package/static/chunk-Z6IHRUVL.js +1 -0
- package/static/chunk-ZVPX26RB.js +1 -0
- package/static/chunk-ZZ3LHYOY.js +1 -0
- package/static/favicon.ico +0 -0
- package/static/index.html +19 -0
- package/static/main-ILCPT3IK.js +10 -0
- package/static/media/videogular-54D7AHHD.woff +0 -0
- package/static/media/videogular-H7MSXT3I.eot +0 -0
- package/static/media/videogular-ULU7CHZC.ttf +0 -0
- package/static/media/videogular-WX5DESMV.svg +29 -0
- package/static/polyfills-GNKGQMRJ.js +2 -0
- package/static/prerendered-routes.json +3 -0
- package/static/scripts-MQMRSPYD.js +30 -0
- package/static/styles-TJJDSCD4.css +1 -0
- package/sync-in-server.js +309 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<g fill-opacity=".078">
|
|
4
|
+
<path d="m32.554 0c-4.774 0-8.59 3.266-8.59 7.313v497.38c0 4.047 3.816 7.313 8.59 7.313h446.89c4.774 0 8.59-3.266 8.59-7.313v-497.38c0-4.047-3.816-7.313-8.59-7.313h-446.89"/>
|
|
5
|
+
<path d="m35.614 3.5c-4.709 0-8.479 3.196-8.479 7.188v490.62c0 3.991 3.771 7.188 8.479 7.188h440.77c4.709 0 8.479-3.196 8.479-7.188v-490.62c0-3.991-3.771-7.188-8.479-7.188h-440.78"/>
|
|
6
|
+
<path d="m38.674 7c-4.643 0-8.369 3.158-8.369 7.094v483.82c0 3.936 3.725 7.094 8.369 7.094h434.65c4.643 0 8.369-3.158 8.369-7.094v-483.81c0-3.936-3.725-7.094-8.369-7.094h-434.65"/>
|
|
7
|
+
</g>
|
|
8
|
+
<path d="m41.734 10.5c-4.578 0-8.258 3.119-8.258 7v477c0 3.881 3.68 7 8.258 7h428.53c4.578 0 8.258-3.119 8.258-7v-477c0-3.881-3.68-7-8.258-7h-428.54" fill="#2dcc9f"/>
|
|
9
|
+
<path d="m91 50.28c-11.898 0-21.469 9.571-21.469 21.469v313.19c0 11.898 9.571 21.469 21.469 21.469h330c11.898 0 21.469-9.571 21.469-21.469v-236.44l-98.22-98.22h-253.25" fill="#fff"/>
|
|
10
|
+
<path d="m204.54 124.72c-22.585 0-41.25 18.17-41.25 40.784 0 22.613 18.644 41.25 41.25 41.25 22.613 0 41.26-18.644 41.26-41.25 0-22.613-18.675-40.784-41.26-40.784m110.49 80.62c-19.551-0.289-34.461 10.164-47.43 22.761-12.963 12.599-24.02 27.515-36.991 37.463-4.402 3.264-8.484 5.302-11.856 6.168-3.372 0.862-5.78 0.618-8.06-1.423-13.998-18.658-27.298-28.493-39.36-31.3-12.138-2.822-23.15 1.908-32.25 10.433-18.19 17.04-29.957 50.19-35.09 80.14l-0.472 2.371h304.93l-1.423-2.843c-13.642-27.757-23.12-58.16-36.04-82.05-6.46-11.94-13.738-22.473-22.761-29.873-9.03-7.4-19.956-11.703-33.19-11.856" fill="#2dcc9f"/>
|
|
11
|
+
<path d="m442.47 148.5l-98.22-98.22v76.75c0 11.898 9.571 21.469 21.469 21.469h76.75" fill="#a4a4a4"/>
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
|
3
|
+
<g fill-opacity=".078">
|
|
4
|
+
<path d="m32.554 0c-4.774 0-8.59 3.266-8.59 7.313v497.38c0 4.047 3.816 7.313 8.59 7.313h446.89c4.774 0 8.59-3.266 8.59-7.313v-497.38c0-4.047-3.816-7.313-8.59-7.313h-446.89"/>
|
|
5
|
+
<path d="m35.614 3.5c-4.709 0-8.479 3.196-8.479 7.188v490.62c0 3.991 3.771 7.188 8.479 7.188h440.77c4.709 0 8.479-3.196 8.479-7.188v-490.62c0-3.991-3.771-7.188-8.479-7.188h-440.78"/>
|
|
6
|
+
<path d="m38.674 7c-4.643 0-8.369 3.158-8.369 7.094v483.82c0 3.936 3.725 7.094 8.369 7.094h434.65c4.643 0 8.369-3.158 8.369-7.094v-483.81c0-3.936-3.725-7.094-8.369-7.094h-434.65"/>
|
|
7
|
+
</g>
|
|
8
|
+
<path d="m41.734 10.5c-4.578 0-8.258 3.119-8.258 7v477c0 3.881 3.68 7 8.258 7h428.53c4.578 0 8.258-3.119 8.258-7v-477c0-3.881-3.68-7-8.258-7h-428.54" fill="#0078ad"/>
|
|
9
|
+
<path d="m91 50.28c-11.898 0-21.469 9.571-21.469 21.469v313.19c0 11.898 9.571 21.469 21.469 21.469h330c11.898 0 21.469-9.571 21.469-21.469v-236.44l-98.22-98.22h-253.25" fill="#fff"/>
|
|
10
|
+
<path opacity=".25" d="m427.53 133.44l-78.906 6.906 129.91 129.94v-85.84l-51-51"/>
|
|
11
|
+
<path d="m442.47 148.5l-98.22-98.22v76.75c0 11.898 9.571 21.469 21.469 21.469h76.75" fill="#a4a4a4"/>
|
|
12
|
+
<path opacity=".25" d="m309.38 176.16c-24.18 0-43.787 18.402-44.813 41.906l-26-25.969c-2.315-2.315-4.91-4.375-7.781-6.125-8.766-5.218-18.983-7.094-39.438-7.094h-38.19v154.25l168.38 168.38h148.75c4.578 0 8.25-3.119 8.25-7v-169.16l-136.03-136.03c-8.368-8.368-20.345-13.156-33.12-13.156"/>
|
|
13
|
+
<path d="m309.38 176.16c-24.838 0-44.875 19.423-44.875 43.844 0 19.411 11.493 34.21 32.16 41.938 20.663 7.723 21.918 8.358 26.719 11.906 4.592 3.757 7.094 9.186 7.094 15.656 0 11.06-8.56 18.781-20.875 18.781-12.732 0-19.623-6.247-20.875-19.19h-29.844c1.044 12.11 3.77 19.829 10.03 27.969 9.184 11.897 24.407 18.781 40.688 18.781 27.76 0 49.25-21.5 49.25-49.47 0-12.732-4.806-23.807-13.781-32.16-6.05-5.635-11.03-8.333-26.06-13.969-14.61-5.427-15.04-5.654-17.12-6.906-5.635-3.548-8.563-8.333-8.563-13.969 0-9.184 6.483-15.656 15.875-15.656 9.601 0 15.446 5.845 16.281 16.281h29.625c-0.626-11.688-3.332-19.621-9.594-27.344-8.349-10.436-21.723-16.5-36.12-16.5m-156.22 2.719v154.25h28.594v-58.656h9.188c21.916 0 31.911-1.657 40.469-6.875 12.523-7.723 20.25-23.384 20.25-41.12 0-17.741-7.517-32.36-20.875-40.5-8.766-5.218-18.983-7.094-39.438-7.094h-38.19m28.594 27.344h9.594c9.392 0 13.564 0.425 18.16 1.469 8.349 2.296 13.375 9.586 13.375 19.19 0 7.514-3.353 13.379-9.406 16.719-4.383 2.296-12.313 3.531-23.375 3.531h-8.344v-40.906" fill="#0078ad"/>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<g fill-opacity=".078" transform="matrix(0.91581, 0, 0, 0.91581, 21.553526, 21.5499)">
|
|
4
|
+
<path d="m32.554 0c-4.774 0-8.59 3.266-8.59 7.313v497.38c0 4.047 3.816 7.313 8.59 7.313h446.89c4.774 0 8.59-3.266 8.59-7.313v-497.38c0-4.047-3.816-7.313-8.59-7.313h-446.89"/>
|
|
5
|
+
<path d="m35.614 3.5c-4.709 0-8.479 3.196-8.479 7.188v490.62c0 3.991 3.771 7.188 8.479 7.188h440.77c4.709 0 8.479-3.196 8.479-7.188v-490.62c0-3.991-3.771-7.188-8.479-7.188h-440.78"/>
|
|
6
|
+
<path d="m38.674 7c-4.643 0-8.369 3.158-8.369 7.094v483.82c0 3.936 3.725 7.094 8.369 7.094h434.65c4.643 0 8.369-3.158 8.369-7.094v-483.81c0-3.936-3.725-7.094-8.369-7.094h-434.65"/>
|
|
7
|
+
</g>
|
|
8
|
+
<path d="M 59.774 31.166 C 55.581 31.166 52.212 34.023 52.212 37.577 L 52.212 474.418 C 52.212 477.972 55.581 480.829 59.774 480.829 L 452.226 480.829 C 456.419 480.829 459.788 477.972 459.788 474.418 L 459.788 37.577 C 459.788 34.023 456.419 31.166 452.226 31.166 L 59.764 31.166" fill="#2dcc9f"/>
|
|
9
|
+
<path d="M 104.892 67.597 C 93.996 67.597 85.231 76.363 85.231 87.258 L 85.231 374.081 C 85.231 384.977 93.996 393.742 104.892 393.742 L 407.109 393.742 C 418.006 393.742 426.771 384.977 426.771 374.081 L 426.771 157.547 L 336.82 67.596 L 104.892 67.596" fill="#fff"/>
|
|
10
|
+
<path d="M 208.874 135.77 C 188.19 135.77 171.096 152.41 171.096 173.121 C 171.096 193.829 188.171 210.897 208.874 210.897 C 229.582 210.897 246.659 193.823 246.659 173.121 C 246.659 152.411 229.557 135.77 208.874 135.77 M 310.061 209.602 C 292.156 209.338 278.501 218.911 266.624 230.447 C 254.753 241.986 244.627 255.646 232.748 264.756 C 228.716 267.745 224.978 269.612 221.889 270.405 C 218.802 271.195 216.596 270.971 214.508 269.102 C 201.689 252.014 189.508 243.007 178.462 240.436 C 167.346 237.852 157.261 242.184 148.927 249.991 C 132.269 265.597 121.492 295.956 116.792 323.385 L 116.359 325.555 L 395.617 325.555 L 394.314 322.952 C 381.82 297.532 373.14 269.689 361.308 247.81 C 355.392 236.875 348.726 227.229 340.463 220.452 C 332.193 213.675 322.187 209.734 310.067 209.594" fill="#2dcc9f"/>
|
|
11
|
+
<path d="M 426.772 157.548 L 336.821 67.597 L 336.821 137.886 C 336.821 148.781 345.586 157.547 356.483 157.547 L 426.771 157.547" fill="#a4a4a4"/>
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512">
|
|
3
|
+
<g transform="translate(0-540.36)">
|
|
4
|
+
<g fill-opacity=".078">
|
|
5
|
+
<path d="m32.554 540.36c-4.774 0-8.59 3.266-8.59 7.313v497.38c0 4.046 3.816 7.313 8.59 7.313h446.89c4.774 0 8.59-3.266 8.59-7.313v-497.38c0-4.047-3.816-7.313-8.59-7.313h-446.89"/>
|
|
6
|
+
<path d="m35.614 543.86c-4.709 0-8.479 3.196-8.479 7.188v490.62c0 3.991 3.771 7.188 8.479 7.188h440.77c4.709 0 8.479-3.196 8.479-7.188v-490.62c0-3.991-3.771-7.188-8.479-7.188h-440.78"/>
|
|
7
|
+
<path d="m38.674 547.36c-4.643 0-8.369 3.158-8.369 7.094v483.81c0 3.936 3.725 7.094 8.369 7.094h434.65c4.643 0 8.369-3.158 8.369-7.094v-483.81c0-3.936-3.725-7.094-8.369-7.094h-434.65"/>
|
|
8
|
+
</g>
|
|
9
|
+
<path d="m41.734 550.86c-4.578 0-8.258 3.119-8.258 7v477c0 3.88 3.68 7 8.258 7h428.53c4.578 0 8.258-3.12 8.258-7v-477c0-3.881-3.68-7-8.258-7h-428.54" fill="#cf2437"/>
|
|
10
|
+
<path d="m91 590.64c-11.898 0-21.469 9.571-21.469 21.469v313.19c0 11.898 9.571 21.469 21.469 21.469h330c11.898 0 21.469-9.571 21.469-21.469v-236.44l-98.22-98.22h-253.25" fill="#fff"/>
|
|
11
|
+
<path opacity=".25" fill-rule="evenodd" d="m263.53 107.19c-0.317-0.002-0.649 0.005-0.969 0.031-13.11 2.385-23.254 12.207-34.844 18.25-37.817 24.386-75.915 52.62-95.78 94.09-9.328 20.287-10.36 45.01-0.5 65.16l-7.438-3.594-19.469-19.438c-1.013-1.013-2.198-1.874-3.563-2.531-2.035-0.98-4.204-1.384-6.313-1.281-4.638 0.227-9 2.928-11.156 7.406-2.478 5.146-1.292 11.11 2.531 14.938l215.97 215.94c1.896 1.896 3.628 3.668 5.25 5.344h163.03c0.286 0 0.565-0.007 0.844-0.031 0.546-0.047 1.085-0.149 1.594-0.281 0.259-0.068 0.534-0.162 0.781-0.25 2.223-0.794 3.936-2.368 4.656-4.344 0.24-0.659 0.375-1.366 0.375-2.094v-179.69l-202.87-202.84c-2.45-2.45-5.601-4.144-9.313-4.5-0.936-0.162-1.862-0.276-2.813-0.281" transform="translate(0 540.36)"/>
|
|
12
|
+
<path opacity=".25" d="m427.53 673.8l-78.906 6.906 129.91 129.94v-85.84l-51-51"/>
|
|
13
|
+
<path d="m442.47 688.86l-98.22-98.22v76.75c0 11.898 9.571 21.469 21.469 21.469h76.75" fill="#a4a4a4"/>
|
|
14
|
+
<g fill-rule="evenodd">
|
|
15
|
+
<path d="m262.56 647.59c-13.11 2.385-23.24 12.208-34.834 18.251-37.817 24.386-75.925 52.619-95.79 94.09-10.601 23.05-10.478 51.84 4.156 73.13 19.15 29.602 53.27 44.855 86.25 53.625 52.36 13.356 111.29 8.01 157.28-21.625 18.253-12.216 34.1-32.676 31.625-55.844-2.814-23.685-22.488-41.13-42.555-51.81-9.413-4.852-19.01-11.09-29.82-11.752-13.625 0.585-22.07 19.2-12.469 29.344 7.525 8.267 19.782 9.216 28.25 16.221 8.82 5.709 19.845 12.65 20.81 24.12-1.466 11.29-13.04 17.693-21.875 23.13-32.443 17.344-71.05 21.619-107.17 16.455-25.887-4.371-51.961-13.706-71.952-31.24-11.508-10.472-17.643-27.307-11.969-42.25 7.992-25.01 28.823-43.2 48.41-59.688 20.359-16.647 43.34-29.512 65.47-43.594 10.02-9.385 3.754-28.991-10.03-30.31-1.247-0.215-2.504-0.355-3.781-0.25" fill="#cf2437"/>
|
|
16
|
+
<g transform="rotate(25.713)">
|
|
17
|
+
<path d="m441.01 686.35h242.88v6.561h-242.88z" fill="#9a3034"/>
|
|
18
|
+
<path stroke-width="5.257" d="m548.91 671.17h32.86v36.615h-32.86z" stroke="#cd1d31" fill="#fff"/>
|
|
19
|
+
</g>
|
|
20
|
+
</g>
|
|
21
|
+
<path id="0" d="m-56.52 576.34c0 0.962-0.78 1.741-1.741 1.741-0.962 0-1.741-0.779-1.741-1.741s0.78-1.741 1.741-1.741c0.962 0 1.741 0.779 1.741 1.741" fill-rule="evenodd" transform="matrix(6.7735 3.2618 -3.2618 6.7735 2595.3 -2793.9)" fill="#cd1d31"/>
|
|
22
|
+
<use width="1" xlink:href="#0" transform="translate(-225.46-108.57)" height="1"/>
|
|
23
|
+
</g>
|
|
24
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<g fill-opacity=".078" transform="matrix(0.91581, 0, 0, 0.91581, 21.553526, 21.5499)">
|
|
4
|
+
<path d="m32.554 0c-4.774 0-8.59 3.266-8.59 7.313v497.38c0 4.047 3.816 7.313 8.59 7.313h446.89c4.774 0 8.59-3.266 8.59-7.313v-497.38c0-4.047-3.816-7.313-8.59-7.313h-446.89"/>
|
|
5
|
+
<path d="m35.614 3.5c-4.709 0-8.479 3.196-8.479 7.188v490.62c0 3.991 3.771 7.188 8.479 7.188h440.77c4.709 0 8.479-3.196 8.479-7.188v-490.62c0-3.991-3.771-7.188-8.479-7.188h-440.78"/>
|
|
6
|
+
<path d="m38.674 7c-4.643 0-8.369 3.158-8.369 7.094v483.82c0 3.936 3.725 7.094 8.369 7.094h434.65c4.643 0 8.369-3.158 8.369-7.094v-483.81c0-3.936-3.725-7.094-8.369-7.094h-434.65"/>
|
|
7
|
+
</g>
|
|
8
|
+
<path d="M 59.774 31.166 C 55.581 31.166 52.212 34.023 52.212 37.577 L 52.212 474.418 C 52.212 477.972 55.581 480.829 59.774 480.829 L 452.226 480.829 C 456.419 480.829 459.788 477.972 459.788 474.418 L 459.788 37.577 C 459.788 34.023 456.419 31.166 452.226 31.166 L 59.764 31.166" fill="#2dcc9f"/>
|
|
9
|
+
<path d="M 104.892 67.597 C 93.996 67.597 85.231 76.363 85.231 87.258 L 85.231 374.081 C 85.231 384.977 93.996 393.742 104.892 393.742 L 407.109 393.742 C 418.006 393.742 426.771 384.977 426.771 374.081 L 426.771 157.547 L 336.82 67.596 L 104.892 67.596" fill="#fff"/>
|
|
10
|
+
<path d="M 208.874 135.77 C 188.19 135.77 171.096 152.41 171.096 173.121 C 171.096 193.829 188.171 210.897 208.874 210.897 C 229.582 210.897 246.659 193.823 246.659 173.121 C 246.659 152.411 229.557 135.77 208.874 135.77 M 310.061 209.602 C 292.156 209.338 278.501 218.911 266.624 230.447 C 254.753 241.986 244.627 255.646 232.748 264.756 C 228.716 267.745 224.978 269.612 221.889 270.405 C 218.802 271.195 216.596 270.971 214.508 269.102 C 201.689 252.014 189.508 243.007 178.462 240.436 C 167.346 237.852 157.261 242.184 148.927 249.991 C 132.269 265.597 121.492 295.956 116.792 323.385 L 116.359 325.555 L 395.617 325.555 L 394.314 322.952 C 381.82 297.532 373.14 269.689 361.308 247.81 C 355.392 236.875 348.726 227.229 340.463 220.452 C 332.193 213.675 322.187 209.734 310.067 209.594" fill="#2dcc9f"/>
|
|
11
|
+
<path d="M 426.772 157.548 L 336.821 67.597 L 336.821 137.886 C 336.821 148.781 345.586 157.547 356.483 157.547 L 426.771 157.547" fill="#a4a4a4"/>
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
|
3
|
+
<g fill-opacity=".078">
|
|
4
|
+
<path d="m32.554 0c-4.774 0-8.59 3.266-8.59 7.313v497.38c0 4.047 3.816 7.313 8.59 7.313h446.89c4.774 0 8.59-3.266 8.59-7.313v-497.38c0-4.047-3.816-7.313-8.59-7.313h-446.89"/>
|
|
5
|
+
<path d="m35.614 3.5c-4.709 0-8.479 3.196-8.479 7.188v490.62c0 3.991 3.771 7.188 8.479 7.188h440.77c4.709 0 8.479-3.196 8.479-7.188v-490.62c0-3.991-3.771-7.188-8.479-7.188h-440.78"/>
|
|
6
|
+
<path d="m38.674 7c-4.643 0-8.369 3.158-8.369 7.094v483.82c0 3.936 3.725 7.094 8.369 7.094h434.65c4.643 0 8.369-3.158 8.369-7.094v-483.81c0-3.936-3.725-7.094-8.369-7.094h-434.65"/>
|
|
7
|
+
</g>
|
|
8
|
+
<path d="m41.734 10.5c-4.578 0-8.258 3.119-8.258 7v477c0 3.881 3.68 7 8.258 7h428.53c4.578 0 8.258-3.119 8.258-7v-477c0-3.881-3.68-7-8.258-7h-428.54" fill="#0078ad"/>
|
|
9
|
+
<path d="m91 50.28c-11.898 0-21.469 9.571-21.469 21.469v313.19c0 11.898 9.571 21.469 21.469 21.469h330c11.898 0 21.469-9.571 21.469-21.469v-236.44l-98.22-98.22h-253.25" fill="#fff"/>
|
|
10
|
+
<path opacity=".25" d="m427.53 133.44l-78.906 6.906 129.91 129.94v-85.84l-51-51"/>
|
|
11
|
+
<path d="m442.47 148.5l-98.22-98.22v76.75c0 11.898 9.571 21.469 21.469 21.469h76.75" fill="#a4a4a4"/>
|
|
12
|
+
<path opacity=".25" d="m309.38 176.16c-24.18 0-43.787 18.402-44.813 41.906l-26-25.969c-2.315-2.315-4.91-4.375-7.781-6.125-8.766-5.218-18.983-7.094-39.438-7.094h-38.19v154.25l168.38 168.38h148.75c4.578 0 8.25-3.119 8.25-7v-169.16l-136.03-136.03c-8.368-8.368-20.345-13.156-33.12-13.156"/>
|
|
13
|
+
<path d="m309.38 176.16c-24.838 0-44.875 19.423-44.875 43.844 0 19.411 11.493 34.21 32.16 41.938 20.663 7.723 21.918 8.358 26.719 11.906 4.592 3.757 7.094 9.186 7.094 15.656 0 11.06-8.56 18.781-20.875 18.781-12.732 0-19.623-6.247-20.875-19.19h-29.844c1.044 12.11 3.77 19.829 10.03 27.969 9.184 11.897 24.407 18.781 40.688 18.781 27.76 0 49.25-21.5 49.25-49.47 0-12.732-4.806-23.807-13.781-32.16-6.05-5.635-11.03-8.333-26.06-13.969-14.61-5.427-15.04-5.654-17.12-6.906-5.635-3.548-8.563-8.333-8.563-13.969 0-9.184 6.483-15.656 15.875-15.656 9.601 0 15.446 5.845 16.281 16.281h29.625c-0.626-11.688-3.332-19.621-9.594-27.344-8.349-10.436-21.723-16.5-36.12-16.5m-156.22 2.719v154.25h28.594v-58.656h9.188c21.916 0 31.911-1.657 40.469-6.875 12.523-7.723 20.25-23.384 20.25-41.12 0-17.741-7.517-32.36-20.875-40.5-8.766-5.218-18.983-7.094-39.438-7.094h-38.19m28.594 27.344h9.594c9.392 0 13.564 0.425 18.16 1.469 8.349 2.296 13.375 9.586 13.375 19.19 0 7.514-3.353 13.379-9.406 16.719-4.383 2.296-12.313 3.531-23.375 3.531h-8.344v-40.906" fill="#0078ad"/>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
|
3
|
+
<g fill-opacity=".078">
|
|
4
|
+
<path d="m32.554 0c-4.774 0-8.59 3.266-8.59 7.313v497.38c0 4.047 3.816 7.313 8.59 7.313h446.89c4.774 0 8.59-3.266 8.59-7.313v-497.38c0-4.047-3.816-7.313-8.59-7.313h-446.89"/>
|
|
5
|
+
<path d="m35.614 3.5c-4.709 0-8.479 3.196-8.479 7.188v490.62c0 3.991 3.771 7.188 8.479 7.188h440.77c4.709 0 8.479-3.196 8.479-7.188v-490.62c0-3.991-3.771-7.188-8.479-7.188h-440.78"/>
|
|
6
|
+
<path d="m38.674 7c-4.643 0-8.369 3.158-8.369 7.094v483.82c0 3.936 3.725 7.094 8.369 7.094h434.65c4.643 0 8.369-3.158 8.369-7.094v-483.81c0-3.936-3.725-7.094-8.369-7.094h-434.65"/>
|
|
7
|
+
</g>
|
|
8
|
+
<path d="m41.734 10.5c-4.578 0-8.258 3.119-8.258 7v477c0 3.881 3.68 7 8.258 7h428.53c4.578 0 8.258-3.119 8.258-7v-477c0-3.881-3.68-7-8.258-7h-428.54" fill="#0078ad"/>
|
|
9
|
+
<path d="m91 50.28c-11.898 0-21.469 9.571-21.469 21.469v313.19c0 11.898 9.571 21.469 21.469 21.469h330c11.898 0 21.469-9.571 21.469-21.469v-236.44l-98.22-98.22h-253.25" fill="#fff"/>
|
|
10
|
+
<path opacity=".25" d="m427.53 133.44l-78.906 6.906 129.91 129.94v-85.84l-51-51"/>
|
|
11
|
+
<path d="m442.47 148.5l-98.22-98.22v76.75c0 11.898 9.571 21.469 21.469 21.469h76.75" fill="#a4a4a4"/>
|
|
12
|
+
<path opacity=".25" d="m309.38 176.16c-24.18 0-43.787 18.402-44.813 41.906l-26-25.969c-2.315-2.315-4.91-4.375-7.781-6.125-8.766-5.218-18.983-7.094-39.438-7.094h-38.19v154.25l168.38 168.38h148.75c4.578 0 8.25-3.119 8.25-7v-169.16l-136.03-136.03c-8.368-8.368-20.345-13.156-33.12-13.156"/>
|
|
13
|
+
<path d="m309.38 176.16c-24.838 0-44.875 19.423-44.875 43.844 0 19.411 11.493 34.21 32.16 41.938 20.663 7.723 21.918 8.358 26.719 11.906 4.592 3.757 7.094 9.186 7.094 15.656 0 11.06-8.56 18.781-20.875 18.781-12.732 0-19.623-6.247-20.875-19.19h-29.844c1.044 12.11 3.77 19.829 10.03 27.969 9.184 11.897 24.407 18.781 40.688 18.781 27.76 0 49.25-21.5 49.25-49.47 0-12.732-4.806-23.807-13.781-32.16-6.05-5.635-11.03-8.333-26.06-13.969-14.61-5.427-15.04-5.654-17.12-6.906-5.635-3.548-8.563-8.333-8.563-13.969 0-9.184 6.483-15.656 15.875-15.656 9.601 0 15.446 5.845 16.281 16.281h29.625c-0.626-11.688-3.332-19.621-9.594-27.344-8.349-10.436-21.723-16.5-36.12-16.5m-156.22 2.719v154.25h28.594v-58.656h9.188c21.916 0 31.911-1.657 40.469-6.875 12.523-7.723 20.25-23.384 20.25-41.12 0-17.741-7.517-32.36-20.875-40.5-8.766-5.218-18.983-7.094-39.438-7.094h-38.19m28.594 27.344h9.594c9.392 0 13.564 0.425 18.16 1.469 8.349 2.296 13.375 9.586 13.375 19.19 0 7.514-3.353 13.379-9.406 16.719-4.383 2.296-12.313 3.531-23.375 3.531h-8.344v-40.906" fill="#0078ad"/>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
|
3
|
+
<g fill-opacity=".078">
|
|
4
|
+
<path d="m32.554 0c-4.774 0-8.59 3.266-8.59 7.313v497.38c0 4.047 3.816 7.313 8.59 7.313h446.89c4.774 0 8.59-3.266 8.59-7.313v-497.38c0-4.047-3.816-7.313-8.59-7.313h-446.89"/>
|
|
5
|
+
<path d="m35.614 3.5c-4.709 0-8.479 3.196-8.479 7.188v490.62c0 3.991 3.771 7.188 8.479 7.188h440.77c4.709 0 8.479-3.196 8.479-7.188v-490.62c0-3.991-3.771-7.188-8.479-7.188h-440.78"/>
|
|
6
|
+
<path d="m38.674 7c-4.643 0-8.369 3.158-8.369 7.094v483.82c0 3.936 3.725 7.094 8.369 7.094h434.65c4.643 0 8.369-3.158 8.369-7.094v-483.81c0-3.936-3.725-7.094-8.369-7.094h-434.65"/>
|
|
7
|
+
</g>
|
|
8
|
+
<path d="m41.734 10.5c-4.578 0-8.258 3.119-8.258 7v477c0 3.881 3.68 7 8.258 7h428.53c4.578 0 8.258-3.119 8.258-7v-477c0-3.881-3.68-7-8.258-7h-428.54" fill="#c74a6c"/>
|
|
9
|
+
<path d="m91 50.28c-11.898 0-21.469 9.571-21.469 21.469v313.19c0 11.898 9.571 21.469 21.469 21.469h330c11.898 0 21.469-9.571 21.469-21.469v-236.44l-98.22-98.22h-253.25" fill="#fff"/>
|
|
10
|
+
<path opacity=".25" d="m427.53 133.44l-78.906 6.906 45.992 46-26.301 20.656-0.004-0.004-15.625 8.219 0.002 0.002-8.098 2.338-9.721-9.721-0.049-0.049c-0.877-0.877-1.78-1.752-2.689-2.658l-5.912-5.514-0.088-0.088-5.531-3.938 20.758 20.758c0.003 0.005 0.005 0.01 0.008 0.016l-20.775-20.775-8.188-5.188 0.008 0.008-6.969-3.25h-0.002l-8.52-3.09-0.01-0.01-14.656-2.939 94.76 94.76-0.004 0.008-94.76-94.76-8.709-1.029-0.012-0.012-7.406 0.094 0.006 0.006c-6.734-0.197-8.325 0.198-12.313 0.75l113.35 113.35-0.004 0.004-113.36-113.36c-1.148 0.207-7.481 2.198-8.156 2.219l0.002 0.002c-0.69 0.026-14.621 4.063-14.621 4.063l124.24 124.24-0.002 0.002-124.24-124.24-13.219-12.314 137.05 137.05-0.002 0.002-137.05-137.05-9.09-8.219v-0.002l-9.125-8.219 154.46 154.46-0.002 0.002-154.47-154.47 0.844 7.25 0.006 0.006 0.375 8.09-0.004-0.004 0.469 12.06 140.73 140.73-0.004 0.004-140.73-140.72-0.219 10.09-0.656 7.813 0.004 0.004c-0.003 0.015-2.024 11.133-2.092 11.648l125.77 125.78-0.006 0.004-125.77-125.78c-0.067 0.516-2.469 7.75-2.469 7.75l121.74 121.74-0.002 0.002-121.74-121.75h-0.002l-4 7.531-4.625 5.406 0.004 0.004-4.514 2.955-31.596-31.596c-8.356-8.356-19.871-11.48-30.2-6.988l-0.002-0.002c-15.09 6.562-21.954 26.899-15.344 45.41l22.77 22.77c-0.003-0.001-0.005-0.001-0.008-0.002l-22.768-22.768c2.086 5.84 5.266 10.803 9.117 14.654l215.95 215.95c-0.033-0.033-0.064-0.07-0.098-0.104l0.1 0.1c5.492 5.49 12.343 8.714 19.326 9.01l15.982 15.982h6.115l-14.03-14.03-0.033-0.049 14.08 14.08h54.36l-42.898-42.898h0.014l42.898 42.898h43.822c4.578 0 8.258-3.119 8.258-7v-22.19l-61.49-61.49v-0.004l61.49 61.49v-60.62l-13.477-13.477c0.002-0.001 0.004-0.001 0.006-0.002l13.471 13.471v-141.4l0.012 0.012v-85.84l-51-51-0.004-0.006"/>
|
|
11
|
+
<path d="m442.47 148.5l-98.22-98.22v76.75c0 11.898 9.571 21.469 21.469 21.469h76.75" fill="#a4a4a4"/>
|
|
12
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="208.33" y="430.79" x="-511.65" font-family="Gentium Book Basic" line-height="125%">
|
|
13
|
+
<tspan y="430.79" x="-511.65"/>
|
|
14
|
+
</text>
|
|
15
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="75.7" y="1165.8" x="190.22" font-family="Arial"/>
|
|
16
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="208.33" y="304.85" x="300.18" font-family="Gentium Book Basic" line-height="125%">
|
|
17
|
+
<tspan y="304.85" x="300.18"/>
|
|
18
|
+
</text>
|
|
19
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="75.7" y="660.42" x="392.53" font-family="Arial"/>
|
|
20
|
+
<path d="m199.59 158.47l0.844 7.25 0.375 8.094 0.469 12.06-0.219 10.09-0.656 7.813s-2.026 11.14-2.094 11.656c-0.067 0.516-2.469 7.75-2.469 7.75l-4 7.531-4.625 5.406-7.875 5.156-8.125 1.438-8.281-0.156-0.625-0.25c0.91-6.463 0.311-13.455-2.094-20.19-6.61-18.507-24.23-28.19-39.31-21.625-15.09 6.562-21.954 26.899-15.344 45.41 6.01 16.822 21.1 26.363 35.13 23.03l-0.188 0.25 9.219 13.625 18.16 20.625 13.781 13.06 11.125 9.188 11.09 7.625 15.03 8.281 16.844 8.531 14.438 4.5 14.156 1.25 17.188 0.719 16.25-2.594 13.469-5.438 13.594-7.781 12.656-9.5 10.09-10.469 9.344-11.375 8-11.344 6.625-11.281 12.156-24.344 7.5-19.844 7.938-21.344 4.563-17.719 1.656-6.906c3.689-20.04-0.057-0.039 3.563-19.969-10.883 7.02 0.123 0.025-10.938 7l-29.688 23.313-15.625 8.219-10.5 3.03c-2.198-5.782-6.07-9.14-10.06-13.12l-6-5.594-5.531-3.938-8.188-5.188-6.969-3.25-8.531-3.094-14.656-2.938-8.719-1.031-7.406 0.094c-6.736-0.197-8.325 0.198-12.313 0.75-1.148 0.207-7.481 2.198-8.156 2.219s-14.625 4.063-14.625 4.063l-13.219-12.313-9.09-8.219-9.125-8.219" fill="#c74a6c"/>
|
|
21
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<g fill-opacity=".078">
|
|
4
|
+
<path d="m32.554 0c-4.774 0-8.59 3.266-8.59 7.313v497.38c0 4.047 3.816 7.313 8.59 7.313h446.89c4.774 0 8.59-3.266 8.59-7.313v-497.38c0-4.047-3.816-7.313-8.59-7.313h-446.89"/>
|
|
5
|
+
<path d="m35.614 3.5c-4.709 0-8.479 3.196-8.479 7.188v490.62c0 3.991 3.771 7.188 8.479 7.188h440.77c4.709 0 8.479-3.196 8.479-7.188v-490.62c0-3.991-3.771-7.188-8.479-7.188h-440.78"/>
|
|
6
|
+
<path d="m38.674 7c-4.643 0-8.369 3.158-8.369 7.094v483.82c0 3.936 3.725 7.094 8.369 7.094h434.65c4.643 0 8.369-3.158 8.369-7.094v-483.81c0-3.936-3.725-7.094-8.369-7.094h-434.65"/>
|
|
7
|
+
</g>
|
|
8
|
+
<path d="m41.734 10.5c-4.578 0-8.258 3.119-8.258 7v477c0 3.881 3.68 7 8.258 7h428.53c4.578 0 8.258-3.119 8.258-7v-477c0-3.881-3.68-7-8.258-7h-428.54" fill="#2dcc9f"/>
|
|
9
|
+
<path d="m91 50.28c-11.898 0-21.469 9.571-21.469 21.469v313.19c0 11.898 9.571 21.469 21.469 21.469h330c11.898 0 21.469-9.571 21.469-21.469v-236.44l-98.22-98.22h-253.25" fill="#fff"/>
|
|
10
|
+
<path d="m204.54 124.72c-22.585 0-41.25 18.17-41.25 40.784 0 22.613 18.644 41.25 41.25 41.25 22.613 0 41.26-18.644 41.26-41.25 0-22.613-18.675-40.784-41.26-40.784m110.49 80.62c-19.551-0.289-34.461 10.164-47.43 22.761-12.963 12.599-24.02 27.515-36.991 37.463-4.402 3.264-8.484 5.302-11.856 6.168-3.372 0.862-5.78 0.618-8.06-1.423-13.998-18.658-27.298-28.493-39.36-31.3-12.138-2.822-23.15 1.908-32.25 10.433-18.19 17.04-29.957 50.19-35.09 80.14l-0.472 2.371h304.93l-1.423-2.843c-13.642-27.757-23.12-58.16-36.04-82.05-6.46-11.94-13.738-22.473-22.761-29.873-9.03-7.4-19.956-11.703-33.19-11.856" fill="#2dcc9f"/>
|
|
11
|
+
<path d="m442.47 148.5l-98.22-98.22v76.75c0 11.898 9.571 21.469 21.469 21.469h76.75" fill="#a4a4a4"/>
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<g fill-opacity=".078" transform="matrix(0.91581, 0, 0, 0.91581, 21.553526, 21.5499)">
|
|
4
|
+
<path d="m32.554 0c-4.774 0-8.59 3.266-8.59 7.313v497.38c0 4.047 3.816 7.313 8.59 7.313h446.89c4.774 0 8.59-3.266 8.59-7.313v-497.38c0-4.047-3.816-7.313-8.59-7.313h-446.89"/>
|
|
5
|
+
<path d="m35.614 3.5c-4.709 0-8.479 3.196-8.479 7.188v490.62c0 3.991 3.771 7.188 8.479 7.188h440.77c4.709 0 8.479-3.196 8.479-7.188v-490.62c0-3.991-3.771-7.188-8.479-7.188h-440.78"/>
|
|
6
|
+
<path d="m38.674 7c-4.643 0-8.369 3.158-8.369 7.094v483.82c0 3.936 3.725 7.094 8.369 7.094h434.65c4.643 0 8.369-3.158 8.369-7.094v-483.81c0-3.936-3.725-7.094-8.369-7.094h-434.65"/>
|
|
7
|
+
</g>
|
|
8
|
+
<path d="M 59.774 31.166 C 55.581 31.166 52.212 34.023 52.212 37.577 L 52.212 474.418 C 52.212 477.972 55.581 480.829 59.774 480.829 L 452.226 480.829 C 456.419 480.829 459.788 477.972 459.788 474.418 L 459.788 37.577 C 459.788 34.023 456.419 31.166 452.226 31.166 L 59.764 31.166" fill="#2dcc9f"/>
|
|
9
|
+
<path d="M 104.892 67.597 C 93.996 67.597 85.231 76.363 85.231 87.258 L 85.231 374.081 C 85.231 384.977 93.996 393.742 104.892 393.742 L 407.109 393.742 C 418.006 393.742 426.771 384.977 426.771 374.081 L 426.771 157.547 L 336.82 67.596 L 104.892 67.596" fill="#fff"/>
|
|
10
|
+
<path d="M 208.874 135.77 C 188.19 135.77 171.096 152.41 171.096 173.121 C 171.096 193.829 188.171 210.897 208.874 210.897 C 229.582 210.897 246.659 193.823 246.659 173.121 C 246.659 152.411 229.557 135.77 208.874 135.77 M 310.061 209.602 C 292.156 209.338 278.501 218.911 266.624 230.447 C 254.753 241.986 244.627 255.646 232.748 264.756 C 228.716 267.745 224.978 269.612 221.889 270.405 C 218.802 271.195 216.596 270.971 214.508 269.102 C 201.689 252.014 189.508 243.007 178.462 240.436 C 167.346 237.852 157.261 242.184 148.927 249.991 C 132.269 265.597 121.492 295.956 116.792 323.385 L 116.359 325.555 L 395.617 325.555 L 394.314 322.952 C 381.82 297.532 373.14 269.689 361.308 247.81 C 355.392 236.875 348.726 227.229 340.463 220.452 C 332.193 213.675 322.187 209.734 310.067 209.594" fill="#2dcc9f"/>
|
|
11
|
+
<path d="M 426.772 157.548 L 336.821 67.597 L 336.821 137.886 C 336.821 148.781 345.586 157.547 356.483 157.547 L 426.771 157.547" fill="#a4a4a4"/>
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
|
3
|
+
<g fill-opacity=".078">
|
|
4
|
+
<path d="m66.61 0c-4.047 0-7.299 3.253-7.299 7.299v497.4c0 4.047 3.253 7.299 7.299 7.299h378.79c4.047 0 7.299-3.253 7.299-7.299v-359.46l-145.21-145.24h-240.88"/>
|
|
5
|
+
<path d="m69.2 3.5c-3.991 0-7.2 3.208-7.2 7.2v490.6c0 3.991 3.208 7.2 7.2 7.2h373.61c3.991 0 7.2-3.208 7.2-7.2v-354.55l-143.22-143.25h-237.59"/>
|
|
6
|
+
<path d="m71.786 7c-3.936 0-7.1 3.164-7.1 7.1v483.8c0 3.936 3.164 7.1 7.1 7.1h368.43c3.936 0 7.1-3.164 7.1-7.1v-349.63l-141.24-141.27h-234.29"/>
|
|
7
|
+
</g>
|
|
8
|
+
<path d="m74.37 10.5c-3.881 0-7 3.119-7 7v477c0 3.881 3.119 7 7 7h363.25c3.881 0 7-3.119 7-7v-344.72l-139.25-139.28h-231" fill="#f59640"/>
|
|
9
|
+
<path d="m308.78 148.78c4.487 5.957 11.24 10.578 16.06 16.313 39.915 39.949 79.85 79.881 119.78 119.81v-135.12h-132.25c-1.321 0-2.542-0.37-3.594-1" fill-opacity=".235"/>
|
|
10
|
+
<path fill="#fff" d="m444.62 149.78l-139.25-139.28v132.28c0 3.881 3.119 7 7 7h132.25" fill-opacity=".196"/>
|
|
11
|
+
<g fill-rule="evenodd">
|
|
12
|
+
<path opacity=".25" d="m111.75 160.84v54.09l66.906 66.906c-20.686-8.27-43.27-12.813-66.906-12.813v54.09l178.38 178.38h147.5c3.881 0 7-3.119 7-7v-120.28l-128.87-128.87c-52.21-52.21-124.33-84.5-204-84.5m36.06 216.38c-19.917 0-36.06 16.14-36.06 36.06 0 6.641-0.004 18.667 0.031 36.06l52.16 52.16h123.09l-113.72-113.72c-6.526-6.526-15.541-10.563-25.5-10.563m226.69 3.375c6.194 1.01 12.32 2.195 18.375 3.594 1.397 6.05 2.584 12.185 3.594 18.375l-21.969-21.969"/>
|
|
13
|
+
<path d="m111.75 160.84v54.09c129.46 0 234.41 104.95 234.41 234.41h54.09c0-159.34-129.16-288.5-288.5-288.5m0 108.19v54.09c69.71 0 126.22 56.51 126.22 126.22h54.09c0-99.58-80.73-180.31-180.31-180.31m36.06 108.19c-19.917 0-36.06 16.14-36.06 36.06 0 6.641-0.004 18.667 0.031 36.06 17.373 0.008 29.392 0 36.03 0 19.917 0 36.06-16.14 36.06-36.06 0-19.918-16.15-36.06-36.06-36.06" fill="#fff"/>
|
|
14
|
+
</g>
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
|
3
|
+
<g fill="#654641">
|
|
4
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="84.77" y="221.3" x="681.22" font-family="Gentium Book Basic" line-height="125%">
|
|
5
|
+
<tspan y="221.3" x="681.22"/>
|
|
6
|
+
</text>
|
|
7
|
+
<text style="text-anchor:middle" transform="scale(4.21679.23715)" font-size="30.8" y="659.01" x="299.04" font-family="Arial"/>
|
|
8
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="45.38" y="197.8" x="949.03" font-family="Gentium Book Basic" line-height="125%">
|
|
9
|
+
<tspan y="197.8" x="949.03"/>
|
|
10
|
+
</text>
|
|
11
|
+
<text style="text-anchor:middle" transform="scale(4.21679.23715)" font-size="16.488" y="671.14" x="305.7" font-family="Arial"/>
|
|
12
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="132.57" y="290.09" x="-25.07" font-family="Gentium Book Basic" line-height="125%">
|
|
13
|
+
<tspan y="290.09" x="-25.07"/>
|
|
14
|
+
</text>
|
|
15
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="48.17" y="805.88" x="195.94" font-family="Arial"/>
|
|
16
|
+
</g>
|
|
17
|
+
<g>
|
|
18
|
+
<g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" line-height="125%" font-size="208.33">
|
|
19
|
+
<text y="270.21" x="237.18">
|
|
20
|
+
<tspan y="270.21" x="237.18"/>
|
|
21
|
+
</text>
|
|
22
|
+
<text y="112.37" x="-55.893">
|
|
23
|
+
<tspan y="112.37" x="-55.893"/>
|
|
24
|
+
</text>
|
|
25
|
+
</g>
|
|
26
|
+
<g fill-opacity=".078">
|
|
27
|
+
<path d="m32.554 0c-4.774 0-8.59 3.266-8.59 7.313v497.38c0 4.047 3.816 7.313 8.59 7.313h446.89c4.774 0 8.59-3.266 8.59-7.313v-497.38c0-4.047-3.816-7.313-8.59-7.313h-446.89"/>
|
|
28
|
+
<path d="m35.614 3.5c-4.709 0-8.479 3.196-8.479 7.188v490.62c0 3.991 3.771 7.188 8.479 7.188h440.77c4.709 0 8.479-3.196 8.479-7.188v-490.62c0-3.991-3.771-7.188-8.479-7.188h-440.78"/>
|
|
29
|
+
<path d="m38.674 7c-4.643 0-8.369 3.158-8.369 7.094v483.82c0 3.936 3.725 7.094 8.369 7.094h434.65c4.643 0 8.369-3.158 8.369-7.094v-483.81c0-3.936-3.725-7.094-8.369-7.094h-434.65"/>
|
|
30
|
+
</g>
|
|
31
|
+
</g>
|
|
32
|
+
<path d="m41.734 10.5c-4.578 0-8.258 3.119-8.258 7v477c0 3.881 3.68 7 8.258 7h428.53c4.578 0 8.258-3.119 8.258-7v-477c0-3.881-3.68-7-8.258-7h-428.54" fill="#a1c651"/>
|
|
33
|
+
<g fill="#654641">
|
|
34
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="84.77" y="185.78" x="119.84" font-family="Gentium Book Basic" line-height="125%">
|
|
35
|
+
<tspan y="185.78" x="119.84"/>
|
|
36
|
+
</text>
|
|
37
|
+
<text style="text-anchor:middle" transform="scale(4.21679.23715)" font-size="30.8" y="516.46" x="159.14" font-family="Arial"/>
|
|
38
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="45.38" y="162.28" x="387.65" font-family="Gentium Book Basic" line-height="125%">
|
|
39
|
+
<tspan y="162.28" x="387.65"/>
|
|
40
|
+
</text>
|
|
41
|
+
<text style="text-anchor:middle" transform="scale(4.21679.23715)" font-size="16.488" y="528.59" x="165.81" font-family="Arial"/>
|
|
42
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="132.57" y="256.28" x="-614.98" font-family="Gentium Book Basic" line-height="125%">
|
|
43
|
+
<tspan y="256.28" x="-614.98"/>
|
|
44
|
+
</text>
|
|
45
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="48.17" y="670.22" x="48.929" font-family="Arial"/>
|
|
46
|
+
</g>
|
|
47
|
+
<g>
|
|
48
|
+
<g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" line-height="125%" font-size="208.33">
|
|
49
|
+
<text y="236.4" x="-352.73">
|
|
50
|
+
<tspan y="236.4" x="-352.73"/>
|
|
51
|
+
</text>
|
|
52
|
+
<text y="78.57" x="-645.81">
|
|
53
|
+
<tspan y="78.57" x="-645.81"/>
|
|
54
|
+
</text>
|
|
55
|
+
</g>
|
|
56
|
+
<path opacity=".25" d="m245.69 88c-23.651 0-42.813 13.283-42.813 29.656 0.688 6.109 4.555 13.82 6.594 16.469 9.882 13.176 9.877 21.403 7.406 26.344h-79.906c-14.6 0-26.344 11.744-26.344 26.344v66.72l61.781 61.75c-5.139 6.181-11.727 9.906-18.938 9.906-5.03-0.085-12.694-4.585-16.5-6.594-13.176-9.882-21.403-9.877-26.344-7.406v86.47c0 6.738 2.493 12.85 6.625 17.5 0.603 0.678 1.268 1.325 1.938 1.938l84.41 84.41h266.69c4.578 0 8.25-3.119 8.25-7v-214.25l-112.28-112.28c-4.747-4.645-11.241-7.5-18.438-7.5h-7.188l-59.688-59.688c-7.729-7.729-20.644-12.781-35.25-12.781m179.63 229.88l10.594 10.594c-4.458 5.349-10.03 8.859-16.12 9.688-0.458-1.551-0.804-3.104-0.969-4.563 0-5.774 2.376-11.162 6.5-15.719m-72.37 58.53h21.22v21.25c0 9.156-4.608 17.19-11.656 21.906l-31.469-31.469c4.721-7.04 12.757-11.688 21.906-11.688"/>
|
|
57
|
+
</g>
|
|
58
|
+
<path d="m245.69 88c-23.651 0-42.824 13.273-42.824 29.647 0.688 6.109 4.55 13.822 6.588 16.471 9.882 13.176 9.882 21.412 7.412 26.353h-79.882c-14.6 0-26.353 11.753-26.353 26.353v66.71c4.941 2.471 13.176 2.471 26.353-7.412 2.648-2.038 10.362-5.9 16.471-6.588 16.374 0 29.647 19.17 29.647 42.824 0 23.651-13.273 42.824-29.647 42.824-5.03-0.085-12.665-4.58-16.471-6.588-13.176-9.882-21.412-9.882-26.353-7.412v86.47c0 14.6 11.753 26.353 26.353 26.353h106.24c2.471-4.941 2.471-13.176-7.412-26.353-2.038-2.648-5.9-10.362-6.588-16.471 0-16.374 19.17-29.647 42.824-29.647 23.651 0 42.824 13.273 42.824 29.647-0.085 5.03-4.58 12.665-6.588 16.471-9.882 13.176-9.882 21.412-7.412 26.353h46.941c14.6 0 26.353-11.753 26.353-26.353v-73.29c4.941-2.471 13.176-2.471 26.353 7.412 3.806 2.01 11.445 6.503 16.471 6.588 16.374 0 29.647-19.17 29.647-42.824 0-23.651-13.273-42.824-29.647-42.824-6.109 0.688-13.822 4.55-16.471 6.588-13.176 9.882-21.412 9.882-26.353 7.412v-79.882c0-14.6-11.753-26.353-26.353-26.353h-73.29c-2.471-4.941-2.471-13.176 7.412-26.353 2.01-3.806 6.503-11.445 6.588-16.471 0-16.374-19.17-29.647-42.824-29.647" fill="#fff"/>
|
|
59
|
+
</svg>
|
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512">
|
|
3
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="148.92" x="-109.95" font-family="Gentium Book Basic" line-height="125%">
|
|
4
|
+
<tspan y="148.92" x="-109.95"/>
|
|
5
|
+
</text>
|
|
6
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="248.43" x="169.68" font-family="Arial"/>
|
|
7
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="68.919" x="471.32" font-family="Gentium Book Basic" line-height="125%">
|
|
8
|
+
<tspan y="68.919" x="471.32"/>
|
|
9
|
+
</text>
|
|
10
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-72.6" x="314.53" font-family="Arial"/>
|
|
11
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-112.34" x="-600.26" font-family="Gentium Book Basic" line-height="125%">
|
|
12
|
+
<tspan y="-112.34" x="-600.26"/>
|
|
13
|
+
</text>
|
|
14
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-799.96" x="47.49" font-family="Arial"/>
|
|
15
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-328.81" x="497.79" font-family="Gentium Book Basic" line-height="125%">
|
|
16
|
+
<tspan y="-328.81" x="497.79"/>
|
|
17
|
+
</text>
|
|
18
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1668.62" x="321.13" font-family="Arial"/>
|
|
19
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-408.82" x="1079.06" font-family="Gentium Book Basic" line-height="125%">
|
|
20
|
+
<tspan y="-408.82" x="1079.06"/>
|
|
21
|
+
</text>
|
|
22
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1989.66" x="465.98" font-family="Arial"/>
|
|
23
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-881.22" x="689.94" font-family="Gentium Book Basic" line-height="125%">
|
|
24
|
+
<tspan y="-881.22" x="689.94"/>
|
|
25
|
+
</text>
|
|
26
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-3885.31" x="369.01" font-family="Arial"/>
|
|
27
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-961.22" x="1271.2" font-family="Gentium Book Basic" line-height="125%">
|
|
28
|
+
<tspan y="-961.22" x="1271.2"/>
|
|
29
|
+
</text>
|
|
30
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-4206.34" x="513.86" font-family="Arial"/>
|
|
31
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="208.33" y="453.5" x="-561.6" font-family="Gentium Book Basic" line-height="125%">
|
|
32
|
+
<tspan y="453.5" x="-561.6"/>
|
|
33
|
+
</text>
|
|
34
|
+
<path opacity=".1" d="m36.06 0c-5.63 0-10.156 4.527-10.156 10.156v491.69c0 5.63 4.527 10.156 10.156 10.156h439.88c5.63 0 10.156-4.527 10.156-10.156v-334.09l-167.75-167.75h-282.28"/>
|
|
35
|
+
<path opacity=".1" d="m39.06 3.5c-5.553 0-10.03 4.479-10.03 10.03v484.94c0 5.553 4.479 10.03 10.03 10.03h433.88c5.553 0 10.03-4.479 10.03-10.03v-327.84l-167.12-167.12h-276.78"/>
|
|
36
|
+
<path opacity=".1" d="m42.06 7c-5.476 0-9.875 4.399-9.875 9.875v478.25c0 5.476 4.399 9.875 9.875 9.875h427.88c5.476 0 9.875-4.399 9.875-9.875v-321.66l-166.47-166.47h-271.28"/>
|
|
37
|
+
<path d="m45.06 10.5c-5.399 0-9.719 4.351-9.719 9.75v471.5c0 5.399 4.32 9.75 9.719 9.75h421.88c5.399 0 9.719-4.351 9.719-9.75v-315.44l-165.81-165.81h-265.78" fill="#e02b2b"/>
|
|
38
|
+
<path id="0" fill-opacity=".196" fill="#fff" d="m476.66 176.31l-165.81-165.81v156.06c0 5.399 4.32 9.75 9.719 9.75h156.09"/>
|
|
39
|
+
<use xlink:href="#0"/>
|
|
40
|
+
<path opacity=".25" d="m316.59 175.47c8.98 9.03 18.18 18.292 27.313 27.469-27.443-11.623-58.09-15.815-88.16-15.969-2.426-0.012-4.834-0.007-7.25 0.031-42.04 1.509-86.956 10.926-117.97 39.438-14.247 13.526-20.741 35.575-9.938 52.719 3 5.176 6.673 9.798 10.844 13.969l45.563 45.563c-5.661-1.927-11.243-4.083-16.719-6.469-4.459-2.038-8.87-4.277-13.12-6.781l-32-32.03c0.809 15.278-1.662 30.832 1.281 45.938 2.607 9.318 7.861 17.236 14.594 23.969l49 49c-6.393-2.07-12.709-4.418-18.875-7.06-4.674-2.12-9.3-4.467-13.781-7.094l-32.22-32.22v36.875c0.419 12.947 6.919 24.14 16.09 33.31l65.38 65.38h270.31c5.399 0 9.719-4.351 9.719-9.75v-315.44h-156.09c-1.422 0-2.756-0.3-3.969-0.844"/>
|
|
41
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="208.33" y="-43.575" x="-990.51" font-family="Gentium Book Basic" line-height="125%">
|
|
42
|
+
<tspan y="-43.575" x="-990.51"/>
|
|
43
|
+
</text>
|
|
44
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="75.7" y="-737.75" x="70.891" font-family="Arial"/>
|
|
45
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="208.33" y="-811.53" x="-1638.27" font-family="Gentium Book Basic" line-height="125%">
|
|
46
|
+
<tspan y="-811.53" x="-1638.27"/>
|
|
47
|
+
</text>
|
|
48
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="75.7" y="-3819.41" x="-90.53" font-family="Arial"/>
|
|
49
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="208.33" y="-967.16" x="-931.93" font-family="Gentium Book Basic" line-height="125%">
|
|
50
|
+
<tspan y="-967.16" x="-931.93"/>
|
|
51
|
+
</text>
|
|
52
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="75.7" y="-4443.94" x="85.49" font-family="Arial"/>
|
|
53
|
+
<g fill="#fff">
|
|
54
|
+
<path d="m72.27 108.77c37.2-14.404 65.56-13.86 87.44 1.383 19.34-22.85 61.09-31.632 74.49-30.1-40.04-14.88-71.46 0.077-78.25 10.08-22.23-9.765-72.03-0.918-83.67 18.636"/>
|
|
55
|
+
<path d="m134.75 56.812c26.617-7.348 50.23-7.979 66.97 1.488 15.649-12.541 47.967-17.08 58.19-16.11-36.725-7.588-52.912-0.63-60.811 4.174-23.597-5.201-46.2-4.787-64.34 10.45"/>
|
|
56
|
+
</g>
|
|
57
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="244.38" x="-34.02" font-family="Gentium Book Basic" line-height="125%">
|
|
58
|
+
<tspan y="244.38" x="-34.02"/>
|
|
59
|
+
</text>
|
|
60
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="631.48" x="188.6" font-family="Arial"/>
|
|
61
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="164.38" x="547.25" font-family="Gentium Book Basic" line-height="125%">
|
|
62
|
+
<tspan y="164.38" x="547.25"/>
|
|
63
|
+
</text>
|
|
64
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="310.45" x="333.45" font-family="Arial"/>
|
|
65
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-16.884" x="-524.33" font-family="Gentium Book Basic" line-height="125%">
|
|
66
|
+
<tspan y="-16.884" x="-524.33"/>
|
|
67
|
+
</text>
|
|
68
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-416.9" x="66.41" font-family="Arial"/>
|
|
69
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-233.35" x="573.72" font-family="Gentium Book Basic" line-height="125%">
|
|
70
|
+
<tspan y="-233.35" x="573.72"/>
|
|
71
|
+
</text>
|
|
72
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1285.57" x="340.05" font-family="Arial"/>
|
|
73
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-313.36" x="1154.99" font-family="Gentium Book Basic" line-height="125%">
|
|
74
|
+
<tspan y="-313.36" x="1154.99"/>
|
|
75
|
+
</text>
|
|
76
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1606.61" x="484.9" font-family="Arial"/>
|
|
77
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-785.76" x="765.87" font-family="Gentium Book Basic" line-height="125%">
|
|
78
|
+
<tspan y="-785.76" x="765.87"/>
|
|
79
|
+
</text>
|
|
80
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-3502.26" x="387.93" font-family="Arial"/>
|
|
81
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-865.76" x="1347.13" font-family="Gentium Book Basic" line-height="125%">
|
|
82
|
+
<tspan y="-865.76" x="1347.13"/>
|
|
83
|
+
</text>
|
|
84
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-3823.29" x="532.78" font-family="Arial"/>
|
|
85
|
+
<g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" line-height="125%">
|
|
86
|
+
<text y="548.96" x="-485.67" font-size="208.33">
|
|
87
|
+
<tspan y="548.96" x="-485.67"/>
|
|
88
|
+
</text>
|
|
89
|
+
<text y="217.75" x="-38.25" font-size="129.23">
|
|
90
|
+
<tspan y="217.75" x="-38.25"/>
|
|
91
|
+
</text>
|
|
92
|
+
</g>
|
|
93
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="524.62" x="187.55" font-family="Arial"/>
|
|
94
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="137.75" x="543.02" font-family="Gentium Book Basic" line-height="125%">
|
|
95
|
+
<tspan y="137.75" x="543.02"/>
|
|
96
|
+
</text>
|
|
97
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="203.59" x="332.4" font-family="Arial"/>
|
|
98
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-43.514" x="-528.56" font-family="Gentium Book Basic" line-height="125%">
|
|
99
|
+
<tspan y="-43.514" x="-528.56"/>
|
|
100
|
+
</text>
|
|
101
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-523.76" x="65.36" font-family="Arial"/>
|
|
102
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-259.98" x="569.49" font-family="Gentium Book Basic" line-height="125%">
|
|
103
|
+
<tspan y="-259.98" x="569.49"/>
|
|
104
|
+
</text>
|
|
105
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1392.43" x="339" font-family="Arial"/>
|
|
106
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-339.99" x="1150.76" font-family="Gentium Book Basic" line-height="125%">
|
|
107
|
+
<tspan y="-339.99" x="1150.76"/>
|
|
108
|
+
</text>
|
|
109
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1713.47" x="483.85" font-family="Arial"/>
|
|
110
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-812.39" x="761.64" font-family="Gentium Book Basic" line-height="125%">
|
|
111
|
+
<tspan y="-812.39" x="761.64"/>
|
|
112
|
+
</text>
|
|
113
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-3609.12" x="386.88" font-family="Arial"/>
|
|
114
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-892.39" x="1342.9" font-family="Gentium Book Basic" line-height="125%">
|
|
115
|
+
<tspan y="-892.39" x="1342.9"/>
|
|
116
|
+
</text>
|
|
117
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-3930.15" x="531.73" font-family="Arial"/>
|
|
118
|
+
<g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" line-height="125%">
|
|
119
|
+
<text y="522.33" x="-489.9" font-size="208.33">
|
|
120
|
+
<tspan y="522.33" x="-489.9"/>
|
|
121
|
+
</text>
|
|
122
|
+
<text y="-78.877" x="-90.43" font-size="129.23">
|
|
123
|
+
<tspan y="-78.877" x="-90.43"/>
|
|
124
|
+
</text>
|
|
125
|
+
</g>
|
|
126
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-665.68" x="174.55" font-family="Arial"/>
|
|
127
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-158.88" x="490.84" font-family="Gentium Book Basic" line-height="125%">
|
|
128
|
+
<tspan y="-158.88" x="490.84"/>
|
|
129
|
+
</text>
|
|
130
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-986.71" x="319.4" font-family="Arial"/>
|
|
131
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-340.14" x="-580.74" font-family="Gentium Book Basic" line-height="125%">
|
|
132
|
+
<tspan y="-340.14" x="-580.74"/>
|
|
133
|
+
</text>
|
|
134
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-1714.06" x="52.36" font-family="Arial"/>
|
|
135
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-556.61" x="517.31" font-family="Gentium Book Basic" line-height="125%">
|
|
136
|
+
<tspan y="-556.61" x="517.31"/>
|
|
137
|
+
</text>
|
|
138
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-2582.73" x="326" font-family="Arial"/>
|
|
139
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-636.62" x="1098.58" font-family="Gentium Book Basic" line-height="125%">
|
|
140
|
+
<tspan y="-636.62" x="1098.58"/>
|
|
141
|
+
</text>
|
|
142
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-2903.77" x="470.84" font-family="Arial"/>
|
|
143
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-1109.02" x="709.46" font-family="Gentium Book Basic" line-height="125%">
|
|
144
|
+
<tspan y="-1109.02" x="709.46"/>
|
|
145
|
+
</text>
|
|
146
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-4799.42" x="373.88" font-family="Arial"/>
|
|
147
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="129.23" y="-1189.02" x="1290.72" font-family="Gentium Book Basic" line-height="125%">
|
|
148
|
+
<tspan y="-1189.02" x="1290.72"/>
|
|
149
|
+
</text>
|
|
150
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="46.954" y="-5120.45" x="518.72" font-family="Arial"/>
|
|
151
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="208.33" y="225.7" x="-542.08" font-family="Gentium Book Basic" line-height="125%">
|
|
152
|
+
<tspan y="225.7" x="-542.08"/>
|
|
153
|
+
</text>
|
|
154
|
+
<path d="m248.5 187c-42.04 1.509-86.951 10.944-117.96 39.456-14.247 13.526-20.736 35.55-9.932 52.694 14.264 24.605 43.529 37.11 70.888 44.601 51.563 13.346 108.64 11.02 157.5-10.02 21.488-9.526 43.23-25.613 47.36-48.86 3.26-23.11-15.719-42.915-35.565-53.592-33.469-19.252-73.63-24.89-112.3-24.278m147.71 107.41c-14.08 26.343-44.43 39.91-73.07 48.02-53.24 14.12-112.39 11.792-162.86-10.197-18.536-8.473-36.29-20.723-45.11-38.838 0.809 15.278-1.661 30.85 1.282 45.955 6.584 23.532 29.894 38.01 51.895 47.51 44.14 17.35 94.53 19.474 141.16 10.356 28.653-6.723 58.733-17.602 77.15-40.506 10.195-12.05 10.991-27.793 9.979-42.599 0.178-6.911 0.015-13.831 0.072-20.748l-0.471 0.986-0.029 0.062m-281.05 108.39c0.753 23.283 21.22 40.886 41.42 51.3 40.02 19.657 86.97 24.18 131.48 19.357 33.08-4.522 67.62-14.15 92.06-36.751 13.06-11.695 18.616-29.14 16.488-45.989 0.197-8.242 0.074-16.491 0.108-24.737-13.244 26.303-43.19 40.18-71.25 48.43-53.57 14.793-113.28 12.737-164.29-9.141-18.802-8.53-37.19-20.871-46.01-39.32v36.852" fill="#fff"/>
|
|
155
|
+
</svg>
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
|
3
|
+
<g fill="#654641">
|
|
4
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="84.77" y="221.3" x="681.22" font-family="Gentium Book Basic" line-height="125%">
|
|
5
|
+
<tspan y="221.3" x="681.22"/>
|
|
6
|
+
</text>
|
|
7
|
+
<text style="text-anchor:middle" transform="scale(4.21679.23715)" font-size="30.8" y="659.01" x="299.04" font-family="Arial"/>
|
|
8
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="45.38" y="197.8" x="949.03" font-family="Gentium Book Basic" line-height="125%">
|
|
9
|
+
<tspan y="197.8" x="949.03"/>
|
|
10
|
+
</text>
|
|
11
|
+
<text style="text-anchor:middle" transform="scale(4.21679.23715)" font-size="16.488" y="671.14" x="305.7" font-family="Arial"/>
|
|
12
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="132.57" y="290.09" x="-25.07" font-family="Gentium Book Basic" line-height="125%">
|
|
13
|
+
<tspan y="290.09" x="-25.07"/>
|
|
14
|
+
</text>
|
|
15
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="48.17" y="805.88" x="195.94" font-family="Arial"/>
|
|
16
|
+
</g>
|
|
17
|
+
<g>
|
|
18
|
+
<g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" line-height="125%" font-size="208.33">
|
|
19
|
+
<text y="270.21" x="237.18">
|
|
20
|
+
<tspan y="270.21" x="237.18"/>
|
|
21
|
+
</text>
|
|
22
|
+
<text y="112.37" x="-55.893">
|
|
23
|
+
<tspan y="112.37" x="-55.893"/>
|
|
24
|
+
</text>
|
|
25
|
+
</g>
|
|
26
|
+
<g fill-opacity=".078">
|
|
27
|
+
<path d="m32.554 0c-4.774 0-8.59 3.266-8.59 7.313v497.38c0 4.047 3.816 7.313 8.59 7.313h446.89c4.774 0 8.59-3.266 8.59-7.313v-497.38c0-4.047-3.816-7.313-8.59-7.313h-446.89"/>
|
|
28
|
+
<path d="m35.614 3.5c-4.709 0-8.479 3.196-8.479 7.188v490.62c0 3.991 3.771 7.188 8.479 7.188h440.77c4.709 0 8.479-3.196 8.479-7.188v-490.62c0-3.991-3.771-7.188-8.479-7.188h-440.78"/>
|
|
29
|
+
<path d="m38.674 7c-4.643 0-8.369 3.158-8.369 7.094v483.82c0 3.936 3.725 7.094 8.369 7.094h434.65c4.643 0 8.369-3.158 8.369-7.094v-483.81c0-3.936-3.725-7.094-8.369-7.094h-434.65"/>
|
|
30
|
+
</g>
|
|
31
|
+
</g>
|
|
32
|
+
<path d="m41.734 10.5c-4.578 0-8.258 3.119-8.258 7v477c0 3.881 3.68 7 8.258 7h428.53c4.578 0 8.258-3.119 8.258-7v-477c0-3.881-3.68-7-8.258-7h-428.54" fill="#a1c651"/>
|
|
33
|
+
<g fill="#654641">
|
|
34
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="84.77" y="185.78" x="119.84" font-family="Gentium Book Basic" line-height="125%">
|
|
35
|
+
<tspan y="185.78" x="119.84"/>
|
|
36
|
+
</text>
|
|
37
|
+
<text style="text-anchor:middle" transform="scale(4.21679.23715)" font-size="30.8" y="516.46" x="159.14" font-family="Arial"/>
|
|
38
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="45.38" y="162.28" x="387.65" font-family="Gentium Book Basic" line-height="125%">
|
|
39
|
+
<tspan y="162.28" x="387.65"/>
|
|
40
|
+
</text>
|
|
41
|
+
<text style="text-anchor:middle" transform="scale(4.21679.23715)" font-size="16.488" y="528.59" x="165.81" font-family="Arial"/>
|
|
42
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="132.57" y="256.28" x="-614.98" font-family="Gentium Book Basic" line-height="125%">
|
|
43
|
+
<tspan y="256.28" x="-614.98"/>
|
|
44
|
+
</text>
|
|
45
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="48.17" y="670.22" x="48.929" font-family="Arial"/>
|
|
46
|
+
</g>
|
|
47
|
+
<g>
|
|
48
|
+
<g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" line-height="125%" font-size="208.33">
|
|
49
|
+
<text y="236.4" x="-352.73">
|
|
50
|
+
<tspan y="236.4" x="-352.73"/>
|
|
51
|
+
</text>
|
|
52
|
+
<text y="78.57" x="-645.81">
|
|
53
|
+
<tspan y="78.57" x="-645.81"/>
|
|
54
|
+
</text>
|
|
55
|
+
</g>
|
|
56
|
+
<path opacity=".25" d="m245.69 88c-23.651 0-42.813 13.283-42.813 29.656 0.688 6.109 4.555 13.82 6.594 16.469 9.882 13.176 9.877 21.403 7.406 26.344h-79.906c-14.6 0-26.344 11.744-26.344 26.344v66.72l61.781 61.75c-5.139 6.181-11.727 9.906-18.938 9.906-5.03-0.085-12.694-4.585-16.5-6.594-13.176-9.882-21.403-9.877-26.344-7.406v86.47c0 6.738 2.493 12.85 6.625 17.5 0.603 0.678 1.268 1.325 1.938 1.938l84.41 84.41h266.69c4.578 0 8.25-3.119 8.25-7v-214.25l-112.28-112.28c-4.747-4.645-11.241-7.5-18.438-7.5h-7.188l-59.688-59.688c-7.729-7.729-20.644-12.781-35.25-12.781m179.63 229.88l10.594 10.594c-4.458 5.349-10.03 8.859-16.12 9.688-0.458-1.551-0.804-3.104-0.969-4.563 0-5.774 2.376-11.162 6.5-15.719m-72.37 58.53h21.22v21.25c0 9.156-4.608 17.19-11.656 21.906l-31.469-31.469c4.721-7.04 12.757-11.688 21.906-11.688"/>
|
|
57
|
+
</g>
|
|
58
|
+
<path d="m245.69 88c-23.651 0-42.824 13.273-42.824 29.647 0.688 6.109 4.55 13.822 6.588 16.471 9.882 13.176 9.882 21.412 7.412 26.353h-79.882c-14.6 0-26.353 11.753-26.353 26.353v66.71c4.941 2.471 13.176 2.471 26.353-7.412 2.648-2.038 10.362-5.9 16.471-6.588 16.374 0 29.647 19.17 29.647 42.824 0 23.651-13.273 42.824-29.647 42.824-5.03-0.085-12.665-4.58-16.471-6.588-13.176-9.882-21.412-9.882-26.353-7.412v86.47c0 14.6 11.753 26.353 26.353 26.353h106.24c2.471-4.941 2.471-13.176-7.412-26.353-2.038-2.648-5.9-10.362-6.588-16.471 0-16.374 19.17-29.647 42.824-29.647 23.651 0 42.824 13.273 42.824 29.647-0.085 5.03-4.58 12.665-6.588 16.471-9.882 13.176-9.882 21.412-7.412 26.353h46.941c14.6 0 26.353-11.753 26.353-26.353v-73.29c4.941-2.471 13.176-2.471 26.353 7.412 3.806 2.01 11.445 6.503 16.471 6.588 16.374 0 29.647-19.17 29.647-42.824 0-23.651-13.273-42.824-29.647-42.824-6.109 0.688-13.822 4.55-16.471 6.588-13.176 9.882-21.412 9.882-26.353 7.412v-79.882c0-14.6-11.753-26.353-26.353-26.353h-73.29c-2.471-4.941-2.471-13.176 7.412-26.353 2.01-3.806 6.503-11.445 6.588-16.471 0-16.374-19.17-29.647-42.824-29.647" fill="#fff"/>
|
|
59
|
+
</svg>
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
|
3
|
+
<g fill="#654641">
|
|
4
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="84.77" y="221.3" x="681.22" font-family="Gentium Book Basic" line-height="125%">
|
|
5
|
+
<tspan y="221.3" x="681.22"/>
|
|
6
|
+
</text>
|
|
7
|
+
<text style="text-anchor:middle" transform="scale(4.21679.23715)" font-size="30.8" y="659.01" x="299.04" font-family="Arial"/>
|
|
8
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="45.38" y="197.8" x="949.03" font-family="Gentium Book Basic" line-height="125%">
|
|
9
|
+
<tspan y="197.8" x="949.03"/>
|
|
10
|
+
</text>
|
|
11
|
+
<text style="text-anchor:middle" transform="scale(4.21679.23715)" font-size="16.488" y="671.14" x="305.7" font-family="Arial"/>
|
|
12
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="132.57" y="290.09" x="-25.07" font-family="Gentium Book Basic" line-height="125%">
|
|
13
|
+
<tspan y="290.09" x="-25.07"/>
|
|
14
|
+
</text>
|
|
15
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="48.17" y="805.88" x="195.94" font-family="Arial"/>
|
|
16
|
+
</g>
|
|
17
|
+
<g>
|
|
18
|
+
<g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" line-height="125%" font-size="208.33">
|
|
19
|
+
<text y="270.21" x="237.18">
|
|
20
|
+
<tspan y="270.21" x="237.18"/>
|
|
21
|
+
</text>
|
|
22
|
+
<text y="112.37" x="-55.893">
|
|
23
|
+
<tspan y="112.37" x="-55.893"/>
|
|
24
|
+
</text>
|
|
25
|
+
</g>
|
|
26
|
+
<g fill-opacity=".078">
|
|
27
|
+
<path d="m32.554 0c-4.774 0-8.59 3.266-8.59 7.313v497.38c0 4.047 3.816 7.313 8.59 7.313h446.89c4.774 0 8.59-3.266 8.59-7.313v-497.38c0-4.047-3.816-7.313-8.59-7.313h-446.89"/>
|
|
28
|
+
<path d="m35.614 3.5c-4.709 0-8.479 3.196-8.479 7.188v490.62c0 3.991 3.771 7.188 8.479 7.188h440.77c4.709 0 8.479-3.196 8.479-7.188v-490.62c0-3.991-3.771-7.188-8.479-7.188h-440.78"/>
|
|
29
|
+
<path d="m38.674 7c-4.643 0-8.369 3.158-8.369 7.094v483.82c0 3.936 3.725 7.094 8.369 7.094h434.65c4.643 0 8.369-3.158 8.369-7.094v-483.81c0-3.936-3.725-7.094-8.369-7.094h-434.65"/>
|
|
30
|
+
</g>
|
|
31
|
+
</g>
|
|
32
|
+
<path d="m41.734 10.5c-4.578 0-8.258 3.119-8.258 7v477c0 3.881 3.68 7 8.258 7h428.53c4.578 0 8.258-3.119 8.258-7v-477c0-3.881-3.68-7-8.258-7h-428.54" fill="#a1c651"/>
|
|
33
|
+
<g fill="#654641">
|
|
34
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="84.77" y="185.78" x="119.84" font-family="Gentium Book Basic" line-height="125%">
|
|
35
|
+
<tspan y="185.78" x="119.84"/>
|
|
36
|
+
</text>
|
|
37
|
+
<text style="text-anchor:middle" transform="scale(4.21679.23715)" font-size="30.8" y="516.46" x="159.14" font-family="Arial"/>
|
|
38
|
+
<text style="word-spacing:0;letter-spacing:0" transform="scale(1.05082.95163)" font-size="45.38" y="162.28" x="387.65" font-family="Gentium Book Basic" line-height="125%">
|
|
39
|
+
<tspan y="162.28" x="387.65"/>
|
|
40
|
+
</text>
|
|
41
|
+
<text style="text-anchor:middle" transform="scale(4.21679.23715)" font-size="16.488" y="528.59" x="165.81" font-family="Arial"/>
|
|
42
|
+
<text style="word-spacing:0;letter-spacing:0" font-size="132.57" y="256.28" x="-614.98" font-family="Gentium Book Basic" line-height="125%">
|
|
43
|
+
<tspan y="256.28" x="-614.98"/>
|
|
44
|
+
</text>
|
|
45
|
+
<text style="text-anchor:middle" transform="scale(4.0128.2492)" font-size="48.17" y="670.22" x="48.929" font-family="Arial"/>
|
|
46
|
+
</g>
|
|
47
|
+
<g>
|
|
48
|
+
<g style="word-spacing:0;letter-spacing:0" font-family="Gentium Book Basic" line-height="125%" font-size="208.33">
|
|
49
|
+
<text y="236.4" x="-352.73">
|
|
50
|
+
<tspan y="236.4" x="-352.73"/>
|
|
51
|
+
</text>
|
|
52
|
+
<text y="78.57" x="-645.81">
|
|
53
|
+
<tspan y="78.57" x="-645.81"/>
|
|
54
|
+
</text>
|
|
55
|
+
</g>
|
|
56
|
+
<path opacity=".25" d="m245.69 88c-23.651 0-42.813 13.283-42.813 29.656 0.688 6.109 4.555 13.82 6.594 16.469 9.882 13.176 9.877 21.403 7.406 26.344h-79.906c-14.6 0-26.344 11.744-26.344 26.344v66.72l61.781 61.75c-5.139 6.181-11.727 9.906-18.938 9.906-5.03-0.085-12.694-4.585-16.5-6.594-13.176-9.882-21.403-9.877-26.344-7.406v86.47c0 6.738 2.493 12.85 6.625 17.5 0.603 0.678 1.268 1.325 1.938 1.938l84.41 84.41h266.69c4.578 0 8.25-3.119 8.25-7v-214.25l-112.28-112.28c-4.747-4.645-11.241-7.5-18.438-7.5h-7.188l-59.688-59.688c-7.729-7.729-20.644-12.781-35.25-12.781m179.63 229.88l10.594 10.594c-4.458 5.349-10.03 8.859-16.12 9.688-0.458-1.551-0.804-3.104-0.969-4.563 0-5.774 2.376-11.162 6.5-15.719m-72.37 58.53h21.22v21.25c0 9.156-4.608 17.19-11.656 21.906l-31.469-31.469c4.721-7.04 12.757-11.688 21.906-11.688"/>
|
|
57
|
+
</g>
|
|
58
|
+
<path d="m245.69 88c-23.651 0-42.824 13.273-42.824 29.647 0.688 6.109 4.55 13.822 6.588 16.471 9.882 13.176 9.882 21.412 7.412 26.353h-79.882c-14.6 0-26.353 11.753-26.353 26.353v66.71c4.941 2.471 13.176 2.471 26.353-7.412 2.648-2.038 10.362-5.9 16.471-6.588 16.374 0 29.647 19.17 29.647 42.824 0 23.651-13.273 42.824-29.647 42.824-5.03-0.085-12.665-4.58-16.471-6.588-13.176-9.882-21.412-9.882-26.353-7.412v86.47c0 14.6 11.753 26.353 26.353 26.353h106.24c2.471-4.941 2.471-13.176-7.412-26.353-2.038-2.648-5.9-10.362-6.588-16.471 0-16.374 19.17-29.647 42.824-29.647 23.651 0 42.824 13.273 42.824 29.647-0.085 5.03-4.58 12.665-6.588 16.471-9.882 13.176-9.882 21.412-7.412 26.353h46.941c14.6 0 26.353-11.753 26.353-26.353v-73.29c4.941-2.471 13.176-2.471 26.353 7.412 3.806 2.01 11.445 6.503 16.471 6.588 16.374 0 29.647-19.17 29.647-42.824 0-23.651-13.273-42.824-29.647-42.824-6.109 0.688-13.822 4.55-16.471 6.588-13.176 9.882-21.412 9.882-26.353 7.412v-79.882c0-14.6-11.753-26.353-26.353-26.353h-73.29c-2.471-4.941-2.471-13.176 7.412-26.353 2.01-3.806 6.503-11.445 6.588-16.471 0-16.374-19.17-29.647-42.824-29.647" fill="#fff"/>
|
|
59
|
+
</svg>
|