@patternfly/chatbot 2.2.0-prerelease.17 → 2.2.0-prerelease.19

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.
Files changed (28) hide show
  1. package/dist/cjs/MessageBar/AttachButton.js +1 -1
  2. package/dist/cjs/MessageBar/MessageBar.js +9 -12
  3. package/dist/esm/MessageBar/AttachButton.js +1 -1
  4. package/dist/esm/MessageBar/MessageBar.js +9 -12
  5. package/package.json +1 -1
  6. package/patternfly-docs/content/extensions/chatbot/about-chatbot.md +5 -2
  7. package/patternfly-docs/content/extensions/chatbot/design-guidelines.md +41 -4
  8. package/patternfly-docs/content/extensions/chatbot/examples/UI/ChatbotMessageBarAttach.tsx +1 -1
  9. package/patternfly-docs/content/extensions/chatbot/examples/demos/ChatbotAttachmentMenu.tsx +1 -1
  10. package/patternfly-docs/content/extensions/chatbot/img/attached-file.svg +24 -29
  11. package/patternfly-docs/content/extensions/chatbot/img/attachment-menu.svg +4 -4
  12. package/patternfly-docs/content/extensions/chatbot/img/attachment-unsent.svg +30 -57
  13. package/patternfly-docs/content/extensions/chatbot/img/chatbot-elements.svg +5 -5
  14. package/patternfly-docs/content/extensions/chatbot/img/chatbot-quickstarts-tile.svg +58 -0
  15. package/patternfly-docs/content/extensions/chatbot/img/chatbot-settings.svg +83 -0
  16. package/patternfly-docs/content/extensions/chatbot/img/conversation-history.svg +6 -29
  17. package/patternfly-docs/content/extensions/chatbot/img/docked.svg +68 -49
  18. package/patternfly-docs/content/extensions/chatbot/img/footnote.svg +1 -1
  19. package/patternfly-docs/content/extensions/chatbot/img/fullscreen.svg +25 -16
  20. package/patternfly-docs/content/extensions/chatbot/img/listening.svg +1 -1
  21. package/patternfly-docs/content/extensions/chatbot/img/message-bar-elements.svg +3 -3
  22. package/patternfly-docs/content/extensions/chatbot/img/message-elements.svg +85 -142
  23. package/patternfly-docs/content/extensions/chatbot/img/overlay.svg +52 -36
  24. package/patternfly-docs/content/extensions/chatbot/img/settings-menu.svg +122 -0
  25. package/patternfly-docs/content/extensions/chatbot/img/source-tile.svg +62 -0
  26. package/patternfly-docs/content/extensions/chatbot/img/toggle-customizations.svg +12 -0
  27. package/src/MessageBar/AttachButton.tsx +1 -1
  28. package/src/MessageBar/MessageBar.tsx +9 -12
@@ -30,7 +30,7 @@ const AttachButtonBase = (_a) => {
30
30
  onDropAccepted: onAttachAccepted
31
31
  });
32
32
  return (react_1.default.createElement(react_1.default.Fragment, null,
33
- react_1.default.createElement("input", Object.assign({ "data-testid": inputTestId }, getInputProps())),
33
+ react_1.default.createElement("input", Object.assign({ "data-testid": inputTestId }, getInputProps(), { hidden: true })),
34
34
  react_1.default.createElement(react_core_1.Tooltip, Object.assign({ id: "pf-chatbot__tooltip--attach", content: tooltipContent, position: "top", entryDelay: (tooltipProps === null || tooltipProps === void 0 ? void 0 : tooltipProps.entryDelay) || 0, exitDelay: (tooltipProps === null || tooltipProps === void 0 ? void 0 : tooltipProps.exitDelay) || 0, distance: (tooltipProps === null || tooltipProps === void 0 ? void 0 : tooltipProps.distance) || 8, animationDuration: (tooltipProps === null || tooltipProps === void 0 ? void 0 : tooltipProps.animationDuration) || 0,
35
35
  // prevents VO announcements of both aria label and tooltip
36
36
  aria: "none" }, tooltipProps),
@@ -54,17 +54,14 @@ const MessageBar = (_a) => {
54
54
  };
55
55
  // Handle sending message
56
56
  const handleSend = react_1.default.useCallback(() => {
57
- setMessage((m) => {
58
- onSendMessage(m);
59
- setMessage('');
60
- if (textareaRef.current) {
61
- textareaRef.current.innerText = '';
62
- setShowPlaceholder(true);
63
- textareaRef.current.blur();
64
- }
65
- return '';
66
- });
67
- }, [onSendMessage]);
57
+ onSendMessage(message);
58
+ if (textareaRef.current) {
59
+ textareaRef.current.innerText = '';
60
+ setShowPlaceholder(true);
61
+ textareaRef.current.blur();
62
+ }
63
+ setMessage('');
64
+ }, [onSendMessage, message]);
68
65
  const handleKeyDown = react_1.default.useCallback((event) => {
69
66
  if (event.key === 'Enter' && !event.shiftKey) {
70
67
  event.preventDefault();
@@ -72,7 +69,7 @@ const MessageBar = (_a) => {
72
69
  handleSend();
73
70
  }
74
71
  }
75
- }, [handleSend]);
72
+ }, [handleSend, isSendButtonDisabled, handleStopButton]);
76
73
  const handleAttachMenuToggle = () => {
77
74
  (attachMenuProps === null || attachMenuProps === void 0 ? void 0 : attachMenuProps.setIsAttachMenuOpen) && (attachMenuProps === null || attachMenuProps === void 0 ? void 0 : attachMenuProps.setIsAttachMenuOpen(!(attachMenuProps === null || attachMenuProps === void 0 ? void 0 : attachMenuProps.isAttachMenuOpen)));
78
75
  attachMenuProps === null || attachMenuProps === void 0 ? void 0 : attachMenuProps.onAttachMenuToggleClick();
@@ -24,7 +24,7 @@ const AttachButtonBase = (_a) => {
24
24
  onDropAccepted: onAttachAccepted
25
25
  });
26
26
  return (React.createElement(React.Fragment, null,
27
- React.createElement("input", Object.assign({ "data-testid": inputTestId }, getInputProps())),
27
+ React.createElement("input", Object.assign({ "data-testid": inputTestId }, getInputProps(), { hidden: true })),
28
28
  React.createElement(Tooltip, Object.assign({ id: "pf-chatbot__tooltip--attach", content: tooltipContent, position: "top", entryDelay: (tooltipProps === null || tooltipProps === void 0 ? void 0 : tooltipProps.entryDelay) || 0, exitDelay: (tooltipProps === null || tooltipProps === void 0 ? void 0 : tooltipProps.exitDelay) || 0, distance: (tooltipProps === null || tooltipProps === void 0 ? void 0 : tooltipProps.distance) || 8, animationDuration: (tooltipProps === null || tooltipProps === void 0 ? void 0 : tooltipProps.animationDuration) || 0,
29
29
  // prevents VO announcements of both aria label and tooltip
30
30
  aria: "none" }, tooltipProps),
@@ -48,17 +48,14 @@ export const MessageBar = (_a) => {
48
48
  };
49
49
  // Handle sending message
50
50
  const handleSend = React.useCallback(() => {
51
- setMessage((m) => {
52
- onSendMessage(m);
53
- setMessage('');
54
- if (textareaRef.current) {
55
- textareaRef.current.innerText = '';
56
- setShowPlaceholder(true);
57
- textareaRef.current.blur();
58
- }
59
- return '';
60
- });
61
- }, [onSendMessage]);
51
+ onSendMessage(message);
52
+ if (textareaRef.current) {
53
+ textareaRef.current.innerText = '';
54
+ setShowPlaceholder(true);
55
+ textareaRef.current.blur();
56
+ }
57
+ setMessage('');
58
+ }, [onSendMessage, message]);
62
59
  const handleKeyDown = React.useCallback((event) => {
63
60
  if (event.key === 'Enter' && !event.shiftKey) {
64
61
  event.preventDefault();
@@ -66,7 +63,7 @@ export const MessageBar = (_a) => {
66
63
  handleSend();
67
64
  }
68
65
  }
69
- }, [handleSend]);
66
+ }, [handleSend, isSendButtonDisabled, handleStopButton]);
70
67
  const handleAttachMenuToggle = () => {
71
68
  (attachMenuProps === null || attachMenuProps === void 0 ? void 0 : attachMenuProps.setIsAttachMenuOpen) && (attachMenuProps === null || attachMenuProps === void 0 ? void 0 : attachMenuProps.setIsAttachMenuOpen(!(attachMenuProps === null || attachMenuProps === void 0 ? void 0 : attachMenuProps.isAttachMenuOpen)));
72
69
  attachMenuProps === null || attachMenuProps === void 0 ? void 0 : attachMenuProps.onAttachMenuToggleClick();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@patternfly/chatbot",
3
- "version": "2.2.0-prerelease.17",
3
+ "version": "2.2.0-prerelease.19",
4
4
  "description": "This library provides React components based on PatternFly 6 that can be used to build chatbots.",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -12,11 +12,13 @@ It is important to leverage AI in a way that improves the experiences of your us
12
12
 
13
13
  _Only use this ChatBot when it adds value to your users' experiences._ Don't use it simply for the sake of novelty—your users will only be excited to interact with a new ChatBot feature if it directly helps them reach their goals.
14
14
 
15
- ## How to use the ChatBot
15
+ ## ChatBot demos
16
16
 
17
- To illustrate the capabilities of the ChatBot, we offer a few demos:
17
+ To illustrate the capabilities of the ChatBot, including more complex interaction patterns, we've created these demos:
18
18
  - [Basic ChatBot](/patternfly-ai/chatbot/overview/demo#basic-chatbot)
19
19
  - [Embedded ChatBot](/patternfly-ai/chatbot/overview/demo#embedded-chatbot)
20
+ - [Comparing ChatBots](/patternfly-ai/chatbot/overview/demo/#comparing-chatbots)
21
+ - [Message feedback](/patternfly-ai/chatbot/messages/demo#message-feedback)
20
22
  - [ChatBot attachments via file upload](/patternfly-ai/chatbot/messages/demo#attach-via-upload-button-in-message-bar)
21
23
  - [ChatBot attachments via built-in menu](/patternfly-ai/chatbot/messages/demo#attach-via-menu-of-options-in-message-bar)
22
24
 
@@ -31,6 +33,7 @@ Explore our documentation, which covers both ChatBot UI components and message-r
31
33
  - [Header](/patternfly-ai/chatbot/ui#header)
32
34
  - [Footer](/patternfly-ai/chatbot/ui#footer)
33
35
  - [Navigation](/patternfly-ai/chatbot/ui#navigation)
36
+ - [Modals](/patternfly-ai/chatbot/ui#modals)
34
37
  - Messages
35
38
  - [Bot and user messages](/patternfly-ai/chatbot/messages)
36
39
  - [File attachments](/patternfly-ai/chatbot/messages#attachments)
@@ -8,16 +8,16 @@ source: design-guidelines
8
8
 
9
9
  import "./images.css"
10
10
 
11
- ## Elements
11
+ ## Elements
12
12
 
13
- <div class="ws-docs-content-img">
13
+ <div class="ws-docs-content-img" >
14
14
  ![Main elements of a ChatBot.](./img/chatbot-elements.svg)
15
15
  </div>
16
16
 
17
17
  1. **Container:** The window that contains the entire ChatBot experience and all of its components.
18
18
  1. **Header:** A persistent region at the top of the ChatBot window that contains navigation, branding, and actions.
19
19
  1. **Navigation:** A menu that contains navigational options, including access to the conversation history.
20
- 1. **Options menu:** Contains display options and other settings. More details can be found in the [ChatBot variations section](#variations).
20
+ 1. **Options menu:** A menu that contains settings that are relevant to your product. This typically includes display options (more details in the [ChatBot variations section](#variations)) and other general settings (more details in the [ChatBot settings and preferences section](#chatbot-settings-and-preferences)).
21
21
  1. **Messages:** Elements of the conversation between a ChatBot and user. More details can be found in the [message guidelines](#messages).
22
22
  1. **Attachments:** Details about files that a user has uploaded to the ChatBot.
23
23
  1. **Footer:** A persistent region at the bottom of the ChatBot window that contains the message bar and the footnote.
@@ -37,9 +37,26 @@ import "./images.css"
37
37
  1. **Timestamp:** The relative or absolute time that a message was sent.
38
38
  1. **Label:** Labels ChatBot messages as "AI."
39
39
  1. **Quick responses:** Programmable, clickable actions that allow users to quickly answer questions from the ChatBot.
40
- 1. **Sources:** Cards that link to documentation or other external resources. When multiple sources are included, users can paginate through the different options.
41
40
  1. **Response actions:** Actions that allow users to interact with a bot message. these typically include providing feedback, copying, sharing, or reading aloud, but [custom message actions](/patternfly-ai/chatbot/messages#custom-message-actions) are also supported.
42
41
 
42
+ #### Source tiles
43
+
44
+ A ChatBot can share relevant sources with users, like documentation that could provide the information a user is searching for. These sources will be contained in a single tile, which users can paginate through and select to navigate to other resources.
45
+
46
+ To provide users with enough context, sources should have descriptive titles and descriptions. The title is limited to 1 line and the body is limited to 2 lines.
47
+
48
+ <div class="ws-docs-content-img">
49
+ ![Bot message that include multiple source tiles.](./img/source-tile.svg)
50
+ </div>
51
+
52
+ #### Quick start tiles
53
+
54
+ A ChatBot can share a link to a [quick start](/extensions/quick-starts) that will help users complete a given task. Users can either select **Start** or the tile's title to initiate the linked quick start.
55
+
56
+ <div class="ws-docs-content-img">
57
+ ![Bot message that links a quick start tile.](./img/chatbot-quickstarts-tile.svg)
58
+ </div>
59
+
43
60
  ### Message bar
44
61
 
45
62
  To message the ChatBot, users can type directly into the message bar in the footer or click any included actions.
@@ -126,6 +143,12 @@ When there is an unread message from the ChatBot, a notification badge should be
126
143
  ![Toggle with notification badge.](./img/chatbot-toggle-notification.svg)
127
144
  </div>
128
145
 
146
+ If necessary for brand consistency, you can customize the toggle shape and icon.
147
+
148
+ <div class="ws-docs-content-img">
149
+ ![Different toggle shapes and icons.](./img/toggle-customizations.svg)
150
+ </div>
151
+
129
152
  ### Using the navigation menu
130
153
 
131
154
  The ChatBot navigation menu primarily contains a users' conversation history with the ChatBot. Clicking the menu icon opens a side drawer in the ChatBot window.
@@ -136,6 +159,20 @@ By clicking into the navigation menu, users can search through previous conversa
136
159
  ![Conversation history with an options menu opened on a previous conversation.](./img/conversation-history.svg)
137
160
  </div>
138
161
 
162
+ ### ChatBot settings and preferences
163
+
164
+ Users can access ChatBot settings and preferences via the options menu.
165
+
166
+ <div class="ws-docs-content-img">
167
+ ![ChatBot options menu dropdown.](./img/settings-menu.svg)
168
+ </div>
169
+
170
+ Within the settings menu, users can select their preferences for a variety of ChatBot features, like theme or language. You can also support additional content management here, like adding or deleting chats. This menu can be customized to meet the needs of your ChatBot's users.
171
+
172
+ <div class="ws-docs-content-img">
173
+ ![ChatBot global settings menu.](./img/chatbot-settings.svg)
174
+ </div>
175
+
139
176
  ### Attaching files
140
177
 
141
178
  Using [the attach button](/patternfly-ai/chatbot/overview/design-guidelines#message-bar) in the message bar, users can [attach files](/patternfly-ai/chatbot/messages#file-attachments) to their message to share with the ChatBot.
@@ -126,7 +126,7 @@ export const ChatbotMessageBarDefaultAttachExample: React.FunctionComponent = ()
126
126
  return (
127
127
  <>
128
128
  {/* this is required for react-dropzone to work in Safari and Firefox */}
129
- <input {...getInputProps()} />
129
+ <input {...getInputProps()} hidden />
130
130
  <MessageBar
131
131
  onSendMessage={handleSend}
132
132
  attachMenuProps={{
@@ -209,7 +209,7 @@ export const AttachmentMenuDemo: React.FunctionComponent = () => {
209
209
  return (
210
210
  <>
211
211
  {/* this is required for react-dropzone to work in Safari and Firefox */}
212
- <input {...getInputProps()} />
212
+ <input {...getInputProps()} hidden />
213
213
  <ChatbotToggle
214
214
  tooltipLabel="Chatbot"
215
215
  isChatbotVisible={chatbotVisible}
@@ -1,46 +1,41 @@
1
- <svg width="346" height="155" viewBox="0 0 346 155" fill="none" xmlns="http://www.w3.org/2000/svg">
1
+ <svg width="480" height="181" viewBox="0 0 480 181" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="480" height="181" fill="#F2F2F2"/>
2
3
  <g clip-path="url(#clip0_329_54389)">
3
- <rect width="346" height="155" fill="white"/>
4
4
  <g clip-path="url(#clip1_329_54389)">
5
- <g clip-path="url(#clip2_329_54389)">
6
- <circle cx="43" cy="35" r="24" fill="#F2F2F2"/>
7
- <mask id="mask0_329_54389" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="19" y="11" width="48" height="48">
8
- <circle cx="43" cy="35" r="24" fill="white"/>
5
+ <circle cx="48" cy="44" r="24" fill="#F2F2F2"/>
6
+ <mask id="mask0_329_54389" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="24" y="20" width="48" height="48">
7
+ <circle cx="48" cy="44" r="24" fill="white"/>
9
8
  </mask>
10
9
  <g mask="url(#mask0_329_54389)">
11
- <path fill-rule="evenodd" clip-rule="evenodd" d="M42.5255 37.8076C37.8588 37.8076 33.9922 33.9422 33.9922 29.2772C33.9922 24.6121 37.8588 20.7468 42.5255 20.7468C47.1921 20.7468 51.0588 24.6121 51.0588 29.2772C51.0588 33.9422 47.3255 37.8076 42.5255 37.8076Z" fill="#C7C7C7"/>
12
- <path d="M36.6573 58.9849V50.0547C33.9906 50.5878 32.7906 51.9207 32.524 54.7197L32.3906 58.9849H36.6573Z" fill="#C7C7C7"/>
13
- <path d="M32.3916 59L32.525 54.7348C32.7916 51.9358 33.9916 50.6029 36.6583 50.0698V59H49.1916V50.0698C51.8582 50.6029 53.0582 51.9358 53.3249 54.7348L53.4582 59H59.7249C59.1915 53.8018 57.9915 47.0042 55.8582 44.3384C54.3915 42.4724 52.7916 41.4061 51.1916 40.873C49.5916 40.3398 48.7916 40.0732 42.7916 40.0732C36.7916 40.0732 34.6583 41.0063 34.6583 41.0063C33.0583 41.5394 31.4583 42.6057 30.125 44.4717C27.8583 47.0042 26.6583 53.9351 26.125 59H32.3916Z" fill="#C7C7C7"/>
14
- <path d="M53.4594 58.9849L53.3261 54.7197C53.0594 51.9207 51.8594 50.5878 49.1927 50.0547V58.9849H53.4594Z" fill="#C7C7C7"/>
15
- <path d="M66.5 34.9918C66.5 47.9657 55.9789 58.4835 43 58.4835C30.0211 58.4835 19.5 47.9657 19.5 34.9918C19.5 22.0178 30.0211 11.5 43 11.5C55.9789 11.5 66.5 22.0178 66.5 34.9918Z" stroke="#C7C7C7"/>
16
- </g>
10
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M47.5255 46.8073C42.8588 46.8073 38.9922 42.942 38.9922 38.2769C38.9922 33.6119 42.8588 29.7466 47.5255 29.7466C52.1921 29.7466 56.0588 33.6119 56.0588 38.2769C56.0588 42.942 52.3255 46.8073 47.5255 46.8073Z" fill="#C7C7C7"/>
11
+ <path d="M41.6573 67.9849V59.0547C38.9906 59.5878 37.7906 60.9207 37.524 63.7197L37.3906 67.9849H41.6573Z" fill="#C7C7C7"/>
12
+ <path d="M37.3916 68L37.525 63.7348C37.7916 60.9358 38.9916 59.6029 41.6583 59.0698V68H54.1916V59.0698C56.8582 59.6029 58.0582 60.9358 58.3249 63.7348L58.4582 68H64.7249C64.1915 62.8018 62.9915 56.0042 60.8582 53.3384C59.3915 51.4724 57.7916 50.4061 56.1916 49.873C54.5916 49.3398 53.7916 49.0732 47.7916 49.0732C41.7916 49.0732 39.6583 50.0063 39.6583 50.0063C38.0583 50.5394 36.4583 51.6057 35.125 53.4717C32.8583 56.0042 31.6583 62.9351 31.125 68H37.3916Z" fill="#C7C7C7"/>
13
+ <path d="M58.4594 67.9849L58.326 63.7197C58.0594 60.9207 56.8594 59.5878 54.1927 59.0547V67.9849H58.4594Z" fill="#C7C7C7"/>
14
+ <path d="M71.5 43.9918C71.5 56.9657 60.9789 67.4835 48 67.4835C35.0211 67.4835 24.5 56.9657 24.5 43.9918C24.5 31.0178 35.0211 20.5 48 20.5C60.9789 20.5 71.5 31.0178 71.5 43.9918Z" stroke="#C7C7C7"/>
17
15
  </g>
18
16
  </g>
19
- <path d="M96.096 26.154C95.2653 26.154 94.5373 25.9767 93.912 25.622C93.296 25.2673 92.82 24.7633 92.484 24.11C92.148 23.4567 91.98 22.6867 91.98 21.8V16.2H93.66V21.8C93.66 22.3787 93.758 22.878 93.954 23.298C94.1593 23.718 94.444 24.0493 94.808 24.292C95.172 24.5253 95.6013 24.642 96.096 24.642C96.5907 24.642 97.02 24.5253 97.384 24.292C97.7573 24.0493 98.042 23.718 98.238 23.298C98.434 22.878 98.532 22.3787 98.532 21.8V16.2H100.212V21.8C100.212 22.6867 100.044 23.4567 99.708 24.11C99.3813 24.7633 98.91 25.2673 98.294 25.622C97.678 25.9767 96.9453 26.154 96.096 26.154ZM104.614 26.14C104.017 26.14 103.457 26.0607 102.934 25.902C102.421 25.734 101.977 25.496 101.604 25.188L102.346 24.138C102.813 24.4273 103.214 24.6327 103.55 24.754C103.895 24.8753 104.245 24.936 104.6 24.936C105.02 24.936 105.361 24.8473 105.622 24.67C105.883 24.4927 106.014 24.264 106.014 23.984C106.014 23.7693 105.935 23.6013 105.776 23.48C105.627 23.3493 105.379 23.2513 105.034 23.186L103.802 22.976C103.121 22.8453 102.612 22.6213 102.276 22.304C101.94 21.9867 101.772 21.5667 101.772 21.044C101.772 20.6053 101.884 20.2273 102.108 19.91C102.341 19.5833 102.659 19.3313 103.06 19.154C103.471 18.9673 103.947 18.874 104.488 18.874C104.973 18.874 105.445 18.944 105.902 19.084C106.359 19.224 106.807 19.434 107.246 19.714L106.504 20.764C106.149 20.5307 105.795 20.3627 105.44 20.26C105.095 20.148 104.745 20.092 104.39 20.092C104.026 20.092 103.732 20.1667 103.508 20.316C103.293 20.456 103.186 20.652 103.186 20.904C103.186 21.128 103.256 21.3007 103.396 21.422C103.545 21.534 103.802 21.618 104.166 21.674L105.412 21.912C106.112 22.0333 106.63 22.2573 106.966 22.584C107.311 22.9013 107.484 23.326 107.484 23.858C107.484 24.2873 107.358 24.6747 107.106 25.02C106.854 25.3653 106.513 25.6407 106.084 25.846C105.655 26.042 105.165 26.14 104.614 26.14ZM112.263 26.14C111.591 26.14 110.985 25.9813 110.443 25.664C109.902 25.3373 109.473 24.9033 109.155 24.362C108.838 23.8113 108.679 23.1907 108.679 22.5C108.679 21.8093 108.829 21.1933 109.127 20.652C109.426 20.1107 109.832 19.6813 110.345 19.364C110.868 19.0373 111.447 18.874 112.081 18.874C112.735 18.874 113.309 19.0327 113.803 19.35C114.307 19.6673 114.699 20.0967 114.979 20.638C115.269 21.1793 115.413 21.8 115.413 22.5V22.878H110.233C110.289 23.2607 110.411 23.6013 110.597 23.9C110.793 24.1893 111.041 24.418 111.339 24.586C111.647 24.754 111.979 24.838 112.333 24.838C112.66 24.838 112.968 24.782 113.257 24.67C113.556 24.5487 113.803 24.3853 113.999 24.18L115.035 25.118C114.606 25.4727 114.167 25.734 113.719 25.902C113.281 26.0607 112.795 26.14 112.263 26.14ZM110.247 21.898H113.915C113.859 21.562 113.743 21.2633 113.565 21.002C113.397 20.7407 113.183 20.5353 112.921 20.386C112.669 20.2367 112.389 20.162 112.081 20.162C111.773 20.162 111.489 20.2367 111.227 20.386C110.975 20.526 110.765 20.7267 110.597 20.988C110.429 21.2493 110.313 21.5527 110.247 21.898ZM117.027 26V18.986H118.609V20.498C118.814 19.966 119.08 19.56 119.407 19.28C119.734 19 120.112 18.86 120.541 18.86C120.672 18.8693 120.788 18.8833 120.891 18.902C120.994 18.9113 121.106 18.944 121.227 19V20.386C121.106 20.33 120.966 20.288 120.807 20.26C120.658 20.232 120.508 20.218 120.359 20.218C119.976 20.218 119.631 20.3207 119.323 20.526C119.024 20.7313 118.786 21.016 118.609 21.38V26H117.027Z" fill="#151515"/>
20
- <path d="M131.836 25.5V18.036L130.492 18.636V17.844L132.16 17.1H132.7V25.5H131.836ZM135.18 25.596C135.004 25.596 134.852 25.532 134.724 25.404C134.604 25.276 134.544 25.124 134.544 24.948C134.544 24.764 134.604 24.612 134.724 24.492C134.852 24.364 135.004 24.3 135.18 24.3C135.356 24.3 135.504 24.364 135.624 24.492C135.752 24.612 135.816 24.764 135.816 24.948C135.816 25.124 135.752 25.276 135.624 25.404C135.504 25.532 135.356 25.596 135.18 25.596ZM135.18 20.832C135.004 20.832 134.852 20.768 134.724 20.64C134.604 20.512 134.544 20.36 134.544 20.184C134.544 20 134.604 19.848 134.724 19.728C134.852 19.6 135.004 19.536 135.18 19.536C135.356 19.536 135.504 19.6 135.624 19.728C135.752 19.848 135.816 20 135.816 20.184C135.816 20.36 135.752 20.512 135.624 20.64C135.504 20.768 135.356 20.832 135.18 20.832ZM140.064 25.632C139.488 25.632 138.948 25.532 138.444 25.332C137.948 25.132 137.508 24.836 137.124 24.444L137.7 23.88C138.052 24.232 138.412 24.488 138.78 24.648C139.156 24.8 139.58 24.876 140.052 24.876C140.46 24.876 140.82 24.804 141.132 24.66C141.452 24.516 141.7 24.316 141.876 24.06C142.052 23.804 142.14 23.512 142.14 23.184C142.14 22.872 142.06 22.596 141.9 22.356C141.748 22.108 141.536 21.916 141.264 21.78C140.992 21.644 140.68 21.576 140.328 21.576H139.332V20.832H140.292C140.748 20.832 141.116 20.692 141.396 20.412C141.684 20.132 141.828 19.768 141.828 19.32C141.828 19.024 141.748 18.756 141.588 18.516C141.428 18.276 141.208 18.088 140.928 17.952C140.656 17.808 140.348 17.736 140.004 17.736C139.572 17.736 139.184 17.816 138.84 17.976C138.504 18.128 138.16 18.388 137.808 18.756L137.232 18.18C137.608 17.78 138.032 17.48 138.504 17.28C138.976 17.072 139.48 16.968 140.016 16.968C140.528 16.968 140.984 17.068 141.384 17.268C141.792 17.468 142.112 17.744 142.344 18.096C142.576 18.44 142.692 18.832 142.692 19.272C142.692 19.712 142.548 20.108 142.26 20.46C141.972 20.804 141.592 21.044 141.12 21.18C141.688 21.308 142.144 21.556 142.488 21.924C142.832 22.292 143.004 22.72 143.004 23.208C143.004 23.672 142.876 24.088 142.62 24.456C142.372 24.824 142.024 25.112 141.576 25.32C141.136 25.528 140.632 25.632 140.064 25.632ZM147.554 25.632C146.914 25.632 146.346 25.448 145.85 25.08C145.362 24.712 144.978 24.204 144.698 23.556C144.418 22.9 144.278 22.148 144.278 21.3C144.278 20.444 144.418 19.692 144.698 19.044C144.978 18.396 145.362 17.888 145.85 17.52C146.346 17.152 146.914 16.968 147.554 16.968C148.194 16.968 148.758 17.152 149.246 17.52C149.742 17.888 150.13 18.396 150.41 19.044C150.69 19.692 150.83 20.444 150.83 21.3C150.83 22.148 150.69 22.9 150.41 23.556C150.13 24.204 149.742 24.712 149.246 25.08C148.758 25.448 148.194 25.632 147.554 25.632ZM147.554 24.852C148.042 24.852 148.462 24.708 148.814 24.42C149.174 24.124 149.454 23.712 149.654 23.184C149.854 22.648 149.954 22.02 149.954 21.3C149.954 20.58 149.854 19.956 149.654 19.428C149.454 18.892 149.174 18.48 148.814 18.192C148.462 17.896 148.042 17.748 147.554 17.748C147.074 17.748 146.654 17.896 146.294 18.192C145.934 18.48 145.654 18.892 145.454 19.428C145.254 19.956 145.154 20.58 145.154 21.3C145.154 22.02 145.254 22.648 145.454 23.184C145.654 23.712 145.934 24.124 146.294 24.42C146.654 24.708 147.074 24.852 147.554 24.852ZM155.384 25.5V17.1H158.852C159.396 17.1 159.868 17.204 160.268 17.412C160.668 17.612 160.976 17.9 161.192 18.276C161.416 18.644 161.528 19.08 161.528 19.584C161.528 20.08 161.416 20.516 161.192 20.892C160.976 21.268 160.668 21.56 160.268 21.768C159.868 21.968 159.396 22.068 158.852 22.068H156.308V25.5H155.384ZM156.308 21.276H158.744C159.328 21.276 159.784 21.124 160.112 20.82C160.44 20.516 160.604 20.104 160.604 19.584C160.604 19.064 160.44 18.656 160.112 18.36C159.784 18.064 159.328 17.916 158.744 17.916H156.308V21.276ZM163.236 25.5V17.1H164.52L167.328 23.076L170.136 17.1H171.42V25.5H170.544V18.192L167.328 24.9L164.1 18.168V25.5H163.236Z" fill="#151515"/>
21
- <path d="M91 46C91 42.6863 93.6863 40 97 40H308C311.314 40 314 42.6863 314 46V74C314 77.3137 311.314 80 308 80H97C93.6863 80 91 77.3137 91 74V46Z" fill="#0066CC"/>
22
- <path d="M100.408 66V54.8H101.64V59.808H108.072V54.8H109.304V66H108.072V60.912H101.64V66H100.408ZM115.439 66.16C114.713 66.16 114.057 65.984 113.471 65.632C112.884 65.2693 112.42 64.784 112.079 64.176C111.737 63.5573 111.567 62.864 111.567 62.096C111.567 61.328 111.727 60.64 112.047 60.032C112.377 59.424 112.82 58.944 113.375 58.592C113.929 58.24 114.548 58.064 115.231 58.064C115.924 58.064 116.537 58.24 117.071 58.592C117.615 58.9333 118.041 59.4027 118.351 60C118.671 60.5867 118.831 61.2533 118.831 62V62.352H112.703C112.745 62.8853 112.889 63.3653 113.135 63.792C113.391 64.208 113.721 64.5387 114.127 64.784C114.543 65.0187 114.996 65.136 115.487 65.136C115.892 65.136 116.281 65.0667 116.655 64.928C117.039 64.7787 117.364 64.5813 117.631 64.336L118.367 65.12C117.919 65.472 117.455 65.7333 116.975 65.904C116.495 66.0747 115.983 66.16 115.439 66.16ZM112.735 61.52H117.679C117.625 61.0507 117.481 60.6347 117.247 60.272C117.023 59.8987 116.735 59.6053 116.383 59.392C116.041 59.1787 115.657 59.072 115.231 59.072C114.804 59.072 114.415 59.1787 114.063 59.392C113.711 59.5947 113.417 59.8827 113.183 60.256C112.959 60.6187 112.809 61.04 112.735 61.52ZM120.825 66V58.192H121.993V59.792C122.196 59.248 122.484 58.8267 122.857 58.528C123.241 58.2187 123.678 58.064 124.169 58.064C124.308 58.064 124.436 58.0747 124.553 58.096C124.67 58.1067 124.788 58.1333 124.905 58.176V59.232C124.777 59.1893 124.638 59.1573 124.489 59.136C124.35 59.104 124.217 59.088 124.089 59.088C123.609 59.088 123.188 59.2267 122.825 59.504C122.473 59.7813 122.196 60.1707 121.993 60.672V66H120.825ZM129.486 66.16C128.76 66.16 128.104 65.984 127.518 65.632C126.931 65.2693 126.467 64.784 126.126 64.176C125.784 63.5573 125.614 62.864 125.614 62.096C125.614 61.328 125.774 60.64 126.094 60.032C126.424 59.424 126.867 58.944 127.422 58.592C127.976 58.24 128.595 58.064 129.278 58.064C129.971 58.064 130.584 58.24 131.118 58.592C131.662 58.9333 132.088 59.4027 132.398 60C132.718 60.5867 132.878 61.2533 132.878 62V62.352H126.75C126.792 62.8853 126.936 63.3653 127.182 63.792C127.438 64.208 127.768 64.5387 128.174 64.784C128.59 65.0187 129.043 65.136 129.534 65.136C129.939 65.136 130.328 65.0667 130.702 64.928C131.086 64.7787 131.411 64.5813 131.678 64.336L132.414 65.12C131.966 65.472 131.502 65.7333 131.022 65.904C130.542 66.0747 130.03 66.16 129.486 66.16ZM126.782 61.52H131.726C131.672 61.0507 131.528 60.6347 131.294 60.272C131.07 59.8987 130.782 59.6053 130.43 59.392C130.088 59.1787 129.704 59.072 129.278 59.072C128.851 59.072 128.462 59.1787 128.11 59.392C127.758 59.5947 127.464 59.8827 127.23 60.256C127.006 60.6187 126.856 61.04 126.782 61.52ZM138.59 66V58.192H139.758V66H138.59ZM139.182 56.256C138.948 56.256 138.745 56.176 138.574 56.016C138.414 55.8453 138.334 55.648 138.334 55.424C138.334 55.2 138.414 55.008 138.574 54.848C138.745 54.6773 138.948 54.592 139.182 54.592C139.417 54.592 139.614 54.6773 139.774 54.848C139.945 55.008 140.03 55.2 140.03 55.424C140.03 55.648 139.945 55.8453 139.774 56.016C139.614 56.176 139.417 56.256 139.182 56.256ZM144.569 66.16C143.929 66.16 143.337 66.064 142.793 65.872C142.249 65.6693 141.785 65.3813 141.401 65.008L142.025 64.24C142.494 64.5813 142.926 64.832 143.321 64.992C143.716 65.1413 144.121 65.216 144.537 65.216C145.102 65.216 145.572 65.0827 145.945 64.816C146.318 64.5493 146.505 64.208 146.505 63.792C146.505 63.472 146.393 63.2213 146.169 63.04C145.956 62.8587 145.598 62.72 145.097 62.624L143.817 62.4C143.06 62.2613 142.5 62.0267 142.137 61.696C141.785 61.3653 141.609 60.9173 141.609 60.352C141.609 59.904 141.726 59.5093 141.961 59.168C142.206 58.8267 142.542 58.56 142.969 58.368C143.396 58.1653 143.881 58.064 144.425 58.064C144.958 58.064 145.465 58.144 145.945 58.304C146.425 58.4533 146.91 58.6987 147.401 59.04L146.825 59.856C146.42 59.568 146.014 59.36 145.609 59.232C145.204 59.0933 144.793 59.024 144.377 59.024C143.865 59.024 143.454 59.136 143.145 59.36C142.836 59.584 142.681 59.888 142.681 60.272C142.681 60.592 142.777 60.8373 142.969 61.008C143.172 61.1787 143.524 61.3067 144.025 61.392L145.337 61.632C146.126 61.7707 146.702 62.0107 147.065 62.352C147.428 62.6933 147.609 63.152 147.609 63.728C147.609 64.1867 147.476 64.6027 147.209 64.976C146.942 65.3387 146.58 65.6267 146.121 65.84C145.662 66.0533 145.145 66.16 144.569 66.16ZM153.122 66V58.192H154.29V59.408C154.589 58.96 154.93 58.624 155.314 58.4C155.698 58.176 156.13 58.064 156.61 58.064C157.165 58.064 157.65 58.2027 158.066 58.48C158.482 58.7467 158.797 59.1147 159.01 59.584C159.319 59.0827 159.687 58.704 160.114 58.448C160.551 58.192 161.053 58.064 161.618 58.064C162.141 58.064 162.599 58.1867 162.994 58.432C163.399 58.6773 163.714 59.0187 163.938 59.456C164.162 59.8827 164.274 60.384 164.274 60.96V66H163.106V61.248C163.106 60.5653 162.935 60.0267 162.594 59.632C162.253 59.2373 161.783 59.04 161.186 59.04C160.781 59.04 160.413 59.1413 160.082 59.344C159.762 59.5467 159.479 59.856 159.234 60.272C159.255 60.3787 159.271 60.4907 159.282 60.608C159.293 60.7253 159.298 60.8427 159.298 60.96V66H158.13V61.248C158.13 60.5653 157.954 60.0267 157.602 59.632C157.261 59.2373 156.791 59.04 156.194 59.04C155.394 59.04 154.759 59.424 154.29 60.192V66H153.122ZM166.817 69.504C166.572 69.504 166.321 69.4667 166.065 69.392V68.352C166.172 68.3733 166.284 68.3893 166.401 68.4C166.519 68.4107 166.62 68.416 166.705 68.416C167.004 68.416 167.249 68.336 167.441 68.176C167.644 68.016 167.815 67.7653 167.953 67.424L168.529 66L165.521 58.192H166.817L169.185 64.608L171.697 58.192H172.993L169.057 67.776C168.887 68.192 168.7 68.528 168.497 68.784C168.295 69.04 168.06 69.2213 167.793 69.328C167.527 69.4453 167.201 69.504 166.817 69.504ZM180.6 66.144C180.046 66.144 179.555 66.0427 179.128 65.84C178.702 65.6373 178.366 65.36 178.12 65.008C177.886 64.6453 177.768 64.2293 177.768 63.76C177.768 63.2907 177.891 62.8853 178.136 62.544C178.382 62.192 178.723 61.92 179.16 61.728C179.598 61.536 180.11 61.44 180.696 61.44C181.144 61.44 181.566 61.488 181.96 61.584C182.366 61.68 182.739 61.8347 183.08 62.048V60.976C183.08 60.336 182.91 59.856 182.568 59.536C182.227 59.2053 181.726 59.04 181.064 59.04C180.702 59.04 180.328 59.0933 179.944 59.2C179.571 59.3067 179.155 59.4773 178.696 59.712L178.264 58.816C179.31 58.3147 180.291 58.064 181.208 58.064C182.179 58.064 182.926 58.304 183.448 58.784C183.971 59.2533 184.232 59.9307 184.232 60.816V66H183.08V65.088C182.739 65.44 182.36 65.7067 181.944 65.888C181.528 66.0587 181.08 66.144 180.6 66.144ZM178.888 63.728C178.888 64.1867 179.064 64.5547 179.416 64.832C179.779 65.1093 180.254 65.248 180.84 65.248C181.278 65.248 181.678 65.1733 182.04 65.024C182.414 64.8747 182.76 64.6507 183.08 64.352V62.848C182.75 62.656 182.408 62.5173 182.056 62.432C181.704 62.336 181.31 62.288 180.872 62.288C180.275 62.288 179.795 62.4213 179.432 62.688C179.07 62.944 178.888 63.2907 178.888 63.728ZM189.312 66.128C188.757 66.128 188.267 66.0053 187.84 65.76C187.413 65.5147 187.077 65.1733 186.832 64.736C186.597 64.2987 186.48 63.7973 186.48 63.232V58.192H187.664V62.896C187.664 63.5893 187.851 64.1387 188.224 64.544C188.597 64.9493 189.104 65.152 189.744 65.152C190.181 65.152 190.571 65.0507 190.912 64.848C191.264 64.6453 191.557 64.352 191.792 63.968V58.192H192.96V66H191.792V64.736C191.493 65.1947 191.136 65.5413 190.72 65.776C190.315 66.0107 189.845 66.128 189.312 66.128ZM198.332 66.16C197.66 66.16 197.148 66 196.796 65.68C196.455 65.3493 196.284 64.8747 196.284 64.256V59.152H194.668V58.192H196.284V56.048L197.452 55.776V58.192H199.692V59.152H197.452V63.952C197.452 64.368 197.538 64.6667 197.708 64.848C197.89 65.0293 198.183 65.12 198.588 65.12C198.791 65.12 198.972 65.104 199.132 65.072C199.292 65.04 199.479 64.9867 199.692 64.912V65.952C199.479 66.0267 199.255 66.08 199.02 66.112C198.786 66.144 198.556 66.16 198.332 66.16ZM201.403 66V54.448L202.571 54.208V59.456C202.87 58.9867 203.227 58.64 203.643 58.416C204.059 58.1813 204.528 58.064 205.051 58.064C205.616 58.064 206.107 58.1867 206.523 58.432C206.95 58.6667 207.28 59.0027 207.515 59.44C207.76 59.8667 207.883 60.368 207.883 60.944V66H206.715V61.28C206.715 60.5867 206.523 60.0427 206.139 59.648C205.766 59.2427 205.259 59.04 204.619 59.04C204.192 59.04 203.803 59.1413 203.451 59.344C203.099 59.5467 202.806 59.8453 202.571 60.24V66H201.403ZM213.751 66.16C213.026 66.16 212.37 65.984 211.783 65.632C211.197 65.2693 210.733 64.784 210.391 64.176C210.05 63.5573 209.879 62.864 209.879 62.096C209.879 61.328 210.039 60.64 210.359 60.032C210.69 59.424 211.133 58.944 211.687 58.592C212.242 58.24 212.861 58.064 213.543 58.064C214.237 58.064 214.85 58.24 215.383 58.592C215.927 58.9333 216.354 59.4027 216.663 60C216.983 60.5867 217.143 61.2533 217.143 62V62.352H211.015C211.058 62.8853 211.202 63.3653 211.447 63.792C211.703 64.208 212.034 64.5387 212.439 64.784C212.855 65.0187 213.309 65.136 213.799 65.136C214.205 65.136 214.594 65.0667 214.967 64.928C215.351 64.7787 215.677 64.5813 215.943 64.336L216.679 65.12C216.231 65.472 215.767 65.7333 215.287 65.904C214.807 66.0747 214.295 66.16 213.751 66.16ZM211.047 61.52H215.991C215.938 61.0507 215.794 60.6347 215.559 60.272C215.335 59.8987 215.047 59.6053 214.695 59.392C214.354 59.1787 213.97 59.072 213.543 59.072C213.117 59.072 212.727 59.1787 212.375 59.392C212.023 59.5947 211.73 59.8827 211.495 60.256C211.271 60.6187 211.122 61.04 211.047 61.52ZM219.138 66V58.192H220.306V59.456C220.604 58.9867 220.962 58.64 221.378 58.416C221.794 58.1813 222.263 58.064 222.786 58.064C223.351 58.064 223.842 58.1867 224.258 58.432C224.684 58.6667 225.015 59.0027 225.25 59.44C225.495 59.8667 225.618 60.368 225.618 60.944V66H224.45V61.28C224.45 60.5867 224.258 60.0427 223.874 59.648C223.5 59.2427 222.994 59.04 222.354 59.04C221.927 59.04 221.538 59.1413 221.186 59.344C220.834 59.5467 220.54 59.8453 220.306 60.24V66H219.138ZM230.707 66.16C230.035 66.16 229.523 66 229.171 65.68C228.83 65.3493 228.659 64.8747 228.659 64.256V59.152H227.043V58.192H228.659V56.048L229.827 55.776V58.192H232.067V59.152H229.827V63.952C229.827 64.368 229.913 64.6667 230.083 64.848C230.265 65.0293 230.558 65.12 230.963 65.12C231.166 65.12 231.347 65.104 231.507 65.072C231.667 65.04 231.854 64.9867 232.067 64.912V65.952C231.854 66.0267 231.63 66.08 231.395 66.112C231.161 66.144 230.931 66.16 230.707 66.16ZM233.762 66V58.192H234.93V66H233.762ZM234.354 56.256C234.119 56.256 233.917 56.176 233.746 56.016C233.586 55.8453 233.506 55.648 233.506 55.424C233.506 55.2 233.586 55.008 233.746 54.848C233.917 54.6773 234.119 54.592 234.354 54.592C234.589 54.592 234.786 54.6773 234.946 54.848C235.117 55.008 235.202 55.2 235.202 55.424C235.202 55.648 235.117 55.8453 234.946 56.016C234.786 56.176 234.589 56.256 234.354 56.256ZM240.829 66.128C240.104 66.128 239.448 65.952 238.861 65.6C238.285 65.2373 237.826 64.752 237.485 64.144C237.144 63.5253 236.973 62.8427 236.973 62.096C236.973 61.3387 237.144 60.656 237.485 60.048C237.826 59.44 238.285 58.96 238.861 58.608C239.448 58.2453 240.104 58.064 240.829 58.064C241.405 58.064 241.954 58.1707 242.477 58.384C243 58.5973 243.453 58.896 243.837 59.28L243.085 60.096C242.808 59.7867 242.472 59.5467 242.077 59.376C241.682 59.2053 241.282 59.12 240.877 59.12C240.365 59.12 239.901 59.2533 239.485 59.52C239.08 59.7867 238.754 60.144 238.509 60.592C238.264 61.04 238.141 61.5413 238.141 62.096C238.141 62.6507 238.264 63.152 238.509 63.6C238.754 64.048 239.08 64.4053 239.485 64.672C239.901 64.9387 240.365 65.072 240.877 65.072C241.282 65.072 241.682 64.9867 242.077 64.816C242.472 64.6347 242.808 64.3947 243.085 64.096L243.837 64.912C243.453 65.296 243 65.5947 242.477 65.808C241.954 66.0213 241.405 66.128 240.829 66.128ZM247.882 66.144C247.327 66.144 246.836 66.0427 246.41 65.84C245.983 65.6373 245.647 65.36 245.402 65.008C245.167 64.6453 245.05 64.2293 245.05 63.76C245.05 63.2907 245.172 62.8853 245.418 62.544C245.663 62.192 246.004 61.92 246.442 61.728C246.879 61.536 247.391 61.44 247.978 61.44C248.426 61.44 248.847 61.488 249.242 61.584C249.647 61.68 250.02 61.8347 250.362 62.048V60.976C250.362 60.336 250.191 59.856 249.85 59.536C249.508 59.2053 249.007 59.04 248.346 59.04C247.983 59.04 247.61 59.0933 247.226 59.2C246.852 59.3067 246.436 59.4773 245.978 59.712L245.546 58.816C246.591 58.3147 247.572 58.064 248.49 58.064C249.46 58.064 250.207 58.304 250.73 58.784C251.252 59.2533 251.514 59.9307 251.514 60.816V66H250.362V65.088C250.02 65.44 249.642 65.7067 249.226 65.888C248.81 66.0587 248.362 66.144 247.882 66.144ZM246.17 63.728C246.17 64.1867 246.346 64.5547 246.698 64.832C247.06 65.1093 247.535 65.248 248.122 65.248C248.559 65.248 248.959 65.1733 249.322 65.024C249.695 64.8747 250.042 64.6507 250.362 64.352V62.848C250.031 62.656 249.69 62.5173 249.338 62.432C248.986 62.336 248.591 62.288 248.154 62.288C247.556 62.288 247.076 62.4213 246.714 62.688C246.351 62.944 246.17 63.2907 246.17 63.728ZM256.629 66.16C255.957 66.16 255.445 66 255.093 65.68C254.752 65.3493 254.581 64.8747 254.581 64.256V59.152H252.965V58.192H254.581V56.048L255.749 55.776V58.192H257.989V59.152H255.749V63.952C255.749 64.368 255.834 64.6667 256.005 64.848C256.186 65.0293 256.48 65.12 256.885 65.12C257.088 65.12 257.269 65.104 257.429 65.072C257.589 65.04 257.776 64.9867 257.989 64.912V65.952C257.776 66.0267 257.552 66.08 257.317 66.112C257.082 66.144 256.853 66.16 256.629 66.16ZM259.684 66V58.192H260.852V66H259.684ZM260.276 56.256C260.041 56.256 259.839 56.176 259.668 56.016C259.508 55.8453 259.428 55.648 259.428 55.424C259.428 55.2 259.508 55.008 259.668 54.848C259.839 54.6773 260.041 54.592 260.276 54.592C260.511 54.592 260.708 54.6773 260.868 54.848C261.039 55.008 261.124 55.2 261.124 55.424C261.124 55.648 261.039 55.8453 260.868 56.016C260.708 56.176 260.511 56.256 260.276 56.256ZM266.703 66.128C265.978 66.128 265.327 65.952 264.751 65.6C264.175 65.248 263.722 64.768 263.391 64.16C263.06 63.552 262.895 62.864 262.895 62.096C262.895 61.328 263.06 60.64 263.391 60.032C263.722 59.424 264.175 58.944 264.751 58.592C265.327 58.24 265.978 58.064 266.703 58.064C267.418 58.064 268.058 58.24 268.623 58.592C269.199 58.944 269.652 59.424 269.983 60.032C270.314 60.64 270.479 61.328 270.479 62.096C270.479 62.864 270.314 63.552 269.983 64.16C269.652 64.768 269.199 65.248 268.623 65.6C268.058 65.952 267.418 66.128 266.703 66.128ZM266.687 65.104C267.199 65.104 267.652 64.976 268.047 64.72C268.442 64.4533 268.751 64.0907 268.975 63.632C269.21 63.1733 269.327 62.6613 269.327 62.096C269.327 61.52 269.21 61.008 268.975 60.56C268.751 60.1013 268.442 59.744 268.047 59.488C267.652 59.2213 267.199 59.088 266.687 59.088C266.175 59.088 265.722 59.2213 265.327 59.488C264.932 59.744 264.618 60.1013 264.383 60.56C264.159 61.008 264.047 61.52 264.047 62.096C264.047 62.6613 264.159 63.1733 264.383 63.632C264.618 64.0907 264.932 64.4533 265.327 64.72C265.722 64.976 266.175 65.104 266.687 65.104ZM272.528 66V58.192H273.696V59.456C273.995 58.9867 274.352 58.64 274.768 58.416C275.184 58.1813 275.653 58.064 276.176 58.064C276.741 58.064 277.232 58.1867 277.648 58.432C278.075 58.6667 278.405 59.0027 278.64 59.44C278.885 59.8667 279.008 60.368 279.008 60.944V66H277.84V61.28C277.84 60.5867 277.648 60.0427 277.264 59.648C276.891 59.2427 276.384 59.04 275.744 59.04C275.317 59.04 274.928 59.1413 274.576 59.344C274.224 59.5467 273.931 59.8453 273.696 60.24V66H272.528ZM286.083 66V59.152H284.339V58.192H286.083V56.56C286.083 55.792 286.285 55.2 286.691 54.784C287.096 54.368 287.672 54.16 288.419 54.16C288.632 54.16 288.824 54.1707 288.995 54.192C289.176 54.2133 289.336 54.2507 289.475 54.304V55.36C289.304 55.3067 289.149 55.2693 289.011 55.248C288.872 55.2267 288.712 55.216 288.531 55.216C288.083 55.216 287.757 55.328 287.555 55.552C287.352 55.7653 287.251 56.1067 287.251 56.576V58.192H289.475V59.152H287.251V66H286.083ZM290.997 66V58.192H292.164V66H290.997ZM291.589 56.256C291.354 56.256 291.151 56.176 290.981 56.016C290.821 55.8453 290.741 55.648 290.741 55.424C290.741 55.2 290.821 55.008 290.981 54.848C291.151 54.6773 291.354 54.592 291.589 54.592C291.823 54.592 292.021 54.6773 292.181 54.848C292.351 55.008 292.437 55.2 292.437 55.424C292.437 55.648 292.351 55.8453 292.181 56.016C292.021 56.176 291.823 56.256 291.589 56.256ZM294.559 66V54.448L295.727 54.208V66H294.559ZM301.642 66.16C300.917 66.16 300.261 65.984 299.674 65.632C299.087 65.2693 298.623 64.784 298.282 64.176C297.941 63.5573 297.77 62.864 297.77 62.096C297.77 61.328 297.93 60.64 298.25 60.032C298.581 59.424 299.023 58.944 299.578 58.592C300.133 58.24 300.751 58.064 301.434 58.064C302.127 58.064 302.741 58.24 303.274 58.592C303.818 58.9333 304.245 59.4027 304.554 60C304.874 60.5867 305.034 61.2533 305.034 62V62.352H298.906C298.949 62.8853 299.093 63.3653 299.338 63.792C299.594 64.208 299.925 64.5387 300.33 64.784C300.746 65.0187 301.199 65.136 301.69 65.136C302.095 65.136 302.485 65.0667 302.858 64.928C303.242 64.7787 303.567 64.5813 303.834 64.336L304.57 65.12C304.122 65.472 303.658 65.7333 303.178 65.904C302.698 66.0747 302.186 66.16 301.642 66.16ZM298.938 61.52H303.882C303.829 61.0507 303.685 60.6347 303.45 60.272C303.226 59.8987 302.938 59.6053 302.586 59.392C302.245 59.1787 301.861 59.072 301.434 59.072C301.007 59.072 300.618 59.1787 300.266 59.392C299.914 59.5947 299.621 59.8827 299.386 60.256C299.162 60.6187 299.013 61.04 298.938 61.52Z" fill="white"/>
23
- <path d="M91 94C91 90.6863 93.6863 88 97 88H283C286.314 88 289 90.6863 289 94V137C289 140.314 286.314 143 283 143H97C93.6863 143 91 140.314 91 137V94Z" fill="white"/>
24
- <path d="M107 107.5C107 105.291 108.791 103.5 111 103.5H127C129.209 103.5 131 105.291 131 107.5V123.5C131 125.709 129.209 127.5 127 127.5H111C108.791 127.5 107 125.709 107 123.5V107.5Z" fill="#147878"/>
25
- <g clip-path="url(#clip3_329_54389)">
26
- <path d="M120.82 109.13C120.395 109.007 119.952 109.255 119.83 109.68L116.63 120.88C116.507 121.305 116.755 121.747 117.18 121.87C117.605 121.992 118.047 121.745 118.17 121.32L121.37 110.12C121.492 109.695 121.245 109.252 120.82 109.13ZM122.835 112.132C122.522 112.445 122.522 112.952 122.835 113.265L125.067 115.5L122.832 117.735C122.52 118.047 122.52 118.555 122.832 118.867C123.145 119.18 123.652 119.18 123.965 118.867L126.765 116.067C127.077 115.755 127.077 115.247 126.765 114.935L123.965 112.135C123.652 111.822 123.145 111.822 122.832 112.135L122.835 112.132ZM115.167 112.132C114.855 111.82 114.347 111.82 114.035 112.132L111.235 114.932C110.922 115.245 110.922 115.752 111.235 116.065L114.035 118.865C114.347 119.177 114.855 119.177 115.167 118.865C115.48 118.552 115.48 118.045 115.167 117.732L112.932 115.5L115.167 113.265C115.48 112.952 115.48 112.445 115.167 112.132Z" fill="white"/>
27
17
  </g>
28
- <path d="M142.164 111.126C141.679 111.126 141.249 111.037 140.876 110.86C140.503 110.683 140.209 110.44 139.994 110.132C139.789 109.815 139.686 109.451 139.686 109.04C139.686 108.629 139.793 108.275 140.008 107.976C140.223 107.668 140.521 107.43 140.904 107.262C141.287 107.094 141.735 107.01 142.248 107.01C142.64 107.01 143.009 107.052 143.354 107.136C143.709 107.22 144.035 107.355 144.334 107.542V106.604C144.334 106.044 144.185 105.624 143.886 105.344C143.587 105.055 143.149 104.91 142.57 104.91C142.253 104.91 141.926 104.957 141.59 105.05C141.263 105.143 140.899 105.293 140.498 105.498L140.12 104.714C141.035 104.275 141.893 104.056 142.696 104.056C143.545 104.056 144.199 104.266 144.656 104.686C145.113 105.097 145.342 105.689 145.342 106.464V111H144.334V110.202C144.035 110.51 143.704 110.743 143.34 110.902C142.976 111.051 142.584 111.126 142.164 111.126ZM140.666 109.012C140.666 109.413 140.82 109.735 141.128 109.978C141.445 110.221 141.861 110.342 142.374 110.342C142.757 110.342 143.107 110.277 143.424 110.146C143.751 110.015 144.054 109.819 144.334 109.558V108.242C144.045 108.074 143.746 107.953 143.438 107.878C143.13 107.794 142.785 107.752 142.402 107.752C141.879 107.752 141.459 107.869 141.142 108.102C140.825 108.326 140.666 108.629 140.666 109.012ZM149.787 111.112C149.301 111.112 148.872 111.005 148.499 110.79C148.125 110.575 147.831 110.277 147.617 109.894C147.411 109.511 147.309 109.073 147.309 108.578V104.168H148.345V108.284C148.345 108.891 148.508 109.371 148.835 109.726C149.161 110.081 149.605 110.258 150.165 110.258C150.547 110.258 150.888 110.169 151.187 109.992C151.495 109.815 151.751 109.558 151.957 109.222V104.168H152.979V111H151.957V109.894C151.695 110.295 151.383 110.599 151.019 110.804C150.664 111.009 150.253 111.112 149.787 111.112ZM157.679 111.14C157.091 111.14 156.643 111 156.335 110.72C156.037 110.431 155.887 110.015 155.887 109.474V105.008H154.473V104.168H155.887V102.292L156.909 102.054V104.168H158.869V105.008H156.909V109.208C156.909 109.572 156.984 109.833 157.133 109.992C157.292 110.151 157.549 110.23 157.903 110.23C158.081 110.23 158.239 110.216 158.379 110.188C158.519 110.16 158.683 110.113 158.869 110.048V110.958C158.683 111.023 158.487 111.07 158.281 111.098C158.076 111.126 157.875 111.14 157.679 111.14ZM160.366 111V100.892L161.388 100.682V105.274C161.65 104.863 161.962 104.56 162.326 104.364C162.69 104.159 163.101 104.056 163.558 104.056C164.053 104.056 164.482 104.163 164.846 104.378C165.22 104.583 165.509 104.877 165.714 105.26C165.929 105.633 166.036 106.072 166.036 106.576V111H165.014V106.87C165.014 106.263 164.846 105.787 164.51 105.442C164.184 105.087 163.74 104.91 163.18 104.91C162.807 104.91 162.466 104.999 162.158 105.176C161.85 105.353 161.594 105.615 161.388 105.96V111H160.366ZM167.895 107.5V106.618H172.557V107.5H167.895ZM177.623 111.112C176.988 111.112 176.419 110.958 175.915 110.65C175.411 110.342 175.014 109.922 174.725 109.39C174.435 108.858 174.291 108.256 174.291 107.584C174.291 106.912 174.435 106.31 174.725 105.778C175.014 105.246 175.411 104.826 175.915 104.518C176.419 104.21 176.988 104.056 177.623 104.056C178.248 104.056 178.808 104.21 179.303 104.518C179.807 104.826 180.203 105.246 180.493 105.778C180.782 106.31 180.927 106.912 180.927 107.584C180.927 108.256 180.782 108.858 180.493 109.39C180.203 109.922 179.807 110.342 179.303 110.65C178.808 110.958 178.248 111.112 177.623 111.112ZM177.609 110.216C178.057 110.216 178.453 110.104 178.799 109.88C179.144 109.647 179.415 109.329 179.611 108.928C179.816 108.527 179.919 108.079 179.919 107.584C179.919 107.08 179.816 106.632 179.611 106.24C179.415 105.839 179.144 105.526 178.799 105.302C178.453 105.069 178.057 104.952 177.609 104.952C177.161 104.952 176.764 105.069 176.419 105.302C176.073 105.526 175.798 105.839 175.593 106.24C175.397 106.632 175.299 107.08 175.299 107.584C175.299 108.079 175.397 108.527 175.593 108.928C175.798 109.329 176.073 109.647 176.419 109.88C176.764 110.104 177.161 110.216 177.609 110.216ZM182.72 113.926V104.168H183.728V105.148C183.989 104.803 184.307 104.541 184.68 104.364C185.063 104.177 185.483 104.084 185.94 104.084C186.537 104.084 187.069 104.243 187.536 104.56C188.012 104.868 188.39 105.288 188.67 105.82C188.95 106.343 189.09 106.931 189.09 107.584C189.09 108.237 188.945 108.83 188.656 109.362C188.376 109.894 187.993 110.319 187.508 110.636C187.032 110.944 186.491 111.098 185.884 111.098C185.455 111.098 185.058 111.019 184.694 110.86C184.33 110.692 184.013 110.454 183.742 110.146V113.926H182.72ZM185.688 110.216C186.145 110.216 186.551 110.104 186.906 109.88C187.27 109.647 187.555 109.334 187.76 108.942C187.975 108.541 188.082 108.093 188.082 107.598C188.082 107.094 187.975 106.646 187.76 106.254C187.555 105.862 187.27 105.554 186.906 105.33C186.551 105.097 186.145 104.98 185.688 104.98C185.287 104.98 184.913 105.064 184.568 105.232C184.232 105.391 183.957 105.619 183.742 105.918V109.264C183.966 109.563 184.246 109.796 184.582 109.964C184.927 110.132 185.296 110.216 185.688 110.216ZM193.962 111.14C193.327 111.14 192.753 110.986 192.24 110.678C191.727 110.361 191.321 109.936 191.022 109.404C190.723 108.863 190.574 108.256 190.574 107.584C190.574 106.912 190.714 106.31 190.994 105.778C191.283 105.246 191.671 104.826 192.156 104.518C192.641 104.21 193.183 104.056 193.78 104.056C194.387 104.056 194.923 104.21 195.39 104.518C195.866 104.817 196.239 105.227 196.51 105.75C196.79 106.263 196.93 106.847 196.93 107.5V107.808H191.568C191.605 108.275 191.731 108.695 191.946 109.068C192.17 109.432 192.459 109.721 192.814 109.936C193.178 110.141 193.575 110.244 194.004 110.244C194.359 110.244 194.699 110.183 195.026 110.062C195.362 109.931 195.647 109.759 195.88 109.544L196.524 110.23C196.132 110.538 195.726 110.767 195.306 110.916C194.886 111.065 194.438 111.14 193.962 111.14ZM191.596 107.08H195.922C195.875 106.669 195.749 106.305 195.544 105.988C195.348 105.661 195.096 105.405 194.788 105.218C194.489 105.031 194.153 104.938 193.78 104.938C193.407 104.938 193.066 105.031 192.758 105.218C192.45 105.395 192.193 105.647 191.988 105.974C191.792 106.291 191.661 106.66 191.596 107.08ZM198.675 111V104.168H199.697V105.568C199.874 105.092 200.126 104.723 200.453 104.462C200.789 104.191 201.172 104.056 201.601 104.056C201.722 104.056 201.834 104.065 201.937 104.084C202.04 104.093 202.142 104.117 202.245 104.154V105.078C202.133 105.041 202.012 105.013 201.881 104.994C201.76 104.966 201.643 104.952 201.531 104.952C201.111 104.952 200.742 105.073 200.425 105.316C200.117 105.559 199.874 105.899 199.697 106.338V111H198.675ZM205.424 111.126C204.938 111.126 204.509 111.037 204.136 110.86C203.762 110.683 203.468 110.44 203.254 110.132C203.048 109.815 202.946 109.451 202.946 109.04C202.946 108.629 203.053 108.275 203.268 107.976C203.482 107.668 203.781 107.43 204.164 107.262C204.546 107.094 204.994 107.01 205.508 107.01C205.9 107.01 206.268 107.052 206.614 107.136C206.968 107.22 207.295 107.355 207.594 107.542V106.604C207.594 106.044 207.444 105.624 207.146 105.344C206.847 105.055 206.408 104.91 205.83 104.91C205.512 104.91 205.186 104.957 204.85 105.05C204.523 105.143 204.159 105.293 203.758 105.498L203.38 104.714C204.294 104.275 205.153 104.056 205.956 104.056C206.805 104.056 207.458 104.266 207.916 104.686C208.373 105.097 208.602 105.689 208.602 106.464V111H207.594V110.202C207.295 110.51 206.964 110.743 206.6 110.902C206.236 111.051 205.844 111.126 205.424 111.126ZM203.926 109.012C203.926 109.413 204.08 109.735 204.388 109.978C204.705 110.221 205.12 110.342 205.634 110.342C206.016 110.342 206.366 110.277 206.684 110.146C207.01 110.015 207.314 109.819 207.594 109.558V108.242C207.304 108.074 207.006 107.953 206.698 107.878C206.39 107.794 206.044 107.752 205.662 107.752C205.139 107.752 204.719 107.869 204.402 108.102C204.084 108.326 203.926 108.629 203.926 109.012ZM213.078 111.14C212.49 111.14 212.042 111 211.734 110.72C211.435 110.431 211.286 110.015 211.286 109.474V105.008H209.872V104.168H211.286V102.292L212.308 102.054V104.168H214.268V105.008H212.308V109.208C212.308 109.572 212.382 109.833 212.532 109.992C212.69 110.151 212.947 110.23 213.302 110.23C213.479 110.23 213.638 110.216 213.778 110.188C213.918 110.16 214.081 110.113 214.268 110.048V110.958C214.081 111.023 213.885 111.07 213.68 111.098C213.474 111.126 213.274 111.14 213.078 111.14ZM218.652 111.112C218.017 111.112 217.448 110.958 216.944 110.65C216.44 110.342 216.043 109.922 215.754 109.39C215.465 108.858 215.32 108.256 215.32 107.584C215.32 106.912 215.465 106.31 215.754 105.778C216.043 105.246 216.44 104.826 216.944 104.518C217.448 104.21 218.017 104.056 218.652 104.056C219.277 104.056 219.837 104.21 220.332 104.518C220.836 104.826 221.233 105.246 221.522 105.778C221.811 106.31 221.956 106.912 221.956 107.584C221.956 108.256 221.811 108.858 221.522 109.39C221.233 109.922 220.836 110.342 220.332 110.65C219.837 110.958 219.277 111.112 218.652 111.112ZM218.638 110.216C219.086 110.216 219.483 110.104 219.828 109.88C220.173 109.647 220.444 109.329 220.64 108.928C220.845 108.527 220.948 108.079 220.948 107.584C220.948 107.08 220.845 106.632 220.64 106.24C220.444 105.839 220.173 105.526 219.828 105.302C219.483 105.069 219.086 104.952 218.638 104.952C218.19 104.952 217.793 105.069 217.448 105.302C217.103 105.526 216.827 105.839 216.622 106.24C216.426 106.632 216.328 107.08 216.328 107.584C216.328 108.079 216.426 108.527 216.622 108.928C216.827 109.329 217.103 109.647 217.448 109.88C217.793 110.104 218.19 110.216 218.638 110.216ZM223.749 111V104.168H224.771V105.568C224.949 105.092 225.201 104.723 225.527 104.462C225.863 104.191 226.246 104.056 226.675 104.056C226.797 104.056 226.909 104.065 227.011 104.084C227.114 104.093 227.217 104.117 227.319 104.154V105.078C227.207 105.041 227.086 105.013 226.955 104.994C226.834 104.966 226.717 104.952 226.605 104.952C226.185 104.952 225.817 105.073 225.499 105.316C225.191 105.559 224.949 105.899 224.771 106.338V111H223.749Z" fill="#151515"/>
29
- <path d="M142.408 130V126.688L139.072 121.6H140.74L143.164 125.44L145.612 121.6H147.184L143.848 126.688V130H142.408ZM145.963 130L149.263 121.6H150.931L154.183 130H152.635L151.771 127.648H148.327L147.463 130H145.963ZM148.747 126.52H151.375L150.055 122.968L148.747 126.52ZM155.266 130V121.6H157.138L159.598 126.7L162.046 121.6H163.918V130H162.562V123.424L159.586 129.4L156.598 123.388V130H155.266ZM165.93 130V121.6H167.37V128.752H171.846V130H165.93Z" fill="#151515"/>
30
- <path fill-rule="evenodd" clip-rule="evenodd" d="M258.333 119.922L258.922 119.333C259.248 119.007 259.248 118.479 258.922 118.153L256.269 115.5L258.922 112.847C259.248 112.521 259.248 111.993 258.922 111.667L258.333 111.077C258.007 110.752 257.479 110.752 257.153 111.077L254.5 113.731L251.847 111.077C251.521 110.752 250.993 110.752 250.667 111.077L250.078 111.667C249.752 111.993 249.752 112.521 250.078 112.847L252.731 115.5L250.078 118.153C249.752 118.479 249.752 119.007 250.078 119.333L250.667 119.922C250.993 120.248 251.521 120.248 251.847 119.922L254.5 117.269L257.153 119.922C257.479 120.248 258.007 120.248 258.333 119.922Z" fill="#1F1F1F"/>
18
+ <path d="M101.096 35.154C100.265 35.154 99.5373 34.9767 98.912 34.622C98.296 34.2673 97.82 33.7633 97.484 33.11C97.148 32.4567 96.98 31.6867 96.98 30.8V25.2H98.66V30.8C98.66 31.3787 98.758 31.878 98.954 32.298C99.1593 32.718 99.444 33.0493 99.808 33.292C100.172 33.5253 100.601 33.642 101.096 33.642C101.591 33.642 102.02 33.5253 102.384 33.292C102.757 33.0493 103.042 32.718 103.238 32.298C103.434 31.878 103.532 31.3787 103.532 30.8V25.2H105.212V30.8C105.212 31.6867 105.044 32.4567 104.708 33.11C104.381 33.7633 103.91 34.2673 103.294 34.622C102.678 34.9767 101.945 35.154 101.096 35.154ZM109.614 35.14C109.017 35.14 108.457 35.0607 107.934 34.902C107.421 34.734 106.977 34.496 106.604 34.188L107.346 33.138C107.813 33.4273 108.214 33.6327 108.55 33.754C108.895 33.8753 109.245 33.936 109.6 33.936C110.02 33.936 110.361 33.8473 110.622 33.67C110.883 33.4927 111.014 33.264 111.014 32.984C111.014 32.7693 110.935 32.6013 110.776 32.48C110.627 32.3493 110.379 32.2513 110.034 32.186L108.802 31.976C108.121 31.8453 107.612 31.6213 107.276 31.304C106.94 30.9867 106.772 30.5667 106.772 30.044C106.772 29.6053 106.884 29.2273 107.108 28.91C107.341 28.5833 107.659 28.3313 108.06 28.154C108.471 27.9673 108.947 27.874 109.488 27.874C109.973 27.874 110.445 27.944 110.902 28.084C111.359 28.224 111.807 28.434 112.246 28.714L111.504 29.764C111.149 29.5307 110.795 29.3627 110.44 29.26C110.095 29.148 109.745 29.092 109.39 29.092C109.026 29.092 108.732 29.1667 108.508 29.316C108.293 29.456 108.186 29.652 108.186 29.904C108.186 30.128 108.256 30.3007 108.396 30.422C108.545 30.534 108.802 30.618 109.166 30.674L110.412 30.912C111.112 31.0333 111.63 31.2573 111.966 31.584C112.311 31.9013 112.484 32.326 112.484 32.858C112.484 33.2873 112.358 33.6747 112.106 34.02C111.854 34.3653 111.513 34.6407 111.084 34.846C110.655 35.042 110.165 35.14 109.614 35.14ZM117.263 35.14C116.591 35.14 115.985 34.9813 115.443 34.664C114.902 34.3373 114.473 33.9033 114.155 33.362C113.838 32.8113 113.679 32.1907 113.679 31.5C113.679 30.8093 113.829 30.1933 114.127 29.652C114.426 29.1107 114.832 28.6813 115.345 28.364C115.868 28.0373 116.447 27.874 117.081 27.874C117.735 27.874 118.309 28.0327 118.803 28.35C119.307 28.6673 119.699 29.0967 119.979 29.638C120.269 30.1793 120.413 30.8 120.413 31.5V31.878H115.233C115.289 32.2607 115.411 32.6013 115.597 32.9C115.793 33.1893 116.041 33.418 116.339 33.586C116.647 33.754 116.979 33.838 117.333 33.838C117.66 33.838 117.968 33.782 118.257 33.67C118.556 33.5487 118.803 33.3853 118.999 33.18L120.035 34.118C119.606 34.4727 119.167 34.734 118.719 34.902C118.281 35.0607 117.795 35.14 117.263 35.14ZM115.247 30.898H118.915C118.859 30.562 118.743 30.2633 118.565 30.002C118.397 29.7407 118.183 29.5353 117.921 29.386C117.669 29.2367 117.389 29.162 117.081 29.162C116.773 29.162 116.489 29.2367 116.227 29.386C115.975 29.526 115.765 29.7267 115.597 29.988C115.429 30.2493 115.313 30.5527 115.247 30.898ZM122.027 35V27.986H123.609V29.498C123.814 28.966 124.08 28.56 124.407 28.28C124.734 28 125.112 27.86 125.541 27.86C125.672 27.8693 125.788 27.8833 125.891 27.902C125.994 27.9113 126.106 27.944 126.227 28V29.386C126.106 29.33 125.966 29.288 125.807 29.26C125.658 29.232 125.508 29.218 125.359 29.218C124.976 29.218 124.631 29.3207 124.323 29.526C124.024 29.7313 123.786 30.016 123.609 30.38V35H122.027Z" fill="#151515"/>
19
+ <path d="M136.836 34.5V27.036L135.492 27.636V26.844L137.16 26.1H137.7V34.5H136.836ZM140.18 34.596C140.004 34.596 139.852 34.532 139.724 34.404C139.604 34.276 139.544 34.124 139.544 33.948C139.544 33.764 139.604 33.612 139.724 33.492C139.852 33.364 140.004 33.3 140.18 33.3C140.356 33.3 140.504 33.364 140.624 33.492C140.752 33.612 140.816 33.764 140.816 33.948C140.816 34.124 140.752 34.276 140.624 34.404C140.504 34.532 140.356 34.596 140.18 34.596ZM140.18 29.832C140.004 29.832 139.852 29.768 139.724 29.64C139.604 29.512 139.544 29.36 139.544 29.184C139.544 29 139.604 28.848 139.724 28.728C139.852 28.6 140.004 28.536 140.18 28.536C140.356 28.536 140.504 28.6 140.624 28.728C140.752 28.848 140.816 29 140.816 29.184C140.816 29.36 140.752 29.512 140.624 29.64C140.504 29.768 140.356 29.832 140.18 29.832ZM145.064 34.632C144.488 34.632 143.948 34.532 143.444 34.332C142.948 34.132 142.508 33.836 142.124 33.444L142.7 32.88C143.052 33.232 143.412 33.488 143.78 33.648C144.156 33.8 144.58 33.876 145.052 33.876C145.46 33.876 145.82 33.804 146.132 33.66C146.452 33.516 146.7 33.316 146.876 33.06C147.052 32.804 147.14 32.512 147.14 32.184C147.14 31.872 147.06 31.596 146.9 31.356C146.748 31.108 146.536 30.916 146.264 30.78C145.992 30.644 145.68 30.576 145.328 30.576H144.332V29.832H145.292C145.748 29.832 146.116 29.692 146.396 29.412C146.684 29.132 146.828 28.768 146.828 28.32C146.828 28.024 146.748 27.756 146.588 27.516C146.428 27.276 146.208 27.088 145.928 26.952C145.656 26.808 145.348 26.736 145.004 26.736C144.572 26.736 144.184 26.816 143.84 26.976C143.504 27.128 143.16 27.388 142.808 27.756L142.232 27.18C142.608 26.78 143.032 26.48 143.504 26.28C143.976 26.072 144.48 25.968 145.016 25.968C145.528 25.968 145.984 26.068 146.384 26.268C146.792 26.468 147.112 26.744 147.344 27.096C147.576 27.44 147.692 27.832 147.692 28.272C147.692 28.712 147.548 29.108 147.26 29.46C146.972 29.804 146.592 30.044 146.12 30.18C146.688 30.308 147.144 30.556 147.488 30.924C147.832 31.292 148.004 31.72 148.004 32.208C148.004 32.672 147.876 33.088 147.62 33.456C147.372 33.824 147.024 34.112 146.576 34.32C146.136 34.528 145.632 34.632 145.064 34.632ZM152.554 34.632C151.914 34.632 151.346 34.448 150.85 34.08C150.362 33.712 149.978 33.204 149.698 32.556C149.418 31.9 149.278 31.148 149.278 30.3C149.278 29.444 149.418 28.692 149.698 28.044C149.978 27.396 150.362 26.888 150.85 26.52C151.346 26.152 151.914 25.968 152.554 25.968C153.194 25.968 153.758 26.152 154.246 26.52C154.742 26.888 155.13 27.396 155.41 28.044C155.69 28.692 155.83 29.444 155.83 30.3C155.83 31.148 155.69 31.9 155.41 32.556C155.13 33.204 154.742 33.712 154.246 34.08C153.758 34.448 153.194 34.632 152.554 34.632ZM152.554 33.852C153.042 33.852 153.462 33.708 153.814 33.42C154.174 33.124 154.454 32.712 154.654 32.184C154.854 31.648 154.954 31.02 154.954 30.3C154.954 29.58 154.854 28.956 154.654 28.428C154.454 27.892 154.174 27.48 153.814 27.192C153.462 26.896 153.042 26.748 152.554 26.748C152.074 26.748 151.654 26.896 151.294 27.192C150.934 27.48 150.654 27.892 150.454 28.428C150.254 28.956 150.154 29.58 150.154 30.3C150.154 31.02 150.254 31.648 150.454 32.184C150.654 32.712 150.934 33.124 151.294 33.42C151.654 33.708 152.074 33.852 152.554 33.852ZM160.384 34.5V26.1H163.852C164.396 26.1 164.868 26.204 165.268 26.412C165.668 26.612 165.976 26.9 166.192 27.276C166.416 27.644 166.528 28.08 166.528 28.584C166.528 29.08 166.416 29.516 166.192 29.892C165.976 30.268 165.668 30.56 165.268 30.768C164.868 30.968 164.396 31.068 163.852 31.068H161.308V34.5H160.384ZM161.308 30.276H163.744C164.328 30.276 164.784 30.124 165.112 29.82C165.44 29.516 165.604 29.104 165.604 28.584C165.604 28.064 165.44 27.656 165.112 27.36C164.784 27.064 164.328 26.916 163.744 26.916H161.308V30.276ZM168.236 34.5V26.1H169.52L172.328 32.076L175.136 26.1H176.42V34.5H175.544V27.192L172.328 33.9L169.1 27.168V34.5H168.236Z" fill="#151515"/>
20
+ <path d="M96 55C96 51.6863 98.6863 49 102 49H450C453.314 49 456 51.6863 456 55V83C456 86.3137 453.314 89 450 89H102C98.6863 89 96 86.3137 96 83V55Z" fill="#0066CC"/>
21
+ <path d="M105.408 75V63.8H106.64V68.808H113.072V63.8H114.304V75H113.072V69.912H106.64V75H105.408ZM120.439 75.16C119.713 75.16 119.057 74.984 118.471 74.632C117.884 74.2693 117.42 73.784 117.079 73.176C116.737 72.5573 116.567 71.864 116.567 71.096C116.567 70.328 116.727 69.64 117.047 69.032C117.377 68.424 117.82 67.944 118.375 67.592C118.929 67.24 119.548 67.064 120.231 67.064C120.924 67.064 121.537 67.24 122.071 67.592C122.615 67.9333 123.041 68.4027 123.351 69C123.671 69.5867 123.831 70.2533 123.831 71V71.352H117.703C117.745 71.8853 117.889 72.3653 118.135 72.792C118.391 73.208 118.721 73.5387 119.127 73.784C119.543 74.0187 119.996 74.136 120.487 74.136C120.892 74.136 121.281 74.0667 121.655 73.928C122.039 73.7787 122.364 73.5813 122.631 73.336L123.367 74.12C122.919 74.472 122.455 74.7333 121.975 74.904C121.495 75.0747 120.983 75.16 120.439 75.16ZM117.735 70.52H122.679C122.625 70.0507 122.481 69.6347 122.247 69.272C122.023 68.8987 121.735 68.6053 121.383 68.392C121.041 68.1787 120.657 68.072 120.231 68.072C119.804 68.072 119.415 68.1787 119.063 68.392C118.711 68.5947 118.417 68.8827 118.183 69.256C117.959 69.6187 117.809 70.04 117.735 70.52ZM125.825 75V67.192H126.993V68.792C127.196 68.248 127.484 67.8267 127.857 67.528C128.241 67.2187 128.678 67.064 129.169 67.064C129.308 67.064 129.436 67.0747 129.553 67.096C129.67 67.1067 129.788 67.1333 129.905 67.176V68.232C129.777 68.1893 129.638 68.1573 129.489 68.136C129.35 68.104 129.217 68.088 129.089 68.088C128.609 68.088 128.188 68.2267 127.825 68.504C127.473 68.7813 127.196 69.1707 126.993 69.672V75H125.825ZM134.486 75.16C133.76 75.16 133.104 74.984 132.518 74.632C131.931 74.2693 131.467 73.784 131.126 73.176C130.784 72.5573 130.614 71.864 130.614 71.096C130.614 70.328 130.774 69.64 131.094 69.032C131.424 68.424 131.867 67.944 132.422 67.592C132.976 67.24 133.595 67.064 134.278 67.064C134.971 67.064 135.584 67.24 136.118 67.592C136.662 67.9333 137.088 68.4027 137.398 69C137.718 69.5867 137.878 70.2533 137.878 71V71.352H131.75C131.792 71.8853 131.936 72.3653 132.182 72.792C132.438 73.208 132.768 73.5387 133.174 73.784C133.59 74.0187 134.043 74.136 134.534 74.136C134.939 74.136 135.328 74.0667 135.702 73.928C136.086 73.7787 136.411 73.5813 136.678 73.336L137.414 74.12C136.966 74.472 136.502 74.7333 136.022 74.904C135.542 75.0747 135.03 75.16 134.486 75.16ZM131.782 70.52H136.726C136.672 70.0507 136.528 69.6347 136.294 69.272C136.07 68.8987 135.782 68.6053 135.43 68.392C135.088 68.1787 134.704 68.072 134.278 68.072C133.851 68.072 133.462 68.1787 133.11 68.392C132.758 68.5947 132.464 68.8827 132.23 69.256C132.006 69.6187 131.856 70.04 131.782 70.52ZM143.59 75V67.192H144.758V75H143.59ZM144.182 65.256C143.948 65.256 143.745 65.176 143.574 65.016C143.414 64.8453 143.334 64.648 143.334 64.424C143.334 64.2 143.414 64.008 143.574 63.848C143.745 63.6773 143.948 63.592 144.182 63.592C144.417 63.592 144.614 63.6773 144.774 63.848C144.945 64.008 145.03 64.2 145.03 64.424C145.03 64.648 144.945 64.8453 144.774 65.016C144.614 65.176 144.417 65.256 144.182 65.256ZM149.569 75.16C148.929 75.16 148.337 75.064 147.793 74.872C147.249 74.6693 146.785 74.3813 146.401 74.008L147.025 73.24C147.494 73.5813 147.926 73.832 148.321 73.992C148.716 74.1413 149.121 74.216 149.537 74.216C150.102 74.216 150.572 74.0827 150.945 73.816C151.318 73.5493 151.505 73.208 151.505 72.792C151.505 72.472 151.393 72.2213 151.169 72.04C150.956 71.8587 150.598 71.72 150.097 71.624L148.817 71.4C148.06 71.2613 147.5 71.0267 147.137 70.696C146.785 70.3653 146.609 69.9173 146.609 69.352C146.609 68.904 146.726 68.5093 146.961 68.168C147.206 67.8267 147.542 67.56 147.969 67.368C148.396 67.1653 148.881 67.064 149.425 67.064C149.958 67.064 150.465 67.144 150.945 67.304C151.425 67.4533 151.91 67.6987 152.401 68.04L151.825 68.856C151.42 68.568 151.014 68.36 150.609 68.232C150.204 68.0933 149.793 68.024 149.377 68.024C148.865 68.024 148.454 68.136 148.145 68.36C147.836 68.584 147.681 68.888 147.681 69.272C147.681 69.592 147.777 69.8373 147.969 70.008C148.172 70.1787 148.524 70.3067 149.025 70.392L150.337 70.632C151.126 70.7707 151.702 71.0107 152.065 71.352C152.428 71.6933 152.609 72.152 152.609 72.728C152.609 73.1867 152.476 73.6027 152.209 73.976C151.942 74.3387 151.58 74.6267 151.121 74.84C150.662 75.0533 150.145 75.16 149.569 75.16ZM158.122 75V67.192H159.29V68.408C159.589 67.96 159.93 67.624 160.314 67.4C160.698 67.176 161.13 67.064 161.61 67.064C162.165 67.064 162.65 67.2027 163.066 67.48C163.482 67.7467 163.797 68.1147 164.01 68.584C164.319 68.0827 164.687 67.704 165.114 67.448C165.551 67.192 166.053 67.064 166.618 67.064C167.141 67.064 167.599 67.1867 167.994 67.432C168.399 67.6773 168.714 68.0187 168.938 68.456C169.162 68.8827 169.274 69.384 169.274 69.96V75H168.106V70.248C168.106 69.5653 167.935 69.0267 167.594 68.632C167.253 68.2373 166.783 68.04 166.186 68.04C165.781 68.04 165.413 68.1413 165.082 68.344C164.762 68.5467 164.479 68.856 164.234 69.272C164.255 69.3787 164.271 69.4907 164.282 69.608C164.293 69.7253 164.298 69.8427 164.298 69.96V75H163.13V70.248C163.13 69.5653 162.954 69.0267 162.602 68.632C162.261 68.2373 161.791 68.04 161.194 68.04C160.394 68.04 159.759 68.424 159.29 69.192V75H158.122ZM171.817 78.504C171.572 78.504 171.321 78.4667 171.065 78.392V77.352C171.172 77.3733 171.284 77.3893 171.401 77.4C171.519 77.4107 171.62 77.416 171.705 77.416C172.004 77.416 172.249 77.336 172.441 77.176C172.644 77.016 172.815 76.7653 172.953 76.424L173.529 75L170.521 67.192H171.817L174.185 73.608L176.697 67.192H177.993L174.057 76.776C173.887 77.192 173.7 77.528 173.497 77.784C173.295 78.04 173.06 78.2213 172.793 78.328C172.527 78.4453 172.201 78.504 171.817 78.504ZM185.6 75.144C185.046 75.144 184.555 75.0427 184.128 74.84C183.702 74.6373 183.366 74.36 183.12 74.008C182.886 73.6453 182.768 73.2293 182.768 72.76C182.768 72.2907 182.891 71.8853 183.136 71.544C183.382 71.192 183.723 70.92 184.16 70.728C184.598 70.536 185.11 70.44 185.696 70.44C186.144 70.44 186.566 70.488 186.96 70.584C187.366 70.68 187.739 70.8347 188.08 71.048V69.976C188.08 69.336 187.91 68.856 187.568 68.536C187.227 68.2053 186.726 68.04 186.064 68.04C185.702 68.04 185.328 68.0933 184.944 68.2C184.571 68.3067 184.155 68.4773 183.696 68.712L183.264 67.816C184.31 67.3147 185.291 67.064 186.208 67.064C187.179 67.064 187.926 67.304 188.448 67.784C188.971 68.2533 189.232 68.9307 189.232 69.816V75H188.08V74.088C187.739 74.44 187.36 74.7067 186.944 74.888C186.528 75.0587 186.08 75.144 185.6 75.144ZM183.888 72.728C183.888 73.1867 184.064 73.5547 184.416 73.832C184.779 74.1093 185.254 74.248 185.84 74.248C186.278 74.248 186.678 74.1733 187.04 74.024C187.414 73.8747 187.76 73.6507 188.08 73.352V71.848C187.75 71.656 187.408 71.5173 187.056 71.432C186.704 71.336 186.31 71.288 185.872 71.288C185.275 71.288 184.795 71.4213 184.432 71.688C184.07 71.944 183.888 72.2907 183.888 72.728ZM194.312 75.128C193.757 75.128 193.267 75.0053 192.84 74.76C192.413 74.5147 192.077 74.1733 191.832 73.736C191.597 73.2987 191.48 72.7973 191.48 72.232V67.192H192.664V71.896C192.664 72.5893 192.851 73.1387 193.224 73.544C193.597 73.9493 194.104 74.152 194.744 74.152C195.181 74.152 195.571 74.0507 195.912 73.848C196.264 73.6453 196.557 73.352 196.792 72.968V67.192H197.96V75H196.792V73.736C196.493 74.1947 196.136 74.5413 195.72 74.776C195.315 75.0107 194.845 75.128 194.312 75.128ZM203.332 75.16C202.66 75.16 202.148 75 201.796 74.68C201.455 74.3493 201.284 73.8747 201.284 73.256V68.152H199.668V67.192H201.284V65.048L202.452 64.776V67.192H204.692V68.152H202.452V72.952C202.452 73.368 202.538 73.6667 202.708 73.848C202.89 74.0293 203.183 74.12 203.588 74.12C203.791 74.12 203.972 74.104 204.132 74.072C204.292 74.04 204.479 73.9867 204.692 73.912V74.952C204.479 75.0267 204.255 75.08 204.02 75.112C203.786 75.144 203.556 75.16 203.332 75.16ZM206.403 75V63.448L207.571 63.208V68.456C207.87 67.9867 208.227 67.64 208.643 67.416C209.059 67.1813 209.528 67.064 210.051 67.064C210.616 67.064 211.107 67.1867 211.523 67.432C211.95 67.6667 212.28 68.0027 212.515 68.44C212.76 68.8667 212.883 69.368 212.883 69.944V75H211.715V70.28C211.715 69.5867 211.523 69.0427 211.139 68.648C210.766 68.2427 210.259 68.04 209.619 68.04C209.192 68.04 208.803 68.1413 208.451 68.344C208.099 68.5467 207.806 68.8453 207.571 69.24V75H206.403ZM218.751 75.16C218.026 75.16 217.37 74.984 216.783 74.632C216.197 74.2693 215.733 73.784 215.391 73.176C215.05 72.5573 214.879 71.864 214.879 71.096C214.879 70.328 215.039 69.64 215.359 69.032C215.69 68.424 216.133 67.944 216.687 67.592C217.242 67.24 217.861 67.064 218.543 67.064C219.237 67.064 219.85 67.24 220.383 67.592C220.927 67.9333 221.354 68.4027 221.663 69C221.983 69.5867 222.143 70.2533 222.143 71V71.352H216.015C216.058 71.8853 216.202 72.3653 216.447 72.792C216.703 73.208 217.034 73.5387 217.439 73.784C217.855 74.0187 218.309 74.136 218.799 74.136C219.205 74.136 219.594 74.0667 219.967 73.928C220.351 73.7787 220.677 73.5813 220.943 73.336L221.679 74.12C221.231 74.472 220.767 74.7333 220.287 74.904C219.807 75.0747 219.295 75.16 218.751 75.16ZM216.047 70.52H220.991C220.938 70.0507 220.794 69.6347 220.559 69.272C220.335 68.8987 220.047 68.6053 219.695 68.392C219.354 68.1787 218.97 68.072 218.543 68.072C218.117 68.072 217.727 68.1787 217.375 68.392C217.023 68.5947 216.73 68.8827 216.495 69.256C216.271 69.6187 216.122 70.04 216.047 70.52ZM224.138 75V67.192H225.306V68.456C225.604 67.9867 225.962 67.64 226.378 67.416C226.794 67.1813 227.263 67.064 227.786 67.064C228.351 67.064 228.842 67.1867 229.258 67.432C229.684 67.6667 230.015 68.0027 230.25 68.44C230.495 68.8667 230.618 69.368 230.618 69.944V75H229.45V70.28C229.45 69.5867 229.258 69.0427 228.874 68.648C228.5 68.2427 227.994 68.04 227.354 68.04C226.927 68.04 226.538 68.1413 226.186 68.344C225.834 68.5467 225.54 68.8453 225.306 69.24V75H224.138ZM235.707 75.16C235.035 75.16 234.523 75 234.171 74.68C233.83 74.3493 233.659 73.8747 233.659 73.256V68.152H232.043V67.192H233.659V65.048L234.827 64.776V67.192H237.067V68.152H234.827V72.952C234.827 73.368 234.913 73.6667 235.083 73.848C235.265 74.0293 235.558 74.12 235.963 74.12C236.166 74.12 236.347 74.104 236.507 74.072C236.667 74.04 236.854 73.9867 237.067 73.912V74.952C236.854 75.0267 236.63 75.08 236.395 75.112C236.161 75.144 235.931 75.16 235.707 75.16ZM238.762 75V67.192H239.93V75H238.762ZM239.354 65.256C239.119 65.256 238.917 65.176 238.746 65.016C238.586 64.8453 238.506 64.648 238.506 64.424C238.506 64.2 238.586 64.008 238.746 63.848C238.917 63.6773 239.119 63.592 239.354 63.592C239.589 63.592 239.786 63.6773 239.946 63.848C240.117 64.008 240.202 64.2 240.202 64.424C240.202 64.648 240.117 64.8453 239.946 65.016C239.786 65.176 239.589 65.256 239.354 65.256ZM245.829 75.128C245.104 75.128 244.448 74.952 243.861 74.6C243.285 74.2373 242.826 73.752 242.485 73.144C242.144 72.5253 241.973 71.8427 241.973 71.096C241.973 70.3387 242.144 69.656 242.485 69.048C242.826 68.44 243.285 67.96 243.861 67.608C244.448 67.2453 245.104 67.064 245.829 67.064C246.405 67.064 246.954 67.1707 247.477 67.384C248 67.5973 248.453 67.896 248.837 68.28L248.085 69.096C247.808 68.7867 247.472 68.5467 247.077 68.376C246.682 68.2053 246.282 68.12 245.877 68.12C245.365 68.12 244.901 68.2533 244.485 68.52C244.08 68.7867 243.754 69.144 243.509 69.592C243.264 70.04 243.141 70.5413 243.141 71.096C243.141 71.6507 243.264 72.152 243.509 72.6C243.754 73.048 244.08 73.4053 244.485 73.672C244.901 73.9387 245.365 74.072 245.877 74.072C246.282 74.072 246.682 73.9867 247.077 73.816C247.472 73.6347 247.808 73.3947 248.085 73.096L248.837 73.912C248.453 74.296 248 74.5947 247.477 74.808C246.954 75.0213 246.405 75.128 245.829 75.128ZM252.882 75.144C252.327 75.144 251.836 75.0427 251.41 74.84C250.983 74.6373 250.647 74.36 250.402 74.008C250.167 73.6453 250.05 73.2293 250.05 72.76C250.05 72.2907 250.172 71.8853 250.418 71.544C250.663 71.192 251.004 70.92 251.442 70.728C251.879 70.536 252.391 70.44 252.978 70.44C253.426 70.44 253.847 70.488 254.242 70.584C254.647 70.68 255.02 70.8347 255.362 71.048V69.976C255.362 69.336 255.191 68.856 254.85 68.536C254.508 68.2053 254.007 68.04 253.346 68.04C252.983 68.04 252.61 68.0933 252.226 68.2C251.852 68.3067 251.436 68.4773 250.978 68.712L250.546 67.816C251.591 67.3147 252.572 67.064 253.49 67.064C254.46 67.064 255.207 67.304 255.73 67.784C256.252 68.2533 256.514 68.9307 256.514 69.816V75H255.362V74.088C255.02 74.44 254.642 74.7067 254.226 74.888C253.81 75.0587 253.362 75.144 252.882 75.144ZM251.17 72.728C251.17 73.1867 251.346 73.5547 251.698 73.832C252.06 74.1093 252.535 74.248 253.122 74.248C253.559 74.248 253.959 74.1733 254.322 74.024C254.695 73.8747 255.042 73.6507 255.362 73.352V71.848C255.031 71.656 254.69 71.5173 254.338 71.432C253.986 71.336 253.591 71.288 253.154 71.288C252.556 71.288 252.076 71.4213 251.714 71.688C251.351 71.944 251.17 72.2907 251.17 72.728ZM261.629 75.16C260.957 75.16 260.445 75 260.093 74.68C259.752 74.3493 259.581 73.8747 259.581 73.256V68.152H257.965V67.192H259.581V65.048L260.749 64.776V67.192H262.989V68.152H260.749V72.952C260.749 73.368 260.834 73.6667 261.005 73.848C261.186 74.0293 261.48 74.12 261.885 74.12C262.088 74.12 262.269 74.104 262.429 74.072C262.589 74.04 262.776 73.9867 262.989 73.912V74.952C262.776 75.0267 262.552 75.08 262.317 75.112C262.082 75.144 261.853 75.16 261.629 75.16ZM264.684 75V67.192H265.852V75H264.684ZM265.276 65.256C265.041 65.256 264.839 65.176 264.668 65.016C264.508 64.8453 264.428 64.648 264.428 64.424C264.428 64.2 264.508 64.008 264.668 63.848C264.839 63.6773 265.041 63.592 265.276 63.592C265.511 63.592 265.708 63.6773 265.868 63.848C266.039 64.008 266.124 64.2 266.124 64.424C266.124 64.648 266.039 64.8453 265.868 65.016C265.708 65.176 265.511 65.256 265.276 65.256ZM271.703 75.128C270.978 75.128 270.327 74.952 269.751 74.6C269.175 74.248 268.722 73.768 268.391 73.16C268.06 72.552 267.895 71.864 267.895 71.096C267.895 70.328 268.06 69.64 268.391 69.032C268.722 68.424 269.175 67.944 269.751 67.592C270.327 67.24 270.978 67.064 271.703 67.064C272.418 67.064 273.058 67.24 273.623 67.592C274.199 67.944 274.652 68.424 274.983 69.032C275.314 69.64 275.479 70.328 275.479 71.096C275.479 71.864 275.314 72.552 274.983 73.16C274.652 73.768 274.199 74.248 273.623 74.6C273.058 74.952 272.418 75.128 271.703 75.128ZM271.687 74.104C272.199 74.104 272.652 73.976 273.047 73.72C273.442 73.4533 273.751 73.0907 273.975 72.632C274.21 72.1733 274.327 71.6613 274.327 71.096C274.327 70.52 274.21 70.008 273.975 69.56C273.751 69.1013 273.442 68.744 273.047 68.488C272.652 68.2213 272.199 68.088 271.687 68.088C271.175 68.088 270.722 68.2213 270.327 68.488C269.932 68.744 269.618 69.1013 269.383 69.56C269.159 70.008 269.047 70.52 269.047 71.096C269.047 71.6613 269.159 72.1733 269.383 72.632C269.618 73.0907 269.932 73.4533 270.327 73.72C270.722 73.976 271.175 74.104 271.687 74.104ZM277.528 75V67.192H278.696V68.456C278.995 67.9867 279.352 67.64 279.768 67.416C280.184 67.1813 280.653 67.064 281.176 67.064C281.741 67.064 282.232 67.1867 282.648 67.432C283.075 67.6667 283.405 68.0027 283.64 68.44C283.885 68.8667 284.008 69.368 284.008 69.944V75H282.84V70.28C282.84 69.5867 282.648 69.0427 282.264 68.648C281.891 68.2427 281.384 68.04 280.744 68.04C280.317 68.04 279.928 68.1413 279.576 68.344C279.224 68.5467 278.931 68.8453 278.696 69.24V75H277.528ZM291.083 75V68.152H289.339V67.192H291.083V65.56C291.083 64.792 291.285 64.2 291.691 63.784C292.096 63.368 292.672 63.16 293.419 63.16C293.632 63.16 293.824 63.1707 293.995 63.192C294.176 63.2133 294.336 63.2507 294.475 63.304V64.36C294.304 64.3067 294.149 64.2693 294.011 64.248C293.872 64.2267 293.712 64.216 293.531 64.216C293.083 64.216 292.757 64.328 292.555 64.552C292.352 64.7653 292.251 65.1067 292.251 65.576V67.192H294.475V68.152H292.251V75H291.083ZM295.997 75V67.192H297.164V75H295.997ZM296.589 65.256C296.354 65.256 296.151 65.176 295.981 65.016C295.821 64.8453 295.741 64.648 295.741 64.424C295.741 64.2 295.821 64.008 295.981 63.848C296.151 63.6773 296.354 63.592 296.589 63.592C296.823 63.592 297.021 63.6773 297.181 63.848C297.351 64.008 297.437 64.2 297.437 64.424C297.437 64.648 297.351 64.8453 297.181 65.016C297.021 65.176 296.823 65.256 296.589 65.256ZM299.559 75V63.448L300.727 63.208V75H299.559ZM306.642 75.16C305.917 75.16 305.261 74.984 304.674 74.632C304.087 74.2693 303.623 73.784 303.282 73.176C302.941 72.5573 302.77 71.864 302.77 71.096C302.77 70.328 302.93 69.64 303.25 69.032C303.581 68.424 304.023 67.944 304.578 67.592C305.133 67.24 305.751 67.064 306.434 67.064C307.127 67.064 307.741 67.24 308.274 67.592C308.818 67.9333 309.245 68.4027 309.554 69C309.874 69.5867 310.034 70.2533 310.034 71V71.352H303.906C303.949 71.8853 304.093 72.3653 304.338 72.792C304.594 73.208 304.925 73.5387 305.33 73.784C305.746 74.0187 306.199 74.136 306.69 74.136C307.095 74.136 307.485 74.0667 307.858 73.928C308.242 73.7787 308.567 73.5813 308.834 73.336L309.57 74.12C309.122 74.472 308.658 74.7333 308.178 74.904C307.698 75.0747 307.186 75.16 306.642 75.16ZM303.938 70.52H308.882C308.829 70.0507 308.685 69.6347 308.45 69.272C308.226 68.8987 307.938 68.6053 307.586 68.392C307.245 68.1787 306.861 68.072 306.434 68.072C306.007 68.072 305.618 68.1787 305.266 68.392C304.914 68.5947 304.621 68.8827 304.386 69.256C304.162 69.6187 304.013 70.04 303.938 70.52Z" fill="white"/>
22
+ <path d="M96 103C96 99.6863 98.6863 97 102 97H288C291.314 97 294 99.6863 294 103V146C294 149.314 291.314 152 288 152H102C98.6863 152 96 149.314 96 146V103Z" fill="white"/>
23
+ <path d="M112 116.5C112 114.291 113.791 112.5 116 112.5H132C134.209 112.5 136 114.291 136 116.5V132.5C136 134.709 134.209 136.5 132 136.5H116C113.791 136.5 112 134.709 112 132.5V116.5Z" fill="#147878"/>
24
+ <g clip-path="url(#clip2_329_54389)">
25
+ <path d="M125.82 118.13C125.395 118.007 124.953 118.255 124.83 118.68L121.63 129.88C121.507 130.305 121.755 130.747 122.18 130.87C122.605 130.992 123.047 130.745 123.17 130.32L126.37 119.12C126.492 118.695 126.245 118.252 125.82 118.13ZM127.835 121.132C127.523 121.445 127.523 121.952 127.835 122.265L130.067 124.5L127.832 126.735C127.52 127.047 127.52 127.555 127.832 127.867C128.145 128.18 128.652 128.18 128.965 127.867L131.765 125.067C132.077 124.755 132.077 124.247 131.765 123.935L128.965 121.135C128.652 120.822 128.145 120.822 127.832 121.135L127.835 121.132ZM120.168 121.132C119.855 120.82 119.347 120.82 119.035 121.132L116.235 123.932C115.922 124.245 115.922 124.752 116.235 125.065L119.035 127.865C119.347 128.177 119.855 128.177 120.168 127.865C120.48 127.552 120.48 127.045 120.168 126.732L117.932 124.5L120.168 122.265C120.48 121.952 120.48 121.445 120.168 121.132Z" fill="white"/>
31
26
  </g>
27
+ <path d="M147.164 120.126C146.679 120.126 146.249 120.037 145.876 119.86C145.503 119.683 145.209 119.44 144.994 119.132C144.789 118.815 144.686 118.451 144.686 118.04C144.686 117.629 144.793 117.275 145.008 116.976C145.223 116.668 145.521 116.43 145.904 116.262C146.287 116.094 146.735 116.01 147.248 116.01C147.64 116.01 148.009 116.052 148.354 116.136C148.709 116.22 149.035 116.355 149.334 116.542V115.604C149.334 115.044 149.185 114.624 148.886 114.344C148.587 114.055 148.149 113.91 147.57 113.91C147.253 113.91 146.926 113.957 146.59 114.05C146.263 114.143 145.899 114.293 145.498 114.498L145.12 113.714C146.035 113.275 146.893 113.056 147.696 113.056C148.545 113.056 149.199 113.266 149.656 113.686C150.113 114.097 150.342 114.689 150.342 115.464V120H149.334V119.202C149.035 119.51 148.704 119.743 148.34 119.902C147.976 120.051 147.584 120.126 147.164 120.126ZM145.666 118.012C145.666 118.413 145.82 118.735 146.128 118.978C146.445 119.221 146.861 119.342 147.374 119.342C147.757 119.342 148.107 119.277 148.424 119.146C148.751 119.015 149.054 118.819 149.334 118.558V117.242C149.045 117.074 148.746 116.953 148.438 116.878C148.13 116.794 147.785 116.752 147.402 116.752C146.879 116.752 146.459 116.869 146.142 117.102C145.825 117.326 145.666 117.629 145.666 118.012ZM154.787 120.112C154.301 120.112 153.872 120.005 153.499 119.79C153.125 119.575 152.831 119.277 152.617 118.894C152.411 118.511 152.309 118.073 152.309 117.578V113.168H153.345V117.284C153.345 117.891 153.508 118.371 153.835 118.726C154.161 119.081 154.605 119.258 155.165 119.258C155.547 119.258 155.888 119.169 156.187 118.992C156.495 118.815 156.751 118.558 156.957 118.222V113.168H157.979V120H156.957V118.894C156.695 119.295 156.383 119.599 156.019 119.804C155.664 120.009 155.253 120.112 154.787 120.112ZM162.679 120.14C162.091 120.14 161.643 120 161.335 119.72C161.037 119.431 160.887 119.015 160.887 118.474V114.008H159.473V113.168H160.887V111.292L161.909 111.054V113.168H163.869V114.008H161.909V118.208C161.909 118.572 161.984 118.833 162.133 118.992C162.292 119.151 162.549 119.23 162.903 119.23C163.081 119.23 163.239 119.216 163.379 119.188C163.519 119.16 163.683 119.113 163.869 119.048V119.958C163.683 120.023 163.487 120.07 163.281 120.098C163.076 120.126 162.875 120.14 162.679 120.14ZM165.366 120V109.892L166.388 109.682V114.274C166.65 113.863 166.962 113.56 167.326 113.364C167.69 113.159 168.101 113.056 168.558 113.056C169.053 113.056 169.482 113.163 169.846 113.378C170.22 113.583 170.509 113.877 170.714 114.26C170.929 114.633 171.036 115.072 171.036 115.576V120H170.014V115.87C170.014 115.263 169.846 114.787 169.51 114.442C169.184 114.087 168.74 113.91 168.18 113.91C167.807 113.91 167.466 113.999 167.158 114.176C166.85 114.353 166.594 114.615 166.388 114.96V120H165.366ZM172.895 116.5V115.618H177.557V116.5H172.895ZM182.623 120.112C181.988 120.112 181.419 119.958 180.915 119.65C180.411 119.342 180.014 118.922 179.725 118.39C179.435 117.858 179.291 117.256 179.291 116.584C179.291 115.912 179.435 115.31 179.725 114.778C180.014 114.246 180.411 113.826 180.915 113.518C181.419 113.21 181.988 113.056 182.623 113.056C183.248 113.056 183.808 113.21 184.303 113.518C184.807 113.826 185.203 114.246 185.493 114.778C185.782 115.31 185.927 115.912 185.927 116.584C185.927 117.256 185.782 117.858 185.493 118.39C185.203 118.922 184.807 119.342 184.303 119.65C183.808 119.958 183.248 120.112 182.623 120.112ZM182.609 119.216C183.057 119.216 183.453 119.104 183.799 118.88C184.144 118.647 184.415 118.329 184.611 117.928C184.816 117.527 184.919 117.079 184.919 116.584C184.919 116.08 184.816 115.632 184.611 115.24C184.415 114.839 184.144 114.526 183.799 114.302C183.453 114.069 183.057 113.952 182.609 113.952C182.161 113.952 181.764 114.069 181.419 114.302C181.073 114.526 180.798 114.839 180.593 115.24C180.397 115.632 180.299 116.08 180.299 116.584C180.299 117.079 180.397 117.527 180.593 117.928C180.798 118.329 181.073 118.647 181.419 118.88C181.764 119.104 182.161 119.216 182.609 119.216ZM187.72 122.926V113.168H188.728V114.148C188.989 113.803 189.307 113.541 189.68 113.364C190.063 113.177 190.483 113.084 190.94 113.084C191.537 113.084 192.069 113.243 192.536 113.56C193.012 113.868 193.39 114.288 193.67 114.82C193.95 115.343 194.09 115.931 194.09 116.584C194.09 117.237 193.945 117.83 193.656 118.362C193.376 118.894 192.993 119.319 192.508 119.636C192.032 119.944 191.491 120.098 190.884 120.098C190.455 120.098 190.058 120.019 189.694 119.86C189.33 119.692 189.013 119.454 188.742 119.146V122.926H187.72ZM190.688 119.216C191.145 119.216 191.551 119.104 191.906 118.88C192.27 118.647 192.555 118.334 192.76 117.942C192.975 117.541 193.082 117.093 193.082 116.598C193.082 116.094 192.975 115.646 192.76 115.254C192.555 114.862 192.27 114.554 191.906 114.33C191.551 114.097 191.145 113.98 190.688 113.98C190.287 113.98 189.913 114.064 189.568 114.232C189.232 114.391 188.957 114.619 188.742 114.918V118.264C188.966 118.563 189.246 118.796 189.582 118.964C189.927 119.132 190.296 119.216 190.688 119.216ZM198.962 120.14C198.327 120.14 197.753 119.986 197.24 119.678C196.727 119.361 196.321 118.936 196.022 118.404C195.723 117.863 195.574 117.256 195.574 116.584C195.574 115.912 195.714 115.31 195.994 114.778C196.283 114.246 196.671 113.826 197.156 113.518C197.641 113.21 198.183 113.056 198.78 113.056C199.387 113.056 199.923 113.21 200.39 113.518C200.866 113.817 201.239 114.227 201.51 114.75C201.79 115.263 201.93 115.847 201.93 116.5V116.808H196.568C196.605 117.275 196.731 117.695 196.946 118.068C197.17 118.432 197.459 118.721 197.814 118.936C198.178 119.141 198.575 119.244 199.004 119.244C199.359 119.244 199.699 119.183 200.026 119.062C200.362 118.931 200.647 118.759 200.88 118.544L201.524 119.23C201.132 119.538 200.726 119.767 200.306 119.916C199.886 120.065 199.438 120.14 198.962 120.14ZM196.596 116.08H200.922C200.875 115.669 200.749 115.305 200.544 114.988C200.348 114.661 200.096 114.405 199.788 114.218C199.489 114.031 199.153 113.938 198.78 113.938C198.407 113.938 198.066 114.031 197.758 114.218C197.45 114.395 197.193 114.647 196.988 114.974C196.792 115.291 196.661 115.66 196.596 116.08ZM203.675 120V113.168H204.697V114.568C204.874 114.092 205.126 113.723 205.453 113.462C205.789 113.191 206.172 113.056 206.601 113.056C206.722 113.056 206.834 113.065 206.937 113.084C207.04 113.093 207.142 113.117 207.245 113.154V114.078C207.133 114.041 207.012 114.013 206.881 113.994C206.76 113.966 206.643 113.952 206.531 113.952C206.111 113.952 205.742 114.073 205.425 114.316C205.117 114.559 204.874 114.899 204.697 115.338V120H203.675ZM210.424 120.126C209.938 120.126 209.509 120.037 209.136 119.86C208.762 119.683 208.468 119.44 208.254 119.132C208.048 118.815 207.946 118.451 207.946 118.04C207.946 117.629 208.053 117.275 208.268 116.976C208.482 116.668 208.781 116.43 209.164 116.262C209.546 116.094 209.994 116.01 210.508 116.01C210.9 116.01 211.268 116.052 211.614 116.136C211.968 116.22 212.295 116.355 212.594 116.542V115.604C212.594 115.044 212.444 114.624 212.146 114.344C211.847 114.055 211.408 113.91 210.83 113.91C210.512 113.91 210.186 113.957 209.85 114.05C209.523 114.143 209.159 114.293 208.758 114.498L208.38 113.714C209.294 113.275 210.153 113.056 210.956 113.056C211.805 113.056 212.458 113.266 212.916 113.686C213.373 114.097 213.602 114.689 213.602 115.464V120H212.594V119.202C212.295 119.51 211.964 119.743 211.6 119.902C211.236 120.051 210.844 120.126 210.424 120.126ZM208.926 118.012C208.926 118.413 209.08 118.735 209.388 118.978C209.705 119.221 210.12 119.342 210.634 119.342C211.016 119.342 211.366 119.277 211.684 119.146C212.01 119.015 212.314 118.819 212.594 118.558V117.242C212.304 117.074 212.006 116.953 211.698 116.878C211.39 116.794 211.044 116.752 210.662 116.752C210.139 116.752 209.719 116.869 209.402 117.102C209.084 117.326 208.926 117.629 208.926 118.012ZM218.078 120.14C217.49 120.14 217.042 120 216.734 119.72C216.435 119.431 216.286 119.015 216.286 118.474V114.008H214.872V113.168H216.286V111.292L217.308 111.054V113.168H219.268V114.008H217.308V118.208C217.308 118.572 217.382 118.833 217.532 118.992C217.69 119.151 217.947 119.23 218.302 119.23C218.479 119.23 218.638 119.216 218.778 119.188C218.918 119.16 219.081 119.113 219.268 119.048V119.958C219.081 120.023 218.885 120.07 218.68 120.098C218.474 120.126 218.274 120.14 218.078 120.14ZM223.652 120.112C223.017 120.112 222.448 119.958 221.944 119.65C221.44 119.342 221.043 118.922 220.754 118.39C220.465 117.858 220.32 117.256 220.32 116.584C220.32 115.912 220.465 115.31 220.754 114.778C221.043 114.246 221.44 113.826 221.944 113.518C222.448 113.21 223.017 113.056 223.652 113.056C224.277 113.056 224.837 113.21 225.332 113.518C225.836 113.826 226.233 114.246 226.522 114.778C226.811 115.31 226.956 115.912 226.956 116.584C226.956 117.256 226.811 117.858 226.522 118.39C226.233 118.922 225.836 119.342 225.332 119.65C224.837 119.958 224.277 120.112 223.652 120.112ZM223.638 119.216C224.086 119.216 224.483 119.104 224.828 118.88C225.173 118.647 225.444 118.329 225.64 117.928C225.845 117.527 225.948 117.079 225.948 116.584C225.948 116.08 225.845 115.632 225.64 115.24C225.444 114.839 225.173 114.526 224.828 114.302C224.483 114.069 224.086 113.952 223.638 113.952C223.19 113.952 222.793 114.069 222.448 114.302C222.103 114.526 221.827 114.839 221.622 115.24C221.426 115.632 221.328 116.08 221.328 116.584C221.328 117.079 221.426 117.527 221.622 117.928C221.827 118.329 222.103 118.647 222.448 118.88C222.793 119.104 223.19 119.216 223.638 119.216ZM228.749 120V113.168H229.771V114.568C229.949 114.092 230.201 113.723 230.527 113.462C230.863 113.191 231.246 113.056 231.675 113.056C231.797 113.056 231.909 113.065 232.011 113.084C232.114 113.093 232.217 113.117 232.319 113.154V114.078C232.207 114.041 232.086 114.013 231.955 113.994C231.834 113.966 231.717 113.952 231.605 113.952C231.185 113.952 230.817 114.073 230.499 114.316C230.191 114.559 229.949 114.899 229.771 115.338V120H228.749Z" fill="#151515"/>
28
+ <path d="M147.408 139V135.688L144.072 130.6H145.74L148.164 134.44L150.612 130.6H152.184L148.848 135.688V139H147.408ZM150.963 139L154.263 130.6H155.931L159.183 139H157.635L156.771 136.648H153.327L152.463 139H150.963ZM153.747 135.52H156.375L155.055 131.968L153.747 135.52ZM160.266 139V130.6H162.138L164.598 135.7L167.046 130.6H168.918V139H167.562V132.424L164.586 138.4L161.598 132.388V139H160.266ZM170.93 139V130.6H172.37V137.752H176.846V139H170.93Z" fill="#151515"/>
29
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M263.333 128.923L263.922 128.333C264.248 128.007 264.248 127.479 263.922 127.154L261.269 124.5L263.922 121.847C264.248 121.521 264.248 120.993 263.922 120.667L263.333 120.078C263.007 119.752 262.479 119.752 262.153 120.078L259.5 122.731L256.847 120.078C256.521 119.752 255.993 119.752 255.667 120.078L255.078 120.667C254.752 120.993 254.752 121.521 255.078 121.847L257.731 124.5L255.078 127.154C254.752 127.479 254.752 128.007 255.078 128.333L255.667 128.923C255.993 129.248 256.521 129.248 256.847 128.923L259.5 126.269L262.153 128.923C262.479 129.248 263.007 129.248 263.333 128.923Z" fill="#1F1F1F"/>
32
30
  <defs>
33
31
  <clipPath id="clip0_329_54389">
34
- <rect width="346" height="155" fill="white"/>
32
+ <path d="M24 44C24 30.7452 34.7452 20 48 20C61.2548 20 72 30.7452 72 44C72 57.2548 61.2548 68 48 68C34.7452 68 24 57.2548 24 44Z" fill="white"/>
35
33
  </clipPath>
36
34
  <clipPath id="clip1_329_54389">
37
- <path d="M19 35C19 21.7452 29.7452 11 43 11V11C56.2548 11 67 21.7452 67 35V35C67 48.2548 56.2548 59 43 59V59C29.7452 59 19 48.2548 19 35V35Z" fill="white"/>
35
+ <rect width="48" height="48" fill="white" transform="translate(24 20)"/>
38
36
  </clipPath>
39
37
  <clipPath id="clip2_329_54389">
40
- <rect width="48" height="48" fill="white" transform="translate(19 11)"/>
41
- </clipPath>
42
- <clipPath id="clip3_329_54389">
43
- <rect width="16" height="12.8" fill="white" transform="translate(111 109.1)"/>
38
+ <rect width="16" height="12.8" fill="white" transform="translate(116 118.1)"/>
44
39
  </clipPath>
45
40
  </defs>
46
41
  </svg>